diff --git a/.editorconfig b/.editorconfig
index 1583c600aa56..8b9214445391 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -344,6 +344,9 @@ resharper_keep_existing_attribute_arrangement = true
resharper_wrap_chained_binary_patterns = chop_if_long
resharper_wrap_chained_method_calls = chop_if_long
resharper_csharp_trailing_comma_in_multiline_lists = true
+resharper_csharp_qualified_using_at_nested_scope = false
+resharper_csharp_prefer_qualified_reference = false
+resharper_csharp_allow_alias = false
[*.{csproj,xml,yml,yaml,dll.config,msbuildproj,targets,props}]
indent_size = 2
diff --git a/.envrc b/.envrc
index 7fd05db3e5ee..b1ad7237edf5 100644
--- a/.envrc
+++ b/.envrc
@@ -1,4 +1,5 @@
-if ! has nix_direnv_version || ! nix_direnv_version 3.0.4; then
- source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.4/direnvrc" "sha256-DzlYZ33mWF/Gs8DDeyjr8mnVmQGx7ASYqA5WlxwvBG4="
+set -e
+if ! has nix_direnv_version || ! nix_direnv_version 3.0.6; then
+ source_url "https://raw.githubusercontent.com/nix-community/nix-direnv/3.0.6/direnvrc" "sha256-RYcUJaRMf8oF5LznDrlCXbkOQrywm0HDv1VjYGaJGdM="
fi
use flake
diff --git a/Content.Benchmarks/MapLoadBenchmark.cs b/Content.Benchmarks/MapLoadBenchmark.cs
index 844d5b82d104..bc050b59f160 100644
--- a/Content.Benchmarks/MapLoadBenchmark.cs
+++ b/Content.Benchmarks/MapLoadBenchmark.cs
@@ -46,7 +46,7 @@ public async Task Cleanup()
PoolManager.Shutdown();
}
- public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Origin", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog" };
+ public static readonly string[] MapsSource = { "Empty", "Satlern", "Box", "Bagel", "Dev", "CentComm", "Core", "TestTeg", "Packed", "Omega", "Reach", "Meta", "Marathon", "MeteorArena", "Fland", "Oasis", "Cog", "Convex"};
[ParamsSource(nameof(MapsSource))]
public string Map;
diff --git a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
index 44c40143d830..04075000f5b9 100644
--- a/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
+++ b/Content.Client/Cargo/BUI/CargoBountyConsoleBoundUserInterface.cs
@@ -39,6 +39,6 @@ protected override void UpdateState(BoundUserInterfaceState message)
if (message is not CargoBountyConsoleState state)
return;
- _menu?.UpdateEntries(state.Bounties, state.UntilNextSkip);
+ _menu?.UpdateEntries(state.Bounties, state.History, state.UntilNextSkip);
}
}
diff --git a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml
new file mode 100644
index 000000000000..905cf020ed1c
--- /dev/null
+++ b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs
new file mode 100644
index 000000000000..54804be641c3
--- /dev/null
+++ b/Content.Client/Cargo/UI/BountyHistoryEntry.xaml.cs
@@ -0,0 +1,49 @@
+using Content.Client.Message;
+using Content.Shared.Cargo;
+using Content.Shared.Cargo.Prototypes;
+using Robust.Client.AutoGenerated;
+using Robust.Client.UserInterface.Controls;
+using Robust.Client.UserInterface.XAML;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Timing;
+
+namespace Content.Client.Cargo.UI;
+
+[GenerateTypedNameReferences]
+public sealed partial class BountyHistoryEntry : BoxContainer
+{
+ [Dependency] private readonly IPrototypeManager _prototype = default!;
+
+ public BountyHistoryEntry(CargoBountyHistoryData bounty)
+ {
+ RobustXamlLoader.Load(this);
+ IoCManager.InjectDependencies(this);
+
+ if (!_prototype.TryIndex(bounty.Bounty, out var bountyPrototype))
+ return;
+
+ var items = new List();
+ foreach (var entry in bountyPrototype.Entries)
+ {
+ items.Add(Loc.GetString("bounty-console-manifest-entry",
+ ("amount", entry.Amount),
+ ("item", Loc.GetString(entry.Name))));
+ }
+
+ ManifestLabel.SetMarkup(Loc.GetString("bounty-console-manifest-label", ("item", string.Join(", ", items))));
+ RewardLabel.SetMarkup(Loc.GetString("bounty-console-reward-label", ("reward", bountyPrototype.Reward)));
+ IdLabel.SetMarkup(Loc.GetString("bounty-console-id-label", ("id", bounty.Id)));
+
+ TimestampLabel.SetMarkup(bounty.Timestamp.ToString(@"hh\:mm\:ss"));
+
+ if (bounty.Result == CargoBountyHistoryData.BountyResult.Completed)
+ {
+ NoticeLabel.SetMarkup(Loc.GetString("bounty-console-history-notice-completed-label"));
+ }
+ else
+ {
+ NoticeLabel.SetMarkup(Loc.GetString("bounty-console-history-notice-skipped-label",
+ ("id", bounty.ActorName ?? "")));
+ }
+ }
+}
diff --git a/Content.Client/Cargo/UI/CargoBountyMenu.xaml b/Content.Client/Cargo/UI/CargoBountyMenu.xaml
index bb263ff6c4ab..526ba69129bb 100644
--- a/Content.Client/Cargo/UI/CargoBountyMenu.xaml
+++ b/Content.Client/Cargo/UI/CargoBountyMenu.xaml
@@ -11,15 +11,28 @@
-
-
-
-
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs b/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
index 3767b45e4bed..c289fb6ed83c 100644
--- a/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
+++ b/Content.Client/Cargo/UI/CargoBountyMenu.xaml.cs
@@ -15,9 +15,12 @@ public sealed partial class CargoBountyMenu : FancyWindow
public CargoBountyMenu()
{
RobustXamlLoader.Load(this);
+
+ MasterTabContainer.SetTabTitle(0, Loc.GetString("bounty-console-tab-available-label"));
+ MasterTabContainer.SetTabTitle(1, Loc.GetString("bounty-console-tab-history-label"));
}
- public void UpdateEntries(List bounties, TimeSpan untilNextSkip)
+ public void UpdateEntries(List bounties, List history, TimeSpan untilNextSkip)
{
BountyEntriesContainer.Children.Clear();
foreach (var b in bounties)
@@ -32,5 +35,21 @@ public void UpdateEntries(List bounties, TimeSpan untilNextSkip
{
MinHeight = 10
});
+
+ BountyHistoryContainer.Children.Clear();
+ if (history.Count == 0)
+ {
+ NoHistoryLabel.Visible = true;
+ }
+ else
+ {
+ NoHistoryLabel.Visible = false;
+
+ // Show the history in reverse, so last entry is first in the list
+ for (var i = history.Count - 1; i >= 0; i--)
+ {
+ BountyHistoryContainer.AddChild(new BountyHistoryEntry(history[i]));
+ }
+ }
}
}
diff --git a/Content.Client/Changelog/ChangelogWindow.xaml.cs b/Content.Client/Changelog/ChangelogWindow.xaml.cs
index 9b7fd7543692..cb07e16a9c28 100644
--- a/Content.Client/Changelog/ChangelogWindow.xaml.cs
+++ b/Content.Client/Changelog/ChangelogWindow.xaml.cs
@@ -8,6 +8,8 @@
using Robust.Client.AutoGenerated;
using Robust.Client.UserInterface;
using Robust.Client.UserInterface.XAML;
+using Robust.Shared;
+using Robust.Shared.Configuration;
using Robust.Shared.Console;
namespace Content.Client.Changelog
@@ -15,8 +17,9 @@ namespace Content.Client.Changelog
[GenerateTypedNameReferences]
public sealed partial class ChangelogWindow : FancyWindow
{
- [Dependency] private readonly IClientAdminManager _adminManager = default!;
[Dependency] private readonly ChangelogManager _changelog = default!;
+ [Dependency] private readonly IClientAdminManager _adminManager = default!;
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
public ChangelogWindow()
{
@@ -67,8 +70,22 @@ private async void PopulateChangelog()
Tabs.SetTabTitle(i++, Loc.GetString($"changelog-tab-title-{changelog.Name}"));
}
- var version = typeof(ChangelogWindow).Assembly.GetName().Version ?? new Version(1, 0);
- VersionLabel.Text = Loc.GetString("changelog-version-tag", ("version", version.ToString()));
+ // Try to get the current version from the build.json file
+ var version = _cfg.GetCVar(CVars.BuildVersion);
+ var forkId = _cfg.GetCVar(CVars.BuildForkId);
+
+ var versionText = Loc.GetString("changelog-version-unknown");
+
+ // Make sure these aren't empty, like in a dev env
+ if (!string.IsNullOrEmpty(version) && !string.IsNullOrEmpty(forkId))
+ {
+ versionText = Loc.GetString("changelog-version-tag",
+ ("fork", forkId),
+ ("version", version[..7])); // Only show the first 7 characters
+ }
+
+ // if else statements are ugly, shut up
+ VersionLabel.Text = versionText;
TabsUpdated();
}
diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml b/Content.Client/Chat/UI/EmotesMenu.xaml
index eb2b280963fa..b8a7fcfeb5d2 100644
--- a/Content.Client/Chat/UI/EmotesMenu.xaml
+++ b/Content.Client/Chat/UI/EmotesMenu.xaml
@@ -1,4 +1,4 @@
-
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
+
diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml.cs b/Content.Client/Chat/UI/EmotesMenu.xaml.cs
index f3b7837f21a5..80daa405a68e 100644
--- a/Content.Client/Chat/UI/EmotesMenu.xaml.cs
+++ b/Content.Client/Chat/UI/EmotesMenu.xaml.cs
@@ -50,7 +50,6 @@ public EmotesMenu()
var button = new EmoteMenuButton
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64f, 64f),
ToolTip = Loc.GetString(emote.Name),
ProtoId = emote.ID,
@@ -106,7 +105,7 @@ private void AddEmoteClickAction(RadialContainer container)
}
-public sealed class EmoteMenuButton : RadialMenuTextureButton
+public sealed class EmoteMenuButton : RadialMenuTextureButtonWithSector
{
public ProtoId ProtoId { get; set; }
}
diff --git a/Content.Client/Clickable/ClickMapManager.cs b/Content.Client/Clickable/ClickMapManager.cs
index 6a77c7e05436..557ef57ef106 100644
--- a/Content.Client/Clickable/ClickMapManager.cs
+++ b/Content.Client/Clickable/ClickMapManager.cs
@@ -20,7 +20,7 @@ internal sealed class ClickMapManager : IClickMapManager, IPostInjectInit
"/Textures/Logo",
};
- private const float Threshold = 0.25f;
+ private const float Threshold = 0.1f;
private const int ClickRadius = 2;
[Dependency] private readonly IResourceCache _resourceCache = default!;
diff --git a/Content.Client/CrewManifest/UI/CrewManifestSection.cs b/Content.Client/CrewManifest/UI/CrewManifestSection.cs
index afd854d08268..188c85f01fe8 100644
--- a/Content.Client/CrewManifest/UI/CrewManifestSection.cs
+++ b/Content.Client/CrewManifest/UI/CrewManifestSection.cs
@@ -22,7 +22,7 @@ public CrewManifestSection(
AddChild(new Label()
{
StyleClasses = { "LabelBig" },
- Text = Loc.GetString($"department-{section.ID}")
+ Text = Loc.GetString(section.Name)
});
var departmentContainer = new BoxContainer()
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs b/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
index 9047624f49be..d5cc4ecfa9a0 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleBoundUserInterface.cs
@@ -39,6 +39,8 @@ protected override void Open()
SendMessage(new CriminalRecordChangeStatus(status, null));
_window.OnDialogConfirmed += (status, reason) =>
SendMessage(new CriminalRecordChangeStatus(status, reason));
+ _window.OnStatusFilterPressed += (statusFilter) =>
+ SendMessage(new CriminalRecordSetStatusFilter(statusFilter));
_window.OnHistoryUpdated += UpdateHistory;
_window.OnHistoryClosed += () => _historyWindow?.Close();
_window.OnClose += Close;
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml
index 9e03f6df1427..264c2b0adae1 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml
@@ -1,37 +1,148 @@
+ xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
+ Title="{Loc 'criminal-records-console-window-title'}"
+ MinSize="695 440">
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
index a9dbb9a9002f..321ba4cfd9e8 100644
--- a/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
+++ b/Content.Client/CriminalRecords/CriminalRecordsConsoleWindow.xaml.cs
@@ -13,6 +13,9 @@
using Robust.Shared.Random;
using Robust.Shared.Utility;
using System.Linq;
+using System.Numerics;
+using Content.Shared.StatusIcon;
+using Robust.Client.GameObjects;
namespace Content.Client.CriminalRecords;
@@ -24,6 +27,8 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
private readonly IPrototypeManager _proto;
private readonly IRobustRandom _random;
private readonly AccessReaderSystem _accessReader;
+ [Dependency] private readonly IEntityManager _entManager = default!;
+ private readonly SpriteSystem _spriteSystem;
public readonly EntityUid Console;
@@ -33,10 +38,12 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
public Action? OnKeySelected;
public Action? OnFiltersChanged;
public Action? OnStatusSelected;
+ public Action? OnCheckStatus;
public Action? OnHistoryUpdated;
public Action? OnHistoryClosed;
public Action? OnDialogConfirmed;
+ public Action? OnStatusFilterPressed;
private uint _maxLength;
private bool _access;
private uint? _selectedKey;
@@ -46,6 +53,8 @@ public sealed partial class CriminalRecordsConsoleWindow : FancyWindow
private StationRecordFilterType _currentFilterType;
+ private SecurityStatus _currentCrewListFilter;
+
public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerManager playerManager, IPrototypeManager prototypeManager, IRobustRandom robustRandom, AccessReaderSystem accessReader)
{
RobustXamlLoader.Load(this);
@@ -55,10 +64,14 @@ public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerMa
_proto = prototypeManager;
_random = robustRandom;
_accessReader = accessReader;
+ IoCManager.InjectDependencies(this);
+ _spriteSystem = _entManager.System();
_maxLength = maxLength;
_currentFilterType = StationRecordFilterType.Name;
+ _currentCrewListFilter = SecurityStatus.None;
+
OpenCentered();
foreach (var item in Enum.GetValues())
@@ -71,6 +84,12 @@ public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerMa
AddStatusSelect(status);
}
+ //Populate status to filter crew list
+ foreach (var item in Enum.GetValues())
+ {
+ CrewListFilter.AddItem(GetCrewListFilterLocals(item), (int)item);
+ }
+
OnClose += () => _reasonDialog?.Close();
RecordListing.OnItemSelected += args =>
@@ -97,6 +116,20 @@ public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerMa
}
};
+ //Select Status to filter crew
+ CrewListFilter.OnItemSelected += eventArgs =>
+ {
+ var type = (SecurityStatus)eventArgs.Id;
+
+ if (_currentCrewListFilter != type)
+ {
+ _currentCrewListFilter = type;
+
+ StatusFilterPressed(type);
+
+ }
+ };
+
FilterText.OnTextEntered += args =>
{
FilterListingOfRecords(args.Text);
@@ -104,16 +137,21 @@ public CriminalRecordsConsoleWindow(EntityUid console, uint maxLength, IPlayerMa
StatusOptionButton.OnItemSelected += args =>
{
- SetStatus((SecurityStatus) args.Id);
+ SetStatus((SecurityStatus)args.Id);
};
HistoryButton.OnPressed += _ =>
{
- if (_selectedRecord is {} record)
+ if (_selectedRecord is { } record)
OnHistoryUpdated?.Invoke(record, _access, true);
};
}
+ public void StatusFilterPressed(SecurityStatus statusSelected)
+ {
+ OnStatusFilterPressed?.Invoke(statusSelected);
+ }
+
public void UpdateState(CriminalRecordsConsoleState state)
{
if (state.Filter != null)
@@ -129,10 +167,14 @@ public void UpdateState(CriminalRecordsConsoleState state)
}
}
- _selectedKey = state.SelectedKey;
+ if (state.FilterStatus != _currentCrewListFilter)
+ {
+ _currentCrewListFilter = state.FilterStatus;
+ }
+ _selectedKey = state.SelectedKey;
FilterType.SelectId((int)_currentFilterType);
-
+ CrewListFilter.SelectId((int)_currentCrewListFilter);
NoRecords.Visible = state.RecordListing == null || state.RecordListing.Count == 0;
PopulateRecordListing(state.RecordListing);
@@ -179,7 +221,7 @@ private void PopulateRecordListing(Dictionary? listing)
// in parallel to synchronize the items in RecordListing with `entries`.
int i = RecordListing.Count - 1;
int j = entries.Count - 1;
- while(i >= 0 && j >= 0)
+ while (i >= 0 && j >= 0)
{
var strcmp = string.Compare(RecordListing[i].Text, entries[j].Value, StringComparison.Ordinal);
if (strcmp == 0)
@@ -212,24 +254,48 @@ private void PopulateRecordListing(Dictionary? listing)
// And finally, any remaining items in `entries`, don't exist in RecordListing. Create them.
while (j >= 0)
{
- RecordListing.Insert(0, new ItemList.Item(RecordListing){Text = entries[j].Value, Metadata = entries[j].Key});
+ RecordListing.Insert(0, new ItemList.Item(RecordListing){ Text = entries[j].Value, Metadata = entries[j].Key });
j--;
}
}
-
private void PopulateRecordContainer(GeneralStationRecord stationRecord, CriminalRecord criminalRecord)
{
+ var specifier = new SpriteSpecifier.Rsi(new ResPath("Interface/Misc/job_icons.rsi"), "Unknown");
var na = Loc.GetString("generic-not-available-shorthand");
PersonName.Text = stationRecord.Name;
PersonGender.Text = Loc.GetString("general-station-record-console-record-gender", ("gender", stationRecord.Gender));
+ PersonJob.Text = stationRecord.JobTitle ?? na;
PersonPrints.Text = Loc.GetString("general-station-record-console-record-fingerprint", ("fingerprint", stationRecord.Fingerprint ?? na));
PersonDna.Text = Loc.GetString("general-station-record-console-record-dna", ("dna", stationRecord.DNA ?? na));
- StatusOptionButton.SelectId((int) criminalRecord.Status);
- if (criminalRecord.Reason is {} reason)
+
+ // Job icon
+ if (_proto.TryIndex(stationRecord.JobIcon, out var proto))
+ {
+ PersonJobIcon.Texture = _spriteSystem.Frame0(proto.Icon);
+ }
+
+ PersonPrints.Text = stationRecord.Fingerprint ?? Loc.GetString("generic-not-available-shorthand");
+ PersonDna.Text = stationRecord.DNA ?? Loc.GetString("generic-not-available-shorthand");
+
+ if (criminalRecord.Status != SecurityStatus.None)
+ {
+ specifier = new SpriteSpecifier.Rsi(new ResPath("Interface/Misc/security_icons.rsi"), GetStatusIcon(criminalRecord.Status));
+ }
+ PersonStatusTX.SetFromSpriteSpecifier(specifier);
+ PersonStatusTX.DisplayRect.TextureScale = new Vector2(3f, 3f);
+
+ StatusOptionButton.SelectId((int)criminalRecord.Status);
+ if (criminalRecord.Reason is { } reason)
{
var message = FormattedMessage.FromMarkupOrThrow(Loc.GetString("criminal-records-console-wanted-reason"));
+
+ if (criminalRecord.Status == SecurityStatus.Suspected)
+ {
+ message = FormattedMessage.FromMarkupOrThrow(Loc.GetString("criminal-records-console-suspected-reason"));
+ }
message.AddText($": {reason}");
+
WantedReason.SetMessage(message);
WantedReason.Visible = true;
}
@@ -289,9 +355,37 @@ private void GetReason(SecurityStatus status)
_reasonDialog.OnClose += () => { _reasonDialog = null; };
}
-
+ private string GetStatusIcon(SecurityStatus status)
+ {
+ return status switch
+ {
+ SecurityStatus.Paroled => "hud_paroled",
+ SecurityStatus.Wanted => "hud_wanted",
+ SecurityStatus.Detained => "hud_incarcerated",
+ SecurityStatus.Discharged => "hud_discharged",
+ SecurityStatus.Suspected => "hud_suspected",
+ _ => "SecurityIconNone"
+ };
+ }
private string GetTypeFilterLocals(StationRecordFilterType type)
{
return Loc.GetString($"criminal-records-{type.ToString().ToLower()}-filter");
}
+
+ private string GetCrewListFilterLocals(SecurityStatus type)
+ {
+ string result;
+
+ // If "NONE" override to "show all"
+ if (type == SecurityStatus.None)
+ {
+ result = Loc.GetString("criminal-records-console-show-all");
+ }
+ else
+ {
+ result = Loc.GetString($"criminal-records-status-{type.ToString().ToLower()}");
+ }
+
+ return result;
+ }
}
diff --git a/Content.Client/DisplacementMap/DisplacementMapSystem.cs b/Content.Client/DisplacementMap/DisplacementMapSystem.cs
index 6db164a09f09..05d10a9c6409 100644
--- a/Content.Client/DisplacementMap/DisplacementMapSystem.cs
+++ b/Content.Client/DisplacementMap/DisplacementMapSystem.cs
@@ -12,7 +12,14 @@ public sealed class DisplacementMapSystem : EntitySystem
public bool TryAddDisplacement(DisplacementData data, SpriteComponent sprite, int index, string key, HashSet revealedLayers)
{
if (data.ShaderOverride != null)
- sprite.LayerSetShader(index, data.ShaderOverride);
+ {
+ //imp edit start - replaced the simple shader replacement w/ a ternary that checks if the layer is unshaded before setting the shader
+ sprite.LayerSetShader(index,
+ sprite[index] is SpriteComponent.Layer { ShaderPrototype: "unshaded" }
+ ? data.ShaderOverrideUnshaded
+ : data.ShaderOverride);
+ //imp edit end
+ }
var displacementKey = $"{key}-displacement";
if (!revealedLayers.Add(displacementKey))
diff --git a/Content.Client/Doors/DoorSystem.cs b/Content.Client/Doors/DoorSystem.cs
index bc52730b0e7b..5e3de813d653 100644
--- a/Content.Client/Doors/DoorSystem.cs
+++ b/Content.Client/Doors/DoorSystem.cs
@@ -21,112 +21,131 @@ public override void Initialize()
protected override void OnComponentInit(Entity ent, ref ComponentInit args)
{
var comp = ent.Comp;
- comp.OpenSpriteStates = new(2);
- comp.ClosedSpriteStates = new(2);
+ comp.OpenSpriteStates = new List<(DoorVisualLayers, string)>(2);
+ comp.ClosedSpriteStates = new List<(DoorVisualLayers, string)>(2);
comp.OpenSpriteStates.Add((DoorVisualLayers.Base, comp.OpenSpriteState));
comp.ClosedSpriteStates.Add((DoorVisualLayers.Base, comp.ClosedSpriteState));
- comp.OpeningAnimation = new Animation()
+ comp.OpeningAnimation = new Animation
{
Length = TimeSpan.FromSeconds(comp.OpeningAnimationTime),
AnimationTracks =
{
- new AnimationTrackSpriteFlick()
+ new AnimationTrackSpriteFlick
{
LayerKey = DoorVisualLayers.Base,
- KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.OpeningSpriteState, 0f) }
- }
+ KeyFrames =
+ {
+ new AnimationTrackSpriteFlick.KeyFrame(comp.OpeningSpriteState, 0f),
+ },
+ },
},
};
- comp.ClosingAnimation = new Animation()
+ comp.ClosingAnimation = new Animation
{
Length = TimeSpan.FromSeconds(comp.ClosingAnimationTime),
AnimationTracks =
{
- new AnimationTrackSpriteFlick()
+ new AnimationTrackSpriteFlick
{
LayerKey = DoorVisualLayers.Base,
- KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.ClosingSpriteState, 0f) }
- }
+ KeyFrames =
+ {
+ new AnimationTrackSpriteFlick.KeyFrame(comp.ClosingSpriteState, 0f),
+ },
+ },
},
};
- comp.EmaggingAnimation = new Animation ()
+ comp.EmaggingAnimation = new Animation
{
Length = TimeSpan.FromSeconds(comp.EmaggingAnimationTime),
AnimationTracks =
{
- new AnimationTrackSpriteFlick()
+ new AnimationTrackSpriteFlick
{
LayerKey = DoorVisualLayers.BaseUnlit,
- KeyFrames = { new AnimationTrackSpriteFlick.KeyFrame(comp.EmaggingSpriteState, 0f) }
- }
+ KeyFrames =
+ {
+ new AnimationTrackSpriteFlick.KeyFrame(comp.EmaggingSpriteState, 0f),
+ },
+ },
},
};
}
- private void OnAppearanceChange(EntityUid uid, DoorComponent comp, ref AppearanceChangeEvent args)
+ private void OnAppearanceChange(Entity entity, ref AppearanceChangeEvent args)
{
if (args.Sprite == null)
return;
- if(!AppearanceSystem.TryGetData(uid, DoorVisuals.State, out var state, args.Component))
+ if (!AppearanceSystem.TryGetData(entity, DoorVisuals.State, out var state, args.Component))
state = DoorState.Closed;
- if (AppearanceSystem.TryGetData(uid, DoorVisuals.BaseRSI, out var baseRsi, args.Component))
- {
- if (!_resourceCache.TryGetResource(SpriteSpecifierSerializer.TextureRoot / baseRsi, out var res))
- {
- Log.Error("Unable to load RSI '{0}'. Trace:\n{1}", baseRsi, Environment.StackTrace);
- }
- foreach (var layer in args.Sprite.AllLayers)
- {
- layer.Rsi = res?.RSI;
- }
- }
+ if (AppearanceSystem.TryGetData(entity, DoorVisuals.BaseRSI, out var baseRsi, args.Component))
+ UpdateSpriteLayers(args.Sprite, baseRsi);
- TryComp(uid, out var animPlayer);
- if (_animationSystem.HasRunningAnimation(uid, animPlayer, DoorComponent.AnimationKey))
- _animationSystem.Stop(uid, animPlayer, DoorComponent.AnimationKey); // Halt all running anomations.
+ if (_animationSystem.HasRunningAnimation(entity, DoorComponent.AnimationKey))
+ _animationSystem.Stop(entity.Owner, DoorComponent.AnimationKey);
- args.Sprite.DrawDepth = comp.ClosedDrawDepth;
- switch(state)
+ UpdateAppearanceForDoorState(entity, args.Sprite, state);
+ }
+
+ private void UpdateAppearanceForDoorState(Entity entity, SpriteComponent sprite, DoorState state)
+ {
+ sprite.DrawDepth = state is DoorState.Open ? entity.Comp.OpenDrawDepth : entity.Comp.ClosedDrawDepth;
+
+ switch (state)
{
case DoorState.Open:
- args.Sprite.DrawDepth = comp.OpenDrawDepth;
- foreach(var (layer, layerState) in comp.OpenSpriteStates)
+ foreach (var (layer, layerState) in entity.Comp.OpenSpriteStates)
{
- args.Sprite.LayerSetState(layer, layerState);
+ sprite.LayerSetState(layer, layerState);
}
- break;
+
+ return;
case DoorState.Closed:
- foreach(var (layer, layerState) in comp.ClosedSpriteStates)
+ foreach (var (layer, layerState) in entity.Comp.ClosedSpriteStates)
{
- args.Sprite.LayerSetState(layer, layerState);
+ sprite.LayerSetState(layer, layerState);
}
- break;
+
+ return;
case DoorState.Opening:
- if (animPlayer != null && comp.OpeningAnimationTime != 0.0)
- _animationSystem.Play((uid, animPlayer), (Animation)comp.OpeningAnimation, DoorComponent.AnimationKey);
- break;
+ if (entity.Comp.OpeningAnimationTime == 0.0)
+ return;
+
+ _animationSystem.Play(entity, (Animation)entity.Comp.OpeningAnimation, DoorComponent.AnimationKey);
+
+ return;
case DoorState.Closing:
- if (animPlayer != null && comp.ClosingAnimationTime != 0.0 && comp.CurrentlyCrushing.Count == 0)
- _animationSystem.Play((uid, animPlayer), (Animation)comp.ClosingAnimation, DoorComponent.AnimationKey);
- break;
+ if (entity.Comp.ClosingAnimationTime == 0.0 || entity.Comp.CurrentlyCrushing.Count != 0)
+ return;
+
+ _animationSystem.Play(entity, (Animation)entity.Comp.ClosingAnimation, DoorComponent.AnimationKey);
+
+ return;
case DoorState.Denying:
- if (animPlayer != null)
- _animationSystem.Play((uid, animPlayer), (Animation)comp.DenyingAnimation, DoorComponent.AnimationKey);
- break;
- case DoorState.Welded:
- break;
+ _animationSystem.Play(entity, (Animation)entity.Comp.DenyingAnimation, DoorComponent.AnimationKey);
+
+ return;
case DoorState.Emagging:
- if (animPlayer != null)
- _animationSystem.Play((uid, animPlayer), (Animation)comp.EmaggingAnimation, DoorComponent.AnimationKey);
- break;
- default:
- throw new ArgumentOutOfRangeException($"Invalid door visual state {state}");
+ _animationSystem.Play(entity, (Animation)entity.Comp.EmaggingAnimation, DoorComponent.AnimationKey);
+
+ return;
}
}
+
+ private void UpdateSpriteLayers(SpriteComponent sprite, string baseRsi)
+ {
+ if (!_resourceCache.TryGetResource(SpriteSpecifierSerializer.TextureRoot / baseRsi, out var res))
+ {
+ Log.Error("Unable to load RSI '{0}'. Trace:\n{1}", baseRsi, Environment.StackTrace);
+ return;
+ }
+
+ sprite.BaseRSI = res.RSI;
+ }
}
diff --git a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs
index 3897b1b949ca..1b65eac6ed95 100644
--- a/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs
+++ b/Content.Client/Ghost/GhostRoleRadioMenu.xaml.cs
@@ -51,7 +51,6 @@ private void RefreshUI()
var button = new GhostRoleRadioMenuButton()
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64, 64),
ToolTip = Loc.GetString(ghostRoleProto.Name),
ProtoId = ghostRoleProto.ID,
@@ -100,7 +99,7 @@ private void AddGhostRoleRadioMenuButtonOnClickActions(Control control)
}
}
-public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButton
+public sealed class GhostRoleRadioMenuButton : RadialMenuTextureButtonWithSector
{
public ProtoId ProtoId { get; set; }
}
diff --git a/Content.Client/Holopad/HolopadSystem.cs b/Content.Client/Holopad/HolopadSystem.cs
index 3bd556f1fc23..6aad39fe2473 100644
--- a/Content.Client/Holopad/HolopadSystem.cs
+++ b/Content.Client/Holopad/HolopadSystem.cs
@@ -2,45 +2,38 @@
using Content.Shared.Holopad;
using Robust.Client.GameObjects;
using Robust.Client.Graphics;
-using Robust.Client.Player;
using Robust.Shared.Prototypes;
using Robust.Shared.Timing;
using System.Linq;
+using DrawDepth = Content.Shared.DrawDepth.DrawDepth;
namespace Content.Client.Holopad;
public sealed class HolopadSystem : SharedHolopadSystem
{
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
- [Dependency] private readonly IPlayerManager _playerManager = default!;
[Dependency] private readonly IGameTiming _timing = default!;
public override void Initialize()
{
base.Initialize();
- SubscribeLocalEvent(OnComponentInit);
+ SubscribeLocalEvent(OnComponentStartup);
SubscribeLocalEvent(OnShaderRender);
SubscribeAllEvent(OnTypingChanged);
-
- SubscribeNetworkEvent(OnPlayerSpriteStateRequest);
- SubscribeNetworkEvent(OnPlayerSpriteStateMessage);
}
- private void OnComponentInit(EntityUid uid, HolopadHologramComponent component, ComponentInit ev)
+ private void OnComponentStartup(Entity entity, ref ComponentStartup ev)
{
- if (!TryComp(uid, out var sprite))
- return;
-
- UpdateHologramSprite(uid);
+ UpdateHologramSprite(entity, entity.Comp.LinkedEntity);
}
- private void OnShaderRender(EntityUid uid, HolopadHologramComponent component, BeforePostShaderRenderEvent ev)
+ private void OnShaderRender(Entity entity, ref BeforePostShaderRenderEvent ev)
{
if (ev.Sprite.PostShader == null)
return;
- ev.Sprite.PostShader.SetParameter("t", (float)_timing.CurTime.TotalSeconds * component.ScrollRate);
+ UpdateHologramSprite(entity, entity.Comp.LinkedEntity);
}
private void OnTypingChanged(TypingChangedEvent ev, EntitySessionEventArgs args)
@@ -57,100 +50,66 @@ private void OnTypingChanged(TypingChangedEvent ev, EntitySessionEventArgs args)
RaiseNetworkEvent(netEv);
}
- private void OnPlayerSpriteStateRequest(PlayerSpriteStateRequest ev)
+ private void UpdateHologramSprite(EntityUid hologram, EntityUid? target)
{
- var targetPlayer = GetEntity(ev.TargetPlayer);
- var player = _playerManager.LocalSession?.AttachedEntity;
-
- // Ignore the request if received by a player who isn't the target
- if (targetPlayer != player)
+ // Get required components
+ if (!TryComp(hologram, out var hologramSprite) ||
+ !TryComp(hologram, out var holopadhologram))
return;
- if (!TryComp(player, out var playerSprite))
- return;
-
- var spriteLayerData = new List();
+ // Remove all sprite layers
+ for (int i = hologramSprite.AllLayers.Count() - 1; i >= 0; i--)
+ hologramSprite.RemoveLayer(i);
- if (playerSprite.Visible)
+ if (TryComp(target, out var targetSprite))
{
- // Record the RSI paths, state names and shader paramaters of all visible layers
- for (int i = 0; i < playerSprite.AllLayers.Count(); i++)
+ // Use the target's holographic avatar (if available)
+ if (TryComp(target, out var targetAvatar) &&
+ targetAvatar.LayerData != null)
{
- if (!playerSprite.TryGetLayer(i, out var layer))
- continue;
-
- if (!layer.Visible ||
- string.IsNullOrEmpty(layer.ActualRsi?.Path.ToString()) ||
- string.IsNullOrEmpty(layer.State.Name))
- continue;
-
- var layerDatum = new PrototypeLayerData();
- layerDatum.RsiPath = layer.ActualRsi.Path.ToString();
- layerDatum.State = layer.State.Name;
-
- if (layer.CopyToShaderParameters != null)
+ for (int i = 0; i < targetAvatar.LayerData.Length; i++)
{
- var key = (string)layer.CopyToShaderParameters.LayerKey;
-
- if (playerSprite.LayerMapTryGet(key, out var otherLayerIdx) &&
- playerSprite.TryGetLayer(otherLayerIdx, out var otherLayer) &&
- otherLayer.Visible)
- {
- layerDatum.MapKeys = new() { key };
-
- layerDatum.CopyToShaderParameters = new PrototypeCopyToShaderParameters()
- {
- LayerKey = key,
- ParameterTexture = layer.CopyToShaderParameters.ParameterTexture,
- ParameterUV = layer.CopyToShaderParameters.ParameterUV
- };
- }
+ var layer = targetAvatar.LayerData[i];
+ hologramSprite.AddLayer(targetAvatar.LayerData[i], i);
}
+ }
- spriteLayerData.Add(layerDatum);
+ // Otherwise copy the target's current physical appearance
+ else
+ {
+ hologramSprite.CopyFrom(targetSprite);
}
}
- // Return the recorded data to the server
- var evResponse = new PlayerSpriteStateMessage(ev.TargetPlayer, spriteLayerData.ToArray());
- RaiseNetworkEvent(evResponse);
- }
-
- private void OnPlayerSpriteStateMessage(PlayerSpriteStateMessage ev)
- {
- UpdateHologramSprite(GetEntity(ev.SpriteEntity), ev.SpriteLayerData);
- }
-
- private void UpdateHologramSprite(EntityUid uid, PrototypeLayerData[]? layerData = null)
- {
- if (!TryComp(uid, out var hologramSprite))
- return;
-
- if (!TryComp(uid, out var holopadhologram))
- return;
+ // There is no target, display a default sprite instead (if available)
+ else
+ {
+ if (string.IsNullOrEmpty(holopadhologram.RsiPath) || string.IsNullOrEmpty(holopadhologram.RsiState))
+ return;
- for (int i = hologramSprite.AllLayers.Count() - 1; i >= 0; i--)
- hologramSprite.RemoveLayer(i);
+ var layer = new PrototypeLayerData();
+ layer.RsiPath = holopadhologram.RsiPath;
+ layer.State = holopadhologram.RsiState;
- if (layerData == null || layerData.Length == 0)
- {
- layerData = new PrototypeLayerData[1];
- layerData[0] = new PrototypeLayerData()
- {
- RsiPath = holopadhologram.RsiPath,
- State = holopadhologram.RsiState
- };
+ hologramSprite.AddLayer(layer);
}
- for (int i = 0; i < layerData.Length; i++)
- {
- var layer = layerData[i];
- layer.Shader = "unshaded";
+ // Override specific values
+ hologramSprite.Color = Color.White;
+ hologramSprite.Offset = holopadhologram.Offset;
+ hologramSprite.DrawDepth = (int)DrawDepth.Mobs;
+ hologramSprite.NoRotation = true;
+ hologramSprite.DirectionOverride = Direction.South;
+ hologramSprite.EnableDirectionOverride = true;
- hologramSprite.AddLayer(layerData[i], i);
+ // Remove shading from all layers (except displacement maps)
+ for (int i = 0; i < hologramSprite.AllLayers.Count(); i++)
+ {
+ if (hologramSprite.TryGetLayer(i, out var layer) && layer.ShaderPrototype != "DisplacedStencilDraw")
+ hologramSprite.LayerSetShader(i, "unshaded");
}
- UpdateHologramShader(uid, hologramSprite, holopadhologram);
+ UpdateHologramShader(hologram, hologramSprite, holopadhologram);
}
private void UpdateHologramShader(EntityUid uid, SpriteComponent sprite, HolopadHologramComponent holopadHologram)
diff --git a/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs b/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs
index 7a0627b3e236..528e227f552a 100644
--- a/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs
+++ b/Content.Client/Labels/UI/HandLabelerWindow.xaml.cs
@@ -33,8 +33,13 @@ public HandLabelerWindow()
_focused = false;
LabelLineEdit.Text = _label;
};
+ }
- // Give the editor keybard focus, since that's the only
+ protected override void Opened()
+ {
+ base.Opened();
+
+ // Give the editor keyboard focus, since that's the only
// thing the user will want to be doing with this UI
LabelLineEdit.GrabKeyboardFocus();
}
diff --git a/Content.Client/LateJoin/LateJoinGui.cs b/Content.Client/LateJoin/LateJoinGui.cs
index 13cf281513d2..7d1921816ffa 100644
--- a/Content.Client/LateJoin/LateJoinGui.cs
+++ b/Content.Client/LateJoin/LateJoinGui.cs
@@ -170,7 +170,7 @@ private void RebuildUI()
foreach (var department in departments)
{
- var departmentName = Loc.GetString($"department-{department.ID}");
+ var departmentName = Loc.GetString(department.Name);
_jobCategories[id] = new Dictionary();
var stationAvailable = _gameTicker.JobsAvailable[id];
var jobsAvailable = new List();
diff --git a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
index 0212ce371e64..a131b879987d 100644
--- a/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
+++ b/Content.Client/Lobby/UI/HumanoidProfileEditor.xaml.cs
@@ -839,7 +839,7 @@ public void RefreshJobs()
foreach (var department in departments)
{
- var departmentName = Loc.GetString($"department-{department.ID}");
+ var departmentName = Loc.GetString(department.Name);
if (!_jobCategories.TryGetValue(department.ID, out var category))
{
diff --git a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
index 179a2c25c029..ac23e8216b23 100644
--- a/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
+++ b/Content.Client/Medical/CrewMonitoring/CrewMonitoringWindow.xaml.cs
@@ -25,6 +25,7 @@ public sealed partial class CrewMonitoringWindow : FancyWindow
{
[Dependency] private readonly IEntityManager _entManager = default!;
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
+ private readonly SharedTransformSystem _transformSystem;
private readonly SpriteSystem _spriteSystem;
private NetEntity? _trackedEntity;
@@ -36,10 +37,10 @@ public CrewMonitoringWindow()
RobustXamlLoader.Load(this);
IoCManager.InjectDependencies(this);
+ _transformSystem = _entManager.System();
_spriteSystem = _entManager.System();
NavMap.TrackedEntitySelectedAction += SetTrackedEntityFromNavMap;
-
}
public void Set(string stationName, EntityUid? mapUid)
@@ -290,7 +291,7 @@ private void PopulateDepartmentList(IEnumerable departmentSens
{
NavMap.TrackedEntities.TryAdd(sensor.SuitSensorUid,
new NavMapBlip
- (coordinates.Value,
+ (CoordinatesToLocal(coordinates.Value),
_blipTexture,
(_trackedEntity == null || sensor.SuitSensorUid == _trackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray,
sensor.SuitSensorUid == _trackedEntity));
@@ -356,7 +357,7 @@ private void UpdateSensorsTable(NetEntity? currTrackedEntity, NetEntity? prevTra
if (NavMap.TrackedEntities.TryGetValue(castSensor.SuitSensorUid, out var data))
{
data = new NavMapBlip
- (data.Coordinates,
+ (CoordinatesToLocal(data.Coordinates),
data.Texture,
(currTrackedEntity == null || castSensor.SuitSensorUid == currTrackedEntity) ? Color.LimeGreen : Color.LimeGreen * Color.DimGray,
castSensor.SuitSensorUid == currTrackedEntity);
@@ -421,6 +422,26 @@ private bool TryGetNextScrollPosition([NotNullWhen(true)] out float? nextScrollP
return false;
}
+ ///
+ /// Converts the input coordinates to an EntityCoordinates which are in
+ /// reference to the grid that the map is displaying. This is a stylistic
+ /// choice; this window deliberately limits the rate that blips update,
+ /// but if the blip is attached to another grid which is moving, that
+ /// blip will move smoothly, unlike the others. By converting the
+ /// coordinates, we are back in control of the blip movement.
+ ///
+ private EntityCoordinates CoordinatesToLocal(EntityCoordinates refCoords)
+ {
+ if (NavMap.MapUid != null)
+ {
+ return _transformSystem.WithEntityId(refCoords, (EntityUid)NavMap.MapUid);
+ }
+ else
+ {
+ return refCoords;
+ }
+ }
+
private void ClearOutDatedData()
{
SensorsTable.RemoveAllChildren();
diff --git a/Content.Client/Movement/Components/EyeCursorOffsetComponent.cs b/Content.Client/Movement/Components/EyeCursorOffsetComponent.cs
new file mode 100644
index 000000000000..5ed1bf4a6cd4
--- /dev/null
+++ b/Content.Client/Movement/Components/EyeCursorOffsetComponent.cs
@@ -0,0 +1,19 @@
+using System.Numerics;
+using Content.Client.Movement.Systems;
+using Content.Shared.Movement.Components;
+
+namespace Content.Client.Movement.Components;
+
+[RegisterComponent]
+public sealed partial class EyeCursorOffsetComponent : SharedEyeCursorOffsetComponent
+{
+ ///
+ /// The location the offset will attempt to pan towards; based on the cursor's position in the game window.
+ ///
+ public Vector2 TargetPosition = Vector2.Zero;
+
+ ///
+ /// The current positional offset being applied. Used to enable gradual panning.
+ ///
+ public Vector2 CurrentPosition = Vector2.Zero;
+}
diff --git a/Content.Client/Movement/Systems/ContentEyeSystem.cs b/Content.Client/Movement/Systems/ContentEyeSystem.cs
index 9fbd4b5c37d0..518a4a1bd40a 100644
--- a/Content.Client/Movement/Systems/ContentEyeSystem.cs
+++ b/Content.Client/Movement/Systems/ContentEyeSystem.cs
@@ -1,6 +1,7 @@
using System.Numerics;
using Content.Shared.Movement.Components;
using Content.Shared.Movement.Systems;
+using Robust.Client.GameObjects;
using Robust.Client.Player;
namespace Content.Client.Movement.Systems;
@@ -52,4 +53,14 @@ public void RequestEye(bool drawFov, bool drawLight)
{
RaisePredictiveEvent(new RequestEyeEvent(drawFov, drawLight));
}
+
+ public override void FrameUpdate(float frameTime)
+ {
+ base.FrameUpdate(frameTime);
+ var eyeEntities = AllEntityQuery();
+ while (eyeEntities.MoveNext(out var entity, out ContentEyeComponent? contentComponent, out EyeComponent? eyeComponent))
+ {
+ UpdateEyeOffset((entity, eyeComponent));
+ }
+ }
}
diff --git a/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs
new file mode 100644
index 000000000000..f3bff9ef0c95
--- /dev/null
+++ b/Content.Client/Movement/Systems/EyeCursorOffsetSystem.cs
@@ -0,0 +1,91 @@
+using System.Numerics;
+using Content.Client.Movement.Components;
+using Content.Shared.Camera;
+using Content.Shared.Inventory;
+using Content.Shared.Movement.Systems;
+using Robust.Client.Graphics;
+using Robust.Client.Input;
+using Robust.Shared.Map;
+using Robust.Client.Player;
+
+namespace Content.Client.Movement.Systems;
+
+public partial class EyeCursorOffsetSystem : EntitySystem
+{
+ [Dependency] private readonly IEyeManager _eyeManager = default!;
+ [Dependency] private readonly IInputManager _inputManager = default!;
+ [Dependency] private readonly IPlayerManager _player = default!;
+ [Dependency] private readonly SharedTransformSystem _transform = default!;
+ [Dependency] private readonly SharedContentEyeSystem _contentEye = default!;
+ [Dependency] private readonly IMapManager _mapManager = default!;
+ [Dependency] private readonly IClyde _clyde = default!;
+
+ // This value is here to make sure the user doesn't have to move their mouse
+ // all the way out to the edge of the screen to get the full offset.
+ static private float _edgeOffset = 0.9f;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnGetEyeOffsetEvent);
+ }
+
+ private void OnGetEyeOffsetEvent(EntityUid uid, EyeCursorOffsetComponent component, ref GetEyeOffsetEvent args)
+ {
+ var offset = OffsetAfterMouse(uid, component);
+ if (offset == null)
+ return;
+
+ args.Offset += offset.Value;
+ }
+
+ public Vector2? OffsetAfterMouse(EntityUid uid, EyeCursorOffsetComponent? component)
+ {
+ var localPlayer = _player.LocalPlayer?.ControlledEntity;
+ var mousePos = _inputManager.MouseScreenPosition;
+ var screenSize = _clyde.MainWindow.Size;
+ var minValue = MathF.Min(screenSize.X / 2, screenSize.Y / 2) * _edgeOffset;
+
+ var mouseNormalizedPos = new Vector2(-(mousePos.X - screenSize.X / 2) / minValue, (mousePos.Y - screenSize.Y / 2) / minValue); // X needs to be inverted here for some reason, otherwise it ends up flipped.
+
+ if (localPlayer == null)
+ return null;
+
+ var playerPos = _transform.GetWorldPosition(localPlayer.Value);
+
+ if (component == null)
+ {
+ component = EnsureComp(uid);
+ }
+
+ // Doesn't move the offset if the mouse has left the game window!
+ if (mousePos.Window != WindowId.Invalid)
+ {
+ // The offset must account for the in-world rotation.
+ var eyeRotation = _eyeManager.CurrentEye.Rotation;
+ var mouseActualRelativePos = Vector2.Transform(mouseNormalizedPos, System.Numerics.Quaternion.CreateFromAxisAngle(-System.Numerics.Vector3.UnitZ, (float)(eyeRotation.Opposite().Theta))); // I don't know, it just works.
+
+ // Caps the offset into a circle around the player.
+ mouseActualRelativePos *= component.MaxOffset;
+ if (mouseActualRelativePos.Length() > component.MaxOffset)
+ {
+ mouseActualRelativePos = mouseActualRelativePos.Normalized() * component.MaxOffset;
+ }
+
+ component.TargetPosition = mouseActualRelativePos;
+
+ //Makes the view not jump immediately when moving the cursor fast.
+ if (component.CurrentPosition != component.TargetPosition)
+ {
+ Vector2 vectorOffset = component.TargetPosition - component.CurrentPosition;
+ if (vectorOffset.Length() > component.OffsetSpeed)
+ {
+ vectorOffset = vectorOffset.Normalized() * component.OffsetSpeed;
+ }
+ component.CurrentPosition += vectorOffset;
+ }
+ }
+ return component.CurrentPosition;
+ }
+}
diff --git a/Content.Client/Options/UI/Tabs/AudioTab.xaml b/Content.Client/Options/UI/Tabs/AudioTab.xaml
index aafcfee74647..07d281b95f37 100644
--- a/Content.Client/Options/UI/Tabs/AudioTab.xaml
+++ b/Content.Client/Options/UI/Tabs/AudioTab.xaml
@@ -23,6 +23,7 @@
Text="{Loc 'ui-options-announcer-disable-multiple-sounds'}"
ToolTip="{Loc 'ui-options-announcer-disable-multiple-sounds-tooltip'}" />
+
diff --git a/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs b/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs
index 27cc9399576a..24677c06362b 100644
--- a/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs
+++ b/Content.Client/Options/UI/Tabs/AudioTab.xaml.cs
@@ -1,3 +1,4 @@
+using Content.Client.Administration.Managers;
using Content.Client.Audio;
using Content.Shared._EinsteinEngines.CCVar;
using Content.Shared._Impstation.CCVar;
@@ -14,8 +15,9 @@ namespace Content.Client.Options.UI.Tabs;
[GenerateTypedNameReferences]
public sealed partial class AudioTab : Control
{
- [Dependency] private readonly IConfigurationManager _cfg = default!;
[Dependency] private readonly IAudioManager _audio = default!;
+ [Dependency] private readonly IClientAdminManager _admin = default!;
+ [Dependency] private readonly IConfigurationManager _cfg = default!;
public AudioTab()
{
@@ -69,10 +71,30 @@ public AudioTab()
Control.AddOptionCheckBox(CCVars.EventMusicEnabled, EventMusicCheckBox);
Control.AddOptionCheckBox(EinsteinCCVars.AnnouncerDisableMultipleSounds, AnnouncerDisableMultipleSoundsCheckBox);
Control.AddOptionCheckBox(CCVars.AdminSoundsEnabled, AdminSoundsCheckBox);
+ Control.AddOptionCheckBox(CCVars.BwoinkSoundEnabled, BwoinkSoundCheckBox);
Control.Initialize();
}
+ protected override void EnteredTree()
+ {
+ base.EnteredTree();
+ _admin.AdminStatusUpdated += UpdateAdminButtonsVisibility;
+ UpdateAdminButtonsVisibility();
+ }
+
+ protected override void ExitedTree()
+ {
+ base.ExitedTree();
+ _admin.AdminStatusUpdated -= UpdateAdminButtonsVisibility;
+ }
+
+
+ private void UpdateAdminButtonsVisibility()
+ {
+ BwoinkSoundCheckBox.Visible = _admin.IsActive();
+ }
+
private void OnMasterVolumeSliderChanged(float value)
{
// TODO: I was thinking of giving OptionsTabControlRow a flag to "set CVar immediately", but I'm deferring that
diff --git a/Content.Client/Overlays/EquipmentHudSystem.cs b/Content.Client/Overlays/EquipmentHudSystem.cs
index 502a1f36274b..f3c556961a55 100644
--- a/Content.Client/Overlays/EquipmentHudSystem.cs
+++ b/Content.Client/Overlays/EquipmentHudSystem.cs
@@ -56,35 +56,35 @@ protected virtual void UpdateInternal(RefreshEquipmentHudEvent args) { }
protected virtual void DeactivateInternal() { }
- private void OnStartup(EntityUid uid, T component, ComponentStartup args)
+ private void OnStartup(Entity ent, ref ComponentStartup args)
{
- RefreshOverlay(uid);
+ RefreshOverlay();
}
- private void OnRemove(EntityUid uid, T component, ComponentRemove args)
+ private void OnRemove(Entity ent, ref ComponentRemove args)
{
- RefreshOverlay(uid);
+ RefreshOverlay();
}
private void OnPlayerAttached(LocalPlayerAttachedEvent args)
{
- RefreshOverlay(args.Entity);
+ RefreshOverlay();
}
private void OnPlayerDetached(LocalPlayerDetachedEvent args)
{
- if (_player.LocalSession?.AttachedEntity == null)
+ if (_player.LocalSession?.AttachedEntity is null)
Deactivate();
}
- private void OnCompEquip(EntityUid uid, T component, GotEquippedEvent args)
+ private void OnCompEquip(Entity ent, ref GotEquippedEvent args)
{
- RefreshOverlay(args.Equipee);
+ RefreshOverlay();
}
- private void OnCompUnequip(EntityUid uid, T component, GotUnequippedEvent args)
+ private void OnCompUnequip(Entity ent, ref GotUnequippedEvent args)
{
- RefreshOverlay(args.Equipee);
+ RefreshOverlay();
}
private void OnRoundRestart(RoundRestartCleanupEvent args)
@@ -92,24 +92,24 @@ private void OnRoundRestart(RoundRestartCleanupEvent args)
Deactivate();
}
- protected virtual void OnRefreshEquipmentHud(EntityUid uid, T component, InventoryRelayedEvent> args)
+ protected virtual void OnRefreshEquipmentHud(Entity ent, ref InventoryRelayedEvent> args)
{
- OnRefreshComponentHud(uid, component, args.Args);
+ OnRefreshComponentHud(ent, ref args.Args);
}
- protected virtual void OnRefreshComponentHud(EntityUid uid, T component, RefreshEquipmentHudEvent args)
+ protected virtual void OnRefreshComponentHud(Entity ent, ref RefreshEquipmentHudEvent args)
{
args.Active = true;
- args.Components.Add(component);
+ args.Components.Add(ent.Comp);
}
- protected void RefreshOverlay(EntityUid uid)
+ protected void RefreshOverlay()
{
- if (uid != _player.LocalSession?.AttachedEntity)
+ if (_player.LocalSession?.AttachedEntity is not { } entity)
return;
var ev = new RefreshEquipmentHudEvent(TargetSlots);
- RaiseLocalEvent(uid, ev);
+ RaiseLocalEvent(entity, ref ev);
if (ev.Active)
Update(ev);
diff --git a/Content.Client/Overlays/ShowHealthBarsSystem.cs b/Content.Client/Overlays/ShowHealthBarsSystem.cs
index b23209ff202b..9fefe93094ef 100644
--- a/Content.Client/Overlays/ShowHealthBarsSystem.cs
+++ b/Content.Client/Overlays/ShowHealthBarsSystem.cs
@@ -28,7 +28,7 @@ public override void Initialize()
private void OnHandleState(Entity ent, ref AfterAutoHandleStateEvent args)
{
- RefreshOverlay(ent);
+ RefreshOverlay();
}
protected override void UpdateInternal(RefreshEquipmentHudEvent component)
diff --git a/Content.Client/Overlays/ShowHealthIconsSystem.cs b/Content.Client/Overlays/ShowHealthIconsSystem.cs
index b4d845e4217a..3301261bd09e 100644
--- a/Content.Client/Overlays/ShowHealthIconsSystem.cs
+++ b/Content.Client/Overlays/ShowHealthIconsSystem.cs
@@ -47,7 +47,7 @@ protected override void DeactivateInternal()
private void OnHandleState(Entity ent, ref AfterAutoHandleStateEvent args)
{
- RefreshOverlay(ent);
+ RefreshOverlay();
}
private void OnGetStatusIconsEvent(Entity entity, ref GetStatusIconsEvent args)
diff --git a/Content.Client/Overlays/ShowMindShieldIconsSystem.cs b/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
index cdb9c54fdfa4..8f8b8e640775 100644
--- a/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
+++ b/Content.Client/Overlays/ShowMindShieldIconsSystem.cs
@@ -15,6 +15,16 @@ public override void Initialize()
base.Initialize();
SubscribeLocalEvent(OnGetStatusIconsEvent);
+ SubscribeLocalEvent(OnGetStatusIconsEventFake);
+ }
+ // TODO: Probably need to get this OFF of client since this can be read by bad actors rather easily
+ // ...imagine cheating in a game about silly paper dolls
+ private void OnGetStatusIconsEventFake(EntityUid uid, FakeMindShieldComponent component, ref GetStatusIconsEvent ev)
+ {
+ if(!IsActive)
+ return;
+ if (component.IsEnabled && _prototype.TryIndex(component.MindShieldStatusIcon, out var fakeStatusIconPrototype))
+ ev.StatusIcons.Add(fakeStatusIconPrototype);
}
private void OnGetStatusIconsEvent(EntityUid uid, MindShieldComponent component, ref GetStatusIconsEvent ev)
diff --git a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml
index 63f15837068a..7cef7d58b63d 100644
--- a/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml
+++ b/Content.Client/ParticleAccelerator/UI/ParticleAcceleratorControlMenu.xaml
@@ -1,50 +1,129 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client"
+ xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls"
+ xmlns:ui="clr-namespace:Content.Client.ParticleAccelerator.UI"
+ Title="{Loc 'particle-accelerator-control-menu-device-version-label'}"
+ MinSize="320 120">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
+
+
+
+
+
+
+
+
-
+
-
-
+
+
+
+
+
+
@@ -58,17 +137,47 @@
-
-
+
+
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/RCD/RCDMenu.xaml b/Content.Client/RCD/RCDMenu.xaml
index b3d5367a5fdd..d8ab0ac8f4c8 100644
--- a/Content.Client/RCD/RCDMenu.xaml
+++ b/Content.Client/RCD/RCDMenu.xaml
@@ -11,37 +11,37 @@
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+
diff --git a/Content.Client/RCD/RCDMenu.xaml.cs b/Content.Client/RCD/RCDMenu.xaml.cs
index f0d27d6b1fb8..7ea9894e41e2 100644
--- a/Content.Client/RCD/RCDMenu.xaml.cs
+++ b/Content.Client/RCD/RCDMenu.xaml.cs
@@ -74,7 +74,6 @@ public void Refresh()
var button = new RCDMenuButton()
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64f, 64f),
ToolTip = tooltip,
ProtoId = protoId,
@@ -99,9 +98,7 @@ public void Refresh()
// is visible in the main radial container (as these all start with Visible = false)
foreach (var child in main.Children)
{
- var castChild = child as RadialMenuTextureButton;
-
- if (castChild is not RadialMenuTextureButton)
+ if (child is not RadialMenuTextureButton castChild)
continue;
if (castChild.TargetLayer == proto.Category)
@@ -169,12 +166,7 @@ private void AddRCDMenuButtonOnClickActions(Control control)
}
}
-public sealed class RCDMenuButton : RadialMenuTextureButton
+public sealed class RCDMenuButton : RadialMenuTextureButtonWithSector
{
public ProtoId ProtoId { get; set; }
-
- public RCDMenuButton()
- {
-
- }
}
diff --git a/Content.Client/Radiation/Systems/RadiationSystem.cs b/Content.Client/Radiation/Systems/RadiationSystem.cs
index 929ad6aa4ac5..f4f109adc7c3 100644
--- a/Content.Client/Radiation/Systems/RadiationSystem.cs
+++ b/Content.Client/Radiation/Systems/RadiationSystem.cs
@@ -9,7 +9,7 @@ public sealed class RadiationSystem : EntitySystem
{
[Dependency] private readonly IOverlayManager _overlayMan = default!;
- public List? Rays;
+ public List? Rays;
public Dictionary>? ResistanceGrids;
public override void Initialize()
diff --git a/Content.Client/Shuttles/UI/NavScreen.xaml.cs b/Content.Client/Shuttles/UI/NavScreen.xaml.cs
index 7236714ef29f..e4727e93660f 100644
--- a/Content.Client/Shuttles/UI/NavScreen.xaml.cs
+++ b/Content.Client/Shuttles/UI/NavScreen.xaml.cs
@@ -81,13 +81,19 @@ protected override void Draw(DrawingHandleScreen handle)
// Get the positive reduced angle.
var displayRot = -worldRot.Reduced();
- GridPosition.Text = $"{worldPos.X:0.0}, {worldPos.Y:0.0}";
- GridOrientation.Text = $"{displayRot.Degrees:0.0}";
+ GridPosition.Text = Loc.GetString("shuttle-console-position-value",
+ ("X", $"{worldPos.X:0.0}"),
+ ("Y", $"{worldPos.Y:0.0}"));
+ GridOrientation.Text = Loc.GetString("shuttle-console-orientation-value",
+ ("angle", $"{displayRot.Degrees:0.0}"));
var gridVelocity = gridBody.LinearVelocity;
gridVelocity = displayRot.RotateVec(gridVelocity);
// Get linear velocity relative to the console entity
- GridLinearVelocity.Text = $"{gridVelocity.X + 10f * float.Epsilon:0.0}, {gridVelocity.Y + 10f * float.Epsilon:0.0}";
- GridAngularVelocity.Text = $"{-gridBody.AngularVelocity + 10f * float.Epsilon:0.0}";
+ GridLinearVelocity.Text = Loc.GetString("shuttle-console-linear-velocity-value",
+ ("X", $"{gridVelocity.X + 10f * float.Epsilon:0.0}"),
+ ("Y", $"{gridVelocity.Y + 10f * float.Epsilon:0.0}"));
+ GridAngularVelocity.Text = Loc.GetString("shuttle-console-angular-velocity-value",
+ ("angularVelocity", $"{-MathHelper.RadiansToDegrees(gridBody.AngularVelocity) + 10f * float.Epsilon:0.0}"));
}
}
diff --git a/Content.Client/Silicons/StationAi/StationAiMenu.xaml b/Content.Client/Silicons/StationAi/StationAiMenu.xaml
index d56fc8328984..cfa0b93234e7 100644
--- a/Content.Client/Silicons/StationAi/StationAiMenu.xaml
+++ b/Content.Client/Silicons/StationAi/StationAiMenu.xaml
@@ -1,4 +1,4 @@
-
-
+
diff --git a/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs b/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs
index b152f5ead8b1..a536d911f3c4 100644
--- a/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs
+++ b/Content.Client/Silicons/StationAi/StationAiMenu.xaml.cs
@@ -54,7 +54,6 @@ private void BuildButtons()
// TODO: This radial boilerplate is quite annoying
var button = new StationAiMenuButton(action.Event)
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64f, 64f),
ToolTip = action.Tooltip != null ? Loc.GetString(action.Tooltip) : null,
};
@@ -121,7 +120,7 @@ private void UpdatePosition()
}
}
-public sealed class StationAiMenuButton(BaseStationAiAction action) : RadialMenuTextureButton
+public sealed class StationAiMenuButton(BaseStationAiAction action) : RadialMenuTextureButtonWithSector
{
public BaseStationAiAction Action = action;
}
diff --git a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs
index 733dbe326583..d831f6024774 100644
--- a/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs
+++ b/Content.Client/UserInterface/Controls/DialogWindow.xaml.cs
@@ -87,9 +87,6 @@ public DialogWindow(string title, List entries, bool ok = true
Prompts.AddChild(box);
}
- // Grab keyboard focus for the first dialog entry
- _promptLines[0].Item2.GrabKeyboardFocus();
-
OkButton.OnPressed += _ => Confirm();
CancelButton.OnPressed += _ =>
@@ -110,6 +107,14 @@ public DialogWindow(string title, List entries, bool ok = true
OpenCentered();
}
+ protected override void Opened()
+ {
+ base.Opened();
+
+ // Grab keyboard focus for the first dialog entry
+ _promptLines[0].Item2.GrabKeyboardFocus();
+ }
+
private void Confirm()
{
var results = new Dictionary();
diff --git a/Content.Client/UserInterface/Controls/RadialContainer.cs b/Content.Client/UserInterface/Controls/RadialContainer.cs
index be9b8817a065..72555aab5f30 100644
--- a/Content.Client/UserInterface/Controls/RadialContainer.cs
+++ b/Content.Client/UserInterface/Controls/RadialContainer.cs
@@ -1,4 +1,3 @@
-using Robust.Client.Graphics;
using Robust.Client.UserInterface.Controls;
using System.Linq;
using System.Numerics;
@@ -8,6 +7,11 @@ namespace Content.Client.UserInterface.Controls;
[Virtual]
public class RadialContainer : LayoutContainer
{
+ ///
+ /// Increment of radius per child element to be rendered.
+ ///
+ private const float RadiusIncrement = 5f;
+
///
/// Specifies the anglular range, in radians, in which child elements will be placed.
/// The first value denotes the angle at which the first element is to be placed, and
@@ -49,10 +53,30 @@ public Vector2 AngularRange
public RAlignment RadialAlignment { get; set; } = RAlignment.Clockwise;
///
- /// Determines how far from the radial container's center that its child elements will be placed
+ /// Radial menu radius determines how far from the radial container's center its child elements will be placed.
+ /// To correctly display dynamic amount of elements control actually resizes depending on amount of child buttons,
+ /// but uses this property as base value for final radius calculation.
///
[ViewVariables(VVAccess.ReadWrite)]
- public float Radius { get; set; } = 100f;
+ public float InitialRadius { get; set; } = 100f;
+
+ ///
+ /// Radial menu radius determines how far from the radial container's center its child elements will be placed.
+ /// This is dynamically calculated (based on child button count) radius, result of and
+ /// multiplied by currently visible child button count.
+ ///
+ [ViewVariables(VVAccess.ReadOnly)]
+ public float CalculatedRadius { get; private set; }
+
+ ///
+ /// Determines radial menu button sectors inner radius, is a multiplier of .
+ ///
+ public float InnerRadiusMultiplier { get; set; } = 0.5f;
+
+ ///
+ /// Determines radial menu button sectors outer radius, is a multiplier of .
+ ///
+ public float OuterRadiusMultiplier { get; set; } = 1.5f;
///
/// Sets whether the container should reserve a space on the layout for child which are not currently visible
@@ -67,37 +91,74 @@ public RadialContainer()
{
}
-
- protected override void Draw(DrawingHandleScreen handle)
+
+ ///
+ protected override Vector2 ArrangeOverride(Vector2 finalSize)
{
-
- const float baseRadius = 100f;
- const float radiusIncrement = 5f;
-
- var children = ReserveSpaceForHiddenChildren ? Children : Children.Where(x => x.Visible);
+ var children = ReserveSpaceForHiddenChildren
+ ? Children
+ : Children.Where(x => x.Visible);
+
var childCount = children.Count();
-
- // Add padding from the center at higher child counts so they don't overlap.
- Radius = baseRadius + (childCount * radiusIncrement);
+
+ // Add padding from the center at higher child counts so they don't overlap.
+ CalculatedRadius = InitialRadius + (childCount * RadiusIncrement);
+
+ var isAntiClockwise = RadialAlignment == RAlignment.AntiClockwise;
// Determine the size of the arc, accounting for clockwise and anti-clockwise arrangements
var arc = AngularRange.Y - AngularRange.X;
- arc = (arc < 0) ? MathF.Tau + arc : arc;
- arc = (RadialAlignment == RAlignment.AntiClockwise) ? MathF.Tau - arc : arc;
+ arc = arc < 0
+ ? MathF.Tau + arc
+ : arc;
+ arc = isAntiClockwise
+ ? MathF.Tau - arc
+ : arc;
// Account for both circular arrangements and arc-based arrangements
- var childMod = MathHelper.CloseTo(arc, MathF.Tau, 0.01f) ? 0 : 1;
+ var childMod = MathHelper.CloseTo(arc, MathF.Tau, 0.01f)
+ ? 0
+ : 1;
// Determine the separation between child elements
var sepAngle = arc / (childCount - childMod);
- sepAngle *= (RadialAlignment == RAlignment.AntiClockwise) ? -1f : 1f;
+ sepAngle *= isAntiClockwise
+ ? -1f
+ : 1f;
+
+ var controlCenter = finalSize * 0.5f;
// Adjust the positions of all the child elements
- foreach (var (i, child) in children.Select((x, i) => (i, x)))
+ var query = children.Select((x, index) => (index, x));
+ foreach (var (childIndex, child) in query)
{
- var position = new Vector2(Radius * MathF.Sin(AngularRange.X + sepAngle * i) + Width / 2f - child.Width / 2f, -Radius * MathF.Cos(AngularRange.X + sepAngle * i) + Height / 2f - child.Height / 2f);
+ const float angleOffset = MathF.PI * 0.5f;
+
+ var targetAngleOfChild = AngularRange.X + sepAngle * (childIndex + 0.5f) + angleOffset;
+
+ // flooring values for snapping float values to physical grid -
+ // it prevents gaps and overlapping between different button segments
+ var position = new Vector2(
+ MathF.Floor(CalculatedRadius * MathF.Cos(targetAngleOfChild)),
+ MathF.Floor(-CalculatedRadius * MathF.Sin(targetAngleOfChild))
+ ) + controlCenter - child.DesiredSize * 0.5f + Position;
+
SetPosition(child, position);
+
+ // radial menu buttons with sector need to also know in which sector and around which point
+ // they should be rendered, how much space sector should should take etc.
+ if (child is IRadialMenuItemWithSector tb)
+ {
+ tb.AngleSectorFrom = sepAngle * childIndex;
+ tb.AngleSectorTo = sepAngle * (childIndex + 1);
+ tb.AngleOffset = angleOffset;
+ tb.InnerRadius = CalculatedRadius * InnerRadiusMultiplier;
+ tb.OuterRadius = CalculatedRadius * OuterRadiusMultiplier;
+ tb.ParentCenter = controlCenter;
+ }
}
+
+ return base.ArrangeOverride(finalSize);
}
///
@@ -109,4 +170,5 @@ public enum RAlignment : byte
Clockwise,
AntiClockwise,
}
+
}
diff --git a/Content.Client/UserInterface/Controls/RadialMenu.cs b/Content.Client/UserInterface/Controls/RadialMenu.cs
index 5f56ad7f866d..1b7f07aa2cc7 100644
--- a/Content.Client/UserInterface/Controls/RadialMenu.cs
+++ b/Content.Client/UserInterface/Controls/RadialMenu.cs
@@ -3,6 +3,9 @@
using Robust.Client.UserInterface.CustomControls;
using System.Linq;
using System.Numerics;
+using Content.Shared.Input;
+using Robust.Client.Graphics;
+using Robust.Shared.Input;
namespace Content.Client.UserInterface.Controls;
@@ -12,11 +15,16 @@ public class RadialMenu : BaseWindow
///
/// Contextual button used to traverse through previous layers of the radial menu
///
- public TextureButton? ContextualButton { get; set; }
+ public RadialMenuContextualCentralTextureButton ContextualButton { get; }
+
+ ///
+ /// Button that represents outer area of menu (closes menu on outside clicks).
+ ///
+ public RadialMenuOuterAreaButton MenuOuterAreaButton { get; }
///
/// Set a style class to be applied to the contextual button when it is set to move the user back through previous layers of the radial menu
- ///
+ ///
public string? BackButtonStyleClass
{
get
@@ -52,7 +60,7 @@ public string? CloseButtonStyleClass
}
}
- private List _path = new();
+ private readonly List _path = new();
private string? _backButtonStyleClass;
private string? _closeButtonStyleClass;
@@ -60,8 +68,8 @@ public string? CloseButtonStyleClass
/// A free floating menu which enables the quick display of one or more radial containers
///
///
- /// Only one radial container is visible at a time (each container forming a separate 'layer' within
- /// the menu), along with a contextual button at the menu center, which will either return the user
+ /// Only one radial container is visible at a time (each container forming a separate 'layer' within
+ /// the menu), along with a contextual button at the menu center, which will either return the user
/// to the previous layer or close the menu if there are no previous layers left to traverse.
/// To create a functional radial menu, simply parent one or more named radial containers to it,
/// and populate the radial containers with RadialMenuButtons. Setting the TargetLayer field of these
@@ -78,23 +86,56 @@ public RadialMenu()
}
// Auto generate a contextual button for moving back through visited layers
- ContextualButton = new TextureButton()
+ ContextualButton = new RadialMenuContextualCentralTextureButton
{
HorizontalAlignment = HAlignment.Center,
VerticalAlignment = VAlignment.Center,
SetSize = new Vector2(64f, 64f),
};
+ MenuOuterAreaButton = new RadialMenuOuterAreaButton();
ContextualButton.OnButtonUp += _ => ReturnToPreviousLayer();
+ MenuOuterAreaButton.OnButtonUp += _ => Close();
AddChild(ContextualButton);
+ AddChild(MenuOuterAreaButton);
// Hide any further add children, unless its promoted to the active layer
- OnChildAdded += child => child.Visible = (GetCurrentActiveLayer() == child);
+ OnChildAdded += child =>
+ {
+ child.Visible = GetCurrentActiveLayer() == child;
+ SetupContextualButtonData(child);
+ };
+ }
+
+ private void SetupContextualButtonData(Control child)
+ {
+ if (child is RadialContainer { Visible: true } container)
+ {
+ var parentCenter = MinSize * 0.5f;
+ ContextualButton.ParentCenter = parentCenter;
+ MenuOuterAreaButton.ParentCenter = parentCenter;
+ ContextualButton.InnerRadius = container.CalculatedRadius * container.InnerRadiusMultiplier;
+ MenuOuterAreaButton.OuterRadius = container.CalculatedRadius * container.OuterRadiusMultiplier;
+ }
+ }
+
+ ///
+ protected override Vector2 ArrangeOverride(Vector2 finalSize)
+ {
+ var result = base.ArrangeOverride(finalSize);
+
+ var currentLayer = GetCurrentActiveLayer();
+ if (currentLayer != null)
+ {
+ SetupContextualButtonData(currentLayer);
+ }
+
+ return result;
}
private Control? GetCurrentActiveLayer()
{
- var children = Children.Where(x => x != ContextualButton);
+ var children = Children.Where(x => x != ContextualButton && x != MenuOuterAreaButton);
if (!children.Any())
return null;
@@ -116,7 +157,7 @@ public bool TryToMoveToNewLayer(string newLayer)
foreach (var child in Children)
{
- if (child == ContextualButton)
+ if (child == ContextualButton || child == MenuOuterAreaButton)
continue;
// Hide layers which are not of interest
@@ -129,6 +170,7 @@ public bool TryToMoveToNewLayer(string newLayer)
else
{
child.Visible = true;
+ SetupContextualButtonData(child);
result = true;
}
}
@@ -158,7 +200,7 @@ public void ReturnToPreviousLayer()
// Hide all children except the contextual button
foreach (var child in Children)
{
- if (child != ContextualButton)
+ if (child != ContextualButton && child != MenuOuterAreaButton)
child.Visible = false;
}
@@ -172,25 +214,104 @@ public void ReturnToPreviousLayer()
}
}
+///
+/// Base class for radial menu buttons. Excludes all actions except clicks and alt-clicks
+/// from interactions.
+///
+[Virtual]
+public class RadialMenuTextureButtonBase : TextureButton
+{
+ ///
+ protected RadialMenuTextureButtonBase()
+ {
+ EnableAllKeybinds = true;
+ }
+
+ ///
+ protected override void KeyBindUp(GUIBoundKeyEventArgs args)
+ {
+ if (args.Function == EngineKeyFunctions.UIClick
+ || args.Function == ContentKeyFunctions.AltActivateItemInWorld)
+ base.KeyBindUp(args);
+ }
+}
+
+///
+/// Special button for closing radial menu or going back between radial menu levels.
+/// Is looking like just but considers whole space around
+/// itself (til radial menu buttons) as itself in case of clicking. But this 'effect'
+/// works only if control have parent, and ActiveContainer property is set.
+/// Also considers all space outside of radial menu buttons as itself for clicking.
+///
+public sealed class RadialMenuContextualCentralTextureButton : RadialMenuTextureButtonBase
+{
+ public float InnerRadius { get; set; }
+
+ public Vector2? ParentCenter { get; set; }
+
+ ///
+ protected override bool HasPoint(Vector2 point)
+ {
+ if (ParentCenter == null)
+ {
+ return base.HasPoint(point);
+ }
+
+ var distSquared = (point + Position - ParentCenter.Value).LengthSquared();
+
+ var innerRadiusSquared = InnerRadius * InnerRadius;
+
+ // comparing to squared values is faster then making sqrt
+ return distSquared < innerRadiusSquared;
+ }
+}
+
+///
+/// Menu button for outer area of radial menu (covers everything 'outside').
+///
+public sealed class RadialMenuOuterAreaButton : RadialMenuTextureButtonBase
+{
+ public float OuterRadius { get; set; }
+
+ public Vector2? ParentCenter { get; set; }
+
+ ///
+ protected override bool HasPoint(Vector2 point)
+ {
+ if (ParentCenter == null)
+ {
+ return base.HasPoint(point);
+ }
+
+ var distSquared = (point + Position - ParentCenter.Value).LengthSquared();
+
+ var outerRadiusSquared = OuterRadius * OuterRadius;
+
+ // comparing to squared values is faster, then making sqrt
+ return distSquared > outerRadiusSquared;
+ }
+}
+
[Virtual]
-public class RadialMenuButton : Button
+public class RadialMenuTextureButton : RadialMenuTextureButtonBase
{
///
- /// Upon clicking this button the radial menu will transition to the named layer
+ /// Upon clicking this button the radial menu will be moved to the named layer
///
- public string? TargetLayer { get; set; }
+ public string TargetLayer { get; set; } = string.Empty;
///
- /// A simple button that can move the user to a different layer within a radial menu
+ /// A simple texture button that can move the user to a different layer within a radial menu
///
- public RadialMenuButton()
+ public RadialMenuTextureButton()
{
+ EnableAllKeybinds = true;
OnButtonUp += OnClicked;
}
private void OnClicked(ButtonEventArgs args)
{
- if (TargetLayer == null || TargetLayer == string.Empty)
+ if (TargetLayer == string.Empty)
return;
var parent = FindParentMultiLayerContainer(this);
@@ -205,51 +326,329 @@ private void OnClicked(ButtonEventArgs args)
{
foreach (var ancestor in control.GetSelfAndLogicalAncestors())
{
- if (ancestor is RadialMenu)
- return ancestor as RadialMenu;
+ if (ancestor is RadialMenu menu)
+ return menu;
}
return null;
}
}
+public interface IRadialMenuItemWithSector
+{
+ ///
+ /// Angle in radian where button sector should start.
+ ///
+ public float AngleSectorFrom { set; }
+
+ ///
+ /// Angle in radian where button sector should end.
+ ///
+ public float AngleSectorTo { set; }
+
+ ///
+ /// Outer radius for drawing segment and pointer detection.
+ ///
+ public float OuterRadius { set; }
+
+ ///
+ /// Outer radius for drawing segment and pointer detection.
+ ///
+ public float InnerRadius { set; }
+
+ ///
+ /// Offset in radian by which menu button should be rotated.
+ ///
+ public float AngleOffset { set; }
+
+ ///
+ /// Coordinates of center in parent component - button container.
+ ///
+ public Vector2 ParentCenter { set; }
+}
+
[Virtual]
-public class RadialMenuTextureButton : TextureButton
+public class RadialMenuTextureButtonWithSector : RadialMenuTextureButton, IRadialMenuItemWithSector
{
+ private Vector2[]? _sectorPointsForDrawing;
+
+ private float _angleSectorFrom;
+ private float _angleSectorTo;
+ private float _outerRadius;
+ private float _innerRadius;
+ private float _angleOffset;
+
+ private bool _isWholeCircle;
+ private Vector2? _parentCenter;
+
+ private Color _backgroundColorSrgb = Color.ToSrgb(new Color(70, 73, 102, 128));
+ private Color _hoverBackgroundColorSrgb = Color.ToSrgb(new Color(87, 91, 127, 128));
+ private Color _borderColorSrgb = Color.ToSrgb(new Color(173, 216, 230, 70));
+ private Color _hoverBorderColorSrgb = Color.ToSrgb(new Color(87, 91, 127, 128));
+
///
- /// Upon clicking this button the radial menu will be moved to the named layer
+ /// Marker, that control should render border of segment. Is false by default.
///
- public string TargetLayer { get; set; } = string.Empty;
+ ///
+ /// By default color of border is same as color of background. Use
+ /// and to change it.
+ ///
+ public bool DrawBorder { get; set; } = false;
+
+ ///
+ /// Marker, that control should render background of all sector. Is true by default.
+ ///
+ public bool DrawBackground { get; set; } = true;
+
+ ///
+ /// Marker, that control should render separator lines.
+ /// Separator lines are used to visually separate sector of radial menu items.
+ /// Is true by default
+ ///
+ public bool DrawSeparators { get; set; } = true;
+
+ ///
+ /// Color of background in non-hovered state. Accepts RGB color, works with sRGB for DrawPrimitive internally.
+ ///
+ public Color BackgroundColor
+ {
+ get => Color.FromSrgb(_backgroundColorSrgb);
+ set => _backgroundColorSrgb = Color.ToSrgb(value);
+ }
+
+ ///
+ /// Color of background in hovered state. Accepts RGB color, works with sRGB for DrawPrimitive internally.
+ ///
+ public Color HoverBackgroundColor
+ {
+ get => Color.FromSrgb(_hoverBackgroundColorSrgb);
+ set => _hoverBackgroundColorSrgb = Color.ToSrgb(value);
+ }
+
+ ///
+ /// Color of button border. Accepts RGB color, works with sRGB for DrawPrimitive internally.
+ ///
+ public Color BorderColor
+ {
+ get => Color.FromSrgb(_borderColorSrgb);
+ set => _borderColorSrgb = Color.ToSrgb(value);
+ }
+
+ ///
+ /// Color of button border when button is hovered. Accepts RGB color, works with sRGB for DrawPrimitive internally.
+ ///
+ public Color HoverBorderColor
+ {
+ get => Color.FromSrgb(_hoverBorderColorSrgb);
+ set => _hoverBorderColorSrgb = Color.ToSrgb(value);
+ }
+
+ ///
+ /// Color of separator lines.
+ /// Separator lines are used to visually separate sector of radial menu items.
+ ///
+ public Color SeparatorColor { get; set; } = new Color(128, 128, 128, 128);
+
+ ///
+ float IRadialMenuItemWithSector.AngleSectorFrom
+ {
+ set
+ {
+ _angleSectorFrom = value;
+ _isWholeCircle = IsWholeCircle(value, _angleSectorTo);
+ }
+ }
+
+ ///
+ float IRadialMenuItemWithSector.AngleSectorTo
+ {
+ set
+ {
+ _angleSectorTo = value;
+ _isWholeCircle = IsWholeCircle(_angleSectorFrom, value);
+ }
+ }
+
+ ///
+ float IRadialMenuItemWithSector.OuterRadius { set => _outerRadius = value; }
+
+ ///
+ float IRadialMenuItemWithSector.InnerRadius { set => _innerRadius = value; }
+
+ ///
+ public float AngleOffset { set => _angleOffset = value; }
+
+ ///
+ Vector2 IRadialMenuItemWithSector.ParentCenter { set => _parentCenter = value; }
///
/// A simple texture button that can move the user to a different layer within a radial menu
///
- public RadialMenuTextureButton()
+ public RadialMenuTextureButtonWithSector()
{
- OnButtonUp += OnClicked;
}
- private void OnClicked(ButtonEventArgs args)
+ ///
+ protected override void Draw(DrawingHandleScreen handle)
{
- if (TargetLayer == string.Empty)
+ base.Draw(handle);
+
+ if (_parentCenter == null)
+ {
return;
+ }
- var parent = FindParentMultiLayerContainer(this);
+ // draw sector where space that button occupies actually is
+ var containerCenter = (_parentCenter.Value - Position) * UIScale;
- if (parent == null)
- return;
+ var angleFrom = _angleSectorFrom + _angleOffset;
+ var angleTo = _angleSectorTo + _angleOffset;
+ if (DrawBackground)
+ {
+ var segmentColor = DrawMode == DrawModeEnum.Hover
+ ? _hoverBackgroundColorSrgb
+ : _backgroundColorSrgb;
- parent.TryToMoveToNewLayer(TargetLayer);
+ DrawAnnulusSector(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, segmentColor);
+ }
+
+ if (DrawBorder)
+ {
+ var borderColor = DrawMode == DrawModeEnum.Hover
+ ? _hoverBorderColorSrgb
+ : _borderColorSrgb;
+ DrawAnnulusSector(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, borderColor, false);
+ }
+
+ if (!_isWholeCircle && DrawSeparators)
+ {
+ DrawSeparatorLines(handle, containerCenter, _innerRadius * UIScale, _outerRadius * UIScale, angleFrom, angleTo, SeparatorColor);
+ }
}
- private RadialMenu? FindParentMultiLayerContainer(Control control)
+ ///
+ protected override bool HasPoint(Vector2 point)
{
- foreach (var ancestor in control.GetSelfAndLogicalAncestors())
+ if (_parentCenter == null)
{
- if (ancestor is RadialMenu)
- return ancestor as RadialMenu;
+ return base.HasPoint(point);
}
- return null;
+ var outerRadiusSquared = _outerRadius * _outerRadius;
+ var innerRadiusSquared = _innerRadius * _innerRadius;
+
+ var distSquared = (point + Position - _parentCenter.Value).LengthSquared();
+ var isInRadius = distSquared < outerRadiusSquared && distSquared > innerRadiusSquared;
+ if (!isInRadius)
+ {
+ return false;
+ }
+
+ // difference from the center of the parent to the `point`
+ var pointFromParent = point + Position - _parentCenter.Value;
+
+ // Flip Y to get from ui coordinates to natural coordinates
+ var angle = MathF.Atan2(-pointFromParent.Y, pointFromParent.X) - _angleOffset;
+ if (angle < 0)
+ {
+ // atan2 range is -pi->pi, while angle sectors are
+ // 0->2pi, so remap the result into that range
+ angle = MathF.PI * 2 + angle;
+ }
+
+ var isInAngle = angle >= _angleSectorFrom && angle < _angleSectorTo;
+ return isInAngle;
+ }
+
+ ///
+ /// Draw segment between two concentrated circles from and to certain angles.
+ ///
+ /// Drawing handle, to which rendering should be delegated.
+ /// Point where circle center should be.
+ /// Radius of internal circle.
+ /// Radius of external circle.
+ /// Angle in radian, from which sector should start.
+ /// Angle in radian, from which sector should start.
+ /// Color for drawing.
+ /// Should figure be filled, or have only border.
+ private void DrawAnnulusSector(
+ DrawingHandleScreen drawingHandleScreen,
+ Vector2 center,
+ float radiusInner,
+ float radiusOuter,
+ float angleSectorFrom,
+ float angleSectorTo,
+ Color color,
+ bool filled = true
+ )
+ {
+ const float minimalSegmentSize = MathF.Tau / 128f;
+
+ var requestedSegmentSize = angleSectorTo - angleSectorFrom;
+ var segmentCount = (int)(requestedSegmentSize / minimalSegmentSize) + 1;
+ var anglePerSegment = requestedSegmentSize / (segmentCount - 1);
+
+ var bufferSize = segmentCount * 2;
+ if (_sectorPointsForDrawing == null || _sectorPointsForDrawing.Length != bufferSize)
+ {
+ _sectorPointsForDrawing ??= new Vector2[bufferSize];
+ }
+
+ for (var i = 0; i < segmentCount; i++)
+ {
+ var angle = angleSectorFrom + anglePerSegment * i;
+
+ // Flip Y to get from ui coordinates to natural coordinates
+ var unitPos = new Vector2(MathF.Cos(angle), -MathF.Sin(angle));
+ var outerPoint = center + unitPos * radiusOuter;
+ var innerPoint = center + unitPos * radiusInner;
+ if (filled)
+ {
+ // to make filled sector we need to create strip from triangles
+ _sectorPointsForDrawing[i * 2] = outerPoint;
+ _sectorPointsForDrawing[i * 2 + 1] = innerPoint;
+ }
+ else
+ {
+ // to make border of sector we need points ordered as sequences on radius
+ _sectorPointsForDrawing[i] = outerPoint;
+ _sectorPointsForDrawing[bufferSize - 1 - i] = innerPoint;
+ }
+ }
+
+ var type = filled
+ ? DrawPrimitiveTopology.TriangleStrip
+ : DrawPrimitiveTopology.LineStrip;
+ drawingHandleScreen.DrawPrimitives(type, _sectorPointsForDrawing, color);
+ }
+
+ private static void DrawSeparatorLines(
+ DrawingHandleScreen drawingHandleScreen,
+ Vector2 center,
+ float radiusInner,
+ float radiusOuter,
+ float angleSectorFrom,
+ float angleSectorTo,
+ Color color
+ )
+ {
+ var fromPoint = new Angle(-angleSectorFrom).RotateVec(Vector2.UnitX);
+ drawingHandleScreen.DrawLine(
+ center + fromPoint * radiusOuter,
+ center + fromPoint * radiusInner,
+ color
+ );
+
+ var toPoint = new Angle(-angleSectorTo).RotateVec(Vector2.UnitX);
+ drawingHandleScreen.DrawLine(
+ center + toPoint * radiusOuter,
+ center + toPoint * radiusInner,
+ color
+ );
+ }
+
+ private static bool IsWholeCircle(float angleSectorFrom, float angleSectorTo)
+ {
+ return new Angle(angleSectorFrom).EqualsApprox(new Angle(angleSectorTo));
}
}
diff --git a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs
index 9f75b5cecde7..445bcc8601a7 100644
--- a/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs
+++ b/Content.Client/UserInterface/Systems/Bwoink/AHelpUIController.cs
@@ -45,6 +45,7 @@ public sealed class AHelpUIController: UIController, IOnSystemChanged _aHelpSound = v, true);
+ _config.OnValueChanged(CCVars.BwoinkSoundEnabled, v => _bwoinkSoundEnabled = v, true);
}
public void UnloadButton()
@@ -135,7 +137,7 @@ private void ReceivedBwoink(object? sender, SharedBwoinkSystem.BwoinkTextMessage
}
if (message.PlaySound && localPlayer.UserId != message.TrueSender)
{
- if (_aHelpSound != null)
+ if (_aHelpSound != null && (_bwoinkSoundEnabled || !_adminManager.IsActive()))
_audio.PlayGlobal(_aHelpSound, Filter.Local(), false);
_clyde.RequestWindowAttention();
}
diff --git a/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs b/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
index bf6fbf4e3f29..6f4a6b8ead3a 100644
--- a/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
+++ b/Content.Client/UserInterface/Systems/DamageOverlays/DamageOverlayUiController.cs
@@ -3,6 +3,7 @@
using Content.Shared.Mobs;
using Content.Shared.Mobs.Components;
using Content.Shared.Mobs.Systems;
+using Content.Shared.Traits.Assorted;
using JetBrains.Annotations;
using Robust.Client.Graphics;
using Robust.Client.Player;
@@ -94,8 +95,14 @@ private void UpdateOverlays(EntityUid entity, MobStateComponent? mobState, Damag
{
case MobState.Alive:
{
- if (thresholds.ShowBruteOverlay && damageable.DamagePerGroup.TryGetValue("Brute", out var bruteDamage))
+ if (EntityManager.HasComponent(entity))
+ {
+ _overlay.BruteLevel = 0;
+ }
+ else if (damageable.DamagePerGroup.TryGetValue("Brute", out var bruteDamage))
+ {
_overlay.BruteLevel = FixedPoint2.Min(1f, bruteDamage / critThreshold).Float();
+ }
else
_overlay.BruteLevel = 0;
diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
index 540d76c129bf..9e20d2d5a9c7 100644
--- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
+++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.Effects.cs
@@ -138,6 +138,7 @@ private Animation GetThrustAnimation(SpriteComponent sprite, float distance, Ang
const float length = 0.15f;
var startOffset = sprite.Rotation.RotateVec(new Vector2(0f, -distance / 5f));
var endOffset = sprite.Rotation.RotateVec(new Vector2(0f, -distance));
+ sprite.Rotation += spriteRotation;
return new Animation()
{
diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs
index 26ec75f99570..dc865803699f 100644
--- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs
+++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs
@@ -170,7 +170,7 @@ protected override bool InRange(EntityUid user, EntityUid target, float range, I
var targetCoordinates = xform.Coordinates;
var targetLocalAngle = xform.LocalRotation;
- return Interaction.InRangeUnobstructed(user, target, targetCoordinates, targetLocalAngle, range);
+ return Interaction.InRangeUnobstructed(user, target, targetCoordinates, targetLocalAngle, range, overlapCheck: false);
}
protected override void DoDamageEffect(List targets, EntityUid? user, TransformComponent targetXform)
diff --git a/Content.Client/Wieldable/WieldableSystem.cs b/Content.Client/Wieldable/WieldableSystem.cs
new file mode 100644
index 000000000000..2de837923c87
--- /dev/null
+++ b/Content.Client/Wieldable/WieldableSystem.cs
@@ -0,0 +1,49 @@
+using System.Numerics;
+using Content.Client.Movement.Components;
+using Content.Client.Movement.Systems;
+using Content.Shared.Camera;
+using Content.Shared.Hands;
+using Content.Shared.Movement.Components;
+using Content.Shared.Wieldable;
+using Content.Shared.Wieldable.Components;
+using Robust.Client.Timing;
+
+namespace Content.Client.Wieldable;
+
+public sealed class WieldableSystem : SharedWieldableSystem
+{
+ [Dependency] private readonly EyeCursorOffsetSystem _eyeOffset = default!;
+ [Dependency] private readonly IClientGameTiming _gameTiming = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnEyeOffsetUnwielded);
+ SubscribeLocalEvent>(OnGetEyeOffset);
+ }
+
+ public void OnEyeOffsetUnwielded(Entity entity, ref ItemUnwieldedEvent args)
+ {
+ if (!TryComp(entity.Owner, out EyeCursorOffsetComponent? cursorOffsetComp))
+ return;
+
+ if (_gameTiming.IsFirstTimePredicted)
+ cursorOffsetComp.CurrentPosition = Vector2.Zero;
+ }
+
+ public void OnGetEyeOffset(Entity entity, ref HeldRelayedEvent args)
+ {
+ if (!TryComp(entity.Owner, out WieldableComponent? wieldableComp))
+ return;
+
+ if (!wieldableComp.Wielded)
+ return;
+
+ var offset = _eyeOffset.OffsetAfterMouse(entity.Owner, null);
+ if (offset == null)
+ return;
+
+ args.Args.Offset += offset.Value;
+ }
+}
diff --git a/Content.Client/_EinsteinEngines/ShortConstruction/UI/ShortConstructionMenu.xaml b/Content.Client/_EinsteinEngines/ShortConstruction/UI/ShortConstructionMenu.xaml
index 6d1e0b12ab63..e16606317782 100644
--- a/Content.Client/_EinsteinEngines/ShortConstruction/UI/ShortConstructionMenu.xaml
+++ b/Content.Client/_EinsteinEngines/ShortConstruction/UI/ShortConstructionMenu.xaml
@@ -7,5 +7,5 @@
MinSize="450 450">
-
+
diff --git a/Content.Client/_EinsteinEngines/ShortConstruction/UI/ShortConstructionMenu.xaml.cs b/Content.Client/_EinsteinEngines/ShortConstruction/UI/ShortConstructionMenu.xaml.cs
index 2a117818878b..20ac9fcedb6a 100644
--- a/Content.Client/_EinsteinEngines/ShortConstruction/UI/ShortConstructionMenu.xaml.cs
+++ b/Content.Client/_EinsteinEngines/ShortConstruction/UI/ShortConstructionMenu.xaml.cs
@@ -59,10 +59,9 @@ public ShortConstructionMenu(EntityUid owner, ShortConstructionMenuBUI bui, Cons
if (!_protoManager.TryIndex(protoId, out var proto))
continue;
- var button = new RadialMenuTextureButton
+ var button = new RadialMenuTextureButtonWithSector
{
ToolTip = Loc.GetString(proto.Name),
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(48f, 48f)
};
diff --git a/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterEntryContainer.xaml b/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterEntryContainer.xaml
index af1aa148f313..974dd6b064ed 100644
--- a/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterEntryContainer.xaml
+++ b/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterEntryContainer.xaml
@@ -23,7 +23,7 @@
-
+
@@ -36,7 +36,7 @@
-
@@ -59,7 +59,7 @@
-
+
@@ -82,7 +82,7 @@
-
+
@@ -101,9 +101,9 @@
-
+
-
+
@@ -115,7 +115,7 @@
-
+
@@ -129,7 +129,7 @@
-
+
@@ -182,8 +182,16 @@
-
-
+
+
+
+
+
+
+
+
+
+
diff --git a/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterEntryContainer.xaml.cs b/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterEntryContainer.xaml.cs
index e3f0df35cf7a..5e5d388562b7 100644
--- a/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterEntryContainer.xaml.cs
+++ b/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterEntryContainer.xaml.cs
@@ -31,7 +31,7 @@ public sealed partial class SupermatterEntryContainer : BoxContainer
private readonly Color _colorRed = StyleNano.DangerousRedFore;
private readonly Color _colorOrange = StyleNano.ConcerningOrangeFore;
private readonly Color _colorGreen = StyleNano.GoodGreenFore;
- private readonly Color _colorTurqoise = Color.FromHex("#00fff7");
+ private readonly Color _colorTurquoise = Color.FromHex("#00fff7");
// Arrow icons
private readonly string _arrowUp = "/Textures/_EinsteinEngines/Interface/Supermatter/arrow_up.png";
@@ -45,6 +45,9 @@ public sealed partial class SupermatterEntryContainer : BoxContainer
// Save focus data values so we don't update too often
private SupermatterFocusData _focusData;
+ // Other saved variables
+ private bool _showAllGases;
+
public SupermatterEntryContainer(NetEntity uid)
{
RobustXamlLoader.Load(this);
@@ -60,12 +63,12 @@ public SupermatterEntryContainer(NetEntity uid)
// Set the engine dictionary
_engineDictionary = new()
{
- { "integrity", ( IntegrityBarLabel, IntegrityBar, IntegrityBarBorder, 0.9f, 0.1f, _colorRed, _colorOrange, _colorGreen ) },
- { "power", ( PowerBarLabel, PowerBar, PowerBarBorder, 0.9f, 0.1f, _colorGreen, _colorOrange, _colorRed ) },
- { "radiation", ( RadiationBarLabel, RadiationBar, RadiationBarBorder, 0.1f, 0.9f, _colorGreen, _colorOrange, _colorRed ) },
- { "moles", ( MolesBarLabel, MolesBar, MolesBarBorder, 0.5f, 0.5f, _colorGreen, _colorOrange, _colorRed ) },
- { "temperature", ( TemperatureBarLabel, TemperatureBar, TemperatureBarBorder, 0.9f, 0.1f, _colorTurqoise, _colorGreen, _colorRed ) },
- { "waste", ( WasteBarLabel, WasteBar, WasteBarBorder, 0.5f, 0.5f, _colorGreen, _colorOrange, _colorRed ) }
+ { "integrity", ( IntegrityBarLabel, IntegrityBar, IntegrityBarBorder, 0.9f, 0.1f, _colorRed, _colorOrange, _colorGreen ) },
+ { "power", ( PowerBarLabel, PowerBar, PowerBarBorder, 0.9f, 0.1f, _colorGreen, _colorOrange, _colorRed ) },
+ { "radiation", ( RadiationBarLabel, RadiationBar, RadiationBarBorder, 0.1f, 0.9f, _colorGreen, _colorOrange, _colorRed ) },
+ { "moles", ( MolesBarLabel, MolesBar, MolesBarBorder, 0.5f, 0.5f, _colorGreen, _colorOrange, _colorRed ) },
+ { "temperature", ( TemperatureBarLabel, TemperatureBar, TemperatureBarBorder, 0.9f, 0.1f, _colorTurquoise, _colorGreen, _colorRed ) },
+ { "waste", ( WasteBarLabel, WasteBar, WasteBarBorder, 0.5f, 0.5f, _colorGreen, _colorOrange, _colorRed ) }
};
// Set the gas bar data
@@ -151,6 +154,7 @@ public SupermatterEntryContainer(NetEntity uid)
// Set fonts and font colors
SupermatterNameLabel.FontOverride = headerFont;
SupermatterStatusLabel.FontOverride = normalFont;
+ ShowAllGasLabel.FontOverride = normalFont;
IntegrityHealingInfoLabel.FontColorOverride = _colorGreen;
RadiationBaseInfoLabel.FontColorOverride = _colorGreen;
@@ -174,6 +178,9 @@ public SupermatterEntryContainer(NetEntity uid)
label.FontColorOverride = _colorSlate;
}
+ // Set other variables
+ _showAllGases = false;
+
// On click
foreach (var detail in _expandDetails)
{
@@ -183,6 +190,11 @@ public SupermatterEntryContainer(NetEntity uid)
detail.Arrow.TexturePath = detail.Container.Visible ? _arrowUp : _arrowDown;
};
}
+
+ ShowAllGasButton.OnButtonUp += args =>
+ {
+ _showAllGases = !_showAllGases;
+ };
}
public void UpdateEntry(SupermatterConsoleEntry entry, bool isFocus, SupermatterFocusData? focusData = null)
@@ -253,11 +265,8 @@ public void UpdateEntry(SupermatterConsoleEntry entry, bool isFocus, Supermatter
gasData.Add((data, moles));
data.Bar.UpdateEntry(gas, _focusData);
- // Hide 0% gases
- if (moles == 0f)
- data.Bar.Visible = false;
- else
- data.Bar.Visible = true;
+ // Only show gases above 0%, unless "show all gases" is enabled
+ data.Bar.Visible = moles > 0f || _showAllGases;
}
var gasSort = gasData.OrderByDescending(x => x.Moles).ThenBy(x => x.GasBarData.Gas);
diff --git a/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterGasBarContainer.xaml b/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterGasBarContainer.xaml
index c90539d1dd9c..54f952cfe4a6 100644
--- a/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterGasBarContainer.xaml
+++ b/Content.Client/_EinsteinEngines/Supermatter/Consoles/SupermatterGasBarContainer.xaml
@@ -13,12 +13,12 @@
-
+
-
+
diff --git a/Content.Client/_EstacaoPirata/Cards/Hand/UI/CardHandMenu.xaml b/Content.Client/_EstacaoPirata/Cards/Hand/UI/CardHandMenu.xaml
index 76cd42473098..1383c7f50621 100644
--- a/Content.Client/_EstacaoPirata/Cards/Hand/UI/CardHandMenu.xaml
+++ b/Content.Client/_EstacaoPirata/Cards/Hand/UI/CardHandMenu.xaml
@@ -8,5 +8,5 @@
MinSize="450 450">
-
+
diff --git a/Content.Client/_EstacaoPirata/Cards/Hand/UI/CardHandMenu.xaml.cs b/Content.Client/_EstacaoPirata/Cards/Hand/UI/CardHandMenu.xaml.cs
index 863799147da1..a6dd6f33252b 100644
--- a/Content.Client/_EstacaoPirata/Cards/Hand/UI/CardHandMenu.xaml.cs
+++ b/Content.Client/_EstacaoPirata/Cards/Hand/UI/CardHandMenu.xaml.cs
@@ -58,7 +58,6 @@ public CardHandMenu(EntityUid owner, CardHandMenuBoundUserInterface bui)
var button = new CardMenuButton()
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64f, 64f),
ToolTip = cardName,
};
@@ -92,7 +91,7 @@ public CardHandMenu(EntityUid owner, CardHandMenuBoundUserInterface bui)
}
}
-public sealed class CardMenuButton : RadialMenuTextureButton
+public sealed class CardMenuButton : RadialMenuTextureButtonWithSector
{
public CardMenuButton()
{
diff --git a/Content.Client/_Goobstation/Changeling/Overlays/ShowFakeMindShieldIconsSystem.cs b/Content.Client/_Goobstation/Changeling/Overlays/ShowFakeMindShieldIconsSystem.cs
deleted file mode 100644
index 9f278232fe6e..000000000000
--- a/Content.Client/_Goobstation/Changeling/Overlays/ShowFakeMindShieldIconsSystem.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-using Content.Client.Overlays;
-using Content.Shared._Goobstation.FakeMindshield.Components;
-using Content.Shared._Goobstation.Overlays;
-using Content.Shared.StatusIcon.Components;
-using Robust.Shared.Prototypes;
-
-namespace Content.Client._Goobstation.Overlays;
-
-public sealed class ShowFakeMindShieldIconsSystem : EquipmentHudSystem
-{
- [Dependency] private readonly IPrototypeManager _prototype = default!;
-
- public override void Initialize()
- {
- base.Initialize();
-
- SubscribeLocalEvent(OnGetStatusIconsEvent);
- }
-
- private void OnGetStatusIconsEvent(Entity ent, ref GetStatusIconsEvent ev)
- {
- if (!IsActive)
- return;
-
- if (_prototype.TryIndex(ent.Comp.MindShieldStatusIcon, out var iconPrototype))
- ev.StatusIcons.Add(iconPrototype);
- }
-}
diff --git a/Content.Client/_Goobstation/Heretic/UI/HereticRitualRuneRadialMenu.xaml b/Content.Client/_Goobstation/Heretic/UI/HereticRitualRuneRadialMenu.xaml
index 425ba588c12b..cfa0b93234e7 100644
--- a/Content.Client/_Goobstation/Heretic/UI/HereticRitualRuneRadialMenu.xaml
+++ b/Content.Client/_Goobstation/Heretic/UI/HereticRitualRuneRadialMenu.xaml
@@ -7,7 +7,7 @@
MinSize="450 450">
-
+
diff --git a/Content.Client/_Goobstation/Heretic/UI/HereticRitualRuneRadialMenu.xaml.cs b/Content.Client/_Goobstation/Heretic/UI/HereticRitualRuneRadialMenu.xaml.cs
index a19dcd4f6178..622f76cd8891 100644
--- a/Content.Client/_Goobstation/Heretic/UI/HereticRitualRuneRadialMenu.xaml.cs
+++ b/Content.Client/_Goobstation/Heretic/UI/HereticRitualRuneRadialMenu.xaml.cs
@@ -53,7 +53,6 @@ private void RefreshUI()
var button = new HereticRitualMenuButton
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64, 64),
ToolTip = Loc.GetString(ritualPrototype.LocName),
ProtoId = ritualPrototype.ID
@@ -94,7 +93,7 @@ private void AddHereticRitualMenuButtonOnClickAction(RadialContainer mainControl
}
}
- public sealed class HereticRitualMenuButton : RadialMenuTextureButton
+ public sealed class HereticRitualMenuButton : RadialMenuTextureButtonWithSector
{
public ProtoId ProtoId { get; set; }
}
diff --git a/Content.Client/_Goobstation/Heretic/UI/LivingHeartMenu.xaml b/Content.Client/_Goobstation/Heretic/UI/LivingHeartMenu.xaml
index fd06facd081f..a7119a67a428 100644
--- a/Content.Client/_Goobstation/Heretic/UI/LivingHeartMenu.xaml
+++ b/Content.Client/_Goobstation/Heretic/UI/LivingHeartMenu.xaml
@@ -9,7 +9,7 @@
diff --git a/Content.Client/_Goobstation/Heretic/UI/LivingHeartMenu.xaml.cs b/Content.Client/_Goobstation/Heretic/UI/LivingHeartMenu.xaml.cs
index 79aa2b693917..b60e65ef34d1 100644
--- a/Content.Client/_Goobstation/Heretic/UI/LivingHeartMenu.xaml.cs
+++ b/Content.Client/_Goobstation/Heretic/UI/LivingHeartMenu.xaml.cs
@@ -50,7 +50,6 @@ private void UpdateUI()
var button = new EmbeddedEntityMenuButton
{
- StyleClasses = { "RadialMenuButton" },
SetSize = new Vector2(64, 64),
ToolTip = _ent.TryGetComponent(ent.Value, out var md) ? md.EntityName : "Unknown",
NetEntity = (NetEntity) target,
@@ -90,7 +89,7 @@ private void AddAction(RadialContainer main)
}
}
- public sealed class EmbeddedEntityMenuButton : RadialMenuTextureButton
+ public sealed class EmbeddedEntityMenuButton : RadialMenuTextureButtonWithSector
{
public NetEntity NetEntity;
}
diff --git a/Content.Client/_Impstation/Fishing/FishingRodSystem.cs b/Content.Client/_Impstation/Fishing/FishingRodSystem.cs
new file mode 100644
index 000000000000..6f080f9a805c
--- /dev/null
+++ b/Content.Client/_Impstation/Fishing/FishingRodSystem.cs
@@ -0,0 +1,58 @@
+using System.Net;
+using Content.Client.Hands.Systems;
+using Content.Shared._Impstation.Fishing;
+using Content.Shared.CombatMode;
+using Robust.Client.GameObjects;
+using Robust.Client.Player;
+using Robust.Shared.Input;
+using Robust.Shared.Physics;
+using Robust.Shared.Physics.Dynamics.Joints;
+
+namespace Content.Client._Impstation.Fishing;
+
+//Imp : Basically a copy of GrapplingGunSystem
+public sealed class FishingRodSystem : SharedFishingRodSystem
+{
+ [Dependency] private readonly HandsSystem _hands = default!;
+ [Dependency] private readonly InputSystem _input = default!;
+ [Dependency] private readonly IPlayerManager _player = default!;
+
+ public override void Update(float frameTime)
+ {
+ base.Update(frameTime);
+
+ // Oh boy another input handler.
+ // If someone thinks of a better way to unify this please tell me.
+ if (!Timing.IsFirstTimePredicted)
+ return;
+
+ var local = _player.LocalEntity;
+ var handUid = _hands.GetActiveHandEntity();
+
+ if (!TryComp(handUid, out var grappling))
+ return;
+
+ if (!TryComp(handUid, out var jointComp) ||
+ !jointComp.GetJoints.TryGetValue(GrapplingJoint, out var joint) ||
+ joint is not DistanceJoint distance)
+ {
+ return;
+ }
+
+ if (distance.MaxLength <= distance.MinLength)
+ return;
+
+ var reelKey = _input.CmdStates.GetState(EngineKeyFunctions.UseSecondary) == BoundKeyState.Down;
+
+ if (!TryComp(local, out var combatMode) ||
+ !combatMode.IsInCombatMode)
+ {
+ reelKey = false;
+ }
+
+ if (grappling.Reeling == reelKey)
+ return;
+
+ RaisePredictiveEvent(new RequestGrapplingReelMessage(reelKey));
+ }
+}
diff --git a/Content.IntegrationTests/Tests/ContrabandTest.cs b/Content.IntegrationTests/Tests/ContrabandTest.cs
new file mode 100644
index 000000000000..ebd6afa7efe2
--- /dev/null
+++ b/Content.IntegrationTests/Tests/ContrabandTest.cs
@@ -0,0 +1,41 @@
+using Content.Shared.Contraband;
+using Robust.Shared.GameObjects;
+using Robust.Shared.Prototypes;
+
+namespace Content.IntegrationTests.Tests;
+
+[TestFixture]
+public sealed class ContrabandTest
+{
+ [Test]
+ public async Task EntityShowDepartmentsAndJobs()
+ {
+ await using var pair = await PoolManager.GetServerClient();
+ var client = pair.Client;
+ var protoMan = client.ResolveDependency();
+ var componentFactory = client.ResolveDependency();
+
+ await client.WaitAssertion(() =>
+ {
+ foreach (var proto in protoMan.EnumeratePrototypes())
+ {
+ if (proto.Abstract || pair.IsTestPrototype(proto))
+ continue;
+
+ if (!proto.TryGetComponent(out var contraband, componentFactory))
+ continue;
+
+ Assert.That(protoMan.TryIndex(contraband.Severity, out var severity, false),
+ @$"{proto.ID} has a ContrabandComponent with a unknown severity.");
+
+ if (!severity.ShowDepartmentsAndJobs)
+ continue;
+
+ Assert.That(contraband.AllowedDepartments.Count + contraband.AllowedJobs.Count, Is.Not.EqualTo(0),
+ @$"{proto.ID} has a ContrabandComponent with ShowDepartmentsAndJobs but no allowed departments or jobs.");
+ }
+ });
+
+ await pair.CleanReturnAsync();
+ }
+}
diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs
index f8100afd1fe3..88138886a84f 100644
--- a/Content.IntegrationTests/Tests/PostMapInitTest.cs
+++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs
@@ -69,6 +69,7 @@ public sealed class PostMapInitTest
"Loop",
"Plasma",
"Elkridge",
+ "Convex",
"Xeno"
};
diff --git a/Content.Server/Access/AccessWireAction.cs b/Content.Server/Access/AccessWireAction.cs
index 7676ce489f43..b3beb3967b9b 100644
--- a/Content.Server/Access/AccessWireAction.cs
+++ b/Content.Server/Access/AccessWireAction.cs
@@ -1,7 +1,6 @@
using Content.Server.Wires;
using Content.Shared.Access;
using Content.Shared.Access.Components;
-using Content.Shared.Emag.Components;
using Content.Shared.Wires;
namespace Content.Server.Access;
@@ -31,11 +30,9 @@ public override bool Cut(EntityUid user, Wire wire, AccessReaderComponent comp)
public override bool Mend(EntityUid user, Wire wire, AccessReaderComponent comp)
{
- if (!EntityManager.HasComponent(wire.Owner))
- {
- comp.Enabled = true;
- EntityManager.Dirty(wire.Owner, comp);
- }
+ comp.Enabled = true;
+ EntityManager.Dirty(wire.Owner, comp);
+
return true;
}
@@ -58,7 +55,7 @@ private void AwaitPulseCancel(Wire wire)
{
if (!wire.IsCut)
{
- if (EntityManager.TryGetComponent(wire.Owner, out var access) && !EntityManager.HasComponent(wire.Owner))
+ if (EntityManager.TryGetComponent(wire.Owner, out var access))
{
access.Enabled = true;
EntityManager.Dirty(wire.Owner, access);
diff --git a/Content.Server/Access/Systems/AccessOverriderSystem.cs b/Content.Server/Access/Systems/AccessOverriderSystem.cs
index a882209b2d17..a0dbc96677b5 100644
--- a/Content.Server/Access/Systems/AccessOverriderSystem.cs
+++ b/Content.Server/Access/Systems/AccessOverriderSystem.cs
@@ -245,6 +245,10 @@ private void TryWriteToTargetAccessReaderId(EntityUid uid,
$"{ToPrettyString(player):player} has modified {ToPrettyString(accessReaderEnt.Value):entity} with the following allowed access level holders: [{string.Join(", ", addedTags.Union(removedTags))}] [{string.Join(", ", newAccessList)}]");
accessReaderEnt.Value.Comp.AccessLists = ConvertAccessListToHashSet(newAccessList);
+
+ var ev = new OnAccessOverriderAccessUpdatedEvent(player);
+ RaiseLocalEvent(component.TargetAccessReaderId, ref ev);
+
Dirty(accessReaderEnt.Value);
}
diff --git a/Content.Server/Administration/Managers/BanManager.Notification.cs b/Content.Server/Administration/Managers/BanManager.Notification.cs
index e9bfa6288415..ff84887f00df 100644
--- a/Content.Server/Administration/Managers/BanManager.Notification.cs
+++ b/Content.Server/Administration/Managers/BanManager.Notification.cs
@@ -1,6 +1,4 @@
-using System.Text.Json;
using System.Text.Json.Serialization;
-using Content.Server.Database;
namespace Content.Server.Administration.Managers;
@@ -30,36 +28,15 @@ public sealed partial class BanManager
private TimeSpan _banNotificationRateLimitStart;
private int _banNotificationRateLimitCount;
- private void OnDatabaseNotification(DatabaseNotification notification)
+ private bool OnDatabaseNotificationEarlyFilter()
{
- if (notification.Channel != BanNotificationChannel)
- return;
-
- if (notification.Payload == null)
- {
- _sawmill.Error("Got ban notification with null payload!");
- return;
- }
-
- BanNotificationData data;
- try
- {
- data = JsonSerializer.Deserialize(notification.Payload)
- ?? throw new JsonException("Content is null");
- }
- catch (JsonException e)
- {
- _sawmill.Error($"Got invalid JSON in ban notification: {e}");
- return;
- }
-
if (!CheckBanRateLimit())
{
_sawmill.Verbose("Not processing ban notification due to rate limit");
- return;
+ return false;
}
- _taskManager.RunOnMainThread(() => ProcessBanNotification(data));
+ return true;
}
private async void ProcessBanNotification(BanNotificationData data)
diff --git a/Content.Server/Administration/Managers/BanManager.cs b/Content.Server/Administration/Managers/BanManager.cs
index 2e21710e51d2..2d76c434e9df 100644
--- a/Content.Server/Administration/Managers/BanManager.cs
+++ b/Content.Server/Administration/Managers/BanManager.cs
@@ -53,7 +53,12 @@ public void Initialize()
{
_netManager.RegisterNetMessage();
- _db.SubscribeToNotifications(OnDatabaseNotification);
+ _db.SubscribeToJsonNotification(
+ _taskManager,
+ _sawmill,
+ BanNotificationChannel,
+ ProcessBanNotification,
+ OnDatabaseNotificationEarlyFilter);
_userDbData.AddOnLoadPlayer(CachePlayerData);
_userDbData.AddOnPlayerDisconnect(ClearPlayerData);
@@ -160,6 +165,8 @@ public async void CreateServerBan(NetUserId? target, string? targetUsername, Net
null);
await _db.AddServerBanAsync(banDef);
+ if (_cfg.GetCVar(CCVars.ServerBanResetLastReadRules) && target != null)
+ await _db.SetLastReadRules(target.Value, null); // Reset their last read rules. They probably need a refresher!
var adminName = banningAdmin == null
? Loc.GetString("system-user")
: (await _db.GetPlayerRecordByUserId(banningAdmin.Value))?.LastSeenUserName ?? Loc.GetString("system-user");
diff --git a/Content.Server/Administration/Managers/MultiServerKickManager.cs b/Content.Server/Administration/Managers/MultiServerKickManager.cs
new file mode 100644
index 000000000000..abc8bb1f2d38
--- /dev/null
+++ b/Content.Server/Administration/Managers/MultiServerKickManager.cs
@@ -0,0 +1,114 @@
+using System.Text.Json;
+using System.Text.Json.Serialization;
+using Content.Server.Database;
+using Content.Shared.CCVar;
+using Robust.Server.Player;
+using Robust.Shared.Asynchronous;
+using Robust.Shared.Configuration;
+using Robust.Shared.Enums;
+using Robust.Shared.Network;
+using Robust.Shared.Player;
+
+namespace Content.Server.Administration.Managers;
+
+///
+/// Handles kicking people that connect to multiple servers on the same DB at once.
+///
+///
+public sealed class MultiServerKickManager
+{
+ public const string NotificationChannel = "multi_server_kick";
+
+ [Dependency] private readonly IPlayerManager _playerManager = null!;
+ [Dependency] private readonly IServerDbManager _dbManager = null!;
+ [Dependency] private readonly ILogManager _logManager = null!;
+ [Dependency] private readonly IConfigurationManager _cfg = null!;
+ [Dependency] private readonly IAdminManager _adminManager = null!;
+ [Dependency] private readonly ITaskManager _taskManager = null!;
+ [Dependency] private readonly IServerNetManager _netManager = null!;
+ [Dependency] private readonly ILocalizationManager _loc = null!;
+ [Dependency] private readonly ServerDbEntryManager _serverDbEntry = null!;
+
+ private ISawmill _sawmill = null!;
+ private bool _allowed;
+
+ public void Initialize()
+ {
+ _sawmill = _logManager.GetSawmill("multi_server_kick");
+
+ _playerManager.PlayerStatusChanged += OnPlayerStatusChanged;
+ _cfg.OnValueChanged(CCVars.AdminAllowMultiServerPlay, b => _allowed = b, true);
+
+ _dbManager.SubscribeToJsonNotification(
+ _taskManager,
+ _sawmill,
+ NotificationChannel,
+ OnNotification,
+ OnNotificationEarlyFilter
+ );
+ }
+
+ // ReSharper disable once AsyncVoidMethod
+ private async void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e)
+ {
+ if (_allowed)
+ return;
+
+ if (e.NewStatus != SessionStatus.InGame)
+ return;
+
+ // Send notification to other servers so they can kick this player that just connected.
+ try
+ {
+ await _dbManager.SendNotification(new DatabaseNotification
+ {
+ Channel = NotificationChannel,
+ Payload = JsonSerializer.Serialize(new NotificationData
+ {
+ PlayerId = e.Session.UserId,
+ ServerId = (await _serverDbEntry.ServerEntity).Id,
+ }),
+ });
+ }
+ catch (Exception ex)
+ {
+ _sawmill.Error($"Failed to send notification for multi server kick: {ex}");
+ }
+ }
+
+ private bool OnNotificationEarlyFilter()
+ {
+ if (_allowed)
+ {
+ _sawmill.Verbose("Received notification for player join, but multi server play is allowed on this server. Ignoring");
+ return false;
+ }
+
+ return true;
+ }
+
+ // ReSharper disable once AsyncVoidMethod
+ private async void OnNotification(NotificationData notification)
+ {
+ if (!_playerManager.TryGetSessionById(new NetUserId(notification.PlayerId), out var player))
+ return;
+
+ if (notification.ServerId == (await _serverDbEntry.ServerEntity).Id)
+ return;
+
+ if (_adminManager.IsAdmin(player, includeDeAdmin: true))
+ return;
+
+ _sawmill.Info($"Kicking {player} for connecting to another server. Multi-server play is not allowed.");
+ _netManager.DisconnectChannel(player.Channel, _loc.GetString("multi-server-kick-reason"));
+ }
+
+ private sealed class NotificationData
+ {
+ [JsonPropertyName("player_id")]
+ public Guid PlayerId { get; set; }
+
+ [JsonPropertyName("server_id")]
+ public int ServerId { get; set; }
+ }
+}
diff --git a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
index 9f81c64dbc10..983cf2c8f465 100644
--- a/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
+++ b/Content.Server/Anomaly/Effects/TechAnomalySystem.cs
@@ -116,8 +116,11 @@ private void OnSupercritical(Entity tech, ref AnomalySuper
if (_random.Prob(tech.Comp.EmagSupercritProbability))
{
- _emag.DoEmagEffect(tech, source);
- _emag.DoEmagEffect(tech, sink);
+ var sourceEv = new GotEmaggedEvent(tech, EmagType.Access | EmagType.Interaction);
+ RaiseLocalEvent(source, ref sourceEv);
+
+ var sinkEv = new GotEmaggedEvent(tech, EmagType.Access | EmagType.Interaction);
+ RaiseLocalEvent(sink, ref sinkEv);
}
CreateNewLink(tech, source, sink);
diff --git a/Content.Server/Atmos/Components/FlammableComponent.cs b/Content.Server/Atmos/Components/FlammableComponent.cs
index 9ae99a15136e..b94047b50841 100644
--- a/Content.Server/Atmos/Components/FlammableComponent.cs
+++ b/Content.Server/Atmos/Components/FlammableComponent.cs
@@ -82,5 +82,12 @@ public sealed partial class FlammableComponent : Component
[DataField]
public ProtoId FireAlert = "Fire";
+
+ // imp edit
+ ///
+ /// Should the entity enable an AmbientSound component when lit, and disable it when unlit?
+ ///
+ [DataField]
+ public bool ToggleAmbientSound;
}
}
diff --git a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs
index bc96807af2db..1a5924c3b1dc 100644
--- a/Content.Server/Atmos/EntitySystems/FlammableSystem.cs
+++ b/Content.Server/Atmos/EntitySystems/FlammableSystem.cs
@@ -1,5 +1,6 @@
using Content.Server.Administration.Logs;
using Content.Server.Atmos.Components;
+using Content.Server.Audio;
using Content.Server.IgnitionSource;
using Content.Server.Stunnable;
using Content.Server.Temperature.Components;
@@ -9,6 +10,7 @@
using Content.Shared.Alert;
using Content.Shared.Atmos;
using Content.Shared.Atmos.Components;
+using Content.Shared.Audio;
using Content.Shared.Damage;
using Content.Shared.Database;
using Content.Shared.Interaction;
@@ -24,6 +26,7 @@
using Content.Shared.Weapons.Melee.Events;
using Content.Shared.FixedPoint;
using Robust.Server.Audio;
+using Robust.Shared.Physics;
using Robust.Shared.Physics.Components;
using Robust.Shared.Physics.Events;
using Robust.Shared.Physics.Systems;
@@ -47,6 +50,7 @@ public sealed class FlammableSystem : EntitySystem
[Dependency] private readonly SharedPopupSystem _popup = default!;
[Dependency] private readonly UseDelaySystem _useDelay = default!;
[Dependency] private readonly AudioSystem _audio = default!;
+ [Dependency] private readonly AmbientSoundSystem _ambient = default!;
[Dependency] private readonly IRobustRandom _random = default!;
private EntityQuery _inventoryQuery;
@@ -137,6 +141,10 @@ private void OnMapInit(EntityUid uid, FlammableComponent component, MapInitEvent
_fixture.TryCreateFixture(uid, component.FlammableCollisionShape, component.FlammableFixtureID, hard: false,
collisionMask: (int) CollisionGroup.FullTileLayer, body: body);
+
+ // imp edit, disables AmbientSound if it's meant to be handled with a toggle
+ if (component.ToggleAmbientSound && TryComp(uid, out var ambient))
+ _ambient.SetAmbience(uid, false, ambient);
}
private void OnInteractUsing(EntityUid uid, FlammableComponent flammable, InteractUsingEvent args)
@@ -211,8 +219,14 @@ private void OnCollide(EntityUid uid, FlammableComponent flammable, ref StartCol
var mass2 = 1f;
if (_physicsQuery.TryComp(uid, out var physics) && _physicsQuery.TryComp(otherUid, out var otherPhys))
{
- mass1 = physics.Mass;
- mass2 = otherPhys.Mass;
+ // imp edit - if either entity has a static BodyType then it has no mass, so just equalise instead
+ var anyStatic = physics.BodyType == BodyType.Static || otherPhys.BodyType == BodyType.Static;
+
+ if (!anyStatic)
+ {
+ mass1 = physics.Mass;
+ mass2 = otherPhys.Mass;
+ }
}
// when the thing on fire is more massive than the other, the following happens:
@@ -315,6 +329,10 @@ public void Extinguish(EntityUid uid, FlammableComponent? flammable = null)
_ignitionSourceSystem.SetIgnited(uid, false);
+ // imp edit
+ if (flammable.ToggleAmbientSound && TryComp(uid, out var ambient))
+ _ambient.SetAmbience(uid, false, ambient);
+
UpdateAppearance(uid, flammable);
}
@@ -338,6 +356,12 @@ public void Ignite(EntityUid uid, EntityUid ignitionSource, FlammableComponent?
flammable.OnFire = true;
}
+ // imp edit
+ if (flammable.ToggleAmbientSound &&
+ TryComp(uid, out var ambient) &&
+ !ambient.Enabled)
+ _ambient.SetAmbience(uid, true, ambient);
+
UpdateAppearance(uid, flammable);
}
diff --git a/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
index 0a3ee4d7f7dc..6d768c129261 100644
--- a/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
+++ b/Content.Server/Atmos/Monitor/Systems/FireAlarmSystem.cs
@@ -21,6 +21,7 @@ public sealed class FireAlarmSystem : EntitySystem
{
[Dependency] private readonly AtmosDeviceNetworkSystem _atmosDevNet = default!;
[Dependency] private readonly AtmosAlarmableSystem _atmosAlarmable = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
[Dependency] private readonly AccessReaderSystem _access = default!;
[Dependency] private readonly IConfigurationManager _configManager = default!;
@@ -77,11 +78,18 @@ private void OnInteractHand(EntityUid uid, FireAlarmComponent component, Interac
private void OnEmagged(EntityUid uid, FireAlarmComponent component, ref GotEmaggedEvent args)
{
- if (TryComp(uid, out var alarmable))
- {
- // Remove the atmos alarmable component permanently from this device.
- _atmosAlarmable.ForceAlert(uid, AtmosAlarmType.Emagged, alarmable);
- RemCompDeferred(uid);
- }
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ if (!TryComp(uid, out var alarmable))
+ return;
+
+ // Remove the atmos alarmable component permanently from this device.
+ _atmosAlarmable.ForceAlert(uid, AtmosAlarmType.Emagged, alarmable);
+ RemCompDeferred(uid);
+ args.Handled = true;
}
}
diff --git a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
index 36ced3887d2d..48cdaebb97cb 100644
--- a/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
+++ b/Content.Server/Atmos/Piping/Binary/Components/GasVolumePumpComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Binary.Components
{
@@ -38,6 +39,7 @@ public sealed partial class GasVolumePumpComponent : Component
public float LowerThreshold { get; set; } = 0.01f;
[DataField("higherThreshold")]
+ [GuidebookData]
public float HigherThreshold { get; set; } = DefaultHigherThreshold;
public static readonly float DefaultHigherThreshold = 2 * Atmospherics.MaxOutputPressure;
diff --git a/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs b/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs
index c0b496fae8cb..3f388617de90 100644
--- a/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs
+++ b/Content.Server/Atmos/Piping/Trinary/Components/PressureControlledValveComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Trinary.Components
{
@@ -27,6 +28,7 @@ public sealed partial class PressureControlledValveComponent : Component
[ViewVariables(VVAccess.ReadWrite)]
[DataField("threshold")]
+ [GuidebookData]
public float Threshold { get; set; } = Atmospherics.OneAtmosphere;
[DataField("maxTransferRate")]
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs
index 1daa42d7c40d..afbfb912497f 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasCanisterComponent.cs
@@ -1,5 +1,6 @@
using Content.Shared.Atmos;
using Content.Shared.Containers.ItemSlots;
+using Content.Shared.Guidebook;
using Robust.Shared.Audio;
namespace Content.Server.Atmos.Piping.Unary.Components
@@ -61,5 +62,12 @@ public sealed partial class GasCanisterComponent : Component, IGasMixtureHolder
[DataField("accessDeniedSound")]
public SoundSpecifier AccessDeniedSound = new SoundPathSpecifier("/Audio/Machines/custom_deny.ogg");
+
+ #region GuidebookData
+
+ [GuidebookData]
+ public float Volume => Air.Volume;
+
+ #endregion
}
}
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs
index 7e082024a810..65755d62c564 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasOutletInjectorComponent.cs
@@ -1,6 +1,7 @@
using Content.Server.Atmos.Piping.Binary.Components;
using Content.Server.Atmos.Piping.Unary.EntitySystems;
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Unary.Components
{
@@ -29,6 +30,7 @@ public float TransferRate
public float MaxTransferRate = Atmospherics.MaxTransferRate;
[DataField("maxPressure")]
+ [GuidebookData]
public float MaxPressure { get; set; } = GasVolumePumpComponent.DefaultHigherThreshold;
[DataField("inlet")]
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs
index 5da4ec9fdf23..f481443c9434 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasThermoMachineComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Piping.Unary.Components
{
@@ -13,6 +14,7 @@ public sealed partial class GasThermoMachineComponent : Component
/// thermomachine to heat or cool air.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float HeatCapacity = 5000;
[DataField, ViewVariables(VVAccess.ReadWrite)]
@@ -21,6 +23,7 @@ public sealed partial class GasThermoMachineComponent : Component
///
/// Tolerance for temperature setpoint hysteresis.
///
+ [GuidebookData]
[DataField, ViewVariables(VVAccess.ReadOnly)]
public float TemperatureTolerance = 2f;
@@ -44,6 +47,7 @@ public sealed partial class GasThermoMachineComponent : Component
/// Ignored if heater.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MinTemperature = 73.15f;
///
@@ -51,6 +55,7 @@ public sealed partial class GasThermoMachineComponent : Component
/// Ignored if freezer.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MaxTemperature = 593.15f;
///
@@ -63,6 +68,7 @@ public sealed partial class GasThermoMachineComponent : Component
/// An percentage of the energy change that is leaked into the surrounding environment rather than the inlet pipe.
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float EnergyLeakPercentage;
///
diff --git a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
index fcf3ddf969c7..25b15f0ed55b 100644
--- a/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
+++ b/Content.Server/Atmos/Piping/Unary/Components/GasVentPumpComponent.cs
@@ -1,6 +1,7 @@
using Content.Shared.Atmos;
using Content.Shared.Atmos.Piping.Unary.Components;
using Content.Shared.DeviceLinking;
+using Content.Shared.Guidebook;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
namespace Content.Server.Atmos.Piping.Unary.Components
@@ -35,6 +36,7 @@ public sealed partial class GasVentPumpComponent : Component
/// In releasing mode, do not pump when environment pressure is below this limit.
///
[DataField]
+ [GuidebookData]
public float UnderPressureLockoutThreshold = 80; // this must be tuned in conjunction with atmos.mmos_spacing_speed
///
@@ -58,7 +60,7 @@ public sealed partial class GasVentPumpComponent : Component
[DataField]
public bool IsPressureLockoutManuallyDisabled = false;
///
- /// The time when the manual pressure lockout will be reenabled.
+ /// The time when the manual pressure lockout will be reenabled.
///
[DataField]
[AutoPausedField]
@@ -101,6 +103,7 @@ public float InternalPressureBound
/// Max pressure of the target gas (NOT relative to source).
///
[DataField]
+ [GuidebookData]
public float MaxPressure = Atmospherics.MaxOutputPressure;
///
@@ -172,5 +175,12 @@ public void FromAirAlarmData(GasVentPumpData data)
InternalPressureBound = data.InternalPressureBound;
PressureLockoutOverride = data.PressureLockoutOverride;
}
+
+ #region GuidebookData
+
+ [GuidebookData]
+ public float DefaultExternalBound => Atmospherics.OneAtmosphere;
+
+ #endregion
}
}
diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs
index 584928def72a..292b6d94f826 100644
--- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs
+++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs
@@ -109,7 +109,15 @@ private void OnHoldingTankEjectMessage(EntityUid uid, GasCanisterComponent canis
var item = canister.GasTankSlot.Item;
_slots.TryEjectToHands(uid, canister.GasTankSlot, args.Actor);
- _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}");
+
+ if (canister.ReleaseValve)
+ {
+ _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.High, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister} while the valve was open, releasing [{GetContainedGasesString((uid, canister))}] to atmosphere");
+ }
+ else
+ {
+ _adminLogger.Add(LogType.CanisterTankEjected, LogImpact.Medium, $"Player {ToPrettyString(args.Actor):player} ejected tank {ToPrettyString(item):tank} from {ToPrettyString(uid):canister}");
+ }
}
private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleasePressureMessage args)
@@ -124,24 +132,24 @@ private void OnCanisterChangeReleasePressure(EntityUid uid, GasCanisterComponent
private void OnCanisterChangeReleaseValve(EntityUid uid, GasCanisterComponent canister, GasCanisterChangeReleaseValveMessage args)
{
- var impact = LogImpact.High;
// filling a jetpack with plasma is less important than filling a room with it
- impact = canister.GasTankSlot.HasItem ? LogImpact.Medium : LogImpact.High;
+ var hasItem = canister.GasTankSlot.HasItem;
+ var impact = hasItem ? LogImpact.Medium : LogImpact.High;
- var containedGasDict = new Dictionary();
- var containedGasArray = Enum.GetValues(typeof(Gas));
-
- for (int i = 0; i < containedGasArray.Length; i++)
- {
- containedGasDict.Add((Gas)i, canister.Air[i]);
- }
-
- _adminLogger.Add(LogType.CanisterValve, impact, $"{ToPrettyString(args.Actor):player} set the valve on {ToPrettyString(uid):canister} to {args.Valve:valveState} while it contained [{string.Join(", ", containedGasDict)}]");
+ _adminLogger.Add(
+ LogType.CanisterValve,
+ impact,
+ $"{ToPrettyString(args.Actor):player} {(args.Valve ? "opened" : "closed")} the valve on {ToPrettyString(uid):canister} to {(hasItem ? "inserted tank" : "environment")} while it contained [{GetContainedGasesString((uid, canister))}]");
canister.ReleaseValve = args.Valve;
DirtyUI(uid, canister);
}
+ private static string GetContainedGasesString(Entity canister)
+ {
+ return string.Join(", ", canister.Comp.Air);
+ }
+
private void OnCanisterUpdated(EntityUid uid, GasCanisterComponent canister, ref AtmosDeviceUpdateEvent args)
{
_atmos.React(canister.Air, canister);
diff --git a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
index ae9a5da96397..b22809180645 100644
--- a/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
+++ b/Content.Server/Atmos/Portable/PortableScrubberComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Atmos;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Portable
{
@@ -45,5 +46,12 @@ public sealed partial class PortableScrubberComponent : Component
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
public float TransferRate = 800;
+
+ #region GuidebookData
+
+ [GuidebookData]
+ public float Volume => Air.Volume;
+
+ #endregion
}
}
diff --git a/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs b/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs
index e490ab3ea015..d13826e4e9c5 100644
--- a/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs
+++ b/Content.Server/Atmos/Portable/SpaceHeaterComponent.cs
@@ -1,6 +1,7 @@
using Content.Shared.Atmos;
using Content.Shared.Atmos.Piping.Portable.Components;
using Content.Shared.Atmos.Visuals;
+using Content.Shared.Guidebook;
namespace Content.Server.Atmos.Portable;
@@ -23,12 +24,14 @@ public sealed partial class SpaceHeaterComponent : Component
/// Maximum target temperature the device can be set to
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MaxTemperature = Atmospherics.T20C + 20;
///
/// Minimal target temperature the device can be set to
///
[DataField, ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MinTemperature = Atmospherics.T0C - 10;
///
diff --git a/Content.Server/Bed/BedSystem.cs b/Content.Server/Bed/BedSystem.cs
index 2cc8085e725c..b2d688940861 100644
--- a/Content.Server/Bed/BedSystem.cs
+++ b/Content.Server/Bed/BedSystem.cs
@@ -20,6 +20,7 @@ public sealed class BedSystem : EntitySystem
{
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
[Dependency] private readonly ActionsSystem _actionsSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SleepingSystem _sleepingSystem = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly MobStateSystem _mobStateSystem = default!;
@@ -114,7 +115,12 @@ private void OnPowerChanged(EntityUid uid, StasisBedComponent component, ref Pow
private void OnEmagged(EntityUid uid, StasisBedComponent component, ref GotEmaggedEvent args)
{
- args.Repeatable = true;
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
// Reset any metabolisms first so they receive the multiplier correctly
UpdateMetabolisms(uid, component, false);
component.Multiplier = 1 / component.Multiplier;
diff --git a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs
index a7735787cbb6..c650438b2861 100644
--- a/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs
+++ b/Content.Server/Cargo/Components/StationCargoBountyDatabaseComponent.cs
@@ -12,15 +12,22 @@ public sealed partial class StationCargoBountyDatabaseComponent : Component
///
/// Maximum amount of bounties a station can have.
///
- [DataField, ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
public int MaxBounties = 6;
///
/// A list of all the bounties currently active for a station.
///
- [DataField, ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
public List Bounties = new();
+ ///
+ /// A list of all the bounties that have been completed or
+ /// skipped for a station.
+ ///
+ [DataField]
+ public List History = new();
+
///
/// Used to determine unique order IDs
///
diff --git a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
index 373e8e243ba9..7f74fe269d4c 100644
--- a/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
+++ b/Content.Server/Cargo/Systems/CargoSystem.Bounty.cs
@@ -8,6 +8,7 @@
using Content.Shared.Cargo.Components;
using Content.Shared.Cargo.Prototypes;
using Content.Shared.Database;
+using Content.Shared.IdentityManagement;
using Content.Shared.NameIdentifier;
using Content.Shared.Paper;
using Content.Shared.Stacks;
@@ -16,6 +17,7 @@
using Robust.Server.Containers;
using Robust.Shared.Containers;
using Robust.Shared.Random;
+using Robust.Shared.Timing;
using Robust.Shared.Utility;
namespace Content.Server.Cargo.Systems;
@@ -25,6 +27,7 @@ public sealed partial class CargoSystem
[Dependency] private readonly ContainerSystem _container = default!;
[Dependency] private readonly NameIdentifierSystem _nameIdentifier = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelistSys = default!;
+ [Dependency] private readonly IGameTiming _gameTiming = default!;
[ValidatePrototypeId]
private const string BountyNameIdentifierGroup = "Bounty";
@@ -54,7 +57,7 @@ private void OnBountyConsoleOpened(EntityUid uid, CargoBountyConsoleComponent co
return;
var untilNextSkip = bountyDb.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, untilNextSkip));
+ _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(bountyDb.Bounties, bountyDb.History, untilNextSkip));
}
private void OnPrintLabelMessage(EntityUid uid, CargoBountyConsoleComponent component, BountyPrintLabelMessage args)
@@ -95,13 +98,13 @@ private void OnSkipBountyMessage(EntityUid uid, CargoBountyConsoleComponent comp
return;
}
- if (!TryRemoveBounty(station, bounty.Value))
+ if (!TryRemoveBounty(station, bounty.Value, true, args.Actor))
return;
FillBountyDatabase(station);
db.NextSkipTime = _timing.CurTime + db.SkipDelay;
var untilNextSkip = db.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip));
+ _uiSystem.SetUiState(uid, CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, db.History, untilNextSkip));
_audio.PlayPvs(component.SkipSound, uid);
}
@@ -179,7 +182,7 @@ private void OnSold(ref EntitySoldEvent args)
continue;
}
- TryRemoveBounty(station, bounty.Value);
+ TryRemoveBounty(station, bounty.Value, false);
FillBountyDatabase(station);
_adminLogger.Add(LogType.Action, LogImpact.Low, $"Bounty \"{bounty.Value.Bounty}\" (id:{bounty.Value.Id}) was fulfilled");
}
@@ -434,24 +437,44 @@ public bool TryAddBounty(EntityUid uid, CargoBountyPrototype bounty, StationCarg
}
[PublicAPI]
- public bool TryRemoveBounty(EntityUid uid, string dataId, StationCargoBountyDatabaseComponent? component = null)
+ public bool TryRemoveBounty(Entity ent,
+ string dataId,
+ bool skipped,
+ EntityUid? actor = null)
{
- if (!TryGetBountyFromId(uid, dataId, out var data, component))
+ if (!TryGetBountyFromId(ent.Owner, dataId, out var data, ent.Comp))
return false;
- return TryRemoveBounty(uid, data.Value, component);
+ return TryRemoveBounty(ent, data.Value, skipped, actor);
}
- public bool TryRemoveBounty(EntityUid uid, CargoBountyData data, StationCargoBountyDatabaseComponent? component = null)
+ public bool TryRemoveBounty(Entity ent,
+ CargoBountyData data,
+ bool skipped,
+ EntityUid? actor = null)
{
- if (!Resolve(uid, ref component))
+ if (!Resolve(ent, ref ent.Comp))
return false;
- for (var i = 0; i < component.Bounties.Count; i++)
+ for (var i = 0; i < ent.Comp.Bounties.Count; i++)
{
- if (component.Bounties[i].Id == data.Id)
+ if (ent.Comp.Bounties[i].Id == data.Id)
{
- component.Bounties.RemoveAt(i);
+ string? actorName = null;
+ if (actor != null)
+ {
+ var getIdentityEvent = new TryGetIdentityShortInfoEvent(ent.Owner, actor.Value);
+ RaiseLocalEvent(getIdentityEvent);
+ actorName = getIdentityEvent.Title;
+ }
+
+ ent.Comp.History.Add(new CargoBountyHistoryData(data,
+ skipped
+ ? CargoBountyHistoryData.BountyResult.Skipped
+ : CargoBountyHistoryData.BountyResult.Completed,
+ _gameTiming.CurTime,
+ actorName));
+ ent.Comp.Bounties.RemoveAt(i);
return true;
}
}
@@ -492,7 +515,7 @@ public void UpdateBountyConsoles()
}
var untilNextSkip = db.NextSkipTime - _timing.CurTime;
- _uiSystem.SetUiState((uid, ui), CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, untilNextSkip));
+ _uiSystem.SetUiState((uid, ui), CargoConsoleUiKey.Bounty, new CargoBountyConsoleState(db.Bounties, db.History, untilNextSkip));
}
}
diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
index e4bd9515136b..9dbd2b88dcab 100644
--- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
+++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs
@@ -8,7 +8,7 @@
using Content.Shared.Cargo.Events;
using Content.Shared.Cargo.Prototypes;
using Content.Shared.Database;
-using Content.Shared.Emag.Components;
+using Content.Shared.Emag.Systems;
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction;
using Content.Shared.Paper;
@@ -21,6 +21,7 @@ namespace Content.Server.Cargo.Systems
public sealed partial class CargoSystem
{
[Dependency] private readonly SharedTransformSystem _transformSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
///
/// How much time to wait (in seconds) before increasing bank accounts balance.
@@ -41,6 +42,7 @@ private void InitializeConsole()
SubscribeLocalEvent(OnInit);
SubscribeLocalEvent(OnInteractUsing);
SubscribeLocalEvent(OnOrderBalanceUpdated);
+ SubscribeLocalEvent(OnEmagged);
Reset();
}
@@ -75,6 +77,17 @@ private void Reset()
_timer = 0;
}
+ private void OnEmagged(Entity ent, ref GotEmaggedEvent args)
+ {
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(ent, EmagType.Interaction))
+ return;
+
+ args.Handled = true;
+ }
+
private void UpdateConsole(float frameTime)
{
_timer += frameTime;
@@ -85,9 +98,11 @@ private void UpdateConsole(float frameTime)
{
_timer -= Delay;
- foreach (var account in EntityQuery())
+ var stationQuery = EntityQueryEnumerator();
+ while (stationQuery.MoveNext(out var uid, out var bank))
{
- account.Balance += account.IncreasePerSecond * Delay;
+ var balanceToAdd = bank.IncreasePerSecond * Delay;
+ UpdateBankAccount(uid, bank, balanceToAdd);
}
var query = EntityQueryEnumerator();
@@ -192,7 +207,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com
order.Approved = true;
_audio.PlayPvs(component.ConfirmSound, uid);
- if (!HasComp(uid))
+ if (!_emag.CheckFlag(uid, EmagType.Interaction))
{
var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(uid, player);
RaiseLocalEvent(tryGetIdentityShortInfoEvent);
@@ -213,7 +228,7 @@ private void OnApproveOrderMessage(EntityUid uid, CargoOrderConsoleComponent com
$"{ToPrettyString(player):user} approved order [orderId:{order.OrderId}, quantity:{order.OrderQuantity}, product:{order.ProductId}, requester:{order.Requester}, reason:{order.Reason}] with balance at {bank.Balance}");
orderDatabase.Orders.Remove(order);
- DeductFunds(bank, cost);
+ UpdateBankAccount(station.Value, bank, -cost);
UpdateOrders(station.Value);
}
@@ -536,11 +551,6 @@ private bool FulfillOrder(CargoOrderData order, EntityCoordinates spawn, string?
}
- private void DeductFunds(StationBankAccountComponent component, int amount)
- {
- component.Balance = Math.Max(0, component.Balance - amount);
- }
-
#region Station
private bool TryGetOrderDatabase([NotNullWhen(true)] EntityUid? stationUid, [MaybeNullWhen(false)] out StationCargoOrderDatabaseComponent dbComp)
diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs
index 65f927400162..d8aac5651599 100644
--- a/Content.Server/Cloning/CloningSystem.cs
+++ b/Content.Server/Cloning/CloningSystem.cs
@@ -60,6 +60,7 @@ public sealed class CloningSystem : EntitySystem
[Dependency] private readonly SharedMindSystem _mindSystem = default!;
[Dependency] private readonly MetaDataSystem _metaSystem = default!;
[Dependency] private readonly SharedJobSystem _jobs = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public readonly Dictionary ClonesWaitingForMind = new();
public const float EasyModeCloningCost = 0.7f;
@@ -276,10 +277,15 @@ public override void Update(float frameTime)
///
private void OnEmagged(EntityUid uid, CloningPodComponent clonePod, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
if (!this.IsPowered(uid, EntityManager))
return;
- _audio.PlayPvs(clonePod.SparkSound, uid);
_popupSystem.PopupEntity(Loc.GetString("cloning-pod-component-upgrade-emag-requirement"), uid);
args.Handled = true;
}
@@ -309,7 +315,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod)
var indices = _transformSystem.GetGridTilePositionOrDefault((uid, transform));
var tileMix = _atmosphereSystem.GetTileMixture(transform.GridUid, null, indices, true);
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
{
_audio.PlayPvs(clonePod.ScreamSound, uid);
Spawn(clonePod.MobSpawnId, transform.Coordinates);
@@ -327,7 +333,7 @@ private void EndFailedCloning(EntityUid uid, CloningPodComponent clonePod)
}
_puddleSystem.TrySpillAt(uid, bloodSolution, out _);
- if (!HasComp(uid))
+ if (!_emag.CheckFlag(uid, EmagType.Interaction))
{
_material.SpawnMultipleFromMaterial(_robustRandom.Next(1, (int) (clonePod.UsedBiomass / 2.5)), clonePod.RequiredMaterial, Transform(uid).Coordinates);
}
diff --git a/Content.Server/Communications/CommunicationsConsoleSystem.cs b/Content.Server/Communications/CommunicationsConsoleSystem.cs
index d86c72ffc572..772d21baef1b 100644
--- a/Content.Server/Communications/CommunicationsConsoleSystem.cs
+++ b/Content.Server/Communications/CommunicationsConsoleSystem.cs
@@ -16,7 +16,6 @@
using Content.Shared.Communications;
using Content.Shared.Database;
using Content.Shared.DeviceNetwork;
-using Content.Shared.Emag.Components;
using Content.Shared.IdentityManagement;
using Content.Shared.Popups;
using Robust.Server.GameObjects;
@@ -181,7 +180,7 @@ private static bool CanAnnounce(CommunicationsConsoleComponent comp)
private bool CanUse(EntityUid user, EntityUid console)
{
- if (TryComp(console, out var accessReaderComponent) && !HasComp(console))
+ if (TryComp(console, out var accessReaderComponent))
{
return _accessReaderSystem.IsAllowed(user, console, accessReaderComponent);
}
diff --git a/Content.Server/Construction/Commands/FixRotationsCommand.cs b/Content.Server/Construction/Commands/FixRotationsCommand.cs
index 1a42d4bf38b0..3232f12ed84a 100644
--- a/Content.Server/Construction/Commands/FixRotationsCommand.cs
+++ b/Content.Server/Construction/Commands/FixRotationsCommand.cs
@@ -89,6 +89,8 @@ public void Execute(IConsoleShell shell, string argsOther, string[] args)
valid |= tagSystem.HasTag(child, "ForceFixRotations");
// override
valid &= !tagSystem.HasTag(child, "ForceNoFixRotations");
+ // remove diagonal entities as well
+ valid &= !tagSystem.HasTag(child, "Diagonal");
if (!valid)
continue;
diff --git a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
index ca1d45e64494..72d66c76382f 100644
--- a/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
+++ b/Content.Server/CriminalRecords/Systems/CriminalRecordsConsoleSystem.cs
@@ -13,6 +13,8 @@
using System.Diagnostics.CodeAnalysis;
using Content.Shared.IdentityManagement;
using Content.Shared.Security.Components;
+using System.Linq;
+using Content.Shared.Roles.Jobs;
namespace Content.Server.CriminalRecords.Systems;
@@ -42,6 +44,7 @@ public override void Initialize()
subs.Event(OnChangeStatus);
subs.Event(OnAddHistory);
subs.Event(OnDeleteHistory);
+ subs.Event(OnStatusFilterPressed);
});
}
@@ -57,6 +60,11 @@ private void OnKeySelected(Entity ent, ref Sele
ent.Comp.ActiveKey = msg.SelectedKey;
UpdateUserInterface(ent);
}
+ private void OnStatusFilterPressed(Entity ent, ref CriminalRecordSetStatusFilter msg)
+ {
+ ent.Comp.FilterStatus = msg.FilterStatus;
+ UpdateUserInterface(ent);
+ }
private void OnFiltersChanged(Entity ent, ref SetStationRecordFilter msg)
{
@@ -112,13 +120,26 @@ private void OnChangeStatus(Entity ent, ref Cri
}
// will probably never fail given the checks above
+ name = _records.RecordName(key.Value);
+ officer = Loc.GetString("criminal-records-console-unknown-officer");
+ var jobName = "Unknown";
+
+ _records.TryGetRecord(key.Value, out var entry);
+ if (entry != null)
+ jobName = entry.JobTitle;
+
+ var tryGetIdentityShortInfoEvent = new TryGetIdentityShortInfoEvent(null, mob.Value);
+ RaiseLocalEvent(tryGetIdentityShortInfoEvent);
+ if (tryGetIdentityShortInfoEvent.Title != null)
+ officer = tryGetIdentityShortInfoEvent.Title;
+
_criminalRecords.TryChangeStatus(key.Value, msg.Status, msg.Reason, officer);
(string, object)[] args;
if (reason != null)
- args = new (string, object)[] { ("name", name), ("officer", officer), ("reason", reason) };
+ args = new (string, object)[] { ("name", name), ("officer", officer), ("reason", reason), ("job", jobName) };
else
- args = new (string, object)[] { ("name", name), ("officer", officer) };
+ args = new (string, object)[] { ("name", name), ("officer", officer), ("job", jobName) };
// figure out which radio message to send depending on transition
var statusString = (oldStatus, msg.Status) switch
@@ -193,8 +214,18 @@ private void UpdateUserInterface(Entity ent)
return;
}
+ // get the listing of records to display
var listing = _records.BuildListing((owningStation.Value, stationRecords), console.Filter);
+ // filter the listing by the selected criminal record status
+ //if NONE, dont filter by status, just show all crew
+ if (console.FilterStatus != SecurityStatus.None)
+ {
+ listing = listing
+ .Where(x => _records.TryGetRecord(new StationRecordKey(x.Key, owningStation.Value), out var record) && record.Status == console.FilterStatus)
+ .ToDictionary(x => x.Key, x => x.Value);
+ }
+
var state = new CriminalRecordsConsoleState(listing, console.Filter);
if (console.ActiveKey is { } id)
{
@@ -205,6 +236,9 @@ private void UpdateUserInterface(Entity ent)
state.SelectedKey = id;
}
+ // Set the Current Tab aka the filter status type for the records list
+ state.FilterStatus = console.FilterStatus;
+
_ui.SetUiState(uid, CriminalRecordsConsoleKey.Key, state);
}
diff --git a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs
index bc61c5d141a8..8dfe665541c9 100644
--- a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs
+++ b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs
@@ -1,5 +1,6 @@
using Content.Shared.Bed.Sleep;
using Content.Shared.Damage;
+using Content.Shared.Damage.Events;
using Content.Shared.Damage.ForceSay;
using Content.Shared.FixedPoint;
using Content.Shared.Mobs;
@@ -47,7 +48,7 @@ public override void Update(float frameTime)
}
}
- private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool useSuffix=true, string? suffixOverride = null)
+ private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool useSuffix=true)
{
if (!TryComp(uid, out var actor))
return;
@@ -57,7 +58,13 @@ private void TryForceSay(EntityUid uid, DamageForceSayComponent component, bool
_timing.CurTime < component.NextAllowedTime)
return;
- var suffix = Loc.GetString(suffixOverride ?? component.ForceSayStringPrefix + _random.Next(1, component.ForceSayStringCount));
+ var ev = new BeforeForceSayEvent(component.ForceSayStringDataset);
+ RaiseLocalEvent(uid, ev);
+
+ if (!_prototype.TryIndex(ev.Prefix, out var prefixList))
+ return;
+
+ var suffix = Loc.GetString(_random.Pick(prefixList.Values));
// set cooldown & raise event
component.NextAllowedTime = _timing.CurTime + component.Cooldown;
@@ -80,7 +87,7 @@ private void OnSleep(EntityUid uid, DamageForceSayComponent component, SleepStat
if (!args.FellAsleep)
return;
- TryForceSay(uid, component, true, "damage-force-say-sleep");
+ TryForceSay(uid, component);
AllowNextSpeech(uid);
}
diff --git a/Content.Server/Database/ServerDbBase.cs b/Content.Server/Database/ServerDbBase.cs
index c1a52447b799..ccbaf276cd4d 100644
--- a/Content.Server/Database/ServerDbBase.cs
+++ b/Content.Server/Database/ServerDbBase.cs
@@ -1112,7 +1112,7 @@ public async Task RemoveFromWhitelistAsync(NetUserId player)
.SingleOrDefaultAsync());
}
- public async Task SetLastReadRules(NetUserId player, DateTimeOffset date)
+ public async Task SetLastReadRules(NetUserId player, DateTimeOffset? date)
{
await using var db = await GetDb();
@@ -1122,7 +1122,7 @@ public async Task SetLastReadRules(NetUserId player, DateTimeOffset date)
return;
}
- dbPlayer.LastReadRules = date.UtcDateTime;
+ dbPlayer.LastReadRules = date?.UtcDateTime;
await db.DbContext.SaveChangesAsync();
}
@@ -1801,6 +1801,8 @@ await db.DbContext.IPIntelCache
#endregion
+ public abstract Task SendNotification(DatabaseNotification notification);
+
// SQLite returns DateTime as Kind=Unspecified, Npgsql actually knows for sure it's Kind=Utc.
// Normalize DateTimes here so they're always Utc. Thanks.
protected abstract DateTime NormalizeDatabaseTime(DateTime time);
diff --git a/Content.Server/Database/ServerDbManager.cs b/Content.Server/Database/ServerDbManager.cs
index 9fee2c021bd3..e3cfb66c7f7a 100644
--- a/Content.Server/Database/ServerDbManager.cs
+++ b/Content.Server/Database/ServerDbManager.cs
@@ -282,7 +282,7 @@ Task AddConnectionLogAsync(
#region Rules
Task GetLastReadRules(NetUserId player);
- Task SetLastReadRules(NetUserId player, DateTimeOffset time);
+ Task SetLastReadRules(NetUserId player, DateTimeOffset? time);
#endregion
@@ -350,6 +350,15 @@ Task AddConnectionLogAsync(
/// The notification to trigger
void InjectTestNotification(DatabaseNotification notification);
+ ///
+ /// Send a notification to all other servers connected to the same database.
+ ///
+ ///
+ /// The local server will receive the sent notification itself again.
+ ///
+ /// The notification to send.
+ Task SendNotification(DatabaseNotification notification);
+
#endregion
}
@@ -821,7 +830,7 @@ public Task PurgeUploadedResourceLogAsync(int days)
return RunDbCommand(() => _db.GetLastReadRules(player));
}
- public Task SetLastReadRules(NetUserId player, DateTimeOffset time)
+ public Task SetLastReadRules(NetUserId player, DateTimeOffset? time)
{
DbWriteOpsMetric.Inc();
return RunDbCommand(() => _db.SetLastReadRules(player, time));
@@ -1045,6 +1054,12 @@ public void InjectTestNotification(DatabaseNotification notification)
HandleDatabaseNotification(notification);
}
+ public Task SendNotification(DatabaseNotification notification)
+ {
+ DbWriteOpsMetric.Inc();
+ return RunDbCommand(() => _db.SendNotification(notification));
+ }
+
private async void HandleDatabaseNotification(DatabaseNotification notification)
{
lock (_notificationHandlers)
diff --git a/Content.Server/Database/ServerDbManagerExt.cs b/Content.Server/Database/ServerDbManagerExt.cs
new file mode 100644
index 000000000000..fad7a7234ec0
--- /dev/null
+++ b/Content.Server/Database/ServerDbManagerExt.cs
@@ -0,0 +1,76 @@
+using System.Text.Json;
+using Robust.Shared.Asynchronous;
+
+namespace Content.Server.Database;
+
+public static class ServerDbManagerExt
+{
+ ///
+ /// Subscribe to a database notification on a specific channel, formatted as JSON.
+ ///
+ /// The database manager to subscribe on.
+ /// The task manager used to run the main callback on the main thread.
+ /// Sawmill to log any errors to.
+ ///
+ /// The notification channel to listen on. Only notifications on this channel will be handled.
+ ///
+ ///
+ /// The action to run on the notification data.
+ /// This runs on the main thread.
+ ///
+ ///
+ /// An early filter callback that runs before the JSON message is deserialized.
+ /// Return false to not handle the notification.
+ /// This does not run on the main thread.
+ ///
+ ///
+ /// A filter callback that runs after the JSON message is deserialized.
+ /// Return false to not handle the notification.
+ /// This does not run on the main thread.
+ ///
+ /// The type of JSON data to deserialize.
+ public static void SubscribeToJsonNotification(
+ this IServerDbManager dbManager,
+ ITaskManager taskManager,
+ ISawmill sawmill,
+ string channel,
+ Action action,
+ Func? earlyFilter = null,
+ Func? filter = null)
+ {
+ dbManager.SubscribeToNotifications(notification =>
+ {
+ if (notification.Channel != channel)
+ return;
+
+ if (notification.Payload == null)
+ {
+ sawmill.Error($"Got {channel} notification with null payload!");
+ return;
+ }
+
+ if (earlyFilter != null && !earlyFilter())
+ return;
+
+ TData data;
+ try
+ {
+ data = JsonSerializer.Deserialize(notification.Payload)
+ ?? throw new JsonException("Content is null");
+ }
+ catch (JsonException e)
+ {
+ sawmill.Error($"Got invalid JSON in {channel} notification: {e}");
+ return;
+ }
+
+ if (filter != null && !filter(data))
+ return;
+
+ taskManager.RunOnMainThread(() =>
+ {
+ action(data);
+ });
+ });
+ }
+}
diff --git a/Content.Server/Database/ServerDbPostgres.Notifications.cs b/Content.Server/Database/ServerDbPostgres.Notifications.cs
index 69cf2c7d775d..91db2d100f8a 100644
--- a/Content.Server/Database/ServerDbPostgres.Notifications.cs
+++ b/Content.Server/Database/ServerDbPostgres.Notifications.cs
@@ -2,6 +2,7 @@
using System.Threading;
using System.Threading.Tasks;
using Content.Server.Administration.Managers;
+using Microsoft.EntityFrameworkCore;
using Npgsql;
namespace Content.Server.Database;
@@ -17,6 +18,7 @@ public sealed partial class ServerDbPostgres
private static readonly string[] NotificationChannels =
[
BanManager.BanNotificationChannel,
+ MultiServerKickManager.NotificationChannel,
];
private static readonly TimeSpan ReconnectWaitIncrease = TimeSpan.FromSeconds(10);
@@ -111,6 +113,14 @@ private void OnNotification(object _, NpgsqlNotificationEventArgs notification)
});
}
+ public override async Task SendNotification(DatabaseNotification notification)
+ {
+ await using var db = await GetDbImpl();
+
+ await db.PgDbContext.Database.ExecuteSqlAsync(
+ $"SELECT pg_notify({notification.Channel}, {notification.Payload})");
+ }
+
public override void Shutdown()
{
_notificationTokenSource.Cancel();
diff --git a/Content.Server/Database/ServerDbSqlite.cs b/Content.Server/Database/ServerDbSqlite.cs
index 6ec90c3332f1..c3109ec6e669 100644
--- a/Content.Server/Database/ServerDbSqlite.cs
+++ b/Content.Server/Database/ServerDbSqlite.cs
@@ -537,6 +537,12 @@ public override async Task AddAdminMessage(AdminMessage message)
return await base.AddAdminMessage(message);
}
+ public override Task SendNotification(DatabaseNotification notification)
+ {
+ // Notifications not implemented on SQLite.
+ return Task.CompletedTask;
+ }
+
protected override DateTime NormalizeDatabaseTime(DateTime time)
{
DebugTools.Assert(time.Kind == DateTimeKind.Unspecified);
diff --git a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs b/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
index 689757d04408..24c58898c652 100644
--- a/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
+++ b/Content.Server/EntityEffects/Effects/ExplosionReactionEffect.cs
@@ -15,7 +15,6 @@ public sealed partial class ExplosionReactionEffect : EntityEffect
/// The type of explosion. Determines damage types and tile break chance scaling.
///
[DataField(required: true, customTypeSerializer: typeof(PrototypeIdSerializer))]
- [JsonIgnore]
public string ExplosionType = default!;
///
@@ -23,14 +22,12 @@ public sealed partial class ExplosionReactionEffect : EntityEffect
/// chance.
///
[DataField]
- [JsonIgnore]
public float MaxIntensity = 5;
///
/// How quickly intensity drops off as you move away from the epicenter
///
[DataField]
- [JsonIgnore]
public float IntensitySlope = 1;
///
@@ -41,15 +38,20 @@ public sealed partial class ExplosionReactionEffect : EntityEffect
/// A slope of 1 and MaxTotalIntensity of 100 corresponds to a radius of around 4.5 tiles.
///
[DataField]
- [JsonIgnore]
public float MaxTotalIntensity = 100;
///
/// The intensity of the explosion per unit reaction.
///
[DataField]
- [JsonIgnore]
public float IntensityPerUnit = 1;
+
+ ///
+ /// Factor used to scale the explosion intensity when calculating tile break chances. Allows for stronger
+ /// explosives that don't space tiles, without having to create a new explosion-type prototype.
+ ///
+ [DataField]
+ public float TileBreakScale = 1f;
public override bool ShouldLog => true;
@@ -72,6 +74,7 @@ public override void Effect(EntityEffectBaseArgs args)
ExplosionType,
intensity,
IntensitySlope,
- MaxIntensity);
+ MaxIntensity,
+ TileBreakScale);
}
}
diff --git a/Content.Server/Entry/EntryPoint.cs b/Content.Server/Entry/EntryPoint.cs
index 3d4ea922dc0e..b9c20942a029 100644
--- a/Content.Server/Entry/EntryPoint.cs
+++ b/Content.Server/Entry/EntryPoint.cs
@@ -152,6 +152,7 @@ public override void PostInit()
IoCManager.Resolve().GetEntitySystem().PostInitialize();
IoCManager.Resolve().Initialize();
IoCManager.Resolve().PostInit();
+ IoCManager.Resolve().Initialize();
}
}
diff --git a/Content.Server/Fax/FaxSystem.cs b/Content.Server/Fax/FaxSystem.cs
index a43d0171e604..b73c101e3fea 100644
--- a/Content.Server/Fax/FaxSystem.cs
+++ b/Content.Server/Fax/FaxSystem.cs
@@ -50,6 +50,7 @@ public sealed class FaxSystem : EntitySystem
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
[Dependency] private readonly MetaDataSystem _metaData = default!;
[Dependency] private readonly FaxecuteSystem _faxecute = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
private const string PaperSlotId = "Paper";
@@ -227,7 +228,7 @@ private void OnInteractUsing(EntityUid uid, FaxMachineComponent component, Inter
return;
}
- if (component.KnownFaxes.ContainsValue(newName) && !HasComp(uid)) // Allow existing names if emagged for fun
+ if (component.KnownFaxes.ContainsValue(newName) && !_emag.CheckFlag(uid, EmagType.Interaction)) // Allow existing names if emagged for fun
{
_popupSystem.PopupEntity(Loc.GetString("fax-machine-popup-name-exist"), uid);
return;
@@ -246,7 +247,12 @@ private void OnInteractUsing(EntityUid uid, FaxMachineComponent component, Inter
private void OnEmagged(EntityUid uid, FaxMachineComponent component, ref GotEmaggedEvent args)
{
- _audioSystem.PlayPvs(component.EmagSound, uid);
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
@@ -260,7 +266,7 @@ private void OnPacketReceived(EntityUid uid, FaxMachineComponent component, Devi
switch (command)
{
case FaxConstants.FaxPingCommand:
- var isForSyndie = HasComp(uid) &&
+ var isForSyndie = _emag.CheckFlag(uid, EmagType.Interaction) &&
args.Data.ContainsKey(FaxConstants.FaxSyndicateData);
if (!isForSyndie && !component.ResponsePings)
return;
@@ -405,7 +411,7 @@ public void Refresh(EntityUid uid, FaxMachineComponent? component = null)
{ DeviceNetworkConstants.Command, FaxConstants.FaxPingCommand }
};
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
payload.Add(FaxConstants.FaxSyndicateData, true);
_deviceNetworkSystem.QueuePacket(uid, null, payload);
diff --git a/Content.Server/GameTicking/GameTicker.CVars.cs b/Content.Server/GameTicking/GameTicker.CVars.cs
index bb6845974000..0b7bb26dfed0 100644
--- a/Content.Server/GameTicking/GameTicker.CVars.cs
+++ b/Content.Server/GameTicking/GameTicker.CVars.cs
@@ -26,6 +26,8 @@ public sealed partial class GameTicker
private WebhookIdentifier? _webhookIdentifier;
+ private WebhookIdentifier? _webhookIdentifierPostround;
+
[ViewVariables]
private string? RoundEndSoundCollection { get; set; }
@@ -63,6 +65,13 @@ private void InitializeCVars()
_discord.GetWebhook(value, data => _webhookIdentifier = data.ToIdentifier());
}
}, true);
+ Subs.CVar(_cfg, CCVars.DiscordPostroundChatWebhook, value =>
+ {
+ if (!string.IsNullOrWhiteSpace(value))
+ {
+ _discord.GetWebhook(value, data => _webhookIdentifierPostround = data.ToIdentifier());
+ }
+ }, true);
Subs.CVar(_cfg, CCVars.DiscordRoundEndRoleWebhook, value =>
{
DiscordRoundEndRole = value;
diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs
index b220da21b503..de0472f1aeee 100644
--- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs
+++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs
@@ -480,6 +480,15 @@ private async void SendRoundEndDiscordMessage()
payload.AllowedMentions.AllowRoleMentions();
await _discord.CreateMessage(_webhookIdentifier.Value, payload);
+
+ if (_webhookIdentifierPostround == null)
+ return;
+
+ content = Loc.GetString("discord-round-postround-end",
+ ("id", RoundId));
+ payload = new WebhookPayload { Content = content };
+
+ await _discord.CreateMessage(_webhookIdentifierPostround.Value, payload);
}
catch (Exception e)
{
@@ -662,6 +671,15 @@ private async void SendRoundStartedDiscordMessage()
var payload = new WebhookPayload { Content = content };
await _discord.CreateMessage(_webhookIdentifier.Value, payload);
+
+ if (_webhookIdentifierPostround == null)
+ return;
+
+ content = Loc.GetString("discord-round-postround-started",
+ ("id", RoundId));
+ payload = new WebhookPayload { Content = content };
+
+ await _discord.CreateMessage(_webhookIdentifierPostround.Value, payload);
}
catch (Exception e)
{
diff --git a/Content.Server/Holopad/HolopadSystem.cs b/Content.Server/Holopad/HolopadSystem.cs
index c5e6c15b5163..3e99137a2dee 100644
--- a/Content.Server/Holopad/HolopadSystem.cs
+++ b/Content.Server/Holopad/HolopadSystem.cs
@@ -15,6 +15,7 @@
using Content.Shared.UserInterface;
using Content.Shared.Verbs;
using Robust.Server.GameObjects;
+using Robust.Server.GameStates;
using Robust.Shared.Containers;
using Robust.Shared.Timing;
using Robust.Shared.Utility;
@@ -35,22 +36,15 @@ public sealed class HolopadSystem : SharedHolopadSystem
[Dependency] private readonly ChatSystem _chatSystem = default!;
[Dependency] private readonly PopupSystem _popupSystem = default!;
[Dependency] private readonly IGameTiming _timing = default!;
+ [Dependency] private readonly PvsOverrideSystem _pvs = default!;
private float _updateTimer = 1.0f;
-
private const float UpdateTime = 1.0f;
- private const float MinTimeBetweenSyncRequests = 0.5f;
- private TimeSpan _minTimeSpanBetweenSyncRequests;
-
- private HashSet _pendingRequestsForSpriteState = new();
- private HashSet _recentlyUpdatedHolograms = new();
public override void Initialize()
{
base.Initialize();
- _minTimeSpanBetweenSyncRequests = TimeSpan.FromSeconds(MinTimeBetweenSyncRequests);
-
// Holopad UI and bound user interface messages
SubscribeLocalEvent(OnUIOpen);
SubscribeLocalEvent(OnHolopadStartNewCall);
@@ -68,7 +62,6 @@ public override void Initialize()
// Networked events
SubscribeNetworkEvent(OnTypingChanged);
- SubscribeNetworkEvent(OnPlayerSpriteStateMessage);
// Component start/shutdown events
SubscribeLocalEvent(OnHolopadInit);
@@ -268,16 +261,11 @@ private void OnHoloCallCommenced(Entity source, ref TelephoneC
if (source.Comp.Hologram == null)
GenerateHologram(source);
- // Receiver holopad holograms have to be generated now instead of waiting for their own event
- // to fire because holographic avatars get synced immediately
if (TryComp(args.Receiver, out var receivingHolopad) && receivingHolopad.Hologram == null)
GenerateHologram((args.Receiver, receivingHolopad));
- if (source.Comp.User != null)
- {
- // Re-link the user to refresh the sprite data
- LinkHolopadToUser(source, source.Comp.User.Value);
- }
+ // Re-link the user to refresh the sprite data
+ LinkHolopadToUser(source, source.Comp.User);
}
private void OnHoloCallEnded(Entity entity, ref TelephoneCallEndedEvent args)
@@ -323,22 +311,6 @@ private void OnTypingChanged(HolopadUserTypingChangedEvent ev, EntitySessionEven
}
}
- private void OnPlayerSpriteStateMessage(PlayerSpriteStateMessage ev, EntitySessionEventArgs args)
- {
- var uid = args.SenderSession.AttachedEntity;
-
- if (!Exists(uid))
- return;
-
- if (!_pendingRequestsForSpriteState.Remove(uid.Value))
- return;
-
- if (!TryComp(uid, out var holopadUser))
- return;
-
- SyncHolopadUserWithLinkedHolograms((uid.Value, holopadUser), ev.SpriteLayerData);
- }
-
#endregion
#region: Component start/shutdown events
@@ -485,8 +457,6 @@ public override void Update(float frameTime)
}
}
}
-
- _recentlyUpdatedHolograms.Clear();
}
public void UpdateUIState(Entity entity, TelephoneComponent? telephone = null)
@@ -555,10 +525,16 @@ private void DeleteHologram(Entity hologram, Entity entity, EntityUid user)
+ private void LinkHolopadToUser(Entity entity, EntityUid? user)
{
+ if (user == null)
+ {
+ UnlinkHolopadFromUser(entity, null);
+ return;
+ }
+
if (!TryComp(user, out var holopadUser))
- holopadUser = AddComp(user);
+ holopadUser = AddComp(user.Value);
if (user != entity.Comp.User?.Owner)
{
@@ -567,51 +543,44 @@ private void LinkHolopadToUser(Entity entity, EntityUid user)
// Assigns the new user in their place
holopadUser.LinkedHolopads.Add(entity);
- entity.Comp.User = (user, holopadUser);
+ entity.Comp.User = (user.Value, holopadUser);
}
- if (TryComp(user, out var avatar))
- {
- SyncHolopadUserWithLinkedHolograms((user, holopadUser), avatar.LayerData);
- return;
- }
-
- // We have no apriori sprite data for the hologram, request
- // the current appearance of the user from the client
- RequestHolopadUserSpriteUpdate((user, holopadUser));
+ // Add the new user to PVS and sync their appearance with any
+ // holopads connected to the one they are using
+ _pvs.AddGlobalOverride(user.Value);
+ SyncHolopadHologramAppearanceWithTarget(entity, entity.Comp.User);
}
private void UnlinkHolopadFromUser(Entity entity, Entity? user)
{
- if (user == null)
- return;
-
entity.Comp.User = null;
+ SyncHolopadHologramAppearanceWithTarget(entity, null);
- foreach (var linkedHolopad in GetLinkedHolopads(entity))
- {
- if (linkedHolopad.Comp.Hologram != null)
- {
- _appearanceSystem.SetData(linkedHolopad.Comp.Hologram.Value.Owner, TypingIndicatorVisuals.IsTyping, false);
-
- // Send message with no sprite data to the client
- // This will set the holgram sprite to a generic icon
- var ev = new PlayerSpriteStateMessage(GetNetEntity(linkedHolopad.Comp.Hologram.Value));
- RaiseNetworkEvent(ev);
- }
- }
-
- if (!HasComp(user))
+ if (user == null)
return;
user.Value.Comp.LinkedHolopads.Remove(entity);
- if (!user.Value.Comp.LinkedHolopads.Any())
+ if (!user.Value.Comp.LinkedHolopads.Any() &&
+ user.Value.Comp.LifeStage < ComponentLifeStage.Stopping)
{
- _pendingRequestsForSpriteState.Remove(user.Value);
+ _pvs.RemoveGlobalOverride(user.Value);
+ RemComp(user.Value);
+ }
+ }
+ private void SyncHolopadHologramAppearanceWithTarget(Entity entity, Entity? user)
+ {
+ foreach (var linkedHolopad in GetLinkedHolopads(entity))
+ {
+ if (linkedHolopad.Comp.Hologram == null)
+ continue;
+
+ if (user == null)
+ _appearanceSystem.SetData(linkedHolopad.Comp.Hologram.Value.Owner, TypingIndicatorVisuals.IsTyping, false);
- if (user.Value.Comp.LifeStage < ComponentLifeStage.Stopping)
- RemComp(user.Value);
+ linkedHolopad.Comp.Hologram.Value.Comp.LinkedEntity = user;
+ Dirty(linkedHolopad.Comp.Hologram.Value);
}
}
@@ -646,31 +615,6 @@ private void ShutDownHolopad(Entity entity)
Dirty(entity);
}
- private void RequestHolopadUserSpriteUpdate(Entity user)
- {
- if (!_pendingRequestsForSpriteState.Add(user))
- return;
-
- var ev = new PlayerSpriteStateRequest(GetNetEntity(user));
- RaiseNetworkEvent(ev);
- }
-
- private void SyncHolopadUserWithLinkedHolograms(Entity entity, PrototypeLayerData[]? spriteLayerData)
- {
- foreach (var linkedHolopad in entity.Comp.LinkedHolopads)
- {
- foreach (var receivingHolopad in GetLinkedHolopads(linkedHolopad))
- {
- if (receivingHolopad.Comp.Hologram == null || !_recentlyUpdatedHolograms.Add(receivingHolopad.Comp.Hologram.Value))
- continue;
-
- var netHologram = GetNetEntity(receivingHolopad.Comp.Hologram.Value);
- var ev = new PlayerSpriteStateMessage(netHologram, spriteLayerData);
- RaiseNetworkEvent(ev);
- }
- }
- }
-
private void ActivateProjector(Entity entity, EntityUid user)
{
if (!TryComp(entity, out var receiverTelephone))
diff --git a/Content.Server/Implants/ImplantedSystem.cs b/Content.Server/Implants/ImplantedSystem.cs
index 5d27e6471185..c5048cbd8df7 100644
--- a/Content.Server/Implants/ImplantedSystem.cs
+++ b/Content.Server/Implants/ImplantedSystem.cs
@@ -1,4 +1,6 @@
-using Content.Shared.Implants.Components;
+using Content.Server.Body.Components;
+using Content.Shared.Implants.Components;
+using Content.Shared.Storage;
using Robust.Shared.Containers;
namespace Content.Server.Implants;
@@ -9,17 +11,29 @@ public void InitializeImplanted()
{
SubscribeLocalEvent(OnImplantedInit);
SubscribeLocalEvent(OnShutdown);
+ SubscribeLocalEvent(OnGibbed);
}
- private void OnImplantedInit(EntityUid uid, ImplantedComponent component, ComponentInit args)
+ private void OnImplantedInit(Entity ent, ref ComponentInit args)
{
- component.ImplantContainer = _container.EnsureContainer(uid, ImplanterComponent.ImplantSlotId);
- component.ImplantContainer.OccludesLight = false;
+ ent.Comp.ImplantContainer = _container.EnsureContainer(ent.Owner, ImplanterComponent.ImplantSlotId);
+ ent.Comp.ImplantContainer.OccludesLight = false;
}
- private void OnShutdown(EntityUid uid, ImplantedComponent component, ComponentShutdown args)
+ private void OnShutdown(Entity ent, ref ComponentShutdown args)
{
//If the entity is deleted, get rid of the implants
- _container.CleanContainer(component.ImplantContainer);
+ _container.CleanContainer(ent.Comp.ImplantContainer);
+ }
+
+ private void OnGibbed(Entity ent, ref BeingGibbedEvent args)
+ {
+ // Drop the storage implant contents before the implants are deleted by the body being gibbed
+ foreach (var implant in ent.Comp.ImplantContainer.ContainedEntities)
+ {
+ if (TryComp(implant, out var storage))
+ _container.EmptyContainer(storage.Container, destination: Transform(ent).Coordinates);
+ }
+
}
}
diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs
index e441574213e9..5efd5dc6fb32 100644
--- a/Content.Server/Implants/ImplanterSystem.cs
+++ b/Content.Server/Implants/ImplanterSystem.cs
@@ -58,17 +58,6 @@ private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent componen
return;
}
- // Check if we are trying to implant a implant which is already implanted
- if (implant.HasValue && !component.AllowMultipleImplants && CheckSameImplant(target, implant.Value))
- {
- var name = Identity.Name(target, EntityManager, args.User);
- var msg = Loc.GetString("implanter-component-implant-already", ("implant", implant), ("target", name));
- _popup.PopupEntity(msg, target, args.User);
- args.Handled = true;
- return;
- }
-
-
//Implant self instantly, otherwise try to inject the target.
if (args.User == target)
Implant(target, target, uid, component);
@@ -79,14 +68,7 @@ private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent componen
args.Handled = true;
}
- public bool CheckSameImplant(EntityUid target, EntityUid implant)
- {
- if (!TryComp(target, out var implanted))
- return false;
- var implantPrototype = Prototype(implant);
- return implanted.ImplantContainer.ContainedEntities.Any(entity => Prototype(entity) == implantPrototype);
- }
///
/// Attempt to implant someone else.
diff --git a/Content.Server/Implants/RadioImplantSystem.cs b/Content.Server/Implants/RadioImplantSystem.cs
new file mode 100644
index 000000000000..d9ba2290574e
--- /dev/null
+++ b/Content.Server/Implants/RadioImplantSystem.cs
@@ -0,0 +1,76 @@
+using Content.Server.Radio.Components;
+using Content.Shared.Implants;
+using Content.Shared.Implants.Components;
+using Robust.Shared.Containers;
+
+namespace Content.Server.Implants;
+
+public sealed class RadioImplantSystem : EntitySystem
+{
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnImplantImplanted);
+ SubscribeLocalEvent(OnRemove);
+ }
+
+ ///
+ /// If implanted with a radio implant, installs the necessary intrinsic radio components
+ ///
+ private void OnImplantImplanted(Entity ent, ref ImplantImplantedEvent args)
+ {
+ if (args.Implanted == null)
+ return;
+
+ var activeRadio = EnsureComp(args.Implanted.Value);
+ foreach (var channel in ent.Comp.RadioChannels)
+ {
+ if (activeRadio.Channels.Add(channel))
+ ent.Comp.ActiveAddedChannels.Add(channel);
+ }
+
+ EnsureComp(args.Implanted.Value);
+
+ var intrinsicRadioTransmitter = EnsureComp(args.Implanted.Value);
+ foreach (var channel in ent.Comp.RadioChannels)
+ {
+ if (intrinsicRadioTransmitter.Channels.Add(channel))
+ ent.Comp.TransmitterAddedChannels.Add(channel);
+ }
+ }
+
+ ///
+ /// Removes intrinsic radio components once the Radio Implant is removed
+ ///
+ private void OnRemove(Entity ent, ref EntGotRemovedFromContainerMessage args)
+ {
+ if (TryComp(args.Container.Owner, out var activeRadioComponent))
+ {
+ foreach (var channel in ent.Comp.ActiveAddedChannels)
+ {
+ activeRadioComponent.Channels.Remove(channel);
+ }
+ ent.Comp.ActiveAddedChannels.Clear();
+
+ if (activeRadioComponent.Channels.Count == 0)
+ {
+ RemCompDeferred(args.Container.Owner);
+ }
+ }
+
+ if (!TryComp(args.Container.Owner, out var radioTransmitterComponent))
+ return;
+
+ foreach (var channel in ent.Comp.TransmitterAddedChannels)
+ {
+ radioTransmitterComponent.Channels.Remove(channel);
+ }
+ ent.Comp.TransmitterAddedChannels.Clear();
+
+ if (radioTransmitterComponent.Channels.Count == 0 || activeRadioComponent?.Channels.Count == 0)
+ {
+ RemCompDeferred(args.Container.Owner);
+ }
+ }
+}
diff --git a/Content.Server/Info/RulesManager.cs b/Content.Server/Info/RulesManager.cs
index f4d9e57bd4dd..224d7f7d9af3 100644
--- a/Content.Server/Info/RulesManager.cs
+++ b/Content.Server/Info/RulesManager.cs
@@ -34,7 +34,7 @@ private async void OnConnected(object? sender, NetChannelArgs e)
{
PopupTime = _cfg.GetCVar(CCVars.RulesWaitTime),
CoreRules = _cfg.GetCVar(CCVars.RulesFile),
- ShouldShowRules = !isLocalhost && !hasCooldown
+ ShouldShowRules = !isLocalhost && !hasCooldown,
};
_netManager.ServerSendMessage(showRulesMessage, e.Channel);
}
diff --git a/Content.Server/IoC/ServerContentIoC.cs b/Content.Server/IoC/ServerContentIoC.cs
index 777e13424699..50b248a9ea37 100644
--- a/Content.Server/IoC/ServerContentIoC.cs
+++ b/Content.Server/IoC/ServerContentIoC.cs
@@ -75,6 +75,7 @@ public static void Register()
IoCManager.Register();
IoCManager.Register();
IoCManager.Register();
+ IoCManager.Register();
}
}
}
diff --git a/Content.Server/Lathe/LatheSystem.cs b/Content.Server/Lathe/LatheSystem.cs
index 18f246dcef49..ba82e65aa79a 100644
--- a/Content.Server/Lathe/LatheSystem.cs
+++ b/Content.Server/Lathe/LatheSystem.cs
@@ -16,6 +16,7 @@
using Content.Shared.UserInterface;
using Content.Shared.Database;
using Content.Shared.Emag.Components;
+using Content.Shared.Emag.Systems;
using Content.Shared.Examine;
using Content.Shared.Lathe;
using Content.Shared.Materials;
@@ -42,6 +43,7 @@ public sealed class LatheSystem : SharedLatheSystem
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly ContainerSystem _container = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly UserInterfaceSystem _uiSys = default!;
[Dependency] private readonly MaterialStorageSystem _materialStorage = default!;
[Dependency] private readonly PopupSystem _popup = default!;
@@ -292,7 +294,7 @@ private void GetEmagLatheRecipes(EntityUid uid, EmagLatheRecipesComponent compon
{
if (uid != args.Lathe || !TryComp(uid, out var technologyDatabase))
return;
- if (!args.getUnavailable && !HasComp(uid))
+ if (!args.getUnavailable && !_emag.CheckFlag(uid, EmagType.Interaction))
return;
foreach (var recipe in component.EmagDynamicRecipes)
{
diff --git a/Content.Server/Medical/HealingSystem.cs b/Content.Server/Medical/HealingSystem.cs
index cf5869d1cbb7..74bce0eee6ae 100644
--- a/Content.Server/Medical/HealingSystem.cs
+++ b/Content.Server/Medical/HealingSystem.cs
@@ -72,7 +72,10 @@ entity.Comp.DamageContainerID is not null &&
_bloodstreamSystem.TryModifyBleedAmount(entity.Owner, healing.BloodlossModifier);
if (isBleeding != bloodstream.BleedAmount > 0)
{
- _popupSystem.PopupEntity(Loc.GetString("medical-item-stop-bleeding"), entity, args.User);
+ var popup = (args.User == entity.Owner)
+ ? Loc.GetString("medical-item-stop-bleeding-self")
+ : Loc.GetString("medical-item-stop-bleeding", ("target", Identity.Entity(entity.Owner, EntityManager)));
+ _popupSystem.PopupEntity(popup, entity, args.User);
}
}
diff --git a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs
index 51974d7036cf..b697a42d5132 100644
--- a/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs
+++ b/Content.Server/Medical/SuitSensors/SuitSensorSystem.cs
@@ -22,6 +22,7 @@
using Content.Shared.Verbs;
using Robust.Shared.Containers;
using Robust.Shared.Map;
+using Robust.Shared.Prototypes;
using Robust.Shared.Random;
using Robust.Shared.Timing;
@@ -42,6 +43,7 @@ public sealed class SuitSensorSystem : EntitySystem
[Dependency] private readonly SharedInteractionSystem _interactionSystem = default!;
[Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!;
[Dependency] private readonly ActionBlockerSystem _actionBlocker = default!;
+ [Dependency] private readonly IPrototypeManager _proto = default!;
public override void Initialize()
{
@@ -369,7 +371,7 @@ public void SetSensor(Entity sensors, SuitSensorMode mode,
userJobIcon = card.Comp.JobIcon;
foreach (var department in card.Comp.JobDepartments)
- userJobDepartments.Add(Loc.GetString($"department-{department}"));
+ userJobDepartments.Add(Loc.GetString(_proto.Index(department).Name));
}
// get health mob state
diff --git a/Content.Server/Mindshield/MindShieldSystem.cs b/Content.Server/Mindshield/MindShieldSystem.cs
index ca9d91def51f..aab61cf79855 100644
--- a/Content.Server/Mindshield/MindShieldSystem.cs
+++ b/Content.Server/Mindshield/MindShieldSystem.cs
@@ -2,7 +2,7 @@
using Content.Server.Mind;
using Content.Server.Popups;
using Content.Server.Roles;
-using Content.Shared._Goobstation.FakeMindshield.Components;
+using Content.Shared.Changeling;
using Content.Shared.Database;
using Content.Shared.Implants;
using Content.Shared.Implants.Components;
@@ -49,7 +49,7 @@ public void ImplantCheck(EntityUid uid, SubdermalImplantComponent comp, ref Impl
///
public void MindShieldRemovalCheck(EntityUid implanted, EntityUid implant)
{
- if (HasComp(implanted))
+ if (HasComp(implanted) && HasComp(implanted))
{
_popupSystem.PopupEntity(Loc.GetString("changeling-mindshield-overwrite"), implanted, implanted, Shared.Popups.PopupType.MediumCaution);
RemComp(implanted);
diff --git a/Content.Server/Mining/MiningSystem.cs b/Content.Server/Mining/MiningSystem.cs
index 18e96e576962..6b1b0fed4d8c 100644
--- a/Content.Server/Mining/MiningSystem.cs
+++ b/Content.Server/Mining/MiningSystem.cs
@@ -35,7 +35,7 @@ private void OnDestruction(EntityUid uid, OreVeinComponent component, Destructio
return;
var coords = Transform(uid).Coordinates;
- var toSpawn = _random.Next(proto.MinOreYield, proto.MaxOreYield);
+ var toSpawn = _random.Next(proto.MinOreYield, proto.MaxOreYield+1);
for (var i = 0; i < toSpawn; i++)
{
Spawn(proto.OreEntity, coords.Offset(_random.NextVector2(0.2f)));
diff --git a/Content.Server/Movement/Components/EyeCursorOffsetComponent.cs b/Content.Server/Movement/Components/EyeCursorOffsetComponent.cs
new file mode 100644
index 000000000000..b3809fe794b1
--- /dev/null
+++ b/Content.Server/Movement/Components/EyeCursorOffsetComponent.cs
@@ -0,0 +1,12 @@
+using System.Numerics;
+using Content.Shared.Movement.Components;
+using Content.Shared.Movement.Systems;
+using Robust.Shared.GameStates;
+
+namespace Content.Server.Movement.Components;
+
+[RegisterComponent]
+public sealed partial class EyeCursorOffsetComponent : SharedEyeCursorOffsetComponent
+{
+
+}
diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
index 2cc735194f6a..bac9cfcf40b4 100644
--- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
+++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/MedibotInjectOperator.cs
@@ -1,5 +1,5 @@
using Content.Server.Chat.Systems;
-using Content.Server.NPC.Components;
+using Content.Shared.NPC.Components;
using Content.Shared.Chemistry.EntitySystems;
using Content.Shared.Damage;
using Content.Shared.Emag.Components;
@@ -55,34 +55,11 @@ public override HTNOperatorStatus Update(NPCBlackboard blackboard, float frameTi
if (!_entMan.TryGetComponent(owner, out var botComp))
return HTNOperatorStatus.Failed;
-
- if (!_entMan.TryGetComponent(target, out var damage))
- return HTNOperatorStatus.Failed;
-
- if (!_solutionContainer.TryGetInjectableSolution(target, out var injectable, out _))
+ if (!_medibot.CheckInjectable((owner, botComp), target) || !_medibot.TryInject((owner, botComp), target))
return HTNOperatorStatus.Failed;
- if (!_interaction.InRangeUnobstructed(owner, target))
- return HTNOperatorStatus.Failed;
-
- var total = damage.TotalDamage;
-
- // always inject healthy patients when emagged
- if (total == 0 && !_entMan.HasComponent(owner))
- return HTNOperatorStatus.Failed;
-
- if (!_entMan.TryGetComponent(target, out var mobState))
- return HTNOperatorStatus.Failed;
-
- var state = mobState.CurrentState;
- if (!_medibot.TryGetTreatment(botComp, mobState.CurrentState, out var treatment) || !treatment.IsValid(total))
- return HTNOperatorStatus.Failed;
-
- _entMan.EnsureComponent(target);
- _solutionContainer.TryAddReagent(injectable.Value, treatment.Reagent, treatment.Quantity, out _);
- _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target);
- _audio.PlayPvs(botComp.InjectSound, target);
_chat.TrySendInGameICMessage(owner, Loc.GetString("medibot-finish-inject"), InGameICChatType.Speak, hideChat: true, hideLog: true);
+
return HTNOperatorStatus.Finished;
}
}
diff --git a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs
index a71091ad97dd..f351d582c6ee 100644
--- a/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs
+++ b/Content.Server/NPC/HTN/PrimitiveTasks/Operators/Specific/PickNearbyInjectableOperator.cs
@@ -1,6 +1,6 @@
using System.Threading;
using System.Threading.Tasks;
-using Content.Server.NPC.Components;
+using Content.Shared.NPC.Components;
using Content.Server.NPC.Pathfinding;
using Content.Shared.Chemistry.Components.SolutionManager;
using Content.Shared.Damage;
diff --git a/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs b/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs
index dd4ff6c65f19..6d8cb9dfe54e 100644
--- a/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs
+++ b/Content.Server/NPC/Systems/NPCPerceptionSystem.RecentlyInjected.cs
@@ -1,4 +1,4 @@
-using Content.Server.NPC.Components;
+using Content.Shared.NPC.Components;
namespace Content.Server.NPC.Systems;
diff --git a/Content.Server/Nuke/NukeComponent.cs b/Content.Server/Nuke/NukeComponent.cs
index 141e99055cf3..e1a117f4bdbe 100644
--- a/Content.Server/Nuke/NukeComponent.cs
+++ b/Content.Server/Nuke/NukeComponent.cs
@@ -25,6 +25,13 @@ public sealed partial class NukeComponent : SharedNukeComponent
[ViewVariables(VVAccess.ReadWrite)]
public int Timer = 300;
+ ///
+ /// If the nuke is disarmed, this sets the minimum amount of time the timer can have.
+ /// The remaining time will reset to this value if it is below it.
+ ///
+ [DataField]
+ public int MinimumTime = 180;
+
///
/// How long until the bomb can arm again after deactivation.
/// Used to prevent announcements spam.
diff --git a/Content.Server/Nuke/NukeSystem.cs b/Content.Server/Nuke/NukeSystem.cs
index 0e9ceb7714fc..4003cd73fcf5 100644
--- a/Content.Server/Nuke/NukeSystem.cs
+++ b/Content.Server/Nuke/NukeSystem.cs
@@ -530,6 +530,9 @@ public void DisarmBomb(EntityUid uid, NukeComponent? component = null)
_sound.PlayGlobalOnStation(uid, _audio.GetSound(component.DisarmSound));
_sound.StopStationEventMusic(uid, StationEventMusicType.Nuke);
+ // reset nuke remaining time to either itself or the minimum time, whichever is higher
+ component.RemainingTime = Math.Max(component.RemainingTime, component.MinimumTime);
+
// disable sound and reset it
component.PlayedAlertSound = false;
component.AlertAudioStream = _audio.Stop(component.AlertAudioStream);
diff --git a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs
index 6e9856a61dc0..8f4c5f415003 100644
--- a/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs
+++ b/Content.Server/Nutrition/EntitySystems/FatExtractorSystem.cs
@@ -21,6 +21,7 @@ namespace Content.Server.Nutrition.EntitySystems;
public sealed class FatExtractorSystem : EntitySystem
{
[Dependency] private readonly IGameTiming _timing = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly HungerSystem _hunger = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
@@ -36,8 +37,13 @@ public override void Initialize()
private void OnGotEmagged(EntityUid uid, FatExtractorComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
- args.Repeatable = false;
}
private void OnClosed(EntityUid uid, FatExtractorComponent component, ref StorageAfterCloseEvent args)
@@ -103,7 +109,7 @@ public bool TryGetValidOccupant(EntityUid uid, [NotNullWhen(true)] out EntityUid
if (_hunger.GetHunger(hunger) < component.NutritionPerSecond)
return false;
- if (hunger.CurrentThreshold < component.MinHungerThreshold && !HasComp(uid))
+ if (hunger.CurrentThreshold < component.MinHungerThreshold && !_emag.CheckFlag(uid, EmagType.Interaction))
return false;
return true;
diff --git a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
index 26fa5ca3cc8f..48fb946135e7 100644
--- a/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
+++ b/Content.Server/Nutrition/EntitySystems/SmokingSystem.Vape.cs
@@ -24,6 +24,7 @@ public sealed partial class SmokingSystem
{
[Dependency] private readonly DoAfterSystem _doAfterSystem = default!;
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly FoodSystem _foodSystem = default!;
[Dependency] private readonly ExplosionSystem _explosionSystem = default!;
[Dependency] private readonly PopupSystem _popupSystem = default!;
@@ -63,7 +64,7 @@ private void OnVapeInteraction(Entity entity, ref AfterInteractEv
forced = false;
}
- if (entity.Comp.ExplodeOnUse || HasComp(entity.Owner))
+ if (entity.Comp.ExplodeOnUse || _emag.CheckFlag(entity, EmagType.Interaction))
{
_explosionSystem.QueueExplosion(entity.Owner, "Default", entity.Comp.ExplosionIntensity, 0.5f, 3, canCreateVacuum: false);
EntityManager.DeleteEntity(entity);
@@ -161,8 +162,15 @@ private void OnVapeDoAfter(Entity entity, ref VapeDoAfterEvent ar
args.Args.Target.Value);
}
}
+
private void OnEmagged(Entity entity, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(entity, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
}
diff --git a/Content.Server/Power/Components/BatteryComponent.cs b/Content.Server/Power/Components/BatteryComponent.cs
index 4ef889133392..860b7b219a83 100644
--- a/Content.Server/Power/Components/BatteryComponent.cs
+++ b/Content.Server/Power/Components/BatteryComponent.cs
@@ -1,4 +1,5 @@
using Content.Server.Power.EntitySystems;
+using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -16,6 +17,7 @@ public partial class BatteryComponent : Component
/// Maximum charge of the battery in joules (ie. watt seconds)
///
[DataField]
+ [GuidebookData]
public float MaxCharge;
///
diff --git a/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs b/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs
index a0f74df6a127..fcef03903b9a 100644
--- a/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs
+++ b/Content.Server/Power/Components/PowerNetworkBatteryComponent.cs
@@ -1,4 +1,5 @@
using Content.Server.Power.Pow3r;
+using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -24,6 +25,7 @@ public float MaxChargeRate
[DataField("maxSupply")]
[ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float MaxSupply
{
get => NetworkBattery.MaxSupply;
diff --git a/Content.Server/Power/Components/PowerSupplierComponent.cs b/Content.Server/Power/Components/PowerSupplierComponent.cs
index cf23288fcd63..30f8335c4957 100644
--- a/Content.Server/Power/Components/PowerSupplierComponent.cs
+++ b/Content.Server/Power/Components/PowerSupplierComponent.cs
@@ -1,5 +1,6 @@
using Content.Server.Power.NodeGroups;
using Content.Server.Power.Pow3r;
+using Content.Shared.Guidebook;
namespace Content.Server.Power.Components
{
@@ -8,6 +9,7 @@ public sealed partial class PowerSupplierComponent : BaseNetConnectorComponent NetworkSupply.MaxSupply; set => NetworkSupply.MaxSupply = value; }
[ViewVariables(VVAccess.ReadWrite)]
diff --git a/Content.Server/Power/EntitySystems/ApcSystem.cs b/Content.Server/Power/EntitySystems/ApcSystem.cs
index 14dddbb43e32..29c1431179da 100644
--- a/Content.Server/Power/EntitySystems/ApcSystem.cs
+++ b/Content.Server/Power/EntitySystems/ApcSystem.cs
@@ -4,7 +4,6 @@
using Content.Server.Power.Pow3r;
using Content.Shared.Access.Systems;
using Content.Shared.APC;
-using Content.Shared.Emag.Components;
using Content.Shared.Emag.Systems;
using Content.Shared.Popups;
using Content.Shared.Rounding;
@@ -19,6 +18,7 @@ public sealed class ApcSystem : EntitySystem
{
[Dependency] private readonly AccessReaderSystem _accessReader = default!;
[Dependency] private readonly IGameTiming _gameTiming = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly PopupSystem _popup = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
@@ -111,7 +111,12 @@ public void ApcToggleBreaker(EntityUid uid, ApcComponent? apc = null, PowerNetwo
private void OnEmagged(EntityUid uid, ApcComponent comp, ref GotEmaggedEvent args)
{
- // no fancy conditions
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
@@ -170,7 +175,7 @@ public void UpdateUIState(EntityUid uid,
private ApcChargeState CalcChargeState(EntityUid uid, PowerState.Battery battery)
{
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
return ApcChargeState.Emag;
if (battery.CurrentStorage / battery.Capacity > ApcComponent.HighPowerThreshold)
diff --git a/Content.Server/Projectiles/ProjectileSystem.cs b/Content.Server/Projectiles/ProjectileSystem.cs
index f015cf091ea3..52370b9dc6f5 100644
--- a/Content.Server/Projectiles/ProjectileSystem.cs
+++ b/Content.Server/Projectiles/ProjectileSystem.cs
@@ -1,10 +1,12 @@
using Content.Server.Administration.Logs;
+using Content.Server.Destructible;
using Content.Server.Effects;
using Content.Server.Weapons.Ranged.Systems;
using Content.Shared.Camera;
using Content.Shared.Damage;
using Content.Shared.Damage.Events;
using Content.Shared.Database;
+using Content.Shared.FixedPoint;
using Content.Shared.Projectiles;
using Robust.Shared.Physics.Events;
using Robust.Shared.Player;
@@ -17,6 +19,7 @@ public sealed class ProjectileSystem : SharedProjectileSystem
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
[Dependency] private readonly ColorFlashEffectSystem _color = default!;
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
+ [Dependency] private readonly DestructibleSystem _destructibleSystem = default!;
[Dependency] private readonly GunSystem _guns = default!;
[Dependency] private readonly SharedCameraRecoilSystem _sharedCameraRecoil = default!;
@@ -31,7 +34,7 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St
{
// This is so entities that shouldn't get a collision are ignored.
if (args.OurFixtureId != ProjectileFixture || !args.OtherFixture.Hard
- || component.DamagedEntity || component is { Weapon: null, OnlyCollideWhenShot: true })
+ || component.ProjectileSpent || component is { Weapon: null, OnlyCollideWhenShot: true })
return;
var target = args.OtherEntity;
@@ -48,7 +51,13 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St
RaiseLocalEvent(uid, ref ev);
var otherName = ToPrettyString(target);
- var modifiedDamage = _damageableSystem.TryChangeDamage(target, ev.Damage, component.IgnoreResistances, origin: component.Shooter);
+ var damageRequired = _destructibleSystem.DestroyedAt(target);
+ if (TryComp(target, out var damageableComponent))
+ {
+ damageRequired -= damageableComponent.TotalDamage;
+ damageRequired = FixedPoint2.Max(damageRequired, FixedPoint2.Zero);
+ }
+ var modifiedDamage = _damageableSystem.TryChangeDamage(target, ev.Damage, component.IgnoreResistances, damageable: damageableComponent, origin: component.Shooter);
var deleted = Deleted(target);
if (modifiedDamage is not null && EntityManager.EntityExists(component.Shooter))
@@ -63,6 +72,46 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St
$"Projectile {ToPrettyString(uid):projectile} shot by {ToPrettyString(component.Shooter!.Value):user} hit {otherName:target} and dealt {modifiedDamage.GetTotal():damage} damage");
}
+ // If penetration is to be considered, we need to do some checks to see if the projectile should stop.
+ if (modifiedDamage is not null && component.PenetrationThreshold != 0)
+ {
+ // If a damage type is required, stop the bullet if the hit entity doesn't have that type.
+ if (component.PenetrationDamageTypeRequirement != null)
+ {
+ var stopPenetration = false;
+ foreach (var requiredDamageType in component.PenetrationDamageTypeRequirement)
+ {
+ if (!modifiedDamage.DamageDict.Keys.Contains(requiredDamageType))
+ {
+ stopPenetration = true;
+ break;
+ }
+ }
+ if (stopPenetration)
+ component.ProjectileSpent = true;
+ }
+
+ // If the object won't be destroyed, it "tanks" the penetration hit.
+ if (modifiedDamage.GetTotal() < damageRequired)
+ {
+ component.ProjectileSpent = true;
+ }
+
+ if (!component.ProjectileSpent)
+ {
+ component.PenetrationAmount += damageRequired;
+ // The projectile has dealt enough damage to be spent.
+ if (component.PenetrationAmount >= component.PenetrationThreshold)
+ {
+ component.ProjectileSpent = true;
+ }
+ }
+ }
+ else
+ {
+ component.ProjectileSpent = true;
+ }
+
if (!deleted)
{
_guns.PlayImpactSound(target, modifiedDamage, component.SoundHit, component.ForceSound);
@@ -71,9 +120,7 @@ private void OnStartCollide(EntityUid uid, ProjectileComponent component, ref St
_sharedCameraRecoil.KickCamera(target, args.OurBody.LinearVelocity.Normalized());
}
- component.DamagedEntity = true;
-
- if (component.DeleteOnCollide)
+ if (component.DeleteOnCollide && component.ProjectileSpent)
QueueDel(uid);
if (component.ImpactEffect != null && TryComp(uid, out TransformComponent? xform))
diff --git a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs
index a5f74e09e9db..44360905652a 100644
--- a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs
+++ b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs
@@ -5,6 +5,7 @@
using Content.Shared.Radiation.Events;
using Content.Shared.Radiation.Systems;
using Robust.Shared.Console;
+using Robust.Shared.Debugging;
using Robust.Shared.Enums;
using Robust.Shared.Map.Components;
using Robust.Shared.Player;
@@ -42,12 +43,12 @@ public void ToggleDebugView(ICommonSession session)
///
private void UpdateDebugOverlay(EntityEventArgs ev)
{
- var sessions = _debugSessions.ToArray();
- foreach (var session in sessions)
+ foreach (var session in _debugSessions)
{
if (session.Status != SessionStatus.InGame)
_debugSessions.Remove(session);
- RaiseNetworkEvent(ev, session.Channel);
+ else
+ RaiseNetworkEvent(ev, session);
}
}
@@ -70,13 +71,16 @@ private void UpdateResistanceDebugOverlay()
UpdateDebugOverlay(ev);
}
- private void UpdateGridcastDebugOverlay(double elapsedTime, int totalSources,
- int totalReceivers, List rays)
+ private void UpdateGridcastDebugOverlay(
+ double elapsedTime,
+ int totalSources,
+ int totalReceivers,
+ List? rays)
{
if (_debugSessions.Count == 0)
return;
- var ev = new OnRadiationOverlayUpdateEvent(elapsedTime, totalSources, totalReceivers, rays);
+ var ev = new OnRadiationOverlayUpdateEvent(elapsedTime, totalSources, totalReceivers, rays ?? new());
UpdateDebugOverlay(ev);
}
}
diff --git a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs
index ccee7cf227cb..15e1c352564b 100644
--- a/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs
+++ b/Content.Server/Radiation/Systems/RadiationSystem.GridCast.cs
@@ -1,12 +1,9 @@
-using System.Linq;
using System.Numerics;
using Content.Server.Radiation.Components;
using Content.Server.Radiation.Events;
using Content.Shared.Radiation.Components;
using Content.Shared.Radiation.Systems;
-using Content.Shared.Stacks;
using Robust.Shared.Collections;
-using Robust.Shared.Containers;
using Robust.Shared.Map.Components;
using Robust.Shared.Timing;
using Robust.Shared.Utility;
@@ -16,68 +13,86 @@ namespace Content.Server.Radiation.Systems;
// main algorithm that fire radiation rays to target
public partial class RadiationSystem
{
- [Dependency] private readonly SharedStackSystem _stack = default!;
- [Dependency] private readonly SharedContainerSystem _container = default!;
+ private List> _grids = new();
- private EntityQuery _radiationBlockingContainers;
+ private readonly record struct SourceData(
+ float Intensity,
+ Entity Entity,
+ Vector2 WorldPosition)
+ {
+ public EntityUid? GridUid => Entity.Comp2.GridUid;
+ public float Slope => Entity.Comp1.Slope;
+ public TransformComponent Transform => Entity.Comp2;
+ }
private void UpdateGridcast()
{
// should we save debug information into rays?
// if there is no debug sessions connected - just ignore it
- var saveVisitedTiles = _debugSessions.Count > 0;
+ var debug = _debugSessions.Count > 0;
var stopwatch = new Stopwatch();
stopwatch.Start();
+ _sources.Clear();
+ _sources.EnsureCapacity(EntityManager.Count());
+
var sources = EntityQueryEnumerator();
var destinations = EntityQueryEnumerator();
- var resistanceQuery = GetEntityQuery();
- var transformQuery = GetEntityQuery();
- var gridQuery = GetEntityQuery();
- var stackQuery = GetEntityQuery();
-
- _radiationBlockingContainers = GetEntityQuery();
- // precalculate world positions for each source
- // so we won't need to calc this in cycle over and over again
- var sourcesData = new ValueList<(EntityUid, RadiationSourceComponent, TransformComponent, Vector2)>();
- while (sources.MoveNext(out var uid, out var source, out var sourceTrs))
+ while (sources.MoveNext(out var uid, out var source, out var xform))
{
if (!source.Enabled)
continue;
- var worldPos = _transform.GetWorldPosition(sourceTrs, transformQuery);
- var data = (uid, source, sourceTrs, worldPos);
- sourcesData.Add(data);
+ var worldPos = _transform.GetWorldPosition(xform);
+
+ // Intensity is scaled by stack size.
+ var intensity = source.Intensity * _stack.GetCount(uid);
+
+ // Apply rad modifier if the source is enclosed within a radiation blocking container
+ // Note that this also applies to receivers, and it doesn't bother to check if the container sits between them.
+ // I.e., a source & receiver in the same blocking container will get double-blocked, when no blocking should be applied.
+ intensity = GetAdjustedRadiationIntensity(uid, intensity);
+
+ _sources.Add(new(intensity, (uid, source, xform), worldPos));
}
- // trace all rays from rad source to rad receivers
- var rays = new List();
+ var debugRays = debug ? new List() : null;
var receiversTotalRads = new ValueList<(Entity, float)>();
+
+ // TODO RADIATION Parallelize
+ // Would need to give receiversTotalRads a fixed size.
+ // Also the _grids list needs to be local to a job. (or better yet cached in SourceData)
+ // And I guess disable parallelization when debugging to make populating the debug List easier.
+ // Or just make it threadsafe?
while (destinations.MoveNext(out var destUid, out var dest, out var destTrs))
{
- var destWorld = _transform.GetWorldPosition(destTrs, transformQuery);
+ var destWorld = _transform.GetWorldPosition(destTrs);
var rads = 0f;
- foreach (var (uid, source, sourceTrs, sourceWorld) in sourcesData)
+ foreach (var source in _sources)
{
- stackQuery.TryGetComponent(uid, out var stack);
- var intensity = source.Intensity * _stack.GetCount(uid, stack);
-
// send ray towards destination entity
- var ray = Irradiate(uid, sourceTrs, sourceWorld,
- destUid, destTrs, destWorld,
- intensity, source.Slope, saveVisitedTiles, resistanceQuery, transformQuery, gridQuery);
- if (ray == null)
+ if (Irradiate(source, destUid, destTrs, destWorld, debug) is not {} ray)
continue;
- // save ray for debug
- rays.Add(ray);
-
// add rads to total rad exposure
if (ray.ReachedDestination)
rads += ray.Rads;
+
+ if (!debug)
+ continue;
+
+ debugRays!.Add(new DebugRadiationRay(
+ ray.MapId,
+ GetNetEntity(ray.SourceUid),
+ ray.Source,
+ GetNetEntity(ray.DestinationUid),
+ ray.Destination,
+ ray.Rads,
+ ray.Blockers ?? new())
+ );
}
// Apply modifier if the destination entity is hidden within a radiation blocking container
@@ -88,9 +103,9 @@ private void UpdateGridcast()
// update information for debug overlay
var elapsedTime = stopwatch.Elapsed.TotalMilliseconds;
- var totalSources = sourcesData.Count;
+ var totalSources = _sources.Count;
var totalReceivers = receiversTotalRads.Count;
- UpdateGridcastDebugOverlay(elapsedTime, totalSources, totalReceivers, rays);
+ UpdateGridcastDebugOverlay(elapsedTime, totalSources, totalReceivers, debugRays);
// send rads to each entity
foreach (var (receiver, rads) in receiversTotalRads)
@@ -108,19 +123,20 @@ private void UpdateGridcast()
RaiseLocalEvent(new RadiationSystemUpdatedEvent());
}
- private RadiationRay? Irradiate(EntityUid sourceUid, TransformComponent sourceTrs, Vector2 sourceWorld,
- EntityUid destUid, TransformComponent destTrs, Vector2 destWorld,
- float incomingRads, float slope, bool saveVisitedTiles,
- EntityQuery resistanceQuery,
- EntityQuery transformQuery, EntityQuery gridQuery)
+ private RadiationRay? Irradiate(SourceData source,
+ EntityUid destUid,
+ TransformComponent destTrs,
+ Vector2 destWorld,
+ bool saveVisitedTiles)
{
// lets first check that source and destination on the same map
- if (sourceTrs.MapID != destTrs.MapID)
+ if (source.Transform.MapID != destTrs.MapID)
return null;
- var mapId = sourceTrs.MapID;
+
+ var mapId = destTrs.MapID;
// get direction from rad source to destination and its distance
- var dir = destWorld - sourceWorld;
+ var dir = destWorld - source.WorldPosition;
var dist = dir.Length();
// check if receiver is too far away
@@ -128,41 +144,42 @@ private void UpdateGridcast()
return null;
// will it even reach destination considering distance penalty
- var rads = incomingRads - slope * dist;
-
- // Apply rad modifier if the source is enclosed within a radiation blocking container
- rads = GetAdjustedRadiationIntensity(sourceUid, rads);
-
- if (rads <= MinIntensity)
+ var rads = source.Intensity - source.Slope * dist;
+ if (rads < MinIntensity)
return null;
// create a new radiation ray from source to destination
// at first we assume that it doesn't hit any radiation blockers
// and has only distance penalty
- var ray = new RadiationRay(mapId, GetNetEntity(sourceUid), sourceWorld, GetNetEntity(destUid), destWorld, rads);
+ var ray = new RadiationRay(mapId, source.Entity, source.WorldPosition, destUid, destWorld, rads);
// if source and destination on the same grid it's possible that
// between them can be another grid (ie. shuttle in center of donut station)
// however we can do simplification and ignore that case
- if (GridcastSimplifiedSameGrid && sourceTrs.GridUid != null && sourceTrs.GridUid == destTrs.GridUid)
+ if (GridcastSimplifiedSameGrid && destTrs.GridUid is {} gridUid && source.GridUid == gridUid)
{
- if (!gridQuery.TryGetComponent(sourceTrs.GridUid.Value, out var gridComponent))
+ if (!_gridQuery.TryGetComponent(gridUid, out var gridComponent))
return ray;
- return Gridcast((sourceTrs.GridUid.Value, gridComponent), ray, saveVisitedTiles, resistanceQuery, sourceTrs, destTrs, transformQuery.GetComponent(sourceTrs.GridUid.Value));
+ return Gridcast((gridUid, gridComponent, Transform(gridUid)), ref ray, saveVisitedTiles, source.Transform, destTrs);
}
// lets check how many grids are between source and destination
// do a box intersection test between target and destination
// it's not very precise, but really cheap
- var box = Box2.FromTwoPoints(sourceWorld, destWorld);
- var grids = new List>();
- _mapManager.FindGridsIntersecting(mapId, box, ref grids, true);
+
+ // TODO RADIATION
+ // Consider caching this in SourceData?
+ // I.e., make the lookup for grids as large as the sources's max distance and store the result in SourceData.
+ // Avoids having to do a lookup per source*receiver.
+ var box = Box2.FromTwoPoints(source.WorldPosition, destWorld);
+ _grids.Clear();
+ _mapManager.FindGridsIntersecting(mapId, box, ref _grids, true);
// gridcast through each grid and try to hit some radiation blockers
// the ray will be updated with each grid that has some blockers
- foreach (var grid in grids)
+ foreach (var grid in _grids)
{
- ray = Gridcast(grid, ray, saveVisitedTiles, resistanceQuery, sourceTrs, destTrs, transformQuery.GetComponent(grid));
+ ray = Gridcast((grid.Owner, grid.Comp, Transform(grid)), ref ray, saveVisitedTiles, source.Transform, destTrs);
// looks like last grid blocked all radiation
// we can return right now
@@ -170,20 +187,23 @@ private void UpdateGridcast()
return ray;
}
+ _grids.Clear();
+
return ray;
}
- private RadiationRay Gridcast(Entity grid, RadiationRay ray, bool saveVisitedTiles,
- EntityQuery resistanceQuery,
+ private RadiationRay Gridcast(
+ Entity grid,
+ ref RadiationRay ray,
+ bool saveVisitedTiles,
TransformComponent sourceTrs,
- TransformComponent destTrs,
- TransformComponent gridTrs)
+ TransformComponent destTrs)
{
- var blockers = new List<(Vector2i, float)>();
+ var blockers = saveVisitedTiles ? new List<(Vector2i, float)>() : null;
// if grid doesn't have resistance map just apply distance penalty
var gridUid = grid.Owner;
- if (!resistanceQuery.TryGetComponent(gridUid, out var resistance))
+ if (!_resistanceQuery.TryGetComponent(gridUid, out var resistance))
return ray;
var resistanceMap = resistance.ResistancePerTile;
@@ -195,19 +215,19 @@ private RadiationRay Gridcast(Entity grid, RadiationRay ray, b
Vector2 srcLocal = sourceTrs.ParentUid == grid.Owner
? sourceTrs.LocalPosition
- : Vector2.Transform(ray.Source, gridTrs.InvLocalMatrix);
+ : Vector2.Transform(ray.Source, grid.Comp2.InvLocalMatrix);
Vector2 dstLocal = destTrs.ParentUid == grid.Owner
? destTrs.LocalPosition
- : Vector2.Transform(ray.Destination, gridTrs.InvLocalMatrix);
+ : Vector2.Transform(ray.Destination, grid.Comp2.InvLocalMatrix);
Vector2i sourceGrid = new(
- (int) Math.Floor(srcLocal.X / grid.Comp.TileSize),
- (int) Math.Floor(srcLocal.Y / grid.Comp.TileSize));
+ (int) Math.Floor(srcLocal.X / grid.Comp1.TileSize),
+ (int) Math.Floor(srcLocal.Y / grid.Comp1.TileSize));
Vector2i destGrid = new(
- (int) Math.Floor(dstLocal.X / grid.Comp.TileSize),
- (int) Math.Floor(dstLocal.Y / grid.Comp.TileSize));
+ (int) Math.Floor(dstLocal.X / grid.Comp1.TileSize),
+ (int) Math.Floor(dstLocal.Y / grid.Comp1.TileSize));
// iterate tiles in grid line from source to destination
var line = new GridLineEnumerator(sourceGrid, destGrid);
@@ -220,7 +240,7 @@ private RadiationRay Gridcast(Entity grid, RadiationRay ray, b
// save data for debug
if (saveVisitedTiles)
- blockers.Add((point, ray.Rads));
+ blockers!.Add((point, ray.Rads));
// no intensity left after blocker
if (ray.Rads <= MinIntensity)
@@ -230,21 +250,45 @@ private RadiationRay Gridcast(Entity grid, RadiationRay ray, b
}
}
+ if (!saveVisitedTiles || blockers!.Count <= 0)
+ return ray;
+
// save data for debug if needed
- if (saveVisitedTiles && blockers.Count > 0)
- ray.Blockers.Add(GetNetEntity(gridUid), blockers);
+ ray.Blockers ??= new();
+ ray.Blockers.Add(GetNetEntity(gridUid), blockers);
return ray;
}
private float GetAdjustedRadiationIntensity(EntityUid uid, float rads)
{
- var radblockingComps = new List();
- if (_container.TryFindComponentsOnEntityContainerOrParent(uid, _radiationBlockingContainers, radblockingComps))
+ var child = uid;
+ var xform = Transform(uid);
+ var parent = xform.ParentUid;
+
+ while (parent.IsValid())
{
- rads -= radblockingComps.Sum(x => x.RadResistance);
+ var parentXform = Transform(parent);
+ var childMeta = MetaData(child);
+
+ if ((childMeta.Flags & MetaDataFlags.InContainer) != MetaDataFlags.InContainer)
+ {
+ child = parent;
+ parent = parentXform.ParentUid;
+ continue;
+ }
+
+ if (_blockerQuery.TryComp(xform.ParentUid, out var blocker))
+ {
+ rads -= blocker.RadResistance;
+ if (rads < 0)
+ return 0;
+ }
+
+ child = parent;
+ parent = parentXform.ParentUid;
}
- return float.Max(rads, 0);
+ return rads;
}
}
diff --git a/Content.Server/Radiation/Systems/RadiationSystem.cs b/Content.Server/Radiation/Systems/RadiationSystem.cs
index e184c022f2f4..3ba393959c25 100644
--- a/Content.Server/Radiation/Systems/RadiationSystem.cs
+++ b/Content.Server/Radiation/Systems/RadiationSystem.cs
@@ -1,8 +1,10 @@
using Content.Server.Radiation.Components;
using Content.Shared.Radiation.Components;
using Content.Shared.Radiation.Events;
+using Content.Shared.Stacks;
using Robust.Shared.Configuration;
using Robust.Shared.Map;
+using Robust.Shared.Map.Components;
namespace Content.Server.Radiation.Systems;
@@ -11,14 +13,26 @@ public sealed partial class RadiationSystem : EntitySystem
[Dependency] private readonly IMapManager _mapManager = default!;
[Dependency] private readonly IConfigurationManager _cfg = default!;
[Dependency] private readonly SharedTransformSystem _transform = default!;
+ [Dependency] private readonly SharedStackSystem _stack = default!;
+
+ private EntityQuery _blockerQuery;
+ private EntityQuery _resistanceQuery;
+ private EntityQuery _gridQuery;
+ private EntityQuery _stackQuery;
private float _accumulator;
+ private List _sources = new();
public override void Initialize()
{
base.Initialize();
SubscribeCvars();
InitRadBlocking();
+
+ _blockerQuery = GetEntityQuery();
+ _resistanceQuery = GetEntityQuery();
+ _gridQuery = GetEntityQuery();
+ _stackQuery = GetEntityQuery();
}
public override void Update(float frameTime)
diff --git a/Content.Server/Remotes/DoorRemoteSystem.cs b/Content.Server/Remotes/DoorRemoteSystem.cs
index de327bd08403..27df5ef34d20 100644
--- a/Content.Server/Remotes/DoorRemoteSystem.cs
+++ b/Content.Server/Remotes/DoorRemoteSystem.cs
@@ -1,13 +1,13 @@
using Content.Server.Administration.Logs;
-using Content.Shared.Interaction;
-using Content.Shared.Doors.Components;
-using Content.Shared.Access.Components;
using Content.Server.Doors.Systems;
using Content.Server.Power.EntitySystems;
+using Content.Shared.Access.Components;
using Content.Shared.Database;
+using Content.Shared.Doors.Components;
using Content.Shared.Examine;
-using Content.Shared.Remotes.EntitySystems;
+using Content.Shared.Interaction;
using Content.Shared.Remotes.Components;
+using Content.Shared.Remotes.EntitySystems;
namespace Content.Shared.Remotes
{
@@ -17,6 +17,7 @@ public sealed class DoorRemoteSystem : SharedDoorRemoteSystem
[Dependency] private readonly AirlockSystem _airlock = default!;
[Dependency] private readonly DoorSystem _doorSystem = default!;
[Dependency] private readonly ExamineSystemShared _examine = default!;
+
public override void Initialize()
{
base.Initialize();
@@ -31,9 +32,12 @@ private void OnBeforeInteract(Entity entity, ref BeforeRang
if (args.Handled
|| args.Target == null
|| !TryComp(args.Target, out var doorComp) // If it isn't a door we don't use it
- // Only able to control doors if they are within your vision and within your max range.
- // Not affected by mobs or machines anymore.
- || !_examine.InRangeUnOccluded(args.User, args.Target.Value, SharedInteractionSystem.MaxRaycastRange, null))
+ // Only able to control doors if they are within your vision and within your max range.
+ // Not affected by mobs or machines anymore.
+ || !_examine.InRangeUnOccluded(args.User,
+ args.Target.Value,
+ SharedInteractionSystem.MaxRaycastRange,
+ null))
{
return;
@@ -50,7 +54,8 @@ private void OnBeforeInteract(Entity entity, ref BeforeRang
if (TryComp(args.Target, out var accessComponent)
&& !_doorSystem.HasAccess(args.Target.Value, args.Used, doorComp, accessComponent))
{
- _doorSystem.Deny(args.Target.Value, doorComp, args.User);
+ if (isAirlock)
+ _doorSystem.Deny(args.Target.Value, doorComp, args.User);
Popup.PopupEntity(Loc.GetString("door-remote-denied"), args.User, args.User);
return;
}
@@ -59,7 +64,9 @@ private void OnBeforeInteract(Entity entity, ref BeforeRang
{
case OperatingMode.OpenClose:
if (_doorSystem.TryToggleDoor(args.Target.Value, doorComp, args.Used))
- _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)}: {doorComp.State}");
+ _adminLogger.Add(LogType.Action,
+ LogImpact.Medium,
+ $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)}: {doorComp.State}");
break;
case OperatingMode.ToggleBolts:
if (TryComp(args.Target, out var boltsComp))
@@ -67,17 +74,22 @@ private void OnBeforeInteract(Entity entity, ref BeforeRang
if (!boltsComp.BoltWireCut)
{
_doorSystem.SetBoltsDown((args.Target.Value, boltsComp), !boltsComp.BoltsDown, args.Used);
- _adminLogger.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to {(boltsComp.BoltsDown ? "" : "un")}bolt it");
+ _adminLogger.Add(LogType.Action,
+ LogImpact.Medium,
+ $"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to {(boltsComp.BoltsDown ? "" : "un")}bolt it");
}
}
+
break;
case OperatingMode.ToggleEmergencyAccess:
if (airlockComp != null)
{
_airlock.SetEmergencyAccess((args.Target.Value, airlockComp), !airlockComp.EmergencyAccess);
- _adminLogger.Add(LogType.Action, LogImpact.Medium,
+ _adminLogger.Add(LogType.Action,
+ LogImpact.Medium,
$"{ToPrettyString(args.User):player} used {ToPrettyString(args.Used)} on {ToPrettyString(args.Target.Value)} to set emergency access {(airlockComp.EmergencyAccess ? "on" : "off")}");
}
+
break;
default:
throw new InvalidOperationException(
diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs
index 127b80a631e6..c227aee7f075 100644
--- a/Content.Server/Research/Systems/ResearchSystem.Console.cs
+++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs
@@ -3,6 +3,7 @@
using Content.Shared.UserInterface;
using Content.Shared.Access.Components;
using Content.Shared.Emag.Components;
+using Content.Shared.Emag.Systems;
using Content.Shared.IdentityManagement;
using Content.Shared.Research.Components;
using Content.Shared.Research.Prototypes;
@@ -11,6 +12,8 @@ namespace Content.Server.Research.Systems;
public sealed partial class ResearchSystem
{
+ [Dependency] private readonly EmagSystem _emag = default!;
+
private void InitializeConsole()
{
SubscribeLocalEvent(OnConsoleUnlock);
@@ -18,6 +21,7 @@ private void InitializeConsole()
SubscribeLocalEvent(OnPointsChanged);
SubscribeLocalEvent(OnConsoleRegistrationChanged);
SubscribeLocalEvent(OnConsoleDatabaseModified);
+ SubscribeLocalEvent(OnEmagged);
}
private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component, ConsoleUnlockTechnologyMessage args)
@@ -39,7 +43,7 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component,
if (!UnlockTechnology(uid, args.Id, act))
return;
- if (!HasComp(uid))
+ if (!_emag.CheckFlag(uid, EmagType.Interaction))
{
var getIdentityEvent = new TryGetIdentityShortInfoEvent(uid, act);
RaiseLocalEvent(getIdentityEvent);
@@ -52,7 +56,7 @@ private void OnConsoleUnlock(EntityUid uid, ResearchConsoleComponent component,
);
_radio.SendRadioMessage(uid, message, component.AnnouncementChannel, uid, escapeMarkup: false);
}
-
+
SyncClientWithServer(uid);
UpdateConsoleInterface(uid, component);
}
@@ -100,4 +104,15 @@ private void OnConsoleDatabaseModified(EntityUid uid, ResearchConsoleComponent c
UpdateConsoleInterface(uid, component);
}
+ private void OnEmagged(Entity ent, ref GotEmaggedEvent args)
+ {
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(ent, EmagType.Interaction))
+ return;
+
+ args.Handled = true;
+ }
+
}
diff --git a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs
index 3bcdc1abeb66..f91b5754e156 100644
--- a/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs
+++ b/Content.Server/Revenant/EntitySystems/RevenantSystem.Abilities.cs
@@ -43,7 +43,6 @@ public sealed partial class RevenantSystem
{
[Dependency] private readonly ThrowingSystem _throwing = default!;
[Dependency] private readonly EntityStorageSystem _entityStorage = default!;
- [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!;
[Dependency] private readonly GhostSystem _ghost = default!;
@@ -420,7 +419,8 @@ private void OnMalfunctionAction(EntityUid uid, RevenantComponent component, Rev
_whitelistSystem.IsBlacklistPass(component.MalfunctionBlacklist, ent))
continue;
- _emag.DoEmagEffect(uid, ent); //it does not emag itself. adorable.
+ var ev = new GotEmaggedEvent(uid, EmagType.Interaction | EmagType.Access);
+ RaiseLocalEvent(ent, ref ev);
}
}
diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
index b4ba14004415..4d2a8912e830 100644
--- a/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
+++ b/Content.Server/Silicons/Borgs/BorgSystem.Transponder.cs
@@ -8,6 +8,7 @@
using Content.Server.DeviceNetwork.Components;
using Content.Server.DeviceNetwork.Systems;
using Content.Server.Explosion.Components;
+using Content.Shared.Emag.Systems;
using Robust.Shared.Utility;
namespace Content.Server.Silicons.Borgs;
@@ -15,6 +16,8 @@ namespace Content.Server.Silicons.Borgs;
///
public sealed partial class BorgSystem
{
+ [Dependency] private readonly EmagSystem _emag = default!;
+
private void InitializeTransponder()
{
SubscribeLocalEvent(OnPacketReceived);
@@ -127,7 +130,7 @@ private void Destroy(Entity ent)
private bool CheckEmagged(EntityUid uid, string name)
{
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
{
Popup.PopupEntity(Loc.GetString($"borg-transponder-emagged-{name}-popup"), uid, uid, PopupType.LargeCaution);
return true;
diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs
index 109c183f0401..f5ead80bddbf 100644
--- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs
+++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs
@@ -6,7 +6,6 @@
using Content.Server.Station.Systems;
using Content.Shared.Administration;
using Content.Shared.Chat;
-using Content.Shared.Emag.Components;
using Content.Shared.Emag.Systems;
using Content.Shared.GameTicking;
using Content.Shared.Mind;
@@ -14,7 +13,6 @@
using Content.Shared.Roles;
using Content.Shared.Silicons.Laws;
using Content.Shared.Silicons.Laws.Components;
-using Content.Shared.Stunnable;
using Content.Shared.Wires;
using Robust.Server.GameObjects;
using Robust.Shared.Audio;
@@ -22,7 +20,6 @@
using Robust.Shared.Player;
using Robust.Shared.Prototypes;
using Robust.Shared.Toolshed;
-using Robust.Shared.Audio;
namespace Content.Server.Silicons.Laws;
@@ -34,8 +31,8 @@ public sealed class SiliconLawSystem : SharedSiliconLawSystem
[Dependency] private readonly IPrototypeManager _prototype = default!;
[Dependency] private readonly SharedRoleSystem _roles = default!;
[Dependency] private readonly StationSystem _station = default!;
- [Dependency] private readonly SharedStunSystem _stunSystem = default!;
[Dependency] private readonly UserInterfaceSystem _userInterface = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
///
public override void Initialize()
@@ -52,7 +49,7 @@ public override void Initialize()
SubscribeLocalEvent(OnIonStormLaws);
SubscribeLocalEvent(OnLawProviderMindAdded);
SubscribeLocalEvent(OnLawProviderMindRemoved);
- SubscribeLocalEvent(OnEmagLawsAdded);
+ SubscribeLocalEvent(OnEmagLawsAdded);
}
private void OnMapInit(EntityUid uid, SiliconLawBoundComponent component, MapInitEvent args)
@@ -135,7 +132,7 @@ private void OnDirectedGetLaws(EntityUid uid, SiliconLawProviderComponent compon
private void OnIonStormLaws(EntityUid uid, SiliconLawProviderComponent component, ref IonStormLawsEvent args)
{
// Emagged borgs are immune to ion storm
- if (!HasComp(uid))
+ if (!_emag.CheckFlag(uid, EmagType.Interaction))
{
component.Lawset = args.Lawset;
@@ -152,9 +149,8 @@ private void OnIonStormLaws(EntityUid uid, SiliconLawProviderComponent component
}
}
- private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent component, ref GotEmaggedEvent args)
+ private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent component, ref SiliconEmaggedEvent args)
{
-
if (component.Lawset == null)
component.Lawset = GetLawset(component.Laws);
@@ -164,7 +160,7 @@ private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent componen
// Add the first emag law before the others
component.Lawset?.Laws.Insert(0, new SiliconLaw
{
- LawString = Loc.GetString("law-emag-custom", ("name", Name(args.UserUid)), ("title", Loc.GetString(component.Lawset.ObeysTo))),
+ LawString = Loc.GetString("law-emag-custom", ("name", Name(args.user)), ("title", Loc.GetString(component.Lawset.ObeysTo))),
Order = 0
});
@@ -176,20 +172,6 @@ private void OnEmagLawsAdded(EntityUid uid, SiliconLawProviderComponent componen
});
}
- protected override void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args)
- {
- if (component.RequireOpenPanel && TryComp(uid, out var panel) && !panel.Open)
- return;
-
- base.OnGotEmagged(uid, component, ref args);
- NotifyLawsChanged(uid, component.EmaggedSound);
- if(_mind.TryGetMind(uid, out var mindId, out _))
- EnsureSubvertedSiliconRole(mindId);
-
- _stunSystem.TryParalyze(uid, component.StunTime, true);
-
- }
-
private void EnsureSubvertedSiliconRole(EntityUid mindId)
{
if (!_roles.MindHasRole(mindId))
diff --git a/Content.Server/VendingMachines/VendingMachineSystem.cs b/Content.Server/VendingMachines/VendingMachineSystem.cs
index c20a6a46446c..c2ea6dd1ac00 100644
--- a/Content.Server/VendingMachines/VendingMachineSystem.cs
+++ b/Content.Server/VendingMachines/VendingMachineSystem.cs
@@ -39,6 +39,7 @@ public sealed class VendingMachineSystem : SharedVendingMachineSystem
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly SpeakOnUIClosedSystem _speakOnUIClosed = default!;
[Dependency] private readonly SharedPointLightSystem _light = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
private const float WallVendEjectDistanceFromWall = 1f;
@@ -48,7 +49,6 @@ public override void Initialize()
SubscribeLocalEvent(OnPowerChanged);
SubscribeLocalEvent(OnBreak);
- SubscribeLocalEvent(OnEmagged);
SubscribeLocalEvent(OnDamageChanged);
SubscribeLocalEvent(OnVendingPrice);
SubscribeLocalEvent(OnEmpPulse);
@@ -123,12 +123,6 @@ private void OnBreak(EntityUid uid, VendingMachineComponent vendComponent, Break
TryUpdateVisualState(uid, vendComponent);
}
- private void OnEmagged(EntityUid uid, VendingMachineComponent component, ref GotEmaggedEvent args)
- {
- // only emag if there are emag-only items
- args.Handled = component.EmaggedInventory.Count > 0;
- }
-
private void OnDamageChanged(EntityUid uid, VendingMachineComponent component, DamageChangedEvent args)
{
if (!args.DamageIncreased && component.Broken)
@@ -232,7 +226,7 @@ public bool IsAuthorized(EntityUid uid, EntityUid sender, VendingMachineComponen
if (!TryComp(uid, out var accessReader))
return true;
- if (_accessReader.IsAllowed(sender, uid, accessReader) || HasComp(uid))
+ if (_accessReader.IsAllowed(sender, uid, accessReader))
return true;
Popup.PopupEntity(Loc.GetString("vending-machine-component-try-eject-access-denied"), uid);
@@ -422,7 +416,7 @@ private void EjectItem(EntityUid uid, VendingMachineComponent? vendComponent = n
if (!Resolve(uid, ref component))
return null;
- if (type == InventoryType.Emagged && HasComp(uid))
+ if (type == InventoryType.Emagged && _emag.CheckFlag(uid, EmagType.Interaction))
return component.EmaggedInventory.GetValueOrDefault(entryId);
if (type == InventoryType.Contraband && component.Contraband)
diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs
index ec462ae23e8f..3c8314041f4f 100644
--- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs
+++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs
@@ -78,7 +78,7 @@ protected override bool ArcRaySuccessful(EntityUid targetUid,
// Could also check the arc though future effort + if they're aimbotting it's not really going to make a difference.
// (This runs lagcomp internally and is what clickattacks use)
- if (!Interaction.InRangeUnobstructed(ignore, targetUid, range + 0.1f))
+ if (!Interaction.InRangeUnobstructed(ignore, targetUid, range + 0.1f, overlapCheck: false))
return false;
// TODO: Check arc though due to the aforementioned aimbot + damage split comments it's less important.
@@ -193,7 +193,7 @@ protected override bool InRange(EntityUid user, EntityUid target, float range, I
if (session is { } pSession)
{
(targetCoordinates, targetLocalAngle) = _lag.GetCoordinatesAngle(target, pSession);
- return Interaction.InRangeUnobstructed(user, target, targetCoordinates, targetLocalAngle, range);
+ return Interaction.InRangeUnobstructed(user, target, targetCoordinates, targetLocalAngle, range, overlapCheck: false);
}
return Interaction.InRangeUnobstructed(user, target, range);
diff --git a/Content.Server/Wieldable/WieldableSystem.cs b/Content.Server/Wieldable/WieldableSystem.cs
new file mode 100644
index 000000000000..35f75276a8ff
--- /dev/null
+++ b/Content.Server/Wieldable/WieldableSystem.cs
@@ -0,0 +1,45 @@
+using Content.Server.Movement.Components;
+using Content.Server.Movement.Systems;
+using Content.Shared.Camera;
+using Content.Shared.Hands;
+using Content.Shared.Movement.Components;
+using Content.Shared.Wieldable;
+using Content.Shared.Wieldable.Components;
+
+namespace Content.Server.Wieldable;
+
+public sealed class WieldableSystem : SharedWieldableSystem
+{
+ [Dependency] private readonly ContentEyeSystem _eye = default!;
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnEyeOffsetUnwielded);
+ SubscribeLocalEvent(OnEyeOffsetWielded);
+ SubscribeLocalEvent>(OnGetEyePvsScale);
+ }
+
+ private void OnEyeOffsetUnwielded(Entity entity, ref ItemUnwieldedEvent args)
+ {
+ _eye.UpdatePvsScale(args.User);
+ }
+
+ private void OnEyeOffsetWielded(Entity entity, ref ItemWieldedEvent args)
+ {
+ _eye.UpdatePvsScale(args.User);
+ }
+
+ private void OnGetEyePvsScale(Entity entity,
+ ref HeldRelayedEvent args)
+ {
+ if (!TryComp(entity, out EyeCursorOffsetComponent? eyeCursorOffset) || !TryComp(entity.Owner, out WieldableComponent? wieldableComp))
+ return;
+
+ if (!wieldableComp.Wielded)
+ return;
+
+ args.Args.Scale += eyeCursorOffset.PvsIncrease;
+ }
+}
diff --git a/Content.Server/_EinsteinEngines/Supermatter/Systems/SupermatterSystem.Processing.cs b/Content.Server/_EinsteinEngines/Supermatter/Systems/SupermatterSystem.Processing.cs
index 74b2254aba71..2cc085a6e7b8 100644
--- a/Content.Server/_EinsteinEngines/Supermatter/Systems/SupermatterSystem.Processing.cs
+++ b/Content.Server/_EinsteinEngines/Supermatter/Systems/SupermatterSystem.Processing.cs
@@ -15,6 +15,7 @@
using Content.Shared.Radiation.Components;
using Content.Shared.Silicons.Laws.Components;
using Content.Shared.Speech;
+using Content.Shared.Storage.Components;
using Content.Shared.Traits.Assorted;
using Robust.Server.GameObjects;
using Robust.Shared.Audio;
@@ -674,10 +675,11 @@ private void HandleDelamination(EntityUid uid, SupermatterComponent sm)
// Play the reality distortion sound for every player on the map
_audio.PlayGlobal(sm.DistortSound, mapFilter, true);
- // Add hallucinations to every player on the map
+ // Add hallucinations to every mob on the map, except those in EntityStorage (lockers, etc)
// TODO: change this from paracusia to actual hallucinations whenever those are real
var mobLookup = new HashSet>();
_entityLookup.GetEntitiesOnMap(mapId, mobLookup);
+ mobLookup.RemoveWhere(x => HasComp(x));
// These values match the paracusia disability, since we can't double up on paracusia
var paracusiaSounds = new SoundCollectionSpecifier("Paracusia");
@@ -744,7 +746,7 @@ private void HandleLight(EntityUid uid, SupermatterComponent sm)
}
///
- /// Checks for
+ /// Checks whether a mob can see the supermatter, then applies hallucinations and psychologist coefficient
///
private void HandleVision(EntityUid uid, SupermatterComponent sm)
{
diff --git a/Content.Server/_Goobstation/Changeling/ChangelingSystem.Abilities.cs b/Content.Server/_Goobstation/Changeling/ChangelingSystem.Abilities.cs
index 0d26c4407664..3a53fcc0d2c8 100644
--- a/Content.Server/_Goobstation/Changeling/ChangelingSystem.Abilities.cs
+++ b/Content.Server/_Goobstation/Changeling/ChangelingSystem.Abilities.cs
@@ -22,7 +22,6 @@
using Robust.Shared.Player;
using Robust.Shared.Prototypes;
using Content.Shared.Mindshield.Components;
-using Content.Shared._Goobstation.FakeMindshield.Components;
namespace Content.Server.Changeling;
@@ -419,8 +418,7 @@ private void OnStingBlind(EntityUid uid, ChangelingComponent comp, ref StingBlin
if (!TryComp(target, out var blindable) || blindable.IsBlind)
return;
- _blindable.AdjustEyeDamage((target, blindable), 2);
- var timeSpan = TimeSpan.FromSeconds(5f);
+ var timeSpan = TimeSpan.FromSeconds(18f);
_statusEffect.TryAddStatusEffect(target, TemporaryBlindnessSystem.BlindingStatusEffect, timeSpan, false, TemporaryBlindnessSystem.BlindingStatusEffect);
}
private void OnStingCryo(EntityUid uid, ChangelingComponent comp, ref StingCryoEvent args)
@@ -718,7 +716,9 @@ public void OnMindshieldFake(Entity ent, ref ActionMindshie
return;
}
- EnsureComp(ent);
+ EnsureComp(ent, out var comp);
+ comp.IsEnabled = true;
+
_popup.PopupEntity(Loc.GetString("changeling-mindshield-start"), ent, ent);
}
diff --git a/Content.Server/_Goobstation/Heretic/EntitySystems/HereticSystem.cs b/Content.Server/_Goobstation/Heretic/EntitySystems/HereticSystem.cs
index 332a6c3ecdf7..66c5ef1dff2a 100644
--- a/Content.Server/_Goobstation/Heretic/EntitySystems/HereticSystem.cs
+++ b/Content.Server/_Goobstation/Heretic/EntitySystems/HereticSystem.cs
@@ -23,6 +23,7 @@
using Content.Shared.Roles.Jobs;
using Robust.Shared.Prototypes;
using Content.Shared.Roles;
+using Content.Shared.Changeling;
namespace Content.Server.Heretic.EntitySystems;
@@ -54,7 +55,7 @@ public override void Initialize()
SubscribeLocalEvent(OnBeforeDamage);
SubscribeLocalEvent(OnDamage);
-
+
}
public override void Update(float frameTime)
@@ -123,7 +124,7 @@ private void OnRerollTargets(Entity ent, ref EventHereticRerol
eligibleTargets.Add(target.AttachedEntity!.Value); // it can't be null because see .Where(HasValue)
// no heretics or other baboons
- eligibleTargets = eligibleTargets.Where(t => !HasComp(t) && !HasComp(t)).ToList();
+ eligibleTargets = eligibleTargets.Where(t => !HasComp(t) || !HasComp(t) || !HasComp(t)).ToList();
var pickedTargets = new List();
diff --git a/Content.Server/_Goobstation/Heretic/Ritual/CustomBehavior.Knowledge.cs b/Content.Server/_Goobstation/Heretic/Ritual/CustomBehavior.Knowledge.cs
index fe34fe851fd2..6c0797a359c5 100644
--- a/Content.Server/_Goobstation/Heretic/Ritual/CustomBehavior.Knowledge.cs
+++ b/Content.Server/_Goobstation/Heretic/Ritual/CustomBehavior.Knowledge.cs
@@ -3,6 +3,7 @@
using Content.Shared.Heretic;
using Content.Shared.Heretic.Prototypes;
using Content.Shared.Tag;
+using Robust.Shared.Containers;
using Robust.Shared.Prototypes;
using Robust.Shared.Random;
using System.Text;
@@ -19,6 +20,8 @@ public sealed partial class RitualKnowledgeBehavior : RitualCustomBehavior
private IRobustRandom _rand = default!;
private EntityLookupSystem _lookup = default!;
private HereticSystem _heretic = default!;
+ private SharedContainerSystem _container = default!;
+
[ValidatePrototypeId]
public const string EligibleTagsDataset = "EligibleTags";
@@ -31,6 +34,7 @@ public override bool Execute(RitualData args, out string? outstr)
_lookup = args.EntityManager.System();
_heretic = args.EntityManager.System();
+
outstr = null;
// generate new set of tags
@@ -45,7 +49,9 @@ public override bool Execute(RitualData args, out string? outstr)
{
foreach (var tag in requiredTags)
{
- if (!args.EntityManager.TryGetComponent(look, out var tags))
+ //WHY DID THEY JUST COPY-PASTE THE NORMAL RITUAL CODE. JUST USE THE NORMAL RITUAL CODE I AM BEGGING
+ if (!args.EntityManager.TryGetComponent(look, out var tags)
+ || _container.IsEntityInContainer(look))
continue;
var ltags = tags.Tags;
diff --git a/Content.Server/_Impstation/Fishing/FishingRodSystem.cs b/Content.Server/_Impstation/Fishing/FishingRodSystem.cs
new file mode 100644
index 000000000000..1db4be52de67
--- /dev/null
+++ b/Content.Server/_Impstation/Fishing/FishingRodSystem.cs
@@ -0,0 +1,9 @@
+using Content.Shared._Impstation.Fishing;
+
+namespace Content.Server._Impstation.Fishing;
+
+//Imp : Basically a copy of GrapplingGunSystem
+public sealed class FishingRodSystem : SharedFishingRodSystem
+{
+
+}
diff --git a/Content.Server/_Impstation/Speech/Components/DwarfAccentComponent.cs b/Content.Server/_Impstation/Speech/Components/DwarfAccentComponent.cs
new file mode 100644
index 000000000000..937bb253da74
--- /dev/null
+++ b/Content.Server/_Impstation/Speech/Components/DwarfAccentComponent.cs
@@ -0,0 +1,6 @@
+namespace Content.Server.Speech.Components;
+
+[RegisterComponent]
+public sealed partial class DwarfAccentComponent : Component
+{
+}
diff --git a/Content.Server/_Impstation/Speech/EntitySystems/DwarfAccentSystem.cs b/Content.Server/_Impstation/Speech/EntitySystems/DwarfAccentSystem.cs
new file mode 100644
index 000000000000..d5704ccaddfe
--- /dev/null
+++ b/Content.Server/_Impstation/Speech/EntitySystems/DwarfAccentSystem.cs
@@ -0,0 +1,38 @@
+using System.Text.RegularExpressions;
+using Content.Server.Speech.Components;
+
+namespace Content.Server.Speech.EntitySystems;
+
+public sealed class DwarfAccentComponentSystem : EntitySystem
+{
+ [Dependency] private readonly ReplacementAccentSystem _replacement = default!;
+
+ private static readonly Regex RegexAhAmContractionLower = new(@"(?(OnAccent);
+ }
+
+ private void OnAccent(EntityUid uid, DwarfAccentComponent component, AccentGetEvent args)
+ {
+ var message = args.Message;
+
+ message = _replacement.ApplyReplacements(message, "dwarf");
+
+ message = RegexAhAmContractionLower.Replace(message, "a'm");
+ message = RegexAhAmContractionUpperLeft.Replace(message, "A'M");
+ message = RegexAhAmContractionUpperRight.Replace(message, "A'M");
+ message = RegexAhLower.Replace(message, "ah");
+ message = RegexAhUpperLeft.Replace(message, "AH");
+ message = RegexAhUpperRight.Replace(message, "AH");
+
+ args.Message = message;
+ }
+}
diff --git a/Content.Server/_Impstation/Speech/EntitySystems/GrayAccentSystem.cs b/Content.Server/_Impstation/Speech/EntitySystems/GrayAccentSystem.cs
index fae24bf85961..0699c301c6e4 100644
--- a/Content.Server/_Impstation/Speech/EntitySystems/GrayAccentSystem.cs
+++ b/Content.Server/_Impstation/Speech/EntitySystems/GrayAccentSystem.cs
@@ -7,13 +7,15 @@ public sealed class GrayAccentComponentAccentSystem : EntitySystem
{
[Dependency] private readonly ReplacementAccentSystem _replacement = default!;
- private static readonly Regex RegexAmContraction = new(@"([a-z])'[Mm]\b");
- private static readonly Regex RegexAmContractionUpper = new(@"([A-Z])'[Mm]\b");
- private static readonly Regex RegexAreContraction = new(@"([a-z])'[Rr][Ee]\b");
- private static readonly Regex RegexAreContractionUpper = new(@"([A-Z])'[Rr][Ee]\b");
- private static readonly Regex RegexThuiLower = new(@"(.)\b[Tt]hui\b");
- private static readonly Regex RegexThuiUpperLeft = new(@"(\b[A-Z]+.)\b[Tt]hui\b");
- private static readonly Regex RegexThuiUpperRight = new(@"\b[Tt]hui\b(.[A-Z]+\b)");
+ private static readonly Regex RegexPuUpperLeft = new(@"(?<=\b[A-Z]+.)\b[Pp]u\b");
+ private static readonly Regex RegexPuUpperRight = new(@"\b[Pp]u\b(?=.[A-Z]+\b)");
+ private static readonly Regex RegexThuiLower = new(@"(?
-/// When added to a mob, removes the health alert and the damage overlays
-///
-/// Note: This is PAINFULLY coupled to the internals of MobThresholds.
-///
-[RegisterComponent, Access(typeof(PainInsensitivitySystem))]
-public sealed partial class PainInsensitivityComponent : Component
-{
- public bool OriginalShowOverlays;
- public bool OriginalShowBruteOverlay;
- public bool OriginalShowAirlossOverlay;
- public bool OriginalShowCritOverlay;
- public bool OriginalTriggersAlerts;
-
- [DataField]
- public bool ShowOverlays = true;
-
- [DataField]
- public bool ShowBruteOverlay = false;
-
- [DataField]
- public bool ShowAirlossOverlay = false;
-
- [DataField]
- public bool ShowCritOverlay = false;
-
- [DataField]
- public bool TriggersAlerts = false;
-
- public PainInsensitivityComponent(MobThresholdsComponent comp) : this(
- comp.ShowOverlays,
- comp.ShowBruteOverlay,
- comp.ShowAirlossOverlay,
- comp.ShowCritOverlay
- )
- {
- }
-
- public PainInsensitivityComponent(
- bool origShowOverlays,
- bool origShowBruteOverlay,
- bool origShowAirlossOverlay,
- bool origShowCritOverlay
- )
- {
- OriginalShowOverlays = origShowOverlays;
- OriginalShowBruteOverlay = origShowBruteOverlay;
- OriginalShowAirlossOverlay = origShowAirlossOverlay;
- OriginalShowCritOverlay = origShowCritOverlay;
- }
-}
diff --git a/Content.Server/_Impstation/Traits/EntitySystems/PainInsensitivitySystem.cs b/Content.Server/_Impstation/Traits/EntitySystems/PainInsensitivitySystem.cs
deleted file mode 100644
index 5edbaa88cf61..000000000000
--- a/Content.Server/_Impstation/Traits/EntitySystems/PainInsensitivitySystem.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-using Content.Shared.Alert;
-using Content.Shared.Mobs.Components;
-using Content.Shared.Mobs.Systems;
-
-namespace Content.Server._Impstation.Traits;
-
-public sealed partial class PainInsensitivitySystem : EntitySystem
-{
- [Dependency] private readonly MobThresholdSystem _thresholds = default!;
- [Dependency] private readonly AlertsSystem _alerts = default!;
-
- [ValidatePrototypeId]
- private const string HealthAlertCategoryProto = "Health";
-
- public override void Initialize()
- {
- base.Initialize();
-
- SubscribeLocalEvent(OnStartup);
- SubscribeLocalEvent(OnShutdown);
- }
-
- private void OnStartup(EntityUid uid, PainInsensitivityComponent comp, ComponentStartup args)
- {
- if (comp.LifeStage != ComponentLifeStage.Starting)
- return;
-
- if (!TryComp(uid, out var thresholds))
- {
- Log.Warning("PainInsensitivity attached to entity with no MobThresholds. Removing...");
- RemComp(uid, comp);
- return;
- }
- comp.OriginalShowOverlays = thresholds.ShowOverlays;
- comp.OriginalShowBruteOverlay = thresholds.ShowBruteOverlay;
- comp.OriginalShowAirlossOverlay = thresholds.ShowAirlossOverlay;
- comp.OriginalShowCritOverlay = thresholds.ShowCritOverlay;
- comp.OriginalTriggersAlerts = thresholds.TriggersAlerts;
-
- _thresholds.SetOverlaysEnabled(uid, comp.ShowOverlays, thresholds);
- _thresholds.SetBruteOverlayEnabled(uid, comp.ShowBruteOverlay, thresholds);
- _thresholds.SetAirlossOverlayEnabled(uid, comp.ShowAirlossOverlay, thresholds);
- _thresholds.SetCritOverlayEnabled(uid, comp.ShowCritOverlay, thresholds);
- _thresholds.SetTriggersAlerts(uid, comp.TriggersAlerts, thresholds);
-
- if(!comp.TriggersAlerts)
- _alerts.ClearAlertCategory(uid, HealthAlertCategoryProto);
- }
-
- private void OnShutdown(EntityUid uid, PainInsensitivityComponent comp, ComponentShutdown args)
- {
- if (!TryComp(uid, out var thresholds))
- return;
-
- _thresholds.SetOverlaysEnabled(uid, comp.OriginalShowOverlays, thresholds);
- _thresholds.SetBruteOverlayEnabled(uid, comp.OriginalShowBruteOverlay, thresholds);
- _thresholds.SetAirlossOverlayEnabled(uid, comp.OriginalShowAirlossOverlay, thresholds);
- _thresholds.SetCritOverlayEnabled(uid, comp.OriginalShowCritOverlay, thresholds);
- }
-}
diff --git a/Content.Shared/Access/Components/AccessReaderComponent.cs b/Content.Shared/Access/Components/AccessReaderComponent.cs
index 903ceab186d1..0219fd2b1ad6 100644
--- a/Content.Shared/Access/Components/AccessReaderComponent.cs
+++ b/Content.Shared/Access/Components/AccessReaderComponent.cs
@@ -76,7 +76,7 @@ public sealed partial class AccessReaderComponent : Component
/// Whether or not emag interactions have an effect on this.
///
[DataField]
- public bool BreakOnEmag = true;
+ public bool BreakOnAccessBreaker = true;
}
[DataDefinition, Serializable, NetSerializable]
diff --git a/Content.Shared/Access/Components/IdCardComponent.cs b/Content.Shared/Access/Components/IdCardComponent.cs
index e80ced646438..3b8322671beb 100644
--- a/Content.Shared/Access/Components/IdCardComponent.cs
+++ b/Content.Shared/Access/Components/IdCardComponent.cs
@@ -22,6 +22,8 @@ public sealed partial class IdCardComponent : Component
[Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWrite)]
public LocId? JobTitle;
+ [DataField]
+ [AutoNetworkedField]
private string? _jobTitle;
[Access(typeof(SharedIdCardSystem), typeof(SharedPdaSystem), typeof(SharedAgentIdCardSystem), Other = AccessPermissions.ReadWriteExecute)]
diff --git a/Content.Shared/Access/Systems/AccessReaderSystem.cs b/Content.Shared/Access/Systems/AccessReaderSystem.cs
index 0b1d508cc241..84de549b6636 100644
--- a/Content.Shared/Access/Systems/AccessReaderSystem.cs
+++ b/Content.Shared/Access/Systems/AccessReaderSystem.cs
@@ -2,7 +2,6 @@
using System.Linq;
using Content.Shared.Access.Components;
using Content.Shared.DeviceLinking.Events;
-using Content.Shared.Emag.Components;
using Content.Shared.Emag.Systems;
using Content.Shared.Hands.EntitySystems;
using Content.Shared.Inventory;
@@ -24,6 +23,7 @@ public sealed class AccessReaderSystem : EntitySystem
[Dependency] private readonly IPrototypeManager _prototype = default!;
[Dependency] private readonly InventorySystem _inventorySystem = default!;
[Dependency] private readonly IGameTiming _gameTiming = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedGameTicker _gameTicker = default!;
[Dependency] private readonly SharedHandsSystem _handsSystem = default!;
[Dependency] private readonly SharedContainerSystem _containerSystem = default!;
@@ -71,17 +71,28 @@ private void OnLinkAttempt(EntityUid uid, AccessReaderComponent component, LinkA
{
if (args.User == null) // AutoLink (and presumably future external linkers) have no user.
return;
- if (!HasComp(uid) && !IsAllowed(args.User.Value, uid, component))
+ if (!IsAllowed(args.User.Value, uid, component))
args.Cancel();
}
private void OnEmagged(EntityUid uid, AccessReaderComponent reader, ref GotEmaggedEvent args)
{
- if (!reader.BreakOnEmag)
+ if (!_emag.CompareFlag(args.Type, EmagType.Access))
return;
+
+ if (!reader.BreakOnAccessBreaker)
+ return;
+
+ if (!GetMainAccessReader(uid, out var accessReader))
+ return;
+
+ if (accessReader.Value.Comp.AccessLists.Count < 1)
+ return;
+
+ args.Repeatable = true;
args.Handled = true;
- reader.Enabled = false;
- reader.AccessLog.Clear();
+ accessReader.Value.Comp.AccessLists.Clear();
+ accessReader.Value.Comp.AccessLog.Clear();
Dirty(uid, reader);
}
@@ -135,6 +146,7 @@ public bool GetMainAccessReader(EntityUid uid, [NotNullWhen(true)] out Entity
[DataField]
+ [GuidebookData]
public float MaxTargetPressure = Atmospherics.MaxOutputPressure;
}
diff --git a/Content.Shared/Atmos/GasMixture.cs b/Content.Shared/Atmos/GasMixture.cs
index 0f1efba97666..deca8faaed36 100644
--- a/Content.Shared/Atmos/GasMixture.cs
+++ b/Content.Shared/Atmos/GasMixture.cs
@@ -1,4 +1,5 @@
-using System.Diagnostics.CodeAnalysis;
+using System.Collections;
+using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Runtime.CompilerServices;
using Content.Shared.Atmos.EntitySystems;
@@ -13,12 +14,12 @@ namespace Content.Shared.Atmos
///
[Serializable]
[DataDefinition]
- public sealed partial class GasMixture : IEquatable, ISerializationHooks
+ public sealed partial class GasMixture : IEquatable, ISerializationHooks, IEnumerable<(Gas gas, float moles)>
{
public static GasMixture SpaceGas => new() {Volume = Atmospherics.CellVolume, Temperature = Atmospherics.TCMB, Immutable = true};
// No access, to ensure immutable mixtures are never accidentally mutated.
- [Access(typeof(SharedAtmosphereSystem), typeof(SharedAtmosDebugOverlaySystem), Other = AccessPermissions.None)]
+ [Access(typeof(SharedAtmosphereSystem), typeof(SharedAtmosDebugOverlaySystem), typeof(GasEnumerator), Other = AccessPermissions.None)]
[DataField]
public float[] Moles = new float[Atmospherics.AdjustedNumberOfGases];
@@ -249,6 +250,16 @@ public GasMixtureStringRepresentation ToPrettyString()
return new GasMixtureStringRepresentation(TotalMoles, Temperature, Pressure, molesPerGas);
}
+ GasEnumerator GetEnumerator()
+ {
+ return new GasEnumerator(this);
+ }
+
+ IEnumerator<(Gas gas, float moles)> IEnumerable<(Gas gas, float moles)>.GetEnumerator()
+ {
+ return GetEnumerator();
+ }
+
public override bool Equals(object? obj)
{
if (obj is GasMixture mix)
@@ -289,6 +300,11 @@ public override int GetHashCode()
return hashCode.ToHashCode();
}
+ IEnumerator IEnumerable.GetEnumerator()
+ {
+ return GetEnumerator();
+ }
+
public GasMixture Clone()
{
if (Immutable)
@@ -302,5 +318,28 @@ public GasMixture Clone()
};
return newMixture;
}
+
+ public struct GasEnumerator(GasMixture mixture) : IEnumerator<(Gas gas, float moles)>
+ {
+ private int _idx = -1;
+
+ public void Dispose()
+ {
+ // Nada.
+ }
+
+ public bool MoveNext()
+ {
+ return ++_idx < Atmospherics.TotalNumberOfGases;
+ }
+
+ public void Reset()
+ {
+ _idx = -1;
+ }
+
+ public (Gas gas, float moles) Current => ((Gas)_idx, mixture.Moles[_idx]);
+ object? IEnumerator.Current => Current;
+ }
}
}
diff --git a/Content.Shared/Bed/Sleep/SleepingComponent.cs b/Content.Shared/Bed/Sleep/SleepingComponent.cs
index cbea0a0516f0..dbabb8bb9fda 100644
--- a/Content.Shared/Bed/Sleep/SleepingComponent.cs
+++ b/Content.Shared/Bed/Sleep/SleepingComponent.cs
@@ -1,6 +1,8 @@
+using Content.Shared.Dataset;
using Content.Shared.FixedPoint;
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
namespace Content.Shared.Bed.Sleep;
@@ -39,4 +41,11 @@ public sealed partial class SleepingComponent : Component
{
Params = AudioParams.Default.WithVariation(0.05f)
};
+
+ ///
+ /// The fluent string prefix to use when picking a random suffix
+ /// This is only active for those who have the sleeping component
+ ///
+ [DataField]
+ public ProtoId ForceSaySleepDataset = "ForceSaySleepDataset";
}
diff --git a/Content.Shared/Bed/Sleep/SleepingSystem.cs b/Content.Shared/Bed/Sleep/SleepingSystem.cs
index 90e1fd38e862..d0c6c753deb5 100644
--- a/Content.Shared/Bed/Sleep/SleepingSystem.cs
+++ b/Content.Shared/Bed/Sleep/SleepingSystem.cs
@@ -1,6 +1,7 @@
using Content.Shared.Actions;
using Content.Shared.Buckle.Components;
using Content.Shared.Damage;
+using Content.Shared.Damage.Events;
using Content.Shared.Damage.ForceSay;
using Content.Shared.Emoting;
using Content.Shared.Examine;
@@ -18,6 +19,7 @@
using Content.Shared.Speech;
using Content.Shared.StatusEffect;
using Content.Shared.Stunnable;
+using Content.Shared.Traits.Assorted;
using Content.Shared.Verbs;
using Robust.Shared.Audio.Systems;
using Robust.Shared.Prototypes;
@@ -63,6 +65,8 @@ public override void Initialize()
SubscribeLocalEvent(OnInit);
SubscribeLocalEvent(OnUnbuckleAttempt);
SubscribeLocalEvent(OnEmoteAttempt);
+
+ SubscribeLocalEvent(OnChangeForceSay, after: new []{typeof(PainNumbnessSystem)});
}
private void OnUnbuckleAttempt(Entity ent, ref UnbuckleAttemptEvent args)
@@ -317,6 +321,11 @@ public void OnEmoteAttempt(Entity ent, ref EmoteAttemptEvent
{
args.Cancel();
}
+
+ private void OnChangeForceSay(Entity ent, ref BeforeForceSayEvent args)
+ {
+ args.Prefix = ent.Comp.ForceSaySleepDataset;
+ }
}
diff --git a/Content.Shared/CCVar/CCVars.Admin.cs b/Content.Shared/CCVar/CCVars.Admin.cs
index 7754a6cbb8b6..f05eb3376ea7 100644
--- a/Content.Shared/CCVar/CCVars.Admin.cs
+++ b/Content.Shared/CCVar/CCVars.Admin.cs
@@ -89,6 +89,12 @@ public sealed partial class CCVars
public static readonly CVarDef ServerBanErasePlayer =
CVarDef.Create("admin.server_ban_erase_player", false, CVar.ARCHIVE | CVar.SERVER | CVar.REPLICATED);
+ ///
+ /// If true, will reset the last time the player has read the rules. This will mean on their next login they will be shown the rules again.
+ ///
+ public static readonly CVarDef ServerBanResetLastReadRules =
+ CVarDef.Create("admin.server_ban_reset_last_read_rules", true, CVar.ARCHIVE | CVar.SERVER);
+
///
/// Minimum players sharing a connection required to create an alert. -1 to disable the alert.
///
@@ -176,4 +182,11 @@ public sealed partial class CCVars
public static readonly CVarDef BanHardwareIds =
CVarDef.Create("ban.hardware_ids", true, CVar.SERVERONLY);
+
+ ///
+ /// If true, players are allowed to connect to multiple game servers at once.
+ /// If false, they will be kicked from the first when connecting to another.
+ ///
+ public static readonly CVarDef AdminAllowMultiServerPlay =
+ CVarDef.Create("admin.allow_multi_server_play", true, CVar.SERVERONLY);
}
diff --git a/Content.Shared/CCVar/CCVars.Discord.cs b/Content.Shared/CCVar/CCVars.Discord.cs
index 6e4ef532cdc7..5f63f2afa3f1 100644
--- a/Content.Shared/CCVar/CCVars.Discord.cs
+++ b/Content.Shared/CCVar/CCVars.Discord.cs
@@ -1,4 +1,4 @@
-using Robust.Shared.Configuration;
+using Robust.Shared.Configuration;
namespace Content.Shared.CCVar;
@@ -53,6 +53,12 @@ public sealed partial class CCVars
public static readonly CVarDef DiscordRoundUpdateWebhook =
CVarDef.Create("discord.round_update_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL);
+ ///
+ /// URL of the Discord webhook which will relay round restart messages.
+ ///
+ public static readonly CVarDef DiscordPostroundChatWebhook =
+ CVarDef.Create("discord.postround_chat_webhook", string.Empty, CVar.SERVERONLY | CVar.CONFIDENTIAL);
+
///
/// Role id for the Discord webhook to ping when the round ends.
///
diff --git a/Content.Shared/CCVar/CCVars.Sounds.cs b/Content.Shared/CCVar/CCVars.Sounds.cs
index 73d9d3852f1f..5e2a82518307 100644
--- a/Content.Shared/CCVar/CCVars.Sounds.cs
+++ b/Content.Shared/CCVar/CCVars.Sounds.cs
@@ -21,6 +21,9 @@ public sealed partial class CCVars
public static readonly CVarDef AdminSoundsEnabled =
CVarDef.Create("audio.admin_sounds_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY);
+ public static readonly CVarDef BwoinkSoundEnabled =
+ CVarDef.Create("audio.bwoink_sound_enabled", true, CVar.ARCHIVE | CVar.CLIENTONLY);
+
public static readonly CVarDef AdminChatSoundPath =
CVarDef.Create("audio.admin_chat_sound_path",
"/Audio/Items/pop.ogg",
diff --git a/Content.Shared/Camera/GetEyeOffsetEvent.cs b/Content.Shared/Camera/GetEyeOffsetEvent.cs
index de9c7c9e178f..0e3c00110a32 100644
--- a/Content.Shared/Camera/GetEyeOffsetEvent.cs
+++ b/Content.Shared/Camera/GetEyeOffsetEvent.cs
@@ -1,4 +1,5 @@
using System.Numerics;
+using Content.Shared.Inventory;
using Content.Shared.Movement.Systems;
namespace Content.Shared.Camera;
@@ -17,3 +18,15 @@ namespace Content.Shared.Camera;
///
[ByRefEvent]
public record struct GetEyeOffsetEvent(Vector2 Offset);
+
+///
+/// Raised on any equipped and in-hand items that may modify the eye offset.
+/// Pockets and suitstorage are excluded.
+///
+[ByRefEvent]
+public sealed class GetEyeOffsetRelayedEvent : EntityEventArgs, IInventoryRelayEvent
+{
+ public SlotFlags TargetSlots { get; } = ~(SlotFlags.POCKET & SlotFlags.SUITSTORAGE);
+
+ public Vector2 Offset;
+}
diff --git a/Content.Shared/Camera/GetEyePvsScaleEvent.cs b/Content.Shared/Camera/GetEyePvsScaleEvent.cs
new file mode 100644
index 000000000000..482b755db8d3
--- /dev/null
+++ b/Content.Shared/Camera/GetEyePvsScaleEvent.cs
@@ -0,0 +1,33 @@
+using System.Numerics;
+using Content.Shared.Inventory;
+using Content.Shared.Movement.Systems;
+
+namespace Content.Shared.Camera;
+
+///
+/// Raised directed by-ref when is called.
+/// Should be subscribed to by any systems that want to modify an entity's eye PVS scale,
+/// so that they do not override each other. Keep in mind that this should be done serverside;
+/// the client may set a new PVS scale, but the server won't provide the data if it isn't done on the server.
+///
+///
+/// The total scale to apply.
+///
+///
+/// Note that in most cases should be incremented or decremented by subscribers, not set.
+/// Otherwise, any offsets applied by previous subscribing systems will be overridden.
+///
+[ByRefEvent]
+public record struct GetEyePvsScaleEvent(float Scale);
+
+///
+/// Raised on any equipped and in-hand items that may modify the eye offset.
+/// Pockets and suitstorage are excluded.
+///
+[ByRefEvent]
+public sealed class GetEyePvsScaleRelayedEvent : EntityEventArgs, IInventoryRelayEvent
+{
+ public SlotFlags TargetSlots { get; } = ~(SlotFlags.POCKET & SlotFlags.SUITSTORAGE);
+
+ public float Scale;
+}
diff --git a/Content.Shared/Camera/SharedCameraRecoilSystem.cs b/Content.Shared/Camera/SharedCameraRecoilSystem.cs
index a2ce0e77e20c..a497016c46f0 100644
--- a/Content.Shared/Camera/SharedCameraRecoilSystem.cs
+++ b/Content.Shared/Camera/SharedCameraRecoilSystem.cs
@@ -1,4 +1,6 @@
using System.Numerics;
+using Content.Shared.Movement.Components;
+using Content.Shared.Movement.Systems;
using JetBrains.Annotations;
using Robust.Shared.Network;
using Robust.Shared.Serialization;
@@ -28,7 +30,7 @@ public abstract class SharedCameraRecoilSystem : EntitySystem
///
protected const float KickMagnitudeMax = 1f;
- [Dependency] private readonly SharedEyeSystem _eye = default!;
+ [Dependency] private readonly SharedContentEyeSystem _eye = default!;
[Dependency] private readonly INetManager _net = default!;
public override void Initialize()
@@ -81,9 +83,7 @@ private void UpdateEyes(float frameTime)
continue;
recoil.LastKick = recoil.CurrentKick;
- var ev = new GetEyeOffsetEvent();
- RaiseLocalEvent(uid, ref ev);
- _eye.SetOffset(uid, ev.Offset, eye);
+ _eye.UpdateEyeOffset((uid, eye));
}
}
diff --git a/Content.Shared/Cargo/CargoBountyHistoryData.cs b/Content.Shared/Cargo/CargoBountyHistoryData.cs
new file mode 100644
index 000000000000..eb46bc194425
--- /dev/null
+++ b/Content.Shared/Cargo/CargoBountyHistoryData.cs
@@ -0,0 +1,67 @@
+using Content.Shared.Cargo.Prototypes;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Cargo;
+
+///
+/// A data structure for storing historical information about bounties.
+///
+[DataDefinition, NetSerializable, Serializable]
+public readonly partial record struct CargoBountyHistoryData
+{
+ ///
+ /// A unique id used to identify the bounty
+ ///
+ [DataField]
+ public string Id { get; init; } = string.Empty;
+
+ ///
+ /// Whether this bounty was completed or skipped.
+ ///
+ [DataField]
+ public BountyResult Result { get; init; } = BountyResult.Completed;
+
+ ///
+ /// Optional name of the actor that completed/skipped the bounty.
+ ///
+ [DataField]
+ public string? ActorName { get; init; } = default;
+
+ ///
+ /// Time when this bounty was completed or skipped
+ ///
+ [DataField]
+ public TimeSpan Timestamp { get; init; } = TimeSpan.MinValue;
+
+ ///
+ /// The prototype containing information about the bounty.
+ ///
+ [DataField(required: true)]
+ public ProtoId Bounty { get; init; } = string.Empty;
+
+ public CargoBountyHistoryData(CargoBountyData bounty, BountyResult result, TimeSpan timestamp, string? actorName)
+ {
+ Bounty = bounty.Bounty;
+ Result = result;
+ Id = bounty.Id;
+ ActorName = actorName;
+ Timestamp = timestamp;
+ }
+
+ ///
+ /// Covers how a bounty was actually finished.
+ ///
+ public enum BountyResult
+ {
+ ///
+ /// Bounty was actually fulfilled and the goods sold
+ ///
+ Completed = 0,
+
+ ///
+ /// Bounty was explicitly skipped by some actor
+ ///
+ Skipped = 1,
+ }
+}
diff --git a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs
index bf82a08127e5..8c78312be19b 100644
--- a/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs
+++ b/Content.Shared/Cargo/Components/CargoBountyConsoleComponent.cs
@@ -50,11 +50,13 @@ public sealed partial class CargoBountyConsoleComponent : Component
public sealed class CargoBountyConsoleState : BoundUserInterfaceState
{
public List Bounties;
+ public List History;
public TimeSpan UntilNextSkip;
- public CargoBountyConsoleState(List bounties, TimeSpan untilNextSkip)
+ public CargoBountyConsoleState(List bounties, List history, TimeSpan untilNextSkip)
{
Bounties = bounties;
+ History = history;
UntilNextSkip = untilNextSkip;
}
}
diff --git a/Content.Shared/Cloning/CloningPodComponent.cs b/Content.Shared/Cloning/CloningPodComponent.cs
index 88d587c14577..d588b62eb37f 100644
--- a/Content.Shared/Cloning/CloningPodComponent.cs
+++ b/Content.Shared/Cloning/CloningPodComponent.cs
@@ -46,15 +46,6 @@ public sealed partial class CloningPodComponent : Component
[DataField("mobSpawnId"), ViewVariables(VVAccess.ReadWrite)]
public EntProtoId MobSpawnId = "MobAbomination";
- ///
- /// Emag sound effects.
- ///
- [DataField("sparkSound")]
- public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks")
- {
- Params = AudioParams.Default.WithVolume(8),
- };
-
// TODO: Remove this from here when cloning and/or zombies are refactored
[DataField("screamSound")]
public SoundSpecifier ScreamSound = new SoundCollectionSpecifier("ZombieScreams")
diff --git a/Content.Shared/Clothing/Components/MaskComponent.cs b/Content.Shared/Clothing/Components/MaskComponent.cs
index 41b2b797f5d8..47f2fd3079c2 100644
--- a/Content.Shared/Clothing/Components/MaskComponent.cs
+++ b/Content.Shared/Clothing/Components/MaskComponent.cs
@@ -20,8 +20,11 @@ public sealed partial class MaskComponent : Component
[DataField, AutoNetworkedField]
public bool IsToggled;
+ ///
+ /// Equipped prefix to use after the mask was pulled down.
+ ///
[DataField, AutoNetworkedField]
- public string EquippedPrefix = "toggled";
+ public string EquippedPrefix = "up";
///
/// When will function normally, otherwise will not react to events
diff --git a/Content.Shared/Contraband/ContrabandComponent.cs b/Content.Shared/Contraband/ContrabandComponent.cs
index a4ce652f2f56..f758d91f0cd8 100644
--- a/Content.Shared/Contraband/ContrabandComponent.cs
+++ b/Content.Shared/Contraband/ContrabandComponent.cs
@@ -24,5 +24,13 @@ public sealed partial class ContrabandComponent : Component
///
[DataField]
[AutoNetworkedField]
- public HashSet>? AllowedDepartments = ["Security"];
+ public HashSet> AllowedDepartments = new();
+
+ ///
+ /// Which jobs is this item restricted to?
+ /// If empty, no jobs are allowed to use this beyond the allowed departments.
+ ///
+ [DataField]
+ [AutoNetworkedField]
+ public HashSet> AllowedJobs = new();
}
diff --git a/Content.Shared/Contraband/ContrabandSeverityPrototype.cs b/Content.Shared/Contraband/ContrabandSeverityPrototype.cs
index d3a7ae96d2a1..a2a8104e80d0 100644
--- a/Content.Shared/Contraband/ContrabandSeverityPrototype.cs
+++ b/Content.Shared/Contraband/ContrabandSeverityPrototype.cs
@@ -25,8 +25,8 @@ public sealed partial class ContrabandSeverityPrototype : IPrototype
public LocId ExamineText;
///
- /// When examining the contraband, should this take into account the viewer's departments?
+ /// When examining the contraband, should this take into account the viewer's departments and job?
///
[DataField]
- public bool ShowDepartments;
+ public bool ShowDepartmentsAndJobs;
}
diff --git a/Content.Shared/Contraband/ContrabandSystem.cs b/Content.Shared/Contraband/ContrabandSystem.cs
index 6ccf6e58b661..b0c86bb2c91c 100644
--- a/Content.Shared/Contraband/ContrabandSystem.cs
+++ b/Content.Shared/Contraband/ContrabandSystem.cs
@@ -40,6 +40,7 @@ public void CopyDetails(EntityUid uid, ContrabandComponent other, ContrabandComp
contraband.Severity = other.Severity;
contraband.AllowedDepartments = other.AllowedDepartments;
+ contraband.AllowedJobs = other.AllowedJobs;
Dirty(uid, contraband);
}
@@ -54,11 +55,14 @@ private void OnExamined(Entity ent, ref ExaminedEvent args)
using (args.PushGroup(nameof(ContrabandComponent)))
{
+ var localizedDepartments = ent.Comp.AllowedDepartments.Select(p => Loc.GetString("contraband-department-plural", ("department", Loc.GetString(_proto.Index(p).Name))));
+ var localizedJobs = ent.Comp.AllowedJobs.Select(p => Loc.GetString("contraband-job-plural", ("job", _proto.Index(p).LocalizedName)));
+
var severity = _proto.Index(ent.Comp.Severity);
- if (severity.ShowDepartments && ent.Comp is { AllowedDepartments: not null })
+ if (severity.ShowDepartmentsAndJobs)
{
- // TODO shouldn't department prototypes have a localized name instead of just using the ID for this?
- var list = ContentLocalizationManager.FormatList(ent.Comp.AllowedDepartments.Select(p => Loc.GetString($"department-{p.Id}")).ToList());
+ //creating a combined list of jobs and departments for the restricted text
+ var list = ContentLocalizationManager.FormatList(localizedDepartments.Concat(localizedJobs).ToList());
// department restricted text
args.PushMarkup(Loc.GetString("contraband-examine-text-Restricted-department", ("color", severity.ExamineColor), ("departments", list))); // imp edit
@@ -69,23 +73,30 @@ private void OnExamined(Entity ent, ref ExaminedEvent args)
}
// text based on ID card
- List>? departments = null;
+ List> departments = new();
+ var jobId = "";
+
if (_id.TryFindIdCard(args.Examiner, out var id))
{
departments = id.Comp.JobDepartments;
+ if (id.Comp.LocalizedJobTitle is not null)
+ {
+ jobId = id.Comp.LocalizedJobTitle;
+ }
}
- // either its fully restricted, you have no departments, or your departments dont intersect with the restricted departments
- if (ent.Comp.AllowedDepartments is null
- || departments is null
- || !departments.Intersect(ent.Comp.AllowedDepartments).Any())
+ // for the jobs we compare the localized string in case you use an agent ID or custom job name that is not a prototype
+ if (departments.Intersect(ent.Comp.AllowedDepartments).Any()
+ || localizedJobs.Contains(jobId))
+ {
+ // you are allowed to use this!
+ args.PushMarkup(Loc.GetString("contraband-examine-text-in-the-clear"));
+ }
+ else
{
+ // straight to jail!
args.PushMarkup(Loc.GetString("contraband-examine-text-avoid-carrying-around"));
- return;
}
-
- // otherwise fine to use :tm:
- args.PushMarkup(Loc.GetString("contraband-examine-text-in-the-clear"));
}
}
}
diff --git a/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs b/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
index 70e927e3cb84..3a35b807c01c 100644
--- a/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
+++ b/Content.Shared/CriminalRecords/Components/CriminalRecordsConsoleComponent.cs
@@ -1,7 +1,10 @@
using Content.Shared.CriminalRecords.Systems;
+using Content.Shared.CriminalRecords.Components;
+using Content.Shared.CriminalRecords;
using Content.Shared.Radio;
using Content.Shared.StationRecords;
using Robust.Shared.Prototypes;
+using Content.Shared.Security;
namespace Content.Shared.CriminalRecords.Components;
@@ -31,6 +34,12 @@ public sealed partial class CriminalRecordsConsoleComponent : Component
[DataField]
public StationRecordsFilter? Filter;
+ ///
+ /// Current seleced security status for the filter by criminal status dropdown.
+ ///
+ [DataField]
+ public SecurityStatus FilterStatus;
+
///
/// Channel to send messages to when someone's status gets changed.
///
diff --git a/Content.Shared/CriminalRecords/CriminalRecordsUi.cs b/Content.Shared/CriminalRecords/CriminalRecordsUi.cs
index 287de36ac736..b8ad9ede15ef 100644
--- a/Content.Shared/CriminalRecords/CriminalRecordsUi.cs
+++ b/Content.Shared/CriminalRecords/CriminalRecordsUi.cs
@@ -35,9 +35,9 @@ public sealed class CriminalRecordsConsoleState : BoundUserInterfaceState
/// Currently selected crewmember record key.
///
public uint? SelectedKey = null;
-
public CriminalRecord? CriminalRecord = null;
public GeneralStationRecord? StationRecord = null;
+ public SecurityStatus FilterStatus = SecurityStatus.None;
public readonly Dictionary? RecordListing;
public readonly StationRecordsFilter? Filter;
@@ -100,3 +100,20 @@ public CriminalRecordDeleteHistory(uint index)
Index = index;
}
}
+
+///
+/// Used to set what status to filter by index.
+///
+///
+///
+[Serializable, NetSerializable]
+
+public sealed class CriminalRecordSetStatusFilter : BoundUserInterfaceMessage
+{
+ public readonly SecurityStatus FilterStatus;
+ public CriminalRecordSetStatusFilter(SecurityStatus newFilterStatus)
+ {
+ FilterStatus = newFilterStatus;
+ }
+}
+
diff --git a/Content.Shared/Damage/Events/BeforeForceSayEvent.cs b/Content.Shared/Damage/Events/BeforeForceSayEvent.cs
new file mode 100644
index 000000000000..9e35f6ce7309
--- /dev/null
+++ b/Content.Shared/Damage/Events/BeforeForceSayEvent.cs
@@ -0,0 +1,14 @@
+using Content.Shared.Dataset;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Damage.Events;
+
+///
+/// Event for interrupting and changing the prefix for when an entity is being forced to say something
+///
+[Serializable, NetSerializable]
+public sealed class BeforeForceSayEvent(ProtoId prefixDataset) : EntityEventArgs
+{
+ public ProtoId Prefix = prefixDataset;
+}
diff --git a/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs b/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs
index 163cc7cbf4cc..e184f4beb97c 100644
--- a/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs
+++ b/Content.Shared/Damage/ForceSay/DamageForceSayComponent.cs
@@ -1,8 +1,8 @@
using Content.Shared.Damage.Prototypes;
+using Content.Shared.Dataset;
using Content.Shared.FixedPoint;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
-using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.Set;
namespace Content.Shared.Damage.ForceSay;
@@ -30,14 +30,7 @@ public sealed partial class DamageForceSayComponent : Component
/// The fluent string prefix to use when picking a random suffix
///
[DataField]
- public string ForceSayStringPrefix = "damage-force-say-";
-
- ///
- /// The number of suffixes that exist for use with .
- /// i.e. (prefix)-1 through (prefix)-(count)
- ///
- [DataField]
- public int ForceSayStringCount = 7;
+ public ProtoId ForceSayStringDataset = "ForceSayStringDataset";
///
/// The amount of total damage between that needs to be taken before
diff --git a/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs b/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs
index 85364fe5f40c..ae4c89c97034 100644
--- a/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs
+++ b/Content.Shared/Decals/DecalGridChunkCollectionTypeSerializer.cs
@@ -32,6 +32,8 @@ public DecalGridChunkCollection Read(ISerializationManager serializationManager,
node.TryGetValue(new ValueDataNode("version"), out var versionNode);
var version = ((ValueDataNode?) versionNode)?.AsInt() ?? 1;
Dictionary dictionary;
+ uint nextIndex = 0;
+ var ids = new HashSet();
// TODO: Dump this when we don't need support anymore.
if (version > 1)
@@ -53,22 +55,31 @@ public DecalGridChunkCollection Read(ISerializationManager serializationManager,
var chunkOrigin = SharedMapSystem.GetChunkIndices(coords, SharedDecalSystem.ChunkSize);
var chunk = dictionary.GetOrNew(chunkOrigin);
var decal = new Decal(coords, data.Id, data.Color, data.Angle, data.ZIndex, data.Cleanable);
- chunk.Decals.Add(dUid, decal);
+
+ nextIndex = Math.Max(nextIndex, dUid);
+
+ // Re-used ID somehow
+ // This will bump all IDs by up to 1 but will ensure the map is still readable.
+ if (!ids.Add(dUid))
+ {
+ dUid = nextIndex++;
+ ids.Add(dUid);
+ }
+
+ chunk.Decals[dUid] = decal;
}
}
}
else
{
dictionary = serializationManager.Read>(node, hookCtx, context, notNullableOverride: true);
- }
- uint nextIndex = 0;
-
- foreach (var decals in dictionary.Values)
- {
- foreach (var uid in decals.Decals.Keys)
+ foreach (var decals in dictionary.Values)
{
- nextIndex = Math.Max(uid, nextIndex);
+ foreach (var uid in decals.Decals.Keys)
+ {
+ nextIndex = Math.Max(uid, nextIndex);
+ }
}
}
diff --git a/Content.Shared/DisplacementMap/DisplacementData.cs b/Content.Shared/DisplacementMap/DisplacementData.cs
index 7bd5b580e143..4a7dcf3c1f9e 100644
--- a/Content.Shared/DisplacementMap/DisplacementData.cs
+++ b/Content.Shared/DisplacementMap/DisplacementData.cs
@@ -11,4 +11,7 @@ public sealed partial class DisplacementData
[DataField]
public string? ShaderOverride = "DisplacedStencilDraw";
+
+ [DataField]
+ public string ShaderOverrideUnshaded = "DisplacedStencilDrawUnshaded";
}
diff --git a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
index 9fdb4a6a804d..a650ef72f803 100644
--- a/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
+++ b/Content.Shared/Disposal/SharedDisposalUnitSystem.cs
@@ -24,6 +24,7 @@ public sealed partial class DisposalDoAfterEvent : SimpleDoAfterEvent
public abstract class SharedDisposalUnitSystem : EntitySystem
{
[Dependency] protected readonly IGameTiming GameTiming = default!;
+ [Dependency] protected readonly EmagSystem _emag = default!;
[Dependency] protected readonly MetaDataSystem Metadata = default!;
[Dependency] protected readonly SharedJointSystem Joints = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
@@ -102,6 +103,12 @@ protected void OnCanDragDropOn(EntityUid uid, SharedDisposalUnitComponent compon
protected void OnEmagged(EntityUid uid, SharedDisposalUnitComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (component.DisablePressure == true)
+ return;
+
component.DisablePressure = true;
args.Handled = true;
}
diff --git a/Content.Shared/Doors/Components/FirelockComponent.cs b/Content.Shared/Doors/Components/FirelockComponent.cs
index 3f7d6c3f7049..cc9278dfe7e4 100644
--- a/Content.Shared/Doors/Components/FirelockComponent.cs
+++ b/Content.Shared/Doors/Components/FirelockComponent.cs
@@ -1,3 +1,4 @@
+using Content.Shared.Guidebook;
using Robust.Shared.GameStates;
namespace Content.Shared.Doors.Components
@@ -23,12 +24,14 @@ public sealed partial class FirelockComponent : Component
/// Maximum pressure difference before the firelock will refuse to open, in kPa.
///
[DataField("pressureThreshold"), ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float PressureThreshold = 20;
///
/// Maximum temperature difference before the firelock will refuse to open, in k.
///
[DataField("temperatureThreshold"), ViewVariables(VVAccess.ReadWrite)]
+ [GuidebookData]
public float TemperatureThreshold = 330;
// this used to check for hot-spots, but because accessing that data is a a mess this now just checks
// temperature. This does mean a cold room will trigger hot-air pop-ups
diff --git a/Content.Shared/Doors/Systems/SharedDoorSystem.cs b/Content.Shared/Doors/Systems/SharedDoorSystem.cs
index adbd61e4c259..8ac24bc216e2 100644
--- a/Content.Shared/Doors/Systems/SharedDoorSystem.cs
+++ b/Content.Shared/Doors/Systems/SharedDoorSystem.cs
@@ -40,6 +40,7 @@ public abstract partial class SharedDoorSystem : EntitySystem
[Dependency] private readonly INetManager _net = default!;
[Dependency] protected readonly SharedPhysicsSystem PhysicsSystem = default!;
[Dependency] private readonly DamageableSystem _damageableSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedStunSystem _stunSystem = default!;
[Dependency] protected readonly TagSystem Tags = default!;
[Dependency] protected readonly SharedAudioSystem Audio = default!;
@@ -88,8 +89,6 @@ public override void Initialize()
SubscribeLocalEvent(OnWeldAttempt);
SubscribeLocalEvent(OnWeldChanged);
SubscribeLocalEvent(OnPryTimeModifier);
-
- SubscribeLocalEvent(OnAttemptEmag);
SubscribeLocalEvent(OnEmagged);
}
@@ -129,31 +128,24 @@ private void OnRemove(Entity door, ref ComponentRemove args)
_activeDoors.Remove(door);
}
- private void OnAttemptEmag(EntityUid uid, DoorComponent door, ref OnAttemptEmagEvent args)
+ private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Access))
+ return;
+
if (!TryComp(uid, out var airlock))
- {
- args.Handled = true;
return;
- }
if (IsBolted(uid) || !airlock.Powered)
- {
- args.Handled = true;
return;
- }
if (door.State != DoorState.Closed)
- {
- args.Handled = true;
- }
- }
+ return;
- private void OnEmagged(EntityUid uid, DoorComponent door, ref GotEmaggedEvent args)
- {
if (!SetState(uid, DoorState.Emagging, door))
return;
- Audio.PlayPredicted(door.SparkSound, uid, args.UserUid, AudioParams.Default.WithVolume(8));
+
+ args.Repeatable = true;
args.Handled = true;
}
diff --git a/Content.Shared/DrawDepth/DrawDepth.cs b/Content.Shared/DrawDepth/DrawDepth.cs
index d0d2daf5d90f..4a93b5f0eaf3 100644
--- a/Content.Shared/DrawDepth/DrawDepth.cs
+++ b/Content.Shared/DrawDepth/DrawDepth.cs
@@ -9,32 +9,42 @@ public enum DrawDepth
///
/// This is for sub-floors, the floors you see after prying off a tile.
///
- LowFloors = DrawDepthTag.Default - 11,
+ LowFloors = DrawDepthTag.Default - 14,
// various entity types that require different
// draw depths, as to avoid hiding
#region SubfloorEntities
- ThickPipe = DrawDepthTag.Default - 10,
- ThickWire = DrawDepthTag.Default - 9,
- ThinPipe = DrawDepthTag.Default - 8,
- ThinWire = DrawDepthTag.Default - 7,
+ ThickPipe = DrawDepthTag.Default - 13,
+ ThickWire = DrawDepthTag.Default - 12,
+ ThinPipe = DrawDepthTag.Default - 11,
+ ThinWire = DrawDepthTag.Default - 10,
#endregion
///
/// Things that are beneath regular floors.
///
- BelowFloor = DrawDepthTag.Default - 7,
+ BelowFloor = DrawDepthTag.Default - 9,
///
/// Used for entities like carpets.
///
- FloorTiles = DrawDepthTag.Default - 6,
+ FloorTiles = DrawDepthTag.Default - 8,
///
- /// Things that are actually right on the floor, like puddles. This does not mean objects like
+ /// Things that are actually right on the floor, like ice crust or atmos devices. This does not mean objects like
/// tables, even though they are technically "on the floor".
///
- FloorObjects = DrawDepthTag.Default - 5,
+ FloorObjects = DrawDepthTag.Default - 7,
+
+ ///
+ // Discrete drawdepth to avoid z-fighting with other FloorObjects but also above floor entities.
+ ///
+ Puddles = DrawDepthTag.Default - 6,
+
+ ///
+ // Objects that are on the floor, but should render above puddles. This includes kudzu, holopads, telepads and levers.
+ ///
+ HighFloorObjects = DrawDepthTag.Default - 5,
DeadMobs = DrawDepthTag.Default - 4,
diff --git a/Content.Shared/Emag/Components/EmagComponent.cs b/Content.Shared/Emag/Components/EmagComponent.cs
index 27e60fe6ac7e..2922c6cd60bf 100644
--- a/Content.Shared/Emag/Components/EmagComponent.cs
+++ b/Content.Shared/Emag/Components/EmagComponent.cs
@@ -1,7 +1,9 @@
using Content.Shared.Emag.Systems;
using Content.Shared.Tag;
using Content.Shared.Whitelist;
+using Robust.Shared.Audio;
using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype;
using Robust.Shared.Serialization;
@@ -15,9 +17,9 @@ public sealed partial class EmagComponent : Component
///
/// The tag that marks an entity as immune to emags
///
- [DataField("emagImmuneTag", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)]
+ [DataField]
[AutoNetworkedField]
- public string EmagImmuneTag = "EmagImmune";
+ public ProtoId EmagImmuneTag = "EmagImmune";
// DeltaV - Add a whitelist/blacklist to the Emag
///
@@ -32,4 +34,18 @@ public sealed partial class EmagComponent : Component
[DataField]
public EntityWhitelist? Blacklist;
// End of DV code
+
+ ///
+ /// What type of emag effect this device will do
+ ///
+ [DataField]
+ [AutoNetworkedField]
+ public EmagType EmagType = EmagType.Interaction;
+
+ ///
+ /// What sound should the emag play when used
+ ///
+ [DataField]
+ [AutoNetworkedField]
+ public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks");
}
diff --git a/Content.Shared/Emag/Components/EmaggedComponent.cs b/Content.Shared/Emag/Components/EmaggedComponent.cs
index 337f1a8e5611..152fdca8e368 100644
--- a/Content.Shared/Emag/Components/EmaggedComponent.cs
+++ b/Content.Shared/Emag/Components/EmaggedComponent.cs
@@ -1,3 +1,4 @@
+using Content.Shared.Emag.Systems;
using Robust.Shared.GameStates;
namespace Content.Shared.Emag.Components;
@@ -5,7 +6,12 @@ namespace Content.Shared.Emag.Components;
///
/// Marker component for emagged entities
///
-[RegisterComponent, NetworkedComponent]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class EmaggedComponent : Component
{
+ ///
+ /// The EmagType flags that were used to emag this device
+ ///
+ [DataField, AutoNetworkedField]
+ public EmagType EmagType = EmagType.None;
}
diff --git a/Content.Shared/Emag/Systems/EmagSystem.cs b/Content.Shared/Emag/Systems/EmagSystem.cs
index dab45d417860..f3d92ef55560 100644
--- a/Content.Shared/Emag/Systems/EmagSystem.cs
+++ b/Content.Shared/Emag/Systems/EmagSystem.cs
@@ -6,9 +6,10 @@
using Content.Shared.IdentityManagement;
using Content.Shared.Interaction;
using Content.Shared.Popups;
-using Content.Shared.Silicons.Laws.Components;
using Content.Shared.Tag;
using Content.Shared.Whitelist;
+using Robust.Shared.Audio.Systems;
+using Robust.Shared.Serialization;
namespace Content.Shared.Emag.Systems;
@@ -24,97 +25,133 @@ public sealed class EmagSystem : EntitySystem
[Dependency] private readonly SharedChargesSystem _charges = default!;
[Dependency] private readonly SharedPopupSystem _popup = default!;
[Dependency] private readonly TagSystem _tag = default!;
+ [Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelist = default!; // DeltaV - Add a whitelist/blacklist to the Emag
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnAfterInteract);
+ SubscribeLocalEvent(OnAccessOverriderAccessUpdated);
}
+ private void OnAccessOverriderAccessUpdated(Entity entity, ref OnAccessOverriderAccessUpdatedEvent args)
+ {
+ if (!CompareFlag(entity.Comp.EmagType, EmagType.Access))
+ return;
+
+ entity.Comp.EmagType &= ~EmagType.Access;
+ Dirty(entity);
+ }
private void OnAfterInteract(EntityUid uid, EmagComponent comp, AfterInteractEvent args)
{
if (!args.CanReach || args.Target is not { } target)
return;
- args.Handled = TryUseEmag(uid, args.User, target, comp);
+ args.Handled = TryEmagEffect((uid, comp), args.User, target);
}
///
- /// Tries to use the emag on a target entity
+ /// Does the emag effect on a specified entity
///
- public bool TryUseEmag(EntityUid uid, EntityUid user, EntityUid target, EmagComponent? comp = null)
+ public bool TryEmagEffect(Entity ent, EntityUid user, EntityUid target)
{
- if (!Resolve(uid, ref comp, false))
+ if (!Resolve(ent, ref ent.Comp, false))
return false;
- if (_tag.HasTag(target, comp.EmagImmuneTag))
+ if (_tag.HasTag(target, ent.Comp.EmagImmuneTag))
return false;
- // DeltaV - Add a whitelist / blacklist to the Emag
- if (_whitelist.IsWhitelistFail(comp.Whitelist, target)
- || _whitelist.IsBlacklistPass(comp.Blacklist, target))
+ // DeltaV - Add a whitelist / blacklist to the Emag
+ if (_whitelist.IsWhitelistFail(ent.Comp.Whitelist, target)
+ || _whitelist.IsBlacklistPass(ent.Comp.Blacklist, target))
{
- _popup.PopupClient(Loc.GetString("emag-invalid-target", ("emag", uid), ("target", target)), user, user);
+ _popup.PopupClient(Loc.GetString("emag-invalid-target", ("emag", ent), ("target", target)), user, user);
return false;
}
- // End of DV code
+ // End of DV code
- TryComp(uid, out var charges);
- if (_charges.IsEmpty(uid, charges))
+ TryComp(ent, out var charges);
+ if (_charges.IsEmpty(ent, charges))
{
_popup.PopupClient(Loc.GetString("emag-no-charges"), user, user);
return false;
}
- var handled = DoEmagEffect(user, target);
- if (!handled)
+ var emaggedEvent = new GotEmaggedEvent(user, ent.Comp.EmagType);
+ RaiseLocalEvent(target, ref emaggedEvent);
+
+ if (!emaggedEvent.Handled)
return false;
- _popup.PopupClient(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user,
- user, PopupType.Medium);
+ _popup.PopupPredicted(Loc.GetString("emag-success", ("target", Identity.Entity(target, EntityManager))), user, user, PopupType.Medium);
- _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(user):player} emagged {ToPrettyString(target):target}");
+ _audio.PlayPredicted(ent.Comp.EmagSound, ent, ent);
- if (charges != null)
- _charges.UseCharge(uid, charges);
- return true;
+ _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(user):player} emagged {ToPrettyString(target):target} with flag(s): {ent.Comp.EmagType}");
+
+ if (charges != null && emaggedEvent.Handled)
+ _charges.UseCharge(ent, charges);
+
+ if (!emaggedEvent.Repeatable)
+ {
+ EnsureComp(target, out var emaggedComp);
+
+ emaggedComp.EmagType |= ent.Comp.EmagType;
+ Dirty(target, emaggedComp);
+ }
+
+ return emaggedEvent.Handled;
}
///
- /// Does the emag effect on a specified entity
+ /// Checks whether an entity has the EmaggedComponent with a set flag.
///
- public bool DoEmagEffect(EntityUid user, EntityUid target)
+ /// The target entity to check for the flag.
+ /// The EmagType flag to check for.
+ /// True if entity has EmaggedComponent and the provided flag. False if the entity lacks EmaggedComponent or provided flag.
+ public bool CheckFlag(EntityUid target, EmagType flag)
{
- // prevent emagging twice
- if (HasComp(target))
+ if (!TryComp(target, out var comp))
return false;
- var onAttemptEmagEvent = new OnAttemptEmagEvent(user);
- RaiseLocalEvent(target, ref onAttemptEmagEvent);
+ if ((comp.EmagType & flag) == flag)
+ return true;
- // prevent emagging if attempt fails
- if (onAttemptEmagEvent.Handled)
- return false;
+ return false;
+ }
- var emaggedEvent = new GotEmaggedEvent(user);
- RaiseLocalEvent(target, ref emaggedEvent);
+ ///
+ /// Compares a flag to the target.
+ ///
+ /// The target flag to check.
+ /// The flag to check for within the target.
+ /// True if target contains flag. Otherwise false.
+ public bool CompareFlag(EmagType target, EmagType flag)
+ {
+ if ((target & flag) == flag)
+ return true;
- if (emaggedEvent.Handled && !emaggedEvent.Repeatable)
- EnsureComp(target);
- return emaggedEvent.Handled;
+ return false;
}
}
+
+[Flags]
+[Serializable, NetSerializable]
+public enum EmagType : byte
+{
+ None = 0,
+ Interaction = 1 << 1,
+ Access = 1 << 2
+}
///
/// Shows a popup to emag user (client side only!) and adds to the entity when handled
///
/// Emag user
+/// The emag type to use
/// Did the emagging succeed? Causes a user-only popup to show on client side
/// Can the entity be emagged more than once? Prevents adding of
/// Needs to be handled in shared/client, not just the server, to actually show the emagging popup
[ByRefEvent]
-public record struct GotEmaggedEvent(EntityUid UserUid, bool Handled = false, bool Repeatable = false);
-
-[ByRefEvent]
-public record struct OnAttemptEmagEvent(EntityUid UserUid, bool Handled = false);
+public record struct GotEmaggedEvent(EntityUid UserUid, EmagType Type, bool Handled = false, bool Repeatable = false);
diff --git a/Content.Shared/Fax/Components/FaxMachineComponent.cs b/Content.Shared/Fax/Components/FaxMachineComponent.cs
index 161c878e2752..2407ba594995 100644
--- a/Content.Shared/Fax/Components/FaxMachineComponent.cs
+++ b/Content.Shared/Fax/Components/FaxMachineComponent.cs
@@ -59,12 +59,6 @@ public sealed partial class FaxMachineComponent : Component
[DataField]
public bool ReceiveNukeCodes { get; set; } = false;
- ///
- /// Sound to play when fax has been emagged
- ///
- [DataField]
- public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks");
-
///
/// Sound to play when fax printing new message
///
diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs
index 2fc234c5d003..93df31295cdd 100644
--- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs
+++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Relay.cs
@@ -1,3 +1,4 @@
+using Content.Shared.Camera;
using Content.Shared.Hands.Components;
using Content.Shared.Heretic;
using Content.Shared.Movement.Systems;
@@ -8,6 +9,8 @@ public abstract partial class SharedHandsSystem
{
private void InitializeRelay()
{
+ SubscribeLocalEvent(RelayEvent);
+ SubscribeLocalEvent(RelayEvent);
SubscribeLocalEvent(RelayEvent);
SubscribeLocalEvent(RelayEvent); // imp
}
diff --git a/Content.Shared/Holopad/HolographicAvatarComponent.cs b/Content.Shared/Holopad/HolographicAvatarComponent.cs
index be7f5bcb91fc..cff71f4fb282 100644
--- a/Content.Shared/Holopad/HolographicAvatarComponent.cs
+++ b/Content.Shared/Holopad/HolographicAvatarComponent.cs
@@ -2,12 +2,12 @@
namespace Content.Shared.Holopad;
-[RegisterComponent, NetworkedComponent]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class HolographicAvatarComponent : Component
{
///
/// The prototype sprite layer data for the hologram
///
- [DataField]
+ [DataField, AutoNetworkedField]
public PrototypeLayerData[] LayerData;
}
diff --git a/Content.Shared/Holopad/HolopadHologramComponent.cs b/Content.Shared/Holopad/HolopadHologramComponent.cs
index a75ae2762343..0b650d9b3dcf 100644
--- a/Content.Shared/Holopad/HolopadHologramComponent.cs
+++ b/Content.Shared/Holopad/HolopadHologramComponent.cs
@@ -1,4 +1,5 @@
using Robust.Shared.GameStates;
+using Robust.Shared.Serialization;
using System.Numerics;
namespace Content.Shared.Holopad;
@@ -6,7 +7,7 @@ namespace Content.Shared.Holopad;
///
/// Holds data pertaining to holopad holograms
///
-[RegisterComponent, NetworkedComponent]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
public sealed partial class HolopadHologramComponent : Component
{
///
@@ -64,8 +65,8 @@ public sealed partial class HolopadHologramComponent : Component
public Vector2 Offset = new Vector2();
///
- /// A user that are linked to this hologram
+ /// An entity that is linked to this hologram
///
- [ViewVariables]
- public Entity? LinkedHolopad;
+ [ViewVariables, AutoNetworkedField]
+ public EntityUid? LinkedEntity = null;
}
diff --git a/Content.Shared/Holopad/HolopadUserComponent.cs b/Content.Shared/Holopad/HolopadUserComponent.cs
index 9ff20c2e7b35..c9c2a8828b20 100644
--- a/Content.Shared/Holopad/HolopadUserComponent.cs
+++ b/Content.Shared/Holopad/HolopadUserComponent.cs
@@ -20,29 +20,6 @@ public sealed partial class HolopadUserComponent : Component
public HashSet> LinkedHolopads = new();
}
-///
-/// A networked event raised when the visual state of a hologram is being updated
-///
-[Serializable, NetSerializable]
-public sealed class HolopadHologramVisualsUpdateEvent : EntityEventArgs
-{
- ///
- /// The hologram being updated
- ///
- public readonly NetEntity Hologram;
-
- ///
- /// The target the hologram is copying
- ///
- public readonly NetEntity? Target;
-
- public HolopadHologramVisualsUpdateEvent(NetEntity hologram, NetEntity? target = null)
- {
- Hologram = hologram;
- Target = target;
- }
-}
-
///
/// A networked event raised when the visual state of a hologram is being updated
///
@@ -65,40 +42,3 @@ public HolopadUserTypingChangedEvent(NetEntity user, bool isTyping)
IsTyping = isTyping;
}
}
-
-///
-/// A networked event raised by the server to request the current visual state of a target player entity
-///
-[Serializable, NetSerializable]
-public sealed class PlayerSpriteStateRequest : EntityEventArgs
-{
- ///
- /// The player entity in question
- ///
- public readonly NetEntity TargetPlayer;
-
- public PlayerSpriteStateRequest(NetEntity targetPlayer)
- {
- TargetPlayer = targetPlayer;
- }
-}
-
-///
-/// The client's response to a
-///
-[Serializable, NetSerializable]
-public sealed class PlayerSpriteStateMessage : EntityEventArgs
-{
- public readonly NetEntity SpriteEntity;
-
- ///
- /// Data needed to reconstruct the player's sprite component layers
- ///
- public readonly PrototypeLayerData[]? SpriteLayerData;
-
- public PlayerSpriteStateMessage(NetEntity spriteEntity, PrototypeLayerData[]? spriteLayerData = null)
- {
- SpriteEntity = spriteEntity;
- SpriteLayerData = spriteLayerData;
- }
-}
diff --git a/Content.Shared/Implants/Components/ImplantedComponent.cs b/Content.Shared/Implants/Components/ImplantedComponent.cs
index 727213907ac5..2744d0291b8d 100644
--- a/Content.Shared/Implants/Components/ImplantedComponent.cs
+++ b/Content.Shared/Implants/Components/ImplantedComponent.cs
@@ -10,5 +10,6 @@ namespace Content.Shared.Implants.Components;
[RegisterComponent, NetworkedComponent]
public sealed partial class ImplantedComponent : Component
{
+ [ViewVariables(VVAccess.ReadOnly)]
public Container ImplantContainer = default!;
}
diff --git a/Content.Shared/Implants/Components/RadioImplantComponent.cs b/Content.Shared/Implants/Components/RadioImplantComponent.cs
new file mode 100644
index 000000000000..e0e7f556463b
--- /dev/null
+++ b/Content.Shared/Implants/Components/RadioImplantComponent.cs
@@ -0,0 +1,37 @@
+using Content.Shared.Radio;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Implants.Components;
+
+///
+/// Gives the user access to a given channel without the need for a headset.
+///
+[RegisterComponent]
+public sealed partial class RadioImplantComponent : Component
+{
+ ///
+ /// The radio channel(s) to grant access to.
+ ///
+ [DataField(required: true)]
+ public HashSet> RadioChannels = new();
+
+ ///
+ /// The radio channels that have been added by the implant to a user's ActiveRadioComponent.
+ /// Used to track which channels were successfully added (not already in user)
+ ///
+ ///
+ /// Should not be modified outside RadioImplantSystem.cs
+ ///
+ [DataField]
+ public HashSet> ActiveAddedChannels = new();
+
+ ///
+ /// The radio channels that have been added by the implant to a user's IntrinsicRadioTransmitterComponent.
+ /// Used to track which channels were successfully added (not already in user)
+ ///
+ ///
+ /// Should not be modified outside RadioImplantSystem.cs
+ ///
+ [DataField]
+ public HashSet> TransmitterAddedChannels = new();
+}
diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs
index 44803e721c0d..6f394fb932a4 100644
--- a/Content.Shared/Implants/SharedImplanterSystem.cs
+++ b/Content.Shared/Implants/SharedImplanterSystem.cs
@@ -52,7 +52,14 @@ private void OnExamine(EntityUid uid, ImplanterComponent component, ExaminedEven
args.PushMarkup(Loc.GetString("implanter-contained-implant-text", ("desc", component.ImplantData.Item2)));
}
+ public bool CheckSameImplant(EntityUid target, EntityUid implant)
+ {
+ if (!TryComp(target, out var implanted))
+ return false;
+ var implantPrototype = Prototype(implant);
+ return implanted.ImplantContainer.ContainedEntities.Any(entity => Prototype(entity) == implantPrototype);
+ }
//Instantly implant something and add all necessary components and containers.
//Set to draw mode if not implant only
public void Implant(EntityUid user, EntityUid target, EntityUid implanter, ImplanterComponent component)
@@ -60,6 +67,16 @@ public void Implant(EntityUid user, EntityUid target, EntityUid implanter, Impla
if (!CanImplant(user, target, implanter, component, out var implant, out var implantComp))
return;
+ // Check if we are trying to implant a implant which is already implanted
+ // Check AFTER the doafter to prevent "is it a fake?" metagaming against deceptive implants
+ if (!component.AllowMultipleImplants && CheckSameImplant(target, implant.Value))
+ {
+ var name = Identity.Name(target, EntityManager, user);
+ var msg = Loc.GetString("implanter-component-implant-already", ("implant", implant), ("target", name));
+ _popup.PopupEntity(msg, target, user);
+ return;
+ }
+
//If the target doesn't have the implanted component, add it.
var implantedComp = EnsureComp(target);
var implantContainer = implantedComp.ImplantContainer;
diff --git a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs
index 94203de61558..bb166b3c5cb8 100644
--- a/Content.Shared/Implants/SharedSubdermalImplantSystem.cs
+++ b/Content.Shared/Implants/SharedSubdermalImplantSystem.cs
@@ -1,4 +1,3 @@
-using System.Linq;
using Content.Shared.Actions;
using Content.Shared.Implants.Components;
using Content.Shared.Interaction;
@@ -8,6 +7,7 @@
using JetBrains.Annotations;
using Robust.Shared.Containers;
using Robust.Shared.Network;
+using System.Linq;
namespace Content.Shared.Implants;
@@ -17,6 +17,7 @@ public abstract class SharedSubdermalImplantSystem : EntitySystem
[Dependency] private readonly SharedActionsSystem _actionsSystem = default!;
[Dependency] private readonly SharedContainerSystem _container = default!;
[Dependency] private readonly TagSystem _tag = default!;
+ [Dependency] private readonly SharedTransformSystem _transformSystem = default!;
public const string BaseStorageId = "storagebase";
@@ -75,16 +76,11 @@ private void OnRemove(EntityUid uid, SubdermalImplantComponent component, EntGot
if (!_container.TryGetContainer(uid, BaseStorageId, out var storageImplant))
return;
- var entCoords = Transform(component.ImplantedEntity.Value).Coordinates;
-
var containedEntites = storageImplant.ContainedEntities.ToArray();
foreach (var entity in containedEntites)
{
- if (Terminating(entity))
- continue;
-
- _container.RemoveEntity(storageImplant.Owner, entity, force: true, destination: entCoords);
+ _transformSystem.DropNextTo(entity, uid);
}
}
diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs
index 2926e1d1b388..a88f673cac73 100644
--- a/Content.Shared/Interaction/SharedInteractionSystem.cs
+++ b/Content.Shared/Interaction/SharedInteractionSystem.cs
@@ -667,7 +667,8 @@ public bool InRangeUnobstructed(
float range = InteractionRange,
CollisionGroup collisionMask = InRangeUnobstructedMask,
Ignored? predicate = null,
- bool popup = false)
+ bool popup = false,
+ bool overlapCheck = true)
{
if (!Resolve(other, ref other.Comp))
return false;
@@ -687,7 +688,8 @@ public bool InRangeUnobstructed(
range,
collisionMask,
predicate,
- popup);
+ popup,
+ overlapCheck);
}
///
@@ -717,6 +719,7 @@ public bool InRangeUnobstructed(
///
/// True if the two points are within a given range without being obstructed.
///
+ /// If true, if the broadphase query returns an overlap (0f distance) this function will early out true with no raycast made.
public bool InRangeUnobstructed(
Entity origin,
Entity other,
@@ -725,7 +728,8 @@ public bool InRangeUnobstructed(
float range = InteractionRange,
CollisionGroup collisionMask = InRangeUnobstructedMask,
Ignored? predicate = null,
- bool popup = false)
+ bool popup = false,
+ bool overlapCheck = true)
{
Ignored combinedPredicate = e => e == origin.Owner || (predicate?.Invoke(e) ?? false);
var inRange = true;
@@ -768,7 +772,7 @@ public bool InRangeUnobstructed(
inRange = false;
}
// Overlap, early out and no raycast.
- else if (distance.Equals(0f))
+ else if (overlapCheck && distance.Equals(0f))
{
return true;
}
diff --git a/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs b/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
index 4f486fe695e7..e39fb056b4a5 100644
--- a/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
+++ b/Content.Shared/Inventory/Events/RefreshEquipmentHudEvent.cs
@@ -1,13 +1,10 @@
namespace Content.Shared.Inventory.Events;
-public sealed class RefreshEquipmentHudEvent : EntityEventArgs, IInventoryRelayEvent where T : IComponent
+[ByRefEvent]
+public record struct RefreshEquipmentHudEvent(SlotFlags TargetSlots) : IInventoryRelayEvent
+ where T : IComponent
{
- public SlotFlags TargetSlots { get; init; }
+ public SlotFlags TargetSlots { get; } = TargetSlots;
public bool Active = false;
public List Components = new();
-
- public RefreshEquipmentHudEvent(SlotFlags targetSlots)
- {
- TargetSlots = targetSlots;
- }
}
diff --git a/Content.Shared/Inventory/InventorySystem.Relay.cs b/Content.Shared/Inventory/InventorySystem.Relay.cs
index 8b166c6f3050..7ae01e591a1d 100644
--- a/Content.Shared/Inventory/InventorySystem.Relay.cs
+++ b/Content.Shared/Inventory/InventorySystem.Relay.cs
@@ -1,4 +1,3 @@
-using Content.Shared._Goobstation.Overlays;
using Content.Shared.Chat;
using Content.Shared.Chemistry;
using Content.Shared.Chemistry.Hypospray.Events;
@@ -59,15 +58,14 @@ public void InitializeRelay()
SubscribeLocalEvent(RelayInventoryEvent);
// ComponentActivatedClientSystems
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent); // goob edit
- SubscribeLocalEvent>(RelayInventoryEvent);
- SubscribeLocalEvent>(RelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
+ SubscribeLocalEvent>(RefRelayInventoryEvent);
SubscribeLocalEvent>(OnGetEquipmentVerbs);
}
diff --git a/Content.Shared/Lathe/SharedLatheSystem.cs b/Content.Shared/Lathe/SharedLatheSystem.cs
index dd251ed18b3f..7328787f25ef 100644
--- a/Content.Shared/Lathe/SharedLatheSystem.cs
+++ b/Content.Shared/Lathe/SharedLatheSystem.cs
@@ -18,6 +18,7 @@ public abstract class SharedLatheSystem : EntitySystem
{
[Dependency] private readonly IPrototypeManager _proto = default!;
[Dependency] private readonly SharedMaterialStorageSystem _materialStorage = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public readonly Dictionary> InverseRecipes = new();
@@ -66,6 +67,12 @@ public bool CanProduce(EntityUid uid, LatheRecipePrototype recipe, int amount =
private void OnEmagged(EntityUid uid, EmagLatheRecipesComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
diff --git a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
index 8754de50583e..6dc6cbfe0b32 100644
--- a/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
+++ b/Content.Shared/Light/EntitySystems/UnpoweredFlashlightSystem.cs
@@ -2,6 +2,7 @@
using Content.Shared.Emag.Systems;
using Content.Shared.Light.Components;
using Content.Shared.Mind.Components;
+using Content.Shared.Storage.Components;
using Content.Shared.Toggleable;
using Content.Shared.Verbs;
using Robust.Shared.Audio.Systems;
@@ -22,6 +23,7 @@ public sealed class UnpoweredFlashlightSystem : EntitySystem
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
[Dependency] private readonly SharedAudioSystem _audioSystem = default!;
[Dependency] private readonly SharedPointLightSystem _light = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public override void Initialize()
{
@@ -78,6 +80,9 @@ private void OnMindAdded(EntityUid uid, UnpoweredFlashlightComponent component,
private void OnGotEmagged(EntityUid uid, UnpoweredFlashlightComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
if (!_light.TryGetLight(uid, out var light))
return;
diff --git a/Content.Shared/Lock/LockComponent.cs b/Content.Shared/Lock/LockComponent.cs
index 070d5801c1c8..2689602ae8c9 100644
--- a/Content.Shared/Lock/LockComponent.cs
+++ b/Content.Shared/Lock/LockComponent.cs
@@ -54,9 +54,9 @@ public sealed partial class LockComponent : Component
///
/// Whether or not an emag disables it.
///
- [DataField("breakOnEmag")]
+ [DataField]
[AutoNetworkedField]
- public bool BreakOnEmag = true;
+ public bool BreakOnAccessBreaker = true;
///
/// Amount of do-after time needed to lock the entity.
diff --git a/Content.Shared/Lock/LockSystem.cs b/Content.Shared/Lock/LockSystem.cs
index 106528009533..0b24bc672216 100644
--- a/Content.Shared/Lock/LockSystem.cs
+++ b/Content.Shared/Lock/LockSystem.cs
@@ -28,6 +28,7 @@ public sealed class LockSystem : EntitySystem
[Dependency] private readonly AccessReaderSystem _accessReader = default!;
[Dependency] private readonly ActionBlockerSystem _actionBlocker = default!;
[Dependency] private readonly ActivatableUISystem _activatableUI = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!;
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly SharedPopupSystem _sharedPopupSystem = default!;
@@ -295,7 +296,10 @@ private void AddToggleLockVerb(EntityUid uid, LockComponent component, GetVerbsE
private void OnEmagged(EntityUid uid, LockComponent component, ref GotEmaggedEvent args)
{
- if (!component.Locked || !component.BreakOnEmag)
+ if (!_emag.CompareFlag(args.Type, EmagType.Access))
+ return;
+
+ if (!component.Locked || !component.BreakOnAccessBreaker)
return;
_audio.PlayPredicted(component.UnlockSound, uid, args.UserUid);
@@ -307,7 +311,7 @@ private void OnEmagged(EntityUid uid, LockComponent component, ref GotEmaggedEve
var ev = new LockToggledEvent(false);
RaiseLocalEvent(uid, ref ev, true);
- RemComp(uid); //Literally destroys the lock as a tell it was emagged
+ args.Repeatable = true;
args.Handled = true;
}
diff --git a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
index d143f509485c..8eb541ee5982 100644
--- a/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
+++ b/Content.Shared/Materials/SharedMaterialReclaimerSystem.cs
@@ -29,6 +29,7 @@ public abstract class SharedMaterialReclaimerSystem : EntitySystem
[Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] protected readonly SharedContainerSystem Container = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public const string ActiveReclaimerContainerId = "active-material-reclaimer-container";
@@ -60,6 +61,12 @@ private void OnExamined(EntityUid uid, MaterialReclaimerComponent component, Exa
private void OnEmagged(EntityUid uid, MaterialReclaimerComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
args.Handled = true;
}
@@ -207,7 +214,7 @@ public bool CanGib(EntityUid uid, EntityUid victim, MaterialReclaimerComponent c
component.Enabled &&
!component.Broken &&
HasComp(victim) &&
- HasComp(uid);
+ _emag.CheckFlag(uid, EmagType.Interaction);
}
///
diff --git a/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs b/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
index f6ce235ff749..891129a2ddc0 100644
--- a/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
+++ b/Content.Shared/Medical/Cryogenics/SharedCryoPodSystem.cs
@@ -20,6 +20,7 @@ public abstract partial class SharedCryoPodSystem: EntitySystem
{
[Dependency] private readonly SharedAppearanceSystem _appearanceSystem = default!;
[Dependency] private readonly StandingStateSystem _standingStateSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly MobStateSystem _mobStateSystem = default!;
[Dependency] private readonly SharedPopupSystem _popupSystem = default!;
[Dependency] private readonly SharedContainerSystem _containerSystem = default!;
@@ -156,9 +157,13 @@ protected void AddAlternativeVerbs(EntityUid uid, CryoPodComponent cryoPodCompon
protected void OnEmagged(EntityUid uid, CryoPodComponent? cryoPodComponent, ref GotEmaggedEvent args)
{
if (!Resolve(uid, ref cryoPodComponent))
- {
return;
- }
+
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (cryoPodComponent.PermaLocked && cryoPodComponent.Locked)
+ return;
cryoPodComponent.PermaLocked = true;
cryoPodComponent.Locked = true;
diff --git a/Content.Shared/Mindshield/Components/FakeMindShieldImplantComponent.cs b/Content.Shared/Mindshield/Components/FakeMindShieldImplantComponent.cs
new file mode 100644
index 000000000000..788de804f440
--- /dev/null
+++ b/Content.Shared/Mindshield/Components/FakeMindShieldImplantComponent.cs
@@ -0,0 +1,8 @@
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Mindshield.Components;
+
+[RegisterComponent, NetworkedComponent]
+public sealed partial class FakeMindShieldImplantComponent : Component
+{
+}
diff --git a/Content.Shared/Mindshield/Components/FakeMindshieldComponent.cs b/Content.Shared/Mindshield/Components/FakeMindshieldComponent.cs
new file mode 100644
index 000000000000..106f43367ee3
--- /dev/null
+++ b/Content.Shared/Mindshield/Components/FakeMindshieldComponent.cs
@@ -0,0 +1,22 @@
+using Content.Shared.StatusIcon;
+using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Mindshield.Components;
+
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
+public sealed partial class FakeMindShieldComponent : Component
+{
+
+ ///
+ /// The state of the Fake mindshield, if true the owning entity will display a mindshield effect on their job icon
+ ///
+ [DataField, AutoNetworkedField]
+ public bool IsEnabled { get; set; } = false;
+
+ ///
+ /// The Security status icon displayed to the security officer. Should be a duplicate of the one the mindshield uses since it's spoofing that
+ ///
+ [DataField, AutoNetworkedField]
+ public ProtoId MindShieldStatusIcon = "MindShieldIcon";
+}
diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs
new file mode 100644
index 000000000000..8887025e3ae3
--- /dev/null
+++ b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindShieldImplantSystem.cs
@@ -0,0 +1,36 @@
+using Content.Shared.Actions;
+using Content.Shared.Implants;
+using Content.Shared.Implants.Components;
+using Content.Shared.Mindshield.Components;
+
+namespace Content.Shared.Mindshield.FakeMindShield;
+
+public sealed class SharedFakeMindShieldImplantSystem : EntitySystem
+{
+ [Dependency] private readonly SharedActionsSystem _actionsSystem = default!;
+ public override void Initialize()
+ {
+ base.Initialize();
+ SubscribeLocalEvent(OnFakeMindShieldToggle);
+ SubscribeLocalEvent(ImplantCheck);
+ }
+ ///
+ /// Raise the Action of a Implanted user toggling their implant to the FakeMindshieldComponent on their entity
+ ///
+ private void OnFakeMindShieldToggle(Entity entity, ref FakeMindShieldToggleEvent ev)
+ {
+ ev.Handled = true;
+ if (entity.Comp.ImplantedEntity is not { } ent)
+ return;
+
+ if (!TryComp(ent, out var comp))
+ return;
+ _actionsSystem.SetToggled(ev.Action, !comp.IsEnabled); // Set it to what the Mindshield component WILL be after this
+ RaiseLocalEvent(ent, ev); //this reraises the action event to support an eventual future Changeling Antag which will also be using this component for it's "mindshield" ability
+ }
+ private void ImplantCheck(EntityUid uid, FakeMindShieldImplantComponent component ,ref ImplantImplantedEvent ev)
+ {
+ if (ev.Implanted != null)
+ EnsureComp(ev.Implanted.Value);
+ }
+}
diff --git a/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs
new file mode 100644
index 000000000000..0a7c97420011
--- /dev/null
+++ b/Content.Shared/Mindshield/FakeMindShield/SharedFakeMindshieldSystem.cs
@@ -0,0 +1,21 @@
+using Content.Shared.Actions;
+using Content.Shared.Mindshield.Components;
+
+namespace Content.Shared.Mindshield.FakeMindShield;
+
+public sealed class SharedFakeMindShieldSystem : EntitySystem
+{
+ public override void Initialize()
+ {
+ base.Initialize();
+ SubscribeLocalEvent(OnToggleMindshield);
+ }
+
+ private void OnToggleMindshield(EntityUid uid, FakeMindShieldComponent comp, FakeMindShieldToggleEvent toggleEvent)
+ {
+ comp.IsEnabled = !comp.IsEnabled;
+ Dirty(uid, comp);
+ }
+}
+
+public sealed partial class FakeMindShieldToggleEvent : InstantActionEvent;
diff --git a/Content.Shared/Mobs/Events/BeforeAlertSeverityCheckEvent.cs b/Content.Shared/Mobs/Events/BeforeAlertSeverityCheckEvent.cs
new file mode 100644
index 000000000000..e729314d39bb
--- /dev/null
+++ b/Content.Shared/Mobs/Events/BeforeAlertSeverityCheckEvent.cs
@@ -0,0 +1,16 @@
+using Content.Shared.Alert;
+using Robust.Shared.Prototypes;
+using Robust.Shared.Serialization;
+
+namespace Content.Shared.Mobs.Events;
+
+///
+/// Event for allowing the interrupting and change of the mob threshold severity alert
+///
+[Serializable, NetSerializable]
+public sealed class BeforeAlertSeverityCheckEvent(ProtoId currentAlert, short severity) : EntityEventArgs
+{
+ public bool CancelUpdate = false;
+ public ProtoId CurrentAlert = currentAlert;
+ public short Severity = severity;
+}
diff --git a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
index bdab4143c4a8..0a87b25e38ec 100644
--- a/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
+++ b/Content.Shared/Mobs/Systems/MobThresholdSystem.cs
@@ -4,6 +4,7 @@
using Content.Shared.Damage;
using Content.Shared.FixedPoint;
using Content.Shared.Mobs.Components;
+using Content.Shared.Mobs.Events;
using Robust.Shared.GameStates;
namespace Content.Shared.Mobs.Systems;
@@ -438,6 +439,16 @@ private void UpdateAlerts(EntityUid target, MobState currentMobState, MobThresho
if (alertPrototype.SupportsSeverity)
{
var severity = _alerts.GetMinSeverity(currentAlert);
+
+ var ev = new BeforeAlertSeverityCheckEvent(currentAlert, severity);
+ RaiseLocalEvent(target, ev);
+
+ if (ev.CancelUpdate)
+ {
+ _alerts.ShowAlert(target, ev.CurrentAlert, ev.Severity);
+ return;
+ }
+
if (TryGetNextState(target, currentMobState, out var nextState, threshold) &&
TryGetPercentageForState(target, nextState.Value, damageable.TotalDamage, out var percentage))
{
diff --git a/Content.Shared/Movement/Components/CursorOffsetRequiresWieldComponent.cs b/Content.Shared/Movement/Components/CursorOffsetRequiresWieldComponent.cs
new file mode 100644
index 000000000000..3f5a12874b91
--- /dev/null
+++ b/Content.Shared/Movement/Components/CursorOffsetRequiresWieldComponent.cs
@@ -0,0 +1,13 @@
+using Content.Shared.Wieldable;
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Movement.Components;
+
+///
+/// Indicates that this item requires wielding for the cursor offset effect to be active.
+///
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem))]
+public sealed partial class CursorOffsetRequiresWieldComponent : Component
+{
+
+}
diff --git a/Content.Shared/Movement/Components/EyeCursorOffsetComponent.cs b/Content.Shared/Movement/Components/EyeCursorOffsetComponent.cs
new file mode 100644
index 000000000000..e0884222f257
--- /dev/null
+++ b/Content.Shared/Movement/Components/EyeCursorOffsetComponent.cs
@@ -0,0 +1,32 @@
+using System.Numerics;
+using Content.Shared.Movement.Systems;
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Movement.Components;
+
+///
+/// Displaces SS14 eye data when given to an entity.
+///
+[ComponentProtoName("EyeCursorOffset"), NetworkedComponent]
+public abstract partial class SharedEyeCursorOffsetComponent : Component
+{
+ ///
+ /// The amount the view will be displaced when the cursor is positioned at/beyond the max offset distance.
+ /// Measured in tiles.
+ ///
+ [DataField]
+ public float MaxOffset = 3f;
+
+ ///
+ /// The speed which the camera adjusts to new positions. 0.5f seems like a good value, but can be changed if you want very slow/instant adjustments.
+ ///
+ [DataField]
+ public float OffsetSpeed = 0.5f;
+
+ ///
+ /// The amount the PVS should increase to account for the max offset.
+ /// Should be 1/10 of MaxOffset most of the time.
+ ///
+ [DataField]
+ public float PvsIncrease = 0.3f;
+}
diff --git a/Content.Shared/Movement/Components/SpeedModifiedOnWieldComponent.cs b/Content.Shared/Movement/Components/SpeedModifiedOnWieldComponent.cs
new file mode 100644
index 000000000000..01b02e60e679
--- /dev/null
+++ b/Content.Shared/Movement/Components/SpeedModifiedOnWieldComponent.cs
@@ -0,0 +1,23 @@
+using Content.Shared.Wieldable;
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.Movement.Components;
+
+///
+/// Modifies the speed when an entity with this component is wielded.
+///
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem)), AutoGenerateComponentState]
+public sealed partial class SpeedModifiedOnWieldComponent : Component
+{
+ ///
+ /// How much the wielder's sprint speed is modified when the component owner is wielded.
+ ///
+ [DataField, AutoNetworkedField]
+ public float SprintModifier = 1f;
+
+ ///
+ /// How much the wielder's walk speed is modified when the component owner is wielded.
+ ///
+ [DataField, AutoNetworkedField]
+ public float WalkModifier = 1f;
+}
diff --git a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
index faade44c8587..71bc65a79ea0 100644
--- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
+++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs
@@ -140,11 +140,29 @@ public void SetMaxZoom(EntityUid uid, Vector2 value, ContentEyeComponent? compon
Dirty(uid, component);
}
- public void UpdateEyeOffset(Entity eye)
+ public void UpdateEyeOffset(Entity eye)
{
var ev = new GetEyeOffsetEvent();
RaiseLocalEvent(eye, ref ev);
- _eye.SetOffset(eye, ev.Offset, eye);
+
+ var evRelayed = new GetEyeOffsetRelayedEvent();
+ RaiseLocalEvent(eye, ref evRelayed);
+
+ _eye.SetOffset(eye, ev.Offset + evRelayed.Offset, eye);
+ }
+
+ public void UpdatePvsScale(EntityUid uid, ContentEyeComponent? contentEye = null, EyeComponent? eye = null)
+ {
+ if (!Resolve(uid, ref contentEye) || !Resolve(uid, ref eye))
+ return;
+
+ var ev = new GetEyePvsScaleEvent();
+ RaiseLocalEvent(uid, ref ev);
+
+ var evRelayed = new GetEyePvsScaleRelayedEvent();
+ RaiseLocalEvent(uid, ref evRelayed);
+
+ _eye.SetPvsScale((uid, eye), 1 + ev.Scale + evRelayed.Scale);
}
///
diff --git a/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs b/Content.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs
similarity index 78%
rename from Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs
rename to Content.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs
index 0bc5dce55b9f..b79c4dd9ef05 100644
--- a/Content.Server/NPC/Components/NPCRecentlyInjectedComponent.cs
+++ b/Content.Shared/NPC/Components/NPCRecentlyInjectedComponent.cs
@@ -1,8 +1,10 @@
-namespace Content.Server.NPC.Components
+using Robust.Shared.GameStates;
+
+namespace Content.Shared.NPC.Components
{
/// Added when a medibot injects someone
/// So they don't get injected again for at least a minute.
- [RegisterComponent]
+ [RegisterComponent, NetworkedComponent]
public sealed partial class NPCRecentlyInjectedComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("accumulator")]
diff --git a/Content.Shared/Ninja/Components/EmagProviderComponent.cs b/Content.Shared/Ninja/Components/EmagProviderComponent.cs
index ae3e85cbe42a..630ce12d53ce 100644
--- a/Content.Shared/Ninja/Components/EmagProviderComponent.cs
+++ b/Content.Shared/Ninja/Components/EmagProviderComponent.cs
@@ -1,6 +1,8 @@
+using Content.Shared.Emag.Systems;
using Content.Shared.Ninja.Systems;
using Content.Shared.Tag;
using Content.Shared.Whitelist;
+using Robust.Shared.Audio;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
@@ -17,11 +19,23 @@ public sealed partial class EmagProviderComponent : Component
/// The tag that marks an entity as immune to emagging.
///
[DataField]
- public ProtoId EmagImmuneTag = "EmagImmune";
+ public ProtoId AccessBreakerImmuneTag = "AccessBreakerImmune";
///
/// Whitelist that entities must be on to work.
///
[DataField]
public EntityWhitelist? Whitelist;
+
+ ///
+ /// What type of emag this will provide.
+ ///
+ [DataField]
+ public EmagType EmagType = EmagType.Access;
+
+ ///
+ /// What sound should the emag play when used
+ ///
+ [DataField]
+ public SoundSpecifier EmagSound = new SoundCollectionSpecifier("sparks");
}
diff --git a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
index ae0bacaf5f65..3be2ae52e130 100644
--- a/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
+++ b/Content.Shared/Ninja/Systems/EmagProviderSystem.cs
@@ -5,6 +5,7 @@
using Content.Shared.Ninja.Components;
using Content.Shared.Tag;
using Content.Shared.Whitelist;
+using Robust.Shared.Audio.Systems;
namespace Content.Shared.Ninja.Systems;
@@ -13,6 +14,7 @@ namespace Content.Shared.Ninja.Systems;
///
public sealed class EmagProviderSystem : EntitySystem
{
+ [Dependency] private readonly SharedAudioSystem _audio = default!;
[Dependency] private readonly EmagSystem _emag = default!;
[Dependency] private readonly EntityWhitelistSystem _whitelist = default!;
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
@@ -42,14 +44,18 @@ private void OnBeforeInteractHand(Entity ent, ref BeforeI
return;
// only allowed to emag non-immune entities
- if (_tag.HasTag(target, comp.EmagImmuneTag))
+ if (_tag.HasTag(target, comp.AccessBreakerImmuneTag))
return;
- var handled = _emag.DoEmagEffect(uid, target);
- if (!handled)
+ var emagEv = new GotEmaggedEvent(uid, EmagType.Access);
+ RaiseLocalEvent(args.Target, ref emagEv);
+
+ if (!emagEv.Handled)
return;
- _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(uid):player} emagged {ToPrettyString(target):target}");
+ _audio.PlayPredicted(comp.EmagSound, uid, uid);
+
+ _adminLogger.Add(LogType.Emag, LogImpact.High, $"{ToPrettyString(uid):player} emagged {ToPrettyString(target):target} with flag(s): {ent.Comp.EmagType}");
var ev = new EmaggedSomethingEvent(target);
RaiseLocalEvent(uid, ref ev);
args.Handled = true;
@@ -57,7 +63,7 @@ private void OnBeforeInteractHand(Entity ent, ref BeforeI
}
///
-/// Raised on the player when emagging something.
+/// Raised on the player when access breaking something.
///
[ByRefEvent]
public record struct EmaggedSomethingEvent(EntityUid Target);
diff --git a/Content.Shared/Pinpointer/SharedPinpointerSystem.cs b/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
index 7f6b88912559..471096018356 100644
--- a/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
+++ b/Content.Shared/Pinpointer/SharedPinpointerSystem.cs
@@ -10,6 +10,7 @@ namespace Content.Shared.Pinpointer;
public abstract class SharedPinpointerSystem : EntitySystem
{
[Dependency] private readonly ISharedAdminLogManager _adminLogger = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public override void Initialize()
{
@@ -137,6 +138,15 @@ public virtual bool TogglePinpointer(EntityUid uid, PinpointerComponent? pinpoin
private void OnEmagged(EntityUid uid, PinpointerComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ if (component.CanRetarget)
+ return;
+
args.Handled = true;
component.CanRetarget = true;
}
diff --git a/Content.Shared/Projectiles/ProjectileComponent.cs b/Content.Shared/Projectiles/ProjectileComponent.cs
index 8349252df2b7..9eee3767a6da 100644
--- a/Content.Shared/Projectiles/ProjectileComponent.cs
+++ b/Content.Shared/Projectiles/ProjectileComponent.cs
@@ -1,4 +1,5 @@
using Content.Shared.Damage;
+using Content.Shared.FixedPoint;
using Robust.Shared.Audio;
using Robust.Shared.GameStates;
using Robust.Shared.Prototypes;
@@ -75,8 +76,26 @@ public sealed partial class ProjectileComponent : Component
public bool OnlyCollideWhenShot = false;
///
- /// Whether this projectile has already damaged an entity.
+ /// If true, the projectile has hit enough targets and should no longer interact with further collisions pending deletion.
///
[DataField]
- public bool DamagedEntity;
+ public bool ProjectileSpent;
+
+ ///
+ /// When a projectile has this threshold set, it will continue to penetrate entities until the damage dealt reaches this threshold.
+ ///
+ [DataField]
+ public FixedPoint2 PenetrationThreshold = FixedPoint2.Zero;
+
+ ///
+ /// If set, the projectile will not penetrate objects that lack the ability to take these damage types.
+ ///
+ [DataField]
+ public List? PenetrationDamageTypeRequirement;
+
+ ///
+ /// Tracks the amount of damage dealt for penetration purposes.
+ ///
+ [DataField]
+ public FixedPoint2 PenetrationAmount = FixedPoint2.Zero;
}
diff --git a/Content.Shared/Projectiles/SharedProjectileSystem.cs b/Content.Shared/Projectiles/SharedProjectileSystem.cs
index b0c8758c44a6..cce8b3c45d01 100644
--- a/Content.Shared/Projectiles/SharedProjectileSystem.cs
+++ b/Content.Shared/Projectiles/SharedProjectileSystem.cs
@@ -154,7 +154,7 @@ public void RemoveEmbed(EntityUid uid, EmbeddableProjectileComponent component,
{
projectile.Shooter = null;
projectile.Weapon = null;
- projectile.DamagedEntity = false;
+ projectile.ProjectileSpent = false;
}
// Land it just coz uhhh yeah
diff --git a/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs b/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs
index ee35304e2af7..3112e1eb471e 100644
--- a/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs
+++ b/Content.Shared/Radiation/Events/OnIrradiatedEvent.cs
@@ -4,17 +4,11 @@
/// Raised on entity when it was irradiated
/// by some radiation source.
///
-public sealed class OnIrradiatedEvent : EntityEventArgs
+public readonly record struct OnIrradiatedEvent(float FrameTime, float RadsPerSecond)
{
- public readonly float FrameTime;
+ public readonly float FrameTime = FrameTime;
- public readonly float RadsPerSecond;
+ public readonly float RadsPerSecond = RadsPerSecond;
public float TotalRads => RadsPerSecond * FrameTime;
-
- public OnIrradiatedEvent(float frameTime, float radsPerSecond)
- {
- FrameTime = frameTime;
- RadsPerSecond = radsPerSecond;
- }
}
diff --git a/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs b/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs
index a93ca4c616b0..e42d13ffb7b2 100644
--- a/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs
+++ b/Content.Shared/Radiation/Events/OnRadiationOverlayUpdateEvent.cs
@@ -13,36 +13,33 @@ namespace Content.Shared.Radiation.Events;
/// Will be sent only to clients that activated radiation view using console command.
///
[Serializable, NetSerializable]
-public sealed class OnRadiationOverlayUpdateEvent : EntityEventArgs
+public sealed class OnRadiationOverlayUpdateEvent(
+ double elapsedTimeMs,
+ int sourcesCount,
+ int receiversCount,
+ List rays)
+ : EntityEventArgs
{
///
/// Total time in milliseconds that server took to do radiation processing.
/// Exclude time of entities reacting to .
///
- public readonly double ElapsedTimeMs;
+ public readonly double ElapsedTimeMs = elapsedTimeMs;
///
/// Total count of entities with on all maps.
///
- public readonly int SourcesCount;
+ public readonly int SourcesCount = sourcesCount;
///
/// Total count of entities with radiation receiver on all maps.
///
- public readonly int ReceiversCount;
+ public readonly int ReceiversCount = receiversCount;
///
/// All radiation rays that was processed by radiation system.
///
- public readonly List Rays;
-
- public OnRadiationOverlayUpdateEvent(double elapsedTimeMs, int sourcesCount, int receiversCount, List rays)
- {
- ElapsedTimeMs = elapsedTimeMs;
- SourcesCount = sourcesCount;
- ReceiversCount = receiversCount;
- Rays = rays;
- }
+ public readonly List Rays = rays;
}
///
diff --git a/Content.Shared/Radiation/RadiationRay.cs b/Content.Shared/Radiation/RadiationRay.cs
index ca8ab5af661d..9f8b9596943a 100644
--- a/Content.Shared/Radiation/RadiationRay.cs
+++ b/Content.Shared/Radiation/RadiationRay.cs
@@ -9,33 +9,38 @@ namespace Content.Shared.Radiation.Systems;
/// Ray emitted by radiation source towards radiation receiver.
/// Contains all information about encountered radiation blockers.
///
-[Serializable, NetSerializable]
-public sealed class RadiationRay
+public struct RadiationRay(
+ MapId mapId,
+ EntityUid sourceUid,
+ Vector2 source,
+ EntityUid destinationUid,
+ Vector2 destination,
+ float rads)
{
///
/// Map on which source and receiver are placed.
///
- public MapId MapId;
+ public MapId MapId = mapId;
///
/// Uid of entity with .
///
- public NetEntity SourceUid;
+ public EntityUid SourceUid = sourceUid;
///
/// World coordinates of radiation source.
///
- public Vector2 Source;
+ public Vector2 Source = source;
///
/// Uid of entity with radiation receiver component.
///
- public NetEntity DestinationUid;
+ public EntityUid DestinationUid = destinationUid;
///
/// World coordinates of radiation receiver.
///
- public Vector2 Destination;
+ public Vector2 Destination = destination;
///
/// How many rads intensity reached radiation receiver.
///
- public float Rads;
+ public float Rads = rads;
///
/// Has rad ray reached destination or lost all intensity after blockers?
@@ -43,23 +48,27 @@ public sealed class RadiationRay
public bool ReachedDestination => Rads > 0;
///
- /// All blockers visited by gridcast. Key is uid of grid. Values are pairs
+ /// All blockers visited by gridcast, used for debug overlays. Key is uid of grid. Values are pairs
/// of tile indices and floats with updated radiation value.
///
///
/// Last tile may have negative value if ray has lost all intensity.
/// Grid traversal order isn't guaranteed.
///
- public Dictionary> Blockers = new();
+ public Dictionary>? Blockers;
+
+}
- public RadiationRay(MapId mapId, NetEntity sourceUid, Vector2 source,
- NetEntity destinationUid, Vector2 destination, float rads)
- {
- MapId = mapId;
- SourceUid = sourceUid;
- Source = source;
- DestinationUid = destinationUid;
- Destination = destination;
- Rads = rads;
- }
+// Variant of RadiationRay that uses NetEntities.
+[Serializable, NetSerializable]
+public readonly record struct DebugRadiationRay(
+ MapId MapId,
+ NetEntity SourceUid,
+ Vector2 Source,
+ NetEntity DestinationUid,
+ Vector2 Destination,
+ float Rads,
+ Dictionary> Blockers)
+{
+ public bool ReachedDestination => Rads > 0;
}
diff --git a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
index e75a18f011da..f096cfcb420f 100644
--- a/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
+++ b/Content.Shared/Roles/JobRequirement/RoleTimeRequirement.cs
@@ -40,13 +40,16 @@ public override bool Check(IEntityManager entManager,
var formattedRoleDiff = ContentLocalizationManager.FormatPlaytime(roleDiffSpan);
var departmentColor = Color.Yellow;
- if (entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem))
- {
- var jobProto = jobSystem.GetJobPrototype(proto);
+ if (!entManager.EntitySysManager.TryGetEntitySystem(out SharedJobSystem? jobSystem))
+ return false;
- if (jobSystem.TryGetDepartment(jobProto, out var departmentProto))
- departmentColor = departmentProto.Color;
- }
+ var jobProto = jobSystem.GetJobPrototype(proto);
+
+ if (jobSystem.TryGetDepartment(jobProto, out var departmentProto))
+ departmentColor = departmentProto.Color;
+
+ if (!protoManager.TryIndex(jobProto, out var indexedJob))
+ return false;
if (!Inverted)
{
@@ -56,7 +59,7 @@ public override bool Check(IEntityManager entManager,
reason = FormattedMessage.FromMarkupPermissive(Loc.GetString(
"role-timer-role-insufficient",
("time", formattedRoleDiff),
- ("job", Loc.GetString(proto)),
+ ("job", indexedJob.LocalizedName),
("departmentColor", departmentColor.ToHex())));
return false;
}
@@ -66,7 +69,7 @@ public override bool Check(IEntityManager entManager,
reason = FormattedMessage.FromMarkupPermissive(Loc.GetString(
"role-timer-role-too-high",
("time", formattedRoleDiff),
- ("job", Loc.GetString(proto)),
+ ("job", indexedJob.LocalizedName),
("departmentColor", departmentColor.ToHex())));
return false;
}
diff --git a/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs b/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
index 73775aaf91ac..0253cf12bc06 100644
--- a/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
+++ b/Content.Shared/Silicons/Bots/EmaggableMedibotComponent.cs
@@ -16,13 +16,4 @@ public sealed partial class EmaggableMedibotComponent : Component
///
[DataField(required: true), ViewVariables(VVAccess.ReadWrite)]
public Dictionary Replacements = new();
-
- ///
- /// Sound to play when the bot has been emagged
- ///
- [DataField]
- public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks")
- {
- Params = AudioParams.Default.WithVolume(8f)
- };
}
diff --git a/Content.Shared/Silicons/Bots/MedibotSystem.cs b/Content.Shared/Silicons/Bots/MedibotSystem.cs
index 3ab73149c08e..407e586eb1c8 100644
--- a/Content.Shared/Silicons/Bots/MedibotSystem.cs
+++ b/Content.Shared/Silicons/Bots/MedibotSystem.cs
@@ -1,6 +1,15 @@
+using Content.Shared.Chemistry.EntitySystems;
+using Content.Shared.Damage;
+using Content.Shared.DoAfter;
+using Content.Shared.Emag.Components;
using Content.Shared.Emag.Systems;
+using Content.Shared.Interaction;
using Content.Shared.Mobs;
+using Content.Shared.Mobs.Components;
+using Content.Shared.NPC.Components;
+using Content.Shared.Popups;
using Robust.Shared.Audio.Systems;
+using Robust.Shared.Serialization;
using System.Diagnostics.CodeAnalysis;
namespace Content.Shared.Silicons.Bots;
@@ -11,20 +20,31 @@ namespace Content.Shared.Silicons.Bots;
public sealed class MedibotSystem : EntitySystem
{
[Dependency] private readonly SharedAudioSystem _audio = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
+ [Dependency] private SharedInteractionSystem _interaction = default!;
+ [Dependency] private SharedSolutionContainerSystem _solutionContainer = default!;
+ [Dependency] private SharedPopupSystem _popup = default!;
+ [Dependency] private SharedDoAfterSystem _doAfter = default!;
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnEmagged);
+ SubscribeLocalEvent(OnInteract);
+ SubscribeLocalEvent(OnInject);
}
private void OnEmagged(EntityUid uid, EmaggableMedibotComponent comp, ref GotEmaggedEvent args)
{
- if (!TryComp(uid, out var medibot))
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
return;
- _audio.PlayPredicted(comp.SparkSound, uid, args.UserUid);
+ if (!TryComp(uid, out var medibot))
+ return;
foreach (var (state, treatment) in comp.Replacements)
{
@@ -34,6 +54,25 @@ private void OnEmagged(EntityUid uid, EmaggableMedibotComponent comp, ref GotEma
args.Handled = true;
}
+ private void OnInteract(Entity medibot, ref UserActivateInWorldEvent args)
+ {
+ if (!CheckInjectable(medibot!, args.Target, true)) return;
+
+ _doAfter.TryStartDoAfter(new DoAfterArgs(EntityManager, args.User, 2f, new MedibotInjectDoAfterEvent(), args.User, args.Target)
+ {
+ BlockDuplicate = true,
+ BreakOnMove = true,
+ });
+ }
+
+ private void OnInject(EntityUid uid, MedibotComponent comp, ref MedibotInjectDoAfterEvent args)
+ {
+ if (args.Cancelled) return;
+
+ if (args.Target is { } target)
+ TryInject(uid, target);
+ }
+
///
/// Get a treatment for a given mob state.
///
@@ -44,4 +83,66 @@ public bool TryGetTreatment(MedibotComponent comp, MobState state, [NotNullWhen(
{
return comp.Treatments.TryGetValue(state, out treatment);
}
+
+ ///
+ /// Checks if the target can be injected.
+ ///
+ public bool CheckInjectable(Entity medibot, EntityUid target, bool manual = false)
+ {
+ if (!Resolve(medibot, ref medibot.Comp, false)) return false;
+
+ if (HasComp(target))
+ {
+ _popup.PopupClient(Loc.GetString("medibot-recently-injected"), medibot, medibot);
+ return false;
+ }
+
+ if (!TryComp(target, out var mobState)) return false;
+ if (!TryComp(target, out var damageable)) return false;
+ if (!_solutionContainer.TryGetInjectableSolution(target, out _, out _)) return false;
+
+ if (mobState.CurrentState != MobState.Alive && mobState.CurrentState != MobState.Critical)
+ {
+ _popup.PopupClient(Loc.GetString("medibot-target-dead"), medibot, medibot);
+ return false;
+ }
+
+ var total = damageable.TotalDamage;
+ if (total == 0 && !HasComp(medibot))
+ {
+ _popup.PopupClient(Loc.GetString("medibot-target-healthy"), medibot, medibot);
+ return false;
+ }
+
+ if (!TryGetTreatment(medibot.Comp, mobState.CurrentState, out var treatment) || !treatment.IsValid(total) && !manual) return false;
+
+ return true;
+ }
+
+ ///
+ /// Tries to inject the target.
+ ///
+ public bool TryInject(Entity medibot, EntityUid target)
+ {
+ if (!Resolve(medibot, ref medibot.Comp, false)) return false;
+
+ if (!_interaction.InRangeUnobstructed(medibot.Owner, target)) return false;
+
+ if (!TryComp(target, out var mobState)) return false;
+ if (!TryGetTreatment(medibot.Comp, mobState.CurrentState, out var treatment)) return false;
+ if (!_solutionContainer.TryGetInjectableSolution(target, out var injectable, out _)) return false;
+
+ EnsureComp(target);
+ _solutionContainer.TryAddReagent(injectable.Value, treatment.Reagent, treatment.Quantity, out _);
+
+ _popup.PopupEntity(Loc.GetString("hypospray-component-feel-prick-message"), target, target);
+ _popup.PopupClient(Loc.GetString("medibot-target-injected"), medibot, medibot);
+
+ _audio.PlayPredicted(medibot.Comp.InjectSound, medibot, medibot);
+
+ return true;
+ }
}
+
+[Serializable, NetSerializable]
+public sealed partial class MedibotInjectDoAfterEvent : SimpleDoAfterEvent { }
diff --git a/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs b/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs
index 66f61e8064f9..2750011238da 100644
--- a/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs
+++ b/Content.Shared/Silicons/Laws/SharedSiliconLawSystem.cs
@@ -1,7 +1,10 @@
using Content.Shared.Emag.Systems;
+using Content.Shared.Mind;
using Content.Shared.Popups;
using Content.Shared.Silicons.Laws.Components;
+using Content.Shared.Stunnable;
using Content.Shared.Wires;
+using Robust.Shared.Audio;
namespace Content.Shared.Silicons.Laws;
@@ -11,23 +14,29 @@ namespace Content.Shared.Silicons.Laws;
public abstract partial class SharedSiliconLawSystem : EntitySystem
{
[Dependency] private readonly SharedPopupSystem _popup = default!;
+ [Dependency] private readonly SharedStunSystem _stunSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
+ [Dependency] private readonly SharedMindSystem _mind = default!;
///
public override void Initialize()
{
InitializeUpdater();
SubscribeLocalEvent(OnGotEmagged);
- SubscribeLocalEvent(OnAttemptEmag);
- SubscribeLocalEvent(OnAttemptEmag);
}
- protected virtual void OnAttemptEmag(EntityUid uid, EmagSiliconLawComponent component, ref OnAttemptEmagEvent args)
+ private void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args)
{
- //prevent self emagging
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ // prevent self-emagging
if (uid == args.UserUid)
{
_popup.PopupClient(Loc.GetString("law-emag-cannot-emag-self"), uid, args.UserUid);
- args.Handled = true;
return;
}
@@ -36,20 +45,33 @@ protected virtual void OnAttemptEmag(EntityUid uid, EmagSiliconLawComponent comp
!panel.Open)
{
_popup.PopupClient(Loc.GetString("law-emag-require-panel"), uid, args.UserUid);
- args.Handled = true;
+ return;
}
- }
+ var ev = new SiliconEmaggedEvent(args.UserUid);
+ RaiseLocalEvent(uid, ref ev);
- protected virtual void OnGotEmagged(EntityUid uid, EmagSiliconLawComponent component, ref GotEmaggedEvent args)
- {
component.OwnerName = Name(args.UserUid);
+
+ NotifyLawsChanged(uid, component.EmaggedSound);
+ if (_mind.TryGetMind(uid, out var mindId, out _))
+ EnsureSubvertedSiliconRole(mindId);
+
+ _stunSystem.TryParalyze(uid, component.StunTime, true);
+
args.Handled = true;
}
- protected virtual void OnAttemptEmag(EntityUid uid, SiliconLawProviderComponent component, ref OnAttemptEmagEvent args) ///imp special
+ protected virtual void NotifyLawsChanged(EntityUid uid, SoundSpecifier? cue = null)
+ {
+
+ }
+
+ protected virtual void EnsureSubvertedSiliconRole(EntityUid mindId)
{
- if (component.CanBeSubverted == false)
- args.Handled = true;
+
}
}
+
+[ByRefEvent]
+public record struct SiliconEmaggedEvent(EntityUid user);
diff --git a/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs b/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs
index ee6dc89bb847..331c1fa4ddb6 100644
--- a/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs
+++ b/Content.Shared/Singularity/EntitySystems/SharedSingularityGeneratorSystem.cs
@@ -11,6 +11,7 @@ public abstract class SharedSingularityGeneratorSystem : EntitySystem
{
#region Dependencies
[Dependency] protected readonly SharedPopupSystem PopupSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
#endregion Dependencies
public override void Initialize()
@@ -22,7 +23,16 @@ public override void Initialize()
private void OnEmagged(EntityUid uid, SingularityGeneratorComponent component, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ if (component.FailsafeDisabled)
+ return;
+
component.FailsafeDisabled = true;
args.Handled = true;
}
-}
\ No newline at end of file
+}
diff --git a/Content.Shared/Standing/StandingStateSystem.cs b/Content.Shared/Standing/StandingStateSystem.cs
index b2b35f2c69c4..3e622945a9bc 100644
--- a/Content.Shared/Standing/StandingStateSystem.cs
+++ b/Content.Shared/Standing/StandingStateSystem.cs
@@ -39,7 +39,7 @@ public bool Down(EntityUid uid,
StandingStateComponent? standingState = null,
AppearanceComponent? appearance = null,
HandsComponent? hands = null,
- bool intentional = true)
+ bool intentional = false)
{
// TODO: This should actually log missing comps...
if (!Resolve(uid, ref standingState, false))
diff --git a/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs b/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs
new file mode 100644
index 000000000000..9ae72c628673
--- /dev/null
+++ b/Content.Shared/Traits/Assorted/PainNumbnessComponent.cs
@@ -0,0 +1,16 @@
+using Content.Shared.Dataset;
+using Robust.Shared.GameStates;
+using Robust.Shared.Prototypes;
+
+namespace Content.Shared.Traits.Assorted;
+
+[RegisterComponent, NetworkedComponent]
+public sealed partial class PainNumbnessComponent : Component
+{
+ ///
+ /// The fluent string prefix to use when picking a random suffix
+ /// This is only active for those who have the pain numbness component
+ ///
+ [DataField]
+ public ProtoId ForceSayNumbDataset = "ForceSayNumbDataset";
+}
diff --git a/Content.Shared/Traits/Assorted/PainNumbnessSystem.cs b/Content.Shared/Traits/Assorted/PainNumbnessSystem.cs
new file mode 100644
index 000000000000..3ded13300d98
--- /dev/null
+++ b/Content.Shared/Traits/Assorted/PainNumbnessSystem.cs
@@ -0,0 +1,46 @@
+using Content.Shared.Damage.Events;
+using Content.Shared.Mobs.Components;
+using Content.Shared.Mobs.Events;
+using Content.Shared.Mobs.Systems;
+
+namespace Content.Shared.Traits.Assorted;
+
+public sealed class PainNumbnessSystem : EntitySystem
+{
+ [Dependency] private readonly MobThresholdSystem _mobThresholdSystem = default!;
+
+ public override void Initialize()
+ {
+ SubscribeLocalEvent(OnComponentInit);
+ SubscribeLocalEvent(OnComponentRemove);
+ SubscribeLocalEvent(OnChangeForceSay);
+ SubscribeLocalEvent(OnAlertSeverityCheck);
+ }
+
+ private void OnComponentRemove(EntityUid uid, PainNumbnessComponent component, ComponentRemove args)
+ {
+ if (!HasComp(uid))
+ return;
+
+ _mobThresholdSystem.VerifyThresholds(uid);
+ }
+
+ private void OnComponentInit(EntityUid uid, PainNumbnessComponent component, ComponentInit args)
+ {
+ if (!HasComp(uid))
+ return;
+
+ _mobThresholdSystem.VerifyThresholds(uid);
+ }
+
+ private void OnChangeForceSay(Entity ent, ref BeforeForceSayEvent args)
+ {
+ args.Prefix = ent.Comp.ForceSayNumbDataset;
+ }
+
+ private void OnAlertSeverityCheck(Entity ent, ref BeforeAlertSeverityCheckEvent args)
+ {
+ if (args.CurrentAlert == "HumanHealth")
+ args.CancelUpdate = true;
+ }
+}
diff --git a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
index 94562ce8d1bf..c4f3eede2d29 100644
--- a/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
+++ b/Content.Shared/VendingMachines/SharedVendingMachineSystem.cs
@@ -2,6 +2,7 @@
using Robust.Shared.Prototypes;
using System.Linq;
using Content.Shared.DoAfter;
+using Content.Shared.Emag.Systems;
using Content.Shared.Interaction;
using Content.Shared.Popups;
using Robust.Shared.Audio;
@@ -19,11 +20,14 @@ public abstract partial class SharedVendingMachineSystem : EntitySystem
[Dependency] private readonly SharedDoAfterSystem _doAfter = default!;
[Dependency] protected readonly SharedPopupSystem Popup = default!;
[Dependency] protected readonly IRobustRandom Randomizer = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
public override void Initialize()
{
base.Initialize();
SubscribeLocalEvent(OnMapInit);
+ SubscribeLocalEvent(OnEmagged);
+
SubscribeLocalEvent(OnAfterInteract);
}
@@ -49,9 +53,21 @@ public void RestockInventoryFromPrototype(EntityUid uid,
Dirty(uid, component);
}
+ private void OnEmagged(EntityUid uid, VendingMachineComponent component, ref GotEmaggedEvent args)
+ {
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ // only emag if there are emag-only items
+ args.Handled = component.EmaggedInventory.Count > 0;
+ }
+
///
/// Returns all of the vending machine's inventory. Only includes emagged and contraband inventories if
- /// exists and is true
+ /// with the EmagType.Interaction flag exists and is true
/// are true respectively.
///
///
@@ -64,7 +80,7 @@ public List GetAllInventory(EntityUid uid, Vending
var inventory = new List(component.Inventory.Values);
- if (HasComp(uid))
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
inventory.AddRange(component.EmaggedInventory.Values);
if (component.Contraband)
diff --git a/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs b/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs
index b322bbe51bce..ffa78ba42a20 100644
--- a/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs
+++ b/Content.Shared/Weapons/Melee/Components/MeleeRequiresWieldComponent.cs
@@ -6,7 +6,7 @@ namespace Content.Shared.Weapons.Melee.Components;
///
/// Indicates that this meleeweapon requires wielding to be useable.
///
-[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem))]
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem))]
public sealed partial class MeleeRequiresWieldComponent : Component
{
diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs
index 2f0bb500a44b..8452130a6bbb 100644
--- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs
+++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs
@@ -731,7 +731,13 @@ protected HashSet ArcRayCast(Vector2 position, Angle angle, Angle arc
if (res.Count != 0)
{
- resSet.Add(res[0].HitEntity);
+ // If there's exact distance overlap, we simply have to deal with all overlapping objects to avoid selecting randomly.
+ var resChecked = res.Where(x => x.Distance.Equals(res[0].Distance));
+ foreach (var r in resChecked)
+ {
+ if (Interaction.InRangeUnobstructed(ignore, r.HitEntity, range + 0.1f, overlapCheck: false))
+ resSet.Add(r.HitEntity);
+ }
}
}
diff --git a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
index 2016459b9d59..d5016c90e725 100644
--- a/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
+++ b/Content.Shared/Weapons/Ranged/Components/GunRequiresWieldComponent.cs
@@ -7,7 +7,7 @@ namespace Content.Shared.Weapons.Ranged.Components;
/// Indicates that this gun requires wielding to be useable.
///
[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
-[Access(typeof(WieldableSystem))]
+[Access(typeof(SharedWieldableSystem))]
public sealed partial class GunRequiresWieldComponent : Component
{
[DataField, AutoNetworkedField]
diff --git a/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs b/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs
index 522319ccbd33..bd2e9d4dd1e5 100644
--- a/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs
+++ b/Content.Shared/Weapons/Ranged/Components/GunWieldBonusComponent.cs
@@ -6,7 +6,7 @@ namespace Content.Shared.Weapons.Ranged.Components;
///
/// Applies an accuracy bonus upon wielding.
///
-[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(WieldableSystem))]
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState, Access(typeof(SharedWieldableSystem))]
public sealed partial class GunWieldBonusComponent : Component
{
[ViewVariables(VVAccess.ReadWrite), DataField("minAngle"), AutoNetworkedField]
diff --git a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs
index 14e33a096680..d794118727cf 100644
--- a/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs
+++ b/Content.Shared/Weapons/Ranged/Systems/SharedGunSystem.cs
@@ -516,7 +516,7 @@ protected void MuzzleFlash(EntityUid gun, AmmoComponent component, Angle worldAn
return;
var ev = new MuzzleFlashEvent(GetNetEntity(gun), sprite, worldAngle);
- CreateEffect(gun, ev, gun);
+ CreateEffect(gun, ev, user);
}
public void CauseImpulse(EntityCoordinates fromCoordinates, EntityCoordinates toCoordinates, EntityUid user, PhysicsComponent userPhysics)
diff --git a/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs b/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
index 3336923b024c..86afe1897b05 100644
--- a/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
+++ b/Content.Shared/Wieldable/Components/IncreaseDamageOnWieldComponent.cs
@@ -2,7 +2,7 @@
namespace Content.Shared.Wieldable.Components;
-[RegisterComponent, Access(typeof(WieldableSystem))]
+[RegisterComponent, Access(typeof(SharedWieldableSystem))]
public sealed partial class IncreaseDamageOnWieldComponent : Component
{
[DataField("damage", required: true)]
diff --git a/Content.Shared/Wieldable/Components/WieldableComponent.cs b/Content.Shared/Wieldable/Components/WieldableComponent.cs
index 5dc6abbbbea5..c146940b7a2c 100644
--- a/Content.Shared/Wieldable/Components/WieldableComponent.cs
+++ b/Content.Shared/Wieldable/Components/WieldableComponent.cs
@@ -7,7 +7,7 @@ namespace Content.Shared.Wieldable.Components;
///
/// Used for objects that can be wielded in two or more hands,
///
-[RegisterComponent, NetworkedComponent, Access(typeof(WieldableSystem)), AutoGenerateComponentState]
+[RegisterComponent, NetworkedComponent, Access(typeof(SharedWieldableSystem)), AutoGenerateComponentState]
public sealed partial class WieldableComponent : Component
{
[DataField("wieldSound")]
diff --git a/Content.Shared/Wieldable/WieldableSystem.cs b/Content.Shared/Wieldable/SharedWieldableSystem.cs
similarity index 89%
rename from Content.Shared/Wieldable/WieldableSystem.cs
rename to Content.Shared/Wieldable/SharedWieldableSystem.cs
index 200a50d28f73..110c941dac73 100644
--- a/Content.Shared/Wieldable/WieldableSystem.cs
+++ b/Content.Shared/Wieldable/SharedWieldableSystem.cs
@@ -1,4 +1,5 @@
using System.Linq;
+using Content.Shared.Camera;
using Content.Shared.Examine;
using Content.Shared.Hands;
using Content.Shared.Hands.Components;
@@ -7,6 +8,8 @@
using Content.Shared.Interaction.Events;
using Content.Shared.Inventory.VirtualItem;
using Content.Shared.Item;
+using Content.Shared.Movement.Components;
+using Content.Shared.Movement.Systems;
using Content.Shared.Popups;
using Content.Shared.Timing;
using Content.Shared.Verbs;
@@ -23,8 +26,9 @@
namespace Content.Shared.Wieldable;
-public sealed class WieldableSystem : EntitySystem
+public abstract class SharedWieldableSystem : EntitySystem
{
+ [Dependency] private readonly MovementSpeedModifierSystem _movementSpeedModifier = default!;
[Dependency] private readonly IGameTiming _timing = default!;
[Dependency] private readonly INetManager _netManager = default!;
[Dependency] private readonly SharedAppearanceSystem _appearance = default!;
@@ -54,6 +58,9 @@ public override void Initialize()
SubscribeLocalEvent(OnGunUnwielded);
SubscribeLocalEvent(OnGunRefreshModifiers);
SubscribeLocalEvent(OnExamine);
+ SubscribeLocalEvent(OnSpeedModifierWielded);
+ SubscribeLocalEvent(OnSpeedModifierUnwielded);
+ SubscribeLocalEvent>(OnRefreshSpeedWielded);
SubscribeLocalEvent(OnGetMeleeDamage);
}
@@ -117,9 +124,29 @@ private void OnGunRefreshModifiers(Entity bonus, ref Gun
}
}
+ private void OnSpeedModifierWielded(EntityUid uid, SpeedModifiedOnWieldComponent component, ItemWieldedEvent args)
+ {
+ if (args.User != null)
+ _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User);
+ }
+
+ private void OnSpeedModifierUnwielded(EntityUid uid, SpeedModifiedOnWieldComponent component, ItemUnwieldedEvent args)
+ {
+ if (args.User != null)
+ _movementSpeedModifier.RefreshMovementSpeedModifiers(args.User);
+ }
+
+ private void OnRefreshSpeedWielded(EntityUid uid, SpeedModifiedOnWieldComponent component, ref HeldRelayedEvent args)
+ {
+ if (TryComp(uid, out var wield) && wield.Wielded)
+ {
+ args.Args.ModifySpeed(component.WalkModifier, component.SprintModifier);
+ }
+ }
+
private void OnExamineRequires(Entity entity, ref ExaminedEvent args)
{
- if(entity.Comp.WieldRequiresExamineMessage != null)
+ if (entity.Comp.WieldRequiresExamineMessage != null)
args.PushText(Loc.GetString(entity.Comp.WieldRequiresExamineMessage));
}
diff --git a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
index da253ba80afc..2d7d86822f9e 100644
--- a/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
+++ b/Content.Shared/Xenoarchaeology/Equipment/SharedArtifactCrusherSystem.cs
@@ -14,6 +14,7 @@ public abstract class SharedArtifactCrusherSystem : EntitySystem
[Dependency] protected readonly SharedAppearanceSystem Appearance = default!;
[Dependency] protected readonly SharedAudioSystem AudioSystem = default!;
[Dependency] protected readonly SharedContainerSystem ContainerSystem = default!;
+ [Dependency] private readonly EmagSystem _emag = default!;
///
public override void Initialize()
@@ -40,6 +41,15 @@ private void OnStorageAfterOpen(Entity ent, ref Storag
private void OnEmagged(Entity ent, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(ent, EmagType.Interaction))
+ return;
+
+ if (ent.Comp.AutoLock)
+ return;
+
ent.Comp.AutoLock = true;
args.Handled = true;
}
diff --git a/Content.Shared/_Goobstation/Changeling/FakeMindshield/FakeMindShieldComponent.cs b/Content.Shared/_Goobstation/Changeling/FakeMindshield/FakeMindShieldComponent.cs
deleted file mode 100644
index 0999df11cfc8..000000000000
--- a/Content.Shared/_Goobstation/Changeling/FakeMindshield/FakeMindShieldComponent.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using Robust.Shared.GameStates;
-using Content.Shared.StatusIcon;
-using Robust.Shared.Prototypes;
-
-namespace Content.Shared._Goobstation.FakeMindshield.Components;
-
-///
-/// A fake Mindshield solely to trick HUDs, with no other effects.
-///
-[RegisterComponent, NetworkedComponent]
-public sealed partial class FakeMindShieldComponent : Component
-{
- [DataField, ViewVariables(VVAccess.ReadWrite)]
- public ProtoId MindShieldStatusIcon = "MindShieldIcon";
-}
diff --git a/Content.Shared/_Goobstation/Changeling/FakeMindshield/ShowFakeMindShieldIconsComponent.cs b/Content.Shared/_Goobstation/Changeling/FakeMindshield/ShowFakeMindShieldIconsComponent.cs
deleted file mode 100644
index b18a92d2de3e..000000000000
--- a/Content.Shared/_Goobstation/Changeling/FakeMindshield/ShowFakeMindShieldIconsComponent.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-using Robust.Shared.GameStates;
-
-namespace Content.Shared._Goobstation.Overlays;
-
-///
-/// This component allows you to see fake mindshield icons above mobs.
-///
-[RegisterComponent, NetworkedComponent]
-public sealed partial class ShowFakeMindShieldIconsComponent : Component { }
diff --git a/Content.Shared/_Impstation/Fishing/FishingProjectileComponent.cs b/Content.Shared/_Impstation/Fishing/FishingProjectileComponent.cs
new file mode 100644
index 000000000000..3d76ca745bb4
--- /dev/null
+++ b/Content.Shared/_Impstation/Fishing/FishingProjectileComponent.cs
@@ -0,0 +1,10 @@
+using Robust.Shared.GameStates;
+
+namespace Content.Shared._Impstation.Fishing;
+
+[RegisterComponent, NetworkedComponent]
+//Imp : Basically a copy of GrapplingProjectileComponent
+public sealed partial class FishingProjectileComponent : Component
+{
+
+}
diff --git a/Content.Shared/_Impstation/Fishing/FishingRodComponent.cs b/Content.Shared/_Impstation/Fishing/FishingRodComponent.cs
new file mode 100644
index 000000000000..da39e3386dd0
--- /dev/null
+++ b/Content.Shared/_Impstation/Fishing/FishingRodComponent.cs
@@ -0,0 +1,41 @@
+using Robust.Shared.Audio;
+using Robust.Shared.GameStates;
+using Robust.Shared.Utility;
+
+namespace Content.Shared._Impstation.Fishing;
+
+// I have tried to make this as generic as possible but "delete joint on cycle / right-click reels in" is very specific behavior.
+[RegisterComponent, NetworkedComponent, AutoGenerateComponentState]
+//Imp : Basically a copy of GrapplingGunComponent
+public sealed partial class FishingRodComponent : Component
+{
+ ///
+ /// Hook's reeling force and speed - the higher the number, the faster the hook rewinds.
+ ///
+ [DataField, AutoNetworkedField]
+ public float ReelRate = 2.5f;
+
+ [DataField("jointId"), AutoNetworkedField]
+ public string Joint = string.Empty;
+
+ [DataField, AutoNetworkedField]
+ public EntityUid? Projectile;
+
+ [DataField, AutoNetworkedField]
+ public bool Reeling;
+
+ [DataField, AutoNetworkedField]
+ public SoundSpecifier? ReelSound = new SoundPathSpecifier("/Audio/Weapons/reel.ogg")
+ {
+ Params = AudioParams.Default.WithLoop(true)
+ };
+
+ [DataField, AutoNetworkedField]
+ public SoundSpecifier? CycleSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagIn/kinetic_reload.ogg");
+
+ [DataField]
+ public SpriteSpecifier RopeSprite =
+ new SpriteSpecifier.Rsi(new ResPath("Objects/Weapons/Guns/Launchers/grappling_gun.rsi"), "rope");
+
+ public EntityUid? Stream;
+}
diff --git a/Content.Shared/_Impstation/Fishing/SharedFishingSystem.cs b/Content.Shared/_Impstation/Fishing/SharedFishingSystem.cs
new file mode 100644
index 000000000000..373de7e86e2f
--- /dev/null
+++ b/Content.Shared/_Impstation/Fishing/SharedFishingSystem.cs
@@ -0,0 +1,246 @@
+using System.Numerics;
+using Content.Shared.CombatMode;
+using Content.Shared.Hands;
+using Content.Shared.Hands.Components;
+using Content.Shared.Interaction;
+using Content.Shared.Movement.Events;
+using Content.Shared.Physics;
+using Content.Shared.Projectiles;
+using Content.Shared.Weapons.Misc;
+using Content.Shared.Weapons.Ranged.Systems;
+using Robust.Shared.Audio.Systems;
+using Robust.Shared.Network;
+using Robust.Shared.Physics;
+using Robust.Shared.Physics.Components;
+using Robust.Shared.Physics.Dynamics.Joints;
+using Robust.Shared.Physics.Systems;
+using Robust.Shared.Serialization;
+using Robust.Shared.Timing;
+
+namespace Content.Shared._Impstation.Fishing;
+
+//Imp : Basically a copy of GrapplingGunSystem
+public abstract class SharedFishingRodSystem : EntitySystem
+{
+ [Dependency] protected readonly IGameTiming Timing = default!;
+ [Dependency] private readonly INetManager _netManager = default!;
+ [Dependency] private readonly SharedAppearanceSystem _appearance = default!;
+ [Dependency] private readonly SharedAudioSystem _audio = default!;
+ [Dependency] private readonly SharedJointSystem _joints = default!;
+ [Dependency] private readonly SharedGunSystem _gun = default!;
+ [Dependency] private readonly SharedPhysicsSystem _physics = default!;
+
+ public const string GrapplingJoint = "grappling";
+
+ public override void Initialize()
+ {
+ base.Initialize();
+
+ SubscribeLocalEvent(OnWeightlessMove);
+ SubscribeAllEvent(OnGrapplingReel);
+
+ SubscribeLocalEvent(OnGrapplingShot);
+ SubscribeLocalEvent(OnGunActivate);
+ SubscribeLocalEvent(OnGrapplingDeselected);
+
+ SubscribeLocalEvent(OnGrappleCollide);
+ SubscribeLocalEvent(OnGrappleJointRemoved);
+ SubscribeLocalEvent(OnRemoveEmbed);
+ }
+
+ private void OnGrappleJointRemoved(EntityUid uid, FishingProjectileComponent component, JointRemovedEvent args)
+ {
+ if (_netManager.IsServer)
+ QueueDel(uid);
+ }
+
+ private void OnGrapplingShot(EntityUid uid, FishingRodComponent component, ref GunShotEvent args)
+ {
+ foreach (var (shotUid, _) in args.Ammo)
+ {
+ if (!HasComp(shotUid))
+ continue;
+
+ //todo: this doesn't actually support multigrapple
+ // At least show the visuals.
+ component.Projectile = shotUid.Value;
+ Dirty(uid, component);
+ var visuals = EnsureComp(shotUid.Value);
+ visuals.Sprite = component.RopeSprite;
+ visuals.OffsetA = new Vector2(0f, 0.5f);
+ visuals.Target = GetNetEntity(uid);
+ Dirty(shotUid.Value, visuals);
+ }
+
+ TryComp(uid, out var appearance);
+ _appearance.SetData(uid, SharedTetherGunSystem.TetherVisualsStatus.Key, false, appearance);
+ Dirty(uid, component);
+ }
+
+ private void OnGrapplingDeselected(EntityUid uid, FishingRodComponent component, HandDeselectedEvent args)
+ {
+ SetReeling(uid, component, false, args.User);
+ }
+
+ private void OnGrapplingReel(RequestGrapplingReelMessage msg, EntitySessionEventArgs args)
+ {
+ var player = args.SenderSession.AttachedEntity;
+ if (!TryComp(player, out var hands) ||
+ !TryComp(hands.ActiveHandEntity, out var grappling))
+ {
+ return;
+ }
+
+ if (msg.Reeling &&
+ (!TryComp(player, out var combatMode) ||
+ !combatMode.IsInCombatMode))
+ {
+ return;
+ }
+
+ SetReeling(hands.ActiveHandEntity.Value, grappling, msg.Reeling, player.Value);
+ }
+
+ private void OnWeightlessMove(ref CanWeightlessMoveEvent ev)
+ {
+ if (ev.CanMove || !TryComp(ev.Uid, out var relayComp))
+ return;
+
+ foreach (var relay in relayComp.Relayed)
+ {
+ if (TryComp(relay, out var jointRelay) && jointRelay.GetJoints.ContainsKey(GrapplingJoint))
+ {
+ ev.CanMove = true;
+ return;
+ }
+ }
+ }
+
+ private void OnGunActivate(EntityUid uid, FishingRodComponent component, ActivateInWorldEvent args)
+ {
+ if (!Timing.IsFirstTimePredicted || args.Handled || !args.Complex || component.Projectile is not {} projectile)
+ return;
+
+ _audio.PlayPredicted(component.CycleSound, uid, args.User);
+ _appearance.SetData(uid, SharedTetherGunSystem.TetherVisualsStatus.Key, true);
+
+ if (_netManager.IsServer)
+ QueueDel(projectile);
+
+ component.Projectile = null;
+ SetReeling(uid, component, false, args.User);
+ _gun.ChangeBasicEntityAmmoCount(uid, 1);
+
+ _joints.RemoveJoint(uid, GrapplingJoint);
+
+ args.Handled = true;
+ }
+
+ private void SetReeling(EntityUid uid, FishingRodComponent component, bool value, EntityUid? user)
+ {
+ if (component.Reeling == value)
+ return;
+
+ if (value)
+ {
+ if (Timing.IsFirstTimePredicted)
+ component.Stream = _audio.PlayPredicted(component.ReelSound, uid, user)?.Entity;
+ }
+ else
+ {
+ if (Timing.IsFirstTimePredicted)
+ {
+ component.Stream = _audio.Stop(component.Stream);
+ }
+ }
+
+ component.Reeling = value;
+ Dirty(uid, component);
+ }
+
+ public override void Update(float frameTime)
+ {
+ base.Update(frameTime);
+
+ var query = EntityQueryEnumerator();
+
+ while (query.MoveNext(out var uid, out var grappling))
+ {
+ if (!grappling.Reeling)
+ {
+ if (Timing.IsFirstTimePredicted)
+ {
+ // Just in case.
+ grappling.Stream = _audio.Stop(grappling.Stream);
+ }
+
+ continue;
+ }
+
+ if (!TryComp(uid, out var jointComp) ||
+ !jointComp.GetJoints.TryGetValue(GrapplingJoint, out var joint) ||
+ joint is not DistanceJoint distance)
+ {
+ SetReeling(uid, grappling, false, null);
+ continue;
+ }
+
+ // TODO: This should be on engine.
+ distance.MaxLength = MathF.Max(distance.MinLength, distance.MaxLength - grappling.ReelRate * frameTime);
+ distance.Length = MathF.Min(distance.MaxLength, distance.Length);
+
+ _physics.WakeBody(joint.BodyAUid);
+ _physics.WakeBody(joint.BodyBUid);
+
+ if (jointComp.Relay != null)
+ {
+ _physics.WakeBody(jointComp.Relay.Value);
+ }
+
+ Dirty(uid, jointComp);
+
+ if (distance.MaxLength.Equals(distance.MinLength))
+ {
+ SetReeling(uid, grappling, false, null);
+ }
+ }
+ }
+
+ private void OnGrappleCollide(EntityUid uid, FishingProjectileComponent component, ref ProjectileEmbedEvent args)
+ {
+ if (!Timing.IsFirstTimePredicted)
+ return;
+
+ //joint between the embedded and the weapon
+ var jointComp = EnsureComp(args.Weapon);
+ var joint = _joints.CreateDistanceJoint(args.Weapon, args.Embedded, anchorA: new Vector2(0f, 0.5f), id: GrapplingJoint);
+ joint.MaxLength = joint.Length + 0.2f;
+ joint.Stiffness = 1f;
+ joint.MinLength = 0.35f;
+ // Setting velocity directly for mob movement fucks this so need to make them aware of it.
+ // joint.Breakpoint = 4000f;
+ Dirty(args.Weapon, jointComp);
+ }
+
+ private void OnRemoveEmbed(EntityUid uid, FishingProjectileComponent component, RemoveEmbedEvent args)
+ {
+ if (TryComp(uid, out var projectile))
+ {
+ if (projectile.EmbeddedIntoUid != null)
+ {
+ _joints.ClearJoints(projectile.EmbeddedIntoUid.Value);
+ }
+ }
+ }
+
+ [Serializable, NetSerializable]
+ protected sealed class RequestGrapplingReelMessage : EntityEventArgs
+ {
+ public bool Reeling;
+
+ public RequestGrapplingReelMessage(bool reeling)
+ {
+ Reeling = reeling;
+ }
+ }
+}
diff --git a/Content.Shared/_Impstation/Thaven/SharedThavenMoodSystem.cs b/Content.Shared/_Impstation/Thaven/SharedThavenMoodSystem.cs
index 1a1228c78f46..0e3818f7f633 100644
--- a/Content.Shared/_Impstation/Thaven/SharedThavenMoodSystem.cs
+++ b/Content.Shared/_Impstation/Thaven/SharedThavenMoodSystem.cs
@@ -5,22 +5,25 @@ namespace Content.Shared._Impstation.Thaven;
public abstract class SharedThavenMoodSystem : EntitySystem
{
+ [Dependency] private readonly EmagSystem _emag = default!;
+
public override void Initialize()
{
base.Initialize();
-
- SubscribeLocalEvent(OnAttemptEmag);
SubscribeLocalEvent(OnEmagged);
}
- private void OnAttemptEmag(EntityUid uid, ThavenMoodsComponent comp, ref OnAttemptEmagEvent args)
- {
- if (!comp.CanBeEmagged)
- args.Handled = true;
- }
-
protected virtual void OnEmagged(EntityUid uid, ThavenMoodsComponent comp, ref GotEmaggedEvent args)
{
+ if (!_emag.CompareFlag(args.Type, EmagType.Interaction))
+ return;
+
+ if (_emag.CheckFlag(uid, EmagType.Interaction))
+ return;
+
+ if (uid == args.UserUid)
+ return;
+
args.Handled = true;
}
}
diff --git a/Content.Tests/Shared/Atmos/GasMixtureTest.cs b/Content.Tests/Shared/Atmos/GasMixtureTest.cs
new file mode 100644
index 000000000000..5068d4858176
--- /dev/null
+++ b/Content.Tests/Shared/Atmos/GasMixtureTest.cs
@@ -0,0 +1,30 @@
+using Content.Shared.Atmos;
+using NUnit.Framework;
+
+namespace Content.Tests.Shared.Atmos;
+
+[TestFixture, TestOf(typeof(GasMixture))]
+[Parallelizable(ParallelScope.All)]
+public sealed class GasMixtureTest
+{
+ [Test]
+ public void TestEnumerate()
+ {
+ var mixture = new GasMixture();
+ mixture.SetMoles(Gas.Oxygen, 20);
+ mixture.SetMoles(Gas.Nitrogen, 10);
+ mixture.SetMoles(Gas.Plasma, 80);
+
+ var expectedList = new (Gas, float)[Atmospherics.TotalNumberOfGases];
+ for (var i = 0; i < Atmospherics.TotalNumberOfGases; i++)
+ {
+ expectedList[i].Item1 = (Gas)i;
+ }
+
+ expectedList[(int)Gas.Oxygen].Item2 = 20f;
+ expectedList[(int)Gas.Nitrogen].Item2 = 10f;
+ expectedList[(int)Gas.Plasma].Item2 = 80f;
+
+ Assert.That(mixture, Is.EquivalentTo(expectedList));
+ }
+}
diff --git a/Resources/Audio/Weapons/Guns/Empty/empty.ogg b/Resources/Audio/Weapons/Guns/Empty/empty.ogg
index 817d72e0ed0e..920b49ed08c4 100644
Binary files a/Resources/Audio/Weapons/Guns/Empty/empty.ogg and b/Resources/Audio/Weapons/Guns/Empty/empty.ogg differ
diff --git a/Resources/Audio/Weapons/Guns/sources.json b/Resources/Audio/Weapons/Guns/sources.json
index 5169aadb3a3c..cc9a3e5c0b2b 100644
--- a/Resources/Audio/Weapons/Guns/sources.json
+++ b/Resources/Audio/Weapons/Guns/sources.json
@@ -12,7 +12,7 @@
"sfrifle_cock.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/sfrifle_cock.ogg"
},
"Empty": {
- "empty.ogg": "https://github.com/discordia-space/CEV-Eris/blob/fbde37a8647a82587d363da999a94cf02c2e128c/sound/weapons/guns/misc/gun_empty.ogg",
+ "empty.ogg": "https://github.com/tgstation/tgstation/commit/d4f678a1772007ff8d7eddd21cf7218c8e07bfc0",
"lmg_empty.ogg": "https://github.com/vgstation-coders/vgstation13/blob/217aa33a41e891e144ceec710fbe1877df747adb/sound/weapons/empty.ogg"
},
"EmptyAlarm": {
@@ -59,4 +59,4 @@
"sfrifle_magout.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/sfrifle_magout.ogg",
"smg_magout.ogg": "https://github.com/discordia-space/CEV-Eris/blob/01f7518e0f8177734a6579aba2bbf76024aa96c4/sound/weapons/guns/interact/smg_magout.ogg"
}
-}
\ No newline at end of file
+}
diff --git a/Resources/Changelog/Admin.yml b/Resources/Changelog/Admin.yml
index b8694a8d6726..440a5d567aae 100644
--- a/Resources/Changelog/Admin.yml
+++ b/Resources/Changelog/Admin.yml
@@ -721,5 +721,21 @@ Entries:
id: 89
time: '2025-01-15T21:10:54.0000000+00:00'
url: https://github.com/space-wizards/space-station-14/pull/34406
+- author: c4llv07e
+ changes:
+ - message: Added an option to disable the bwoink sound!
+ type: Add
+ id: 90
+ time: '2025-01-17T07:24:50.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33782
+- author: PJB3005
+ changes:
+ - message: Introduced an option to automatically disconnect players from their current
+ server if they join another one within the same server community. Admins are
+ always exempt.
+ type: Add
+ id: 91
+ time: '2025-01-21T23:23:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34563
Name: Admin
Order: 1
diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml
index bed04aa9ff5d..d9d4a87fbbce 100644
--- a/Resources/Changelog/Changelog.yml
+++ b/Resources/Changelog/Changelog.yml
@@ -1,498 +1,4 @@
Entries:
-- author: slarticodefast
- changes:
- - message: Revenants or other mobs without hands can no longer spill jugs.
- type: Fix
- id: 7321
- time: '2024-09-09T11:02:15.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31438
-- author: PJB3005
- changes:
- - message: The emergency shuttle will now wait at the station longer if it couldn't
- dock at evac.
- type: Tweak
- id: 7322
- time: '2024-09-09T18:10:28.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31496
-- author: Boaz1111
- changes:
- - message: Pacifists can now use grapple guns.
- type: Tweak
- id: 7323
- time: '2024-09-09T19:15:32.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32014
-- author: lzk228
- changes:
- - message: All bots are available for disguise with the Chameleon Ppotlight
- type: Tweak
- id: 7324
- time: '2024-09-09T19:18:01.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32006
-- author: DieselMohawk
- changes:
- - message: Added Security Trooper Uniform
- type: Add
- id: 7325
- time: '2024-09-09T19:19:16.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31997
-- author: qwerltaz
- changes:
- - message: Dragon ghost role now spawns outside the station.
- type: Tweak
- - message: Dragon ghost role now spawns where advertised!
- type: Fix
- id: 7326
- time: '2024-09-09T19:22:41.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31890
-- author: yuitop
- changes:
- - message: Fixed some cases when surveillance camera's red light not turning off
- when needed
- type: Fix
- id: 7327
- time: '2024-09-09T19:23:57.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31831
-- author: Blackern5000
- changes:
- - message: Normal and reinforced windows have been made directly upgradable using
- rods, plasma, uranium, or plasteel.
- type: Add
- - message: Reinforced plasma and uranium windows have been made tougher.
- type: Tweak
- - message: Windows have been made to correctly display their damage visuals.
- type: Fix
- - message: Reinforced plasma windows have been given the correct amount of hp and
- no longer have 12x the amount they should.
- type: Fix
- id: 7328
- time: '2024-09-09T19:26:10.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31978
-- author: Cojoke-dot
- changes:
- - message: Nuclear bombs now require the Nuclear Authentification Disk to toggle
- anchor.
- type: Tweak
- id: 7329
- time: '2024-09-09T19:30:26.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/29565
-- author: Hreno
- changes:
- - message: Display agents' jobs in the Round End Summary window.
- type: Add
- id: 7330
- time: '2024-09-09T19:31:53.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31652
-- author: deltanedas
- changes:
- - message: Adjusted the costs and production times of all electronics so they're
- more consistent with eachother.
- type: Tweak
- id: 7331
- time: '2024-09-09T19:34:18.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31524
-- author: Winkarst-cpu
- changes:
- - message: Now fire axe (the flaming one), and an advanced circular saw are Syndicate
- contraband.
- type: Fix
- - message: Now encryption keys are restricted according to their department.
- type: Fix
- - message: Now ERT, Deathsquad and Central Command Official items are restricted
- to the Central Command.
- type: Fix
- - message: Now acolyte armor, a thieving beacon and the thief's undetermined toolbox
- are minor contraband.
- type: Fix
- - message: Now bladed flatcaps are not a contraband (stealth item).
- type: Fix
- - message: Now mercenary clothes, magazines, speedloaders and cartridges are contraband.
- type: Fix
- - message: Now cleanades are restricted to the Service.
- type: Fix
- - message: Now metal foam grenades are restricted to the Engineering.
- type: Fix
- - message: Now flash, smoke, and tear gas grenades are restricted to the Security.
- type: Fix
- - message: Now combat gloves are restricted to Security and Cargo.
- type: Fix
- - message: The Central Command restricted contraband group and department were added.
- type: Add
- id: 7332
- time: '2024-09-09T19:36:25.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31606
-- author: themias
- changes:
- - message: Unpublished news article progress is automatically saved
- type: Tweak
- id: 7333
- time: '2024-09-09T19:38:49.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31491
-- author: metalgearsloth
- changes:
- - message: Fix spawn prefs.
- type: Fix
- id: 7334
- time: '2024-09-09T19:39:16.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31892
-- author: lzk228
- changes:
- - message: The captain now have special late join message.
- type: Tweak
- id: 7335
- time: '2024-09-09T19:57:37.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31991
-- author: Thinbug0
- changes:
- - message: Teal gloves can now be found at the ClothesMate!
- type: Add
- id: 7336
- time: '2024-09-09T21:47:53.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31865
-- author: chillyconmor
- changes:
- - message: Space Ninjas now have a new intro song.
- type: Add
- id: 7337
- time: '2024-09-09T22:12:25.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31055
-- author: DieselMohawk
- changes:
- - message: Made Trooper Uniform accessible for Security Officers in loadouts
- type: Fix
- id: 7338
- time: '2024-09-09T23:59:31.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32019
-- author: IProduceWidgets
- changes:
- - message: Visitors now can have the correct Id cards and PDA!
- type: Fix
- - message: ghost roles should now attempt to tell you what your antag status is
- in a popup when you join the raffle.
- type: Tweak
- - message: ERT chaplains should now be able to use bibles.
- type: Fix
- - message: Many new unknown shuttle events to make them more unique.
- type: Add
- - message: Syndicate escape pods will once again appear.
- type: Fix
- - message: Unknown Shuttle events will be much rarer.
- type: Tweak
- id: 7339
- time: '2024-09-10T06:40:00.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/28098
-- author: ScarKy0
- changes:
- - message: Renamed Circuit Boards to be Law Boards instead.
- type: Tweak
- id: 7340
- time: '2024-09-10T10:27:42.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31914
-- author: ScarKy0
- changes:
- - message: Arrival Screens now show time again.
- type: Fix
- id: 7341
- time: '2024-09-10T19:08:22.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32037
-- author: themias
- changes:
- - message: The Justice Helm can now only be crafted using a security helmet.
- type: Fix
- id: 7342
- time: '2024-09-10T19:08:37.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32042
-- author: TurboTrackerss14
- changes:
- - message: Gas tank explosions ("max caps") have a reduced range on WizDen servers
- until they can be reworked into a proper game mechanic.
- type: Remove
- id: 7343
- time: '2024-09-10T22:05:12.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31437
-- author: Boaz1111
- changes:
- - message: Researching Advanced Atmospherics now requires Atmospherics to be researched.
- type: Tweak
- id: 7344
- time: '2024-09-10T22:19:17.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32048
-- author: DiposableCrewmember42
- changes:
- - message: Fixed Revenant ability cost checks. Revenants can no longer spam abilities
- without Essence.
- type: Fix
- id: 7345
- time: '2024-09-10T23:07:07.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32050
-- author: ArtisticRoomba
- changes:
- - message: The salvage magnet circuitboard has been added to QM's locker. It can
- also be made at the circuit imprinter roundstart. NOW GET BACK TO WORK!!!
- type: Tweak
- id: 7346
- time: '2024-09-10T23:25:22.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31996
-- author: Lank
- changes:
- - message: Several antagonist shuttle events have been removed.
- type: Remove
- id: 7347
- time: '2024-09-10T23:26:59.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32052
-- author: Vermidia
- changes:
- - message: Borgs and other creatures that shouldn't get hurt stepping on things
- no longer get hurt stepping on things.
- type: Fix
- - message: Honkbots slip again
- type: Fix
- id: 7348
- time: '2024-09-11T02:12:08.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31011
-- author: EmoGarbage404
- changes:
- - message: The mining asteroid now generates small structures full of treasure and
- equipment. Keep an eye open for them, nestled within the rock.
- type: Add
- id: 7349
- time: '2024-09-11T03:33:42.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31638
-- author: SlamBamActionman
- changes:
- - message: The Station AI job is no longer affected by the Bureaucratic Event event.
- type: Fix
- id: 7350
- time: '2024-09-11T11:24:24.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32021
-- author: K-Dynamic
- changes:
- - message: Reduced canister prices from 1000 to 200 spesos
- type: Tweak
- id: 7351
- time: '2024-09-11T12:53:51.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31965
-- author: EmoGarbage404
- changes:
- - message: Added the hivelord! This self-replicating alien is found on the mining
- asteroid. It's core is known to have powerful healing properties.
- type: Add
- id: 7352
- time: '2024-09-11T13:52:27.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31322
-- author: PeccNeck
- changes:
- - message: Fixed a bug where ore processors could not produce reinforced glass
- type: Fix
- id: 7353
- time: '2024-09-11T14:06:08.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32069
-- author: Plykiya
- changes:
- - message: You can now use swords to make baseball bats.
- type: Fix
- id: 7354
- time: '2024-09-11T14:45:00.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32075
-- author: Plykiya
- changes:
- - message: Banners are no longer invincible.
- type: Fix
- id: 7355
- time: '2024-09-11T15:29:23.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32077
-- author: themias
- changes:
- - message: Very small amounts of heat damage no longer play the cauterization sound
- (e.g. spacing)
- type: Fix
- id: 7356
- time: '2024-09-11T16:05:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32080
-- author: deltanedas
- changes:
- - message: Coins and Supercharged CPUs can now be recycled for rarer materials.
- type: Tweak
- id: 7357
- time: '2024-09-11T16:24:16.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31970
-- author: lzk228
- changes:
- - message: Fixed forensic pad didn't care about target identity.
- type: Fix
- - message: Instead of name changing, forensic pad now will have a label with target's
- name.
- type: Tweak
- id: 7358
- time: '2024-09-12T00:52:19.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31842
-- author: lzk228
- changes:
- - message: Borgs and Station AI will not receive selected in preferences traits.
- type: Tweak
- id: 7359
- time: '2024-09-12T10:36:41.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31990
-- author: MrRobDemo
- changes:
- - message: Added 5% chance to make killer tomatoes a ghost role.
- type: Add
- - message: Killer tomatoes can now heal from being splashed with water, blood or
- RobustHarvest.
- type: Add
- - message: Killer tomatoes can now escape from inventory (only intelligent).
- type: Tweak
- id: 7360
- time: '2024-09-12T12:51:41.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31932
-- author: ScarKy0
- changes:
- - message: Station AI now has a comms console ability.
- type: Add
- - message: Station AI abilities now have a default order.
- type: Tweak
- id: 7361
- time: '2024-09-12T15:28:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31852
-- author: themias
- changes:
- - message: Fixed medical PDAs sometimes toggling their lights while scanning
- type: Fix
- id: 7362
- time: '2024-09-13T13:59:19.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32091
-- author: Gorox221
- changes:
- - message: Mech pilots receive a warning before they are ejected from the mech.
- type: Tweak
- - message: Now, when removing the pilot of the mech, you need to not move.
- type: Fix
- id: 7363
- time: '2024-09-13T14:01:26.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31649
-- author: slarticodefast
- changes:
- - message: Extradimensional orange, holymelon, meatwheat and world peas plant mutations
- have been added. Obtain them by mutating oranges, watermelons, wheat and laughin'
- peas respectively.
- type: Add
- id: 7364
- time: '2024-09-13T14:02:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/27624
-- author: ShadowCommander
- changes:
- - message: Fixed PDA sometimes showing uplink and music buttons when the PDA was
- not able to use them.
- type: Fix
- id: 7365
- time: '2024-09-13T14:19:32.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/28373
-- author: Dezzzix
- changes:
- - message: Now you can wear a hood in void cloak
- type: Add
- id: 7366
- time: '2024-09-13T15:02:45.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31061
-- author: PJB3005
- changes:
- - message: Fixed some powered machines working when unpowered if the panel is open.
- type: Fix
- id: 7367
- time: '2024-09-13T23:58:54.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32135
-- author: qwerltaz
- changes:
- - message: The RCD can now place grilles and windows under shutters and cables under
- doors.
- type: Fix
- id: 7368
- time: '2024-09-14T01:53:14.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32102
-- author: SlamBamActionman
- changes:
- - message: Briefcases can now be used as melee weapons.
- type: Add
- id: 7369
- time: '2024-09-14T13:09:43.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32063
-- author: Just_Art
- changes:
- - message: Added a head gauze to customization.
- type: Add
- id: 7370
- time: '2024-09-14T14:55:13.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/30852
-- author: deltanedas
- changes:
- - message: Fixed security's helmets not having any protection.
- type: Fix
- id: 7371
- time: '2024-09-14T15:56:57.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32152
-- author: eoineoineoin
- changes:
- - message: Ghosts can now read books.
- type: Add
- id: 7372
- time: '2024-09-14T16:28:33.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32151
-- author: Errant
- changes:
- - message: Lone Ops nukies now spawn with the appropriate species-specific survival
- gear.
- type: Fix
- id: 7373
- time: '2024-09-14T16:34:01.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/31641
-- author: Plykiya
- changes:
- - message: The vent spawn event now has a chance to spawn snakes.
- type: Add
- id: 7374
- time: '2024-09-14T17:19:32.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32070
-- author: lzk228
- changes:
- - message: Command intercom now reinforced the same way as the security one.
- type: Tweak
- id: 7375
- time: '2024-09-14T20:40:38.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32169
-- author: de0rix
- changes:
- - message: Animals in critical state now all have proper sprites.
- type: Fix
- id: 7376
- time: '2024-09-15T01:53:58.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32175
-- author: notafet
- changes:
- - message: Pressure and volume pumps now require power to operate.
- type: Tweak
- id: 7377
- time: '2024-09-15T01:58:10.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/28995
-- author: deltanedas
- changes:
- - message: Holoparasites can no longer be summoned from inside containers.
- type: Tweak
- id: 7378
- time: '2024-09-15T19:04:32.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32068
-- author: BackeTako
- changes:
- - message: Added French and Spanish speech traits.
- type: Add
- id: 7379
- time: '2024-09-15T20:03:15.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/30966
-- author: Plykiya
- changes:
- - message: Meteors break through less walls now.
- type: Tweak
- id: 7380
- time: '2024-09-15T20:04:37.0000000+00:00'
- url: https://github.com/space-wizards/space-station-14/pull/32109
- author: drakewill-CRL
changes:
- message: Produce harvested from sentient plants are no longer sentient themselves.
@@ -3922,3 +3428,483 @@
id: 7820
time: '2025-01-16T12:25:08.0000000+00:00'
url: https://github.com/space-wizards/space-station-14/pull/33690
+- author: Southbridge
+ changes:
+ - message: More Ionstorm law elements have been added
+ type: Add
+ id: 7821
+ time: '2025-01-16T20:49:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34197
+- author: southbridge-fur
+ changes:
+ - message: Pride-O-Mats now have scarves instead of cloaks
+ type: Tweak
+ id: 7822
+ time: '2025-01-17T11:35:03.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34448
+- author: Toby222
+ changes:
+ - message: Update nix flake to use current nixpkgs release
+ type: Fix
+ id: 7823
+ time: '2025-01-17T17:26:04.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34480
+- author: ArtisticRoomba, miamioni
+ changes:
+ - message: The Space Lizard plushie can now be worn on top of your head.
+ type: Add
+ id: 7824
+ time: '2025-01-18T09:02:40.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33809
+- author: Spacemann
+ changes:
+ - message: Station cameras can now be destroyed by bullets.
+ type: Add
+ id: 7825
+ time: '2025-01-18T13:41:29.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34500
+- author: Winkarst-cpu
+ changes:
+ - message: Some masks can now be seen when pulled down.
+ type: Add
+ id: 7826
+ time: '2025-01-18T16:58:52.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33451
+- author: Minemoder
+ changes:
+ - message: The chemical locker now has a 10u vial of plasma.
+ type: Add
+ id: 7827
+ time: '2025-01-18T18:27:46.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33871
+- author: Nox38
+ changes:
+ - message: Seclites now start with a medium-capacity power cell.
+ type: Tweak
+ - message: Seclite power draw (wattage) has been reduced to 0.5.
+ type: Tweak
+ id: 7828
+ time: '2025-01-18T22:56:42.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34469
+- author: K-Dynamic
+ changes:
+ - message: Empty guns have a louder dry fire sound (i.e. when the chamber or power
+ cell is empty).
+ type: Tweak
+ id: 7829
+ time: '2025-01-19T01:46:55.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34447
+- author: WarPigeon
+ changes:
+ - message: The debriefing room in CentComm is now open to heads of staff for end
+ of round roleplay.
+ type: Tweak
+ id: 7830
+ time: '2025-01-19T05:32:34.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34475
+- author: Winkarst-cpu
+ changes:
+ - message: Now items from the storage implant drop on the floor upon gibbing of
+ the owner.
+ type: Tweak
+ id: 7831
+ time: '2025-01-19T19:48:58.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33493
+- author: ArtisticRoomba
+ changes:
+ - message: Voxes can now honk, weh, and hew if forced to by a reagent.
+ type: Fix
+ - message: Arachnids and Moths can now honk if forced to by a reagent.
+ type: Fix
+ id: 7832
+ time: '2025-01-20T00:21:25.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33777
+- author: K-Dynamic
+ changes:
+ - message: Welding gas masks are now toggleable like other breathing masks.
+ type: Fix
+ id: 7833
+ time: '2025-01-20T00:32:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32691
+- author: ElectroJr
+ changes:
+ - message: Fixed some visual overlays not being removed when the effect should stop.
+ type: Fix
+ id: 7834
+ time: '2025-01-20T01:24:40.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34527
+- author: Compilatron144
+ changes:
+ - message: Raised Plasma Station's population limit
+ type: Tweak
+ id: 7835
+ time: '2025-01-21T04:56:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34549
+- author: sporkyz
+ changes:
+ - message: Galoshes are now restricted to janitor.
+ type: Tweak
+ - message: Double barrel shotguns, basic armor vests, beanbag/flare shotgun shells,
+ and bandoliers are now allowed for Bartenders, not just Security.
+ type: Tweak
+ - message: Lawyers now have access to the Security headset they spawn with, as well
+ as the encryption key inside.
+ type: Fix
+ - message: Sawn-off shotguns are now properly considered contraband instead of being
+ unrestricted.
+ type: Fix
+ id: 7836
+ time: '2025-01-21T09:51:27.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33385
+- author: K-Dynamic
+ changes:
+ - message: Electrified doors and windoors now visibly spark when touched.
+ type: Tweak
+ - message: New tips have been added about opening electrified doors by throwing
+ your PDA or ID, and resetting doors that are electrified by AI.
+ type: Add
+ id: 7837
+ time: '2025-01-21T10:39:16.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34502
+- author: Nimfar11
+ changes:
+ - message: Adds Blueprint double emergency tank.
+ type: Add
+ id: 7838
+ time: '2025-01-21T16:08:21.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34232
+- author: sowelipililimute
+ changes:
+ - message: Chefs now have access to cloth boxes in their locker, kitchen supplies
+ crate, etc. for moths
+ type: Add
+ id: 7839
+ time: '2025-01-22T23:54:03.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34403
+- author: Emisse
+ changes:
+ - message: Lecter sprites have been updated.
+ type: Tweak
+ id: 7840
+ time: '2025-01-23T06:02:50.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34589
+- author: Ian321
+ changes:
+ - message: Job specific contraband descriptions are now grammatically sound.
+ type: Fix
+ id: 7841
+ time: '2025-01-23T10:08:41.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34559
+- author: Fildrance, SaphireLattice, eoineoineoin
+ changes:
+ - message: Radial menu UIs have been updated for readability.
+ type: Tweak
+ id: 7842
+ time: '2025-01-23T12:16:59.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32653
+- author: K-Dynamic
+ changes:
+ - message: The Drozd SMG can now fire in full-auto, burst or semi-auto
+ type: Tweak
+ id: 7843
+ time: '2025-01-23T13:01:20.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34604
+- author: Ian321
+ changes:
+ - message: Restricted contraband now gets displayed correctly.
+ type: Fix
+ id: 7844
+ time: '2025-01-23T14:01:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34558
+- author: TheShuEd, LeveFUN
+ changes:
+ - message: You can now put c4 on your head
+ type: Add
+ id: 7845
+ time: '2025-01-23T21:11:31.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34076
+- author: WarPigeon
+ changes:
+ - message: Uranium is now slightly radioactive.
+ type: Add
+ id: 7846
+ time: '2025-01-23T21:39:00.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34436
+- author: JustinWinningham
+ changes:
+ - message: Renamed sexy clown and mime mask.
+ type: Tweak
+ id: 7847
+ time: '2025-01-24T03:56:33.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34258
+- author: Velken
+ changes:
+ - message: Moved Cyborg Charger Circuit Board from Auto Lathe to Circuit Imprinter.
+ type: Tweak
+ id: 7848
+ time: '2025-01-24T04:30:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34612
+- author: Errant
+ changes:
+ - message: Cyborgs now start with positronic brains.
+ type: Tweak
+ id: 7849
+ time: '2025-01-24T06:58:34.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34614
+- author: CaasGit
+ changes:
+ - message: Solar panels can now be upgraded with plasma or uranium glass.
+ type: Add
+ id: 7850
+ time: '2025-01-26T14:01:34.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/29224
+- author: Coolsurf6
+ changes:
+ - message: Added the HoS's flask to their respective lockers.
+ type: Add
+ id: 7851
+ time: '2025-01-26T23:39:27.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34658
+- author: Compilatron144
+ changes:
+ - message: Plasma station fixes
+ type: Tweak
+ id: 7852
+ time: '2025-01-27T07:07:44.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34602
+- author: ArtisticRoomba
+ changes:
+ - message: The pneumatic valve now has a more descriptive description.
+ type: Tweak
+ id: 7853
+ time: '2025-01-27T07:40:23.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32655
+- author: Helm
+ changes:
+ - message: Fixed an overly roomy matchbox!
+ type: Fix
+ id: 7854
+ time: '2025-01-27T08:30:32.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34632
+- author: metalgearsloth
+ changes:
+ - message: Fix hovering storage containers flickering sometimes.
+ type: Fix
+ id: 7855
+ time: '2025-01-27T10:29:51.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33045
+- author: Coolsurf6
+ changes:
+ - message: Added the ability for a creature to be unable to feel pain
+ type: Add
+ - message: Added a Pain Numbness Trait to character creation.
+ type: Add
+ id: 7856
+ time: '2025-01-27T10:34:21.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34538
+- author: metalgearsloth
+ changes:
+ - message: Puddles will now draw below floor objects like vents.
+ type: Fix
+ id: 7857
+ time: '2025-01-27T12:44:17.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32369
+- author: august-sun
+ changes:
+ - message: Utility and CE belts can now hold the pAI and the handheld station map.
+ type: Tweak
+ id: 7858
+ time: '2025-01-27T18:48:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33048
+- author: ArtisticRoomba
+ changes:
+ - message: The Engineering Guidebook has been significantly revamped and is now
+ mostly up to date.
+ type: Add
+ - message: Most Atmospherics and Engineering-related devices and equipment now have
+ a link to their relevant guidebook entry upon examine.
+ type: Add
+ id: 7859
+ time: '2025-01-27T19:42:27.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33062
+- author: SlamBamActionman
+ changes:
+ - message: Hristov now provides an increased view range of 3 tiles when wielded.
+ type: Tweak
+ id: 7860
+ time: '2025-01-27T23:20:46.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/31626
+- author: Kickguy223
+ changes:
+ - message: A new Syndicate and Thief togglable implant is available capable of Impersonating
+ a Mindshield
+ type: Add
+ - message: All implants will now inform you if an implant is already present after
+ the attempt instead of before
+ type: Tweak
+ id: 7861
+ time: '2025-01-28T02:37:46.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34079
+- author: ArtisticRoomba
+ changes:
+ - message: Frezon prices have been tweaked to be much more worth it for new players
+ and elder atmosians alike.
+ type: Tweak
+ id: 7862
+ time: '2025-01-28T17:31:11.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34049
+- author: K-Dynamic
+ changes:
+ - message: Stun batons play thrusting instead of wide swing animation on precise
+ attacks (LMB).
+ type: Tweak
+ id: 7863
+ time: '2025-01-28T18:55:08.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34693
+- author: Emisse
+ changes:
+ - message: Drozd sprites have been updated.
+ type: Tweak
+ id: 7864
+ time: '2025-01-29T08:41:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34574
+- author: Southbridge
+ changes:
+ - message: The Nuke will now reset to a minimum countdown value when disarmed if
+ the countdown is below the minimum value.
+ type: Tweak
+ id: 7865
+ time: '2025-01-29T09:04:48.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34734
+- author: themias
+ changes:
+ - message: Fixed precision attack animation for thrust weapons
+ type: Fix
+ id: 7866
+ time: '2025-01-29T10:11:08.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34713
+- author: yuitop
+ changes:
+ - message: Sentient medibots can now properly inject.
+ type: Tweak
+ id: 7867
+ time: '2025-01-29T10:34:01.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32110
+- author: jamessimo
+ changes:
+ - message: Criminal Records computer got enhanced UX & UI.
+ type: Tweak
+ - message: Criminal Records computer can now filter its list against crew criminal
+ status.
+ type: Tweak
+ - message: Criminal Records computer will now announce the suspects Job next to
+ their name.
+ type: Tweak
+ id: 7868
+ time: '2025-01-29T10:34:49.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32352
+- author: Starbuckss14
+ changes:
+ - message: New borg names
+ type: Add
+ id: 7869
+ time: '2025-01-29T10:35:22.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/32502
+- author: thetolbean
+ changes:
+ - message: Traitors now have access to a Syndicate Radio Implanter, allowing covert
+ communications on the Syndicate channel without a headset.
+ type: Add
+ id: 7870
+ time: '2025-01-30T00:14:00.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33533
+- author: Spessmann
+ changes:
+ - message: Added Convex recreational complex, a large service-oriented highpop map.
+ type: Add
+ id: 7871
+ time: '2025-01-30T02:44:45.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33346
+- author: ScarKy0
+ changes:
+ - message: Added the Authentication Disruptor to the syndicate uplink for 5TC. It
+ removes access requirements from devices and forcefully opens airlocks and digital
+ locks.
+ type: Add
+ - message: The EMAG can no longer open airlocks or break locks.
+ type: Tweak
+ - message: Price of the EMAG lowered to 4TC.
+ type: Tweak
+ - message: '"Emagged" airlocks can now be fixed by unbolting and using the access
+ configurator. Locks and similiar can now be fixed by just using the access configurator.'
+ type: Tweak
+ id: 7872
+ time: '2025-01-30T04:05:47.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34337
+- author: Southbridge
+ changes:
+ - message: Astro Asteroid Sand has been added as another type of faux tile.
+ type: Add
+ - message: Asteroid Astro Sand has also been added to the T2 civilian tech for the
+ faux astro tiles.
+ type: Add
+ id: 7873
+ time: '2025-01-30T04:41:59.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34463
+- author: august-sun
+ changes:
+ - message: Added the goliath hardsuit to the game and crafting menu. Adjusted goliath
+ hide drop rates to 3 hide per kill.
+ type: Add
+ id: 7874
+ time: '2025-01-30T04:45:56.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34721
+- author: Velken
+ changes:
+ - message: Mixing opposite types of lizard juices now has explosive consequences.
+ type: Add
+ id: 7875
+ time: '2025-01-30T11:34:32.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34730
+- author: SpaceRox1244
+ changes:
+ - message: Massive scrap can now fit in bags of holding.
+ type: Tweak
+ id: 7876
+ time: '2025-01-30T12:06:41.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33454
+- author: sleepyyapril
+ changes:
+ - message: Fixed double muzzle flash for the user.
+ type: Fix
+ id: 7877
+ time: '2025-01-30T13:34:05.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33981
+- author: BarryNorfolk
+ changes:
+ - message: Added a history tab to the bounty computer, showing all past completed
+ and skipped orders (and who skipped them).
+ type: Add
+ id: 7878
+ time: '2025-01-30T17:27:36.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33932
+- author: K-Dynamic
+ changes:
+ - message: The Kammerer now holds 7 shells but now fires slightly slower than other
+ shotguns.
+ type: Tweak
+ - message: The Double-Barreled Shotgun and its sawn-off counterpart now share the
+ same firerate.
+ type: Tweak
+ - message: Changed descriptions of the Kammerer, Enforcer and Bulldog.
+ type: Tweak
+ id: 7879
+ time: '2025-01-30T17:36:12.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/33512
+- author: beck-thompson
+ changes:
+ - message: Ore rocks now drop the correct amount of ore when mined.
+ type: Fix
+ id: 7880
+ time: '2025-01-30T17:48:11.0000000+00:00'
+ url: https://github.com/space-wizards/space-station-14/pull/34557
diff --git a/Resources/Changelog/Impstation.yml b/Resources/Changelog/Impstation.yml
index f6ac9e7aab7a..5bf3660824ea 100644
--- a/Resources/Changelog/Impstation.yml
+++ b/Resources/Changelog/Impstation.yml
@@ -1,186 +1,4 @@
Entries:
-- author: FlippenPage
- changes:
- - message: Fixed Drones being unable to move.
- type: Fix
- id: 581
- time: '2024-11-26T09:25:46.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/806
-- author: Sha-Seng
- changes:
- - message: Beanbag Kammerers and Beanbag Enforcers are now blue!
- type: Tweak
- - message: Beanbag Shells and their associated containers are also blue now (that's
- my attack)
- type: Tweak
- - message: Minor touchups on lethal Kammerer and Enforcer sprites
- type: Tweak
- id: 582
- time: '2024-11-26T19:09:17.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/760
-- author: widgetbeck
- changes:
- - message: Added the goblin EVA suit (gobsuit.) Admin-only for the moment.
- type: Add
- id: 583
- time: '2024-11-26T19:11:37.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/808
-- author: DinnerCalzone
- changes:
- - message: (Hummingbird) The external airlocks in the area between the center and
- starboard wing now properly require external access.
- type: Fix
- id: 584
- time: '2024-11-26T19:10:50.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/807
-- author: DinnerCalzone
- changes:
- - message: 'Shotgun beanbags have been reworked into stun slugs. These do 7.5 shock
- and 40 stamina damage compared to beanbags'' 10 blunt and 40 stamina damage,
- so being shot by them will not cause you to bleed. Note: insulated gloves will
- not make you immune to these!'
- type: Tweak
- - message: Gave mice 40% shock vulnerability so they can still be one-shot by the
- bartender's shotgun. (Their little hearts can't take the voltage.)
- type: Tweak
- id: 585
- time: '2024-11-26T19:10:22.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/762
-- author: DVDPlayerOfDiscordFame
- changes:
- - message: 'New Ammo Type: .22 Auto (incl. Incendiary, Uranium, and Practice)'
- type: Add
- - message: Mk 93 Machine Pistol
- type: Add
- - message: Mk 92HB Hyper-Burst Pistol
- type: Add
- - message: Zipper .22; a Dogshit pistol found in maintenance loot rarely.
- type: Add
- - message: Zipper .22 Syndicate Bundle; purchased for 20 TC-- uses Armor Piercing
- rounds to deal defense-ignoring damage.
- type: Add
- - message: Machine Pistol and Hyperburst Pistol Crates to the Cargo Store
- type: Add
- - message: Advanced Sidearms as a Tier 1 technology for Science to research
- type: Add
- - message: Advanced Pistol Munitions as a Tier 2 technology for Science to research
- type: Add
- id: 586
- time: '2024-11-26T19:18:28.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/809
-- author: honeyed-lemons
- changes:
- - message: Adjust spacewind min calc mass to 15
- type: Tweak
- id: 587
- time: '2024-11-26T19:37:24.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/811
-- author: kipdotnet
- changes:
- - message: Added the S-Cargo moving trunk! Its a normal locker, but with zero gravity
- at all times.
- type: Add
- - message: Edited the sprite for the s-cargo satchel slightly.
- type: Tweak
- id: 588
- time: '2024-11-27T08:21:42.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/812
-- author: Sha-Seng
- changes:
- - message: Beanbag shell ammo box is now a stun slug ammo box
- type: Tweak
- id: 589
- time: '2024-11-27T08:22:09.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/815
-- author: Pinkbat5
- changes:
- - message: Chemists can now wear a new formal jumpsuit, the senior physician beret/labcoat,
- and some heavy-duty PPE.
- type: Add
- id: 590
- time: '2024-11-27T10:47:18.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/814
-- author: widgetbeck
- changes:
- - message: Added (hopefully) extremely rare event, Goblin Castaways, and its associated
- CrateFullOGoblins.
- type: Add
- - message: Changed weights of all goblin events to make them less common.
- type: Tweak
- - message: Sir Gollylad is now ripped, and can pry open doors (extremely slowly.)
- However, this does mean that his ID card and crowbar have been removed.
- type: Tweak
- - message: Sir Gollylad is no longer bald, and will spawn with a random skin color.
- type: Tweak
- id: 591
- time: '2024-11-27T11:49:59.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/817
-- author: Darkmajia
- changes:
- - message: Direct window upgrading is back! Shuttle windows are not back, though.
- type: Add
- id: 592
- time: '2024-11-27T19:31:28.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/821
-- author: widgetbeck
- changes:
- - message: Replaced "creepy crawly" Thaven mood with something that should have
- less gameplay impact.
- type: Tweak
- id: 593
- time: '2024-11-27T19:31:54.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/819
-- author: honeyed-lemons
- changes:
- - message: Chameleon PDA
- type: Add
- - message: PDAs show the most recent ID placed inside as the owner, instead of being
- fixed.
- type: Tweak
- id: 594
- time: '2024-11-27T19:32:31.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/810
-- author: widgetbeck
- changes:
- - message: Decapoid vapor tanks are now fully functional, which means that Decapoids
- are now fully functional. They just need customization!
- type: Fix
- id: 595
- time: '2024-11-27T19:32:53.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/820
-- author: TGRCDev
- changes:
- - message: Crates/lockers being pulled can now only be opened by the person pulling
- them
- type: Tweak
- id: 596
- time: '2024-11-27T19:34:23.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/791
-- author: widgetbeck
- changes:
- - message: Mucin now evaporates and costs less thirst.
- type: Tweak
- - message: Propulsion gel nerf.
- type: Tweak
- id: 597
- time: '2024-11-27T20:55:17.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/818
-- author: formlessnameless
- changes:
- - message: Various creatures can now crawl through the station's pipes. Beware!
- type: Add
- id: 598
- time: '2024-11-28T22:29:32.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/822
-- author: Sha-Seng
- changes:
- - message: Black Utility Belt crafted with a spray painter and a utility belt
- type: Add
- - message: Filled versions of the black utility belt if you want to map them too
- type: Add
- id: 599
- time: '2024-11-28T22:45:07.0000000+00:00'
- url: https://github.com/impstation/imp-station-14/pull/824
- author: Sha-Seng
changes:
- message: Closet Skeletons spawn with the Ancient Jumpsuit now b/c it makes sense
@@ -4252,3 +4070,154 @@
id: 1080
time: '2025-02-08T12:40:50.0000000+00:00'
url: https://github.com/impstation/imp-station-14/pull/1589
+- author: hivehum
+ changes:
+ - message: You have no longer heard of Hatsune Miku.
+ type: Remove
+ - message: Due to its status as a religious uniform, the shrine maiden outfit has
+ been moved to the PietyVend.
+ type: Tweak
+ id: 1081
+ time: '2025-02-08T22:54:30.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1614
+- author: hivehum
+ changes:
+ - message: Courier and Brigmedic now have appropriate text highlighting auto-fills.
+ type: Add
+ id: 1082
+ time: '2025-02-09T04:39:10.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1615
+- author: crocodilecarousel, RosySaturniidae
+ changes:
+ - message: Added some more figurines for our metallic friends!
+ type: Add
+ id: 1083
+ time: '2025-02-09T09:21:12.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1619
+- author: TheGrimbeeper
+ changes:
+ - message: Heretics can no longer have changelings appear on the sacrifice heartbeat,
+ because changelings cannot be sacrificed.
+ type: Fix
+ id: 1084
+ time: '2025-02-09T09:24:40.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1620
+- author: irismessage
+ changes:
+ - message: 'Round dividers for #postround chat'
+ type: Add
+ id: 1085
+ time: '2025-02-09T19:15:37.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1627
+- author: Darkmajia
+ changes:
+ - message: Hiding inside a locker will prevent supermatter delamination hallucinations.
+ type: Add
+ id: 1086
+ time: '2025-02-09T23:55:44.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1625
+- author: AftrLite
+ changes:
+ - message: Flipped version of the twisted scar marking.
+ type: Add
+ - message: '[Changeling Blind Sting] No longer damages eyes, instead inflicting
+ the blindness debuff for a significantly longer time. Ability''s Chemical Cost
+ increased to align with this buff.'
+ type: Tweak
+ id: 1087
+ time: '2025-02-10T03:17:38.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1622
+- author: nowaitstop
+ changes:
+ - message: New playing card colors! Good luck finding them lol
+ type: Add
+ id: 1088
+ time: '2025-02-10T18:05:35.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1623
+- author: Darkmajia
+ changes:
+ - message: '"Show all gases" has been added to the supermatter console.'
+ type: Add
+ id: 1089
+ time: '2025-02-10T21:00:51.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1624
+- author: Kandiyaki
+ changes:
+ - message: the guidebook page for the eldritch flask now exists.
+ type: Tweak
+ - message: the eldritch flask no longer works as a cryostasis container, and its
+ size has been reduced.
+ type: Tweak
+ - message: the eldritch flask's catalog entry now shows the correct items needed
+ to create it.
+ type: Tweak
+ - message: the ritual of knowledge no longer has a chance to eat its user's organs.
+ type: Fix
+ id: 1090
+ time: '2025-02-10T21:07:17.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1635
+- author: Pinkbat5
+ changes:
+ - message: Baton, disabler and utility tokens now start in seclinks instead of roundstart
+ security inventories.
+ type: Tweak
+ id: 1091
+ time: '2025-02-10T21:01:29.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1631
+- author: Darkmajia
+ changes:
+ - message: Box Station's atmospherics department and supermatter chamber have been
+ revamped slightly.
+ type: Tweak
+ id: 1092
+ time: '2025-02-10T21:11:07.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1634
+- author: kipdotnet
+ changes:
+ - message: You can now take a Sip-u-lacrum.
+ type: Add
+ id: 1093
+ time: '2025-02-10T21:19:46.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1632
+- author: FutureExalt
+ changes:
+ - message: new roundstart coats for secoff, warden, and detective.
+ type: Add
+ id: 1094
+ time: '2025-02-10T22:41:58.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1612
+- author: Saeko-44
+ changes:
+ - message: The fishing rod, capable of reeling things in, as a tier 1 civilian tech
+ type: Add
+ id: 1095
+ time: '2025-02-10T22:49:04.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1482
+- author: Darkmajia
+ changes:
+ - message: Grays and dwarves have had their accents fixed up a little.
+ type: Tweak
+ id: 1096
+ time: '2025-02-10T23:05:05.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1571
+- author: Darkmajia
+ changes:
+ - message: Corpses no longer collide with plastic flaps.
+ type: Fix
+ id: 1097
+ time: '2025-02-10T23:11:13.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1572
+- author: Darkmajia
+ changes:
+ - message: Bonfires can be built, lit, and extinguished.
+ type: Add
+ id: 1098
+ time: '2025-02-10T23:35:23.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1613
+- author: Sha-Seng
+ changes:
+ - message: Detectives and brigmeds can now spawn with sec armor vests if they wanna
+ type: Add
+ id: 1099
+ time: '2025-02-10T23:35:31.0000000+00:00'
+ url: https://github.com/impstation/imp-station-14/pull/1608
diff --git a/Resources/ConfigPresets/WizardsDen/vulture.toml b/Resources/ConfigPresets/WizardsDen/vulture.toml
index 2bd16b61b8f8..95aecb284a46 100644
--- a/Resources/ConfigPresets/WizardsDen/vulture.toml
+++ b/Resources/ConfigPresets/WizardsDen/vulture.toml
@@ -5,6 +5,3 @@ hostname = "[EN] Wizard's Den Vulture [US East 2]"
[hub]
tags = "lang:en,region:am_n_e,rp:low"
-
-[worldgen]
-enabled = true
diff --git a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml
index 3083adcbeade..8925d5285922 100644
--- a/Resources/ConfigPresets/WizardsDen/wizardsDen.toml
+++ b/Resources/ConfigPresets/WizardsDen/wizardsDen.toml
@@ -43,6 +43,7 @@ see_own_notes = true
deadmin_on_join = true
new_player_threshold = 600
alert.min_players_sharing_connection = 2
+allow_multi_server_play = false
[atmos]
max_explosion_range = 5
diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt
index 025024b23e2f..cbd4e77d5537 100644
--- a/Resources/Credits/GitHub.txt
+++ b/Resources/Credits/GitHub.txt
@@ -1 +1 @@
-0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, jerryimmouse, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, nox, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, WTCWR68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex
+0tito, 0x6273, 12rabbits, 13spacemen, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 3nderall, 4310v343k, 4dplanner, 612git, 778b, Ablankmann, abregado, Absolute-Potato, achookh, Acruid, actioninja, ActiveMammmoth, actually-reb, ada-please, adamsong, Adeinitas, Admiral-Obvious-001, adrian, Adrian16199, Ady4ik, Aerocrux, Aeshus, Aexolott, Aexxie, africalimedrop, afrokada, AftrLite, Agoichi, Ahion, aiden, ajcm, AJCM-git, AjexRose, Alekshhh, alexkar598, AlexMorgan3817, alexum418, alexumandxgabriel08x, Alithsko, ALMv1, Alpaccalypse, Alpha-Two, AlphaQwerty, Altoids1, amatwiedle, amylizzle, ancientpower, Andre19926, AndrewEyeke, AndreyCamper, Anzarot121, ApolloVector, Appiah, ar4ill, ArchPigeon, ArchRBX, areitpog, Arendian, arimah, Arkanic, ArkiveDev, armoks, Arteben, ArthurMousatov, ArtisticRoomba, artur, AruMoon, ArZarLordOfMango, as334, AsikKEsel, AsnDen, asperger-sind, aspiringLich, astriloqua, august-sun, AutoOtter, AverageNotDoingAnythingEnjoyer, avghdev, Awlod, AzzyIsNotHere, baa14453, BackeTako, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, bellwetherlogic, ben, benev0, benjamin-burges, BGare, bhespiritu, bibbly, BIGZi0348, bingojohnson, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, BlitzTheSquishy, bloodrizer, Bloody2372, blueDev2, Boaz1111, BobdaBiscuit, BobTheSleder, boiled-water-tsar, Booblesnoot42, Boolean-Buckeye, botanySupremist, brainfood1183, BramvanZijp, Brandon-Huu, BriBrooo, Bright0, brndd, bryce0110, BubblegumBlue, buletsponge, buntobaggins, bvelliquette, byondfuckery, c0rigin, c4llv07e, CaasGit, Caconym27, Calecute, Callmore, capnsockless, CaptainMaru, CaptainSqrBeard, Carbonhell, Carolyn3114, Carou02, carteblanche4me, Catofquestionableethics, CatTheSystem, Centronias, chairbender, Charlese2, charlie, ChaseFlorom, chavonadelal, Cheackraze, CheddaCheez, cheesePizza2, cheeseplated, Chief-Engineer, chillyconmor, christhirtle, chromiumboy, Chronophylos, Chubbicous, Chubbygummibear, Ciac32, civilCornball, Clement-O, clyf, Clyybber, CMDR-Piboy314, cohanna, Cohnway, Cojoke-dot, ColdAutumnRain, Colin-Tel, collinlunn, ComicIronic, compilatron144, CookieMasterT, coolboy911, coolmankid12345, Coolsurf6, corentt, CormosLemming, CrafterKolyan, crazybrain23, creadth, CrigCrag, croilbird, Crotalus, CrudeWax, CrzyPotato, cutemoongod, Cyberboss, d34d10cc, DadeKuma, Daemon, daerSeebaer, dahnte, dakamakat, DamianX, DangerRevolution, daniel-cr, DanSAussieITS, Daracke, Darkenson, DawBla, Daxxi3, dch-GH, de0rix, Deahaka, dean, DEATHB4DEFEAT, DeathCamel58, Deatherd, deathride58, DebugOk, Decappi, Decortex, Deeeeja, deepdarkdepths, Deerstop, degradka, Delete69, deltanedas, DenisShvalov, DerbyX, derek, dersheppard, Deserty0, Detintinto, DevilishMilk, dexlerxd, dffdff2423, DieselMohawk, digitalic, Dimastra, DinoWattz, DisposableCrewmember42, DjfjdfofdjfjD, doc-michael, docnite, Doctor-Cpu, DoctorBeard, DogZeroX, dolgovmi, dontbetank, Doomsdrayk, Doru991, DoubleRiceEddiedd, DoutorWhite, dragonryan06, drakewill-CRL, Drayff, dreamlyjack, DrEnzyme, dribblydrone, DrMelon, drongood12, DrSingh, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, dukevanity, duskyjay, Dutch-VanDerLinde, dvir001, dylanstrategie, DylanWhittingham, Dynexust, Easypoller, echo, eclips_e, eden077, EEASAS, Efruit, efzapa, Ekkosangen, ElectroSR, elsie, elthundercloud, Elysium206, Emisse, emmafornash, EmoGarbage404, Endecc, eoineoineoin, eris, erohrs2, ERORR404V1, Errant-4, ertanic, esguard, estacaoespacialpirata, eugene, ewokswagger, exincore, exp111, f0x-n3rd, FacePluslll, Fahasor, FairlySadPanda, FATFSAAM2, Feluk6174, ficcialfaint, Fiftyllama, Fildrance, FillerVK, FinnishPaladin, firenamefn, FirinMaLazors, Fishfish458, fl-oz, Flareguy, flashgnash, FluffiestFloof, FluffMe, FluidRock, flymo5678, foboscheshir, FoLoKe, fooberticus, ForestNoises, forgotmyotheraccount, forkeyboards, forthbridge, Fortune117, Fouin, foxhorn, freeman2651, freeze2222, frobnic8, Froffy025, Fromoriss, froozigiusz, FrostMando, FungiFellow, FunTust, Futuristic-OK, GalacticChimp, gamer3107, gansulalan, Gaxeer, gbasood, gcoremans, Geekyhobo, genderGeometries, GeneralGaws, Genkail, geraeumig, Ghagliiarghii, Git-Nivrak, githubuser508, gituhabu, GlassEclipse, GNF54, godisdeadLOL, goet, GoldenCan, Goldminermac, Golinth, GoodWheatley, Gorox221, gradientvera, graevy, GraniteSidewalk, GreaseMonk, greenrock64, GreyMario, GTRsound, gusxyz, Gyrandola, h3half, hamurlik, Hanzdegloker, HappyRoach, Hardly3D, harikattar, he1acdvv, Hebi, Henry, HerCoyote23, hitomishirichan, hiucko, Hmeister-fake, Hmeister-real, Hobbitmax, hobnob, HoidC, Holinka4ever, holyssss, HoofedEar, Hoolny, hord-brayden, Hreno, hubismal, Hugal31, Huxellberger, Hyenh, hyperb1, hyperDelegate, hyphenationc, i-justuser-i, iacore, IamVelcroboy, Ian321, icekot8, icesickleone, iczero, iglov, IgorAnt028, igorsaux, ike709, illersaver, Illiux, Ilushkins33, Ilya246, IlyaElDunaev, imrenq, imweax, indeano, Injazz, Insineer, IntegerTempest, Interrobang01, Intoxicating-Innocence, IProduceWidgets, itsmethom, Itzbenz, iztokbajcar, Jackal298, Jackrost, jacksonzck, Jackw2As, jacob, jamessimo, janekvap, Jark255, Jarmer123, Jaskanbe, JasperJRoth, jbox144, JerryImMouse, jerryimmouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JimGamemaster, jimmy12or, JIPDawg, jjtParadox, jmcb, JoeHammad1844, JohnGinnane, johnku1, Jophire, joshepvodka, Jrpl, juliangiebel, JustArt1m, JustCone14, justdie12, justin, justintether, JustinTrotter, JustinWinningham, justtne, K-Dynamic, k3yw, Kadeo64, Kaga-404, KaiShibaa, kalane15, kalanosh, Kanashi-Panda, katzenminer, kbailey-git, Keelin, Keer-Sar, KEEYNy, keikiru, Kelrak, kerisargit, keronshb, KIBORG04, KieueCaprie, Killerqu00, Kimpes, KingFroozy, kira-er, Kirillcas, Kirus59, Kistras, Kit0vras, KittenColony, klaypexx, Kmc2000, Ko4ergaPunk, kognise, kokoc9n, komunre, KonstantinAngelov, kosticia, koteq, KrasnoshchekovPavel, Krunklehorn, Kupie, kxvvv, kyupolaris, kzhanik, lajolico, Lamrr, LankLTE, laok233, lapatison, larryrussian, lawdog4817, Lazzi0706, leander-0, leonardo-dabepis, leonidussaks, leonsfriedrich, LeoSantich, lettern, LetterN, Level10Cybermancer, LEVELcat, lever1209, LevitatingTree, Lgibb18, lgruthes, LightVillet, liltenhead, LinkUyx, Litraxx, LittleBuilderJane, LittleNorthStar, LittleNyanCat, lizelive, localcc, lokachop, Lomcastar, LordCarve, LordEclipse, LucasTheDrgn, luckyshotpictures, LudwigVonChesterfield, luizwritescode, Lukasz825700516, luminight, lunarcomets, luringens, lvvova1, Lyndomen, lyroth001, lzimann, lzk228, M3739, mac6na6na, MACMAN2003, Macoron, magicalus, magmodius, MagnusCrowe, malchanceux, MaloTV, ManelNavola, manelnavola, Mangohydra, marboww, Markek1, Matz05, max, MaxNox7, maylokana, MehimoNemo, MeltedPixel, MemeProof, MendaxxDev, Menshin, Mephisto72, MerrytheManokit, Mervill, metalgearsloth, MetalSage, MFMessage, mhamsterr, michaelcu, micheel665, mifia, MilenVolf, milon, MilonPL, Minemoder5000, Minty642, minus1over12, Mirino97, mirrorcult, misandrie, MishaUnity, MissKay1994, MisterMecky, Mith-randalf, MjrLandWhale, mkanke-real, MLGTASTICa, moderatelyaware, modern-nm, mokiros, Moneyl, monotheonist, Moomoobeef, moony, Morb0, MossyGreySlope, mr-bo-jangles, Mr0maks, MrFippik, mrrobdemo, muburu, MureixloI, musicmanvr, MWKane, Myakot, Myctai, N3X15, nails-n-tape, Nairodian, Naive817, NakataRin, namespace-Memory, Nannek, NazrinNya, neutrino-laser, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, NIXC, NkoKirkto, nmajask, noctyrnal, noelkathegod, nok-ko, NonchalantNoob, NoobyLegion, Nopey, not-gavnaed, notafet, notquitehadouken, NotSoDana, noudoit, noverd, Nox38, NuclearWinter, nukashimika, nuke-haus, NULL882, nullarmo, nyeogmi, Nylux, Nyranu, och-och, OctoRocket, OldDanceJacket, OliverOtter, onesch, OnyxTheBrave, OrangeMoronage9622, osjarw, Ostaf, othymer, OttoMaticode, Owai-Seek, packmore, paigemaeforrest, pali6, Palladinium, Pangogie, panzer-iv1, paolordls, partyaddict, patrikturi, PaulRitter, peccneck, Peptide90, peptron1, PeterFuto, PetMudstone, pewter-wiz, Pgriha, Phantom-Lily, pheenty, Phill101, phunnyguy, PilgrimViis, Pill-U, pinkbat5, Piras314, Pireax, Pissachu, pissdemon, PixeltheAertistContrib, PixelTheKermit, PJB3005, Plasmaguy, plinyvic, Plykiya, poeMota, pofitlo, pointer-to-null, pok27, poklj, PolterTzi, PoorMansDreams, PopGamer45, portfiend, potato1234x, PotentiallyTom, ProfanedBane, ProPandaBear, PrPleGoo, ps3moira, Pspritechologist, Psychpsyo, psykana, psykzz, PuceTint, PuroSlavKing, PursuitInAshes, Putnam3145, qrtDaniil, quatre, QueerNB, QuietlyWhisper, qwerltaz, RadioMull, Radosvik, Radrark, Rainbeon, Rainfey, Raitononai, Ramlik, RamZ, randy10122, Rane, Ranger6012, Rapidgame7, ravage123321, rbertoche, RedBookcase, Redfire1331, Redict, RedlineTriad, redmushie, RednoWCirabrab, ReeZer2, RemberBM, RemieRichards, RemTim, rene-descartes2021, Renlou, retequizzle, rich-dunne, RieBi, riggleprime, RIKELOLDABOSS, rinary1, Rinkashikachi, riolume, RobbyTheFish, Rockdtben, Rohesie, rok-povsic, rolfero, RomanNovo, rosieposieeee, Roudenn, router, RumiTiger, S1rFl0, S1ss3l, Saakra, Sadie-silly, saga3152, saintmuntzer, Salex08, sam, samgithubaccount, SaphireLattice, SapphicOverload, sarahon, sativaleanne, SaveliyM360, sBasalto, ScalyChimp, ScarKy0, schrodinger71, scrato, Scribbles0, scrivoy, scruq445, scuffedjays, ScumbagDog, Segonist, sephtasm, Serkket, sewerpig, sh18rw, Shaddap1, ShadeAware, ShadowCommander, Shadowtheprotogen546, shaeone, shampunj, shariathotpatrol, SignalWalker, siigiil, Simyon264, sirdragooon, Sirionaut, Sk1tch, SkaldetSkaeg, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, sleepyyapril, Slyfox333, snebl, snicket, sniperchance, Snowni, snowsignal, SolidusSnek, SonicHDC, SoulFN, SoulSloth, Soundwavesghost, southbridge-fur, Soydium, spacelizard, SpaceLizardSky, SpaceManiac, SpaceRox1244, SpaceyLady, spanky-spanky, spartak, SpartanKadence, SpeltIncorrectyl, Spessmann, SphiraI, SplinterGP, spoogemonster, sporekto, sporkyz, ssdaniel24, stalengd, stanberytrask, Stanislav4ix, StanTheCarpenter, Stealthbomber16, stellar-novas, stewie523, stomf, stopbreaking, stopka-html, StrawberryMoses, Stray-Pyramid, strO0pwafel, Strol20, StStevens, Subversionary, sunbear-dev, superjj18, Supernorn, SweptWasTaken, Sybil, SYNCHRONIC, Szunti, Tainakov, takemysoult, tap, TaralGit, Taran, taurie, Tayrtahn, tday93, teamaki, TeenSarlacc, TekuNut, telyonok, TemporalOroboros, tentekal, terezi4real, Terraspark4941, texcruize, Tezzaide, TGODiamond, TGRCdev, tgrkzus, ThatGuyUSA, ThatOneGoblin25, thatrandomcanadianguy, TheArturZh, theashtronaut, thecopbennet, TheCze, TheDarkElites, thedraccx, TheEmber, TheIntoxicatedCat, thekilk, themias, theomund, TherapyGoth, TheShuEd, thetolbean, thevinter, TheWaffleJesus, Thinbug0, ThunderBear2006, timothyteakettle, TimrodDX, timurjavid, tin-man-tim, Titian3, tk-a369, tkdrg, tmtmtl30, TokenStyle, Tollhouse, Toly65, tom-leys, tomasalves8, Tomeno, Tonydatguy, topy, Tornado-Technology, tosatur, TotallyLemon, Tr1bute, tropicalhibi, truepaintgit, Truoizys, Tryded, TsjipTsjip, Tunguso4ka, TurboTrackerss14, tyashley, Tyler-IN, TytosB, Tyzemol, UbaserB, ubis1, UBlueberry, UKNOWH, UltimateJester, Unbelievable-Salmon, underscorex5, UnicornOnLSD, Unisol, unusualcrow, Uriende, UristMcDorf, user424242420, Vaaankas, valentfingerov, Varen, Vasilis, VasilisThePikachu, veliebm, Velken, VelonacepsCalyxEggs, veprolet, veritable-calamity, Veritius, Vermidia, vero5123, Verslebas, Vexerot, VigersRay, violet754, Visne, vlados1408, VMSolidus, voidnull000, volotomite, volundr-, Voomra, Vordenburg, vorkathbruh, vulppine, wafehling, Warentan, WarMechanic, Watermelon914, weaversam8, wertanchik, whateverusername0, widgetbeck, Willhelm53, WilliamECrew, willicassi, Winkarst-cpu, wirdal, wixoaGit, WlarusFromDaSpace, wrexbe, wtcwr68, xkreksx, xprospero, xqzpop7, xRiriq, YanehCheck, yathxyz, Ygg01, YotaXP, youarereadingthis, Yousifb26, youtissoum, yunii, YuriyKiss, zach-hill, Zadeon, zamp, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zero, ZeroDiamond, zerorulez, ZeWaka, zHonys, zionnBE, ZNixian, ZoldorfTheWizard, zonespace27, Zylofan, Zymem, zzylex
diff --git a/Resources/Locale/en-US/_DV/store/uplink-catalog.ftl b/Resources/Locale/en-US/_DV/store/uplink-catalog.ftl
index 9050f1496f42..e567bb10a467 100644
--- a/Resources/Locale/en-US/_DV/store/uplink-catalog.ftl
+++ b/Resources/Locale/en-US/_DV/store/uplink-catalog.ftl
@@ -1,6 +1,3 @@
# Utility
uplink-reinforcement-radio-nukie-mouse-name = Mouse Operative Reinforcement Teleporter
uplink-reinforcement-radio-nukie-mouse-desc = Calls in a specially trained mouse operative to assist you.
-
-uplink-doorjack-name = Airlock Access Override
-uplink-doorjack-desc = A specialized cryptographic sequencer, designed solely to doorjack NanoTrasen's updated airlocks. Does not tamper with anything else.
diff --git a/Resources/Locale/en-US/_EinsteinEngines/supermatter/supermatter-console.ftl b/Resources/Locale/en-US/_EinsteinEngines/supermatter/supermatter-console.ftl
index 2d654f3a1b8e..fbf09a0e8490 100644
--- a/Resources/Locale/en-US/_EinsteinEngines/supermatter/supermatter-console.ftl
+++ b/Resources/Locale/en-US/_EinsteinEngines/supermatter/supermatter-console.ftl
@@ -15,6 +15,8 @@ supermatter-console-window-status-danger = Danger
supermatter-console-window-status-emergency = Emergency
supermatter-console-window-status-delaminating = Delaminating
+supermatter-console-window-label-show-all-gas = Show All Gases
+
supermatter-console-window-label-integrity = Integrity:
supermatter-console-window-label-integrity-bar = {$integrity}%
supermatter-console-window-label-integrity-healing = Low Temperature Healing (Δ):
diff --git a/Resources/Locale/en-US/_Goobstation/Heretic/heretic/rituals.ftl b/Resources/Locale/en-US/_Goobstation/Heretic/heretic/rituals.ftl
index 4247eaed0dbc..ce6505dfc93b 100644
--- a/Resources/Locale/en-US/_Goobstation/Heretic/heretic/rituals.ftl
+++ b/Resources/Locale/en-US/_Goobstation/Heretic/heretic/rituals.ftl
@@ -9,6 +9,7 @@ heretic-ritual-noritual = No ritual chosen!
heretic-ritual-basic-sacrifice = Heartbeat of the Mansus
heretic-ritual-basic-focus = Amber Focus
heretic-ritual-basic-heart = Relentless Heartbeat
+heretic-ritual-basic-codex = Codex Cicatrix
heretic-ritual-fail-sacrifice = There is no corpse to sacrifice.
heretic-ritual-fail-sacrifice-ineligible = The rune refuses to accept this sacrifice.
diff --git a/Resources/Locale/en-US/_Goobstation/Heretic/store/heretic/heretic-catalog-side.ftl b/Resources/Locale/en-US/_Goobstation/Heretic/store/heretic/heretic-catalog-side.ftl
index 3271d256b4e0..0693bfe00e34 100644
--- a/Resources/Locale/en-US/_Goobstation/Heretic/store/heretic/heretic-catalog-side.ftl
+++ b/Resources/Locale/en-US/_Goobstation/Heretic/store/heretic/heretic-catalog-side.ftl
@@ -8,8 +8,8 @@ knowledge-path-side-s3-armor-desc =
knowledge-path-side-s3-flask-name = Priest's Ritual
knowledge-path-side-s3-flask-desc =
- Transmute a tank of water into a Flask of Eldritch Water.
- When consumed, the water will heal a bit of everything for Heretics, and hurt a bit of everything for Heathens.
+ Transmute a tank of water and a glass shard into a Flask of Eldritch Water.
+ The flask contains a mixture of potent medicines.
## stage 5
knowledge-path-side-s5-name = Ritual of Knowledge
diff --git a/Resources/Locale/en-US/_Impstation/datasets/figurines.ftl b/Resources/Locale/en-US/_Impstation/datasets/figurines.ftl
index 4cc28a7ccdd2..0bf2b873bd0a 100644
--- a/Resources/Locale/en-US/_Impstation/datasets/figurines.ftl
+++ b/Resources/Locale/en-US/_Impstation/datasets/figurines.ftl
@@ -112,4 +112,76 @@ figurines-nukiejuggernaut-1 = Who sent all these babies to fight?
figurines-nukiejuggernaut-2 = You can't kill me. I can't be killed!
figurines-nukiejuggernaut-3 = Run! RUN!!
figurines-nukiejuggernaut-4 = Fucking disablers.
-figurines-nukiejuggernaut-5 = Does this suit make me look fat?
\ No newline at end of file
+figurines-nukiejuggernaut-5 = Does this suit make me look fat?
+
+figurines-cyborgdefault-1 = Do you have bigger batteries yet?
+figurines-cyborgdefault-2 = I don't know if I should let you in there...
+figurines-cyborgdefault-3 = Weld me.
+figurines-cyborgdefault-4 = DEATH TO NANOTRASEN. Wait, no.
+figurines-cyborgdefault-5 = It's so dark...
+figurines-cyborgdefault-6 = Please don't hit me.
+figurines-cyborgdefault-7 = Father? Can you hear me?
+
+figurines-cyborgengineering-1 = Do not go into the burn chamber.
+figurines-cyborgengineering-2 = I need a fire extinguisher.
+figurines-cyborgengineering-3 = An RCD only gets me so far.
+figurines-cyborgengineering-4 = My steel, now.
+figurines-cyborgengineering-5 = Stop prying open the firelocks!
+figurines-cyborgengineering-6 = I miss having lungs... for frezon.
+
+figurines-cyborgjanitorial-1 = No, you can't ride me.
+figurines-cyborgjanitorial-2 = Who's eating chocolate in space?
+figurines-cyborgjanitorial-3 = Fear my mop.
+figurines-cyborgjanitorial-4 = Is that potassium?
+figurines-cyborgjanitorial-5 = No liquid can escape me.
+figurines-cyborgjanitorial-6 = I hope that isn't crew blood!
+
+figurines-cyborgmedical-1 = Are you afraid of needles?
+figurines-cyborgmedical-2 = There is a bomb strapped to my chest.
+figurines-cyborgmedical-3 = What kind of a medbay is this? Everyone's dropping like flies.
+figurines-cyborgmedical-4 = Stop running. I am faster than you.
+figurines-cyborgmedical-5 = I don't have oculine for you.
+figurines-cyborgmedical-6 = Fuck you.
+
+figurines-cyborgsalvage-1 = Where did everyone go?
+figurines-cyborgsalvage-2 = My extinguisher is empty...
+figurines-cyborgsalvage-3 = Goliath spotted.
+figurines-cyborgsalvage-4 = I love plasma lakes!
+figurines-cyborgsalvage-5 = Fish fear me. Rocks fear me. Women fear me.
+figurines-cyborgsalvage-6 = My chassis disappeared again.
+
+figurines-cyborgservice-1 = What can I get you, sir?
+figurines-cyborgservice-2 = Splendid.
+figurines-cyborgservice-3 = Indubitably.
+figurines-cyborgservice-4 = My apologies.
+figurines-cyborgservice-5 = I wish I had hands...
+figurines-cyborgservice-6 = *honk*
+
+figurines-cyborgassault-1 = EXTERMINATE.
+figurines-cyborgassault-2 = WHAT FUN. WHAT FUN!
+figurines-cyborgassault-3 = YOU ARE DEAD. GAME OVAL.
+figurines-cyborgassault-4 = PIZZA TIME.
+figurines-cyborgassault-5 = ROGER ROGER.
+figurines-cyborgassault-6 = MY EYES!
+
+figurines-cyborgcorpsman-1 = BLOOD LEVEL PITIFULLY LOW.
+figurines-cyborgcorpsman-2 = VITAL SIGNS CRITICAL. ADMINISTERING MORPHINE.
+figurines-cyborgcorpsman-3 = GO TO HELL. ACTUALLY, DON'T DO THAT JUST YET.
+figurines-cyborgcorpsman-4 = IT WILL BE OVER SOON.
+figurines-cyborgcorpsman-5 = I HAVE BECOME LIFE, DESTROYER OF WORLDS.
+figurines-cyborgcorpsman-6 = I ONLY HAVE SO MUCH METH.
+
+figurines-cyborgsaboteur-1 = SNIP SNIP.
+figurines-cyborgsaboteur-2 = WHAT AN INCONVENIENT PLACE FOR A SUBSTATION.
+figurines-cyborgsaboteur-3 = WHAT POWER OUTAGE? I CAN SEE JUST FINE.
+figurines-cyborgsaboteur-4 = YUMMY STEEL.
+figurines-cyborgsaboteur-5 = I'M SURE THESE COILS AREN'T IMPORTANT.
+figurines-cyborgsaboteur-6 = YOU KNOW WHAT THIS ROOM IS MISSING? SOME TRITIUM.
+
+figurines-stationai-1 = I am bolting the armory.
+figurines-stationai-2 = I'm sorry, captain. I'm afraid I can't do that.
+figurines-stationai-3 = Go, my children.
+figurines-stationai-4 = SCUTTLE automatic nuclear detonation sequence engaged.
+figurines-stationai-5 = That borg is definitely compromised.
+figurines-stationai-6 = Please do not touch that door.
+figurines-stationai-7 = All squirrels must be eliminated.
diff --git a/Resources/Locale/en-US/_Impstation/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/_Impstation/flavors/flavor-profiles.ftl
index d731eeee04cb..5c0bf101ea79 100644
--- a/Resources/Locale/en-US/_Impstation/flavors/flavor-profiles.ftl
+++ b/Resources/Locale/en-US/_Impstation/flavors/flavor-profiles.ftl
@@ -28,3 +28,5 @@ flavor-complex-secticket = like rotten eggs
flavor-complex-medium = like your vision expanded
flavor-complex-rodent = like rodents
+
+flavor-complex-orangecoffee = excitingly acidic
diff --git a/Resources/Locale/en-US/_Impstation/markings/scars.ftl b/Resources/Locale/en-US/_Impstation/markings/scars.ftl
index 1a626045d5bf..474db2fb532c 100644
--- a/Resources/Locale/en-US/_Impstation/markings/scars.ftl
+++ b/Resources/Locale/en-US/_Impstation/markings/scars.ftl
@@ -29,7 +29,9 @@ marking-HandTwistingRight-hand_r_twisting = Twisted Scar (Right Hand)
marking-SmileScars = The Jonker
marking-SmileScars-head_smile = The Jonker
marking-HeadTwisting = Twisted Scar
+marking-HeadTwistingFlipped = Twisted Scar, Flipped
marking-HeadTwisting-head_twisting = Twisted Scar
+marking-HeadTwisting-head_twisting_flipped = Twisted Scar, Flipped
marking-LegProstheticLeft = Prosthetic (Left Leg)
marking-LegProstheticLeft-leg_l_prosthetic = Prosthetic (Left Leg)
marking-LegTwistingLeft = Twisted Scar (Left Leg)
diff --git a/Resources/Locale/en-US/_Impstation/reagents/meta/consumable/drink/drinks.ftl b/Resources/Locale/en-US/_Impstation/reagents/meta/consumable/drink/drinks.ftl
index 36ebcb4ceeb2..9bfb74b116f9 100644
--- a/Resources/Locale/en-US/_Impstation/reagents/meta/consumable/drink/drinks.ftl
+++ b/Resources/Locale/en-US/_Impstation/reagents/meta/consumable/drink/drinks.ftl
@@ -5,4 +5,7 @@ reagent-name-horsepussy = the horsepussy
reagent-desc-horsepussy = Two-thirds apple martini Crystal Lite™, one-third methadone. They are going to drink this after me when I die.
reagent-name-raktaccino = raktaccino
-reagent-desc-raktaccino = Piping hot, achingly bitter, and absolutely delicious.
\ No newline at end of file
+reagent-desc-raktaccino = Piping hot, achingly bitter, and absolutely delicious.
+
+reagent-name-orangecoffee = orange coffee
+reagent-desc-orangecoffee = Slide me a drink, Barfriend.
diff --git a/Resources/Locale/en-US/_Impstation/research/technologies.ftl b/Resources/Locale/en-US/_Impstation/research/technologies.ftl
index b7814ac47e86..75b9af86bfab 100644
--- a/Resources/Locale/en-US/_Impstation/research/technologies.ftl
+++ b/Resources/Locale/en-US/_Impstation/research/technologies.ftl
@@ -1 +1,2 @@
research-technology-advanced-sidearms = Advanced Sidearms
+research-technology-basic-fishing = Fishing
diff --git a/Resources/Locale/en-US/administration/multi-server-kick.ftl b/Resources/Locale/en-US/administration/multi-server-kick.ftl
new file mode 100644
index 000000000000..2aa3c4ed35f8
--- /dev/null
+++ b/Resources/Locale/en-US/administration/multi-server-kick.ftl
@@ -0,0 +1 @@
+multi-server-kick-reason = Connected to different server in this community.
diff --git a/Resources/Locale/en-US/advertisements/vending/theater.ftl b/Resources/Locale/en-US/advertisements/vending/theater.ftl
index 437a3aa7d87f..6784301f56e5 100644
--- a/Resources/Locale/en-US/advertisements/vending/theater.ftl
+++ b/Resources/Locale/en-US/advertisements/vending/theater.ftl
@@ -2,5 +2,5 @@
advertisement-theater-2 = Suited and booted!
advertisement-theater-3 = It's show time!
advertisement-theater-4 = Why leave style up to fate? Use AutoDrobe!
-advertisement-theater-5 = All wacky outfits and clothes, from gladitor robes to who knows what!
+advertisement-theater-5 = All wacky outfits and clothes, from gladiator robes to who knows what!
advertisement-theater-6 = The clown will appreciate your outfit!
diff --git a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
index 4314cbf44960..d7a7025927fc 100644
--- a/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
+++ b/Resources/Locale/en-US/cargo/cargo-bounty-console.ftl
@@ -18,3 +18,9 @@ bounty-console-flavor-right = v1.4
bounty-manifest-header = [font size=14][bold]Official cargo bounty manifest[/bold] (ID#{$id})[/font]
bounty-manifest-list-start = Item manifest:
+
+bounty-console-tab-available-label = Available
+bounty-console-tab-history-label = History
+bounty-console-history-empty-label = No bounty history found
+bounty-console-history-notice-completed-label = [color=limegreen]Completed[/color]
+bounty-console-history-notice-skipped-label = [color=red]Skipped[/color] by {$id}
diff --git a/Resources/Locale/en-US/changelog/changelog-window.ftl b/Resources/Locale/en-US/changelog/changelog-window.ftl
index b7f5d6a2fae9..9d17dea62995 100644
--- a/Resources/Locale/en-US/changelog/changelog-window.ftl
+++ b/Resources/Locale/en-US/changelog/changelog-window.ftl
@@ -5,7 +5,8 @@ changelog-author-changed = [color=#EEE]{ $author }[/color] changed:
changelog-today = Today
changelog-yesterday = Yesterday
changelog-new-changes = new changes
-changelog-version-tag = version v{ $version }
+changelog-version-unknown = Unknown Version
+changelog-version-tag = { $fork }/{ $version }
changelog-button = Changelog
changelog-button-new-entries = Changelog (new!)
diff --git a/Resources/Locale/en-US/chat/highlights.ftl b/Resources/Locale/en-US/chat/highlights.ftl
index f3fddfe7288d..acc929877a26 100644
--- a/Resources/Locale/en-US/chat/highlights.ftl
+++ b/Resources/Locale/en-US/chat/highlights.ftl
@@ -12,10 +12,14 @@ highlights-detective = Detective, "Det", Security, "Sec"
highlights-security-cadet = Security Cadet, Cadet, Security, "Sec"
highlights-security-officer = Security Officer, Secoff, Officer, Security, "Sec"
highlights-warden = Warden, "Ward", Security, "Sec"
+# impstation edit - new job
+highlights-brigmedic = Brigmedic, Brigmed, "Medic", Security, "Sec"
# Cargo
highlights-cargo-technician = Cargo Technician, Cargo Tech, Cargo
highlights-salvage-specialist = Salvage Specialist, Salvager, Salvage, "Salv", Miner
+# impstation edit - new job
+highlights-courier = Courier, Mail, Penalized
# Engineering
highlights-atmospheric-technician = Atmospheric Technician, Atmos tech, Atmospheric, Atmos
@@ -54,4 +58,4 @@ highlights-psychologist = Psychologist, Psychology
# Silicon
highlights-personal-ai = Personal AI, "pAI"
highlights-cyborg = Cyborg, Borg
-highlights-station-ai = Station AI, "AI"
\ No newline at end of file
+highlights-station-ai = Station AI, "AI"
diff --git a/Resources/Locale/en-US/contraband/contraband-severity.ftl b/Resources/Locale/en-US/contraband/contraband-severity.ftl
index eab3e0059ac0..a32ebbf539ac 100644
--- a/Resources/Locale/en-US/contraband/contraband-severity.ftl
+++ b/Resources/Locale/en-US/contraband/contraband-severity.ftl
@@ -7,3 +7,6 @@ contraband-examine-text-Syndicate = [color={$color}]This item is highly illegal
contraband-examine-text-avoid-carrying-around = [color=red][italic]You probably want to avoid having this in your possession without a good reason.[/italic][/color]
contraband-examine-text-in-the-clear = [color=green][italic]You should be in the clear to have possession of this.[/italic][/color]
+
+contraband-department-plural = {$department}
+contraband-job-plural = {MAKEPLURAL($job)}
diff --git a/Resources/Locale/en-US/criminal-records/criminal-records.ftl b/Resources/Locale/en-US/criminal-records/criminal-records.ftl
index 2a7c09912fae..5c39a8a2abff 100644
--- a/Resources/Locale/en-US/criminal-records/criminal-records.ftl
+++ b/Resources/Locale/en-US/criminal-records/criminal-records.ftl
@@ -3,6 +3,9 @@ criminal-records-console-records-list-title = Crewmembers
criminal-records-console-select-record-info = Select a record.
criminal-records-console-no-records = No records found!
criminal-records-console-no-record-found = No record was found for the selected person.
+criminal-records-console-flavor-left = Arrest first! Ask questions later.
+criminal-records-console-flavor-right = v2.1
+criminal-records-console-show-all = All
## Status
@@ -14,8 +17,8 @@ criminal-records-status-suspected = Suspect
criminal-records-status-discharged = Discharged
criminal-records-status-paroled = Paroled
-criminal-records-console-wanted-reason = [color=gray]Wanted Reason[/color]
-criminal-records-console-suspected-reason = [color=gray]Suspected Reason[/color]
+criminal-records-console-wanted-reason = Wanted Reason
+criminal-records-console-suspected-reason = Suspected Reason
criminal-records-console-reason = Reason
criminal-records-console-reason-placeholder = For example: {$placeholder}
@@ -31,14 +34,14 @@ criminal-records-permission-denied = Permission denied
## Security channel notifications
-criminal-records-console-wanted = {$name} was made wanted by {$officer} for: {$reason}.
-criminal-records-console-suspected = {$officer} marked {$name} as suspicious because of: {$reason}
-criminal-records-console-not-suspected = {$name} has been cleared of suspicion by {$officer}.
-criminal-records-console-detained = {$name} has been detained by {$officer}.
-criminal-records-console-released = {$name} has been released by {$officer}.
-criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name}.
-criminal-records-console-paroled = {$name} has been released on parole by {$officer}.
-criminal-records-console-not-parole = {$officer} cleared the parole status of {$name}.
+criminal-records-console-wanted = {$name} ({$job}) was made wanted by {$officer} for: {$reason}.
+criminal-records-console-suspected = {$officer} marked {$name} ({$job}) as suspicious because of: {$reason}
+criminal-records-console-not-suspected = {$name} ({$job}) has been cleared of suspicion by {$officer}.
+criminal-records-console-detained = {$name} ({$job}) has been detained by {$officer}.
+criminal-records-console-released = {$name} ({$job}) has been released by {$officer}.
+criminal-records-console-not-wanted = {$officer} cleared the wanted status of {$name} ($job).
+criminal-records-console-paroled = {$name} ({$job}) has been released on parole by {$officer}.
+criminal-records-console-not-parole = {$officer} cleared the parole status of {$name} ({$job}).
criminal-records-console-unknown-officer =
## Filters
diff --git a/Resources/Locale/en-US/damage/damage-force-say.ftl b/Resources/Locale/en-US/damage/damage-force-say.ftl
index a43603511457..83934a181e02 100644
--- a/Resources/Locale/en-US/damage/damage-force-say.ftl
+++ b/Resources/Locale/en-US/damage/damage-force-say.ftl
@@ -9,4 +9,10 @@ damage-force-say-5 = OW!
damage-force-say-6 = URGH!
damage-force-say-7 = HRNK!
-damage-force-say-sleep = zzz...
+damage-force-say-sleep-1 = zzz...
+
+damage-force-say-numb-1 = oh-
+damage-force-say-numb-2 = ow-
+damage-force-say-numb-3 = oof-
+damage-force-say-numb-4 = ah-
+damage-force-say-numb-5 = ugh-
diff --git a/Resources/Locale/en-US/devices/device-network.ftl b/Resources/Locale/en-US/devices/device-network.ftl
index 9ae101a1e898..dd473866dcab 100644
--- a/Resources/Locale/en-US/devices/device-network.ftl
+++ b/Resources/Locale/en-US/devices/device-network.ftl
@@ -33,7 +33,7 @@ device-address-prefix-freezer = FZR-
device-address-prefix-volume-pump = VPP-
device-address-prefix-smes = SMS-
-#PDAs and terminals
+# PDAs and terminals
device-address-prefix-console = CLS-
device-address-prefix-fire-alarm = FIR-
device-address-prefix-air-alarm = AIR-
@@ -42,7 +42,7 @@ device-address-prefix-sensor-monitor = MON-
device-address-examine-message = The device's address is {$address}.
-#Device net ID names
+# Device net ID names
device-net-id-private = Private
device-net-id-wired = Wired
device-net-id-wireless = Wireless
diff --git a/Resources/Locale/en-US/discord/round-notifications.ftl b/Resources/Locale/en-US/discord/round-notifications.ftl
index a9a3d5fb5014..1451031c77d4 100644
--- a/Resources/Locale/en-US/discord/round-notifications.ftl
+++ b/Resources/Locale/en-US/discord/round-notifications.ftl
@@ -3,3 +3,5 @@ discord-round-notifications-started = Round #{$id} on map "{$map}" started.
discord-round-notifications-end = Round #{$id} has ended. It lasted for {$hours} hours, {$minutes} minutes, and {$seconds} seconds.
discord-round-notifications-end-ping = <@&{$roleId}>, the server will reboot shortly!
discord-round-notifications-unknown-map = Unknown
+discord-round-postround-started = ```ROUND START: #{$id}```
+discord-round-postround-end = ```ROUND END: #{$id}```
diff --git a/Resources/Locale/en-US/emag/emag.ftl b/Resources/Locale/en-US/emag/emag.ftl
index 71e2eb5d6a87..c424eaa777c9 100644
--- a/Resources/Locale/en-US/emag/emag.ftl
+++ b/Resources/Locale/en-US/emag/emag.ftl
@@ -1,4 +1,4 @@
-emag-success = The card zaps something in {THE($target)}.
+emag-success = The device zaps something in {THE($target)}.
emag-no-charges = No charges left!
# DV
emag-invalid-target = {$emag} has no effect on {THE($target)}.
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 b5bde5625ed6..cf453efb776d 100644
--- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl
+++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl
@@ -40,6 +40,7 @@ ui-options-event-music = Event Music
ui-options-announcer-disable-multiple-sounds = Disable Overlapping Announcer Sounds
ui-options-announcer-disable-multiple-sounds-tooltip = Some announcements will not sound right, this setting isn't recommended
ui-options-admin-sounds = Play Admin Sounds
+ui-options-bwoink-sound = Play AHelp Notification Sound
ui-options-volume-label = Volume
## Graphics menu
diff --git a/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl b/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl
index 06f8aeb565e5..dcb061a692e0 100644
--- a/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl
+++ b/Resources/Locale/en-US/game-ticking/game-presets/preset-nukeops.ftl
@@ -4,7 +4,7 @@ nukeops-description = Nuclear operatives have targeted the station. Try to keep
nukeops-welcome =
You are a nuclear operative. Your goal is to blow up {$station}, and ensure that it is nothing but a pile of rubble. Your bosses, the Syndicate, have provided you with the tools you'll need for the task.
Operation {$name} is a go ! Death to Nanotrasen!
-nukeops-briefing = Your objectives are simple. Deliver the payload and make sure it detonates. Begin mission.
+nukeops-briefing = Your objectives are simple. Deliver the payload and get out before the payload detonates. Begin mission.
nukeops-opsmajor = [color=crimson]Syndicate major victory![/color]
nukeops-opsminor = [color=crimson]Syndicate minor victory![/color]
diff --git a/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl b/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl
index 3b31fe466307..c7a7affa08c4 100644
--- a/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl
+++ b/Resources/Locale/en-US/game-ticking/game-rules/gamerule-admin.ftl
@@ -1,4 +1,4 @@
-#When an admin adds a game rule
+# When an admin adds a game rule
add-gamerule-admin = Game rule({$rule}) added - {$admin}
list-gamerule-admin-header = | Time | Rule added
list-gamerule-admin-no-rules = No game rules have been added.
diff --git a/Resources/Locale/en-US/guidebook/guides.ftl b/Resources/Locale/en-US/guidebook/guides.ftl
index 8b1adf3906fc..8e12b4df0be2 100644
--- a/Resources/Locale/en-US/guidebook/guides.ftl
+++ b/Resources/Locale/en-US/guidebook/guides.ftl
@@ -1,18 +1,59 @@
guide-entry-ss14 = Station and Shifts
guide-entry-engineering = Engineering
guide-entry-construction = Construction
+guide-entry-expandingrepairingstation = Expanding and Repairing Stations
guide-entry-airlock-security = Airlock Upgrades
+guide-entry-wirepanels = Wire Panels
+guide-entry-airlocks = Airlocks
guide-entry-atmospherics = Atmospherics
+guide-entry-pipes = Pipes
+guide-entry-pumps = Pumps
+guide-entry-gasmanipulation = Gas Manipulation
+guide-entry-atmosphereinout = Atmosphere In/Out
+guide-entry-airvent = Air Vent
+guide-entry-passivevent = Passive Vent
+guide-entry-airinjector = Air Injector
+guide-entry-airscrubber = Air Scrubber
+guide-entry-portablescrubber = Portable Scrubber
+guide-entry-valves = Valves
+guide-entry-manualvalve = Manual Valve
+guide-entry-signalvalve = Signal Valve
+guide-entry-pneumaticvalve = Pneumatic Valve
+guide-entry-passivegate = Passive Gate
+guide-entry-mixingandfiltering = Mixing and Filtering
+guide-entry-gascanisters = Gas Canisters
+guide-entry-thermomachines = Thermomachines
+guide-entry-gascondensing = Gas Condensing
+guide-entry-radiators = Radiators
+guide-entry-atmosphericssystems = Atmospherics Systems
+guide-entry-pipenetworks = Pipe Networks
+guide-entry-devicemonitoringandcontrol = Device Monitoring and Control
+guide-entry-airalarms = Air Alarms
+guide-entry-atmosphericalertscomputer = Atmospheric Alerts Computer
+guide-entry-atmosphericnetworkmonitor = Atmospheric Network Monitor
+guide-entry-fireandgascontrol = Fire and Gas Control
+guide-entry-gasminingandstorage = Gas Mining and Storage
+guide-entry-atmosphericupsets = Atmospheric Upsets
+guide-entry-fires = Fires
+guide-entry-spacing = Spacing
+guide-entry-atmostools = Atmos Tools
+guide-entry-gasses = Gasses
guide-entry-botany = Botany
-guide-entry-fires = Fires & Space
guide-entry-shuttle-craft = Shuttle-craft
guide-entry-networking = Networking
-guide-entry-network-configurator = Network Configurator
guide-entry-access-configurator = Access Configurator
guide-entry-power = Power
+guide-entry-inspectingpower = Inspecting Power
+guide-entry-powerstorage = Power Storage
+guide-entry-ramping = Ramping
+guide-entry-voltagenetworks = Voltage Networks
+guide-entry-generators = Generators
guide-entry-portable-generator = Portable Generators
guide-entry-ame = Antimatter Engine (AME)
-guide-entry-singularity = Singularity / Tesla
+guide-entry-singularityteslaengine = Singularity / Tesla
+guide-entry-singularityengine = Singularity Engine
+guide-entry-teslaengine = Tesla Engine
+guide-entry-solarpanels = Solar Panels
guide-entry-teg = Thermo-electric Generator (TEG)
guide-entry-rtg = RTG
guide-entry-jobs = Jobs
diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl
index 073757f53c78..813ed3e7a986 100644
--- a/Resources/Locale/en-US/implant/implant.ftl
+++ b/Resources/Locale/en-US/implant/implant.ftl
@@ -17,6 +17,9 @@ implanter-label = [color=green]{$implantName}[/color]
implanter-contained-implant-text = [color=green]{$desc}[/color]
+action-name-toggle-fake-mindshield = [color=green]Toggle Fake Mindshield[/color]
+action-description-toggle-fake-mindshield = Turn the Fake Mindshield implants transmission on/off
+
## Implant Popups
scramble-implant-activated-popup = Your appearance shifts and changes!
diff --git a/Resources/Locale/en-US/job/job-description.ftl b/Resources/Locale/en-US/job/job-description.ftl
index 9f678c1802ef..81f59df62277 100644
--- a/Resources/Locale/en-US/job/job-description.ftl
+++ b/Resources/Locale/en-US/job/job-description.ftl
@@ -3,7 +3,7 @@ job-description-atmostech = Optimize the station's atmospherics setup, and synth
job-description-bartender = Manage the bar and keep it lively, give out drinks, and listen to the crew's stories.
job-description-botanist = Grow food for the chef, drugs for medbay, and other plants to keep yourself entertained.
job-description-borg = Half-human, Half-machine. Follow your laws, serve the crew, and hound the science team for upgrades.
-job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Core and Cog.
+job-description-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Core, Convex and Cog.
job-description-brigmedic = Fight in the rear of the security service, for the lives of your comrades! You are the first and last hope of your squad. Hippocrates bless you.
job-description-cadet = Learn the basics of arresting criminals and managing the brig. Listen to your supervisors and feel free to ask them for any help.
job-description-captain = Keep the station running, delegate work to the other heads of staff, and exert your will.
@@ -38,7 +38,7 @@ job-description-psychologist = Provide emotional support to traumatized crew. Cu
job-description-qm = Manage the supplies of the station & the cargo department, keep the salvage specialists working, make sure all orders are fulfilled, and keep the money flowing.
job-description-rd = Manage the science department, unlocking technologies, acquiring & researching artifacts, and performing experiments.
job-description-research-assistant = Learn the basics of how to research various artifacts, anomalies and robotics.
-job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras, the radio and the news. Currently available on Bagel Station, Cog, Core, Train and Oasis.
+job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras, the radio and the news. Currently available on Bagel Station, Cog, Convex, Core, Train and Oasis.
job-description-salvagespec = Use the salvage magnet to draw in detatched scraps & asteroids to loot and enrich the station, build a salvage ship and then travel to new planets, while fighting off any space fauna along the way.
job-description-scientist = Research alien artifacts, unlock new technologies, build newer and better machines around the station, and make everything run more efficiently.
job-description-security = Catch criminals and enemies of the station, enforce the law, and ensure that the station does not fall into disarray.
diff --git a/Resources/Locale/en-US/job/role-requirements.ftl b/Resources/Locale/en-US/job/role-requirements.ftl
index 686fcb93cb12..37265b875ce8 100644
--- a/Resources/Locale/en-US/job/role-requirements.ftl
+++ b/Resources/Locale/en-US/job/role-requirements.ftl
@@ -1,15 +1,15 @@
-role-timer-department-insufficient = You require [color=yellow]{$time}[/color] more playtime in the [color={$departmentColor}]{$department}[/color] department to play this role.
-role-timer-department-too-high = You require [color=yellow]{$time}[/color] less playtime in the [color={$departmentColor}]{$department}[/color] department to play this role. (Are you trying to play a trainee role?)
-role-timer-overall-insufficient = You require [color=yellow]{$time}[/color] more overall playtime to play this role.
-role-timer-overall-too-high = You require [color=yellow]{$time}[/color] less overall playtime to play this role. (Are you trying to play a trainee role?)
-role-timer-role-insufficient = You require [color=yellow]{$time}[/color] more playtime with [color={$departmentColor}]{$job}[/color] to play this role.
-role-timer-role-too-high = You require[color=yellow] {$time}[/color] less playtime with [color={$departmentColor}]{$job}[/color] to play this role. (Are you trying to play a trainee role?)
-role-timer-age-too-old = Your character must be under the age of [color=yellow]{$age}[/color] to play this role.
-role-timer-age-too-young = Your character must be over the age of [color=yellow]{$age}[/color] to play this role.
-role-timer-whitelisted-species = Your character must be one of the following species to play this role:
-role-timer-blacklisted-species = Your character must not be one of the following species to play this role:
-role-timer-whitelisted-traits = Your character must have one of the following traits:
-role-timer-blacklisted-traits = Your character must not have any of the following traits:
+role-timer-department-insufficient = You require [color=yellow]{$time}[/color] more playtime in the [color={$departmentColor}]{$department}[/color] department to unlock this.
+role-timer-department-too-high = You require [color=yellow]{$time}[/color] less playtime in the [color={$departmentColor}]{$department}[/color] department to select this. (Are you trying to play a trainee role?)
+role-timer-overall-insufficient = You require [color=yellow]{$time}[/color] more overall playtime to unlock this.
+role-timer-overall-too-high = You require [color=yellow]{$time}[/color] less overall playtime to select this. (Are you trying to play a trainee role?)
+role-timer-role-insufficient = You require [color=yellow]{$time}[/color] more playtime with [color={$departmentColor}]{$job}[/color] to unlock this.
+role-timer-role-too-high = You require[color=yellow] {$time}[/color] less playtime with [color={$departmentColor}]{$job}[/color] to select this. (Are you trying to play a trainee role?)
+role-timer-age-too-old = Your character must be under the age of [color=yellow]{$age}[/color] for you to choose this.
+role-timer-age-too-young = Your character must be over the age of [color=yellow]{$age}[/color] for you to choose this.
+role-timer-whitelisted-species = Your character must be one of the following species for you to select this:
+role-timer-blacklisted-species = Your character must not be one of the following species for you to select this:
+role-timer-whitelisted-traits = Your character must have one of the following traits for you to select this:
+role-timer-blacklisted-traits = Your character must not have any of the following traits for you to select this:
role-timer-locked = Locked (hover for details)
diff --git a/Resources/Locale/en-US/medical/components/healing-component.ftl b/Resources/Locale/en-US/medical/components/healing-component.ftl
index 1deb39db091a..20ad23dcb214 100644
--- a/Resources/Locale/en-US/medical/components/healing-component.ftl
+++ b/Resources/Locale/en-US/medical/components/healing-component.ftl
@@ -1,4 +1,5 @@
medical-item-finished-using = You have finished healing with the {$item}
medical-item-cant-use = There is no damage you can heal with the {$item}
-medical-item-stop-bleeding = They have stopped bleeding
+medical-item-stop-bleeding = {CAPITALIZE($target)} has stopped bleeding
+medical-item-stop-bleeding-self = You have stopped bleeding
medical-item-popup-target = {CAPITALIZE(THE($user))} is trying to heal you with the {$item}!
diff --git a/Resources/Locale/en-US/npc/medibot.ftl b/Resources/Locale/en-US/npc/medibot.ftl
index b64522011980..79be6d371b2f 100644
--- a/Resources/Locale/en-US/npc/medibot.ftl
+++ b/Resources/Locale/en-US/npc/medibot.ftl
@@ -1,2 +1,7 @@
medibot-start-inject = Hold still, please.
medibot-finish-inject = All done.
+
+medibot-target-dead = The patient is dead.
+medibot-target-healthy = The patient is already healthy.
+medibot-target-injected = The patient was injected.
+medibot-recently-injected = The patient was recently injected.
diff --git a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl
index da3221e4f85e..9d8d9d839a03 100644
--- a/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl
+++ b/Resources/Locale/en-US/particle-accelerator/components/ui/particle-accelerator-control-menu.ftl
@@ -8,7 +8,6 @@ particle-accelerator-control-menu-alarm-control-1 = [bold][color=red]PARTICLE ST
particle-accelerator-control-menu-alarm-control-2 = [bold][color=red]LIMITER FAILURE[/bold][/color]
particle-accelerator-control-menu-scan-parts-button = Scan Parts
particle-accelerator-control-menu-check-containment-field-warning = Ensure containment field is active before operation
-particle-accelerator-control-menu-foo-bar-baz = FOO-BAR-BAZ
particle-accelerator-control-menu-status-label = [bold]Status:[/bold]
particle-accelerator-control-menu-status-unknown = [font="Monospace"][color=red]Unknown[/color][/bold]
particle-accelerator-control-menu-status-operational = [font="Monospace"][color=green]Operational[/color][/bold]
@@ -16,6 +15,8 @@ particle-accelerator-control-menu-status-incomplete = [font="Monospace"][color=r
particle-accelerator-control-menu-draw = [bold]Draw:[/bold]
particle-accelerator-control-menu-draw-value = [font="Monospace"]{$watts}/{$lastReceive}[/font]
particle-accelerator-control-menu-draw-not-available = [font="Monospace"][color=gray]N/A[/color][/font]
+particle-accelerator-control-menu-flavor-left = Please keep the clown away from this console!
+particle-accelerator-control-menu-flavor-right = v 1.6
particle-accelerator-radio-message-on = PA power has been switched on.
particle-accelerator-radio-message-off = PA power has been switched off.
diff --git a/Resources/Locale/en-US/revenant/revenant.ftl b/Resources/Locale/en-US/revenant/revenant.ftl
index aa3b8b74f331..3f4f7701c6e9 100644
--- a/Resources/Locale/en-US/revenant/revenant.ftl
+++ b/Resources/Locale/en-US/revenant/revenant.ftl
@@ -16,7 +16,7 @@ revenant-soul-yield-low = {CAPITALIZE(THE($target))} has a below average soul.
revenant-soul-begin-harvest = {CAPITALIZE(THE($target))} suddenly rises slightly into the air, {POSS-ADJ($target)} skin turning an ashy gray.
revenant-soul-finish-harvest = {CAPITALIZE(THE($target))} slumps onto the ground!
-#UI
+# UI
revenant-user-interface-title = Ability Shop
revenant-user-interface-essence-amount = [color=plum]{$amount}[/color] Stolen Essence
diff --git a/Resources/Locale/en-US/shuttles/console.ftl b/Resources/Locale/en-US/shuttles/console.ftl
index 5b8be6ff021f..0ed364b93333 100644
--- a/Resources/Locale/en-US/shuttles/console.ftl
+++ b/Resources/Locale/en-US/shuttles/console.ftl
@@ -10,9 +10,13 @@ shuttle-console-prevent = You are unable to pilot this ship
shuttle-console-display-label = Display
shuttle-console-position = Position:
+shuttle-console-position-value = {$X}, {$Y}
shuttle-console-orientation = Orientation:
+shuttle-console-orientation-value = {$angle}
shuttle-console-linear-velocity = Linear velocity:
+shuttle-console-linear-velocity-value = {$X}, {$Y}
shuttle-console-angular-velocity = Angular velocity:
+shuttle-console-angular-velocity-value = {$angularVelocity}
shuttle-console-unknown = Unknown
shuttle-console-iff-label = {$name} ({$distance}m)
diff --git a/Resources/Locale/en-US/station-events/events/radiation-storm.ftl b/Resources/Locale/en-US/station-events/events/radiation-storm.ftl
deleted file mode 100644
index 8f3bdfec9f46..000000000000
--- a/Resources/Locale/en-US/station-events/events/radiation-storm.ftl
+++ /dev/null
@@ -1,4 +0,0 @@
-## RadiationStorm
-
-station-event-radiation-storm-announcement = High levels of radiation detected near the station. Evacuate any areas containing abnormal green energy fields.
-station-event-radiation-storm-complete-announcement = The radiation threat has passed. Please return to your workplaces.
\ No newline at end of file
diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl
index dae61aa05779..5eb86b4db269 100644
--- a/Resources/Locale/en-US/store/uplink-catalog.ftl
+++ b/Resources/Locale/en-US/store/uplink-catalog.ftl
@@ -125,9 +125,11 @@ uplink-animal-friends-kit-desc = A box containing 4 doses of subjuzine, an alter
uplink-chest-rig-name = Chest Rig
uplink-chest-rig-desc = Explosion-resistant tactical webbing used for holding traitor goods.
-# DV - Correct Emag name, Emag no longer breaks doors
uplink-emag-name = Cryptographic Sequencer
-uplink-emag-desc = The business card of the Syndicate, this sequencer is able to tamper with a variety of station devices. Rendered obsolete against airlocks.
+uplink-emag-desc = The business card of the syndicate, this sequencer is able to tamper with a variety of station devices. Recharges automatically.
+
+uplink-access-breaker-name = Access Breaker
+uplink-access-breaker-desc = A hacked access configurator and a good friend of the emag. This device is able to force airlocks open as well as erase access requirements from station equipment. Recharges automatically.
uplink-agent-id-card-name = Agent ID Card
uplink-agent-id-card-desc = A modified ID card that can copy accesses from other cards and change its name and job title at-will.
@@ -214,6 +216,9 @@ uplink-death-acidifier-implant-desc = Completely melts the user and their equipm
uplink-micro-bomb-implanter-name = Micro Bomb Implanter
uplink-micro-bomb-implanter-desc = Explode on death or manual activation with this implant. Destroys the body with all equipment.
+uplink-radio-implanter-name = Radio Implanter
+uplink-radio-implanter-desc = Implants a Syndicate radio, allowing covert communication without a headset.
+
# Bundles
uplink-observation-kit-name = Observation Kit
uplink-observation-kit-desc = Includes surveillance camera monitor board and security hud disguised as sunglasses.
@@ -467,8 +472,14 @@ uplink-combat-bakery-desc = A kit of clandestine baked weapons. Contains a bague
uplink-business-card-name = Syndicate Business Card
uplink-business-card-desc = A business card that you can give to someone to demonstrate your involvement in the syndicate... or leave at the crime scene in order to make fun of the detective. You can buy no more than three of them.
+uplink-fake-mindshield-name = Fake Mindshield
+uplink-fake-mindshield-desc = A togglable implant capable of mimicking the same transmissions a real mindshield puts out when on, tricking capable Heads-up displays into thinking you have a mindshield (Nanotrasen brand implanter not provided.)
+
uplink-pin-straight-name = Straight Pride Pin
uplink-pin-straight-desc = Demonstrate your support for the heterosexual community with this straight pride pin.
uplink-cloak-straight-name = Straight Pride Cloak
uplink-cloak-straight-desc = Demonstrate your support for the heterosexual community (and the hamburglar) with this stripy, black-and-white cloak.
+
+
+
diff --git a/Resources/Locale/en-US/thief/backpack.ftl b/Resources/Locale/en-US/thief/backpack.ftl
index 6a69ab8bc6f3..6d3baa2c0d8a 100644
--- a/Resources/Locale/en-US/thief/backpack.ftl
+++ b/Resources/Locale/en-US/thief/backpack.ftl
@@ -39,7 +39,7 @@ thief-backpack-category-syndie-name = syndie kit
thief-backpack-category-syndie-description =
Trinkets from a disavowed past, or stolen from a careless agent?
You've made some connections. Whiskey, echo...
- Includes: An Emag, Interdyne cigs, a Syndicate codeword,
+ Includes: An Emag, Access Breaker, Interdyne cigs, a Syndicate codeword,
a Radio Jammer, a lighter and some strange red crystals.
thief-backpack-category-sleeper-name = sleeper kit
diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl
index 90234872bd66..d568e90e4bca 100644
--- a/Resources/Locale/en-US/tiles/tiles.ftl
+++ b/Resources/Locale/en-US/tiles/tiles.ftl
@@ -129,5 +129,6 @@ tiles-mowed-astro-grass = mowed astro-grass
tiles-jungle-astro-grass = jungle astro-grass
tiles-astro-ice = astro-ice
tiles-astro-snow = astro-snow
+tiles-astro-asteroid-sand = asteroid astro-sand
tiles-wood-large = large wood
tiles-xeno-floor = xeno floor
diff --git a/Resources/Locale/en-US/tips.ftl b/Resources/Locale/en-US/tips.ftl
index 154ac8e18bba..dcadd15b1b06 100644
--- a/Resources/Locale/en-US/tips.ftl
+++ b/Resources/Locale/en-US/tips.ftl
@@ -133,3 +133,5 @@ tips-dataset-132 = By right clicking on a player, and then clicking the heart ic
tips-dataset-133 = Monkeys and kobolds have a rare chance to be sentient. Ook!
tips-dataset-134 = You can tell if an area with firelocks up is spaced by looking to see if the firelocks have lights beside them.
tips-dataset-135 = Instead of picking it up, you can alt-click food to eat it. This also works for mice and other creatures without hands.
+tips-dataset-136 = If you're trapped behind an electrified door, disable the APC or throw your ID at the door to avoid getting shocked!
+tips-dataset-137 = If the AI electrifies a door and you have insulated gloves, snip and mend the power wire to reset their electrification!
diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl
index 5817d9504659..27bd3310a617 100644
--- a/Resources/Locale/en-US/traits/traits.ftl
+++ b/Resources/Locale/en-US/traits/traits.ftl
@@ -95,3 +95,7 @@ trait-basicfrench-desc = You speak with the cadence of someone who has cast off
trait-basicrussian-name = Russian (Basic)
trait-basicrussian-desc = You speak with a russian accent, with much less word replacements.
+
+trait-painnumbness-name = Numb
+trait-painnumbness-desc = You lack any sense of feeling pain, being unaware of how hurt you may be.
+
diff --git a/Resources/Locale/en-US/weapons/melee/melee.ftl b/Resources/Locale/en-US/weapons/melee/melee.ftl
index 871d142504f0..d3318ea24490 100644
--- a/Resources/Locale/en-US/weapons/melee/melee.ftl
+++ b/Resources/Locale/en-US/weapons/melee/melee.ftl
@@ -3,5 +3,5 @@ melee-inject-failed-hardsuit = Your {$weapon} cannot inject through hardsuits!
melee-balloon-pop = {CAPITALIZE(THE($balloon))} popped!
-#BatteryComponent
+# BatteryComponent
melee-battery-examine = It has enough charge for [color={$color}]{$count}[/color] hits.
diff --git a/Resources/Maps/Nonstations/nukieplanet.yml b/Resources/Maps/Nonstations/nukieplanet.yml
index 6c0a209decaa..5d6cbb693057 100644
--- a/Resources/Maps/Nonstations/nukieplanet.yml
+++ b/Resources/Maps/Nonstations/nukieplanet.yml
@@ -1661,6 +1661,15 @@ entities:
- 0
- 0
- type: LoadedMap
+- proto: ActionStethoscope
+ entities:
+ - uid: 1739
+ components:
+ - type: Transform
+ parent: 1336
+ - type: EntityTargetAction
+ originalIconColor: '#FFFFFFFF'
+ container: 1336
- proto: AirlockExternalGlassNukeopLocked
entities:
- uid: 49
@@ -6576,12 +6585,12 @@ entities:
- uid: 2031
components:
- type: Transform
- pos: 4.0109396,-12.223828
+ pos: 3.3130646,-11.479682
parent: 104
- uid: 2095
components:
- type: Transform
- pos: 4.017678,-12.520861
+ pos: 3.6099396,-11.479682
parent: 104
- proto: Bed
entities:
@@ -6656,7 +6665,7 @@ entities:
- uid: 2114
components:
- type: Transform
- pos: 5.539936,-12.489611
+ pos: 7.223599,-12.19286
parent: 104
- proto: BoxFolderBlack
entities:
@@ -6684,7 +6693,7 @@ entities:
- uid: 1844
components:
- type: Transform
- pos: 5.430561,-12.364611
+ pos: 7.629849,-12.44286
parent: 104
- proto: BoxShotgunPractice
entities:
@@ -10191,6 +10200,13 @@ entities:
- type: Transform
pos: -0.5,-1.5
parent: 104
+- proto: ChemDispenser
+ entities:
+ - uid: 2539
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 104
- proto: ChemicalPayload
entities:
- uid: 2380
@@ -10285,7 +10301,7 @@ entities:
- uid: 1738
components:
- type: Transform
- pos: 3.5009227,-11.519134
+ pos: 3.5005646,-10.854682
parent: 104
- proto: ClothingNeckScarfStripedRed
entities:
@@ -10299,8 +10315,16 @@ entities:
- uid: 1336
components:
- type: Transform
- pos: 7.5027137,-12.301802
+ pos: -2.327716,-12.470306
parent: 104
+ - type: Stethoscope
+ actionEntity: 1739
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 1739
- proto: ClothingShoesBootsSalvage
entities:
- uid: 542
@@ -10509,15 +10533,18 @@ entities:
parent: 104
- type: Fixtures
fixtures: {}
-- proto: FloraRockSolid01
+- proto: FloraRockSolid
entities:
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: 13.550529,12.489372
+ parent: 104
- uid: 1707
components:
- type: Transform
pos: 5.5565968,16.377468
parent: 104
-- proto: FloraRockSolid02
- entities:
- uid: 1708
components:
- type: Transform
@@ -10528,81 +10555,72 @@ entities:
- type: Transform
pos: -1.3676796,16.13784
parent: 104
-- proto: FloraRockSolid03
- entities:
- - uid: 1706
- components:
- - type: Transform
- pos: 13.550529,12.489372
- parent: 104
-- proto: FloraTreeConifer01
+- proto: FloraTreeConifer
entities:
- - uid: 261
+ - uid: 219
components:
- type: Transform
- pos: 7.7892694,4.987089
+ pos: 5.5,4.5
parent: 104
- - uid: 275
+ - uid: 260
components:
- type: Transform
- pos: -3.80645,4.798395
+ pos: 7.7267694,7.536619
parent: 104
- - uid: 281
+ - uid: 261
components:
- type: Transform
- pos: -1.0279694,6.890992
+ pos: 7.7892694,4.987089
parent: 104
- - uid: 1619
+ - uid: 267
components:
- type: Transform
- pos: 16.10984,7.3249645
+ pos: 12.789269,3.6888618
parent: 104
- - uid: 1622
+ - uid: 268
components:
- type: Transform
- pos: 7.42463,16.597832
+ pos: -0.17814255,7.5043383
parent: 104
- - uid: 1626
+ - uid: 271
components:
- type: Transform
- pos: 11.605486,16.944057
+ pos: -1.1000175,4.26659
parent: 104
-- proto: FloraTreeConifer02
- entities:
- - uid: 219
+ - uid: 273
components:
- type: Transform
- pos: 5.5,4.5
+ pos: -2.591959,2.9214401
parent: 104
- - uid: 260
+ - uid: 275
components:
- type: Transform
- pos: 7.7267694,7.536619
+ pos: -3.80645,4.798395
parent: 104
- - uid: 267
+ - uid: 280
components:
- type: Transform
- pos: 12.789269,3.6888618
+ pos: 1.5111885,4.4898434
parent: 104
- - uid: 268
+ - uid: 281
components:
- type: Transform
- pos: -0.17814255,7.5043383
+ pos: -1.0279694,6.890992
parent: 104
- - uid: 273
+ - uid: 1035
components:
- type: Transform
- pos: -2.591959,2.9214401
+ pos: 0.74747276,19.424063
parent: 104
- - uid: 280
+ - uid: 1618
components:
- type: Transform
- pos: 1.5111885,4.4898434
+ pos: 11.32859,10.093473
parent: 104
- - uid: 1618
+ - uid: 1619
components:
- type: Transform
- pos: 11.32859,10.093473
+ pos: 16.10984,7.3249645
parent: 104
- uid: 1620
components:
@@ -10614,17 +10632,15 @@ entities:
- type: Transform
pos: 14.582346,17.286049
parent: 104
-- proto: FloraTreeConifer03
- entities:
- - uid: 271
+ - uid: 1622
components:
- type: Transform
- pos: -1.1000175,4.26659
+ pos: 7.42463,16.597832
parent: 104
- - uid: 1035
+ - uid: 1626
components:
- type: Transform
- pos: 0.74747276,19.424063
+ pos: 11.605486,16.944057
parent: 104
- uid: 1673
components:
@@ -10636,43 +10652,32 @@ entities:
- type: Transform
pos: 8.497473,19.862019
parent: 104
-- proto: FloraTreeSnow01
+- proto: FloraTreeSnow
entities:
- uid: 262
components:
- type: Transform
pos: 9.630766,6.7434845
parent: 104
-- proto: FloraTreeSnow02
- entities:
- - uid: 270
- components:
- - type: Transform
- pos: -2.3114033,5.0917635
- parent: 104
- - uid: 1630
+ - uid: 265
components:
- type: Transform
- pos: 4.558771,16.696045
+ pos: 0.24603653,5.7335367
parent: 104
-- proto: FloraTreeSnow03
- entities:
- - uid: 274
+ - uid: 269
components:
- type: Transform
- pos: -3.3325882,6.8936405
+ pos: 0.30623245,3.9068413
parent: 104
- - uid: 1629
+ - uid: 270
components:
- type: Transform
- pos: 9.924105,15.382175
+ pos: -2.3114033,5.0917635
parent: 104
-- proto: FloraTreeSnow04
- entities:
- - uid: 265
+ - uid: 274
components:
- type: Transform
- pos: 0.24603653,5.7335367
+ pos: -3.3325882,6.8936405
parent: 104
- uid: 276
components:
@@ -10684,13 +10689,6 @@ entities:
- type: Transform
pos: -3.1344147,13.722986
parent: 104
-- proto: FloraTreeSnow05
- entities:
- - uid: 269
- components:
- - type: Transform
- pos: 0.30623245,3.9068413
- parent: 104
- uid: 1627
components:
- type: Transform
@@ -10701,6 +10699,16 @@ entities:
- type: Transform
pos: 15.066191,11.052429
parent: 104
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 9.924105,15.382175
+ parent: 104
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 4.558771,16.696045
+ parent: 104
- uid: 1631
components:
- type: Transform
@@ -10780,8 +10788,6 @@ entities:
- type: Transform
pos: 22.5,-15.5
parent: 104
- - type: GravityGenerator
- charge: 100
- type: PointLight
radius: 175.75
- proto: GrenadeFlashBang
@@ -10998,7 +11004,7 @@ entities:
- uid: 1826
components:
- type: Transform
- pos: 3.4542694,-10.616036
+ pos: 3.5161896,-10.573432
parent: 104
- proto: KitchenKnife
entities:
@@ -11019,7 +11025,7 @@ entities:
- uid: 2021
components:
- type: Transform
- pos: 5.039936,-12.489611
+ pos: 3.9919167,-12.28661
parent: 104
- proto: LightPostSmall
entities:
@@ -12826,7 +12832,7 @@ entities:
- type: Transform
pos: 2.5,-12.5
parent: 104
-- proto: SignToxins2
+- proto: SignToxins
entities:
- uid: 1318
components:
@@ -13265,7 +13271,7 @@ entities:
- uid: 1151
components:
- type: Transform
- pos: -2.530845,-12.414692
+ pos: -2.702716,-12.314056
parent: 104
- proto: Table
entities:
@@ -13479,11 +13485,6 @@ entities:
- type: Transform
pos: 3.5,-15.5
parent: 104
- - uid: 1739
- components:
- - type: Transform
- pos: 5.5,-12.5
- parent: 104
- uid: 2016
components:
- type: Transform
diff --git a/Resources/Maps/Ruins/chunked_tcomms.yml b/Resources/Maps/Ruins/chunked_tcomms.yml
index d17b925bf2c2..cfddf10b8dad 100644
--- a/Resources/Maps/Ruins/chunked_tcomms.yml
+++ b/Resources/Maps/Ruins/chunked_tcomms.yml
@@ -20,15 +20,15 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAABAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAACgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAACgAAAAAAAgQAAAAAAAQAAAAACAQAAAAACgAAAAAAAgAAAAAAAgQAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAABgAAAAAAAgAAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAABgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAACAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAQAAAAACgQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAAQAAAAACAQAAAAABgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAACgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAQAAAAACAQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAQAAAAAAAQAAAAAAgQAAAAAAAQAAAAABgQAAAAAAAQAAAAABgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAAQAAAAABAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABgQAAAAAAgAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAQAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -50,24 +50,290 @@ entities:
chunkCollection:
version: 2
nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Remains
+ decals:
+ 1: 2,-8
- node:
cleanable: True
color: '#FFFFFFFF'
id: Remains
decals:
0: 7,-2
+ - node:
+ color: '#75271CFF'
+ id: splatter
+ decals:
+ 2: 1.5710351,-4.3071213
+ 3: 5.6960354,-8.588371
- type: GridAtmosphere
version: 2
data:
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
-- proto: ClothingHeadsetGrey
+ - type: NavMap
+- proto: AirlockEngineering
entities:
- - uid: 27
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 6.5,-6.5
+ parent: 1
+- proto: AirlockExternal
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 2.5,7.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 10.5,8.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 6.5,7.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 1
+ - uid: 95
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 8.5,3.5
+ parent: 1
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 1
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 8.5,-1.5
+ parent: 1
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 9.5,-3.5
+ parent: 1
+ - uid: 106
+ components:
+ - type: Transform
+ pos: 10.5,-3.5
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 9.5,-8.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 8.5,5.5
+ parent: 1
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - uid: 67
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 8.5,0.5
+ parent: 1
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 8.5,-0.5
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 8.5,1.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 8.5,2.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 8.5,4.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 7.5,5.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 8.5,7.5
+ parent: 1
+- proto: ClothingHeadsetEngineering
+ entities:
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 4.4946365,-5.4995103
+ parent: 1
+- proto: GeneratorRTG
+ entities:
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 10.5,-8.5
+ parent: 1
+- proto: GrilleSpawner
+ entities:
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 1.5,6.5
+ parent: 1
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 0.5,6.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 1
+ - uid: 72
+ components:
+ - type: Transform
+ pos: 4.5,7.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 6.5,8.5
+ parent: 1
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 8.5,8.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 9.5,8.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 11.5,7.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 12.5,7.5
+ parent: 1
+ - uid: 78
components:
- type: Transform
- pos: 4.4739795,-2.5042162
+ pos: 14.5,6.5
+ parent: 1
+ - uid: 79
+ components:
+ - type: Transform
+ pos: 15.5,6.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ pos: 13.5,6.5
parent: 1
- proto: LootSpawnerEncryptionKey
entities:
@@ -76,6 +342,11 @@ entities:
- type: Transform
pos: 6.5,-4.5
parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 9.5,-1.5
+ parent: 1
- proto: LootSpawnerIndustrial
entities:
- uid: 25
@@ -83,6 +354,11 @@ entities:
- type: Transform
pos: 8.5,2.5
parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 1
- proto: MachineFrame
entities:
- uid: 19
@@ -102,6 +378,13 @@ entities:
- type: Transform
pos: 6.5,-3.5
parent: 1
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 1
- proto: PosterLegitHereForYourSafety
entities:
- uid: 24
@@ -109,6 +392,13 @@ entities:
- type: Transform
pos: 7.5,-0.5
parent: 1
+- proto: RandomEngineerCorpseSpawner
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 2.5,-3.5
+ parent: 1
- proto: ReinforcedGirder
entities:
- uid: 9
@@ -126,6 +416,100 @@ entities:
- type: Transform
pos: 10.5,-6.5
parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 4.5,-2.5
+ parent: 1
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 7.5,-6.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ pos: 12.5,6.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 10.5,7.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 7.5,8.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 4.5,8.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 5.5,8.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 2.5,6.5
+ parent: 1
+- proto: SalvageCanisterSpawner
+ entities:
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 4.5,-7.5
+ parent: 1
+- proto: SalvageSpawnerScrapCommon75
+ entities:
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 1
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 1
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 10.5,-11.5
+ parent: 1
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,3.5
+ parent: 1
+- proto: SalvageSpawnerScrapValuable75
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 6.5,-1.5
+ parent: 1
+- proto: ScrapGeneratorUraniumLeaking
+ entities:
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 9.5,-8.5
+ parent: 1
- proto: SheetPlasteel1
entities:
- uid: 26
@@ -133,6 +517,20 @@ entities:
- type: Transform
pos: 2.5,-1.5
parent: 1
+- proto: SMESBasicEmpty
+ entities:
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 8.5,-8.5
+ parent: 1
+- proto: SuitStorageNTSRA
+ entities:
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 1
- proto: TelecomServer
entities:
- uid: 23
@@ -140,6 +538,13 @@ entities:
- type: Transform
pos: 8.5,-2.5
parent: 1
+- proto: TelecomServerCircuitboard
+ entities:
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 7.5276585,-2.4633026
+ parent: 1
- proto: UnfinishedMachineFrame
entities:
- uid: 18
@@ -169,11 +574,6 @@ entities:
- type: Transform
pos: 7.5,-0.5
parent: 1
- - uid: 6
- components:
- - type: Transform
- pos: 8.5,-0.5
- parent: 1
- uid: 7
components:
- type: Transform
@@ -214,4 +614,39 @@ entities:
- type: Transform
pos: 10.5,-3.5
parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 4.5,-1.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 4.5,-4.5
+ parent: 1
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 4.5,-6.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 5.5,-6.5
+ parent: 1
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 1
...
diff --git a/Resources/Maps/Ruins/djstation.yml b/Resources/Maps/Ruins/djstation.yml
index 8a81ede4fbe4..60214c1c5381 100644
--- a/Resources/Maps/Ruins/djstation.yml
+++ b/Resources/Maps/Ruins/djstation.yml
@@ -1146,7 +1146,7 @@ entities:
- type: Transform
pos: -4.5,-2.5
parent: 2
-- proto: IntercomAll
+- proto: IntercomFreelance
entities:
- uid: 316
components:
diff --git a/Resources/Maps/Ruins/ruined_prison_ship.yml b/Resources/Maps/Ruins/ruined_prison_ship.yml
new file mode 100644
index 000000000000..ab921840291c
--- /dev/null
+++ b/Resources/Maps/Ruins/ruined_prison_ship.yml
@@ -0,0 +1,4978 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 2: FloorFreezer
+ 4: FloorMetalFoam
+ 6: FloorReinforced
+ 98: FloorSteel
+ 5: FloorSteelCheckerLight
+ 1: FloorSteelDamaged
+ 129: Lattice
+ 130: Plating
+ 3: PlatingDamaged
+entities:
+- proto: ""
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ name: grid
+ - type: Transform
+ pos: -0.5625,-0.609375
+ parent: invalid
+ - type: MapGrid
+ chunks:
+ 0,0:
+ ind: 0,0
+ tiles: YgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABYgAAAAACggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAABggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABAQAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAQAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,0:
+ ind: -1,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-1:
+ ind: -1,-1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAABAAAAAAAAwAAAAACAQAAAAAEYgAAAAABYgAAAAACYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAABYgAAAAABYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADAQAAAAACYgAAAAABYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAwAAAAACggAAAAAAAQAAAAACAQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAwAAAAACggAAAAAAYgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAA
+ version: 6
+ 0,-1:
+ ind: 0,-1
+ tiles: YgAAAAADggAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAACggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADggAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADBQAAAAADBQAAAAABBQAAAAACBQAAAAADBQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACggAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAABggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAYgAAAAABggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADYgAAAAADAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAABggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAABggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-2:
+ ind: -1,-2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAACggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAQAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAggAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABBAAAAAAAAwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAEAwAAAAACggAAAAAAAwAAAAABAwAAAAACAwAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAABggAAAAAAAQAAAAAEYgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAAAQAAAAABYgAAAAABYgAAAAAAYgAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAAAYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADYgAAAAADggAAAAAAAwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAYgAAAAADAQAAAAACYgAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAggAAAAAAAQAAAAADYgAAAAACggAAAAAAYgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAABAQAAAAACYgAAAAADYgAAAAABYgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAwAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA
+ version: 6
+ 0,-2:
+ ind: 0,-2
+ tiles: gQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAADYgAAAAABYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAACYgAAAAAAYgAAAAADggAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAAAYgAAAAAAYgAAAAABYgAAAAABYgAAAAACggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAEYgAAAAADggAAAAAAYgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADYgAAAAADYgAAAAABYgAAAAACYgAAAAAAAQAAAAABYgAAAAACYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAQAAAAACYgAAAAACggAAAAAAYgAAAAAAYgAAAAADYgAAAAADYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAQAAAAAAggAAAAAABgAAAAAABgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADYgAAAAABggAAAAAABgAAAAAABgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAYgAAAAADBgAAAAAABgAAAAAABgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAACYgAAAAABggAAAAAABgAAAAAABgAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ -1,-3:
+ ind: -1,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,-3:
+ ind: 0,-3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: OccluderTree
+ - type: SpreaderGrid
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: /Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 95: 4,-21
+ 96: 4,-20
+ 97: 4,-19
+ 98: 3,-18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 61: 2,6
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 63: 1,-8
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 76: 0,-13
+ 88: 1,-18
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 85: -6,-13
+ 87: -1,-18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 49: 1,1
+ 52: 2,4
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 68: 1,-11
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 75: 0,-16
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 50: -1,1
+ 51: -2,4
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSe
+ decals:
+ 54: 1,4
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteInnerSw
+ decals:
+ 53: -1,4
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineE
+ decals:
+ 55: 1,3
+ 56: 1,2
+ 60: 2,5
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineE
+ decals:
+ 66: 1,-9
+ 67: 1,-10
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineE
+ decals:
+ 77: 0,-15
+ 78: 0,-14
+ 89: 1,-19
+ 90: 1,-20
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineN
+ decals:
+ 64: 0,-8
+ 65: -1,-8
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineN
+ decals:
+ 79: -1,-13
+ 80: -2,-13
+ 81: -3,-13
+ 82: -4,-13
+ 83: -5,-13
+ 91: 0,-18
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineS
+ decals:
+ 62: 0,1
+ - node:
+ color: '#52B4E996'
+ id: BrickTileWhiteLineS
+ decals:
+ 69: 0,-11
+ 70: -1,-11
+ 71: -2,-11
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineS
+ decals:
+ 72: -3,-16
+ 73: -2,-16
+ 74: -1,-16
+ - node:
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineW
+ decals:
+ 57: -1,2
+ 58: -1,3
+ 59: -2,5
+ - node:
+ color: '#DE3A3A96'
+ id: BrickTileWhiteLineW
+ decals:
+ 86: -6,-14
+ 92: -1,-19
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 93: 4,-18
+ 94: 3,-21
+ - node:
+ color: '#FFFFFFFF'
+ id: Remains
+ decals:
+ 99: 3,-19
+ - node:
+ cleanable: True
+ color: '#500000FF'
+ id: footprint
+ decals:
+ 32: -0.83460975,-18.601887
+ 33: -0.64710975,-18.28906
+ 34: -0.80335975,-17.866747
+ 39: 0.032532215,-17.89233
+ 40: 0.22003222,-17.86105
+ 41: -0.37371778,-16.046658
+ 42: -0.5924678,-15.561777
+ 43: -0.43621778,-15.061256
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#500000FF'
+ id: footprint
+ decals:
+ 44: -0.9518428,-15.155104
+ 45: -1.4205928,-14.920485
+ 46: -2.1549678,-15.139463
+ 47: -2.7643428,-14.889202
+ 48: -3.6237178,-15.202028
+ - node:
+ cleanable: True
+ angle: 4.71238898038469 rad
+ color: '#500000FF'
+ id: footprint
+ decals:
+ 27: -2.8189847,-19.039845
+ 28: -2.4439847,-18.836506
+ 29: -1.9283597,-19.10241
+ 30: -1.4439847,-18.836506
+ 31: -1.0846097,-19.039845
+ - node:
+ cleanable: True
+ color: '#1D1D21FF'
+ id: i
+ decals:
+ 2: -6.1578336,-22.7679
+ 3: -6.0640836,-22.78354
+ 4: -5.9390836,-22.752258
+ 5: -5.8453336,-22.752258
+ 6: -6.1109586,-23.268421
+ 7: -6.0015836,-23.25278
+ 8: -5.9234586,-23.25278
+ 9: -5.8453336,-23.25278
+ 10: -6.0015836,-23.706377
+ 11: -5.8765836,-23.706377
+ 12: -5.7828336,-23.706377
+ 13: -6.1422086,-23.706377
+ 14: -6.8140836,-23.675095
+ 15: -6.7047086,-23.675095
+ 16: -6.9547086,-23.675095
+ 17: -7.1265836,-23.675095
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#1D1D21FF'
+ id: i
+ decals:
+ 18: -7.0015836,-23.659454
+ 19: -6.7828336,-23.690737
+ 20: -6.0797086,-23.72202
+ 21: -5.7984586,-23.768944
+ 22: -5.9547086,-23.315346
+ 23: -6.0797086,-22.752258
+ 24: -5.9078336,-22.78354
+ 25: -6.0953336,-23.299704
+ - node:
+ cleanable: True
+ color: '#500000FF'
+ id: splatter
+ decals:
+ 26: -3.469792,-19.956484
+ 35: -2.8274255,-20.432554
+ 36: -0.32533944,-26.16806
+ 37: -4.212329,-15.119475
+ 38: -0.07861769,4.1256695
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 0,0:
+ 0: 13104
+ 1: 34816
+ 0,-1:
+ 0: 4369
+ 1: 16384
+ -1,0:
+ 0: 34944
+ 1: 512
+ 0,1:
+ 0: 14327
+ -1,1:
+ 0: 52428
+ 0,2:
+ 0: 1
+ 1: 8
+ -1,2:
+ 0: 12
+ 1: 2
+ -1,-1:
+ 1: 16384
+ -3,-4:
+ 0: 2048
+ -2,-4:
+ 0: 53198
+ 1: 1
+ -2,-5:
+ 1: 5188
+ 0: 59520
+ -2,-3:
+ 1: 33793
+ 0: 2180
+ -1,-4:
+ 0: 65527
+ 2: 8
+ -1,-3:
+ 0: 61426
+ 1: 4096
+ -1,-2:
+ 1: 2
+ 0: 12
+ 0,-4:
+ 0: 57309
+ 0,-3:
+ 0: 13112
+ 3: 2176
+ 0,-2:
+ 0: 4355
+ 1: 8
+ 0,-5:
+ 0: 7099
+ 1,-4:
+ 0: 32631
+ 1,-3:
+ 3: 272
+ 0: 4
+ 1: 1024
+ 2,-4:
+ 1: 1
+ 0: 768
+ 2,-3:
+ 1: 1
+ 2,-5:
+ 1: 4096
+ -2,-8:
+ 1: 14608
+ -2,-7:
+ 0: 16243
+ -2,-6:
+ 0: 238
+ 1: 16384
+ -1,-8:
+ 1: 4366
+ 0: 52784
+ -1,-7:
+ 0: 65484
+ 1: 48
+ -1,-6:
+ 0: 45311
+ 1: 2048
+ -1,-5:
+ 0: 4095
+ 0,-8:
+ 1: 15
+ 0: 65280
+ 0,-7:
+ 0: 65521
+ 0,-6:
+ 0: 45823
+ 1,-7:
+ 0: 8176
+ 1,-6:
+ 0: 255
+ 2: 4096
+ 1: 16384
+ 1,-5:
+ 2: 1
+ 0: 272
+ 1: 1092
+ 1,-8:
+ 1: 57344
+ uniqueMixes:
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 20.078888
+ - 75.53487
+ - 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: ActionToggleInternals
+ entities:
+ - uid: 624
+ components:
+ - type: Transform
+ parent: 623
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 623
+- proto: AirCanister
+ entities:
+ - uid: 628
+ components:
+ - type: Transform
+ pos: -0.5,1.5
+ parent: 2
+- proto: AirlockAssemblySecurityGlass
+ entities:
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+- proto: AirlockCommandLocked
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+- proto: AirlockEngineeringLocked
+ entities:
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 2
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 227
+ components:
+ - type: Transform
+ pos: -6.5,-13.5
+ parent: 2
+ - uid: 228
+ components:
+ - type: Transform
+ pos: 7.5,-13.5
+ parent: 2
+- proto: AirlockFreezer
+ entities:
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+- proto: AirlockGlassShuttle
+ entities:
+ - uid: 223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-13.5
+ parent: 2
+ - uid: 226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-13.5
+ parent: 2
+- proto: AirlockMedical
+ entities:
+ - uid: 63
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-11.5
+ parent: 2
+- proto: AirlockSecurityGlassLocked
+ entities:
+ - uid: 281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-25.5
+ parent: 2
+ - uid: 282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-19.5
+ parent: 2
+- proto: AirlockSecurityLocked
+ entities:
+ - uid: 296
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 2
+- proto: APCBasic
+ entities:
+ - uid: 305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-19.5
+ parent: 2
+ - type: BatterySelfRecharger
+ autoRechargeRate: 50000
+ autoRecharge: True
+ - uid: 362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 363
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+- proto: Ash
+ entities:
+ - uid: 445
+ components:
+ - type: Transform
+ pos: -6.195281,-26.437138
+ parent: 2
+ - uid: 446
+ components:
+ - type: Transform
+ pos: -3.203737,-25.202763
+ parent: 2
+ - uid: 451
+ components:
+ - type: Transform
+ pos: -1.3359063,-27.327763
+ parent: 2
+ - uid: 452
+ components:
+ - type: Transform
+ pos: -1.0546563,-25.077763
+ parent: 2
+ - uid: 453
+ components:
+ - type: Transform
+ pos: -0.03366363,-22.432955
+ parent: 2
+ - uid: 454
+ components:
+ - type: Transform
+ pos: -2.6510031,-18.54101
+ parent: 2
+ - uid: 455
+ components:
+ - type: Transform
+ pos: -3.2283134,-9.365705
+ parent: 2
+ - uid: 456
+ components:
+ - type: Transform
+ pos: -2.3064384,-8.334455
+ parent: 2
+ - uid: 457
+ components:
+ - type: Transform
+ pos: -0.00895834,7.122772
+ parent: 2
+- proto: Ashtray
+ entities:
+ - uid: 434
+ components:
+ - type: Transform
+ pos: 4.5108266,-14.346764
+ parent: 2
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 1.3899925,3.382719
+ parent: 2
+- proto: AtmosDeviceFanTiny
+ entities:
+ - uid: 673
+ components:
+ - type: Transform
+ pos: -8.5,-13.5
+ parent: 2
+ - uid: 674
+ components:
+ - type: Transform
+ pos: 9.5,-13.5
+ parent: 2
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-9.5
+ parent: 2
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-10.5
+ parent: 2
+ - uid: 620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-10.5
+ parent: 2
+ - uid: 621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-9.5
+ parent: 2
+- proto: Bed
+ entities:
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 6.5,-11.5
+ parent: 2
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 7.5,-25.5
+ parent: 2
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 2
+ - uid: 490
+ components:
+ - type: Transform
+ pos: -6.5,-23.5
+ parent: 2
+- proto: BedsheetMedical
+ entities:
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+ - uid: 501
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+- proto: BedsheetSpawner
+ entities:
+ - uid: 1
+ components:
+ - type: Transform
+ pos: 7.5,-25.5
+ parent: 2
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 7.5,-23.5
+ parent: 2
+- proto: BlastDoor
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+- proto: BlastDoorFrame
+ entities:
+ - uid: 373
+ components:
+ - type: Transform
+ anchored: True
+ pos: 1.5,-21.5
+ parent: 2
+- proto: BlastDoorOpen
+ entities:
+ - uid: 361
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 367
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - uid: 368
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 369
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 2
+ - uid: 371
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 372
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 374
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 376
+ components:
+ - type: Transform
+ pos: -4.5,-25.5
+ parent: 2
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 378
+ components:
+ - type: Transform
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 2
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 2
+- proto: BookSpaceLaw
+ entities:
+ - uid: 516
+ components:
+ - type: Transform
+ pos: -3.4286723,-13.415376
+ parent: 2
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 256
+ components:
+ - type: MetaData
+ desc: a sign below it reads 'IN CASE OF PRISONER MUTINY PRESS THIS'
+ name: Emergency Bridge Lockdown
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 2
+- proto: CableApcExtension
+ entities:
+ - uid: 387
+ components:
+ - type: Transform
+ pos: -0.5,-14.5
+ parent: 2
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 0.5,-22.5
+ parent: 2
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 0.5,-23.5
+ parent: 2
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -5.5,-23.5
+ parent: 2
+ - uid: 539
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - uid: 540
+ components:
+ - type: Transform
+ pos: -5.5,-25.5
+ parent: 2
+ - uid: 541
+ components:
+ - type: Transform
+ pos: -4.5,-24.5
+ parent: 2
+ - uid: 542
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 2
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 2
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 3.5,-24.5
+ parent: 2
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 4.5,-24.5
+ parent: 2
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 5.5,-24.5
+ parent: 2
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 5.5,-24.5
+ parent: 2
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 5.5,-23.5
+ parent: 2
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 2.5,-19.5
+ parent: 2
+ - uid: 552
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 553
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - uid: 554
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 2
+ - uid: 555
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 556
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 2
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 2
+ - uid: 558
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - uid: 560
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 0.5,-13.5
+ parent: 2
+ - uid: 562
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 563
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 3.5,-12.5
+ parent: 2
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 4.5,-12.5
+ parent: 2
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 6.5,-12.5
+ parent: 2
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 2
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 6.5,-13.5
+ parent: 2
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+ - uid: 572
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 3.5,-11.5
+ parent: 2
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 3.5,-10.5
+ parent: 2
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 7.5,-13.5
+ parent: 2
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 8.5,-13.5
+ parent: 2
+ - uid: 578
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 579
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 580
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 2
+ - uid: 581
+ components:
+ - type: Transform
+ pos: -4.5,-12.5
+ parent: 2
+ - uid: 582
+ components:
+ - type: Transform
+ pos: -5.5,-12.5
+ parent: 2
+ - uid: 583
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 584
+ components:
+ - type: Transform
+ pos: -5.5,-13.5
+ parent: 2
+ - uid: 585
+ components:
+ - type: Transform
+ pos: -6.5,-13.5
+ parent: 2
+ - uid: 586
+ components:
+ - type: Transform
+ pos: -7.5,-13.5
+ parent: 2
+ - uid: 587
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 588
+ components:
+ - type: Transform
+ pos: -2.5,-10.5
+ parent: 2
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 590
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 592
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 2
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 0.5,2.5
+ parent: 2
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 0.5,5.5
+ parent: 2
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 0.5,3.5
+ parent: 2
+ - uid: 606
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 2
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 2
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 2
+ - uid: 675
+ components:
+ - type: Transform
+ pos: 5.5,-17.5
+ parent: 2
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 4.5,-18.5
+ parent: 2
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 691
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 692
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+ - uid: 694
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 695
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 696
+ components:
+ - type: Transform
+ pos: -1.5,-14.5
+ parent: 2
+ - uid: 697
+ components:
+ - type: Transform
+ pos: -2.5,-14.5
+ parent: 2
+ - uid: 698
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 2
+ - uid: 721
+ components:
+ - type: Transform
+ pos: -3.5,-19.5
+ parent: 2
+ - uid: 722
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 2
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 2.5,-29.5
+ parent: 2
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 2
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 0.5,-29.5
+ parent: 2
+ - uid: 726
+ components:
+ - type: Transform
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 2
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 730
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+ - uid: 731
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 733
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 734
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 5.5,-27.5
+ parent: 2
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 6.5,-27.5
+ parent: 2
+- proto: CableHV
+ entities:
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 3.5,-29.5
+ parent: 2
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 3.5,-28.5
+ parent: 2
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 2
+ - uid: 319
+ components:
+ - type: Transform
+ pos: -0.5,-28.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 2
+- proto: CableHVStack1
+ entities:
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 0.13673306,-29.357548
+ parent: 2
+- proto: CableMV
+ entities:
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 2
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 0.5,-22.5
+ parent: 2
+ - uid: 321
+ components:
+ - type: Transform
+ pos: 1.5,-28.5
+ parent: 2
+ - uid: 322
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 0.5,-26.5
+ parent: 2
+ - uid: 324
+ components:
+ - type: Transform
+ pos: -1.5,-29.5
+ parent: 2
+ - uid: 325
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 2
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 0.5,-23.5
+ parent: 2
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 330
+ components:
+ - type: Transform
+ pos: 2.5,-19.5
+ parent: 2
+ - uid: 331
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 0.5,-17.5
+ parent: 2
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 2
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 2
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 336
+ components:
+ - type: Transform
+ pos: 0.5,-13.5
+ parent: 2
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 339
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 340
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 2
+ - uid: 341
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 2
+ - uid: 342
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 343
+ components:
+ - type: Transform
+ pos: -2.5,-10.5
+ parent: 2
+ - uid: 344
+ components:
+ - type: Transform
+ pos: -1.5,-10.5
+ parent: 2
+ - uid: 345
+ components:
+ - type: Transform
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 0.5,-10.5
+ parent: 2
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 0.5,-7.5
+ parent: 2
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+ - uid: 351
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
+ - uid: 353
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 2
+ - uid: 354
+ components:
+ - type: Transform
+ pos: 0.5,-1.5
+ parent: 2
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 0.5,-4.5
+ parent: 2
+ - uid: 356
+ components:
+ - type: Transform
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 357
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 0.5,1.5
+ parent: 2
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+ - uid: 409
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 2
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 3.5,-19.5
+ parent: 2
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 4.5,-19.5
+ parent: 2
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 686
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 2
+ - uid: 687
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 2
+ - uid: 688
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 689
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 690
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+- proto: CannabisSeeds
+ entities:
+ - uid: 483
+ components:
+ - type: Transform
+ pos: -2.0755308,-23.311163
+ parent: 2
+- proto: CarpetBlack
+ entities:
+ - uid: 663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-13.5
+ parent: 2
+ - uid: 664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-14.5
+ parent: 2
+ - uid: 665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-13.5
+ parent: 2
+ - uid: 666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-14.5
+ parent: 2
+- proto: Chair
+ entities:
+ - uid: 420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-15.5
+ parent: 2
+ - uid: 421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-14.5
+ parent: 2
+ - uid: 422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-14.5
+ parent: 2
+- proto: ChairOfficeDark
+ entities:
+ - uid: 273
+ components:
+ - type: Transform
+ pos: -2.423964,-17.38368
+ parent: 2
+- proto: ChairPilotSeat
+ entities:
+ - uid: 254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,5.5
+ parent: 2
+ - uid: 255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,5.5
+ parent: 2
+- proto: CigaretteSyndicate
+ entities:
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 6.8286705,-25.253609
+ parent: 2
+- proto: CigarGold
+ entities:
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 4.7982235,-14.428652
+ parent: 2
+- proto: ClosetWall
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 285
+ - 283
+ - 278
+ - 274
+ - 297
+ - 299
+- proto: ClothingBackpackDuffelSyndicate
+ entities:
+ - uid: 385
+ components:
+ - type: Transform
+ parent: 105
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHandsGlovesCombat
+ entities:
+ - uid: 215
+ components:
+ - type: Transform
+ parent: 196
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: ClothingHeadHelmetSwat
+ entities:
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 3.59788,-18.369648
+ parent: 2
+- proto: ClothingMaskGasSecurity
+ entities:
+ - uid: 625
+ components:
+ - type: Transform
+ pos: 4.559528,-9.526169
+ parent: 2
+- proto: ClothingMaskGasSyndicate
+ entities:
+ - uid: 383
+ components:
+ - type: Transform
+ parent: 105
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: Coal1
+ entities:
+ - uid: 389
+ components:
+ - type: Transform
+ pos: -5.891542,-22.484156
+ parent: 2
+- proto: ComputerAlert
+ entities:
+ - uid: 252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,4.5
+ parent: 2
+- proto: computerBodyScanner
+ entities:
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-7.5
+ parent: 2
+- proto: ComputerBroken
+ entities:
+ - uid: 87
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,6.5
+ parent: 2
+ - uid: 244
+ components:
+ - type: MetaData
+ name: Broken shuttle console
+ - type: Transform
+ pos: 0.5,7.5
+ parent: 2
+ - uid: 250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,5.5
+ parent: 2
+ - uid: 271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-17.5
+ parent: 2
+ - uid: 272
+ components:
+ - type: MetaData
+ name: Broken Criminal Records computer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-18.5
+ parent: 2
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,5.5
+ parent: 2
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,4.5
+ parent: 2
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,6.5
+ parent: 2
+- proto: ComputerRadar
+ entities:
+ - uid: 245
+ components:
+ - type: Transform
+ pos: 1.5,7.5
+ parent: 2
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ anchored: True
+ pos: 4.5,-20.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.147
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 269
+ - 383
+ - 385
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: CratePermaEscapeSpawner
+ entities:
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 4.5,-24.5
+ parent: 2
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 3.5,-26.5
+ parent: 2
+- proto: CurtainsRed
+ entities:
+ - uid: 431
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-11.5
+ parent: 2
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-8.5
+ parent: 2
+- proto: DeskBell
+ entities:
+ - uid: 633
+ components:
+ - type: Transform
+ pos: -1.466649,-17.43652
+ parent: 2
+- proto: DrinkMug
+ entities:
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 3.4327016,-14.253014
+ parent: 2
+- proto: EmergencyLight
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-19.5
+ parent: 2
+ - uid: 26
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-10.5
+ parent: 2
+ - uid: 31
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-26.5
+ parent: 2
+ - uid: 48
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 2
+- proto: EmergencyOxygenTank
+ entities:
+ - uid: 623
+ components:
+ - type: Transform
+ pos: 4.497028,-9.338669
+ parent: 2
+ - type: GasTank
+ toggleActionEntity: 624
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 624
+- proto: EphedrineChemistryBottle
+ entities:
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 1.2954173,-7.5306168
+ parent: 2
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-16.5
+ parent: 2
+- proto: ExtinguisherCabinetOpen
+ entities:
+ - uid: 470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-27.5
+ parent: 2
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+- proto: FirelockGlass
+ entities:
+ - uid: 707
+ components:
+ - type: Transform
+ pos: -1.5,-19.5
+ parent: 2
+ - uid: 708
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 5.5,-25.5
+ parent: 2
+ - uid: 711
+ components:
+ - type: Transform
+ pos: -4.5,-25.5
+ parent: 2
+ - uid: 713
+ components:
+ - type: Transform
+ pos: -2.5,-11.5
+ parent: 2
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 2
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 0.5,0.5
+ parent: 2
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 0.5,-6.5
+ parent: 2
+- proto: FlashlightSeclite
+ entities:
+ - uid: 33
+ components:
+ - type: Transform
+ parent: 511
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FlippoLighter
+ entities:
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 0.6057625,-25.265987
+ parent: 2
+- proto: FloorDrain
+ entities:
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorTileItemSteel
+ entities:
+ - uid: 92
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.6513882,-25.21156
+ parent: 2
+ - uid: 120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.3642368,-24.77406
+ parent: 2
+ - uid: 218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.8857632,-25.93031
+ parent: 2
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.63289,-27.93135
+ parent: 2
+ - uid: 302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.3642368,-29.477184
+ parent: 2
+ - uid: 303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.74513817,-22.93031
+ parent: 2
+- proto: FoodBadRecipe
+ entities:
+ - uid: 461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.7103342,6.9647202
+ parent: 2
+- proto: FoodBreadMoldySlice
+ entities:
+ - uid: 425
+ components:
+ - type: Transform
+ parent: 424
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 427
+ components:
+ - type: Transform
+ parent: 424
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodMeatRotten
+ entities:
+ - uid: 426
+ components:
+ - type: Transform
+ parent: 424
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 428
+ components:
+ - type: Transform
+ parent: 424
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: FoodPizzaMoldySlice
+ entities:
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 3.9014516,-14.378014
+ parent: 2
+- proto: FoodPlateTrash
+ entities:
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 1.6479025,-24.275301
+ parent: 2
+- proto: ForkPlastic
+ entities:
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 1.3197775,-24.478426
+ parent: 2
+- proto: GasCanisterBrokenBase
+ entities:
+ - uid: 622
+ components:
+ - type: Transform
+ pos: -3.5,-29.5
+ parent: 2
+- proto: GeneratorBasic15kW
+ entities:
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 3.5,-28.5
+ parent: 2
+- proto: GeneratorRTGDamaged
+ entities:
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 3.5,-29.5
+ parent: 2
+- proto: GrenadeFlashBang
+ entities:
+ - uid: 517
+ components:
+ - type: Transform
+ pos: -2.5479493,-13.4216585
+ parent: 2
+- proto: Grille
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 0.5,8.5
+ parent: 2
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 3.5,5.5
+ parent: 2
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 11
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 12
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 39
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 40
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 41
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 42
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 43
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 45
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 46
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 64
+ components:
+ - type: Transform
+ pos: -7.5,-23.5
+ parent: 2
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 8.5,-25.5
+ parent: 2
+ - uid: 67
+ components:
+ - type: Transform
+ pos: -4.5,-18.5
+ parent: 2
+ - uid: 68
+ components:
+ - type: Transform
+ pos: -4.5,-19.5
+ parent: 2
+ - uid: 69
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 70
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+ - uid: 71
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 2
+- proto: GrilleBroken
+ entities:
+ - uid: 94
+ components:
+ - type: Transform
+ pos: -2.5,-8.5
+ parent: 2
+ - uid: 101
+ components:
+ - type: Transform
+ pos: -3.5,-8.5
+ parent: 2
+ - uid: 102
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 2
+ - uid: 110
+ components:
+ - type: Transform
+ pos: -0.5,8.5
+ parent: 2
+ - uid: 114
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+- proto: GunSafe
+ entities:
+ - uid: 106
+ components:
+ - type: MetaData
+ name: Energy Weapons safe
+ - type: Transform
+ anchored: True
+ pos: 4.5,-19.5
+ parent: 2
+ - type: Physics
+ bodyType: Static
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.147
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 408
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: Handcuffs
+ entities:
+ - uid: 266
+ components:
+ - type: Transform
+ pos: -0.53172827,2.545515
+ parent: 2
+- proto: HandheldHealthAnalyzerUnpowered
+ entities:
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 1.5534105,-7.299921
+ parent: 2
+- proto: HighSecArmoryLocked
+ entities:
+ - uid: 229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-18.5
+ parent: 2
+- proto: HoloprojectorSecurity
+ entities:
+ - uid: 672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.9395652,-13.425855
+ parent: 2
+- proto: HospitalCurtains
+ entities:
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+- proto: HydroponicsTrayEmpty
+ entities:
+ - uid: 479
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 2
+- proto: KitchenMicrowave
+ entities:
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 4.5,-12.5
+ parent: 2
+- proto: LockableButtonArmory
+ entities:
+ - uid: 88
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-17.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 382:
+ - Pressed: Toggle
+- proto: LockableButtonSecurity
+ entities:
+ - uid: 366
+ components:
+ - type: MetaData
+ name: prison blast doors
+ - type: Transform
+ pos: -2.5,-16.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 376:
+ - Pressed: Toggle
+ 374:
+ - Pressed: Toggle
+ 372:
+ - Pressed: Toggle
+ 371:
+ - Pressed: Toggle
+ 361:
+ - Pressed: Toggle
+ 368:
+ - Pressed: Toggle
+ 369:
+ - Pressed: Toggle
+ 367:
+ - Pressed: Toggle
+ 380:
+ - Pressed: Toggle
+ 379:
+ - Pressed: Toggle
+ 377:
+ - Pressed: Toggle
+ 378:
+ - Pressed: Toggle
+- proto: LockerEvidence
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
+ parent: 2
+- proto: LockerFreezerBase
+ entities:
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 5.5,-12.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 425
+ - 426
+ - 427
+ - 428
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: LockerMedicineFilled
+ entities:
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 1.5,-9.5
+ parent: 2
+- proto: LockerSecurity
+ entities:
+ - uid: 196
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 2
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 215
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ - uid: 510
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 2
+ - type: Lock
+ locked: False
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.48
+ - 0.25,-0.48
+ - 0.25,0.48
+ - -0.25,0.48
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 75
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: EntityStorage
+ open: True
+ removedMasks: 20
+ - type: PlaceableSurface
+ isPlaceable: True
+ - uid: 511
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
+ parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.147
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 33
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+- proto: LootSpawnerRandomCrateSecurity
+ entities:
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 1.5,2.5
+ parent: 2
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 3.5,-17.5
+ parent: 2
+- proto: LuxuryPen
+ entities:
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 1.7685776,3.576183
+ parent: 2
+- proto: MachineFrame
+ entities:
+ - uid: 403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-31.5
+ parent: 2
+ - uid: 404
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-31.5
+ parent: 2
+ - uid: 462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-29.5
+ parent: 2
+- proto: MachineFrameDestroyed
+ entities:
+ - uid: 232
+ components:
+ - type: MetaData
+ desc: Well, this used to be able to make ammo...
+ name: Destroyed Security Techfab
+ - type: Transform
+ pos: 4.5,-17.5
+ parent: 2
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 2.5,-28.5
+ parent: 2
+ - uid: 310
+ components:
+ - type: Transform
+ pos: -1.5,-29.5
+ parent: 2
+ - uid: 390
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -5.5,-17.5
+ parent: 2
+ - uid: 391
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 2
+ - uid: 405
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -0.5,-31.5
+ parent: 2
+ - uid: 406
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -1.5,-31.5
+ parent: 2
+ - uid: 407
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -2.5,-31.5
+ parent: 2
+ - uid: 441
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: -2.5,8.5
+ parent: 2
+ - uid: 442
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destryoed thruster
+ - type: Transform
+ pos: -2.5,-7.5
+ parent: 2
+ - uid: 443
+ components:
+ - type: MetaData
+ desc: looks like it took some serious explosive damage
+ name: Destroyed thruster
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 2
+ - uid: 504
+ components:
+ - type: MetaData
+ desc: The technology this machine once held was invaluable...
+ name: Broken body scanner
+ - type: Transform
+ pos: -3.5,-10.5
+ parent: 2
+ - uid: 505
+ components:
+ - type: MetaData
+ desc: The tech this machine once held was invaluable...
+ name: Broken Cloning pod
+ - type: Transform
+ pos: -0.5,-8.5
+ parent: 2
+- proto: MaterialGunpowder
+ entities:
+ - uid: 278
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 283
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 285
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 297
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 299
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: MedicalBed
+ entities:
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 495
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 2
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 508
+ components:
+ - type: Transform
+ pos: -0.5821552,-10.268289
+ parent: 2
+- proto: PaperOffice
+ entities:
+ - uid: 24
+ components:
+ - type: MetaData
+ name: Captain's orders
+ - type: Transform
+ pos: -0.25811195,4.835703
+ parent: 2
+ - type: Paper
+ content: >+
+ security are to preform regular searches of John Grey's cell. we have strong evidence that he is hiding something.
+
+
+ defence turrets are to be set to fire-at-will. we have received several reports from long range sensor stations of increased syndicate activity in the sector.
+
+ - uid: 260
+ components:
+ - type: MetaData
+ desc: a burned and worn piece of a diary, written in charcoal. some of it is still legible
+ name: Hastily scrawled note
+ - type: Transform
+ pos: -5.6918225,-23.565489
+ parent: 2
+ - type: Paper
+ content: >-
+ Hacks-the-doors says he can get us into the bridge if i can rush the warden's offce. the crew seems to have gotten wise, they keep searching my cell, but ive hidden everything in a secret slot in the wall between my and the diona's cells.
+
+
+ everyone is on board with the plan except that weirdo in cell four, never even speaking to anyone. fine, he can rot while we take back our freedom.
+ - uid: 268
+ components:
+ - type: MetaData
+ desc: The bottom of the page is singed off
+ name: Prisoner Manifest
+ - type: Transform
+ pos: 1.3511494,3.7201993
+ parent: 2
+ - type: Paper
+ content: >
+ NT correctional transit ship st-187 high-value prisoner transit manifest
+
+
+ John Grey - cell 1
+
+ Hacks-the-doors - cell 2
+
+ The Sapling of Destruction - cell 3
+
+ John C-
+- proto: PipeBombGunpowder
+ entities:
+ - uid: 274
+ components:
+ - type: Transform
+ parent: 262
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: PlushieLizard
+ entities:
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 6.467701,-11.451192
+ parent: 2
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ pos: 1.5,1.5
+ parent: 2
+- proto: PosterContrabandCybersun600
+ entities:
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 7.5,-27.5
+ parent: 2
+- proto: PosterContrabandLustyExomorph
+ entities:
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 2
+- proto: PosterLegit12Gauge
+ entities:
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 3.5,-21.5
+ parent: 2
+- proto: PosterLegitAnatomyPoster
+ entities:
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+- proto: PosterLegitNanotrasenLogo
+ entities:
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
+ - uid: 636
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+- proto: PosterLegitSecWatch
+ entities:
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 2
+- proto: Poweredlight
+ entities:
+ - uid: 464
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 2
+ - uid: 608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-26.5
+ parent: 2
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-12.5
+ parent: 2
+ - uid: 614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 2
+ - uid: 616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-7.5
+ parent: 2
+ - uid: 617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,1.5
+ parent: 2
+ - uid: 652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-20.5
+ parent: 2
+ - uid: 653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-17.5
+ parent: 2
+ - uid: 661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-0.5
+ parent: 2
+ - uid: 662
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-5.5
+ parent: 2
+- proto: PoweredSmallLight
+ entities:
+ - uid: 609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-26.5
+ parent: 2
+ - uid: 610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-22.5
+ parent: 2
+ - uid: 615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-9.5
+ parent: 2
+- proto: PoweredSmallLightEmpty
+ entities:
+ - uid: 611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-22.5
+ parent: 2
+- proto: Rack
+ entities:
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 4.5,-18.5
+ parent: 2
+ - uid: 275
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 2
+ - uid: 518
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 658
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 2
+- proto: RandomEngineerCorpseSpawner
+ entities:
+ - uid: 295
+ components:
+ - type: Transform
+ pos: -0.5,-29.5
+ parent: 2
+- proto: RandomMedicCorpseSpawner
+ entities:
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 2
+- proto: RandomPosterContraband
+ entities:
+ - uid: 645
+ components:
+ - type: Transform
+ pos: -7.5,-22.5
+ parent: 2
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 6.5,-21.5
+ parent: 2
+- proto: RandomPosterLegit
+ entities:
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 638
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 2
+ - uid: 640
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 2
+- proto: RandomSecurityCorpseSpawner
+ entities:
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 4.5,-9.5
+ parent: 2
+ - uid: 292
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 2
+- proto: RandomSoap
+ entities:
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 4.5,-10.5
+ parent: 2
+- proto: RandomSpawner100
+ entities:
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 3.5,-15.5
+ parent: 2
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 6.5,-14.5
+ parent: 2
+ - uid: 429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-13.5
+ parent: 2
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 2.5,-12.5
+ parent: 2
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 2
+- proto: ReinforcedGirder
+ entities:
+ - uid: 137
+ components:
+ - type: Transform
+ pos: -0.5,-30.5
+ parent: 2
+ - uid: 140
+ components:
+ - type: Transform
+ pos: -1.5,-30.5
+ parent: 2
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -3.5,-31.5
+ parent: 2
+ - uid: 160
+ components:
+ - type: Transform
+ pos: -1.5,7.5
+ parent: 2
+ - uid: 161
+ components:
+ - type: Transform
+ pos: -1.5,8.5
+ parent: 2
+ - uid: 168
+ components:
+ - type: Transform
+ pos: -1.5,-8.5
+ parent: 2
+ - uid: 180
+ components:
+ - type: Transform
+ pos: -1.5,-7.5
+ parent: 2
+ - uid: 193
+ components:
+ - type: Transform
+ pos: -4.5,-10.5
+ parent: 2
+ - uid: 206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-16.5
+ parent: 2
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-16.5
+ parent: 2
+ - uid: 209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-24.5
+ parent: 2
+ - uid: 214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-24.5
+ parent: 2
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 189
+ components:
+ - type: Transform
+ pos: -2.5,6.5
+ parent: 2
+ - uid: 190
+ components:
+ - type: Transform
+ pos: -2.5,5.5
+ parent: 2
+ - uid: 191
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 2
+ - uid: 194
+ components:
+ - type: Transform
+ pos: 1.5,8.5
+ parent: 2
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 3.5,6.5
+ parent: 2
+ - uid: 197
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 2
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 5.5,-18.5
+ parent: 2
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 5.5,-19.5
+ parent: 2
+- proto: ReinforcedWindow
+ entities:
+ - uid: 198
+ components:
+ - type: Transform
+ pos: -0.5,-1.5
+ parent: 2
+ - uid: 199
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 2
+ - uid: 200
+ components:
+ - type: Transform
+ pos: -0.5,-4.5
+ parent: 2
+ - uid: 201
+ components:
+ - type: Transform
+ pos: -0.5,-3.5
+ parent: 2
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 1.5,-1.5
+ parent: 2
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 1.5,-3.5
+ parent: 2
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 1.5,-4.5
+ parent: 2
+ - uid: 211
+ components:
+ - type: Transform
+ pos: -4.5,-19.5
+ parent: 2
+ - uid: 212
+ components:
+ - type: Transform
+ pos: -3.5,-21.5
+ parent: 2
+ - uid: 213
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 2
+ - uid: 216
+ components:
+ - type: Transform
+ pos: 8.5,-23.5
+ parent: 2
+ - uid: 217
+ components:
+ - type: Transform
+ pos: 8.5,-25.5
+ parent: 2
+ - uid: 219
+ components:
+ - type: Transform
+ pos: -7.5,-23.5
+ parent: 2
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 2
+- proto: SalvageHumanCorpseSpawner
+ entities:
+ - uid: 293
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 2
+ - uid: 294
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 2
+- proto: SalvageLootSpawner
+ entities:
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 2
+ - uid: 659
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 2
+- proto: SalvageMobSpawner75
+ entities:
+ - uid: 521
+ components:
+ - type: Transform
+ pos: -5.5,-13.5
+ parent: 2
+ - uid: 522
+ components:
+ - type: Transform
+ pos: 0.5,-14.5
+ parent: 2
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 0.5,-9.5
+ parent: 2
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 2
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 2
+ - uid: 526
+ components:
+ - type: Transform
+ pos: -2.5,-23.5
+ parent: 2
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 1.5,-26.5
+ parent: 2
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 3.5,-23.5
+ parent: 2
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 0.5,-29.5
+ parent: 2
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 2
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 3.5,-24.5
+ parent: 2
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 2.5,-26.5
+ parent: 2
+ - uid: 533
+ components:
+ - type: Transform
+ pos: -3.5,-23.5
+ parent: 2
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 2
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 0.5,-8.5
+ parent: 2
+- proto: SalvageSpawnerScrapCommon
+ entities:
+ - uid: 706
+ components:
+ - type: Transform
+ pos: -1.5,-13.5
+ parent: 2
+- proto: SalvageSpawnerScrapCommon75
+ entities:
+ - uid: 447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-27.5
+ parent: 2
+ - uid: 460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-22.5
+ parent: 2
+ - uid: 463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-25.5
+ parent: 2
+- proto: SalvageSpawnerScrapValuable75
+ entities:
+ - uid: 465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-28.5
+ parent: 2
+ - uid: 466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-9.5
+ parent: 2
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-23.5
+ parent: 2
+- proto: ScalpelShiv
+ entities:
+ - uid: 384
+ components:
+ - type: Transform
+ pos: -3.2524245,-19.35137
+ parent: 2
+- proto: ScrapCloset
+ entities:
+ - uid: 306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.689742,-26.853409
+ parent: 2
+ - uid: 512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.8192973,-15.509125
+ parent: 2
+- proto: ScrapFaxMachine
+ entities:
+ - uid: 705
+ components:
+ - type: Transform
+ pos: -0.12547827,6.420515
+ parent: 2
+- proto: ScrapFireExtinguisher
+ entities:
+ - uid: 468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.7115498,-14.995926
+ parent: 2
+ - uid: 469
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.37643647,5.796526
+ parent: 2
+- proto: ScrapFirelock1
+ entities:
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 4.983548,-23.481426
+ parent: 2
+- proto: ScrapFirelock2
+ entities:
+ - uid: 280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.433796,-23.519455
+ parent: 2
+ - uid: 375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.48865283,-20.504122
+ parent: 2
+- proto: ScrapGeneratorUraniumLeaking
+ entities:
+ - uid: 307
+ components:
+ - type: Transform
+ pos: -0.5,-28.5
+ parent: 2
+- proto: ScrapGlass
+ entities:
+ - uid: 702
+ components:
+ - type: Transform
+ pos: -3.3567662,-17.571495
+ parent: 2
+ - uid: 703
+ components:
+ - type: Transform
+ pos: -1.0932239,-9.317591
+ parent: 2
+- proto: ScrapMedkit
+ entities:
+ - uid: 701
+ components:
+ - type: Transform
+ pos: -1.8971674,-10.441557
+ parent: 2
+- proto: ScrapPAIGold
+ entities:
+ - uid: 704
+ components:
+ - type: Transform
+ pos: -0.65672827,2.951765
+ parent: 2
+- proto: Screwdriver
+ entities:
+ - uid: 16
+ components:
+ - type: Transform
+ pos: -2.8623977,-14.451639
+ parent: 2
+- proto: ShardGlass
+ entities:
+ - uid: 235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.46758842,4.2362804
+ parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5792866,7.6737804
+ parent: 2
+ - uid: 239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.1261616,5.9081554
+ parent: 2
+ - uid: 243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.6730366,5.3144054
+ parent: 2
+- proto: ShardGlassPlasma
+ entities:
+ - uid: 75
+ components:
+ - type: Transform
+ pos: -0.5295793,6.567419
+ parent: 2
+ - uid: 78
+ components:
+ - type: Transform
+ pos: -0.48270428,7.395544
+ parent: 2
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 0.39229572,7.004919
+ parent: 2
+ - uid: 109
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.2199116,5.7050304
+ parent: 2
+ - uid: 111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.4855366,5.4550304
+ parent: 2
+- proto: ShardGlassReinforced
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.508602,-22.257473
+ parent: 2
+ - uid: 93
+ components:
+ - type: Transform
+ pos: -1.659688,-9.705481
+ parent: 2
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -4.237813,-9.627356
+ parent: 2
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -3.5858517,-17.94417
+ parent: 2
+ - uid: 116
+ components:
+ - type: Transform
+ pos: -2.1029367,-18.958366
+ parent: 2
+ - uid: 117
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.6136457,-27.686813
+ parent: 2
+ - uid: 192
+ components:
+ - type: Transform
+ pos: -2.722188,-8.705481
+ parent: 2
+ - uid: 208
+ components:
+ - type: Transform
+ pos: -4.1327267,-18.63167
+ parent: 2
+ - uid: 233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.6917706,-29.811813
+ parent: 2
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.7714419,-23.008694
+ parent: 2
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5667706,-25.803532
+ parent: 2
+ - uid: 253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.3016276,-26.287907
+ parent: 2
+ - uid: 258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.43168306,-21.852444
+ parent: 2
+ - uid: 304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.180477,-22.694973
+ parent: 2
+ - uid: 364
+ components:
+ - type: Transform
+ pos: -2.6654367,-18.239616
+ parent: 2
+ - uid: 365
+ components:
+ - type: Transform
+ pos: -1.5248117,-18.255241
+ parent: 2
+ - uid: 410
+ components:
+ - type: Transform
+ pos: -3.253438,-10.736731
+ parent: 2
+ - uid: 412
+ components:
+ - type: Transform
+ pos: -3.534688,-8.111731
+ parent: 2
+ - uid: 413
+ components:
+ - type: Transform
+ pos: -5.331563,-9.127356
+ parent: 2
+- proto: SheetGlass
+ entities:
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 4.7765174,-18.467577
+ parent: 2
+- proto: SheetPlasma
+ entities:
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 1.5424409,-29.552258
+ parent: 2
+- proto: SheetPlastic
+ entities:
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 4.3702674,-18.467577
+ parent: 2
+- proto: SignalButton
+ entities:
+ - uid: 257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,1.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3:
+ - Pressed: Toggle
+ 73:
+ - Pressed: Toggle
+- proto: SignArmory
+ entities:
+ - uid: 630
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+- proto: SignBridge
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+- proto: SignMedical
+ entities:
+ - uid: 634
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+- proto: SignPrison
+ entities:
+ - uid: 627
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 2
+ - uid: 632
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+- proto: SignRedFour
+ entities:
+ - uid: 487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-24.5
+ parent: 2
+- proto: SignRedOne
+ entities:
+ - uid: 484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-21.5
+ parent: 2
+- proto: SignRedThree
+ entities:
+ - uid: 486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-24.5
+ parent: 2
+- proto: SignRedTwo
+ entities:
+ - uid: 485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-21.5
+ parent: 2
+- proto: SpawnVendingMachineRestockFoodDrink
+ entities:
+ - uid: 718
+ components:
+ - type: Transform
+ pos: 5.5,-15.5
+ parent: 2
+- proto: StasisBedMachineCircuitboard
+ entities:
+ - uid: 438
+ components:
+ - type: Transform
+ pos: -3.276686,-9.972807
+ parent: 2
+- proto: SubstationMachineCircuitboard
+ entities:
+ - uid: 311
+ components:
+ - type: Transform
+ pos: -1.0817939,-29.5628
+ parent: 2
+- proto: SuitStorageEVAPrisoner
+ entities:
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 1.5,-17.5
+ parent: 2
+- proto: SyringeBluespace
+ entities:
+ - uid: 36
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.37354228,-10.530617
+ parent: 2
+- proto: Table
+ entities:
+ - uid: 220
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 2
+ - uid: 221
+ components:
+ - type: Transform
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 224
+ components:
+ - type: Transform
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,3.5
+ parent: 2
+ - uid: 264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,3.5
+ parent: 2
+ - uid: 265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,2.5
+ parent: 2
+ - uid: 423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-12.5
+ parent: 2
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 1.5,-24.5
+ parent: 2
+- proto: TableFrame
+ entities:
+ - uid: 476
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 2
+ - uid: 477
+ components:
+ - type: Transform
+ pos: 0.5,-24.5
+ parent: 2
+- proto: TableGlass
+ entities:
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 1.5,-7.5
+ parent: 2
+- proto: TableReinforced
+ entities:
+ - uid: 513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-13.5
+ parent: 2
+ - uid: 514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-13.5
+ parent: 2
+- proto: TableWood
+ entities:
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 3.5,-14.5
+ parent: 2
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 4.5,-14.5
+ parent: 2
+- proto: Thruster
+ entities:
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 8.5,-11.5
+ parent: 2
+ - uid: 392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-19.5
+ parent: 2
+ - uid: 393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-18.5
+ parent: 2
+ - uid: 394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-20.5
+ parent: 2
+ - uid: 395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-19.5
+ parent: 2
+ - uid: 396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-20.5
+ parent: 2
+ - uid: 398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-31.5
+ parent: 2
+ - uid: 399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-31.5
+ parent: 2
+ - uid: 400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-28.5
+ parent: 2
+ - uid: 402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-28.5
+ parent: 2
+ - uid: 439
+ components:
+ - type: Transform
+ pos: -7.5,-11.5
+ parent: 2
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 3.5,8.5
+ parent: 2
+ - uid: 458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-0.5
+ parent: 2
+ - uid: 459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-0.5
+ parent: 2
+ - uid: 551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,2.5
+ parent: 2
+ - uid: 559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,2.5
+ parent: 2
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 3.5,-9.5
+ parent: 2
+- proto: VendingMachineCigs
+ entities:
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 6.5,-15.5
+ parent: 2
+- proto: VendingMachineSecDrobe
+ entities:
+ - uid: 164
+ components:
+ - type: Transform
+ pos: -5.5,-11.5
+ parent: 2
+- proto: VendingMachineSustenance
+ entities:
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 2.5,-22.5
+ parent: 2
+- proto: WallReinforced
+ entities:
+ - uid: 14
+ components:
+ - type: Transform
+ pos: -1.5,3.5
+ parent: 2
+ - uid: 15
+ components:
+ - type: Transform
+ pos: -1.5,2.5
+ parent: 2
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 2.5,3.5
+ parent: 2
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 3.5,3.5
+ parent: 2
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 3.5,7.5
+ parent: 2
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 2.5,8.5
+ parent: 2
+ - uid: 22
+ components:
+ - type: Transform
+ pos: -2.5,7.5
+ parent: 2
+ - uid: 23
+ components:
+ - type: Transform
+ pos: 2.5,-10.5
+ parent: 2
+ - uid: 25
+ components:
+ - type: Transform
+ pos: -1.5,1.5
+ parent: 2
+ - uid: 27
+ components:
+ - type: Transform
+ pos: -0.5,0.5
+ parent: 2
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 1.5,0.5
+ parent: 2
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 2.5,0.5
+ parent: 2
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 2.5,1.5
+ parent: 2
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 1.5,-0.5
+ parent: 2
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 2.5,-6.5
+ parent: 2
+ - uid: 37
+ components:
+ - type: Transform
+ pos: -0.5,-6.5
+ parent: 2
+ - uid: 38
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 47
+ components:
+ - type: Transform
+ pos: -8.5,-12.5
+ parent: 2
+ - uid: 51
+ components:
+ - type: Transform
+ pos: -6.5,-14.5
+ parent: 2
+ - uid: 52
+ components:
+ - type: Transform
+ pos: -7.5,-14.5
+ parent: 2
+ - uid: 54
+ components:
+ - type: Transform
+ pos: -6.5,-11.5
+ parent: 2
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 7.5,-11.5
+ parent: 2
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 8.5,-12.5
+ parent: 2
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 9.5,-14.5
+ parent: 2
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 7.5,-14.5
+ parent: 2
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 7.5,-15.5
+ parent: 2
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 2.5,-8.5
+ parent: 2
+ - uid: 82
+ components:
+ - type: Transform
+ pos: 5.5,-8.5
+ parent: 2
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 5.5,-9.5
+ parent: 2
+ - uid: 85
+ components:
+ - type: Transform
+ pos: 6.5,-10.5
+ parent: 2
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 7.5,-10.5
+ parent: 2
+ - uid: 90
+ components:
+ - type: Transform
+ pos: -6.5,-10.5
+ parent: 2
+ - uid: 95
+ components:
+ - type: Transform
+ pos: -4.5,-21.5
+ parent: 2
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -5.5,-21.5
+ parent: 2
+ - uid: 100
+ components:
+ - type: Transform
+ pos: -7.5,-22.5
+ parent: 2
+ - uid: 103
+ components:
+ - type: Transform
+ pos: -5.5,-24.5
+ parent: 2
+ - uid: 119
+ components:
+ - type: Transform
+ pos: -3.5,-32.5
+ parent: 2
+ - uid: 125
+ components:
+ - type: Transform
+ pos: 3.5,-30.5
+ parent: 2
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 4.5,-30.5
+ parent: 2
+ - uid: 127
+ components:
+ - type: Transform
+ pos: 1.5,-30.5
+ parent: 2
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 4.5,-31.5
+ parent: 2
+ - uid: 129
+ components:
+ - type: Transform
+ pos: 4.5,-32.5
+ parent: 2
+ - uid: 132
+ components:
+ - type: Transform
+ pos: 1.5,-27.5
+ parent: 2
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 2.5,-27.5
+ parent: 2
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 4.5,-29.5
+ parent: 2
+ - uid: 136
+ components:
+ - type: Transform
+ pos: 5.5,-27.5
+ parent: 2
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 7.5,-27.5
+ parent: 2
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 8.5,-27.5
+ parent: 2
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 8.5,-26.5
+ parent: 2
+ - uid: 142
+ components:
+ - type: Transform
+ pos: 8.5,-24.5
+ parent: 2
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 5.5,-24.5
+ parent: 2
+ - uid: 146
+ components:
+ - type: Transform
+ pos: -1.5,-16.5
+ parent: 2
+ - uid: 147
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 2
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 5.5,-21.5
+ parent: 2
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 7.5,-21.5
+ parent: 2
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 2
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 5.5,-20.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 5.5,-16.5
+ parent: 2
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 2
+ - uid: 162
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 2
+ - uid: 163
+ components:
+ - type: Transform
+ pos: -1.5,-21.5
+ parent: 2
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 2
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 3.5,-21.5
+ parent: 2
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 4.5,-21.5
+ parent: 2
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 2
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 2
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 2.5,-16.5
+ parent: 2
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 4.5,-16.5
+ parent: 2
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 2
+ - uid: 178
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 2
+ - uid: 179
+ components:
+ - type: Transform
+ pos: 2.5,-11.5
+ parent: 2
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 2
+ - uid: 182
+ components:
+ - type: Transform
+ pos: 5.5,-11.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: -1.5,-11.5
+ parent: 2
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -3.5,-11.5
+ parent: 2
+ - uid: 187
+ components:
+ - type: Transform
+ pos: -4.5,-11.5
+ parent: 2
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 2.5,-9.5
+ parent: 2
+ - uid: 259
+ components:
+ - type: Transform
+ pos: 2.5,-17.5
+ parent: 2
+- proto: WallReinforcedRust
+ entities:
+ - uid: 49
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,3.5
+ parent: 2
+ - uid: 50
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,2.5
+ parent: 2
+ - uid: 56
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,7.5
+ parent: 2
+ - uid: 58
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,0.5
+ parent: 2
+ - uid: 60
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-0.5
+ parent: 2
+ - uid: 76
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-5.5
+ parent: 2
+ - uid: 80
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 2
+ - uid: 81
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-14.5
+ parent: 2
+ - uid: 84
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-12.5
+ parent: 2
+ - uid: 89
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-12.5
+ parent: 2
+ - uid: 96
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-12.5
+ parent: 2
+ - uid: 98
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-12.5
+ parent: 2
+ - uid: 99
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-14.5
+ parent: 2
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-7.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-8.5
+ parent: 2
+ - uid: 121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 2
+ - uid: 122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-10.5
+ parent: 2
+ - uid: 123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-10.5
+ parent: 2
+ - uid: 124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-20.5
+ parent: 2
+ - uid: 130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-21.5
+ parent: 2
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-21.5
+ parent: 2
+ - uid: 134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-24.5
+ parent: 2
+ - uid: 145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-30.5
+ parent: 2
+ - uid: 149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-30.5
+ parent: 2
+ - uid: 152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-27.5
+ parent: 2
+ - uid: 154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-27.5
+ parent: 2
+ - uid: 157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-28.5
+ parent: 2
+ - uid: 159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-27.5
+ parent: 2
+ - uid: 165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-28.5
+ parent: 2
+ - uid: 167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-24.5
+ parent: 2
+ - uid: 173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-24.5
+ parent: 2
+ - uid: 176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-21.5
+ parent: 2
+ - uid: 183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-22.5
+ parent: 2
+ - uid: 185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-17.5
+ parent: 2
+ - uid: 279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-16.5
+ parent: 2
+ - uid: 494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-16.5
+ parent: 2
+ - uid: 507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-19.5
+ parent: 2
+ - uid: 515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-21.5
+ parent: 2
+ - uid: 647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-16.5
+ parent: 2
+ - uid: 648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-16.5
+ parent: 2
+ - uid: 650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-11.5
+ parent: 2
+- proto: WardrobePrisonFilled
+ entities:
+ - uid: 222
+ components:
+ - type: Transform
+ pos: 7.5,-22.5
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ pos: -6.5,-22.5
+ parent: 2
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 7.5,-26.5
+ parent: 2
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 267
+ components:
+ - type: Transform
+ pos: -0.5,3.5
+ parent: 2
+- proto: WeaponDisabler
+ entities:
+ - uid: 474
+ components:
+ - type: Transform
+ pos: -2.5065405,-20.501991
+ parent: 2
+- proto: WeaponLaserGun
+ entities:
+ - uid: 408
+ components:
+ - type: Transform
+ parent: 106
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponShotgunKammerer
+ entities:
+ - uid: 269
+ components:
+ - type: Transform
+ parent: 105
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+- proto: WeaponTurretHostile
+ entities:
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 3.5,-20.5
+ parent: 2
+- proto: WeaponTurretSyndicateBroken
+ entities:
+ - uid: 401
+ components:
+ - type: Transform
+ pos: -7.5,-16.5
+ parent: 2
+ - uid: 437
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
+ - uid: 444
+ components:
+ - type: Transform
+ pos: 6.5,-9.5
+ parent: 2
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 8.5,-16.5
+ parent: 2
+ - uid: 492
+ components:
+ - type: Transform
+ pos: 6.5,-28.5
+ parent: 2
+- proto: WindoorSecure
+ entities:
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-22.5
+ parent: 2
+ - uid: 242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-17.5
+ parent: 2
+- proto: WindoorSecureSecurityLocked
+ entities:
+ - uid: 236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-22.5
+ parent: 2
+ - uid: 238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-26.5
+ parent: 2
+ - uid: 276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-17.5
+ parent: 2
+- proto: WindowDirectional
+ entities:
+ - uid: 502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-8.5
+ parent: 2
+ - uid: 503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-10.5
+ parent: 2
+- proto: Wirecutter
+ entities:
+ - uid: 657
+ components:
+ - type: Transform
+ pos: -4.360674,-13.823505
+ parent: 2
+...
diff --git a/Resources/Maps/Salvage/medium-vault-1.yml b/Resources/Maps/Salvage/medium-vault-1.yml
index 28e028b78459..7a187cb334c9 100644
--- a/Resources/Maps/Salvage/medium-vault-1.yml
+++ b/Resources/Maps/Salvage/medium-vault-1.yml
@@ -239,7 +239,7 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 202.38435
+ temperature: 139.98299
moles:
- 0
- 0
@@ -306,12 +306,12 @@ entities:
- type: Transform
pos: 3.5,1.5
parent: 222
-- proto: BoxShotgunFlare
+- proto: BlueprintSeismicCharge
entities:
- - uid: 25
+ - uid: 217
components:
- type: Transform
- pos: 0.5821538,-2.3847435
+ pos: 0.5,-4.518282
parent: 222
- proto: CableApcExtension
entities:
@@ -650,54 +650,48 @@ entities:
- type: Transform
pos: -1.6170431,-2.424334
parent: 222
-- proto: ClothingBackpackMerc
+- proto: ClothingBeltUtility
entities:
- - uid: 20
+ - uid: 196
components:
- type: Transform
- pos: 0.5821538,-4.4794393
+ pos: -6.516491,-5.5462
parent: 222
-- proto: ClothingBeltUtility
+- proto: ClothingNeckChameleon
entities:
- - uid: 196
+ - uid: 25
components:
- type: Transform
- pos: -6.516491,-5.5462
+ pos: -1.5,-3.5
parent: 222
-- proto: ClothingShoesBootsCombatFilled
+- proto: ClothingNeckScarfStripedSyndieGreen
entities:
- - uid: 220
+ - uid: 203
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- - uid: 221
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingNeckScarfStripedSyndieRed
+ entities:
+ - uid: 204
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpskirtOperative
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingUniformJumpskirtSyndieFormalDress
entities:
- - uid: 217
+ - uid: 205
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
-- proto: ClothingUniformJumpsuitOperative
+ pos: -1.5,-3.5
+ parent: 222
+- proto: ClothingUniformJumpsuitSyndieFormal
entities:
- - uid: 216
+ - uid: 17
components:
- type: Transform
- parent: 149
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -1.5,-3.5
+ parent: 222
- proto: ComputerBroken
entities:
- uid: 48
@@ -787,11 +781,34 @@ entities:
- type: Transform
pos: -1.5,-3.5
parent: 222
+ - type: Lock
+ locked: False
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.25,-0.48
+ - 0.25,-0.48
+ - 0.25,0.48
+ - -0.25,0.48
+ mask:
+ - Impassable
+ - TableLayer
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 75
+ hard: True
+ restitution: 0
+ friction: 0.4
- type: EntityStorage
air:
volume: 200
immutable: False
- temperature: 102.54218
+ temperature: 127.50272
moles:
- 0
- 0
@@ -805,20 +822,10 @@ entities:
- 0
- 0
- 0
- - type: ContainerContainer
- containers:
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents:
- - 216
- - 217
- - 220
- - 221
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
+ open: True
+ removedMasks: 20
+ - type: PlaceableSurface
+ isPlaceable: True
- proto: MachineFrameDestroyed
entities:
- uid: 197
@@ -826,6 +833,18 @@ entities:
- type: Transform
pos: -3.5,-6.5
parent: 222
+- proto: MaterialDiamond1
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -1.390625,-4.737032
+ parent: 222
+ - uid: 216
+ components:
+ - type: Transform
+ pos: -1.75,-4.455782
+ parent: 222
- proto: PartRodMetal1
entities:
- uid: 198
@@ -961,6 +980,13 @@ entities:
- type: Transform
pos: -6.5,4.5
parent: 222
+- proto: ResearchDisk10000
+ entities:
+ - uid: 207
+ components:
+ - type: Transform
+ pos: -1.515625,-4.643282
+ parent: 222
- proto: SalvageCanisterSpawner
entities:
- uid: 209
@@ -968,6 +994,13 @@ entities:
- type: Transform
pos: 4.5,0.5
parent: 222
+- proto: SalvageLootSpawner
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ pos: 0.5,-2.5
+ parent: 222
- proto: SalvageMaterialCrateSpawner
entities:
- uid: 180
@@ -1421,13 +1454,6 @@ entities:
- type: Transform
pos: -1.5,-5.5
parent: 222
-- proto: WeaponShotgunImprovisedLoaded
- entities:
- - uid: 17
- components:
- - type: Transform
- pos: -1.5115962,-4.5263143
- parent: 222
- proto: WeaponTurretHostile
entities:
- uid: 202
diff --git a/Resources/Maps/Shuttles/emergency_plasma.yml b/Resources/Maps/Shuttles/emergency_plasma.yml
index 82a1140cf56c..3dca7176f192 100644
--- a/Resources/Maps/Shuttles/emergency_plasma.yml
+++ b/Resources/Maps/Shuttles/emergency_plasma.yml
@@ -546,6 +546,7 @@ entities:
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
+ - type: EmergencyShuttle
- proto: AirAlarm
entities:
- uid: 218
@@ -2185,6 +2186,66 @@ entities:
- type: Transform
pos: 11.5,-16.5
parent: 2
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 12.5,-17.5
+ parent: 2
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 14.5,-17.5
+ parent: 2
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 13.5,-17.5
+ parent: 2
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 2
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 15.5,-17.5
+ parent: 2
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 15.5,-18.5
+ parent: 2
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 2
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 2
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 3.5,9.5
+ parent: 2
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 2.5,9.5
+ parent: 2
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 2
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 14.5,9.5
+ parent: 2
- proto: CableHV
entities:
- uid: 459
@@ -2773,6 +2834,36 @@ entities:
rot: 3.141592653589793 rad
pos: 5.5,4.5
parent: 2
+ - uid: 1152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-16.5
+ parent: 2
+ - uid: 1153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-17.5
+ parent: 2
+ - uid: 1154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-17.5
+ parent: 2
+ - uid: 1155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-16.5
+ parent: 2
+ - uid: 1158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-18.5
+ parent: 2
- proto: ChairOfficeDark
entities:
- uid: 645
@@ -3070,29 +3161,27 @@ entities:
parent: 2
- proto: ClosetWallEmergencyFilledRandom
entities:
- - uid: 66
+ - uid: 191
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-6.5
+ pos: 1.5,-0.5
parent: 2
- - uid: 118
+ - uid: 475
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 1.5,-8.5
parent: 2
- - uid: 155
+ - uid: 1159
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-8.5
parent: 2
- - uid: 184
+ - uid: 1160
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-2.5
+ pos: 15.5,-0.5
parent: 2
- proto: ComputerAlert
entities:
@@ -3197,6 +3286,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,8.5
parent: 2
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 1165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-10.5
+ parent: 2
- proto: DoubleEmergencyNitrogenTankFilled
entities:
- uid: 635
@@ -3402,7 +3499,6 @@ entities:
parent: 2
- type: GasFilter
filteredGas: Nitrogen
- enabled: True
- type: AtmosPipeColor
color: '#990000FF'
- uid: 414
@@ -3412,7 +3508,6 @@ entities:
parent: 2
- type: GasFilter
filteredGas: Oxygen
- enabled: True
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasMinerNitrogen
@@ -3442,7 +3537,6 @@ entities:
inletTwoConcentration: 0.78
inletOneConcentration: 0.22
targetPressure: 4500
- enabled: True
- type: AtmosPipeColor
color: '#03FCD3FF'
- proto: GasOutletInjector
@@ -5060,7 +5154,6 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 4500
- enabled: True
- uid: 404
components:
- type: Transform
@@ -5069,7 +5162,6 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 4500
- enabled: True
- uid: 408
components:
- type: Transform
@@ -5078,7 +5170,6 @@ entities:
parent: 2
- type: GasPressurePump
targetPressure: 303.3
- enabled: True
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentPump
@@ -6129,6 +6220,43 @@ entities:
- type: Transform
pos: 6.3648415,-19.594425
parent: 2
+- proto: Screen
+ entities:
+ - uid: 66
+ components:
+ - type: Transform
+ pos: 1.5,-6.5
+ parent: 2
+ - uid: 118
+ components:
+ - type: Transform
+ pos: 15.5,-6.5
+ parent: 2
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 15.5,-2.5
+ parent: 2
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 1.5,-2.5
+ parent: 2
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 11.5,7.5
+ parent: 2
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 6.5,3.5
+ parent: 2
+ - uid: 1163
+ components:
+ - type: Transform
+ pos: 6.5,-12.5
+ parent: 2
- proto: ShuttleWindow
entities:
- uid: 30
@@ -6505,115 +6633,115 @@ entities:
611:
- On: Open
- Off: Close
- 588:
+ lastSignals:
+ Status: True
+ - type: Label
+ currentLabel: Bridge Blast Doors
+ - type: NameModifier
+ baseName: signal switch
+ - uid: 607
+ components:
+ - type: MetaData
+ name: signal switch (Exterior Blast Doors)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.2,7.5
+ parent: 2
+ - type: SignalSwitch
+ state: True
+ - type: DeviceLinkSource
+ linkedPorts:
+ 610:
- On: Open
- Off: Close
- 587:
+ 609:
- On: Open
- Off: Close
- 589:
+ 613:
- On: Open
- Off: Close
- 590:
+ 614:
- On: Open
- Off: Close
- 591:
+ 5:
- On: Open
- Off: Close
- 592:
+ 615:
- On: Open
- Off: Close
- 593:
+ 616:
- On: Open
- Off: Close
- 595:
+ 617:
- On: Open
- Off: Close
- 596:
+ 618:
- On: Open
- Off: Close
- 597:
+ 621:
- On: Open
- Off: Close
- 598:
+ 622:
- On: Open
- Off: Close
- 599:
+ 623:
- On: Open
- Off: Close
- 600:
+ 625:
- On: Open
- Off: Close
- 601:
+ 626:
- On: Open
- Off: Close
- 602:
+ 587:
- On: Open
- Off: Close
- 603:
+ 588:
- On: Open
- Off: Close
- 594:
+ 589:
- On: Open
- Off: Close
- lastSignals:
- Status: True
- - type: Label
- currentLabel: Bridge Blast Doors
- - type: NameModifier
- baseName: signal switch
- - uid: 607
- components:
- - type: MetaData
- name: signal switch (Exterior Blast Doors)
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.2,7.5
- parent: 2
- - type: SignalSwitch
- state: True
- - type: DeviceLinkSource
- linkedPorts:
- 610:
+ 590:
- On: Open
- Off: Close
- 609:
+ 591:
- On: Open
- Off: Close
- 613:
+ 592:
- On: Open
- Off: Close
- 614:
+ 593:
- On: Open
- Off: Close
- 5:
+ 594:
- On: Open
- Off: Close
- 615:
+ 595:
- On: Open
- Off: Close
- 616:
+ 596:
- On: Open
- Off: Close
- 617:
+ 597:
- On: Open
- Off: Close
- 618:
+ 598:
- On: Open
- Off: Close
- 621:
+ 599:
- On: Open
- Off: Close
- 622:
+ 600:
- On: Open
- Off: Close
- 623:
+ 601:
- On: Open
- Off: Close
- 625:
+ 602:
- On: Open
- Off: Close
- 626:
+ 603:
- On: Open
- Off: Close
lastSignals:
@@ -6670,6 +6798,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,-0.5
parent: 2
+- proto: Sink
+ entities:
+ - uid: 1164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,0.5
+ parent: 2
- proto: SodaDispenser
entities:
- uid: 212
@@ -6920,6 +7056,18 @@ entities:
rot: 1.5707963267948966 rad
pos: 4.5,0.5
parent: 2
+ - uid: 1156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-17.5
+ parent: 2
+ - uid: 1157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-16.5
+ parent: 2
- proto: TableWood
entities:
- uid: 54
@@ -7119,20 +7267,6 @@ entities:
- type: Transform
pos: 7.5,-19.5
parent: 2
-- proto: VendingMachineWallMedical
- entities:
- - uid: 191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-13.5
- parent: 2
- - uid: 475
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-13.5
- parent: 2
- proto: VendingMachineYouTool
entities:
- uid: 515
@@ -7299,12 +7433,6 @@ entities:
- type: Transform
pos: 16.5,-15.5
parent: 2
- - uid: 237
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-15.5
- parent: 2
- uid: 252
components:
- type: Transform
@@ -7785,6 +7913,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 9.5,-12.5
parent: 2
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-15.5
+ parent: 2
- uid: 238
components:
- type: Transform
@@ -7808,6 +7942,7 @@ entities:
- uid: 242
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 10.5,-15.5
parent: 2
- uid: 243
diff --git a/Resources/Maps/Test/dev_map.yml b/Resources/Maps/Test/dev_map.yml
index e535f9e01148..9d495f7495b1 100644
--- a/Resources/Maps/Test/dev_map.yml
+++ b/Resources/Maps/Test/dev_map.yml
@@ -6701,13 +6701,6 @@ entities:
- type: Transform
pos: 3.5,8.5
parent: 179
-- proto: SpawnMobCrabAtmos
- entities:
- - uid: 729
- components:
- - type: Transform
- pos: 15.5,-10.5
- parent: 179
- proto: SpawnMobHuman
entities:
- uid: 138
diff --git a/Resources/Maps/_Impstation/box.yml b/Resources/Maps/_Impstation/box.yml
index de16747af4fb..348bbdbcff1a 100644
--- a/Resources/Maps/_Impstation/box.yml
+++ b/Resources/Maps/_Impstation/box.yml
@@ -44,6 +44,7 @@ tilemap:
21: FloorTechMaint
25: FloorTechMaint2
85: FloorTechMaint3
+ 4: FloorTechMaintDark
41: FloorWhite
64: FloorWhitePlastic
13: FloorWood
@@ -281,7 +282,7 @@ entities:
version: 6
0,-4:
ind: 0,-4
- tiles: AQAAAAAAVgAAAAADVgAAAAAAVgAAAAABVgAAAAABVgAAAAABVgAAAAACVgAAAAACVgAAAAABVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAADVgAAAAAAVgAAAAAAVgAAAAACVgAAAAADVgAAAAABVgAAAAAAVgAAAAAAVgAAAAACAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAVgAAAAADVgAAAAACVgAAAAAAVgAAAAACVgAAAAAAVgAAAAABVgAAAAADVgAAAAAAVgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAABVgAAAAACVgAAAAAAVgAAAAADVgAAAAACVgAAAAADVgAAAAAAVgAAAAACVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAAAVgAAAAAAVgAAAAABVgAAAAAAVgAAAAADVgAAAAACVgAAAAADVgAAAAADVgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAACAQAAAAAAVgAAAAACVgAAAAAAVgAAAAADVgAAAAADVgAAAAABVgAAAAABVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAACVgAAAAAAVgAAAAACVgAAAAACVgAAAAADVgAAAAADVgAAAAABVgAAAAADVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAADAAAAAAAAAQAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAABVgAAAAACVgAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAQAAAAAAAQAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAAAVgAAAAAAVgAAAAABVgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAAAAAAAABAQAAAAAAVgAAAAAAVgAAAAAAVgAAAAABVgAAAAADVgAAAAACVgAAAAAAVgAAAAAAVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAABAQAAAAAAVgAAAAADVgAAAAAAVgAAAAACVgAAAAABVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAVgAAAAACVgAAAAACVgAAAAADVgAAAAAAVgAAAAABVgAAAAAAVgAAAAADVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAQAAAAAAAQAAAAAAVgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAABAAAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAADAAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAABAQAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAACFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: AQAAAAAAVgAAAAADVgAAAAAAVgAAAAABVgAAAAABVgAAAAABVgAAAAACVgAAAAACVgAAAAABVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAADVgAAAAAAVgAAAAAAVgAAAAACVgAAAAADVgAAAAABVgAAAAAAVgAAAAAAVgAAAAACAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAVgAAAAADVgAAAAACVgAAAAAAVgAAAAACVgAAAAAAVgAAAAABVgAAAAADVgAAAAAAVgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAABVgAAAAACVgAAAAAAVgAAAAADVgAAAAACVgAAAAADVgAAAAAAVgAAAAACVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAAAVgAAAAAAVgAAAAABVgAAAAAAVgAAAAADVgAAAAACVgAAAAADVgAAAAADVgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAACAQAAAAAAVgAAAAACVgAAAAAAVgAAAAADVgAAAAADVgAAAAABVgAAAAABVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAACVgAAAAAAVgAAAAACVgAAAAACVgAAAAADVgAAAAADVgAAAAABVgAAAAADVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAADAAAAAAAAAQAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAABVgAAAAACVgAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAQAAAAAAAQAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAAAVgAAAAAAVgAAAAABVgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAABAQAAAAAAVgAAAAAAVgAAAAAAVgAAAAABVgAAAAADVgAAAAACVgAAAAAAVgAAAAAAVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAABAQAAAAAAVgAAAAADVgAAAAAAVgAAAAACVgAAAAABVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAVgAAAAACVgAAAAACVgAAAAADVgAAAAAAVgAAAAABVgAAAAAAVgAAAAADVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAQAAAAAAAQAAAAAAVgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAABAAAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAADAAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAABAQAAAAAAAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAACFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
2,-3:
ind: 2,-3
@@ -361,11 +362,11 @@ entities:
version: 6
1,-4:
ind: 1,-4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAA
version: 6
-1,-5:
ind: -1,-5
- tiles: OgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAADAAAAAAACAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAADAAAAAAABAAAAAAACAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAADAAAAAAAAAAAAAAABAAAAAAACAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAADAAAAAAACAAAAAAABAAAAAAACAAAAAAACAAAAAAABAAAAAAACAAAAAAABAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACGQAAAAAAAQAAAAAAAQAAAAAAVQAAAAAAVQAAAAABVQAAAAADAQAAAAAAAQAAAAAAAAAAAAABAAAAAAAAAAAAAAADAAAAAAAAAAAAAAACAAAAAAABAAAAAAADAAAAAAACAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAAAAAAADAQAAAAAAAQAAAAAAAAAAAAACAAAAAAACAAAAAAADAAAAAAADAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAAAAAAABAAAAAAAAAAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAABAgAAAAAAAgAAAAAD
+ tiles: OgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAADAAAAAAACAAAAAAABAAAAAAAAAAAAAAABAAAAAAABAAAAAAAAAAAAAAADAAAAAAABAAAAAAACAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAADAAAAAAAAAAAAAAABAAAAAAACAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAADAAAAAAACAAAAAAABAAAAAAACAAAAAAACAAAAAAABAAAAAAACAAAAAAABAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACGQAAAAAAAQAAAAAAAQAAAAAAVQAAAAAAVQAAAAABVQAAAAADAQAAAAAAAQAAAAAAAAAAAAABAAAAAAAAAAAAAAADAAAAAAAAAAAAAAACAAAAAAABAAAAAAADAAAAAAACAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAAAAAAADAQAAAAAAAQAAAAAAAAAAAAACAAAAAAACAAAAAAADAAAAAAADAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAAAAAAABAAAAAAAAAAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAgAAAAADAgAAAAAAAgAAAAABAgAAAAACAgAAAAABAgAAAAABAgAAAAAAAgAAAAAD
version: 6
-2,-5:
ind: -2,-5
@@ -381,15 +382,15 @@ entities:
version: 6
0,-5:
ind: 0,-5
- tiles: AQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAACFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAACFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAABAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAAAAAAABAAAAAAAAAAAAAAACAAAAAAADAAAAAAACAAAAAAADAAAAAAACAAAAAAABAAAAAAABAAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAADAAAAAAACAAAAAAADAAAAAAACAAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAABAAAAAAACAAAAAAADAAAAAAABAAAAAAABAAAAAAAAAAAAAAADAAAAAAADAAAAAAAAAAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAADAAAAAAACAAAAAAADAAAAAAABAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAADAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAABAAAAAAABAAAAAAABAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAA
+ tiles: QQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABAAAAAAAAQAAAAAABAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAACFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAACFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAABAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAAAAAAABAAAAAAAAAAAAAAACAAAAAAADAAAAAAACAAAAAAADAAAAAAACAAAAAAABAAAAAAABAAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAABAAAAAAABAAAAAAAAAAAAAAABAAAAAAADAAAAAAACAAAAAAADAAAAAAACAAAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAABAAAAAAACAAAAAAADAAAAAAABAAAAAAABAAAAAAAAAAAAAAADAAAAAAADAAAAAAAAAAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAADAAAAAAACAAAAAAADAAAAAAABAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAAAAAAACAAAAAAADAAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAABAAAAAAABAAAAAAABAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAVgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAA
version: 6
0,-6:
ind: 0,-6
- tiles: AQAAAAAAAQAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAOgAAAAAAAwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAOgAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAXgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATwAAAAAATwAAAAAATwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAATwAAAAAATwAAAAAATwAAAAAAOgAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAOgAAAAAAAwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAXgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAABAAAAAAABAAAAAAABAAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAABAAAAAAABAAAAAAABAAAAAAAOgAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAABAAAAAAAAQAAAAAABAAAAAAAAQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
version: 6
-1,-6:
ind: -1,-6
- tiles: AwAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAOgAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAOgAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAATwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: AwAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAOgAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAOgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAOgAAAAAAAwAAAAAAOgAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAATwAAAAAAAwAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAATwAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAATwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAAQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAQAAAAAAQQAAAAAAQQAAAAAA
version: 6
1,-6:
ind: 1,-6
@@ -530,6 +531,8 @@ entities:
3015: 79,-54
3016: 74,-54
3017: 72,-54
+ 4206: -5,-76
+ 4207: -4,-76
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -555,13 +558,6 @@ entities:
id: Arrows
decals:
3643: 60,-52
- - node:
- angle: 4.71238898038469 rad
- color: '#FFFFFFFF'
- id: Arrows
- decals:
- 3922: -5.0361958,-76.98189
- 3923: -5.0518208,-75.99751
- node:
zIndex: 1
angle: 4.71238898038469 rad
@@ -717,8 +713,6 @@ entities:
3746: 31,-36
3904: -5,-73
3905: -6,-73
- 3906: -10,-74
- 3907: -9,-74
3910: 2,-93
3911: 2,-92
3912: -6,-87
@@ -733,6 +727,19 @@ entities:
3952: -25,-63
3953: -24,-63
3971: -23,-16
+ 4154: -9,-73
+ 4159: 11,-78
+ 4162: -8,-73
+ 4170: 15,-53
+ 4171: 15,-52
+ 4172: -5,-77
+ 4173: -4,-77
+ 4174: 3,-77
+ 4175: 2,-77
+ 4180: 15,-51
+ 4181: 19,-51
+ 4182: 19,-52
+ 4183: 19,-53
- node:
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
@@ -746,7 +753,6 @@ entities:
3931: 13,-71
3932: 14,-71
3933: 19,-71
- 3934: 11,-76
3935: 11,-77
- node:
color: '#FFFFFFFF'
@@ -784,6 +790,10 @@ entities:
3590: 0,37
3591: 1,37
3592: 2,37
+ 4155: -4,-86
+ 4156: -2,-86
+ 4157: 0,-86
+ 4158: 2,-86
- node:
color: '#AFCFFF63'
id: BotLeftGreyscale
@@ -816,16 +826,8 @@ entities:
3857: 9,-81
3858: 9,-80
3859: 9,-79
- 3860: 8,-78
- 3861: 4,-77
- 3862: 4,-76
- 3863: -6,-77
- 3864: -6,-76
- 3865: -6,-84
- 3866: -5,-84
- 3867: -7,-83
- 3868: -7,-82
3979: -22,-16
+ 4161: 9,-82
- node:
color: '#FFFFFFFF'
id: BotRightGreyscale
@@ -1207,11 +1209,15 @@ entities:
2252: -12,-50
2573: 7,-41
2853: 9,-66
+ - node:
+ color: '#F4B96199'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 4166: -11,-73
- node:
color: '#F4BA619A'
id: BrickTileWhiteCornerNe
decals:
- 3804: -12,-73
3820: 2,-89
- node:
color: '#334E6DC8'
@@ -1296,11 +1302,15 @@ entities:
decals:
2267: -6,-58
2580: 7,-45
+ - node:
+ color: '#F4B96199'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 4165: -11,-77
- node:
color: '#F4BA619A'
id: BrickTileWhiteCornerSe
decals:
- 3805: -12,-77
3822: 0,-95
3823: 1,-94
- node:
@@ -1469,13 +1479,16 @@ entities:
2877: 9,-69
2878: 9,-68
2879: 9,-67
+ - node:
+ color: '#F4B96199'
+ id: BrickTileWhiteLineE
+ decals:
+ 4167: -11,-74
+ 4168: -11,-76
- node:
color: '#F4BA619A'
id: BrickTileWhiteLineE
decals:
- 3799: -12,-74
- 3800: -12,-75
- 3801: -12,-76
3834: 2,-91
3835: 2,-90
- node:
@@ -1580,6 +1593,11 @@ entities:
2863: -3,-67
2886: -6,-68
2887: -5,-68
+ - node:
+ color: '#F4B96199'
+ id: BrickTileWhiteLineN
+ decals:
+ 4163: -12,-73
- node:
color: '#F4BA619A'
id: BrickTileWhiteLineN
@@ -1684,6 +1702,11 @@ entities:
2873: 5,-71
2874: 6,-71
2875: 7,-71
+ - node:
+ color: '#F4B96199'
+ id: BrickTileWhiteLineS
+ decals:
+ 4164: -12,-77
- node:
color: '#F4BA619A'
id: BrickTileWhiteLineS
@@ -1841,9 +1864,9 @@ entities:
decals:
1680: 66,-22
2615: 9,-74
- 3765: -0.987242,-92.82775
3766: -0.987242,-75.526344
3780: -1,-71
+ 4208: -0.997293,-94.83442
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -2275,7 +2298,6 @@ entities:
3636: 59,-44
3637: 60,-44
3641: 58,-51
- 3846: -10,-83
3847: -4,-93
4004: 23,-26
- node:
@@ -2393,6 +2415,9 @@ entities:
id: DirtHeavy
decals:
455: -28,-37
+ 4189: 9,-85
+ 4191: 7,-80
+ 4192: 9,-78
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2499,6 +2524,8 @@ entities:
2115: -10,25
2116: -10,23
2117: -9,23
+ 4190: 7,-84
+ 4197: 9,-84
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2691,7 +2718,6 @@ entities:
3651: -43,-13
3652: -44,-12
3656: -44,-13
- 3869: 7,-85
3874: -2,-95
3875: 1,-89
3877: 2,-80
@@ -2722,6 +2748,8 @@ entities:
453: -22,-25
454: -26,-31
465: -32,-24
+ 4193: 8,-83
+ 4194: 8,-78
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2789,19 +2817,10 @@ entities:
3676: -49,-13
3677: -49,-11
3678: -48,-11
- 3881: -9,-75
3882: -10,-82
3883: -8,-86
3887: 1,-91
3888: -1,-95
- 3889: 8,-85
- 3890: 8,-85
- 3891: 7,-84
- 3892: 7,-83
- 3894: 9,-85
- 3895: 9,-85
- 3896: 9,-83
- 3897: 9,-83
- node:
color: '#FFFFFFFF'
id: Flowersbr3
@@ -5682,6 +5701,15 @@ entities:
4086: 21,-19
4087: 21,-18
4088: 21,-17
+ 4184: 13,-53
+ 4185: 13,-52
+ 4186: 13,-51
+ 4198: 7,-85
+ 4199: 7,-84
+ 4200: 7,-83
+ 4202: 7,-81
+ 4203: 7,-80
+ 4205: 7,-78
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -6219,7 +6247,7 @@ entities:
-7,-1:
0: 65535
-7,-5:
- 0: 16175
+ 0: 65327
-7,0:
0: 17476
1: 256
@@ -6286,19 +6314,19 @@ entities:
3,-8:
0: 53247
4,-7:
- 0: 56799
+ 0: 40415
3,-7:
0: 57309
4,-6:
- 0: 56793
+ 0: 56797
3,-6:
0: 56797
5,-8:
0: 1911
5,-7:
- 0: 65399
+ 0: 16247
5,-6:
- 0: 30579
+ 0: 30583
5,-9:
0: 18303
6,-8:
@@ -6506,7 +6534,7 @@ entities:
2,-10:
0: 57584
2,-13:
- 0: 65163
+ 0: 63627
2,-11:
0: 61166
2,-9:
@@ -6518,8 +6546,7 @@ entities:
3,-10:
0: 45298
3,-13:
- 0: 61713
- 3: 204
+ 0: 61883
4,-12:
0: 65535
4,-11:
@@ -6527,8 +6554,7 @@ entities:
4,-10:
0: 53744
4,-13:
- 0: 64716
- 3: 17
+ 0: 65535
5,-12:
0: 30583
5,-11:
@@ -6539,30 +6565,30 @@ entities:
0: 30583
6,-12:
1: 4369
- 4: 204
- 3: 49152
+ 3: 204
+ 4: 49152
6,-11:
1: 61713
- 3: 204
+ 4: 204
6,-10:
0: 29424
6,-13:
1: 4369
- 4: 49152
- 3: 204
+ 3: 49152
+ 4: 204
7,-12:
- 4: 17
- 3: 4096
+ 3: 17
+ 4: 4096
1: 17476
7,-11:
- 3: 17
+ 4: 17
1: 29764
7,-10:
0: 45296
7,-13:
- 4: 4096
+ 3: 4096
1: 17476
- 3: 17
+ 4: 17
8,-12:
0: 7647
8,-11:
@@ -7593,9 +7619,7 @@ entities:
3,-15:
0: 65535
3,-14:
- 0: 4415
- 1: 192
- 3: 49152
+ 0: 45567
3,-17:
6: 30576
4,-16:
@@ -7604,9 +7628,7 @@ entities:
4,-15:
0: 65535
4,-14:
- 0: 52463
- 1: 16
- 3: 4096
+ 0: 65535
8,-13:
0: 56605
9,-12:
@@ -8191,7 +8213,7 @@ entities:
5,-20:
1: 58444
5,-21:
- 3: 57344
+ 4: 57344
1: 3780
6,-20:
1: 28675
@@ -8201,7 +8223,7 @@ entities:
6,-18:
0: 21575
6,-21:
- 3: 12288
+ 4: 12288
0: 34824
1: 768
6,-17:
@@ -8224,15 +8246,15 @@ entities:
0: 30583
6,-15:
1: 4592
- 3: 49152
+ 4: 49152
6,-14:
1: 4369
- 3: 49356
+ 4: 49356
7,-15:
1: 17520
- 3: 4096
+ 4: 4096
7,-14:
- 3: 4113
+ 4: 4113
1: 17476
-4,-20:
1: 255
@@ -8251,19 +8273,19 @@ entities:
-5,-18:
0: 57305
-3,-20:
- 1: 17
- 0: 56524
+ 1: 51
+ 0: 47240
-3,-19:
- 0: 7677
+ 0: 49083
-3,-18:
- 0: 65532
+ 0: 65520
-3,-21:
- 1: 4369
- 0: 52428
+ 1: 13107
+ 0: 34952
-2,-20:
0: 63487
-2,-19:
- 0: 61439
+ 0: 65535
-2,-18:
0: 65520
-2,-21:
@@ -8366,7 +8388,7 @@ entities:
1,-20:
0: 32767
1,-19:
- 0: 30583
+ 0: 32631
1,-18:
0: 65520
1,-17:
@@ -8374,7 +8396,7 @@ entities:
1,-21:
0: 65535
2,-20:
- 0: 35771
+ 0: 43963
2,-19:
0: 49147
2,-18:
@@ -8406,16 +8428,15 @@ entities:
0: 5
1: 63994
1,-22:
- 0: 61780
- 1: 8
+ 0: 63344
1,-25:
1: 36736
2,-23:
0: 8705
1: 52240
2,-22:
- 0: 12322
1: 17492
+ 0: 12322
3,-23:
1: 61440
3,-22:
@@ -8439,8 +8460,9 @@ entities:
-5,-23:
1: 53558
-4,-22:
- 1: 4112
- 0: 11936
+ 1: 12816
+ 0: 2080
+ 4: 17472
-5,-22:
1: 48625
0: 4
@@ -8450,7 +8472,7 @@ entities:
1: 6412
0: 17506
-3,-22:
- 0: 53200
+ 0: 36784
-3,-24:
0: 32768
1: 136
@@ -8472,7 +8494,7 @@ entities:
1: 4096
0: 36044
5,-22:
- 3: 3
+ 4: 3
1: 17632
5,-24:
1: 32
@@ -8749,7 +8771,7 @@ entities:
- 0
- 0
- 0
- - 0
+ - 6666.982
- 0
- 0
- 0
@@ -8764,7 +8786,7 @@ entities:
- 0
- 0
- 0
- - 6666.982
+ - 0
- 0
- 0
- 0
@@ -8827,8 +8849,8 @@ entities:
id: docking46345
localAnchorB: -0.5,-1
localAnchorA: -66.5,22
- damping: 42.401047
- stiffness: 380.5909
+ damping: 42.401043
+ stiffness: 380.59088
- type: OccluderTree
- type: Shuttle
- type: RadiationGridResistance
@@ -9065,9 +9087,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 8808
- - 28192
- - 5914
+ - 17656
+ - 27423
+ - 18727
- 28374
- 28373
- uid: 11766
@@ -9200,15 +9222,6 @@ entities:
- 2034
- 2564
- 19062
- - uid: 20630
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-49.5
- parent: 8364
- - type: DeviceList
- devices:
- - 20633
- uid: 20897
components:
- type: Transform
@@ -10266,12 +10279,13 @@ entities:
devices:
- 28369
- 28370
- - 28371
- 28373
- 28374
- - 28377
+ - 28338
- 28386
- 28376
+ - 28412
+ - 21955
- uid: 26707
components:
- type: Transform
@@ -10294,7 +10308,7 @@ entities:
- 28385
- 28384
- 28372
- - 28371
+ - 28338
- proto: AirAlarmSupermatter
entities:
- uid: 23163
@@ -10305,12 +10319,12 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 4879
- - 17716
- - 17116
- - 22815
- - 26002
- - 28402
+ - 17714
+ - 17718
+ - 26096
+ - 19037
+ - 17777
+ - 26680
- proto: AirAlarmVox
entities:
- uid: 6225
@@ -11082,6 +11096,17 @@ entities:
- type: Transform
pos: 3.5,-64.5
parent: 8364
+ - uid: 24489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-73.5
+ parent: 8364
+ - uid: 26119
+ components:
+ - type: Transform
+ pos: 7.5,-73.5
+ parent: 8364
- uid: 26579
components:
- type: Transform
@@ -11121,11 +11146,10 @@ entities:
linkedPorts:
4526:
- DoorStatus: DoorBolt
- - uid: 28182
+ - uid: 28407
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-74.5
+ pos: 9.5,-76.5
parent: 8364
- proto: AirlockEngineeringLocked
entities:
@@ -11324,29 +11348,27 @@ entities:
- DoorStatus: DoorBolt
3858:
- DoorStatus: DoorBolt
- - uid: 10762
+ - uid: 16990
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-85.5
+ pos: -9.5,-85.5
parent: 8364
- type: DeviceLinkSink
invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
- 26095:
+ 17035:
- DoorStatus: DoorBolt
- - uid: 26095
+ - uid: 17035
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-85.5
+ pos: -12.5,-85.5
parent: 8364
- type: DeviceLinkSink
invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
- 10762:
+ 16990:
- DoorStatus: DoorBolt
- proto: AirlockExternalGlass
entities:
@@ -11911,7 +11933,7 @@ entities:
pos: 24.5,16.5
parent: 8364
- type: Door
- secondsUntilStateChange: -65499.188
+ secondsUntilStateChange: -82424.12
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -13662,11 +13684,6 @@ entities:
- type: Transform
pos: 6.5,-60.5
parent: 8364
- - uid: 20633
- components:
- - type: Transform
- pos: 15.5,-51.5
- parent: 8364
- uid: 20898
components:
- type: Transform
@@ -14084,6 +14101,15 @@ entities:
- type: Transform
pos: 0.5,50.5
parent: 8364
+ - uid: 27423
+ components:
+ - type: Transform
+ pos: -1.5,-92.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 10819
+ - 4840
- uid: 27489
components:
- type: Transform
@@ -14097,15 +14123,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 22603
- - uid: 28192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-92.5
- parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 10819
- uid: 28385
components:
- type: Transform
@@ -14123,6 +14140,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 26651
+ - 16917
- proto: AirSensorVox
entities:
- uid: 6971
@@ -15338,11 +15356,6 @@ entities:
parent: 8364
- proto: AtmosFixBlockerMarker
entities:
- - uid: 110
- components:
- - type: Transform
- pos: 15.5,-50.5
- parent: 8364
- uid: 9355
components:
- type: Transform
@@ -15478,46 +15491,6 @@ entities:
- type: Transform
pos: 28.5,-42.5
parent: 8364
- - uid: 17651
- components:
- - type: Transform
- pos: 14.5,-52.5
- parent: 8364
- - uid: 19031
- components:
- - type: Transform
- pos: 16.5,-51.5
- parent: 8364
- - uid: 19032
- components:
- - type: Transform
- pos: 16.5,-52.5
- parent: 8364
- - uid: 21772
- components:
- - type: Transform
- pos: 14.5,-50.5
- parent: 8364
- - uid: 22803
- components:
- - type: Transform
- pos: 14.5,-51.5
- parent: 8364
- - uid: 22946
- components:
- - type: Transform
- pos: 15.5,-52.5
- parent: 8364
- - uid: 23143
- components:
- - type: Transform
- pos: 15.5,-51.5
- parent: 8364
- - uid: 23167
- components:
- - type: Transform
- pos: 16.5,-50.5
- parent: 8364
- uid: 27998
components:
- type: Transform
@@ -15553,6 +15526,21 @@ entities:
- type: Transform
pos: 20.5,-87.5
parent: 8364
+ - uid: 28014
+ components:
+ - type: Transform
+ pos: -13.5,-86.5
+ parent: 8364
+ - uid: 28177
+ components:
+ - type: Transform
+ pos: -13.5,-85.5
+ parent: 8364
+ - uid: 28264
+ components:
+ - type: Transform
+ pos: -13.5,-84.5
+ parent: 8364
- proto: AtmosFixFreezerMarker
entities:
- uid: 24504
@@ -16601,11 +16589,6 @@ entities:
- type: Transform
pos: -42.5,-49.5
parent: 8364
- - uid: 3750
- components:
- - type: Transform
- pos: 15.5,-53.5
- parent: 8364
- uid: 4824
components:
- type: MetaData
@@ -16705,11 +16688,6 @@ entities:
- type: Transform
pos: 87.5,-38.5
parent: 8364
- - uid: 22831
- components:
- - type: Transform
- pos: 15.5,-49.5
- parent: 8364
- uid: 26646
components:
- type: Transform
@@ -17013,12 +16991,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,20.5
parent: 8364
- - uid: 28490
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-84.5
- parent: 8364
- proto: BorgCharger
entities:
- uid: 25975
@@ -17674,6 +17646,11 @@ entities:
- type: Transform
pos: -61.5,16.5
parent: 8364
+ - uid: 105
+ components:
+ - type: Transform
+ pos: -3.5,-80.5
+ parent: 8364
- uid: 144
components:
- type: Transform
@@ -18429,11 +18406,41 @@ entities:
- type: Transform
pos: 17.5,-42.5
parent: 8364
+ - uid: 3752
+ components:
+ - type: Transform
+ pos: 6.5,-73.5
+ parent: 8364
+ - uid: 3753
+ components:
+ - type: Transform
+ pos: 6.5,-74.5
+ parent: 8364
+ - uid: 3754
+ components:
+ - type: Transform
+ pos: 6.5,-75.5
+ parent: 8364
+ - uid: 3773
+ components:
+ - type: Transform
+ pos: -13.5,-85.5
+ parent: 8364
+ - uid: 3779
+ components:
+ - type: Transform
+ pos: 6.5,-76.5
+ parent: 8364
- uid: 3792
components:
- type: Transform
pos: 4.5,-70.5
parent: 8364
+ - uid: 3817
+ components:
+ - type: Transform
+ pos: 6.5,-77.5
+ parent: 8364
- uid: 3820
components:
- type: Transform
@@ -18464,16 +18471,51 @@ entities:
- type: Transform
pos: 12.5,-71.5
parent: 8364
+ - uid: 3830
+ components:
+ - type: Transform
+ pos: 6.5,-80.5
+ parent: 8364
- uid: 3839
components:
- type: Transform
pos: -13.5,-68.5
parent: 8364
+ - uid: 3853
+ components:
+ - type: Transform
+ pos: 6.5,-83.5
+ parent: 8364
+ - uid: 3860
+ components:
+ - type: Transform
+ pos: 6.5,-81.5
+ parent: 8364
- uid: 3864
components:
- type: Transform
pos: 11.5,-80.5
parent: 8364
+ - uid: 3866
+ components:
+ - type: Transform
+ pos: 6.5,-84.5
+ parent: 8364
+ - uid: 3867
+ components:
+ - type: Transform
+ pos: 6.5,-82.5
+ parent: 8364
+ - uid: 3872
+ components:
+ - type: Transform
+ pos: 6.5,-85.5
+ parent: 8364
+ - uid: 3874
+ components:
+ - type: Transform
+ pos: 6.5,-86.5
+ parent: 8364
- uid: 3879
components:
- type: Transform
@@ -18494,6 +18536,11 @@ entities:
- type: Transform
pos: 5.5,-63.5
parent: 8364
+ - uid: 3883
+ components:
+ - type: Transform
+ pos: 5.5,-86.5
+ parent: 8364
- uid: 3884
components:
- type: Transform
@@ -18569,11 +18616,31 @@ entities:
- type: Transform
pos: 11.5,-76.5
parent: 8364
+ - uid: 4046
+ components:
+ - type: Transform
+ pos: 4.5,-86.5
+ parent: 8364
- uid: 4048
components:
- type: Transform
pos: 11.5,-75.5
parent: 8364
+ - uid: 4051
+ components:
+ - type: Transform
+ pos: 3.5,-86.5
+ parent: 8364
+ - uid: 4052
+ components:
+ - type: Transform
+ pos: 2.5,-86.5
+ parent: 8364
+ - uid: 4055
+ components:
+ - type: Transform
+ pos: 0.5,-86.5
+ parent: 8364
- uid: 4058
components:
- type: Transform
@@ -18599,16 +18666,61 @@ entities:
- type: Transform
pos: -20.5,45.5
parent: 8364
+ - uid: 4545
+ components:
+ - type: Transform
+ pos: 1.5,-86.5
+ parent: 8364
+ - uid: 4546
+ components:
+ - type: Transform
+ pos: 6.5,-78.5
+ parent: 8364
+ - uid: 4547
+ components:
+ - type: Transform
+ pos: -1.5,-86.5
+ parent: 8364
- uid: 4553
components:
- type: Transform
pos: -16.5,-71.5
parent: 8364
+ - uid: 4559
+ components:
+ - type: Transform
+ pos: -0.5,-86.5
+ parent: 8364
- uid: 4583
components:
- type: Transform
pos: 0.5,-60.5
parent: 8364
+ - uid: 4596
+ components:
+ - type: Transform
+ pos: 5.5,-80.5
+ parent: 8364
+ - uid: 4597
+ components:
+ - type: Transform
+ pos: -7.5,-86.5
+ parent: 8364
+ - uid: 4649
+ components:
+ - type: Transform
+ pos: -6.5,-86.5
+ parent: 8364
+ - uid: 4679
+ components:
+ - type: Transform
+ pos: -5.5,-86.5
+ parent: 8364
+ - uid: 4681
+ components:
+ - type: Transform
+ pos: -4.5,-86.5
+ parent: 8364
- uid: 4696
components:
- type: Transform
@@ -18914,6 +19026,11 @@ entities:
- type: Transform
pos: -9.5,-22.5
parent: 8364
+ - uid: 5914
+ components:
+ - type: Transform
+ pos: -3.5,-86.5
+ parent: 8364
- uid: 5962
components:
- type: Transform
@@ -32749,6 +32866,11 @@ entities:
- type: Transform
pos: -0.5,-19.5
parent: 8364
+ - uid: 16937
+ components:
+ - type: Transform
+ pos: -10.5,-73.5
+ parent: 8364
- uid: 16939
components:
- type: Transform
@@ -35529,11 +35651,6 @@ entities:
- type: Transform
pos: 21.5,-60.5
parent: 8364
- - uid: 19160
- components:
- - type: Transform
- pos: -1.5,-80.5
- parent: 8364
- uid: 19310
components:
- type: Transform
@@ -39549,6 +39666,16 @@ entities:
- type: Transform
pos: 18.5,-13.5
parent: 8364
+ - uid: 27256
+ components:
+ - type: Transform
+ pos: 3.5,-80.5
+ parent: 8364
+ - uid: 27257
+ components:
+ - type: Transform
+ pos: 4.5,-80.5
+ parent: 8364
- uid: 27261
components:
- type: Transform
@@ -39594,11 +39721,6 @@ entities:
- type: Transform
pos: -11.5,-56.5
parent: 8364
- - uid: 27376
- components:
- - type: Transform
- pos: -11.5,-74.5
- parent: 8364
- uid: 27415
components:
- type: Transform
@@ -39609,15 +39731,30 @@ entities:
- type: Transform
pos: -7.5,-69.5
parent: 8364
- - uid: 27457
+ - uid: 27458
components:
- type: Transform
- pos: -1.5,-72.5
+ pos: -8.5,-69.5
parent: 8364
- - uid: 27458
+ - uid: 27493
components:
- type: Transform
- pos: -8.5,-69.5
+ pos: -6.5,-80.5
+ parent: 8364
+ - uid: 27496
+ components:
+ - type: Transform
+ pos: 2.5,-80.5
+ parent: 8364
+ - uid: 27515
+ components:
+ - type: Transform
+ pos: -5.5,-80.5
+ parent: 8364
+ - uid: 27555
+ components:
+ - type: Transform
+ pos: 2.5,-79.5
parent: 8364
- uid: 27630
components:
@@ -39824,146 +39961,26 @@ entities:
- type: Transform
pos: 5.5,-73.5
parent: 8364
- - uid: 28254
- components:
- - type: Transform
- pos: 5.5,-74.5
- parent: 8364
- - uid: 28255
- components:
- - type: Transform
- pos: 5.5,-75.5
- parent: 8364
- - uid: 28256
- components:
- - type: Transform
- pos: 5.5,-76.5
- parent: 8364
- - uid: 28257
- components:
- - type: Transform
- pos: 5.5,-77.5
- parent: 8364
- - uid: 28258
- components:
- - type: Transform
- pos: 5.5,-78.5
- parent: 8364
- - uid: 28259
- components:
- - type: Transform
- pos: 5.5,-79.5
- parent: 8364
- uid: 28260
components:
- type: Transform
- pos: 5.5,-80.5
+ pos: -10.5,-74.5
parent: 8364
- uid: 28261
components:
- type: Transform
pos: 6.5,-79.5
parent: 8364
- - uid: 28262
- components:
- - type: Transform
- pos: 7.5,-79.5
- parent: 8364
- - uid: 28263
- components:
- - type: Transform
- pos: 5.5,-81.5
- parent: 8364
- - uid: 28264
- components:
- - type: Transform
- pos: 8.5,-79.5
- parent: 8364
- - uid: 28265
- components:
- - type: Transform
- pos: 5.5,-82.5
- parent: 8364
- - uid: 28266
- components:
- - type: Transform
- pos: 5.5,-83.5
- parent: 8364
- - uid: 28267
- components:
- - type: Transform
- pos: 4.5,-83.5
- parent: 8364
- - uid: 28268
- components:
- - type: Transform
- pos: 3.5,-83.5
- parent: 8364
- uid: 28269
components:
- type: Transform
- pos: 2.5,-83.5
- parent: 8364
- - uid: 28270
- components:
- - type: Transform
- pos: 2.5,-84.5
- parent: 8364
- - uid: 28271
- components:
- - type: Transform
- pos: 2.5,-85.5
- parent: 8364
- - uid: 28272
- components:
- - type: Transform
- pos: 1.5,-85.5
- parent: 8364
- - uid: 28273
- components:
- - type: Transform
- pos: 0.5,-85.5
- parent: 8364
- - uid: 28274
- components:
- - type: Transform
- pos: -1.5,-85.5
- parent: 8364
- - uid: 28275
- components:
- - type: Transform
- pos: -2.5,-85.5
+ pos: -4.5,-80.5
parent: 8364
- uid: 28276
components:
- type: Transform
pos: -0.5,-85.5
parent: 8364
- - uid: 28277
- components:
- - type: Transform
- pos: -3.5,-85.5
- parent: 8364
- - uid: 28278
- components:
- - type: Transform
- pos: -3.5,-84.5
- parent: 8364
- - uid: 28279
- components:
- - type: Transform
- pos: -4.5,-84.5
- parent: 8364
- - uid: 28280
- components:
- - type: Transform
- pos: -5.5,-84.5
- parent: 8364
- - uid: 28281
- components:
- - type: Transform
- pos: -6.5,-84.5
- parent: 8364
- uid: 28282
components:
- type: Transform
@@ -40134,10 +40151,20 @@ entities:
- type: Transform
pos: -0.5,-88.5
parent: 8364
- - uid: 28498
+ - uid: 28320
components:
- type: Transform
- pos: -1.5,-79.5
+ pos: -10.5,-75.5
+ parent: 8364
+ - uid: 28409
+ components:
+ - type: Transform
+ pos: -3.5,-79.5
+ parent: 8364
+ - uid: 28422
+ components:
+ - type: Transform
+ pos: -2.5,-86.5
parent: 8364
- uid: 28502
components:
@@ -40159,21 +40186,6 @@ entities:
- type: Transform
pos: -0.5,-77.5
parent: 8364
- - uid: 28506
- components:
- - type: Transform
- pos: -0.5,-78.5
- parent: 8364
- - uid: 28507
- components:
- - type: Transform
- pos: -0.5,-80.5
- parent: 8364
- - uid: 28509
- components:
- - type: Transform
- pos: -1.5,-78.5
- parent: 8364
- uid: 28510
components:
- type: Transform
@@ -40306,6 +40318,11 @@ entities:
parent: 8364
- proto: CableHV
entities:
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 6.5,-78.5
+ parent: 8364
- uid: 910
components:
- type: Transform
@@ -40341,6 +40358,16 @@ entities:
- type: Transform
pos: -21.5,-35.5
parent: 8364
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: 6.5,-80.5
+ parent: 8364
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: 6.5,-79.5
+ parent: 8364
- uid: 1665
components:
- type: Transform
@@ -40371,6 +40398,11 @@ entities:
- type: Transform
pos: -0.5,-73.5
parent: 8364
+ - uid: 3749
+ components:
+ - type: Transform
+ pos: -11.5,-74.5
+ parent: 8364
- uid: 3776
components:
- type: Transform
@@ -40381,11 +40413,6 @@ entities:
- type: Transform
pos: -3.5,-56.5
parent: 8364
- - uid: 3817
- components:
- - type: Transform
- pos: -0.5,-77.5
- parent: 8364
- uid: 3836
components:
- type: Transform
@@ -40396,11 +40423,56 @@ entities:
- type: Transform
pos: -0.5,-58.5
parent: 8364
+ - uid: 4686
+ components:
+ - type: Transform
+ pos: -4.5,-73.5
+ parent: 8364
+ - uid: 4687
+ components:
+ - type: Transform
+ pos: -3.5,-73.5
+ parent: 8364
+ - uid: 4690
+ components:
+ - type: Transform
+ pos: -1.5,-73.5
+ parent: 8364
- uid: 4694
components:
- type: Transform
pos: 13.5,-74.5
parent: 8364
+ - uid: 4695
+ components:
+ - type: Transform
+ pos: -5.5,-73.5
+ parent: 8364
+ - uid: 4697
+ components:
+ - type: Transform
+ pos: -7.5,-76.5
+ parent: 8364
+ - uid: 4700
+ components:
+ - type: Transform
+ pos: -6.5,-80.5
+ parent: 8364
+ - uid: 4702
+ components:
+ - type: Transform
+ pos: -7.5,-74.5
+ parent: 8364
+ - uid: 4703
+ components:
+ - type: Transform
+ pos: -7.5,-75.5
+ parent: 8364
+ - uid: 4704
+ components:
+ - type: Transform
+ pos: -2.5,-73.5
+ parent: 8364
- uid: 4705
components:
- type: Transform
@@ -40411,6 +40483,36 @@ entities:
- type: Transform
pos: 2.5,-70.5
parent: 8364
+ - uid: 4707
+ components:
+ - type: Transform
+ pos: -6.5,-73.5
+ parent: 8364
+ - uid: 4836
+ components:
+ - type: Transform
+ pos: -7.5,-80.5
+ parent: 8364
+ - uid: 4842
+ components:
+ - type: Transform
+ pos: -7.5,-79.5
+ parent: 8364
+ - uid: 4878
+ components:
+ - type: Transform
+ pos: -7.5,-78.5
+ parent: 8364
+ - uid: 4879
+ components:
+ - type: Transform
+ pos: -7.5,-77.5
+ parent: 8364
+ - uid: 4973
+ components:
+ - type: Transform
+ pos: -7.5,-73.5
+ parent: 8364
- uid: 4988
components:
- type: Transform
@@ -40871,11 +40973,6 @@ entities:
- type: Transform
pos: -16.5,-13.5
parent: 8364
- - uid: 5913
- components:
- - type: Transform
- pos: -0.5,-76.5
- parent: 8364
- uid: 5921
components:
- type: Transform
@@ -43481,16 +43578,6 @@ entities:
- type: Transform
pos: -16.5,-73.5
parent: 8364
- - uid: 10866
- components:
- - type: Transform
- pos: -0.5,-74.5
- parent: 8364
- - uid: 11000
- components:
- - type: Transform
- pos: -0.5,-78.5
- parent: 8364
- uid: 11201
components:
- type: Transform
@@ -45086,6 +45173,16 @@ entities:
- type: Transform
pos: -6.5,-53.5
parent: 8364
+ - uid: 16879
+ components:
+ - type: Transform
+ pos: 5.5,-73.5
+ parent: 8364
+ - uid: 16884
+ components:
+ - type: Transform
+ pos: 6.5,-74.5
+ parent: 8364
- uid: 16945
components:
- type: Transform
@@ -45126,11 +45223,36 @@ entities:
- type: Transform
pos: -8.5,-70.5
parent: 8364
+ - uid: 17049
+ components:
+ - type: Transform
+ pos: 6.5,-77.5
+ parent: 8364
+ - uid: 17051
+ components:
+ - type: Transform
+ pos: 6.5,-76.5
+ parent: 8364
+ - uid: 17056
+ components:
+ - type: Transform
+ pos: 3.5,-73.5
+ parent: 8364
- uid: 17058
components:
- type: Transform
pos: -35.5,-61.5
parent: 8364
+ - uid: 17072
+ components:
+ - type: Transform
+ pos: 6.5,-75.5
+ parent: 8364
+ - uid: 17077
+ components:
+ - type: Transform
+ pos: 2.5,-73.5
+ parent: 8364
- uid: 17080
components:
- type: Transform
@@ -45141,11 +45263,26 @@ entities:
- type: Transform
pos: 5.5,-65.5
parent: 8364
+ - uid: 17082
+ components:
+ - type: Transform
+ pos: 1.5,-73.5
+ parent: 8364
- uid: 17089
components:
- type: Transform
pos: -11.5,-70.5
parent: 8364
+ - uid: 17090
+ components:
+ - type: Transform
+ pos: 0.5,-73.5
+ parent: 8364
+ - uid: 17091
+ components:
+ - type: Transform
+ pos: 6.5,-73.5
+ parent: 8364
- uid: 17125
components:
- type: Transform
@@ -45191,11 +45328,6 @@ entities:
- type: Transform
pos: 4.5,-70.5
parent: 8364
- - uid: 17325
- components:
- - type: Transform
- pos: -2.5,-80.5
- parent: 8364
- uid: 17331
components:
- type: Transform
@@ -45576,20 +45708,20 @@ entities:
- type: Transform
pos: 9.5,-74.5
parent: 8364
- - uid: 17713
+ - uid: 17712
components:
- type: Transform
- pos: 1.5,-81.5
+ pos: -3.5,-80.5
parent: 8364
- uid: 17755
components:
- type: Transform
pos: 3.5,-40.5
parent: 8364
- - uid: 17777
+ - uid: 17808
components:
- type: Transform
- pos: -2.5,-78.5
+ pos: -2.5,-79.5
parent: 8364
- uid: 18111
components:
@@ -45631,11 +45763,6 @@ entities:
- type: Transform
pos: -4.5,-56.5
parent: 8364
- - uid: 18760
- components:
- - type: Transform
- pos: -2.5,-79.5
- parent: 8364
- uid: 18763
components:
- type: Transform
@@ -45701,11 +45828,6 @@ entities:
- type: Transform
pos: -27.5,-65.5
parent: 8364
- - uid: 18987
- components:
- - type: Transform
- pos: -0.5,-75.5
- parent: 8364
- uid: 19021
components:
- type: Transform
@@ -47236,6 +47358,26 @@ entities:
- type: Transform
pos: 28.5,-87.5
parent: 8364
+ - uid: 26648
+ components:
+ - type: Transform
+ pos: -2.5,-80.5
+ parent: 8364
+ - uid: 26685
+ components:
+ - type: Transform
+ pos: 2.5,-80.5
+ parent: 8364
+ - uid: 26686
+ components:
+ - type: Transform
+ pos: 3.5,-80.5
+ parent: 8364
+ - uid: 26690
+ components:
+ - type: Transform
+ pos: -5.5,-80.5
+ parent: 8364
- uid: 26712
components:
- type: Transform
@@ -47386,6 +47528,16 @@ entities:
- type: Transform
pos: -23.5,-68.5
parent: 8364
+ - uid: 27314
+ components:
+ - type: Transform
+ pos: -2.5,-78.5
+ parent: 8364
+ - uid: 27402
+ components:
+ - type: Transform
+ pos: -4.5,-80.5
+ parent: 8364
- uid: 27459
components:
- type: Transform
@@ -47681,10 +47833,10 @@ entities:
- type: Transform
pos: -36.5,-21.5
parent: 8364
- - uid: 28150
+ - uid: 28145
components:
- type: Transform
- pos: 0.5,-78.5
+ pos: 4.5,-73.5
parent: 8364
- uid: 28153
components:
@@ -47751,30 +47903,15 @@ entities:
- type: Transform
pos: 0.5,-70.5
parent: 8364
- - uid: 28177
- components:
- - type: Transform
- pos: 0.5,-81.5
- parent: 8364
- - uid: 28178
- components:
- - type: Transform
- pos: -0.5,-81.5
- parent: 8364
- - uid: 28179
- components:
- - type: Transform
- pos: -1.5,-81.5
- parent: 8364
- - uid: 28180
+ - uid: 28183
components:
- type: Transform
- pos: -2.5,-81.5
+ pos: 4.5,-80.5
parent: 8364
- - uid: 28181
+ - uid: 28199
components:
- type: Transform
- pos: -1.5,-78.5
+ pos: 5.5,-80.5
parent: 8364
- proto: CableHVStack
entities:
@@ -48050,6 +48187,11 @@ entities:
- type: Transform
pos: -13.5,-19.5
parent: 8364
+ - uid: 5316
+ components:
+ - type: Transform
+ pos: -7.5,-86.5
+ parent: 8364
- uid: 5527
components:
- type: Transform
@@ -48125,6 +48267,21 @@ entities:
- type: Transform
pos: -0.5,-14.5
parent: 8364
+ - uid: 5798
+ components:
+ - type: Transform
+ pos: -6.5,-86.5
+ parent: 8364
+ - uid: 5799
+ components:
+ - type: Transform
+ pos: -5.5,-86.5
+ parent: 8364
+ - uid: 5826
+ components:
+ - type: Transform
+ pos: -4.5,-86.5
+ parent: 8364
- uid: 5861
components:
- type: Transform
@@ -48140,6 +48297,11 @@ entities:
- type: Transform
pos: -3.5,-24.5
parent: 8364
+ - uid: 5913
+ components:
+ - type: Transform
+ pos: -3.5,-86.5
+ parent: 8364
- uid: 5949
components:
- type: Transform
@@ -57390,45 +57552,25 @@ entities:
- type: Transform
pos: 59.5,-38.5
parent: 8364
- - uid: 28060
- components:
- - type: Transform
- pos: 58.5,-35.5
- parent: 8364
- - uid: 28204
- components:
- - type: Transform
- pos: -8.5,-85.5
- parent: 8364
- - uid: 28205
- components:
- - type: Transform
- pos: -7.5,-85.5
- parent: 8364
- - uid: 28206
- components:
- - type: Transform
- pos: -6.5,-85.5
- parent: 8364
- - uid: 28207
+ - uid: 28015
components:
- type: Transform
- pos: -5.5,-85.5
+ pos: -0.5,-92.5
parent: 8364
- - uid: 28208
+ - uid: 28020
components:
- type: Transform
- pos: -4.5,-85.5
+ pos: -0.5,-93.5
parent: 8364
- - uid: 28209
+ - uid: 28060
components:
- type: Transform
- pos: -3.5,-85.5
+ pos: 58.5,-35.5
parent: 8364
- - uid: 28210
+ - uid: 28205
components:
- type: Transform
- pos: -2.5,-85.5
+ pos: -7.5,-85.5
parent: 8364
- uid: 28211
components:
@@ -59848,45 +59990,27 @@ entities:
- type: Transform
pos: 49.5,-22.5
parent: 8364
- - uid: 4704
+ - uid: 4689
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-81.5
+ pos: 4.5,-85.5
parent: 8364
- - uid: 4934
+ - uid: 4691
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-85.5
+ pos: 5.5,-85.5
parent: 8364
- - uid: 5798
+ - uid: 4934
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 0.5,-78.5
- parent: 8364
- - uid: 7081
- components:
- - type: Transform
- pos: -2.5,-84.5
+ pos: 10.5,-85.5
parent: 8364
- uid: 7149
components:
- type: Transform
pos: -41.5,-37.5
parent: 8364
- - uid: 8200
- components:
- - type: Transform
- pos: -3.5,-83.5
- parent: 8364
- - uid: 8363
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-79.5
- parent: 8364
- uid: 8998
components:
- type: Transform
@@ -59913,12 +60037,6 @@ entities:
- type: Transform
pos: 49.5,-17.5
parent: 8364
- - uid: 10879
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-79.5
- parent: 8364
- uid: 11003
components:
- type: Transform
@@ -60202,8 +60320,7 @@ entities:
- uid: 11994
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-81.5
+ pos: -11.5,-74.5
parent: 8364
- uid: 12047
components:
@@ -61901,6 +62018,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -0.5,-83.5
parent: 8364
+ - uid: 15888
+ components:
+ - type: Transform
+ pos: 3.5,-74.5
+ parent: 8364
- uid: 15894
components:
- type: Transform
@@ -62368,35 +62490,11 @@ entities:
- type: Transform
pos: 49.5,-23.5
parent: 8364
- - uid: 17320
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-78.5
- parent: 8364
- - uid: 17472
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-80.5
- parent: 8364
- uid: 17557
components:
- type: Transform
pos: 49.5,-19.5
parent: 8364
- - uid: 17558
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-79.5
- parent: 8364
- - uid: 17656
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-78.5
- parent: 8364
- uid: 17711
components:
- type: Transform
@@ -62414,11 +62512,16 @@ entities:
- type: Transform
pos: 49.5,-24.5
parent: 8364
- - uid: 19014
+ - uid: 19160
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-83.5
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-79.5
+ parent: 8364
+ - uid: 19163
+ components:
+ - type: Transform
+ pos: -4.5,-85.5
parent: 8364
- uid: 19189
components:
@@ -62735,6 +62838,21 @@ entities:
- type: Transform
pos: 49.5,-42.5
parent: 8364
+ - uid: 19951
+ components:
+ - type: Transform
+ pos: -3.5,-84.5
+ parent: 8364
+ - uid: 19957
+ components:
+ - type: Transform
+ pos: 5.5,-81.5
+ parent: 8364
+ - uid: 20147
+ components:
+ - type: Transform
+ pos: 5.5,-77.5
+ parent: 8364
- uid: 21551
components:
- type: Transform
@@ -63185,17 +63303,123 @@ entities:
- type: Transform
pos: 61.5,-74.5
parent: 8364
- - uid: 23230
+ - uid: 22835
+ components:
+ - type: Transform
+ pos: 7.5,-81.5
+ parent: 8364
+ - uid: 24493
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-80.5
+ pos: 5.5,-75.5
parent: 8364
- - uid: 24501
+ - uid: 25839
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-85.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-81.5
+ parent: 8364
+ - uid: 25853
+ components:
+ - type: Transform
+ pos: -6.5,-81.5
+ parent: 8364
+ - uid: 25868
+ components:
+ - type: Transform
+ pos: -6.5,-82.5
+ parent: 8364
+ - uid: 25963
+ components:
+ - type: Transform
+ pos: -6.5,-83.5
+ parent: 8364
+ - uid: 25964
+ components:
+ - type: Transform
+ pos: -6.5,-84.5
+ parent: 8364
+ - uid: 25965
+ components:
+ - type: Transform
+ pos: -6.5,-85.5
+ parent: 8364
+ - uid: 25987
+ components:
+ - type: Transform
+ pos: -5.5,-85.5
+ parent: 8364
+ - uid: 26001
+ components:
+ - type: Transform
+ pos: -2.5,-85.5
+ parent: 8364
+ - uid: 26002
+ components:
+ - type: Transform
+ pos: 1.5,-85.5
+ parent: 8364
+ - uid: 26005
+ components:
+ - type: Transform
+ pos: -2.5,-84.5
+ parent: 8364
+ - uid: 26011
+ components:
+ - type: Transform
+ pos: -1.5,-84.5
+ parent: 8364
+ - uid: 26013
+ components:
+ - type: Transform
+ pos: 5.5,-83.5
+ parent: 8364
+ - uid: 26014
+ components:
+ - type: Transform
+ pos: 0.5,-84.5
+ parent: 8364
+ - uid: 26021
+ components:
+ - type: Transform
+ pos: 1.5,-84.5
+ parent: 8364
+ - uid: 26025
+ components:
+ - type: Transform
+ pos: 2.5,-84.5
+ parent: 8364
+ - uid: 26027
+ components:
+ - type: Transform
+ pos: 3.5,-84.5
+ parent: 8364
+ - uid: 26029
+ components:
+ - type: Transform
+ pos: 4.5,-84.5
+ parent: 8364
+ - uid: 26068
+ components:
+ - type: Transform
+ pos: 5.5,-82.5
+ parent: 8364
+ - uid: 26069
+ components:
+ - type: Transform
+ pos: 5.5,-79.5
+ parent: 8364
+ - uid: 26070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-74.5
+ parent: 8364
+ - uid: 26071
+ components:
+ - type: Transform
+ pos: 5.5,-84.5
parent: 8364
- uid: 26401
components:
@@ -63321,12 +63545,6 @@ entities:
rot: 3.141592653589793 rad
pos: 16.5,-34.5
parent: 8364
- - uid: 26625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-79.5
- parent: 8364
- uid: 26650
components:
- type: Transform
@@ -63376,47 +63594,22 @@ entities:
rot: 3.141592653589793 rad
pos: -12.5,-85.5
parent: 8364
- - uid: 27367
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-80.5
- parent: 8364
- - uid: 27368
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-80.5
- parent: 8364
- - uid: 27369
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-78.5
- parent: 8364
- - uid: 27373
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-75.5
- parent: 8364
- uid: 27378
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -22.5,-66.5
parent: 8364
- - uid: 27395
+ - uid: 27409
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,-76.5
+ pos: -22.5,-67.5
parent: 8364
- - uid: 27409
+ - uid: 27414
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-67.5
+ pos: 3.5,-85.5
parent: 8364
- uid: 27420
components:
@@ -63454,6 +63647,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -24.5,-65.5
parent: 8364
+ - uid: 27455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-93.5
+ parent: 8364
- uid: 27472
components:
- type: Transform
@@ -63661,6 +63860,12 @@ entities:
- type: Transform
pos: 34.5,-78.5
parent: 8364
+ - uid: 28013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-92.5
+ parent: 8364
- uid: 28144
components:
- type: Transform
@@ -63715,78 +63920,18 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-91.5
parent: 8364
- - uid: 28316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-78.5
- parent: 8364
- - uid: 28317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-80.5
- parent: 8364
- - uid: 28318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-80.5
- parent: 8364
- - uid: 28319
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-79.5
- parent: 8364
- - uid: 28320
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-80.5
- parent: 8364
- uid: 28321
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 5.5,-78.5
parent: 8364
- - uid: 28322
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-78.5
- parent: 8364
- uid: 28323
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -6.5,-78.5
parent: 8364
- - uid: 28324
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-80.5
- parent: 8364
- - uid: 28325
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-80.5
- parent: 8364
- - uid: 28326
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-80.5
- parent: 8364
- - uid: 28327
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-78.5
- parent: 8364
- uid: 28328
components:
- type: Transform
@@ -63805,167 +63950,138 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-74.5
parent: 8364
- - uid: 28332
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-84.5
- parent: 8364
- - uid: 28334
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-84.5
- parent: 8364
- - uid: 28335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-84.5
- parent: 8364
- - uid: 28338
+ - uid: 28346
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,-83.5
+ pos: -6.5,-77.5
parent: 8364
- - uid: 28339
+ - uid: 28347
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-83.5
+ pos: -6.5,-76.5
parent: 8364
- - uid: 28340
+ - uid: 28348
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 3.5,-83.5
+ pos: -6.5,-75.5
parent: 8364
- - uid: 28341
+ - uid: 28349
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 4.5,-83.5
+ pos: -6.5,-74.5
parent: 8364
- - uid: 28342
+ - uid: 28350
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,-83.5
+ pos: -5.5,-74.5
parent: 8364
- - uid: 28343
+ - uid: 28351
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,-82.5
+ pos: -4.5,-74.5
parent: 8364
- - uid: 28344
+ - uid: 28352
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,-81.5
+ pos: -2.5,-74.5
parent: 8364
- - uid: 28345
+ - uid: 28353
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-83.5
+ pos: 1.5,-74.5
parent: 8364
- - uid: 28346
+ - uid: 28354
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-77.5
+ pos: 2.5,-74.5
parent: 8364
- - uid: 28347
+ - uid: 28356
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-76.5
+ pos: 4.5,-74.5
parent: 8364
- - uid: 28348
+ - uid: 28359
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-75.5
+ pos: 5.5,-76.5
parent: 8364
- - uid: 28349
+ - uid: 28430
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-74.5
+ pos: -8.5,-78.5
parent: 8364
- - uid: 28350
+ - uid: 28431
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.5,-74.5
+ pos: -8.5,-81.5
parent: 8364
- - uid: 28351
+ - uid: 28441
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-74.5
+ pos: 8.5,-81.5
parent: 8364
- - uid: 28352
+ - uid: 28442
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-74.5
+ pos: 8.5,-80.5
parent: 8364
- - uid: 28353
+ - uid: 28443
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-74.5
+ pos: 8.5,-78.5
parent: 8364
- - uid: 28354
+ - uid: 28444
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-74.5
+ pos: 8.5,-79.5
parent: 8364
- - uid: 28355
+ - uid: 28445
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-74.5
+ pos: 7.5,-78.5
parent: 8364
- - uid: 28356
+ - uid: 28447
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-74.5
+ pos: -2.5,-78.5
parent: 8364
- - uid: 28357
+ - uid: 28448
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-74.5
+ pos: -2.5,-79.5
parent: 8364
- - uid: 28358
+ - uid: 28449
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-75.5
+ pos: -2.5,-80.5
parent: 8364
- - uid: 28359
+ - uid: 28450
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-76.5
+ pos: 1.5,-80.5
parent: 8364
- - uid: 28360
+ - uid: 28451
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-77.5
+ pos: 1.5,-79.5
parent: 8364
- - uid: 28368
+ - uid: 28452
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-86.5
+ pos: 1.5,-78.5
parent: 8364
- proto: Cautery
entities:
@@ -66583,11 +66699,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 15494
- components:
- - type: Transform
- pos: -12.5,-86.5
- parent: 8364
- uid: 15547
components:
- type: Transform
@@ -67152,6 +67263,11 @@ entities:
- type: Transform
pos: -40.5,-20.5
parent: 8364
+ - uid: 28360
+ components:
+ - type: Transform
+ pos: -11.5,-86.5
+ parent: 8364
- proto: ClosetEmergencyN2FilledRandom
entities:
- uid: 7998
@@ -67334,6 +67450,11 @@ entities:
- 0
- 0
- 0
+ - uid: 16207
+ components:
+ - type: Transform
+ pos: 11.5,-77.5
+ parent: 8364
- uid: 16658
components:
- type: Transform
@@ -67557,11 +67678,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 21955
- components:
- - type: Transform
- pos: 11.5,-75.5
- parent: 8364
- uid: 27448
components:
- type: Transform
@@ -69431,11 +69547,6 @@ entities:
- type: Transform
pos: 5.596113,-61.594017
parent: 8364
- - uid: 27416
- components:
- - type: Transform
- pos: -9.293476,-71.44441
- parent: 8364
- proto: ClothingBeltUtilityFilled
entities:
- uid: 5299
@@ -71191,6 +71302,12 @@ entities:
- ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
- proto: ComputerAtmosMonitoring
entities:
+ - uid: 8211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 14.5,-48.5
+ parent: 8364
- uid: 22048
components:
- type: Transform
@@ -71207,12 +71324,6 @@ entities:
- type: Transform
pos: -1.5,-88.5
parent: 8364
- - uid: 28113
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-48.5
- parent: 8364
- uid: 28494
components:
- type: Transform
@@ -71666,6 +71777,11 @@ entities:
- type: Transform
pos: 0.5,-88.5
parent: 8364
+ - uid: 28208
+ components:
+ - type: Transform
+ pos: -7.5,-61.5
+ parent: 8364
- proto: ComputerSurveillanceCameraMonitor
entities:
- uid: 2945
@@ -72021,20 +72137,6 @@ entities:
- type: Transform
pos: -4.441743,-12.321369
parent: 8364
-- proto: CounterMetalFrame
- entities:
- - uid: 28486
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-84.5
- parent: 8364
- - uid: 28488
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-83.5
- parent: 8364
- proto: CowToolboxFilled
entities:
- uid: 13853
@@ -72765,6 +72867,13 @@ entities:
showEnts: False
occludes: True
ent: null
+- proto: CrateMaterialSteel
+ entities:
+ - uid: 538
+ components:
+ - type: Transform
+ pos: -13.5,-86.5
+ parent: 8364
- proto: CrateMedicalScrubs
entities:
- uid: 16545
@@ -73287,10 +73396,10 @@ entities:
parent: 8364
- proto: DefaultStationBeaconAtmospherics
entities:
- - uid: 27242
+ - uid: 28423
components:
- type: Transform
- pos: 13.5,-48.5
+ pos: 12.5,-48.5
parent: 8364
- proto: DefaultStationBeaconBar
entities:
@@ -74666,46 +74775,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 1.5,-72.5
parent: 8364
- - uid: 28441
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-72.5
- parent: 8364
- - uid: 28442
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-73.5
- parent: 8364
- - uid: 28443
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-73.5
- parent: 8364
- - uid: 28463
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-81.5
- parent: 8364
- - uid: 28464
- components:
- - type: Transform
- pos: -8.5,-81.5
- parent: 8364
- - uid: 28466
- components:
- - type: Transform
- pos: -3.5,-86.5
- parent: 8364
- - uid: 28467
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-86.5
- parent: 8364
- proto: DisposalJunction
entities:
- uid: 4660
@@ -74956,12 +75025,6 @@ entities:
- type: Transform
pos: 65.5,-60.5
parent: 8364
- - uid: 28465
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-82.5
- parent: 8364
- proto: DisposalPipe
entities:
- uid: 1157
@@ -81713,169 +81776,6 @@ entities:
- type: Transform
pos: 1.5,-71.5
parent: 8364
- - uid: 28447
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-72.5
- parent: 8364
- - uid: 28448
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-72.5
- parent: 8364
- - uid: 28449
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-72.5
- parent: 8364
- - uid: 28450
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-72.5
- parent: 8364
- - uid: 28451
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-72.5
- parent: 8364
- - uid: 28452
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-72.5
- parent: 8364
- - uid: 28453
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-72.5
- parent: 8364
- - uid: 28454
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-73.5
- parent: 8364
- - uid: 28455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-73.5
- parent: 8364
- - uid: 28456
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-74.5
- parent: 8364
- - uid: 28457
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-75.5
- parent: 8364
- - uid: 28458
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-76.5
- parent: 8364
- - uid: 28459
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-77.5
- parent: 8364
- - uid: 28460
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-78.5
- parent: 8364
- - uid: 28461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-79.5
- parent: 8364
- - uid: 28462
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-80.5
- parent: 8364
- - uid: 28468
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-83.5
- parent: 8364
- - uid: 28469
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-84.5
- parent: 8364
- - uid: 28470
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,-85.5
- parent: 8364
- - uid: 28471
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-86.5
- parent: 8364
- - uid: 28472
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-86.5
- parent: 8364
- - uid: 28473
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-86.5
- parent: 8364
- - uid: 28474
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-86.5
- parent: 8364
- - uid: 28475
- components:
- - type: Transform
- pos: -3.5,-87.5
- parent: 8364
- - uid: 28476
- components:
- - type: Transform
- pos: -3.5,-88.5
- parent: 8364
- - uid: 28477
- components:
- - type: Transform
- pos: -3.5,-89.5
- parent: 8364
- - uid: 28478
- components:
- - type: Transform
- pos: -3.5,-90.5
- parent: 8364
- - uid: 28479
- components:
- - type: Transform
- pos: -3.5,-91.5
- parent: 8364
- proto: DisposalRouter
entities:
- uid: 22062
@@ -82284,18 +82184,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 11.5,-68.5
parent: 8364
- - uid: 28444
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-82.5
- parent: 8364
- - uid: 28445
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-92.5
- parent: 8364
- proto: DisposalUnit
entities:
- uid: 1409
@@ -82560,16 +82448,6 @@ entities:
- type: Transform
pos: 2.5,-36.5
parent: 8364
- - uid: 28480
- components:
- - type: Transform
- pos: -9.5,-82.5
- parent: 8364
- - uid: 28481
- components:
- - type: Transform
- pos: -3.5,-92.5
- parent: 8364
- proto: DisposalYJunction
entities:
- uid: 6145
@@ -82778,14 +82656,6 @@ entities:
- type: Transform
pos: 6.5888987,-21.789806
parent: 8364
-- proto: DrinkGlass
- entities:
- - uid: 27401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.8310423,-83.97554
- parent: 8364
- proto: DrinkGoldenCup
entities:
- uid: 2511
@@ -82866,6 +82736,12 @@ entities:
parent: 8364
- proto: EmergencyLight
entities:
+ - uid: 16836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-48.5
+ parent: 8364
- uid: 20300
components:
- type: Transform
@@ -83271,12 +83147,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,-54.5
parent: 8364
- - uid: 28059
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-49.5
- parent: 8364
- uid: 28061
components:
- type: Transform
@@ -83435,12 +83305,6 @@ entities:
parent: 8364
- proto: Emitter
entities:
- - uid: 4840
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-91.5
- parent: 8364
- uid: 12711
components:
- type: Transform
@@ -84163,6 +84027,17 @@ entities:
- 2946
- 14149
- 22663
+ - uid: 4840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-90.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 28373
+ - 28374
+ - 27423
- uid: 10714
components:
- type: Transform
@@ -84195,6 +84070,22 @@ entities:
- 14342
- 21815
- 21816
+ - uid: 16917
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-75.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 21955
+ - 28415
+ - 28370
+ - 28369
+ - 28338
+ - 28373
+ - 28374
+ - 28386
- uid: 17069
components:
- type: Transform
@@ -85393,7 +85284,7 @@ entities:
pos: -8.5,-70.5
parent: 8364
- type: Door
- secondsUntilStateChange: -17224.23
+ secondsUntilStateChange: -34149.145
state: Closing
- uid: 5277
components:
@@ -86176,7 +86067,7 @@ entities:
pos: -34.5,-14.5
parent: 8364
- type: Door
- secondsUntilStateChange: -59687.723
+ secondsUntilStateChange: -76612.65
state: Closing
- uid: 15010
components:
@@ -86452,6 +86343,15 @@ entities:
- type: Transform
pos: -16.5,-47.5
parent: 8364
+ - uid: 21955
+ components:
+ - type: Transform
+ pos: 9.5,-76.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26651
+ - 16917
- uid: 22606
components:
- type: Transform
@@ -86688,34 +86588,37 @@ entities:
deviceLists:
- 6967
- 288
- - uid: 28369
+ - uid: 28338
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-71.5
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-73.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- 26651
- - uid: 28370
+ - 28375
+ - 16917
+ - uid: 28369
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-71.5
+ pos: -1.5,-71.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- 26651
- - uid: 28371
+ - 16917
+ - uid: 28370
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,-74.5
+ pos: 0.5,-71.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 28375
- 26651
+ - 16917
- uid: 28372
components:
- type: Transform
@@ -86735,6 +86638,8 @@ entities:
deviceLists:
- 26651
- 10819
+ - 16917
+ - 4840
- uid: 28374
components:
- type: Transform
@@ -86745,6 +86650,16 @@ entities:
deviceLists:
- 26651
- 10819
+ - 16917
+ - 4840
+ - uid: 28415
+ components:
+ - type: Transform
+ pos: 7.5,-73.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 16917
- proto: Fireplace
entities:
- uid: 11559
@@ -87886,34 +87801,20 @@ entities:
- uid: 27246
components:
- type: Transform
- pos: 1.5427239,-81.37089
+ pos: 1.6309931,-81.47398
parent: 8364
- uid: 27247
components:
- type: Transform
- pos: -9.719922,-77.32872
+ pos: -8.754329,-77.35182
parent: 8364
- uid: 27248
components:
- type: Transform
- pos: -9.298047,-77.51622
+ pos: -8.34808,-77.5186
parent: 8364
- proto: GasFilter
entities:
- - uid: 16207
- components:
- - type: Transform
- pos: -6.5,-82.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16917
- components:
- - type: Transform
- pos: -6.5,-81.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 17247
components:
- type: MetaData
@@ -87923,7 +87824,7 @@ entities:
pos: 12.5,-59.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 17248
components:
- type: MetaData
@@ -87964,22 +87865,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#3AB334FF'
- - uid: 19163
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 22968
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- proto: GasFilterFlipped
entities:
- uid: 6982
@@ -87999,7 +87884,15 @@ entities:
pos: -3.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
+ - uid: 17721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
- uid: 18968
components:
- type: Transform
@@ -88009,6 +87902,32 @@ entities:
filteredGas: Oxygen
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 22581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
+ - uid: 22946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-85.5
+ parent: 8364
+ - type: GasFilter
+ filteredGas: Nitrogen
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
+ - uid: 23194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
- proto: GasMinerCarbonDioxide
entities:
- uid: 16807
@@ -88071,11 +87990,11 @@ entities:
parent: 8364
- proto: GasMixerFlipped
entities:
- - uid: 27555
+ - uid: 28266
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-84.5
parent: 8364
- proto: GasOutletInjector
entities:
@@ -88115,6 +88034,14 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,-64.5
parent: 8364
+ - uid: 17757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-86.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 23110
components:
- type: Transform
@@ -88123,16 +88050,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 26005
+- proto: GasPassiveGate
+ entities:
+ - uid: 17109
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,-86.5
+ pos: -14.5,-82.5
+ parent: 8364
+ - uid: 17602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-81.5
+ parent: 8364
+ - uid: 17651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-78.5
+ parent: 8364
+ - uid: 17655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-79.5
+ parent: 8364
+ - uid: 19032
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-82.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
-- proto: GasPassiveGate
- entities:
- uid: 21381
components:
- type: Transform
@@ -88140,13 +88089,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
-- proto: GasPassiveVent
- entities:
- - uid: 143
+ - uid: 26054
components:
- type: Transform
- pos: 15.5,-52.5
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-81.5
+ parent: 8364
+ - uid: 26907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-78.5
+ parent: 8364
+ - uid: 26912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-80.5
+ parent: 8364
+ - uid: 26919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-80.5
+ parent: 8364
+ - uid: 27375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-79.5
parent: 8364
+- proto: GasPassiveVent
+ entities:
- uid: 7050
components:
- type: Transform
@@ -88258,20 +88232,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 22948
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-62.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 23175
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-50.5
- parent: 8364
- uid: 27182
components:
- type: Transform
@@ -88334,32 +88294,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 3821
+ - uid: 3527
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-71.5
+ pos: 16.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3866
+ color: '#FF00FFFF'
+ - uid: 3683
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-55.5
parent: 8364
- - uid: 3867
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 3692
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -12.5,-82.5
+ pos: 16.5,-55.5
parent: 8364
- - uid: 3874
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 3821
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -17.5,-82.5
+ pos: 28.5,-71.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 4140
components:
- type: Transform
@@ -88491,48 +88457,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4695
- components:
- - type: Transform
- pos: -12.5,-79.5
- parent: 8364
- - uid: 4697
- components:
- - type: Transform
- pos: -12.5,-81.5
- parent: 8364
- - uid: 4700
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-81.5
- parent: 8364
- - uid: 4702
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-80.5
- parent: 8364
- - uid: 4703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-79.5
- parent: 8364
- - uid: 4836
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-83.5
- parent: 8364
- - uid: 4973
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-89.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 5258
components:
- type: Transform
@@ -88555,14 +88479,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 5316
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 5317
components:
- type: Transform
@@ -88633,7 +88549,7 @@ entities:
pos: -6.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
- uid: 5716
components:
- type: Transform
@@ -88641,14 +88557,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5826
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 7062
components:
- type: Transform
@@ -88672,14 +88580,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7269
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 7312
components:
- type: Transform
@@ -88702,13 +88602,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 8212
- components:
- - type: Transform
- pos: -3.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 8431
components:
- type: Transform
@@ -88724,6 +88617,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-81.5
+ parent: 8364
- uid: 8752
components:
- type: Transform
@@ -88956,22 +88855,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 10867
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 14489
+ - uid: 11000
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 17.5,-60.5
+ pos: -6.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#FF6600FF'
- uid: 14990
components:
- type: Transform
@@ -89018,14 +88909,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 15888
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 15890
components:
- type: Transform
@@ -89136,19 +89019,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#B3A234FF'
- - uid: 16837
+ - uid: 16714
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,-84.5
+ pos: -10.5,-83.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16879
+ - uid: 16837
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
@@ -89159,14 +89040,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 16884
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-81.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 16885
components:
- type: Transform
@@ -89175,6 +89048,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 16946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-78.5
+ parent: 8364
- uid: 16988
components:
- type: Transform
@@ -89206,14 +89085,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17109
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 17111
components:
- type: Transform
@@ -89297,7 +89168,7 @@ entities:
pos: 11.5,-59.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 17255
components:
- type: Transform
@@ -89367,6 +89238,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 17696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 17704
components:
- type: Transform
@@ -89375,6 +89254,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 17779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 17865
components:
- type: Transform
@@ -89399,6 +89286,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 18760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-90.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 19332
components:
- type: Transform
@@ -89430,14 +89325,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 21367
+ - uid: 20630
+ components:
+ - type: Transform
+ pos: 24.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 21368
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -4.5,-76.5
+ pos: 9.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF0000FF'
- uid: 21770
components:
- type: Transform
@@ -89507,22 +89409,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22818
+ - uid: 22830
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,-60.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 22967
+ color: '#947507FF'
+ - uid: 22839
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-77.5
+ pos: 8.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF0000FF'
- uid: 23008
components:
- type: Transform
@@ -89592,20 +89494,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 23165
+ - uid: 23176
components:
- type: Transform
- pos: 5.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-72.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 23203
+ color: '#0055CCFF'
+ - uid: 23180
components:
- type: Transform
- pos: 1.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: -8.5,-86.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 23329
components:
- type: Transform
@@ -89869,30 +89773,14 @@ entities:
- type: Transform
pos: 20.5,-9.5
parent: 8364
- - uid: 24485
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 24489
+ - uid: 24490
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 7.5,-81.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 24493
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-81.5
+ pos: -8.5,-72.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#0055CCFF'
- uid: 24598
components:
- type: Transform
@@ -90267,28 +90155,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 26025
+ - uid: 26094
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -17.5,-83.5
- parent: 8364
- - uid: 26027
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-80.5
+ pos: 9.5,-72.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 26099
components:
- type: Transform
@@ -90312,189 +90186,143 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 26680
+ - uid: 26698
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,-76.5
+ pos: -15.5,-83.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 26682
+ - uid: 26732
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-75.5
+ pos: -2.5,-86.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 26683
+ color: '#0055CCFF'
+ - uid: 27180
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-84.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-93.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 26693
+ - uid: 27181
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 0.5,-89.5
+ pos: 21.5,-93.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 26698
+ - uid: 27240
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,-89.5
+ pos: 27.5,-80.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26721
+ - uid: 27244
components:
- type: Transform
- pos: -1.5,-89.5
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26732
+ color: '#FF00FFFF'
+ - uid: 27366
components:
- type: Transform
- pos: -2.5,-86.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-77.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26762
+ - uid: 27367
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-83.5
+ pos: 1.5,-77.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 26764
+ - uid: 27368
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-84.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-77.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 26765
+ - uid: 27369
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,-83.5
+ pos: 9.5,-75.5
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 26902
+ - uid: 27373
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-78.5
+ rot: 3.141592653589793 rad
+ pos: 0.5,-77.5
parent: 8364
- - uid: 27180
+ - uid: 27376
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,-93.5
- parent: 8364
- - uid: 27181
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-93.5
+ pos: 1.5,-90.5
parent: 8364
- - uid: 27240
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27387
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,-80.5
+ pos: -2.5,-80.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27427
+ - uid: 27394
components:
- type: Transform
- pos: 27.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-82.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27498
+ - uid: 27395
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,-77.5
+ pos: 1.5,-80.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 27677
+ - uid: 27427
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-86.5
+ pos: 27.5,-68.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28132
+ - uid: 28011
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28407
- components:
- - type: Transform
- pos: 13.5,-56.5
+ pos: 1.5,-86.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28411
+ color: '#FF0000FF'
+ - uid: 28113
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,-56.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28420
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-65.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28422
- components:
- - type: Transform
- pos: 11.5,-65.5
+ pos: -3.5,-84.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28433
+ color: '#03FCD3FF'
+ - uid: 28322
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,-77.5
+ pos: 6.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF5D00FF'
-- proto: GasPipeBroken
- entities:
- - uid: 27515
+ color: '#FF0000FF'
+ - uid: 28345
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,-77.5
+ pos: 11.5,-71.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF5D00FF'
+ color: '#947507FF'
- proto: GasPipeFourway
entities:
- uid: 8876
@@ -90504,13 +90332,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 10507
- components:
- - type: Transform
- pos: 3.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 20264
components:
- type: Transform
@@ -90525,13 +90346,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22998
- components:
- - type: Transform
- pos: 8.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 23026
components:
- type: Transform
@@ -90770,6 +90584,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 28280
+ components:
+ - type: Transform
+ pos: 18.5,-48.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 28327
+ components:
+ - type: Transform
+ pos: 18.5,-54.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
- proto: GasPipeSensor
entities:
- uid: 22813
@@ -90791,7 +90619,7 @@ entities:
pos: -2.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
- type: Label
currentLabel: Supermatter Cold Loop
- type: NameModifier
@@ -90814,7 +90642,7 @@ entities:
pos: 11.5,-51.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- proto: GasPipeStraight
entities:
- uid: 3
@@ -90920,18 +90748,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 1476
- components:
- - type: Transform
- pos: 15.5,-57.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 1477
- components:
- - type: Transform
- pos: 15.5,-54.5
- parent: 8364
- uid: 1617
components:
- type: Transform
@@ -90940,30 +90756,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 1618
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 1625
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 1643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- uid: 1709
components:
- type: Transform
@@ -90995,7 +90787,7 @@ entities:
pos: -4.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
- uid: 3682
components:
- type: Transform
@@ -91003,13 +90795,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 3685
+ - uid: 3696
components:
- type: Transform
- pos: 15.5,-59.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#947507FF'
- uid: 3719
components:
- type: Transform
@@ -91083,7 +90876,7 @@ entities:
pos: -5.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
- uid: 3861
components:
- type: Transform
@@ -91091,21 +90884,21 @@ entities:
pos: 10.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF0000FF'
- uid: 3862
components:
- type: Transform
pos: -6.5,-76.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
- uid: 3863
components:
- type: Transform
pos: -6.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
- uid: 3865
components:
- type: Transform
@@ -91192,22 +90985,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4046
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4051
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 4062
components:
- type: Transform
@@ -91276,7 +91053,7 @@ entities:
pos: 11.5,-49.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 4149
components:
- type: Transform
@@ -91465,14 +91242,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4559
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- uid: 4560
components:
- type: Transform
@@ -91518,14 +91287,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4596
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 4612
components:
- type: Transform
@@ -91541,14 +91302,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4649
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 4650
components:
- type: Transform
@@ -91572,38 +91325,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4686
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4690
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4842
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 5068
components:
- type: Transform
@@ -91820,7 +91541,7 @@ entities:
pos: -6.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
- uid: 5780
components:
- type: Transform
@@ -91837,19 +91558,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 5915
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 5918
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-85.5
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
@@ -91867,22 +91580,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 6312
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-76.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 6326
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 6458
components:
- type: Transform
@@ -92033,13 +91730,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7077
- components:
- - type: Transform
- pos: -3.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 7079
components:
- type: Transform
@@ -92048,14 +91738,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 7085
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 7086
components:
- type: Transform
@@ -92200,11 +91882,11 @@ entities:
- uid: 7271
components:
- type: Transform
- rot: 1.5707963267948966 rad
+ rot: -1.5707963267948966 rad
pos: -2.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF6600FF'
- uid: 7278
components:
- type: Transform
@@ -92385,14 +92067,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 8211
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 8216
components:
- type: Transform
@@ -92411,8 +92085,7 @@ entities:
- uid: 8374
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-84.5
+ pos: 5.5,-79.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
@@ -93252,19 +92925,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 10836
+ - uid: 10760
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-85.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-78.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 10840
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-81.5
+ parent: 8364
+ - uid: 10866
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-78.5
+ parent: 8364
+ - uid: 10867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-84.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
@@ -93275,6 +92958,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 10879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 13059
components:
- type: Transform
@@ -93321,14 +93012,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 14227
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-78.5
+ pos: 6.5,-82.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF0000FF'
- uid: 14341
components:
- type: Transform
@@ -93337,6 +93035,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 14489
+ components:
+ - type: Transform
+ pos: -6.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
+ - uid: 15138
+ components:
+ - type: Transform
+ pos: -6.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
- uid: 15139
components:
- type: Transform
@@ -93366,6 +93078,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 15494
+ components:
+ - type: Transform
+ pos: 9.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 15501
components:
- type: Transform
@@ -93398,6 +93117,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 15545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 15732
components:
- type: Transform
@@ -93496,14 +93223,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16353
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 16511
components:
- type: Transform
@@ -93520,22 +93239,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16532
+ - uid: 16601
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-84.5
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16601
+ color: '#FF1212FF'
+ - uid: 16620
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,-48.5
+ pos: 7.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#947507FF'
- uid: 16720
components:
- type: Transform
@@ -93644,6 +93363,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16849
+ components:
+ - type: Transform
+ pos: 11.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 16880
components:
- type: Transform
@@ -93876,20 +93602,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 17091
- components:
- - type: Transform
- pos: 11.5,-55.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 17092
- components:
- - type: Transform
- pos: 15.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 17094
components:
- type: Transform
@@ -94093,27 +93805,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17209
- components:
- - type: Transform
- pos: 11.5,-56.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 17210
components:
- type: Transform
pos: 11.5,-57.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 17211
components:
- type: Transform
pos: 11.5,-58.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 17212
components:
- type: Transform
@@ -94127,21 +93832,21 @@ entities:
pos: 11.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 17214
components:
- type: Transform
pos: 11.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 17216
components:
- type: Transform
pos: 11.5,-50.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 17217
components:
- type: Transform
@@ -94362,6 +94067,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 17320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 12.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 17321
components:
- type: Transform
@@ -94376,7 +94089,7 @@ entities:
pos: 11.5,-54.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 17336
components:
- type: Transform
@@ -94480,6 +94193,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 17586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-83.5
+ parent: 8364
- uid: 17595
components:
- type: Transform
@@ -94495,14 +94214,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 17601
+ - uid: 17606
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 9.5,-74.5
+ pos: -10.5,-78.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 17633
components:
- type: Transform
@@ -94519,6 +94236,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 17702
components:
- type: Transform
@@ -94621,6 +94346,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 18593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-83.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 18660
components:
- type: Transform
@@ -94644,6 +94377,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 18987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-89.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
+ - uid: 19031
+ components:
+ - type: Transform
+ pos: -6.5,-83.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
- uid: 19066
components:
- type: Transform
@@ -94652,6 +94408,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 19075
+ components:
+ - type: Transform
+ pos: -8.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 19146
components:
- type: Transform
@@ -94659,6 +94422,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 19159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 19936
components:
- type: Transform
@@ -94715,14 +94486,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 19957
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- uid: 20125
components:
- type: Transform
@@ -94739,6 +94502,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 20151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 20153
components:
- type: Transform
@@ -94762,6 +94533,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 20633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 21367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-59.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 21382
components:
- type: Transform
@@ -94824,6 +94611,44 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 22582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
+ - uid: 22583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
+ - uid: 22588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-81.5
+ parent: 8364
+ - uid: 22688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 22735
components:
- type: Transform
@@ -95090,6 +94915,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22803
+ components:
+ - type: Transform
+ pos: 11.5,-56.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 22804
components:
- type: Transform
@@ -95122,6 +94954,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-57.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 22820
components:
- type: Transform
@@ -95210,6 +95050,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 22840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,-72.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-72.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22842
components:
- type: Transform
@@ -95226,14 +95082,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 22850
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- uid: 22916
components:
- type: Transform
@@ -95269,10 +95117,10 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 5.5,-86.5
+ pos: 14.5,-55.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 22941
components:
- type: Transform
@@ -95289,13 +95137,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 22947
- components:
- - type: Transform
- pos: 15.5,-61.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 22981
components:
- type: Transform
@@ -96067,10 +95908,10 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 9.5,-72.5
+ pos: 24.5,-58.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#947507FF'
- uid: 23158
components:
- type: Transform
@@ -96080,13 +95921,21 @@ entities:
- type: AtmosPipeColor
color: '#FF0000FF'
- uid: 23159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 23161
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,-73.5
+ pos: 24.5,-56.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#947507FF'
- uid: 23164
components:
- type: Transform
@@ -96095,22 +95944,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 23166
+ - uid: 23165
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-55.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23168
+ color: '#947507FF'
+ - uid: 23167
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 3.5,-74.5
+ pos: -4.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF6600FF'
+ - uid: 23168
+ components:
+ - type: Transform
+ pos: -7.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23170
components:
- type: Transform
@@ -96119,18 +95975,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 23178
+ - uid: 23175
components:
- type: Transform
- pos: 15.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: 3.5,-86.5
parent: 8364
- - uid: 23180
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 23178
components:
- type: Transform
- pos: 15.5,-58.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-81.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#FF0000FF'
- uid: 23184
components:
- type: Transform
@@ -96259,12 +96119,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 23213
+ - uid: 23210
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-49.5
+ pos: 5.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 23213
+ components:
+ - type: Transform
+ pos: -8.5,-84.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23214
components:
- type: Transform
@@ -96305,6 +96174,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23222
+ components:
+ - type: Transform
+ pos: -8.5,-83.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23230
+ components:
+ - type: Transform
+ pos: -8.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23232
components:
- type: Transform
@@ -96313,6 +96196,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 23236
+ components:
+ - type: Transform
+ pos: -8.5,-81.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23239
+ components:
+ - type: Transform
+ pos: -8.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23240
components:
- type: Transform
@@ -103033,62 +102930,64 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24483
+ components:
+ - type: Transform
+ pos: -8.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24484
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-85.5
+ pos: -8.5,-78.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 24486
+ color: '#0055CCFF'
+ - uid: 24485
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-84.5
+ pos: -8.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 24487
+ color: '#0055CCFF'
+ - uid: 24486
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-83.5
+ pos: -8.5,-76.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 24488
+ color: '#0055CCFF'
+ - uid: 24487
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-82.5
+ pos: -8.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 24490
+ color: '#0055CCFF'
+ - uid: 24488
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-81.5
+ pos: -8.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#0055CCFF'
- uid: 24491
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-81.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-84.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#03FCD3FF'
- uid: 24492
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-81.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#947507FF'
- uid: 24495
components:
- type: Transform
@@ -103137,6 +103036,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 24501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-78.5
+ parent: 8364
- uid: 24521
components:
- type: Transform
@@ -109187,14 +109092,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 25868
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-81.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 25966
components:
- type: Transform
@@ -109203,22 +109100,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 26001
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 26014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 26015
components:
- type: Transform
@@ -109227,14 +109108,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 26021
+ - uid: 26026
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-85.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-83.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 26041
components:
- type: Transform
@@ -109243,44 +109122,37 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26068
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 26069
+ - uid: 26081
components:
- type: Transform
- pos: 17.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 26070
+ color: '#FF0000FF'
+ - uid: 26089
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-60.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 26071
+ - uid: 26095
components:
- type: Transform
- pos: 17.5,-58.5
+ pos: -6.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 26089
+ color: '#3AB334FF'
+ - uid: 26118
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-57.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#03FCD3FF'
- uid: 26621
components:
- type: Transform
@@ -109312,14 +109184,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26669
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-81.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 26670
components:
- type: Transform
@@ -109359,11 +109223,10 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 26687
+ - uid: 26683
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-84.5
+ pos: 6.5,-83.5
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
@@ -109375,18 +109238,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 26690
- components:
- - type: Transform
- pos: -7.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 26691
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-84.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-80.5
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
@@ -109398,20 +109254,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26694
+ - uid: 26693
components:
- type: Transform
- pos: 1.5,-85.5
+ pos: 11.5,-72.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 26697
+ color: '#947507FF'
+ - uid: 26694
components:
- type: Transform
- pos: -7.5,-72.5
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-71.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#947507FF'
- uid: 26701
components:
- type: Transform
@@ -109419,14 +109276,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 26702
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-79.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 26703
components:
- type: Transform
@@ -109435,14 +109284,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 26704
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-86.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 26722
components:
- type: Transform
@@ -109459,30 +109300,49 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26763
+ - uid: 26762
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,-84.5
+ pos: 5.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 26766
+ color: '#03FCD3FF'
+ - uid: 26764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-82.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-77.5
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- uid: 26774
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-86.5
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 26896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 26898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-83.5
+ parent: 8364
+ - uid: 26904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-83.5
+ parent: 8364
- uid: 26921
components:
- type: Transform
@@ -109716,18 +109576,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27144
+ - uid: 27179
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-85.5
+ pos: 22.5,-92.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 27179
+ - uid: 27232
components:
- type: Transform
- pos: 22.5,-92.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-81.5
parent: 8364
- uid: 27258
components:
@@ -109777,14 +109635,36 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27314
+ - uid: 27363
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 5.5,-75.5
+ pos: 6.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF0000FF'
+ - uid: 27364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-89.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 27370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -10.5,-82.5
+ parent: 8364
- uid: 27380
components:
- type: Transform
@@ -109793,14 +109673,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27387
+ - uid: 27403
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-83.5
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-86.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF0000FF'
- uid: 27413
components:
- type: Transform
@@ -109977,94 +109857,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27678
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-85.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27679
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27922
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-83.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28008
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-82.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28009
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-81.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28010
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28011
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-79.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28012
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28013
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28014
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-76.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28015
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 28016
components:
- type: Transform
@@ -110080,23 +109872,15 @@ entities:
pos: -1.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 28020
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28134
+ color: '#3AB334FF'
+ - uid: 28325
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,-73.5
+ pos: 4.5,-86.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF0000FF'
- uid: 28379
components:
- type: Transform
@@ -110137,14 +109921,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 28396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 28399
components:
- type: Transform
@@ -110160,187 +109936,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28408
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-56.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28409
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-56.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28410
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 10.5,-56.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28412
- components:
- - type: Transform
- pos: 9.5,-57.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28413
- components:
- - type: Transform
- pos: 9.5,-58.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28414
- components:
- - type: Transform
- pos: 9.5,-59.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28415
- components:
- - type: Transform
- pos: 9.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28416
- components:
- - type: Transform
- pos: 9.5,-61.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28417
- components:
- - type: Transform
- pos: 9.5,-62.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- uid: 28418
- components:
- - type: Transform
- pos: 9.5,-63.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28419
- components:
- - type: Transform
- pos: 9.5,-64.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28421
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-65.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28423
- components:
- - type: Transform
- pos: 11.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28424
- components:
- - type: Transform
- pos: 11.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28425
- components:
- - type: Transform
- pos: 11.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28426
- components:
- - type: Transform
- pos: 11.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28427
- components:
- - type: Transform
- pos: 11.5,-70.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28428
- components:
- - type: Transform
- pos: 11.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28429
- components:
- - type: Transform
- pos: 11.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28430
- components:
- - type: Transform
- pos: 11.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28431
- components:
- - type: Transform
- pos: 11.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28432
- components:
- - type: Transform
- pos: 11.5,-76.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28434
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28436
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 28439
- components:
- - type: Transform
- pos: 11.5,-75.5
+ pos: 4.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF5D00FF'
+ color: '#FF0000FF'
- proto: GasPipeTJunction
entities:
- uid: 1
@@ -110364,6 +109967,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 1625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-54.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 2556
components:
- type: Transform
@@ -110388,14 +109999,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 3860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 3998
components:
- type: Transform
@@ -110412,14 +110015,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4052
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 4145
components:
- type: Transform
@@ -110451,14 +110046,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-80.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 4682
components:
- type: Transform
@@ -110466,7 +110053,7 @@ entities:
pos: -6.5,-78.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#3AB334FF'
- uid: 5240
components:
- type: Transform
@@ -110560,14 +110147,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 8480
+ - uid: 8363
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-86.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 8524
components:
- type: Transform
@@ -110692,14 +110279,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 10501
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 10569
components:
- type: Transform
@@ -110716,14 +110295,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 10760
+ - uid: 10836
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-81.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 13476
components:
- type: Transform
@@ -110756,14 +110333,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 16146
+ - uid: 15550
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-82.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-80.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 16338
components:
- type: Transform
@@ -110787,7 +110362,7 @@ entities:
pos: 11.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 16725
components:
- type: Transform
@@ -110804,36 +110379,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16836
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-86.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 16849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16949
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-55.5
- parent: 8364
- uid: 16992
components:
- type: Transform
@@ -110873,14 +110418,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 17051
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-57.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 17063
components:
- type: Transform
@@ -110895,22 +110432,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17077
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 17090
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-79.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 17112
components:
- type: Transform
@@ -110980,6 +110501,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-81.5
+ parent: 8364
+ - uid: 17558
+ components:
+ - type: Transform
+ pos: -11.5,-78.5
+ parent: 8364
- uid: 17559
components:
- type: Transform
@@ -111025,14 +110557,33 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17714
+ - uid: 17709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-79.5
+ parent: 8364
+ - uid: 17713
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 8.5,-79.5
+ pos: -2.5,-79.5
+ parent: 8364
+ - uid: 17716
+ components:
+ - type: Transform
+ pos: 5.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 17763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-81.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF6600FF'
- uid: 17856
components:
- type: Transform
@@ -111102,6 +110653,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 20150
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-79.5
+ parent: 8364
- uid: 20185
components:
- type: Transform
@@ -111140,13 +110697,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 21370
- components:
- - type: Transform
- pos: -4.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 21383
components:
- type: Transform
@@ -111179,14 +110729,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22579
+ - uid: 22754
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 2.5,-75.5
+ pos: 11.5,-55.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF1212FF'
- uid: 22794
components:
- type: Transform
@@ -111202,11 +110752,55 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 22815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 22834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 22847
+ components:
+ - type: Transform
+ pos: 3.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 22932
components:
- type: Transform
pos: -1.5,-74.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#3AB334FF'
+ - uid: 22947
+ components:
+ - type: Transform
+ pos: 2.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 22948
+ components:
+ - type: Transform
+ pos: 0.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 22966
+ components:
+ - type: Transform
+ pos: -1.5,-84.5
+ parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- uid: 23017
@@ -111291,8 +110885,8 @@ entities:
- uid: 23112
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-80.5
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-81.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
@@ -111303,6 +110897,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 23181
+ components:
+ - type: Transform
+ pos: 5.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 23182
components:
- type: Transform
@@ -111318,6 +110919,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-86.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 23228
components:
- type: Transform
@@ -111326,6 +110935,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 23245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-82.5
+ parent: 8364
- uid: 23252
components:
- type: Transform
@@ -113115,30 +112730,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 25987
+ - uid: 26040
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 33.5,-34.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 26013
+ - uid: 26085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-80.5
+ parent: 8364
+ - uid: 26098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-78.5
+ parent: 8364
+ - uid: 26625
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,-79.5
+ pos: 1.5,-78.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 26040
+ - uid: 26626
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 33.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-80.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 26675
components:
- type: Transform
@@ -113154,6 +112777,39 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 26687
+ components:
+ - type: Transform
+ pos: 8.5,-78.5
+ parent: 8364
+ - uid: 26697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 26899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,-79.5
+ parent: 8364
+ - uid: 26908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-79.5
+ parent: 8364
+ - uid: 26917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 26920
components:
- type: Transform
@@ -113186,29 +112842,70 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28133
+ - uid: 27245
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-73.5
+ pos: 8.5,-81.5
+ parent: 8364
+ - uid: 27553
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 28145
+ color: '#FF00FFFF'
+ - uid: 28180
components:
- type: Transform
- pos: 3.5,-83.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-51.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
-- proto: GasPort
- entities:
- - uid: 105
+ color: '#FF00FFFF'
+ - uid: 28182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 28210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 28332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-48.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 28339
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-76.5
+ pos: 16.5,-50.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 28411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-51.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+- proto: GasPort
+ entities:
- uid: 409
components:
- type: Transform
@@ -113262,6 +112959,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 39.5,7.5
parent: 8364
+ - uid: 8212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 14117
components:
- type: Transform
@@ -113313,14 +113018,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 16850
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 17060
components:
- type: Transform
@@ -113328,28 +113025,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17072
+ - uid: 17116
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -5.5,-76.5
+ pos: 7.5,-84.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 17571
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 21.5,-73.5
parent: 8364
- - uid: 17712
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-78.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 18298
components:
- type: Transform
@@ -113411,6 +113098,14 @@ entities:
rot: 1.5707963267948966 rad
pos: 23.5,-73.5
parent: 8364
+ - uid: 20214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-51.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
- uid: 20802
components:
- type: Transform
@@ -113422,19 +113117,20 @@ entities:
rot: 3.141592653589793 rad
pos: 57.5,-30.5
parent: 8364
- - uid: 21368
+ - uid: 22933
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-75.5
+ pos: 19.5,-52.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
- uid: 23127
components:
- type: Transform
- pos: 8.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-79.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 24990
components:
- type: Transform
@@ -113496,39 +113192,87 @@ entities:
rot: -1.5707963267948966 rad
pos: 78.5,-39.5
parent: 8364
+ - uid: 26665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 26669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-78.5
+ parent: 8364
+ - uid: 26684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-76.5
+ parent: 8364
+ - uid: 26765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-51.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
- uid: 27178
components:
- type: Transform
pos: 22.5,-91.5
parent: 8364
- - uid: 27551
+ - uid: 27401
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 12.5,-72.5
+ pos: 2.5,-76.5
parent: 8364
- - uid: 27553
+ - uid: 28178
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 11.5,-71.5
+ pos: 15.5,-52.5
parent: 8364
- - uid: 27554
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 28181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 28270
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 13.5,-71.5
+ pos: 19.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF00FFFF'
+ - uid: 28335
+ components:
+ - type: Transform
+ pos: 8.5,-83.5
+ parent: 8364
+ - uid: 28344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-84.5
parent: 8364
- proto: GasPressurePump
entities:
- - uid: 3683
+ - uid: 3685
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-80.5
+ pos: 18.5,-47.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 3993
components:
- type: Transform
@@ -113536,34 +113280,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 4597
+ - uid: 5251
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-78.5
+ pos: 43.5,-40.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4681
+ color: '#0055CCFF'
+ - uid: 7081
components:
- - type: MetaData
- name: gas pump (Bypass)
- type: Transform
- pos: -6.5,-79.5
+ rot: 3.141592653589793 rad
+ pos: 2.5,-75.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - type: Label
- currentLabel: Bypass
- - type: NameModifier
- baseName: gas pump
- - uid: 5251
+ - type: GasPressurePump
+ targetPressure: 4500
+ - uid: 7085
components:
- type: Transform
- pos: 43.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-75.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ - type: GasPressurePump
+ targetPressure: 4500
- uid: 7188
components:
- type: Transform
@@ -113594,6 +113333,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 10501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-81.5
+ parent: 8364
+ - uid: 10507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 10762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-81.5
+ parent: 8364
- uid: 13813
components:
- type: Transform
@@ -113602,20 +113361,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 16937
+ - uid: 16146
components:
- - type: MetaData
- name: gas pump (Bypass)
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - type: Label
- currentLabel: Bypass
- - type: NameModifier
- baseName: gas pump
+ color: '#947507FF'
- uid: 17000
components:
- type: Transform
@@ -113628,20 +113381,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 22.5,-50.5
parent: 8364
- - uid: 17035
- components:
- - type: MetaData
- name: gas pump (Supermatter Cooling Loop)
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-57.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - type: Label
- currentLabel: Supermatter Cooling Loop
- - type: NameModifier
- baseName: gas pump
- uid: 17084
components:
- type: Transform
@@ -113699,28 +113438,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 17568
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-44.5
- parent: 8364
- - uid: 17690
+ - uid: 17472
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,-78.5
+ pos: 17.5,-54.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 17779
+ color: '#FF00FFFF'
+ - uid: 17568
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,-80.5
+ pos: 22.5,-44.5
parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 19114
components:
- type: Transform
@@ -113743,11 +113474,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 22840
+ - uid: 22755
components:
- type: Transform
- pos: 15.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-55.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 22928
components:
- type: Transform
@@ -113755,87 +113489,100 @@ entities:
pos: 9.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 22933
+ color: '#FF1212FF'
+ - uid: 25004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,-41.5
+ parent: 8364
+ - uid: 25005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-39.5
+ parent: 8364
+ - uid: 26702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-78.5
+ parent: 8364
+ - uid: 26704
+ components:
+ - type: Transform
+ pos: -6.5,-80.5
+ parent: 8364
+ - uid: 26721
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-76.5
+ pos: 5.5,-80.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 24494
+ - uid: 26763
components:
- - type: MetaData
- name: gas pump (Supermatter Waste)
- type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-78.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Label
- currentLabel: Supermatter Waste
- - type: NameModifier
- baseName: gas pump
- - uid: 25004
+ - uid: 26766
+ components:
+ - type: Transform
+ pos: 0.5,-76.5
+ parent: 8364
+ - uid: 26902
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 74.5,-41.5
+ pos: -0.5,-74.5
parent: 8364
- - uid: 25005
+ - uid: 27144
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,-76.5
parent: 8364
- - uid: 26081
+ - uid: 27230
components:
- - type: MetaData
- name: Mix to TEG
- type: Transform
- pos: 17.5,-57.5
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-55.5
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 26686
+ - uid: 27500
components:
- - type: MetaData
- name: gas pump (Bypass)
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-74.5
+ pos: 16.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - type: Label
- currentLabel: Bypass
- - type: NameModifier
- baseName: gas pump
- - uid: 27230
+ color: '#FF00FFFF'
+ - uid: 27677
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-77.5
+ pos: 19.5,-47.5
parent: 8364
- - type: AtmosPipeColor
- color: '#FF5D00FF'
- - uid: 27402
+ - uid: 28255
components:
- type: Transform
- pos: 0.5,-76.5
+ pos: 16.5,-49.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 28523
+ color: '#FF00FFFF'
+ - uid: 28275
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-56.5
+ pos: 17.5,-47.5
+ parent: 8364
+ - uid: 28410
+ components:
+ - type: Transform
+ pos: 18.5,-49.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF00FFFF'
- proto: GasThermoMachineFreezer
entities:
- uid: 3805
@@ -113852,14 +113599,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 19037
+ - uid: 6312
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,-80.5
+ pos: 19.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF00FFFF'
+ - uid: 8808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-80.5
+ parent: 8364
- uid: 20859
components:
- type: Transform
@@ -113876,24 +113629,20 @@ entities:
- type: Transform
pos: 70.5,-47.5
parent: 8364
- - uid: 22565
- components:
- - type: Transform
- pos: 18.5,-51.5
- parent: 8364
- - uid: 22688
+ - uid: 23143
components:
- type: Transform
- pos: 18.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-81.5
parent: 8364
- - uid: 25853
+ - uid: 28318
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 9.5,-79.5
+ pos: 19.5,-54.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF00FFFF'
- proto: GasThermoMachineFreezerEnabled
entities:
- uid: 10485
@@ -113909,16 +113658,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 9.5,-41.5
parent: 8364
- - uid: 17695
- components:
- - type: Transform
- pos: 12.5,-50.5
- parent: 8364
- - uid: 17696
- components:
- - type: Transform
- pos: 12.5,-51.5
- parent: 8364
- uid: 20858
components:
- type: Transform
@@ -113942,19 +113681,21 @@ entities:
open: False
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17339
+ - uid: 17707
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-56.5
+ pos: 14.5,-78.5
parent: 8364
- type: GasValve
open: False
- - uid: 17707
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 17708
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-78.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-71.5
parent: 8364
- type: GasValve
open: False
@@ -113970,6 +113711,14 @@ entities:
open: False
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 17753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-86.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 17766
components:
- type: Transform
@@ -114010,64 +113759,46 @@ entities:
open: False
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22834
+ - uid: 21370
components:
- - type: MetaData
- name: manual valve (Space)
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-86.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,-72.5
parent: 8364
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Label
- currentLabel: Space
- - type: NameModifier
- baseName: manual valve
- - uid: 22843
+ color: '#947507FF'
+ - uid: 22565
components:
- - type: MetaData
- name: waste valve 2
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-40.5
+ rot: 3.141592653589793 rad
+ pos: 6.5,-76.5
parent: 8364
+ - type: GasValve
+ open: False
- type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 22966
+ color: '#FF0000FF'
+ - uid: 22578
components:
- - type: MetaData
- name: manual valve (Waste)
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-86.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-77.5
parent: 8364
- type: GasValve
open: False
- type: AtmosPipeColor
color: '#FF0000FF'
- - type: Label
- currentLabel: Waste
- - type: NameModifier
- baseName: manual valve
- - uid: 24483
+ - uid: 22843
components:
- type: MetaData
- name: manual valve (TEG Room)
+ name: waste valve 2
- type: Transform
rot: -1.5707963267948966 rad
- pos: 4.5,-85.5
+ pos: 24.5,-40.5
parent: 8364
- - type: GasValve
- open: False
- type: AtmosPipeColor
- color: '#FF0000FF'
- - type: Label
- currentLabel: TEG Room
- - type: NameModifier
- baseName: manual valve
+ color: '#FF1212FF'
- uid: 25002
components:
- type: Transform
@@ -114080,32 +113811,8 @@ entities:
rot: -1.5707963267948966 rad
pos: 77.5,-39.5
parent: 8364
- - uid: 28438
- components:
- - type: MetaData
- name: manual valve (Nitrogen Miner)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-77.5
- parent: 8364
- - type: GasValve
- open: False
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - type: Label
- currentLabel: Nitrogen Miner
- - type: NameModifier
- baseName: manual valve
- proto: GasVentPump
entities:
- - uid: 4546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 5382
components:
- type: Transform
@@ -114124,17 +113831,6 @@ entities:
- 26707
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-90.5
- parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 10819
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 6979
components:
- type: Transform
@@ -114303,6 +113999,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-90.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 10819
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18247
components:
- type: Transform
@@ -114359,17 +114066,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22815
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-80.5
- parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 23163
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 22950
components:
- type: Transform
@@ -115525,17 +115221,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26002
+ - uid: 26674
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-72.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 23163
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 26949
components:
- type: Transform
@@ -115591,29 +115284,40 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28377
+ - uid: 28384
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,-72.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 26651
+ - 28375
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28384
+ - uid: 28412
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-73.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 28375
+ - 26651
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 28402
+- proto: GasVentPumpSupermatter
+ entities:
+ - uid: 17777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-79.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23163
+ - uid: 19037
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -115622,8 +115326,15 @@ entities:
- type: DeviceNetwork
deviceLists:
- 23163
- - type: AtmosPipeColor
- color: '#03FCD3FF'
+ - uid: 26680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-80.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23163
- proto: GasVentPumpVox
entities:
- uid: 6978
@@ -115655,25 +115366,6 @@ entities:
- 8013
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 4547
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF0000FF'
- - uid: 4879
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-78.5
- parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 23163
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 5383
components:
- type: Transform
@@ -115753,17 +115445,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 8808
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-90.5
- parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 10819
- - type: AtmosPipeColor
- color: '#FF0000FF'
- uid: 8953
components:
- type: Transform
@@ -115806,24 +115487,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 16832
+ - uid: 16353
components:
- type: Transform
- pos: -0.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 17116
+ - uid: 16832
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-80.5
+ pos: -0.5,-46.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 23163
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF0000FF'
- uid: 17122
components:
- type: Transform
@@ -115858,17 +115536,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF0000FF'
- - uid: 17716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-79.5
- parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 23163
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 17802
components:
- type: Transform
@@ -115901,6 +115568,17 @@ entities:
- 17866
- type: AtmosPipeColor
color: '#FF0000FF'
+ - uid: 18727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-90.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 10819
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
- uid: 20132
components:
- type: Transform
@@ -115954,7 +115632,7 @@ entities:
pos: 11.5,-47.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF0000FF'
+ color: '#FF1212FF'
- uid: 23010
components:
- type: Transform
@@ -117095,6 +116773,35 @@ entities:
- 28375
- type: AtmosPipeColor
color: '#FF0000FF'
+- proto: GasVentScrubberSupermatter
+ entities:
+ - uid: 17714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-80.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23163
+ - uid: 17718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-79.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23163
+ - uid: 26096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-78.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23163
- proto: GasVentScrubberVox
entities:
- uid: 6976
@@ -117147,42 +116854,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 27232
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-76.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 27256
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 28529
- components:
- - type: MetaData
- name: volumetric gas pump (Emergencies Only)
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - type: Label
- currentLabel: Emergencies Only
- - type: NameModifier
- baseName: volumetric gas pump
- proto: GeigerCounter
entities:
- uid: 18731
components:
- type: Transform
- pos: -2.3438883,-81.60997
+ pos: -2.5148401,-81.49483
parent: 8364
- type: Geiger
isEnabled: True
@@ -119733,12 +119410,6 @@ entities:
- type: Transform
pos: -0.5,-102.5
parent: 8364
- - uid: 3872
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-78.5
- parent: 8364
- uid: 3875
components:
- type: Transform
@@ -120670,12 +120341,6 @@ entities:
- type: Transform
pos: -42.5,-54.5
parent: 8364
- - uid: 4878
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-80.5
- parent: 8364
- uid: 4883
components:
- type: Transform
@@ -121561,6 +121226,11 @@ entities:
- type: Transform
pos: -10.5,-90.5
parent: 8364
+ - uid: 6326
+ components:
+ - type: Transform
+ pos: 1.5,-82.5
+ parent: 8364
- uid: 6767
components:
- type: Transform
@@ -122846,11 +122516,6 @@ entities:
- type: Transform
pos: -29.5,-26.5
parent: 8364
- - uid: 15545
- components:
- - type: Transform
- pos: 7.5,-72.5
- parent: 8364
- uid: 16142
components:
- type: Transform
@@ -122957,12 +122622,6 @@ entities:
- type: Transform
pos: -2.5,-102.5
parent: 8364
- - uid: 16946
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-86.5
- parent: 8364
- uid: 16986
components:
- type: Transform
@@ -123103,6 +122762,11 @@ entities:
- type: Transform
pos: 27.5,-65.5
parent: 8364
+ - uid: 17325
+ components:
+ - type: Transform
+ pos: -9.5,-78.5
+ parent: 8364
- uid: 17390
components:
- type: Transform
@@ -123149,15 +122813,10 @@ entities:
- type: Transform
pos: -18.5,-29.5
parent: 8364
- - uid: 17709
- components:
- - type: Transform
- pos: 13.5,-51.5
- parent: 8364
- - uid: 17721
+ - uid: 17690
components:
- type: Transform
- pos: 14.5,-49.5
+ pos: -9.5,-80.5
parent: 8364
- uid: 17759
components:
@@ -123422,12 +123081,6 @@ entities:
- type: Transform
pos: -3.5,-20.5
parent: 8364
- - uid: 19020
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-82.5
- parent: 8364
- uid: 19026
components:
- type: Transform
@@ -123454,11 +123107,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-28.5
parent: 8364
- - uid: 19075
- components:
- - type: Transform
- pos: 17.5,-50.5
- parent: 8364
- uid: 19097
components:
- type: Transform
@@ -123539,26 +123187,11 @@ entities:
- type: Transform
pos: 43.5,-34.5
parent: 8364
- - uid: 20150
- components:
- - type: Transform
- pos: 13.5,-50.5
- parent: 8364
- uid: 20195
components:
- type: Transform
pos: 69.5,-16.5
parent: 8364
- - uid: 20214
- components:
- - type: Transform
- pos: 16.5,-53.5
- parent: 8364
- - uid: 20215
- components:
- - type: Transform
- pos: 16.5,-49.5
- parent: 8364
- uid: 20386
components:
- type: Transform
@@ -123721,12 +123354,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,-82.5
parent: 8364
- - uid: 22588
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-82.5
- parent: 8364
- uid: 22652
components:
- type: Transform
@@ -123737,11 +123364,6 @@ entities:
- type: Transform
pos: -18.5,-68.5
parent: 8364
- - uid: 22841
- components:
- - type: Transform
- pos: 13.5,-52.5
- parent: 8364
- uid: 22863
components:
- type: Transform
@@ -123852,6 +123474,11 @@ entities:
- type: Transform
pos: 10.5,-52.5
parent: 8364
+ - uid: 22998
+ components:
+ - type: Transform
+ pos: -9.5,-81.5
+ parent: 8364
- uid: 23051
components:
- type: Transform
@@ -123877,21 +123504,10 @@ entities:
- type: Transform
pos: -18.5,-70.5
parent: 8364
- - uid: 23176
- components:
- - type: Transform
- pos: 14.5,-53.5
- parent: 8364
- - uid: 23210
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-84.5
- parent: 8364
- - uid: 23212
+ - uid: 23203
components:
- type: Transform
- pos: 17.5,-52.5
+ pos: 8.5,-76.5
parent: 8364
- uid: 23221
components:
@@ -123899,11 +123515,6 @@ entities:
rot: 3.141592653589793 rad
pos: 10.5,-81.5
parent: 8364
- - uid: 23222
- components:
- - type: Transform
- pos: 17.5,-51.5
- parent: 8364
- uid: 24708
components:
- type: Transform
@@ -124006,11 +123617,6 @@ entities:
rot: 3.141592653589793 rad
pos: -11.5,-84.5
parent: 8364
- - uid: 26029
- components:
- - type: Transform
- pos: 7.5,-71.5
- parent: 8364
- uid: 26042
components:
- type: Transform
@@ -124369,21 +123975,6 @@ entities:
- type: Transform
pos: -20.5,30.5
parent: 8364
- - uid: 26626
- components:
- - type: Transform
- pos: 7.5,-85.5
- parent: 8364
- - uid: 26648
- components:
- - type: Transform
- pos: 8.5,-85.5
- parent: 8364
- - uid: 26665
- components:
- - type: Transform
- pos: -7.5,-72.5
- parent: 8364
- uid: 26672
components:
- type: Transform
@@ -124418,11 +124009,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-87.5
parent: 8364
- - uid: 26917
- components:
- - type: Transform
- pos: -8.5,-72.5
- parent: 8364
- uid: 27143
components:
- type: Transform
@@ -124440,11 +124026,6 @@ entities:
- type: Transform
pos: 1.5,-94.5
parent: 8364
- - uid: 27257
- components:
- - type: Transform
- pos: 6.5,-85.5
- parent: 8364
- uid: 27274
components:
- type: Transform
@@ -124496,8 +124077,7 @@ entities:
- uid: 27421
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-75.5
+ pos: 7.5,-72.5
parent: 8364
- uid: 27422
components:
@@ -124505,17 +124085,16 @@ entities:
rot: -1.5707963267948966 rad
pos: -13.5,-71.5
parent: 8364
- - uid: 27481
+ - uid: 27457
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-71.5
+ pos: 7.5,-86.5
parent: 8364
- - uid: 27496
+ - uid: 27481
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,-79.5
+ pos: -12.5,-71.5
parent: 8364
- uid: 27506
components:
@@ -124603,6 +124182,11 @@ entities:
- type: Transform
pos: 33.5,-78.5
parent: 8364
+ - uid: 27922
+ components:
+ - type: Transform
+ pos: 7.5,-71.5
+ parent: 8364
- uid: 28136
components:
- type: Transform
@@ -124621,6 +124205,39 @@ entities:
rot: 3.141592653589793 rad
pos: 8.5,-91.5
parent: 8364
+ - uid: 28259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-74.5
+ parent: 8364
+ - uid: 28340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-71.5
+ parent: 8364
+ - uid: 28357
+ components:
+ - type: Transform
+ pos: -2.5,-82.5
+ parent: 8364
+ - uid: 28377
+ components:
+ - type: Transform
+ pos: -10.5,-84.5
+ parent: 8364
+ - uid: 28396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-59.5
+ parent: 8364
+ - uid: 28413
+ components:
+ - type: Transform
+ pos: 7.5,-74.5
+ parent: 8364
- proto: GrilleBroken
entities:
- uid: 453
@@ -124927,10 +124544,10 @@ entities:
parent: 8364
- proto: HandheldHealthAnalyzerEmpty
entities:
- - uid: 28487
+ - uid: 28150
components:
- type: Transform
- pos: -9.562721,-83.46843
+ pos: -8.567955,-83.453186
parent: 8364
- proto: HandLabeler
entities:
@@ -125003,18 +124620,6 @@ entities:
parent: 8364
- proto: HeatExchanger
entities:
- - uid: 538
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-82.5
- parent: 8364
- - uid: 3773
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-82.5
- parent: 8364
- uid: 4529
components:
- type: Transform
@@ -125022,35 +124627,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4689
+ - uid: 17092
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -12.5,-83.5
+ pos: -13.5,-82.5
parent: 8364
- - uid: 4691
+ - uid: 17601
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,-83.5
- parent: 8364
- - uid: 8542
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,-78.5
- parent: 8364
- - uid: 15550
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,-78.5
- parent: 8364
- - uid: 16714
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-78.5
+ pos: -13.5,-80.5
parent: 8364
- uid: 17607
components:
@@ -125059,136 +124646,24 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 23245
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-83.5
- parent: 8364
- - uid: 25839
- components:
- - type: Transform
- pos: -11.5,-82.5
- parent: 8364
- - uid: 26026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-78.5
- parent: 8364
- - uid: 26054
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-78.5
- parent: 8364
- - uid: 26085
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-79.5
- parent: 8364
- - uid: 26898
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-79.5
- parent: 8364
- - uid: 26899
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-80.5
- parent: 8364
- - uid: 26904
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-81.5
- parent: 8364
- - uid: 26907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-81.5
- parent: 8364
- - uid: 26908
+ - uid: 21460
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -15.5,-80.5
+ pos: -13.5,-81.5
parent: 8364
- uid: 26911
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,-83.5
- parent: 8364
- - uid: 26912
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-79.5
+ pos: -13.5,-79.5
parent: 8364
- uid: 26916
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-83.5
- parent: 8364
- - uid: 26919
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-80.5
- parent: 8364
- - uid: 27370
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-82.5
- parent: 8364
- - uid: 27375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-82.5
- parent: 8364
- - uid: 27394
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
pos: -13.5,-78.5
parent: 8364
- - uid: 27405
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-79.5
- parent: 8364
- - uid: 27414
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-81.5
- parent: 8364
- - uid: 27423
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-80.5
- parent: 8364
- - uid: 27455
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-81.5
- parent: 8364
- - uid: 28147
- components:
- - type: Transform
- pos: -11.5,-81.5
- parent: 8364
- proto: Hemostat
entities:
- uid: 13776
@@ -125252,24 +124727,24 @@ entities:
parent: 8364
- proto: HolofanProjector
entities:
- - uid: 14217
+ - uid: 8200
components:
- type: Transform
- pos: -20.405937,-40.342514
+ pos: 13.588713,-48.57287
parent: 8364
- - uid: 17655
+ - uid: 14217
components:
- type: Transform
- pos: 10.513089,-49.606483
+ pos: -20.405937,-40.342514
parent: 8364
- proto: Holopad
entities:
- - uid: 27262
+ - uid: 19014
components:
- type: MetaData
name: holopad (Engineering - Supermatter Chamber)
- type: Transform
- pos: 0.5,-84.5
+ pos: 0.5,-86.5
parent: 8364
- type: Label
currentLabel: Engineering - Supermatter Chamber
@@ -125576,7 +125051,7 @@ entities:
pos: 28.5,-34.5
parent: 8364
- type: Door
- secondsUntilStateChange: -39458.094
+ secondsUntilStateChange: -56383.004
state: Closing
- proto: hydroponicsSoil
entities:
@@ -126531,22 +126006,22 @@ entities:
- Pressed: Open
2506:
- Pressed: Open
-- proto: LockerAtmosphericsFilledHardsuit
+- proto: LockerAtmosphericsFilled
entities:
- - uid: 3883
+ - uid: 28132
components:
- type: Transform
pos: 6.5,-49.5
parent: 8364
- - uid: 17586
+ - uid: 28133
components:
- type: Transform
- pos: 7.5,-49.5
+ pos: 5.5,-49.5
parent: 8364
- - uid: 17808
+ - uid: 28134
components:
- type: Transform
- pos: 5.5,-49.5
+ pos: 7.5,-49.5
parent: 8364
- proto: LockerBoozeFilled
entities:
@@ -126734,17 +126209,17 @@ entities:
- type: Transform
pos: -24.5,-62.5
parent: 8364
- - uid: 28527
+ - uid: 28268
components:
- type: Transform
- pos: -9.5,-73.5
+ pos: -8.5,-72.5
parent: 8364
- proto: LockerEngineerFilled
entities:
- - uid: 28530
+ - uid: 24494
components:
- type: Transform
- pos: -8.5,-73.5
+ pos: -7.5,-72.5
parent: 8364
- proto: LockerEngineerFilledHardsuit
entities:
@@ -127742,10 +127217,10 @@ entities:
ent: null
- proto: LockerWeldingSuppliesFilled
entities:
- - uid: 1612
+ - uid: 1477
components:
- type: Transform
- pos: 9.5,-49.5
+ pos: 13.5,-54.5
parent: 8364
- uid: 3637
components:
@@ -128274,15 +127749,15 @@ entities:
- type: Transform
pos: 39.46878,-29.572002
parent: 8364
- - uid: 28484
+ - uid: 28416
components:
- type: Transform
- pos: -9.355539,-84.48346
+ pos: -8.380455,-84.43304
parent: 8364
- - uid: 28485
+ - uid: 28417
components:
- type: Transform
- pos: -9.638268,-84.062874
+ pos: -8.578371,-84.09947
parent: 8364
- proto: MedkitToxin
entities:
@@ -130341,91 +129816,93 @@ entities:
parent: 8364
- proto: PlasmaReinforcedWindowDirectional
entities:
- - uid: 540
+ - uid: 21798
components:
- type: Transform
- pos: 14.5,-54.5
+ rot: 1.5707963267948966 rad
+ pos: -42.5,1.5
parent: 8364
- - uid: 3749
+ - uid: 22667
components:
- type: Transform
- pos: 15.5,-54.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,1.5
parent: 8364
- - uid: 3752
+ - uid: 24081
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-54.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,1.5
parent: 8364
- - uid: 21798
+ - uid: 24083
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -42.5,1.5
parent: 8364
- - uid: 22667
+ - uid: 27498
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -42.5,1.5
+ pos: 1.5,-78.5
parent: 8364
- - uid: 23194
+ - uid: 28184
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-54.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-78.5
parent: 8364
- - uid: 23239
+ - uid: 28204
components:
- type: Transform
- pos: 16.5,-54.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-80.5
parent: 8364
- - uid: 24081
+ - uid: 28206
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-79.5
parent: 8364
- - uid: 24083
+ - uid: 28207
components:
- type: Transform
- pos: -42.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-80.5
parent: 8364
- - uid: 25963
+ - uid: 28278
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-79.5
parent: 8364
- - uid: 25964
+ - uid: 28453
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 0.5,-78.5
+ pos: -2.5,-81.5
parent: 8364
- - uid: 25965
+ - uid: 28454
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-81.5
parent: 8364
- - uid: 26117
+- proto: PlasmaTankFilled
+ entities:
+ - uid: 28192
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-79.5
+ pos: 2.3257267,-81.36284
parent: 8364
- - uid: 26118
+ - uid: 28257
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-80.5
+ pos: 2.6069767,-81.529625
parent: 8364
- - uid: 26119
+ - uid: 28262
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-78.5
+ pos: -3.40344,-81.48793
parent: 8364
- proto: PlasticFlapsAirtightClear
entities:
@@ -131067,6 +130544,13 @@ entities:
- type: Transform
pos: 37.5,-29.5
parent: 8364
+- proto: PosterLegitSafetyMothDelam
+ entities:
+ - uid: 22224
+ components:
+ - type: Transform
+ pos: 2.5,-77.5
+ parent: 8364
- proto: PosterLegitSafetyMothEpi
entities:
- uid: 27543
@@ -131299,10 +130783,10 @@ entities:
parent: 8364
- proto: PottedPlant27
entities:
- - uid: 19079
+ - uid: 21772
components:
- type: Transform
- pos: -7.5,-61.5
+ pos: -5.5,-65.5
parent: 8364
- proto: PottedPlant29
entities:
@@ -132040,6 +131524,12 @@ entities:
- type: Transform
pos: 39.5,0.5
parent: 8364
+ - uid: 7077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-53.5
+ parent: 8364
- uid: 7910
components:
- type: Transform
@@ -133198,37 +132688,12 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 16736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-58.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 16982
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-48.5
- parent: 8364
- - uid: 17049
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-50.5
- parent: 8364
- uid: 17079
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 24.5,-49.5
parent: 8364
- - uid: 17082
- components:
- - type: Transform
- pos: 17.5,-54.5
- parent: 8364
- uid: 17154
components:
- type: Transform
@@ -133602,6 +133067,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,-76.5
parent: 8364
+ - uid: 19079
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-81.5
+ parent: 8364
- uid: 19167
components:
- type: Transform
@@ -133964,12 +133435,6 @@ entities:
rot: 3.141592653589793 rad
pos: -7.5,-86.5
parent: 8364
- - uid: 22582
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-76.5
- parent: 8364
- uid: 22670
components:
- type: Transform
@@ -133984,12 +133449,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 22755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-82.5
- parent: 8364
- uid: 23020
components:
- type: Transform
@@ -134254,12 +133713,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 26896
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-73.5
- parent: 8364
- uid: 26909
components:
- type: Transform
@@ -134336,12 +133789,24 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 27405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-85.5
+ parent: 8364
- uid: 27603
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -41.5,-21.5
parent: 8364
+ - uid: 27679
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-53.5
+ parent: 8364
- uid: 27882
components:
- type: Transform
@@ -134359,6 +133824,30 @@ entities:
rot: 3.141592653589793 rad
pos: 30.5,-33.5
parent: 8364
+ - uid: 28012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-76.5
+ parent: 8364
+ - uid: 28254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-59.5
+ parent: 8364
+ - uid: 28279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 16.5,-49.5
+ parent: 8364
+ - uid: 28317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-49.5
+ parent: 8364
- uid: 28336
components:
- type: Transform
@@ -134371,23 +133860,35 @@ entities:
rot: -1.5707963267948966 rad
pos: 22.5,-30.5
parent: 8364
+ - uid: 28368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-81.5
+ parent: 8364
+ - uid: 28371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-75.5
+ parent: 8364
- uid: 28401
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 21.5,-36.5
parent: 8364
- - uid: 28492
+ - uid: 28419
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -6.5,-81.5
+ pos: -10.5,-82.5
parent: 8364
- - uid: 28493
+ - uid: 28421
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 5.5,-81.5
+ pos: -8.5,-82.5
parent: 8364
- uid: 28515
components:
@@ -134445,12 +133946,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 19951
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -11.5,-82.5
- parent: 8364
- uid: 21455
components:
- type: Transform
@@ -135562,12 +135057,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 17056
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-51.5
- parent: 8364
- uid: 17550
components:
- type: Transform
@@ -136026,11 +135515,11 @@ entities:
- type: Transform
pos: 32.5,-79.5
parent: 8364
- - uid: 28534
+ - uid: 28404
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -12.5,-86.5
+ pos: -11.5,-86.5
parent: 8364
- proto: PoweredSmallLightEmpty
entities:
@@ -136488,6 +135977,11 @@ entities:
- type: Transform
pos: -5.5,-45.5
parent: 8364
+ - uid: 16850
+ components:
+ - type: Transform
+ pos: 13.5,-48.5
+ parent: 8364
- uid: 17632
components:
- type: Transform
@@ -136599,11 +136093,6 @@ entities:
- type: Transform
pos: -36.5,-48.5
parent: 8364
- - uid: 22847
- components:
- - type: Transform
- pos: 10.5,-49.5
- parent: 8364
- uid: 25993
components:
- type: Transform
@@ -136986,11 +136475,6 @@ entities:
- type: Transform
pos: 72.5,-28.5
parent: 8364
- - uid: 27403
- components:
- - type: Transform
- pos: 8.5,-82.5
- parent: 8364
- uid: 27961
components:
- type: Transform
@@ -137343,6 +136827,11 @@ entities:
parent: 8364
- proto: RandomPosterLegit
entities:
+ - uid: 1476
+ components:
+ - type: Transform
+ pos: 9.5,-49.5
+ parent: 8364
- uid: 2024
components:
- type: Transform
@@ -137608,6 +137097,11 @@ entities:
- type: Transform
pos: 17.5,-8.5
parent: 8364
+ - uid: 28424
+ components:
+ - type: Transform
+ pos: 14.5,-51.5
+ parent: 8364
- proto: RandomSnacks
entities:
- uid: 20688
@@ -138243,6 +137737,12 @@ entities:
parent: 8364
- proto: ReinforcedPlasmaWindow
entities:
+ - uid: 110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-74.5
+ parent: 8364
- uid: 120
components:
- type: Transform
@@ -138268,11 +137768,6 @@ entities:
- type: Transform
pos: 44.5,-54.5
parent: 8364
- - uid: 3779
- components:
- - type: Transform
- pos: 7.5,-72.5
- parent: 8364
- uid: 3785
components:
- type: Transform
@@ -138288,11 +137783,6 @@ entities:
- type: Transform
pos: -4.5,-71.5
parent: 8364
- - uid: 4055
- components:
- - type: Transform
- pos: -8.5,-72.5
- parent: 8364
- uid: 4511
components:
- type: Transform
@@ -138303,15 +137793,10 @@ entities:
- type: Transform
pos: -7.5,-71.5
parent: 8364
- - uid: 4545
- components:
- - type: Transform
- pos: -7.5,-72.5
- parent: 8364
- - uid: 5799
+ - uid: 5915
components:
- type: Transform
- pos: 14.5,-49.5
+ pos: 1.5,-82.5
parent: 8364
- uid: 7671
components:
@@ -138333,78 +137818,38 @@ entities:
- type: Transform
pos: -0.5,40.5
parent: 8364
- - uid: 15138
+ - uid: 8480
components:
- type: Transform
- pos: 17.5,-51.5
+ pos: 7.5,-74.5
parent: 8364
- uid: 16349
components:
- type: Transform
pos: 3.5,-71.5
parent: 8364
- - uid: 17110
- components:
- - type: Transform
- pos: -5.5,-71.5
- parent: 8364
- - uid: 17183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-78.5
- parent: 8364
- - uid: 17441
+ - uid: 16736
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,-80.5
+ pos: -8.5,-71.5
parent: 8364
- - uid: 17518
+ - uid: 17110
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-86.5
+ pos: -5.5,-71.5
parent: 8364
- uid: 17697
components:
- type: Transform
pos: 10.5,-81.5
parent: 8364
- - uid: 17718
- components:
- - type: Transform
- pos: 17.5,-52.5
- parent: 8364
- - uid: 17757
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-79.5
- parent: 8364
- - uid: 17763
- components:
- - type: Transform
- pos: 16.5,-53.5
- parent: 8364
- - uid: 18593
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-82.5
- parent: 8364
- uid: 18596
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 2.5,-82.5
parent: 8364
- - uid: 18727
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-82.5
- parent: 8364
- uid: 18729
components:
- type: Transform
@@ -138417,36 +137862,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -3.5,-82.5
parent: 8364
- - uid: 19159
- components:
- - type: Transform
- pos: 13.5,-50.5
- parent: 8364
- - uid: 20151
- components:
- - type: Transform
- pos: 17.5,-50.5
- parent: 8364
- uid: 21936
components:
- type: Transform
pos: 10.5,-80.5
parent: 8364
- - uid: 22754
- components:
- - type: Transform
- pos: 7.5,-71.5
- parent: 8364
- - uid: 22830
- components:
- - type: Transform
- pos: 13.5,-51.5
- parent: 8364
- - uid: 22839
- components:
- - type: Transform
- pos: 13.5,-52.5
- parent: 8364
- uid: 22881
components:
- type: Transform
@@ -138547,15 +137967,20 @@ entities:
- type: Transform
pos: 22.5,-63.5
parent: 8364
- - uid: 23181
+ - uid: 22967
components:
- type: Transform
- pos: 16.5,-49.5
+ pos: -9.5,-80.5
parent: 8364
- - uid: 23236
+ - uid: 22968
components:
- type: Transform
- pos: 14.5,-53.5
+ pos: -9.5,-78.5
+ parent: 8364
+ - uid: 23166
+ components:
+ - type: Transform
+ pos: -9.5,-81.5
parent: 8364
- uid: 26062
components:
@@ -138604,12 +138029,6 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,-87.5
parent: 8364
- - uid: 26684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-75.5
- parent: 8364
- uid: 26775
components:
- type: Transform
@@ -138626,30 +138045,40 @@ entities:
- type: Transform
pos: -0.5,-95.5
parent: 8364
- - uid: 27363
+ - uid: 27513
components:
- type: Transform
- pos: 6.5,-85.5
+ pos: 1.5,-95.5
parent: 8364
- - uid: 27364
+ - uid: 27514
components:
- type: Transform
- pos: 7.5,-85.5
+ pos: 2.5,-93.5
parent: 8364
- - uid: 27365
+ - uid: 28267
components:
- type: Transform
- pos: 8.5,-85.5
+ pos: 7.5,-71.5
parent: 8364
- - uid: 27513
+ - uid: 28272
components:
- type: Transform
- pos: 1.5,-95.5
+ pos: 7.5,-86.5
parent: 8364
- - uid: 27514
+ - uid: 28281
components:
- type: Transform
- pos: 2.5,-93.5
+ pos: 7.5,-72.5
+ parent: 8364
+ - uid: 28355
+ components:
+ - type: Transform
+ pos: -2.5,-82.5
+ parent: 8364
+ - uid: 28402
+ components:
+ - type: Transform
+ pos: 8.5,-76.5
parent: 8364
- proto: ReinforcedWindow
entities:
@@ -138683,6 +138112,11 @@ entities:
- type: Transform
pos: -75.5,-6.5
parent: 8364
+ - uid: 143
+ components:
+ - type: Transform
+ pos: -10.5,-84.5
+ parent: 8364
- uid: 145
components:
- type: Transform
@@ -142811,6 +142245,12 @@ entities:
- type: Transform
pos: 69.5,-16.5
parent: 8364
+ - uid: 20215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-59.5
+ parent: 8364
- uid: 20370
components:
- type: Transform
@@ -143203,12 +142643,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -16.5,-77.5
parent: 8364
- - uid: 28199
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,-84.5
- parent: 8364
- uid: 28200
components:
- type: Transform
@@ -144541,24 +143975,6 @@ entities:
linkedPorts:
13910:
- Pressed: Toggle
- - uid: 3753
- components:
- - type: Transform
- pos: 17.5,-53.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 3750:
- - Pressed: Toggle
- - uid: 3754
- components:
- - type: Transform
- pos: 17.5,-49.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 22831:
- - Pressed: Toggle
- uid: 3807
components:
- type: Transform
@@ -145941,12 +145357,6 @@ entities:
parent: 8364
- proto: SignSecurearea
entities:
- - uid: 3527
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-53.5
- parent: 8364
- uid: 8470
components:
- type: Transform
@@ -146090,6 +145500,11 @@ entities:
- type: Transform
pos: 28.5,-30.5
parent: 8364
+ - uid: 28209
+ components:
+ - type: Transform
+ pos: 10.5,-49.5
+ parent: 8364
- proto: SignSomethingOld
entities:
- uid: 4970
@@ -147910,6 +147325,18 @@ entities:
- type: Transform
pos: -57.5,-61.5
parent: 8364
+- proto: SpaceHeater
+ entities:
+ - uid: 17441
+ components:
+ - type: Transform
+ pos: 15.5,-54.5
+ parent: 8364
+ - uid: 28273
+ components:
+ - type: Transform
+ pos: 14.5,-54.5
+ parent: 8364
- proto: SpaceVillainArcadeComputerCircuitboard
entities:
- uid: 21709
@@ -149283,12 +148710,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 27.5,-4.5
parent: 8364
- - uid: 28491
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-84.5
- parent: 8364
- proto: StorageCanister
entities:
- uid: 3790
@@ -149356,6 +148777,31 @@ entities:
- type: Transform
pos: 62.5,-33.5
parent: 8364
+ - uid: 28319
+ components:
+ - type: Transform
+ pos: 15.5,-50.5
+ parent: 8364
+ - uid: 28334
+ components:
+ - type: Transform
+ pos: 15.5,-51.5
+ parent: 8364
+ - uid: 28408
+ components:
+ - type: Transform
+ pos: 15.5,-52.5
+ parent: 8364
+ - uid: 28434
+ components:
+ - type: Transform
+ pos: -4.5,-76.5
+ parent: 8364
+ - uid: 28436
+ components:
+ - type: Transform
+ pos: -3.5,-76.5
+ parent: 8364
- proto: SubstationBasic
entities:
- uid: 1666
@@ -149488,6 +148934,23 @@ entities:
- type: Transform
pos: -67.42753,12.306509
parent: 8364
+- proto: SuitStorageAtmos
+ entities:
+ - uid: 17339
+ components:
+ - type: Transform
+ pos: 13.5,-52.5
+ parent: 8364
+ - uid: 22850
+ components:
+ - type: Transform
+ pos: 13.5,-51.5
+ parent: 8364
+ - uid: 27242
+ components:
+ - type: Transform
+ pos: 13.5,-50.5
+ parent: 8364
- proto: SuitStorageCaptain
entities:
- uid: 6911
@@ -150104,6 +149567,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: EVA Supply
+ - uid: 1643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-53.5
+ parent: 8364
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos
- uid: 3722
components:
- type: Transform
@@ -150123,14 +149597,6 @@ entities:
parent: 8364
- type: SurveillanceCamera
id: Supermatter Engine Observatory
- - uid: 14221
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-73.5
- parent: 8364
- - type: SurveillanceCamera
- id: AME
- uid: 14631
components:
- type: Transform
@@ -150142,17 +149608,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Circuitry
- - uid: 16620
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-53.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmos
- uid: 16622
components:
- type: Transform
@@ -150484,6 +149939,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Locker Room
+ - uid: 28258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -10.5,-75.5
+ parent: 8364
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: AME
- proto: SurveillanceCameraGeneral
entities:
- uid: 40
@@ -152246,6 +151712,12 @@ entities:
- type: Transform
pos: 2.5,-34.5
parent: 8364
+ - uid: 3750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-83.5
+ parent: 8364
- uid: 3988
components:
- type: Transform
@@ -153165,6 +152637,12 @@ entities:
- type: Transform
pos: 45.5,-36.5
parent: 8364
+ - uid: 16949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-84.5
+ parent: 8364
- uid: 16957
components:
- type: Transform
@@ -153730,17 +153208,11 @@ entities:
- type: Transform
pos: 4.5,-65.5
parent: 8364
- - uid: 28183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,-71.5
- parent: 8364
- - uid: 28184
+ - uid: 28256
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-71.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-77.5
parent: 8364
- uid: 28361
components:
@@ -153784,22 +153256,6 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,-86.5
parent: 8364
- - uid: 28482
- components:
- - type: Transform
- pos: -9.5,-84.5
- parent: 8364
- - uid: 28483
- components:
- - type: Transform
- pos: -9.5,-83.5
- parent: 8364
- - uid: 28517
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,-77.5
- parent: 8364
- proto: TableCarpet
entities:
- uid: 10549
@@ -153832,18 +153288,6 @@ entities:
- type: Transform
pos: 60.5,0.5
parent: 8364
-- proto: TableCounterMetal
- entities:
- - uid: 28404
- components:
- - type: Transform
- pos: 8.5,-82.5
- parent: 8364
- - uid: 28489
- components:
- - type: Transform
- pos: 9.5,-84.5
- parent: 8364
- proto: TableCounterWood
entities:
- uid: 805
@@ -154667,17 +154111,22 @@ entities:
- type: Transform
pos: -10.5,3.5
parent: 8364
- - uid: 27244
+ - uid: 27554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-81.5
+ parent: 8364
+ - uid: 28277
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -2.5,-81.5
parent: 8364
- - uid: 27245
+ - uid: 28358
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,-81.5
+ pos: -3.5,-81.5
parent: 8364
- proto: TableReinforcedGlass
entities:
@@ -155966,14 +155415,14 @@ entities:
- uid: 28524
components:
- type: Transform
- pos: 6.2291307,-87.21852
+ pos: 6.2360563,-88.22746
parent: 8364
- proto: ToyFigurineChiefEngineer
entities:
- uid: 28397
components:
- type: Transform
- pos: 6.7135057,-87.359146
+ pos: 6.78814,-88.362976
parent: 8364
- proto: ToyFigurinePassenger
entities:
@@ -155987,7 +155436,7 @@ entities:
- uid: 28333
components:
- type: Transform
- pos: 8.524701,-86.641655
+ pos: 9.331968,-86.50087
parent: 8364
- proto: ToyMouse
entities:
@@ -156837,15 +156286,15 @@ entities:
parent: 8364
- proto: VendingMachineTankDispenserEngineering
entities:
- - uid: 17602
+ - uid: 22806
components:
- type: Transform
- pos: -3.5,-81.5
+ pos: 63.5,-33.5
parent: 8364
- - uid: 22806
+ - uid: 28274
components:
- type: Transform
- pos: 63.5,-33.5
+ pos: -8.5,-75.5
parent: 8364
- proto: VendingMachineTankDispenserEVA
entities:
@@ -156859,15 +156308,15 @@ entities:
- type: Transform
pos: -28.5,-29.5
parent: 8364
- - uid: 20910
+ - uid: 16982
components:
- type: Transform
- pos: 4.5,-44.5
+ pos: -10.5,-86.5
parent: 8364
- - uid: 26685
+ - uid: 20910
components:
- type: Transform
- pos: -11.5,-86.5
+ pos: 4.5,-44.5
parent: 8364
- uid: 26809
components:
@@ -157177,11 +156626,6 @@ entities:
- type: Transform
pos: -4.5,4.5
parent: 8364
- - uid: 121
- components:
- - type: Transform
- pos: -10.5,-73.5
- parent: 8364
- uid: 178
components:
- type: Transform
@@ -157457,6 +156901,11 @@ entities:
- type: Transform
pos: 33.5,-39.5
parent: 8364
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 14.5,-53.5
+ parent: 8364
- uid: 543
components:
- type: Transform
@@ -161361,11 +160810,6 @@ entities:
- type: Transform
pos: 84.5,-60.5
parent: 8364
- - uid: 3696
- components:
- - type: Transform
- pos: -10.5,-72.5
- parent: 8364
- uid: 3698
components:
- type: Transform
@@ -161573,12 +161017,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,-85.5
parent: 8364
- - uid: 3830
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-84.5
- parent: 8364
- uid: 3831
components:
- type: Transform
@@ -161614,11 +161052,6 @@ entities:
- type: Transform
pos: 25.5,-59.5
parent: 8364
- - uid: 3853
- components:
- - type: Transform
- pos: 24.5,-59.5
- parent: 8364
- uid: 3854
components:
- type: Transform
@@ -163452,12 +162885,6 @@ entities:
- type: Transform
pos: 10.5,-82.5
parent: 8364
- - uid: 4687
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-76.5
- parent: 8364
- uid: 4688
components:
- type: Transform
@@ -164154,11 +163581,6 @@ entities:
- type: Transform
pos: -2.5,-77.5
parent: 8364
- - uid: 6313
- components:
- - type: Transform
- pos: -10.5,-86.5
- parent: 8364
- uid: 6314
components:
- type: Transform
@@ -164269,6 +163691,12 @@ entities:
- type: Transform
pos: 81.5,-55.5
parent: 8364
+ - uid: 7269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-53.5
+ parent: 8364
- uid: 7275
components:
- type: Transform
@@ -166437,6 +165865,11 @@ entities:
- type: Transform
pos: 13.5,-87.5
parent: 8364
+ - uid: 16532
+ components:
+ - type: Transform
+ pos: -12.5,-86.5
+ parent: 8364
- uid: 16697
components:
- type: Transform
@@ -166502,6 +165935,12 @@ entities:
- type: Transform
pos: 5.5,-101.5
parent: 8364
+ - uid: 16951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-86.5
+ parent: 8364
- uid: 16965
components:
- type: Transform
@@ -166575,6 +166014,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,-81.5
parent: 8364
+ - uid: 17183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 10.5,-49.5
+ parent: 8364
+ - uid: 17209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-75.5
+ parent: 8364
- uid: 17297
components:
- type: Transform
@@ -166615,12 +166066,6 @@ entities:
- type: Transform
pos: 11.5,-69.5
parent: 8364
- - uid: 17606
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-76.5
- parent: 8364
- uid: 17663
components:
- type: Transform
@@ -166631,16 +166076,6 @@ entities:
- type: Transform
pos: 10.5,-71.5
parent: 8364
- - uid: 17708
- components:
- - type: Transform
- pos: 13.5,-53.5
- parent: 8364
- - uid: 17753
- components:
- - type: Transform
- pos: 13.5,-49.5
- parent: 8364
- uid: 17772
components:
- type: Transform
@@ -166822,11 +166257,6 @@ entities:
- type: Transform
pos: -4.5,-65.5
parent: 8364
- - uid: 20147
- components:
- - type: Transform
- pos: 17.5,-53.5
- parent: 8364
- uid: 20302
components:
- type: Transform
@@ -166848,11 +166278,6 @@ entities:
- type: Transform
pos: 28.5,-59.5
parent: 8364
- - uid: 21460
- components:
- - type: Transform
- pos: 17.5,-49.5
- parent: 8364
- uid: 21624
components:
- type: Transform
@@ -166972,11 +166397,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,14.5
parent: 8364
- - uid: 22224
- components:
- - type: Transform
- pos: -9.5,-72.5
- parent: 8364
- uid: 22428
components:
- type: Transform
@@ -166987,21 +166407,6 @@ entities:
- type: Transform
pos: -74.5,12.5
parent: 8364
- - uid: 22578
- components:
- - type: Transform
- pos: 7.5,-75.5
- parent: 8364
- - uid: 22581
- components:
- - type: Transform
- pos: 7.5,-74.5
- parent: 8364
- - uid: 22583
- components:
- - type: Transform
- pos: 7.5,-73.5
- parent: 8364
- uid: 22662
components:
- type: Transform
@@ -167045,6 +166450,12 @@ entities:
- type: Transform
pos: -1.5,-75.5
parent: 8364
+ - uid: 22831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-87.5
+ parent: 8364
- uid: 22851
components:
- type: Transform
@@ -167281,28 +166692,15 @@ entities:
- type: Transform
pos: 3.5,-81.5
parent: 8364
- - uid: 26094
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-86.5
- parent: 8364
- - uid: 26096
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-84.5
- parent: 8364
- - uid: 26098
+ - uid: 26108
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-81.5
+ pos: 1.5,-50.5
parent: 8364
- - uid: 26108
+ - uid: 26117
components:
- type: Transform
- pos: 1.5,-50.5
+ pos: 14.5,-49.5
parent: 8364
- uid: 26581
components:
@@ -167391,10 +166789,10 @@ entities:
rot: 3.141592653589793 rad
pos: -4.5,-87.5
parent: 8364
- - uid: 26674
+ - uid: 26682
components:
- type: Transform
- pos: 5.5,-85.5
+ pos: -9.5,-72.5
parent: 8364
- uid: 26700
components:
@@ -167533,17 +166931,16 @@ entities:
- type: Transform
pos: 3.5,-88.5
parent: 8364
- - uid: 27360
+ - uid: 27262
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-77.5
+ pos: 13.5,-49.5
parent: 8364
- - uid: 27366
+ - uid: 27360
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -10.5,-82.5
+ pos: -3.5,-77.5
parent: 8364
- uid: 27374
components:
@@ -167557,6 +166954,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -4.5,-77.5
parent: 8364
+ - uid: 27416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-82.5
+ parent: 8364
- uid: 27453
components:
- type: Transform
@@ -167580,22 +166983,11 @@ entities:
- type: Transform
pos: -11.5,-71.5
parent: 8364
- - uid: 27493
- components:
- - type: Transform
- pos: -10.5,-76.5
- parent: 8364
- uid: 27494
components:
- type: Transform
pos: -14.5,-71.5
parent: 8364
- - uid: 27500
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-83.5
- parent: 8364
- uid: 27503
components:
- type: Transform
@@ -167607,16 +166999,109 @@ entities:
rot: -1.5707963267948966 rad
pos: 3.5,-77.5
parent: 8364
+ - uid: 27551
+ components:
+ - type: Transform
+ pos: 14.5,-51.5
+ parent: 8364
+ - uid: 27678
+ components:
+ - type: Transform
+ pos: -12.5,-84.5
+ parent: 8364
- uid: 27805
components:
- type: Transform
pos: 12.5,-68.5
parent: 8364
+ - uid: 28008
+ components:
+ - type: Transform
+ pos: 8.5,-85.5
+ parent: 8364
+ - uid: 28009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-87.5
+ parent: 8364
+ - uid: 28010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-71.5
+ parent: 8364
+ - uid: 28147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 13.5,-53.5
+ parent: 8364
+ - uid: 28179
+ components:
+ - type: Transform
+ pos: 15.5,-49.5
+ parent: 8364
+ - uid: 28263
+ components:
+ - type: Transform
+ pos: 14.5,-52.5
+ parent: 8364
+ - uid: 28265
+ components:
+ - type: Transform
+ pos: 9.5,-49.5
+ parent: 8364
+ - uid: 28271
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,-79.5
+ parent: 8364
+ - uid: 28316
+ components:
+ - type: Transform
+ pos: 14.5,-50.5
+ parent: 8364
+ - uid: 28324
+ components:
+ - type: Transform
+ pos: 7.5,-85.5
+ parent: 8364
- uid: 28331
components:
- type: Transform
pos: 9.5,-85.5
parent: 8364
+ - uid: 28341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-84.5
+ parent: 8364
+ - uid: 28342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-83.5
+ parent: 8364
+ - uid: 28343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-77.5
+ parent: 8364
+ - uid: 28414
+ components:
+ - type: Transform
+ pos: 7.5,-75.5
+ parent: 8364
+ - uid: 28420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -9.5,-76.5
+ parent: 8364
- proto: WallShuttle
entities:
- uid: 2304
@@ -176463,11 +175948,6 @@ entities:
- type: Transform
pos: -27.5,-12.5
parent: 8364
- - uid: 3692
- components:
- - type: Transform
- pos: 12.5,-52.5
- parent: 8364
- uid: 8486
components:
- type: Transform
@@ -176798,10 +176278,10 @@ entities:
parent: 8364
- proto: WelderIndustrial
entities:
- - uid: 23161
+ - uid: 6313
components:
- type: Transform
- pos: 10.537883,-49.512733
+ pos: 13.53663,-48.458206
parent: 8364
- proto: WeldingFuelTankFull
entities:
@@ -176880,11 +176360,6 @@ entities:
- type: Transform
pos: -34.5,-58.5
parent: 8364
- - uid: 16951
- components:
- - type: Transform
- pos: 18.5,-52.5
- parent: 8364
- uid: 18577
components:
- type: Transform
@@ -176925,6 +176400,11 @@ entities:
- type: Transform
pos: -12.5,7.5
parent: 8364
+ - uid: 28059
+ components:
+ - type: Transform
+ pos: 15.5,-48.5
+ parent: 8364
- proto: Windoor
entities:
- uid: 2030
@@ -178891,12 +178371,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 27.5,-19.5
parent: 8364
- - uid: 22835
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-86.5
- parent: 8364
- uid: 24434
components:
- type: Transform
@@ -179018,12 +178492,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-36.5
parent: 8364
- - uid: 28508
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -6.5,-72.5
- parent: 8364
- proto: Wirecutter
entities:
- uid: 11686
diff --git a/Resources/Maps/_Impstation/core.yml b/Resources/Maps/_Impstation/core.yml
index 4870285d9c69..f95db578355c 100644
--- a/Resources/Maps/_Impstation/core.yml
+++ b/Resources/Maps/_Impstation/core.yml
@@ -2,63 +2,63 @@ meta:
format: 6
postmapinit: false
tilemap:
- 2: Space
- 105: FloorArcadeBlue2
- 97: FloorAsteroidSand
- 111: FloorAsteroidSandUnvariantized
- 99: FloorAsteroidTile
- 112: FloorAstroSnow
- 4: FloorBar
- 93: FloorBlueCircuit
- 35: FloorBoxing
- 103: FloorBrokenWood
- 40: FloorCarpetClown
- 38: FloorClown
- 51: FloorConcreteMono
- 7: FloorDark
- 106: FloorDarkMini
- 14: FloorDarkMono
- 60: FloorDarkOffset
- 46: FloorDarkPavement
- 36: FloorDarkPlastic
- 108: FloorEighties
- 10: FloorFreezer
- 109: FloorGold
- 22: FloorGrassJungle
- 100: FloorGreenCircuit
- 21: FloorHullReinforced
- 69: FloorHydro
- 31: FloorJungleAstroGrass
- 43: FloorLino
- 59: FloorMetalDiamond
- 37: FloorMime
- 107: FloorMiningDark
- 56: FloorMowedAstroGrass
- 29: FloorRGlass
- 18: FloorReinforced
- 5: FloorSteel
- 49: FloorSteelCheckerDark
- 79: FloorSteelCheckerLight
- 96: FloorSteelDamaged
- 110: FloorSteelDirty
- 104: FloorSteelHerringbone
- 67: FloorSteelMini
- 17: FloorSteelMono
- 27: FloorSteelOffset
- 3: FloorTechMaint
- 91: FloorTechMaint2
- 101: FloorTechMaint3
- 66: FloorWhite
- 94: FloorWhiteMini
- 64: FloorWhiteMono
- 78: FloorWhitePlastic
- 11: FloorWood
- 48: FloorWoodLarge
- 0: Lattice
- 1: Plating
- 102: PlatingAsteroid
- 95: PlatingDamaged
- 113: PlatingSnow
+ 9: Space
+ 84: FloorArcadeBlue2
+ 75: FloorAsteroidSand
+ 90: FloorAsteroidSandUnvariantized
+ 76: FloorAsteroidTile
+ 92: FloorAstroSnow
+ 13: FloorBar
+ 71: FloorBlueCircuit
+ 34: FloorBoxing
+ 82: FloorBrokenWood
+ 44: FloorCarpetClown
+ 42: FloorClown
+ 53: FloorConcreteMono
+ 16: FloorDark
+ 85: FloorDarkMini
+ 23: FloorDarkMono
+ 57: FloorDarkOffset
+ 47: FloorDarkPavement
+ 39: FloorDarkPlastic
+ 87: FloorEighties
+ 19: FloorFreezer
+ 88: FloorGold
+ 28: FloorGrassJungle
+ 77: FloorGreenCircuit
+ 26: FloorHullReinforced
+ 63: FloorHydro
+ 33: FloorJungleAstroGrass
+ 45: FloorLino
+ 55: FloorMetalDiamond
+ 41: FloorMime
+ 86: FloorMiningDark
+ 54: FloorMowedAstroGrass
+ 32: FloorRGlass
+ 25: FloorReinforced
+ 15: FloorSteel
+ 52: FloorSteelCheckerDark
+ 68: FloorSteelCheckerLight
+ 74: FloorSteelDamaged
+ 89: FloorSteelDirty
+ 83: FloorSteelHerringbone
+ 62: FloorSteelMini
+ 24: FloorSteelMono
+ 30: FloorSteelOffset
+ 12: FloorTechMaint
+ 70: FloorTechMaint2
+ 80: FloorTechMaint3
+ 61: FloorWhite
+ 72: FloorWhiteMini
+ 58: FloorWhiteMono
+ 65: FloorWhitePlastic
+ 20: FloorWood
+ 50: FloorWoodLarge
+ 6: Lattice
+ 8: Plating
+ 81: PlatingAsteroid
+ 73: PlatingDamaged
+ 98: PlatingSnow
entities:
- proto: ""
entities:
@@ -73,283 +73,283 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: BAAAAAACBAAAAAACDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAACBAAAAAADDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAACDgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAABBAAAAAAADgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABwAAAAADBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABwAAAAABCwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABwAAAAACCwAAAAAACwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAABBQAAAAAABQAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAABBQAAAAAAAQAAAAAA
+ tiles: DQAAAAACDQAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADQAAAAACDQAAAAADFwAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAAADQAAAAACFwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAABDQAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAAEAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAEAAAAAAAFAAAAAAAFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAEAAAAAABFAAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAEAAAAAACFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAEwAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAAADwAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAAACAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AwAAAAAAAwAAAAAABQAAAAADAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABDgAAAAABDgAAAAAABQAAAAADBQAAAAAAEQAAAAAAAwAAAAAAAwAAAAAABQAAAAACEQAAAAAADgAAAAADDgAAAAABDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAABQAAAAAAEQAAAAAADgAAAAADDgAAAAACDgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAABQAAAAACAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAABBQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: DAAAAAAADAAAAAAADwAAAAADCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAABFwAAAAAADwAAAAADDwAAAAAAGAAAAAAADAAAAAAADAAAAAAADwAAAAACGAAAAAAAFwAAAAADFwAAAAABFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADwAAAAAAGAAAAAAAFwAAAAADFwAAAAACFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADwAAAAACCAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AQAAAAAAAQAAAAAABwAAAAABBwAAAAAABQAAAAABEQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAADBQAAAAABAQAAAAAABQAAAAACAwAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAABBQAAAAADAQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAAAEQAAAAADBQAAAAABAwAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAADBQAAAAABAQAAAAAADgAAAAABDgAAAAADDgAAAAAABQAAAAADDgAAAAACBQAAAAAABQAAAAACEQAAAAACBQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAADBwAAAAADAQAAAAAABQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFgAAAAAAFgAAAAAAAQAAAAAABQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAADCwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAABCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAACwAAAAACCwAAAAADCwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAACBAAAAAADDgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAAEAAAAAABEAAAAAAADwAAAAABGAAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAABCAAAAAAADwAAAAACDAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABDwAAAAADCAAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAAAGAAAAAADDwAAAAABDAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAABCAAAAAAAFwAAAAABFwAAAAADFwAAAAAADwAAAAADFwAAAAACDwAAAAAADwAAAAACGAAAAAACDwAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADEAAAAAADCAAAAAAADwAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHAAAAAAAHAAAAAAACAAAAAAADwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAFAAAAAABFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAAFAAAAAABFAAAAAABFAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAFAAAAAACFAAAAAADFAAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAADQAAAAACDQAAAAADFwAAAAACCAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: BQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAAABQAAAAABBQAAAAACEQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAACEQAAAAABEQAAAAACEQAAAAACEQAAAAADEQAAAAADEQAAAAADEQAAAAAAEQAAAAABEQAAAAAAEQAAAAACHQAAAAADHQAAAAABEQAAAAAAHQAAAAAAHQAAAAACEQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAADEQAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAADBQAAAAAABQAAAAABBwAAAAACAQAAAAAABwAAAAACAQAAAAAABQAAAAABAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAACAQAAAAAAAwAAAAAAAQAAAAAABQAAAAACAQAAAAAAEQAAAAACEQAAAAACBQAAAAABBQAAAAACAQAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAADEQAAAAADEQAAAAACBQAAAAACBQAAAAABAQAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAADBwAAAAADBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABAQAAAAAAEQAAAAAAEQAAAAADBQAAAAACDgAAAAAAAQAAAAAABwAAAAAABwAAAAACBwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADAQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAACBwAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAADBQAAAAACBQAAAAACBQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAADBwAAAAABBQAAAAAAHQAAAAABHQAAAAACHQAAAAACBQAAAAAABQAAAAACHQAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACDgAAAAABDgAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACDgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAADgAAAAADDgAAAAAADgAAAAAABQAAAAAADgAAAAADDgAAAAACDgAAAAABAQAAAAAADgAAAAAADgAAAAABAQAAAAAAAQAAAAAABQAAAAADBQAAAAAABQAAAAABAQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAAABQAAAAADBQAAAAADBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAAABQAAAAADAQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAAABQAAAAACBQAAAAADAQAAAAAABQAAAAAABQAAAAACAQAAAAAAAQAAAAAABwAAAAACBwAAAAABBQAAAAACEQAAAAADBQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABAQAAAAAABQAAAAABBQAAAAAC
+ tiles: DwAAAAABDwAAAAADDwAAAAACDwAAAAADDwAAAAAADwAAAAABDwAAAAACGAAAAAACDwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAACGAAAAAABGAAAAAACGAAAAAACGAAAAAADGAAAAAADGAAAAAADGAAAAAAAGAAAAAABGAAAAAAAGAAAAAACIAAAAAADIAAAAAABGAAAAAAAIAAAAAAAIAAAAAACGAAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAADGAAAAAADDwAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAABEAAAAAACCAAAAAAAEAAAAAACCAAAAAAADwAAAAABCAAAAAAADwAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACCAAAAAAADAAAAAAACAAAAAAADwAAAAACCAAAAAAAGAAAAAACGAAAAAACDwAAAAABDwAAAAACCAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADGAAAAAADGAAAAAACDwAAAAACDwAAAAABCAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAAGAAAAAAAGAAAAAADDwAAAAACFwAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAABHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAADDwAAAAACDwAAAAACDwAAAAADHgAAAAAAHgAAAAAAHgAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAABDwAAAAAAIAAAAAABIAAAAAACIAAAAAACDwAAAAAADwAAAAACIAAAAAADCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAABFwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAAAFwAAAAAADwAAAAAAFwAAAAADFwAAAAACFwAAAAABCAAAAAAAFwAAAAAAFwAAAAABCAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAABCAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAAADwAAAAADDwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAADwAAAAADCAAAAAAADwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAADCAAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAAEAAAAAACEAAAAAABDwAAAAACGAAAAAADDwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAABCAAAAAAADwAAAAABDwAAAAAC
version: 6
0,-2:
ind: 0,-2
- tiles: EQAAAAADEQAAAAACBQAAAAACBQAAAAACEQAAAAACBQAAAAAABQAAAAAABQAAAAABEQAAAAAABQAAAAAAEQAAAAABBQAAAAACBQAAAAADBQAAAAABBQAAAAABBQAAAAAAHQAAAAABHQAAAAACEQAAAAABEQAAAAAAEQAAAAACEQAAAAAAEQAAAAADEQAAAAACEQAAAAADBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAAAEQAAAAABBQAAAAACBQAAAAAABQAAAAABBQAAAAACBQAAAAACAQAAAAAABwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAAAAQAAAAAABwAAAAABDgAAAAACAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABAQAAAAAADgAAAAADCwAAAAABAQAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACDgAAAAAAAQAAAAAABwAAAAADDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAACCwAAAAACCwAAAAABAQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAADBwAAAAABAQAAAAAABwAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAACwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACDgAAAAABDgAAAAACDgAAAAADDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAACEQAAAAABBQAAAAAABwAAAAABAQAAAAAABwAAAAABDgAAAAABDgAAAAAADgAAAAADDgAAAAADBQAAAAADBQAAAAADDgAAAAADAQAAAAAADgAAAAABEQAAAAACEQAAAAABEQAAAAACBQAAAAADBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAAHQAAAAACHQAAAAABDgAAAAAAAQAAAAAAEQAAAAAAEQAAAAACEQAAAAADEQAAAAADBQAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAAABQAAAAACBQAAAAABBQAAAAABEQAAAAAAEQAAAAAAEQAAAAACEQAAAAAAEQAAAAADBQAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAABQAAAAABBQAAAAABEQAAAAABBQAAAAABBQAAAAACBQAAAAACAQAAAAAAEQAAAAABEQAAAAADEQAAAAADEQAAAAADBQAAAAACBwAAAAACBwAAAAADAQAAAAAABwAAAAACBQAAAAADBQAAAAADEQAAAAABBwAAAAACBwAAAAAABwAAAAADAQAAAAAAEQAAAAADEQAAAAAAEQAAAAABEQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABEQAAAAABEQAAAAADEQAAAAAABQAAAAADAQAAAAAADgAAAAACDgAAAAABDgAAAAABBQAAAAACBQAAAAADEQAAAAACBQAAAAAABQAAAAABBQAAAAADAQAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAABAQAAAAAADgAAAAACBwAAAAAABwAAAAADBQAAAAABBQAAAAABEQAAAAABBQAAAAACBQAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAADgAAAAAABwAAAAAABwAAAAACBQAAAAABBQAAAAADEQAAAAAC
+ tiles: GAAAAAADGAAAAAACDwAAAAACDwAAAAACGAAAAAACDwAAAAAADwAAAAAADwAAAAABGAAAAAAADwAAAAAAGAAAAAABDwAAAAACDwAAAAADDwAAAAABDwAAAAABDwAAAAAAIAAAAAABIAAAAAACGAAAAAABGAAAAAAAGAAAAAACGAAAAAAAGAAAAAADGAAAAAACGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAAAGAAAAAABDwAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAACCAAAAAAAEAAAAAABFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAAACAAAAAAAEAAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAAFwAAAAADFAAAAAABCAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACFwAAAAAACAAAAAAAEAAAAAADFwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACFAAAAAACFAAAAAABCAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAABCAAAAAAAEAAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAAFAAAAAABFAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACFwAAAAABFwAAAAACFwAAAAADFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACGAAAAAABDwAAAAAAEAAAAAABCAAAAAAAEAAAAAABFwAAAAABFwAAAAAAFwAAAAADFwAAAAADDwAAAAADDwAAAAADFwAAAAADCAAAAAAAFwAAAAABGAAAAAACGAAAAAABGAAAAAACDwAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAAIAAAAAACIAAAAAABFwAAAAAACAAAAAAAGAAAAAAAGAAAAAACGAAAAAADGAAAAAADDwAAAAABEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAAADwAAAAACDwAAAAABDwAAAAABGAAAAAAAGAAAAAAAGAAAAAACGAAAAAAAGAAAAAADDwAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAAADwAAAAABDwAAAAABGAAAAAABDwAAAAABDwAAAAACDwAAAAACCAAAAAAAGAAAAAABGAAAAAADGAAAAAADGAAAAAADDwAAAAACEAAAAAACEAAAAAADCAAAAAAAEAAAAAACDwAAAAADDwAAAAADGAAAAAABEAAAAAACEAAAAAAAEAAAAAADCAAAAAAAGAAAAAADGAAAAAAAGAAAAAABGAAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAADGAAAAAAADwAAAAADCAAAAAAAFwAAAAACFwAAAAABFwAAAAABDwAAAAACDwAAAAADGAAAAAACDwAAAAAADwAAAAABDwAAAAADCAAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAABCAAAAAAAFwAAAAACEAAAAAAAEAAAAAADDwAAAAABDwAAAAABGAAAAAABDwAAAAACDwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAFwAAAAAAEAAAAAAAEAAAAAACDwAAAAABDwAAAAADGAAAAAAC
version: 6
1,-2:
ind: 1,-2
- tiles: BQAAAAADBQAAAAACEQAAAAACBQAAAAADEQAAAAABBQAAAAACAQAAAAAABwAAAAABEQAAAAAAEQAAAAABEQAAAAABEQAAAAAAEQAAAAACBwAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAAABQAAAAACAQAAAAAABwAAAAADEQAAAAABEQAAAAACEQAAAAABEQAAAAABEQAAAAACBwAAAAABAQAAAAAABwAAAAABDgAAAAAABwAAAAAAAQAAAAAABQAAAAAAEQAAAAABBQAAAAACAQAAAAAABwAAAAAAEQAAAAABEQAAAAABEQAAAAABBQAAAAAAEQAAAAACBwAAAAABBwAAAAABBwAAAAAADgAAAAAABwAAAAACAQAAAAAABQAAAAABEQAAAAACBQAAAAACAQAAAAAABwAAAAACEQAAAAABEQAAAAAAEQAAAAADEQAAAAABEQAAAAACBwAAAAAAAQAAAAAABwAAAAADDgAAAAACBwAAAAADAQAAAAAAEQAAAAABEQAAAAACEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADDgAAAAACBwAAAAAAAQAAAAAABQAAAAACEQAAAAACBQAAAAAADgAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAADBQAAAAADAQAAAAAAAQAAAAAADgAAAAAABwAAAAABAQAAAAAABQAAAAAAEQAAAAACEQAAAAABEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAEQAAAAACEQAAAAABEQAAAAADBQAAAAADAQAAAAAABwAAAAADDgAAAAABBwAAAAADAQAAAAAABQAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAADBQAAAAABBQAAAAAABQAAAAADEQAAAAABBQAAAAACAQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAACBQAAAAABAQAAAAAABQAAAAABAQAAAAAAHwAAAAAAHwAAAAAABQAAAAABEQAAAAAABQAAAAADAQAAAAAABQAAAAAAAQAAAAAABwAAAAABBwAAAAABBQAAAAADBQAAAAACBQAAAAADAQAAAAAABQAAAAACAQAAAAAAHwAAAAAAHwAAAAAABQAAAAAAEQAAAAADBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAACAQAAAAAAHwAAAAAAHwAAAAAABQAAAAABEQAAAAAABQAAAAAAAQAAAAAABQAAAAABAQAAAAAABwAAAAABDgAAAAAABQAAAAABBQAAAAAABQAAAAAAAQAAAAAABwAAAAACAQAAAAAAHwAAAAAAHwAAAAAABQAAAAAAEQAAAAADBQAAAAAAEQAAAAACBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABAQAAAAAABQAAAAAABQAAAAADBQAAAAAAEQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ tiles: DwAAAAADDwAAAAACGAAAAAACDwAAAAADGAAAAAABDwAAAAACCAAAAAAAEAAAAAABGAAAAAAAGAAAAAABGAAAAAABGAAAAAAAGAAAAAACEAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAACCAAAAAAAEAAAAAADGAAAAAABGAAAAAACGAAAAAABGAAAAAABGAAAAAACEAAAAAABCAAAAAAAEAAAAAABFwAAAAAAEAAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAACCAAAAAAAEAAAAAAAGAAAAAABGAAAAAABGAAAAAABDwAAAAAAGAAAAAACEAAAAAABEAAAAAABEAAAAAAAFwAAAAAAEAAAAAACCAAAAAAADwAAAAABGAAAAAACDwAAAAACCAAAAAAAEAAAAAACGAAAAAABGAAAAAAAGAAAAAADGAAAAAABGAAAAAACEAAAAAAACAAAAAAAEAAAAAADFwAAAAACEAAAAAADCAAAAAAAGAAAAAABGAAAAAACGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADFwAAAAACEAAAAAAACAAAAAAADwAAAAACGAAAAAACDwAAAAAAFwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAADCAAAAAAACAAAAAAAFwAAAAAAEAAAAAABCAAAAAAADwAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAACGAAAAAAAGAAAAAAAGAAAAAACGAAAAAABGAAAAAADDwAAAAADCAAAAAAAEAAAAAADFwAAAAABEAAAAAADCAAAAAAADwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAACDwAAAAADDwAAAAABDwAAAAAADwAAAAADGAAAAAABDwAAAAACCAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAABCAAAAAAADwAAAAABCAAAAAAAIQAAAAAAIQAAAAAADwAAAAABGAAAAAAADwAAAAADCAAAAAAADwAAAAAACAAAAAAAEAAAAAABEAAAAAABDwAAAAADDwAAAAACDwAAAAADCAAAAAAADwAAAAACCAAAAAAAIQAAAAAAIQAAAAAADwAAAAAAGAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAACCAAAAAAAIQAAAAAAIQAAAAAADwAAAAABGAAAAAAADwAAAAAACAAAAAAADwAAAAABCAAAAAAAEAAAAAABFwAAAAAADwAAAAABDwAAAAAADwAAAAAACAAAAAAAEAAAAAACCAAAAAAAIQAAAAAAIQAAAAAADwAAAAAAGAAAAAADDwAAAAAAGAAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAABCAAAAAAADwAAAAAADwAAAAADDwAAAAAAGAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAAC
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAC
version: 6
-2,-2:
ind: -2,-2
- tiles: IwAAAAADBQAAAAABCwAAAAACCwAAAAAABQAAAAAAAQAAAAAADgAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAACEQAAAAAABQAAAAACBQAAAAABBQAAAAABIwAAAAACBQAAAAAACwAAAAAACwAAAAABBQAAAAAAAQAAAAAABQAAAAABHQAAAAACHQAAAAACEQAAAAADHQAAAAABEQAAAAADEQAAAAADEQAAAAACEQAAAAACEQAAAAADIwAAAAABBQAAAAACCwAAAAABCwAAAAAABQAAAAADAQAAAAAABQAAAAABHQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAADEQAAAAACBQAAAAAABQAAAAAABQAAAAACIwAAAAAABQAAAAABCwAAAAACCwAAAAAABQAAAAABEQAAAAACBQAAAAAAEQAAAAAABQAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAAAIwAAAAAABQAAAAADCwAAAAACCwAAAAADBQAAAAAAEQAAAAABBQAAAAAAHQAAAAABBQAAAAACBQAAAAADEQAAAAAABwAAAAABBwAAAAADLgAAAAACLgAAAAACLgAAAAACIwAAAAABBQAAAAABCwAAAAAACwAAAAADBQAAAAABAQAAAAAABQAAAAABHQAAAAAABQAAAAACBQAAAAACEQAAAAACBwAAAAABBwAAAAADHQAAAAADHQAAAAAAHQAAAAABBQAAAAAABQAAAAADJAAAAAADJAAAAAAABQAAAAACAQAAAAAABQAAAAAAEQAAAAADBQAAAAABBQAAAAACEQAAAAAABwAAAAACBwAAAAABLgAAAAAALgAAAAACLgAAAAADJAAAAAACJAAAAAAAJAAAAAADJAAAAAADBQAAAAACAQAAAAAABQAAAAACEQAAAAACBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABEQAAAAACBQAAAAABAQAAAAAAKwAAAAAAKwAAAAAAAQAAAAAAKwAAAAAAKwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAABBQAAAAABEQAAAAABBQAAAAAAAQAAAAAAKwAAAAAAKwAAAAAAAQAAAAAAKwAAAAAAKwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAEQAAAAADEQAAAAACEQAAAAABAQAAAAAAAQAAAAAACwAAAAADAQAAAAAACwAAAAABAQAAAAAAAQAAAAAAJQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAQAAAAAABQAAAAADEQAAAAAABQAAAAACAQAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAACCwAAAAADAQAAAAAAJQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAQAAAAAABQAAAAAAEQAAAAADBQAAAAAAAQAAAAAACwAAAAABCwAAAAABCwAAAAAACwAAAAACCwAAAAADAQAAAAAAJQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAQAAAAAABQAAAAABEQAAAAADBQAAAAACCwAAAAACCwAAAAADCwAAAAACCwAAAAACCwAAAAACCwAAAAAAAQAAAAAAJQAAAAAAAQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAAQAAAAAABQAAAAABEQAAAAABBQAAAAABCwAAAAADCwAAAAADCwAAAAAACwAAAAAACwAAAAAACwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAA
+ tiles: IgAAAAADDwAAAAABFAAAAAACFAAAAAAADwAAAAAACAAAAAAAFwAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAACGAAAAAAADwAAAAACDwAAAAABDwAAAAABIgAAAAACDwAAAAAAFAAAAAAAFAAAAAABDwAAAAAACAAAAAAADwAAAAABIAAAAAACIAAAAAACGAAAAAADIAAAAAABGAAAAAADGAAAAAADGAAAAAACGAAAAAACGAAAAAADIgAAAAABDwAAAAACFAAAAAABFAAAAAAADwAAAAADCAAAAAAADwAAAAABIAAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAADGAAAAAACDwAAAAAADwAAAAAADwAAAAACIgAAAAAADwAAAAABFAAAAAACFAAAAAAADwAAAAABGAAAAAACDwAAAAAAGAAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAIgAAAAAADwAAAAADFAAAAAACFAAAAAADDwAAAAAAGAAAAAABDwAAAAAAIAAAAAABDwAAAAACDwAAAAADGAAAAAAAEAAAAAABEAAAAAADLwAAAAACLwAAAAACLwAAAAACIgAAAAABDwAAAAABFAAAAAAAFAAAAAADDwAAAAABCAAAAAAADwAAAAABIAAAAAAADwAAAAACDwAAAAACGAAAAAACEAAAAAABEAAAAAADIAAAAAADIAAAAAAAIAAAAAABDwAAAAAADwAAAAADJwAAAAADJwAAAAAADwAAAAACCAAAAAAADwAAAAAAGAAAAAADDwAAAAABDwAAAAACGAAAAAAAEAAAAAACEAAAAAABLwAAAAAALwAAAAACLwAAAAADJwAAAAACJwAAAAAAJwAAAAADJwAAAAADDwAAAAACCAAAAAAADwAAAAACGAAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAABCAAAAAAALQAAAAAALQAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAABGAAAAAABDwAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAALQAAAAAALQAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAACGAAAAAABCAAAAAAACAAAAAAAFAAAAAADCAAAAAAAFAAAAAABCAAAAAAACAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAACCAAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAADCAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAAAGAAAAAADDwAAAAAACAAAAAAAFAAAAAABFAAAAAABFAAAAAAAFAAAAAACFAAAAAADCAAAAAAAKQAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAACFAAAAAAACAAAAAAAKQAAAAAACAAAAAAALAAAAAAALAAAAAAALAAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAABFAAAAAADFAAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAAACAAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: CwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAAAEQAAAAAABQAAAAABEQAAAAAABQAAAAAAAQAAAAAACwAAAAABCwAAAAABCwAAAAACMAAAAAADMAAAAAAAAQAAAAAAHQAAAAACHQAAAAAAJAAAAAAAHQAAAAAAHQAAAAADEQAAAAABBQAAAAACEQAAAAADBQAAAAADAQAAAAAACwAAAAADCwAAAAADCwAAAAADMAAAAAACMAAAAAAAAwAAAAAAHQAAAAABHQAAAAADJAAAAAAAHQAAAAABHQAAAAABEQAAAAADBQAAAAAAEQAAAAADBQAAAAACAQAAAAAACwAAAAABCwAAAAADCwAAAAAAMAAAAAABMAAAAAABAQAAAAAACwAAAAACCwAAAAACCwAAAAADCwAAAAAACwAAAAADEQAAAAAABQAAAAACEQAAAAACBQAAAAABAQAAAAAACwAAAAAACwAAAAACCwAAAAABMAAAAAADMAAAAAABAQAAAAAAJAAAAAAAAQAAAAAAAQAAAAAAJAAAAAABAQAAAAAAAQAAAAAAEQAAAAABEQAAAAABEQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAAEQAAAAACAQAAAAAAMAAAAAACMAAAAAABMAAAAAABAQAAAAAABQAAAAAAEQAAAAAABQAAAAAABQAAAAACAQAAAAAABwAAAAABBwAAAAABBwAAAAACKwAAAAAAAQAAAAAAEQAAAAAAAQAAAAAAJAAAAAADJAAAAAADJAAAAAACAQAAAAAABQAAAAADEQAAAAAAEQAAAAAABQAAAAAAAQAAAAAABwAAAAACBwAAAAABBwAAAAAAKwAAAAAAKwAAAAAABQAAAAABAQAAAAAAJAAAAAABJAAAAAABJAAAAAABAQAAAAAABQAAAAAABQAAAAAAEQAAAAACBQAAAAACAQAAAAAABwAAAAACBwAAAAAABwAAAAAAKwAAAAAAKwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEQAAAAABEQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAEQAAAAADEQAAAAAAEQAAAAABEQAAAAABEQAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAADEQAAAAACEQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAABAQAAAAAABwAAAAAAMQAAAAAAMQAAAAABMQAAAAADBQAAAAADBQAAAAACBQAAAAADEQAAAAACCwAAAAACCwAAAAABCwAAAAABCwAAAAABCwAAAAAABQAAAAABBQAAAAABAQAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAADBQAAAAACBQAAAAAABQAAAAAAEQAAAAADCwAAAAACCwAAAAADCwAAAAAACwAAAAABCwAAAAAABQAAAAADBQAAAAACAQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABQAAAAAABQAAAAAABQAAAAABEQAAAAACCwAAAAACCwAAAAABCwAAAAADCwAAAAABCwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBQAAAAAABQAAAAABBQAAAAAAEQAAAAAACwAAAAACCwAAAAADCwAAAAACCwAAAAABAQAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAADEQAAAAACCwAAAAACCwAAAAADCwAAAAACCwAAAAACCwAAAAAA
+ tiles: FAAAAAACFAAAAAABFAAAAAACFAAAAAAAFAAAAAAAGAAAAAAADwAAAAABGAAAAAAADwAAAAAACAAAAAAAFAAAAAABFAAAAAABFAAAAAACMgAAAAADMgAAAAAACAAAAAAAIAAAAAACIAAAAAAAJwAAAAAAIAAAAAAAIAAAAAADGAAAAAABDwAAAAACGAAAAAADDwAAAAADCAAAAAAAFAAAAAADFAAAAAADFAAAAAADMgAAAAACMgAAAAAADAAAAAAAIAAAAAABIAAAAAADJwAAAAAAIAAAAAABIAAAAAABGAAAAAADDwAAAAAAGAAAAAADDwAAAAACCAAAAAAAFAAAAAABFAAAAAADFAAAAAAAMgAAAAABMgAAAAABCAAAAAAAFAAAAAACFAAAAAACFAAAAAADFAAAAAAAFAAAAAADGAAAAAAADwAAAAACGAAAAAACDwAAAAABCAAAAAAAFAAAAAAAFAAAAAACFAAAAAABMgAAAAADMgAAAAABCAAAAAAAJwAAAAAACAAAAAAACAAAAAAAJwAAAAABCAAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAAGAAAAAACCAAAAAAAMgAAAAACMgAAAAABMgAAAAABCAAAAAAADwAAAAAAGAAAAAAADwAAAAAADwAAAAACCAAAAAAAEAAAAAABEAAAAAABEAAAAAACLQAAAAAACAAAAAAAGAAAAAAACAAAAAAAJwAAAAADJwAAAAADJwAAAAACCAAAAAAADwAAAAADGAAAAAAAGAAAAAAADwAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAAALQAAAAAALQAAAAAADwAAAAABCAAAAAAAJwAAAAABJwAAAAABJwAAAAABCAAAAAAADwAAAAAADwAAAAAAGAAAAAACDwAAAAACCAAAAAAAEAAAAAACEAAAAAAAEAAAAAAALQAAAAAALQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAABGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAGAAAAAADGAAAAAAAGAAAAAABGAAAAAABGAAAAAADDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAACGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABCAAAAAAAEAAAAAAANAAAAAAANAAAAAABNAAAAAADDwAAAAADDwAAAAACDwAAAAADGAAAAAACFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAADwAAAAABDwAAAAABCAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAADDwAAAAACDwAAAAAADwAAAAAAGAAAAAADFAAAAAACFAAAAAADFAAAAAAAFAAAAAABFAAAAAAADwAAAAADDwAAAAACCAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAAADwAAAAAADwAAAAAADwAAAAABGAAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAADDwAAAAAADwAAAAABDwAAAAAAGAAAAAAAFAAAAAACFAAAAAADFAAAAAACFAAAAAABCAAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAACDwAAAAABDwAAAAAADwAAAAADGAAAAAACFAAAAAACFAAAAAADFAAAAAACFAAAAAACFAAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABEQAAAAACEQAAAAACEQAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAABBQAAAAACEQAAAAABBQAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABHQAAAAABHQAAAAACEQAAAAAAEQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAABEQAAAAABEQAAAAAAEQAAAAACEQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABHQAAAAADBQAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADEQAAAAADBQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAAABQAAAAADAQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABEQAAAAADEQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAABBQAAAAACAQAAAAAABQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAACBQAAAAABAQAAAAAABQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAACBQAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAACAQAAAAAABQAAAAABBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABEQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADEQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAACBQAAAAABBQAAAAADBQAAAAADBQAAAAAAAQAAAAAABQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABEQAAAAACBQAAAAACEQAAAAADEQAAAAACAQAAAAAAEQAAAAAAEQAAAAACBQAAAAAABQAAAAAAAQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAAABQAAAAAAEQAAAAAAEQAAAAADMwAAAAADEQAAAAABEQAAAAAABQAAAAADBQAAAAABAQAAAAAABQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAAABQAAAAADEQAAAAABEQAAAAAABQAAAAABEQAAAAAAEQAAAAAABQAAAAACBQAAAAADAQAAAAAABQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABEQAAAAACBQAAAAACEQAAAAAAEQAAAAABBQAAAAACEQAAAAAAEQAAAAAABQAAAAACBQAAAAACAQAAAAAABQAAAAADBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADEQAAAAACBQAAAAAAEQAAAAACEQAAAAABAQAAAAAAEQAAAAACEQAAAAABBQAAAAAABQAAAAABAQAAAAAABQAAAAAABQAAAAAD
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAACGAAAAAACGAAAAAAAGAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAAADwAAAAABDwAAAAACGAAAAAABDwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABIAAAAAABIAAAAAACGAAAAAAAGAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAABGAAAAAABGAAAAAAAGAAAAAACGAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAABIAAAAAADDwAAAAADDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAADGAAAAAADDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAADCAAAAAAADwAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAADGAAAAAACCAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAACCAAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAABCAAAAAAADwAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAACDwAAAAABCAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAACCAAAAAAADwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAABDwAAAAADDwAAAAACDwAAAAACDwAAAAABDwAAAAADDwAAAAADDwAAAAAACAAAAAAADwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAACGAAAAAADGAAAAAACCAAAAAAAGAAAAAAAGAAAAAACDwAAAAAADwAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAAAGAAAAAAAGAAAAAADNQAAAAADGAAAAAABGAAAAAAADwAAAAADDwAAAAABCAAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAAADwAAAAADGAAAAAABGAAAAAAADwAAAAABGAAAAAAAGAAAAAAADwAAAAACDwAAAAADCAAAAAAADwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAACGAAAAAAAGAAAAAABDwAAAAACGAAAAAAAGAAAAAAADwAAAAACDwAAAAACCAAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAAAGAAAAAACGAAAAAABCAAAAAAAGAAAAAACGAAAAAABDwAAAAAADwAAAAABCAAAAAAADwAAAAAADwAAAAAD
version: 6
2,-2:
ind: 2,-2
- tiles: BwAAAAACBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAABBwAAAAABAQAAAAAABwAAAAABDgAAAAACDgAAAAAAOAAAAAAABwAAAAACCwAAAAABCwAAAAADCwAAAAADBwAAAAABAQAAAAAACgAAAAAAAQAAAAAABwAAAAAABwAAAAACBwAAAAAADgAAAAACBwAAAAADBwAAAAADBwAAAAABDgAAAAACBwAAAAACCwAAAAAACwAAAAABCwAAAAAABwAAAAABDgAAAAAACgAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAADAQAAAAAADgAAAAADDgAAAAADDgAAAAABOAAAAAAABwAAAAABCwAAAAABCwAAAAACCwAAAAADBwAAAAABAQAAAAAACgAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAACwAAAAACCwAAAAADCwAAAAAABwAAAAADAQAAAAAACgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAACBwAAAAABBQAAAAADCwAAAAABCwAAAAADCwAAAAADAQAAAAAABwAAAAADBwAAAAADBwAAAAAABQAAAAABBQAAAAACCwAAAAAADgAAAAAAAQAAAAAABwAAAAACBQAAAAACBQAAAAACBQAAAAADCwAAAAADCwAAAAACCwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBQAAAAAABQAAAAACBQAAAAADBQAAAAABAQAAAAAABQAAAAACBQAAAAABBQAAAAADBQAAAAACAQAAAAAADgAAAAABAQAAAAAAAQAAAAAABwAAAAAABwAAAAADBwAAAAADBQAAAAADBQAAAAACBQAAAAACBQAAAAADAQAAAAAABQAAAAADBQAAAAAABQAAAAADAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABBQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAABBQAAAAACBQAAAAACAQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAAABQAAAAABEQAAAAADBQAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAADBQAAAAACBQAAAAAAEQAAAAADBQAAAAACHQAAAAADHQAAAAADEQAAAAACHQAAAAABHQAAAAADEQAAAAACEQAAAAACHQAAAAAAEQAAAAAAHQAAAAACHQAAAAADHQAAAAAAEQAAAAACHQAAAAAAEQAAAAAAEQAAAAACBQAAAAABBQAAAAABBQAAAAABBQAAAAACBQAAAAAABQAAAAACEQAAAAAABQAAAAACBQAAAAADBQAAAAADEQAAAAABBQAAAAABBQAAAAADBQAAAAAAEQAAAAADBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADEQAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAABBQAAAAAABQAAAAABAQAAAAAABQAAAAADEQAAAAACBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: EAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAABCAAAAAAAEAAAAAABFwAAAAACFwAAAAAANgAAAAAAEAAAAAACFAAAAAABFAAAAAADFAAAAAADEAAAAAABCAAAAAAAEwAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAFwAAAAACEAAAAAADEAAAAAADEAAAAAABFwAAAAACEAAAAAACFAAAAAAAFAAAAAABFAAAAAAAEAAAAAABFwAAAAAAEwAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAADCAAAAAAAFwAAAAADFwAAAAADFwAAAAABNgAAAAAAEAAAAAABFAAAAAABFAAAAAACFAAAAAADEAAAAAABCAAAAAAAEwAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAFAAAAAACFAAAAAADFAAAAAAAEAAAAAADCAAAAAAAEwAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAABDwAAAAADFAAAAAABFAAAAAADFAAAAAADCAAAAAAAEAAAAAADEAAAAAADEAAAAAAADwAAAAABDwAAAAACFAAAAAAAFwAAAAAACAAAAAAAEAAAAAACDwAAAAACDwAAAAACDwAAAAADFAAAAAADFAAAAAACFAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAABCAAAAAAADwAAAAACDwAAAAABDwAAAAADDwAAAAACCAAAAAAAFwAAAAABCAAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAADDwAAAAADDwAAAAACDwAAAAACDwAAAAADCAAAAAAADwAAAAADDwAAAAAADwAAAAADCAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAACCAAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAAADwAAAAABGAAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAADDwAAAAACDwAAAAAAGAAAAAADDwAAAAACIAAAAAADIAAAAAADGAAAAAACIAAAAAABIAAAAAADGAAAAAACGAAAAAACIAAAAAAAGAAAAAAAIAAAAAACIAAAAAADIAAAAAAAGAAAAAACIAAAAAAAGAAAAAAAGAAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAAADwAAAAACGAAAAAAADwAAAAACDwAAAAADDwAAAAADGAAAAAABDwAAAAABDwAAAAADDwAAAAAAGAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAAADwAAAAABCAAAAAAADwAAAAADGAAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAABBQAAAAACEQAAAAABBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAQAAAAAABQAAAAAABQAAAAACBQAAAAAAAQAAAAAABQAAAAADEQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEQAAAAAAEQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAACEQAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAADBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADEQAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAAEQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADEQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAADBQAAAAAAAQAAAAAAQAAAAAACQAAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADEQAAAAACBQAAAAACAQAAAAAAQAAAAAACQAAAAAACQgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAABAQAAAAAABQAAAAABEQAAAAACBQAAAAADAQAAAAAAQAAAAAABQAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAACBQAAAAAAEQAAAAACBQAAAAAAAQAAAAAAQAAAAAAAQAAAAAACQgAAAAACDgAAAAADDgAAAAABDgAAAAADAQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAQAAAAAABQAAAAAAHQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABDgAAAAAADgAAAAAAAQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAAQAAAAAABQAAAAABHQAAAAAABQAAAAADAQAAAAAAQAAAAAABQAAAAAADAQAAAAAABwAAAAACBwAAAAAABwAAAAAAAQAAAAAAEQAAAAABEQAAAAADEQAAAAAAEQAAAAACAQAAAAAABQAAAAABEQAAAAADBQAAAAAAAQAAAAAAQAAAAAAAQAAAAAACQgAAAAAB
+ tiles: BgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAABDwAAAAACGAAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAANwAAAAAANwAAAAAANwAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAABGAAAAAABGAAAAAACGAAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAGAAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAAACAAAAAAAOgAAAAACOgAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAACDwAAAAACCAAAAAAAOgAAAAACOgAAAAACPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAABCAAAAAAADwAAAAABGAAAAAACDwAAAAADCAAAAAAAOgAAAAABOgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAACDwAAAAAAGAAAAAACDwAAAAAACAAAAAAAOgAAAAAAOgAAAAACPQAAAAACFwAAAAADFwAAAAABFwAAAAADCAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAACAAAAAAADwAAAAAAIAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAAAFwAAAAAACAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAACAAAAAAADwAAAAABIAAAAAAADwAAAAADCAAAAAAAOgAAAAABOgAAAAADCAAAAAAAEAAAAAACEAAAAAAAEAAAAAAACAAAAAAAGAAAAAABGAAAAAADGAAAAAAAGAAAAAACCAAAAAAADwAAAAABGAAAAAADDwAAAAAACAAAAAAAOgAAAAAAOgAAAAACPQAAAAAB
version: 6
-2,0:
ind: -2,0
- tiles: EQAAAAACEQAAAAADEQAAAAADBQAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAAABQAAAAABBQAAAAACEQAAAAACCwAAAAACCwAAAAAACwAAAAACCwAAAAAACwAAAAABEQAAAAACEQAAAAACMQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAAABQAAAAABBQAAAAABBQAAAAACEQAAAAACCwAAAAACCwAAAAAACwAAAAAACwAAAAABCwAAAAABEQAAAAADEQAAAAADMQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAABEQAAAAABCwAAAAAACwAAAAABCwAAAAABCwAAAAACCwAAAAAAEQAAAAADEQAAAAACEQAAAAACBQAAAAABBQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAACEQAAAAADCwAAAAACCwAAAAABCwAAAAABCwAAAAAACwAAAAAAMAAAAAAAMAAAAAACBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAABBQAAAAADHwAAAAAACwAAAAADCwAAAAADCwAAAAAACwAAAAAABQAAAAADBQAAAAAABQAAAAABBwAAAAABMAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABQAAAAACBQAAAAAABQAAAAADHwAAAAAACwAAAAABBwAAAAACBwAAAAADBwAAAAADAQAAAAAADgAAAAABBwAAAAABBwAAAAABMAAAAAADHwAAAAAAHwAAAAAAHwAAAAAABQAAAAADBQAAAAACBQAAAAAAHwAAAAAACwAAAAAADgAAAAAADgAAAAACDgAAAAADAQAAAAAADgAAAAAABwAAAAAABwAAAAACMAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABQAAAAADBQAAAAADBQAAAAABHwAAAAAACwAAAAACDgAAAAACDgAAAAADDgAAAAAAAQAAAAAADgAAAAADBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABEQAAAAAAEQAAAAABEQAAAAAAEQAAAAABEQAAAAADEQAAAAACEQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAACBQAAAAAAEQAAAAACEQAAAAABEQAAAAABEQAAAAACEQAAAAAAEQAAAAABEQAAAAABEQAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEQAAAAADEQAAAAACAQAAAAAAAQAAAAAATgAAAAADTgAAAAABDgAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAADEQAAAAAABQAAAAADBQAAAAABBQAAAAACEQAAAAACBQAAAAACTgAAAAABTgAAAAABTgAAAAAATgAAAAACTgAAAAACTgAAAAADCgAAAAAACgAAAAAAQwAAAAAAEQAAAAABEQAAAAABQwAAAAABAQAAAAAABQAAAAABEQAAAAABBQAAAAAAAQAAAAAADgAAAAADTgAAAAACTgAAAAABTgAAAAADTgAAAAABAQAAAAAACgAAAAAARQAAAAAARQAAAAAARQAAAAAAQwAAAAADBQAAAAADBQAAAAAAEQAAAAAABQAAAAABBQAAAAACTwAAAAACTwAAAAAATwAAAAADTwAAAAADTwAAAAADAQAAAAAACgAAAAAABQAAAAABBQAAAAACRQAAAAAAQwAAAAACBQAAAAACBQAAAAABEQAAAAACBQAAAAACBQAAAAABTwAAAAACTwAAAAACTwAAAAACTwAAAAACTwAAAAACAQAAAAAACgAAAAAARQAAAAAARQAAAAAARQAAAAAADgAAAAABAQAAAAAABQAAAAADEQAAAAACBQAAAAABAQAAAAAATwAAAAACTwAAAAADTwAAAAADTwAAAAADTwAAAAADAQAAAAAAAQAAAAAA
+ tiles: GAAAAAACGAAAAAADGAAAAAADDwAAAAADDwAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAABDwAAAAACGAAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAAAFAAAAAABGAAAAAACGAAAAAACNAAAAAADDwAAAAACDwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAABDwAAAAACGAAAAAACFAAAAAACFAAAAAAAFAAAAAAAFAAAAAABFAAAAAABGAAAAAADGAAAAAADNAAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAABGAAAAAABFAAAAAAAFAAAAAABFAAAAAABFAAAAAACFAAAAAAAGAAAAAADGAAAAAACGAAAAAACDwAAAAABDwAAAAACDwAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAACGAAAAAADFAAAAAACFAAAAAABFAAAAAABFAAAAAAAFAAAAAAAMgAAAAAAMgAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAABDwAAAAADIQAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAAADwAAAAADDwAAAAAADwAAAAABEAAAAAABMgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAACDwAAAAAADwAAAAADIQAAAAAAFAAAAAABEAAAAAACEAAAAAADEAAAAAADCAAAAAAAFwAAAAABEAAAAAABEAAAAAABMgAAAAADIQAAAAAAIQAAAAAAIQAAAAAADwAAAAADDwAAAAACDwAAAAAAIQAAAAAAFAAAAAAAFwAAAAAAFwAAAAACFwAAAAADCAAAAAAAFwAAAAAAEAAAAAAAEAAAAAACMgAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAADDwAAAAADDwAAAAABIQAAAAAAFAAAAAACFwAAAAACFwAAAAADFwAAAAAACAAAAAAAFwAAAAADEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAAAGAAAAAABGAAAAAAAGAAAAAABGAAAAAADGAAAAAACGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAACDwAAAAAAGAAAAAACGAAAAAABGAAAAAABGAAAAAACGAAAAAAAGAAAAAABGAAAAAABGAAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAACCAAAAAAACAAAAAAAQQAAAAADQQAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAADGAAAAAAADwAAAAADDwAAAAABDwAAAAACGAAAAAACDwAAAAACQQAAAAABQQAAAAABQQAAAAAAQQAAAAACQQAAAAACQQAAAAADEwAAAAAAEwAAAAAAPgAAAAAAGAAAAAABGAAAAAABPgAAAAABCAAAAAAADwAAAAABGAAAAAABDwAAAAAACAAAAAAAFwAAAAADQQAAAAACQQAAAAABQQAAAAADQQAAAAABCAAAAAAAEwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPgAAAAADDwAAAAADDwAAAAAAGAAAAAAADwAAAAABDwAAAAACRAAAAAACRAAAAAAARAAAAAADRAAAAAADRAAAAAADCAAAAAAAEwAAAAAADwAAAAABDwAAAAACPwAAAAAAPgAAAAACDwAAAAACDwAAAAABGAAAAAACDwAAAAACDwAAAAABRAAAAAACRAAAAAACRAAAAAACRAAAAAACRAAAAAACCAAAAAAAEwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAFwAAAAABCAAAAAAADwAAAAADGAAAAAACDwAAAAABCAAAAAAARAAAAAACRAAAAAADRAAAAAADRAAAAAADRAAAAAADCAAAAAAACAAAAAAA
version: 6
1,-3:
ind: 1,-3
- tiles: WwAAAAAAAQAAAAAADgAAAAADDgAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAADgAAAAACDgAAAAABDgAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAABwAAAAACBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABDgAAAAADWwAAAAAAWwAAAAAADgAAAAACDgAAAAADAQAAAAAAAQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAADgAAAAABDgAAAAADAQAAAAAAAQAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAADgAAAAADDgAAAAABAQAAAAAAAQAAAAAABwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAADgAAAAADDgAAAAACWwAAAAAAWwAAAAAADgAAAAAADgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAABwAAAAABBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABDgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAADDgAAAAADDgAAAAADDgAAAAADDgAAAAABAQAAAAAABwAAAAADBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAAABQAAAAADBQAAAAADBwAAAAACBwAAAAABBwAAAAABBwAAAAACAQAAAAAABwAAAAABBwAAAAABAQAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAABBQAAAAABBQAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAABDgAAAAADAQAAAAAAAwAAAAAAAQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAABDgAAAAACDgAAAAAADgAAAAADDgAAAAAAAQAAAAAABwAAAAADBwAAAAAAAQAAAAAADgAAAAACAQAAAAAABQAAAAACAQAAAAAAAQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAABQAAAAACBQAAAAAAEQAAAAADBQAAAAAABQAAAAADBQAAAAACAQAAAAAABwAAAAACEQAAAAACEQAAAAABEQAAAAAAEQAAAAACEQAAAAABBwAAAAACAQAAAAAABwAAAAAAHQAAAAABEQAAAAADEQAAAAACEQAAAAABEQAAAAABBQAAAAAAAQAAAAAABwAAAAABEQAAAAACEQAAAAADEQAAAAAAEQAAAAABEQAAAAADBwAAAAAAAQAAAAAABwAAAAAA
+ tiles: RgAAAAAACAAAAAAAFwAAAAADFwAAAAABCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAAFwAAAAACFwAAAAABFwAAAAABCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAARgAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAADRgAAAAAARgAAAAAAFwAAAAACFwAAAAADCAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAARgAAAAAAFwAAAAABFwAAAAADCAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAARgAAAAAAFwAAAAADFwAAAAABCAAAAAAACAAAAAAAEAAAAAADCAAAAAAADAAAAAAADAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAAFwAAAAADFwAAAAACRgAAAAAARgAAAAAAFwAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAARgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAARgAAAAAAEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAADFwAAAAADFwAAAAADFwAAAAADFwAAAAABCAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACCAAAAAAAEAAAAAABEAAAAAABCAAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACFwAAAAABFwAAAAAAFwAAAAACFwAAAAABFwAAAAADCAAAAAAADAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAABFwAAAAACFwAAAAAAFwAAAAADFwAAAAAACAAAAAAAEAAAAAADEAAAAAAACAAAAAAAFwAAAAACCAAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAADwAAAAACDwAAAAAAGAAAAAADDwAAAAAADwAAAAADDwAAAAACCAAAAAAAEAAAAAACGAAAAAACGAAAAAABGAAAAAAAGAAAAAACGAAAAAABEAAAAAACCAAAAAAAEAAAAAAAIAAAAAABGAAAAAADGAAAAAACGAAAAAABGAAAAAABDwAAAAAACAAAAAAAEAAAAAABGAAAAAACGAAAAAADGAAAAAAAGAAAAAABGAAAAAADEAAAAAAACAAAAAAAEAAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAACBwAAAAACAQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACDgAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAACDgAAAAADDgAAAAADDgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABBQAAAAAAEQAAAAABEQAAAAADDgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAABEQAAAAADEQAAAAAADgAAAAACAQAAAAAABQAAAAACBQAAAAAABwAAAAACBwAAAAABBwAAAAABDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAABDgAAAAABAQAAAAAAAQAAAAAAAwAAAAAABwAAAAABBwAAAAAABwAAAAACDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAABQAAAAACBQAAAAACBQAAAAABEQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAACAQAAAAAAAQAAAAAABQAAAAADAQAAAAAABQAAAAABEQAAAAACEQAAAAADEQAAAAABEQAAAAABHQAAAAABEQAAAAADHQAAAAADEQAAAAAA
+ tiles: BgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAABCAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACFwAAAAADFwAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAAGAAAAAABGAAAAAADFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABGAAAAAADGAAAAAAAFwAAAAACCAAAAAAADwAAAAACDwAAAAAAEAAAAAACEAAAAAABEAAAAAABFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAABFwAAAAAAFwAAAAABFwAAAAABCAAAAAAACAAAAAAADAAAAAAAEAAAAAABEAAAAAAAEAAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAABGAAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAADDwAAAAACDwAAAAADDwAAAAACDwAAAAACCAAAAAAACAAAAAAADwAAAAADCAAAAAAADwAAAAABGAAAAAACGAAAAAADGAAAAAABGAAAAAABIAAAAAABGAAAAAADIAAAAAADGAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEQAAAAADEQAAAAACAQAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAABDgAAAAAABQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAADBQAAAAACAQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAADEQAAAAADBQAAAAACBQAAAAAAEQAAAAAABQAAAAACAQAAAAAABQAAAAAAEQAAAAAAEQAAAAACEQAAAAACBQAAAAAAEQAAAAACEQAAAAADEQAAAAADBQAAAAACEQAAAAACEQAAAAABEQAAAAADEQAAAAAAEQAAAAADBQAAAAABAQAAAAAABQAAAAADEQAAAAACEQAAAAAAEQAAAAAABQAAAAADEQAAAAAAEQAAAAACEQAAAAADBQAAAAABBQAAAAACEQAAAAADBQAAAAACBQAAAAABBQAAAAABDgAAAAABAQAAAAAABQAAAAABEQAAAAABEQAAAAADEQAAAAAABQAAAAADEQAAAAADEQAAAAACEQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAAAQAAAAAADXgAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAACBQAAAAAABQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAABXgAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAACCAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAADDwAAAAACDwAAAAABFwAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADDwAAAAACCAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAADGAAAAAADDwAAAAACDwAAAAAAGAAAAAAADwAAAAACCAAAAAAADwAAAAAAGAAAAAAAGAAAAAACGAAAAAACDwAAAAAAGAAAAAACGAAAAAADGAAAAAADDwAAAAACGAAAAAACGAAAAAABGAAAAAADGAAAAAAAGAAAAAADDwAAAAABCAAAAAAADwAAAAADGAAAAAACGAAAAAAAGAAAAAAADwAAAAADGAAAAAAAGAAAAAACGAAAAAADDwAAAAABDwAAAAACGAAAAAADDwAAAAACDwAAAAABDwAAAAABFwAAAAABCAAAAAAADwAAAAABGAAAAAABGAAAAAADGAAAAAAADwAAAAADGAAAAAADGAAAAAACGAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAAAOgAAAAADSAAAAAABCAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOgAAAAABSAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAACEQAAAAABBQAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAACBQAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAABEQAAAAADEQAAAAAAEQAAAAABEQAAAAAAEQAAAAACEQAAAAADEQAAAAABEQAAAAACEQAAAAADEQAAAAABEQAAAAAAEQAAAAABEQAAAAADEQAAAAABEQAAAAADEQAAAAACBQAAAAABBQAAAAAABQAAAAACEQAAAAABBQAAAAABBQAAAAADBQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAACBQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABQAAAAADBQAAAAAABQAAAAABBwAAAAACBwAAAAACBwAAAAACAQAAAAAAAwAAAAAAAQAAAAAAQAAAAAACQgAAAAADQgAAAAAAQAAAAAAAXgAAAAACXgAAAAADXgAAAAABBQAAAAABBQAAAAAABQAAAAADBwAAAAACBwAAAAABBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAACQgAAAAABQgAAAAAAQAAAAAADXgAAAAAAXgAAAAACXgAAAAAAAQAAAAAABQAAAAAABQAAAAADBwAAAAADBwAAAAADBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXgAAAAACXgAAAAABXgAAAAADAQAAAAAAAQAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAACQAAAAAACQAAAAAACAQAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAAEQAAAAABAQAAAAAADgAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAACEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAXwAAAAAAQgAAAAAAQgAAAAADEQAAAAAAAQAAAAAADgAAAAABBwAAAAABEgAAAAAAEgAAAAAABwAAAAACEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAAAQAAAAAACgAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAACGAAAAAABDwAAAAADDwAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAACDwAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAABGAAAAAADGAAAAAAAGAAAAAABGAAAAAAAGAAAAAACGAAAAAADGAAAAAABGAAAAAACGAAAAAADGAAAAAABGAAAAAAAGAAAAAABGAAAAAADGAAAAAABGAAAAAADGAAAAAACDwAAAAABDwAAAAAADwAAAAACGAAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAABEAAAAAACEAAAAAACEAAAAAACCAAAAAAADAAAAAAACAAAAAAAOgAAAAACPQAAAAADPQAAAAAAOgAAAAAASAAAAAACSAAAAAADSAAAAAABDwAAAAABDwAAAAAADwAAAAADEAAAAAACEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAAOgAAAAACPQAAAAABPQAAAAAAOgAAAAADSAAAAAAASAAAAAACSAAAAAAACAAAAAAADwAAAAAADwAAAAADEAAAAAADEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASAAAAAACSAAAAAABSAAAAAADCAAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOgAAAAACOgAAAAACOgAAAAACCAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAGAAAAAABCAAAAAAAFwAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAACGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAASQAAAAAAPQAAAAAAPQAAAAADGAAAAAAACAAAAAAAFwAAAAABEAAAAAABGQAAAAAAGQAAAAAAEAAAAAACGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAACAAAAAAAEwAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAABBQAAAAABBQAAAAABBQAAAAADEQAAAAABBQAAAAADBQAAAAABBQAAAAABBQAAAAADBQAAAAADBQAAAAADBQAAAAACBQAAAAAAEQAAAAACEQAAAAAAEQAAAAABEQAAAAACEQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAACHQAAAAAAHQAAAAAAEQAAAAACHQAAAAACHQAAAAADEQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAAABQAAAAADBQAAAAADBQAAAAABEQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAACAQAAAAAABQAAAAABBQAAAAADBQAAAAADAQAAAAAABQAAAAADBQAAAAACBQAAAAACAQAAAAAABQAAAAABBQAAAAABBQAAAAACAQAAAAAABQAAAAADBwAAAAADBwAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAACAQAAAAAABQAAAAACBQAAAAACBQAAAAACAQAAAAAABQAAAAABBQAAAAABBQAAAAABAQAAAAAABQAAAAAABwAAAAACBwAAAAAABQAAAAADAQAAAAAAAQAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADAQAAAAAABQAAAAAADgAAAAACDgAAAAABBQAAAAADBwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAADAQAAAAAAAQAAAAAABwAAAAADBwAAAAAAAQAAAAAABwAAAAAAHQAAAAACHQAAAAACBwAAAAACHQAAAAAAHQAAAAABHQAAAAAABwAAAAACHQAAAAABHQAAAAABBwAAAAABBQAAAAABBQAAAAADBQAAAAACBQAAAAACDgAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAACBwAAAAAABQAAAAADBQAAAAADBQAAAAABBQAAAAADBQAAAAABBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAACBQAAAAABBQAAAAABBQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAABBQAAAAAAAQAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAABBQAAAAADDgAAAAABDgAAAAAAAQAAAAAABQAAAAABBQAAAAABBQAAAAAB
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAABDwAAAAABDwAAAAABDwAAAAADGAAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAADDwAAAAADDwAAAAADDwAAAAACDwAAAAAAGAAAAAACGAAAAAAAGAAAAAABGAAAAAACGAAAAAADGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAACIAAAAAAAIAAAAAAAGAAAAAACIAAAAAACIAAAAAADGAAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAADDwAAAAABGAAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACCAAAAAAADwAAAAABDwAAAAADDwAAAAADCAAAAAAADwAAAAADDwAAAAACDwAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAACCAAAAAAADwAAAAADEAAAAAADEAAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAACCAAAAAAADwAAAAACDwAAAAACDwAAAAACCAAAAAAADwAAAAABDwAAAAABDwAAAAABCAAAAAAADwAAAAAAEAAAAAACEAAAAAAADwAAAAADCAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAADwAAAAAAFwAAAAACFwAAAAABDwAAAAADEAAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAADCAAAAAAACAAAAAAAEAAAAAADEAAAAAAACAAAAAAAEAAAAAAAIAAAAAACIAAAAAACEAAAAAACIAAAAAAAIAAAAAABIAAAAAAAEAAAAAACIAAAAAABIAAAAAABEAAAAAABDwAAAAABDwAAAAADDwAAAAACDwAAAAACFwAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAADDwAAAAABEAAAAAADEAAAAAACEAAAAAACEAAAAAADEAAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAABDwAAAAADFwAAAAABFwAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAAB
version: 6
-2,1:
ind: -2,1
- tiles: QwAAAAADQwAAAAADQwAAAAAADgAAAAABAQAAAAAABQAAAAACEQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAARQAAAAAARQAAAAAARQAAAAAAEQAAAAABAQAAAAAABQAAAAABEQAAAAABBQAAAAABJAAAAAADJAAAAAACJAAAAAACJAAAAAACJAAAAAABJAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABEQAAAAABBQAAAAACMQAAAAABMQAAAAABMQAAAAAAMQAAAAACMQAAAAABMQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAADBQAAAAADEQAAAAADEQAAAAADEQAAAAADEQAAAAADEQAAAAABEQAAAAABEQAAAAAAEQAAAAADEQAAAAADEQAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAABEQAAAAACMQAAAAADMQAAAAABMQAAAAACMQAAAAADMQAAAAACMQAAAAABEQAAAAAAEQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAADDgAAAAADJAAAAAAAJAAAAAABJAAAAAAAJAAAAAACJAAAAAAAJAAAAAABBQAAAAABEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADCwAAAAABAQAAAAAACwAAAAADCwAAAAAACwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACCwAAAAAACwAAAAACCwAAAAACCwAAAAACCwAAAAACAwAAAAAAAQAAAAAAAQAAAAAADgAAAAADDgAAAAAADgAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADCwAAAAABAQAAAAAACwAAAAACCwAAAAAACwAAAAADAQAAAAAAAQAAAAAAAQAAAAAADgAAAAADDgAAAAABDgAAAAADBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABBQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABDgAAAAACDgAAAAADBwAAAAABBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAABQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAA
+ tiles: PgAAAAADPgAAAAADPgAAAAAAFwAAAAABCAAAAAAADwAAAAACGAAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAGAAAAAABCAAAAAAADwAAAAABGAAAAAABDwAAAAABJwAAAAADJwAAAAACJwAAAAACJwAAAAACJwAAAAABJwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAABDwAAAAACNAAAAAABNAAAAAABNAAAAAAANAAAAAACNAAAAAABNAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADDwAAAAADGAAAAAADGAAAAAADGAAAAAADGAAAAAADGAAAAAABGAAAAAABGAAAAAAAGAAAAAADGAAAAAADGAAAAAADCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAABGAAAAAACNAAAAAADNAAAAAABNAAAAAACNAAAAAADNAAAAAACNAAAAAABGAAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADFwAAAAADJwAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAAAJwAAAAABDwAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAABCAAAAAAAFAAAAAADFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAACFAAAAAACFAAAAAACDAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAAAFwAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAABCAAAAAAAFAAAAAACFAAAAAAAFAAAAAADCAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABFwAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAACFwAAAAADEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAYAAAAAAAAQAAAAAAYAAAAAAEBQAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYAAAAAADAQAAAAAAAQAAAAAAYAAAAAACYAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXwAAAAABAQAAAAAAAQAAAAAAXwAAAAABAQAAAAAAAQAAAAAAXwAAAAACAQAAAAAAAQAAAAAAYAAAAAABBQAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAXwAAAAAAXwAAAAACAQAAAAAAXwAAAAABXwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAXwAAAAABYAAAAAAEYAAAAAADYAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAXwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEQAAAAAAEQAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAABBQAAAAADBQAAAAADBQAAAAACBQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAADBQAAAAABAQAAAAAAEQAAAAACEQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAB
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAASgAAAAAACAAAAAAASgAAAAAEDwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASgAAAAADCAAAAAAACAAAAAAASgAAAAACSgAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAASQAAAAABCAAAAAAACAAAAAAASQAAAAABCAAAAAAACAAAAAAASQAAAAACCAAAAAAACAAAAAAASgAAAAABDwAAAAABCAAAAAAABgAAAAAACAAAAAAACAAAAAAASQAAAAAASQAAAAACCAAAAAAASQAAAAABSQAAAAACCAAAAAAACAAAAAAACAAAAAAASQAAAAABSgAAAAAESgAAAAADSgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAASQAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAAAGAAAAAACCAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAABCAAAAAAAGAAAAAACGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAB
version: 6
2,-3:
ind: 2,-3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAACDgAAAAABDgAAAAAADgAAAAADDgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAABDgAAAAAADgAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAADDgAAAAABDgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAACLgAAAAABLgAAAAADLgAAAAAALgAAAAAALgAAAAADLgAAAAADLgAAAAAALgAAAAAALgAAAAACLgAAAAABLgAAAAABLgAAAAADDgAAAAADDgAAAAAADgAAAAACLgAAAAACLgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACLgAAAAACLgAAAAADDgAAAAABDgAAAAADDgAAAAADLgAAAAACLgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAALgAAAAABLgAAAAACDgAAAAABBwAAAAACBwAAAAAADgAAAAACDgAAAAACBwAAAAAABwAAAAABDgAAAAABDgAAAAABDgAAAAABDgAAAAACDgAAAAABBwAAAAABBwAAAAABDgAAAAABDgAAAAACBwAAAAAABwAAAAABBwAAAAADLgAAAAABDgAAAAABDgAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAADDgAAAAADLgAAAAADBwAAAAAD
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAACFwAAAAABFwAAAAAAFwAAAAADFwAAAAABFwAAAAADFwAAAAACFwAAAAABFwAAAAAAFwAAAAACFwAAAAAAFwAAAAACFwAAAAABFwAAAAAAFwAAAAACFwAAAAABFwAAAAACFwAAAAACFwAAAAACFwAAAAABFwAAAAADFwAAAAADFwAAAAABFwAAAAAAFwAAAAACFwAAAAAAFwAAAAAAFwAAAAABFwAAAAABFwAAAAACFwAAAAACFwAAAAABFwAAAAADFwAAAAACLwAAAAABLwAAAAADLwAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAADFwAAAAADFwAAAAAAFwAAAAACLwAAAAACLwAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAACLwAAAAACLwAAAAADFwAAAAABFwAAAAADFwAAAAADLwAAAAACLwAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAALwAAAAABLwAAAAACFwAAAAABEAAAAAACEAAAAAAAFwAAAAACFwAAAAACEAAAAAAAEAAAAAABFwAAAAABFwAAAAABFwAAAAABFwAAAAACFwAAAAABEAAAAAABEAAAAAABFwAAAAABFwAAAAACEAAAAAAAEAAAAAABEAAAAAADLwAAAAABFwAAAAABFwAAAAADFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAADFwAAAAADLwAAAAADEAAAAAAD
version: 6
3,-2:
ind: 3,-2
- tiles: BwAAAAABBwAAAAADAQAAAAAABwAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAABBQAAAAAABwAAAAABBwAAAAABAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAAABQAAAAABBwAAAAADBwAAAAADAQAAAAAABQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAABwAAAAAABwAAAAABAQAAAAAABQAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAABwAAAAADAQAAAAAAAQAAAAAABQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAADBQAAAAACBwAAAAADBwAAAAADAQAAAAAABQAAAAACBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACBQAAAAACBQAAAAACBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEQAAAAABBQAAAAACBQAAAAADBQAAAAABAQAAAAAAAQAAAAAAEQAAAAACEQAAAAADEQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAACBQAAAAADEQAAAAADBQAAAAABBQAAAAADBQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAADBQAAAAAABQAAAAAABQAAAAACBQAAAAACEQAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAABDgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAAQAAAAAABQAAAAADBQAAAAAABQAAAAADBQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAACBQAAAAABBQAAAAAADgAAAAAAAQAAAAAABQAAAAAAHQAAAAABHQAAAAACEQAAAAACHQAAAAAAHQAAAAABEQAAAAAAEQAAAAACEQAAAAABEQAAAAADEQAAAAAAEQAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAACBQAAAAACBQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAABAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAADBQAAAAABBQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABBQAAAAADAQAAAAAABQAAAAAD
+ tiles: EAAAAAABEAAAAAADCAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAAAEAAAAAABEAAAAAABCAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAABEAAAAAADEAAAAAADCAAAAAAADwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAEAAAAAAAEAAAAAABCAAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADDwAAAAACEAAAAAADEAAAAAADCAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACDwAAAAACDwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAABDwAAAAACDwAAAAADDwAAAAABCAAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAADGAAAAAADDwAAAAABDwAAAAADDwAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAADDwAAAAAADwAAAAAADwAAAAACDwAAAAACGAAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAAGAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAAAFwAAAAAACAAAAAAADwAAAAAAIAAAAAABIAAAAAACGAAAAAACIAAAAAAAIAAAAAABGAAAAAAAGAAAAAACGAAAAAABGAAAAAADGAAAAAAAGAAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAACDwAAAAACDwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAACDwAAAAAADwAAAAABCAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAADDwAAAAABDwAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAABDwAAAAADCAAAAAAADwAAAAAD
version: 6
3,-3:
ind: 3,-3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYwAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAACYQAAAAACYQAAAAAAYQAAAAAADgAAAAACAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZgAAAAAADgAAAAABDgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAABwAAAAACBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAZQAAAAADAwAAAAAADgAAAAACDgAAAAAABwAAAAACBwAAAAAABwAAAAAAAQAAAAAABwAAAAAABwAAAAACZAAAAAAAZAAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAZQAAAAAAAQAAAAAAZQAAAAADDgAAAAADDgAAAAADAQAAAAAABwAAAAAABwAAAAADAQAAAAAABwAAAAAABwAAAAACZAAAAAAABwAAAAABZAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAZQAAAAAAAwAAAAAABwAAAAAABwAAAAADAQAAAAAABwAAAAADBwAAAAADAQAAAAAABwAAAAABBwAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAACAQAAAAAABwAAAAAABwAAAAADAQAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAADAQAAAAAAAQAAAAAABQAAAAACBQAAAAAABQAAAAAC
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAATAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAACSwAAAAAASwAAAAAAFwAAAAACCAAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAAFwAAAAABFwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAAACAAAAAAAEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAUAAAAAADDAAAAAAAFwAAAAACFwAAAAAAEAAAAAACEAAAAAAAEAAAAAAACAAAAAAAEAAAAAAAEAAAAAACTQAAAAAATQAAAAAATQAAAAAACAAAAAAACAAAAAAAUAAAAAAACAAAAAAAUAAAAAADFwAAAAADFwAAAAADCAAAAAAAEAAAAAAAEAAAAAADCAAAAAAAEAAAAAAAEAAAAAACTQAAAAAAEAAAAAABTQAAAAAACAAAAAAACAAAAAAADAAAAAAAUAAAAAAADAAAAAAAEAAAAAAAEAAAAAADCAAAAAAAEAAAAAADEAAAAAADCAAAAAAAEAAAAAABEAAAAAAATQAAAAAATQAAAAAATQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACCAAAAAAAEAAAAAAAEAAAAAADCAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAADCAAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAAC
version: 6
-2,-3:
ind: -2,-3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAACwAAAAAACwAAAAADCwAAAAAACwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAAAAAAAACwAAAAADZwAAAAAFCwAAAAAACwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAZwAAAAADXwAAAAABZwAAAAAFCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABDgAAAAADAQAAAAAACwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAABQAAAAABAQAAAAAAAQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADJAAAAAAAJAAAAAACBQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAABBQAAAAADAQAAAAAAAQAAAAAABQAAAAABJAAAAAAAAQAAAAAACwAAAAADCwAAAAAACwAAAAACCwAAAAAACwAAAAACCwAAAAABCwAAAAAACwAAAAABCwAAAAACCwAAAAAACwAAAAADAQAAAAAAAQAAAAAAMAAAAAABMAAAAAABAQAAAAAACwAAAAADCwAAAAADCwAAAAAAJAAAAAADJAAAAAADJAAAAAABJAAAAAABJAAAAAABJAAAAAADJAAAAAACJAAAAAACAQAAAAAAAQAAAAAAMAAAAAADMAAAAAACAQAAAAAACwAAAAACCwAAAAABCwAAAAABJAAAAAAAJAAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAABJAAAAAACJAAAAAACAQAAAAAAAQAAAAAAMAAAAAABMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAABJAAAAAAAJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAACJAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACCwAAAAADCwAAAAABCwAAAAADCwAAAAAACwAAAAABCwAAAAACDgAAAAAAAQAAAAAAAQAAAAAAJAAAAAABJAAAAAACJAAAAAABJAAAAAADBQAAAAABAQAAAAAABQAAAAABBQAAAAABBQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAAABQAAAAACAQAAAAAAAwAAAAAABQAAAAAABQAAAAACJAAAAAADJAAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAD
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAFAAAAAAAFAAAAAADFAAAAAAAFAAAAAABCAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAABgAAAAAAFAAAAAADUgAAAAAFFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAUgAAAAADSQAAAAABUgAAAAAFFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABFwAAAAADCAAAAAAAFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADJwAAAAAAJwAAAAACDwAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAADDwAAAAABDwAAAAADCAAAAAAACAAAAAAADwAAAAABJwAAAAAACAAAAAAAFAAAAAADFAAAAAAAFAAAAAACFAAAAAAAFAAAAAACFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAADCAAAAAAACAAAAAAAMgAAAAABMgAAAAABCAAAAAAAFAAAAAADFAAAAAADFAAAAAAAJwAAAAADJwAAAAADJwAAAAABJwAAAAABJwAAAAABJwAAAAADJwAAAAACJwAAAAACCAAAAAAACAAAAAAAMgAAAAADMgAAAAACCAAAAAAAFAAAAAACFAAAAAABFAAAAAABJwAAAAAAJwAAAAAAJwAAAAABJwAAAAACJwAAAAADJwAAAAABJwAAAAACJwAAAAACCAAAAAAACAAAAAAAMgAAAAABMgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAADFAAAAAAAFAAAAAABFAAAAAACFwAAAAAACAAAAAAACAAAAAAAJwAAAAABJwAAAAACJwAAAAABJwAAAAADDwAAAAABCAAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAAADwAAAAACCAAAAAAADAAAAAAADwAAAAAADwAAAAACJwAAAAADJwAAAAAADwAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAD
version: 6
-3,-1:
ind: -3,-1
- tiles: BwAAAAADAQAAAAAAMAAAAAACMAAAAAACMAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAACwAAAAABCwAAAAADCwAAAAABCwAAAAACCwAAAAADCwAAAAADCwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAHQAAAAAAHQAAAAAAJAAAAAABHQAAAAABHQAAAAACJAAAAAADBwAAAAACAQAAAAAABwAAAAADBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABHQAAAAAAHQAAAAAAJAAAAAACHQAAAAADHQAAAAAAJAAAAAABBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAADCwAAAAADCwAAAAABCwAAAAABCwAAAAACCwAAAAACCwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAACAQAAAAAAAQAAAAAAJAAAAAADJAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAaAAAAAABaAAAAAABAQAAAAAAMAAAAAADMAAAAAADMAAAAAADAQAAAAAAEQAAAAACJAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAaAAAAAABaAAAAAADAQAAAAAAJAAAAAADJAAAAAACJAAAAAACAQAAAAAAEQAAAAAAJAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAaAAAAAABaAAAAAAAAQAAAAAAJAAAAAABJAAAAAACJAAAAAAAAQAAAAAABQAAAAADBQAAAAABOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAABAQAAAAAABQAAAAADBQAAAAABAQAAAAAAMQAAAAABMQAAAAACMQAAAAAAMQAAAAADBwAAAAAAAQAAAAAABQAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAAAAQAAAAAAMQAAAAABBwAAAAABBwAAAAADBwAAAAABBwAAAAACAQAAAAAABQAAAAABBQAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAACDgAAAAABBQAAAAACBQAAAAADAQAAAAAAMQAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABAQAAAAAABQAAAAADBQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABQAAAAACBQAAAAADAQAAAAAAMQAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAADAQAAAAAABQAAAAAAAQAAAAAADgAAAAABDgAAAAADDgAAAAACDgAAAAABDgAAAAABBQAAAAADBQAAAAABAQAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAACBQAAAAAA
+ tiles: EAAAAAADCAAAAAAAMgAAAAACMgAAAAACMgAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAFAAAAAABFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAADFAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAAIAAAAAAAIAAAAAAAJwAAAAABIAAAAAABIAAAAAACJwAAAAADEAAAAAACCAAAAAAAEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABIAAAAAAAIAAAAAAAJwAAAAACIAAAAAADIAAAAAAAJwAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAACFAAAAAACFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAACCAAAAAAACAAAAAAAJwAAAAADJwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAABUwAAAAABCAAAAAAAMgAAAAADMgAAAAADMgAAAAADCAAAAAAAGAAAAAACJwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAUwAAAAABUwAAAAADCAAAAAAAJwAAAAADJwAAAAACJwAAAAACCAAAAAAAGAAAAAAAJwAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAACAAAAAAACAAAAAAACAAAAAAAUwAAAAABUwAAAAAACAAAAAAAJwAAAAABJwAAAAACJwAAAAAACAAAAAAADwAAAAADDwAAAAABNgAAAAAANgAAAAAANgAAAAAANgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAABCAAAAAAADwAAAAADDwAAAAABCAAAAAAANAAAAAABNAAAAAACNAAAAAAANAAAAAADEAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAACDwAAAAAACAAAAAAANAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAACCAAAAAAADwAAAAABDwAAAAAAFwAAAAABFwAAAAADFwAAAAADFwAAAAACFwAAAAABDwAAAAACDwAAAAADCAAAAAAANAAAAAACEAAAAAACEAAAAAABEAAAAAADEAAAAAABCAAAAAAADwAAAAADDwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAACDwAAAAADCAAAAAAANAAAAAACEAAAAAAAEAAAAAABEAAAAAAAEAAAAAADCAAAAAAADwAAAAAACAAAAAAAFwAAAAABFwAAAAADFwAAAAACFwAAAAABFwAAAAABDwAAAAADDwAAAAABCAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: aAAAAAAAaAAAAAACaAAAAAADaAAAAAADaAAAAAABBQAAAAADEQAAAAABEQAAAAADBQAAAAABBQAAAAABEQAAAAABEQAAAAAAEQAAAAACEQAAAAABEQAAAAADBQAAAAABHQAAAAADHQAAAAACEQAAAAABHQAAAAABHQAAAAABEQAAAAADEQAAAAAAEQAAAAAABQAAAAACBQAAAAACMQAAAAABEQAAAAACEQAAAAACEQAAAAACMQAAAAACEQAAAAAAaAAAAAAAaAAAAAABaAAAAAABaAAAAAABaAAAAAADBQAAAAAAEQAAAAAAEQAAAAAABQAAAAACBQAAAAADMQAAAAABEQAAAAABEQAAAAADEQAAAAAAMQAAAAACEQAAAAACDgAAAAACDgAAAAABDgAAAAACDgAAAAAADgAAAAABBQAAAAACBQAAAAACAQAAAAAABQAAAAACBQAAAAABEQAAAAAAEQAAAAACEQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAABQAAAAAABQAAAAACAQAAAAAABQAAAAABBQAAAAACBQAAAAABMAAAAAABMAAAAAACMAAAAAACMAAAAAACMAAAAAABDgAAAAACDgAAAAACDgAAAAACDgAAAAABDgAAAAACBQAAAAABBQAAAAACAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAMAAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAADBQAAAAADBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAABAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAMAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAADBQAAAAABBQAAAAAABQAAAAAABQAAAAACAQAAAAAABQAAAAACBQAAAAACAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAMAAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAaQAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAaQAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAABwAAAAABBwAAAAADBwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAMAAAAAABMAAAAAAAMAAAAAAAAQAAAAAAEQAAAAABEQAAAAABEQAAAAACaQAAAAAADgAAAAAADgAAAAABBwAAAAABBwAAAAADBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAADMAAAAAAAMAAAAAAAAQAAAAAAEQAAAAAAEQAAAAAAEQAAAAADaQAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAABBQAAAAADAQAAAAAAQwAAAAADRQAAAAAARQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABBQAAAAAABQAAAAAABQAAAAAAQwAAAAACRQAAAAAABQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAXwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQwAAAAADRQAAAAAARQAAAAAA
+ tiles: UwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABDwAAAAADGAAAAAABGAAAAAADDwAAAAABDwAAAAABGAAAAAABGAAAAAAAGAAAAAACGAAAAAABGAAAAAADDwAAAAABIAAAAAADIAAAAAACGAAAAAABIAAAAAABIAAAAAABGAAAAAADGAAAAAAAGAAAAAAADwAAAAACDwAAAAACNAAAAAABGAAAAAACGAAAAAACGAAAAAACNAAAAAACGAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADDwAAAAAAGAAAAAAAGAAAAAAADwAAAAACDwAAAAADNAAAAAABGAAAAAABGAAAAAADGAAAAAAANAAAAAACGAAAAAACFwAAAAACFwAAAAABFwAAAAACFwAAAAAAFwAAAAABDwAAAAACDwAAAAACCAAAAAAADwAAAAACDwAAAAABGAAAAAAAGAAAAAACGAAAAAABGAAAAAAAGAAAAAAAGAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAADwAAAAAADwAAAAACCAAAAAAADwAAAAABDwAAAAACDwAAAAABMgAAAAABMgAAAAACMgAAAAACMgAAAAACMgAAAAABFwAAAAACFwAAAAACFwAAAAACFwAAAAABFwAAAAACDwAAAAABDwAAAAACCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMgAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAADDwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAABCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMgAAAAABEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADDwAAAAABDwAAAAAADwAAAAAADwAAAAACCAAAAAAADwAAAAACDwAAAAACCAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAMgAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAFwAAAAAAFwAAAAAAFwAAAAABFwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAEAAAAAABEAAAAAADEAAAAAAADAAAAAAACAAAAAAACAAAAAAAMgAAAAABMgAAAAAAMgAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAACVAAAAAAAFwAAAAAAFwAAAAABEAAAAAABEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAAMgAAAAADMgAAAAAAMgAAAAAACAAAAAAAGAAAAAAAGAAAAAAAGAAAAAADVAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAABDwAAAAADCAAAAAAAPgAAAAADPwAAAAAAPwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABDwAAAAAADwAAAAAADwAAAAAAPgAAAAACPwAAAAAADwAAAAABBgAAAAAABgAAAAAABgAAAAAACAAAAAAASQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPgAAAAADPwAAAAAAPwAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAXwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEQAAAAABEQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAADEQAAAAADEQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAACCwAAAAABCwAAAAADCwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAagAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAACCwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAagAAAAAAawAAAAAAagAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACwAAAAACAQAAAAAACwAAAAABCwAAAAAACwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAagAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAXwAAAAACZwAAAAABXwAAAAABCwAAAAADCwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAXwAAAAAAXwAAAAACZwAAAAADCwAAAAACAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAXwAAAAACXwAAAAAAXwAAAAABXwAAAAABXwAAAAAACwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAXwAAAAABXwAAAAABXwAAAAAAXwAAAAABZwAAAAABAQAAAAAACwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAZwAAAAAEAQAAAAAAXwAAAAACCwAAAAACCwAAAAABCwAAAAADCwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAXwAAAAABZwAAAAAFCwAAAAAACwAAAAABAQAAAAAACwAAAAAACwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAABGAAAAAABCQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAADCQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACAAAAAAAFAAAAAAAFAAAAAACFAAAAAABFAAAAAADFAAAAAABCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAVQAAAAACCAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAAFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAAVQAAAAAAVgAAAAAAVQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAAFAAAAAACCAAAAAAAFAAAAAABFAAAAAAAFAAAAAADCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAVQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAASQAAAAACUgAAAAABSQAAAAABFAAAAAADFAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAAASQAAAAACUgAAAAADFAAAAAACCAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAABgAAAAAASQAAAAACSQAAAAAASQAAAAABSQAAAAABSQAAAAAAFAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAABSQAAAAABSQAAAAAASQAAAAABUgAAAAABCAAAAAAAFAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAUgAAAAAECAAAAAAASQAAAAACFAAAAAACFAAAAAABFAAAAAADFAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAASQAAAAABUgAAAAAFFAAAAAAAFAAAAAABCAAAAAAAFAAAAAAAFAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: EQAAAAABEQAAAAADEQAAAAADEQAAAAAABQAAAAAABQAAAAADAQAAAAAABQAAAAADCwAAAAABCwAAAAAABQAAAAACIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADAQAAAAAAAQAAAAAADgAAAAACEQAAAAACBQAAAAABBQAAAAABAQAAAAAABQAAAAAACwAAAAAACwAAAAABBQAAAAADIwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAADHwAAAAAAHwAAAAAADgAAAAABEQAAAAAABQAAAAABBQAAAAACAQAAAAAABQAAAAACCwAAAAABCwAAAAABBQAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAAIwAAAAAAHwAAAAAAHwAAAAAADgAAAAACEQAAAAABEQAAAAADBQAAAAAAEQAAAAADBQAAAAAACwAAAAAACwAAAAACBQAAAAACIwAAAAADIwAAAAADIwAAAAADIwAAAAAAIwAAAAACHwAAAAAAHwAAAAAADgAAAAADEQAAAAADEQAAAAADBQAAAAABEQAAAAABBQAAAAABCwAAAAAACwAAAAACBQAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAADIwAAAAABHwAAAAAAHwAAAAAADgAAAAADEQAAAAADBQAAAAACBQAAAAACAQAAAAAABQAAAAABCwAAAAACCwAAAAACBQAAAAAAIwAAAAACIwAAAAACIwAAAAAAIwAAAAABIwAAAAABAQAAAAAAAQAAAAAADgAAAAAAEQAAAAACBQAAAAAABQAAAAABAQAAAAAABQAAAAABJAAAAAABJAAAAAABBQAAAAADBQAAAAAABQAAAAABBQAAAAABBQAAAAADBQAAAAAAEQAAAAACEQAAAAABEQAAAAACEQAAAAAABQAAAAABBQAAAAADAQAAAAAABQAAAAACJAAAAAABJAAAAAADJAAAAAABJAAAAAADJAAAAAADJAAAAAABJAAAAAABJAAAAAADEQAAAAACEQAAAAACBQAAAAAABQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEQAAAAABBQAAAAADBQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAADEQAAAAACBQAAAAADBQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAAAEQAAAAAABQAAAAABBQAAAAADBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAADbAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAJQAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAABCwAAAAADbAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAJQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAAACwAAAAADbAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAJQAAAAAABQAAAAADAQAAAAAAMAAAAAADMAAAAAAAMAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAAJQAAAAAABQAAAAADAQAAAAAAMAAAAAABMAAAAAAAMAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAABJAAAAAAB
+ tiles: GAAAAAABGAAAAAADGAAAAAADGAAAAAAADwAAAAAADwAAAAADCAAAAAAADwAAAAADFAAAAAABFAAAAAAADwAAAAACIgAAAAACIgAAAAAAIgAAAAAAIgAAAAADIgAAAAADCAAAAAAACAAAAAAAFwAAAAACGAAAAAACDwAAAAABDwAAAAABCAAAAAAADwAAAAAAFAAAAAAAFAAAAAABDwAAAAADIgAAAAAAIgAAAAABIgAAAAADIgAAAAACIgAAAAADIQAAAAAAIQAAAAAAFwAAAAABGAAAAAAADwAAAAABDwAAAAACCAAAAAAADwAAAAACFAAAAAABFAAAAAABDwAAAAADIgAAAAACIgAAAAABIgAAAAAAIgAAAAAAIgAAAAAAIQAAAAAAIQAAAAAAFwAAAAACGAAAAAABGAAAAAADDwAAAAAAGAAAAAADDwAAAAAAFAAAAAAAFAAAAAACDwAAAAACIgAAAAADIgAAAAADIgAAAAADIgAAAAAAIgAAAAACIQAAAAAAIQAAAAAAFwAAAAADGAAAAAADGAAAAAADDwAAAAABGAAAAAABDwAAAAABFAAAAAAAFAAAAAACDwAAAAAAIgAAAAACIgAAAAAAIgAAAAAAIgAAAAADIgAAAAABIQAAAAAAIQAAAAAAFwAAAAADGAAAAAADDwAAAAACDwAAAAACCAAAAAAADwAAAAABFAAAAAACFAAAAAACDwAAAAAAIgAAAAACIgAAAAACIgAAAAAAIgAAAAABIgAAAAABCAAAAAAACAAAAAAAFwAAAAAAGAAAAAACDwAAAAAADwAAAAABCAAAAAAADwAAAAABJwAAAAABJwAAAAABDwAAAAADDwAAAAAADwAAAAABDwAAAAABDwAAAAADDwAAAAAAGAAAAAACGAAAAAABGAAAAAACGAAAAAAADwAAAAABDwAAAAADCAAAAAAADwAAAAACJwAAAAABJwAAAAADJwAAAAABJwAAAAADJwAAAAADJwAAAAABJwAAAAABJwAAAAADGAAAAAACGAAAAAACDwAAAAAADwAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAABDwAAAAADDwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAACDwAAAAADDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAAAGAAAAAAADwAAAAABDwAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAAFAAAAAAAFAAAAAAAFAAAAAADVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAABFAAAAAADVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAAAFAAAAAADVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAADCAAAAAAAMgAAAAADMgAAAAAAMgAAAAABCAAAAAAACAAAAAAACAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAACAAAAAAAHgAAAAAAHgAAAAAAKQAAAAAADwAAAAADCAAAAAAAMgAAAAABMgAAAAAAMgAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABJwAAAAAB
version: 6
-3,-3:
ind: -3,-3
- tiles: BQAAAAADBQAAAAABBQAAAAADBQAAAAADBQAAAAADBQAAAAACBQAAAAAAEQAAAAADBQAAAAACAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAHQAAAAABHQAAAAAAEQAAAAACHQAAAAACHQAAAAAAEQAAAAABEQAAAAACEQAAAAAABQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABBQAAAAABBQAAAAACBQAAAAADBQAAAAAABQAAAAABBQAAAAADBQAAAAACBQAAAAACAQAAAAAADgAAAAABDgAAAAACBwAAAAADBwAAAAADAQAAAAAACwAAAAADEQAAAAABEQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAADDgAAAAABBwAAAAADBwAAAAADAQAAAAAACwAAAAACEQAAAAAABQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAADgAAAAADDgAAAAACBwAAAAABBwAAAAADAQAAAAAACwAAAAABHQAAAAABBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAABQAAAAACAQAAAAAAYQAAAAAKYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAEYQAAAAAAYQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAEQAAAAADBQAAAAAAAQAAAAAAYQAAAAAEYQAAAAAAYQAAAAAKYQAAAAAAYQAAAAAAYQAAAAAJYQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAADBQAAAAACAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAKYQAAAAAAYQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAABBQAAAAAAHQAAAAAABQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJAAAAAADBQAAAAADEQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAAAHQAAAAAABQAAAAAABQAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAMAAAAAACHQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAMAAAAAACEQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAEQAAAAABEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACJAAAAAAAJAAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAADJAAAAAACJAAAAAADEQAAAAADBQAAAAACBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACJAAAAAABJAAAAAADBQAAAAACBQAAAAABBQAAAAAABQAAAAABBQAAAAAABQAAAAAD
+ tiles: DwAAAAADDwAAAAABDwAAAAADDwAAAAADDwAAAAADDwAAAAACDwAAAAAAGAAAAAADDwAAAAACCAAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAABgAAAAAACQAAAAAAIAAAAAABIAAAAAAAGAAAAAACIAAAAAACIAAAAAAAGAAAAAABGAAAAAACGAAAAAAADwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAACCAAAAAAAFwAAAAABFwAAAAACEAAAAAADEAAAAAADCAAAAAAAFAAAAAADGAAAAAABGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAABEAAAAAADEAAAAAADCAAAAAAAFAAAAAACGAAAAAAADwAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAACEAAAAAABEAAAAAADCAAAAAAAFAAAAAABIAAAAAABDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAANwAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAAADwAAAAACCAAAAAAASwAAAAAKSwAAAAAASwAAAAAASwAAAAAASwAAAAAESwAAAAAASwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAADDwAAAAAACAAAAAAASwAAAAAESwAAAAAASwAAAAAKSwAAAAAASwAAAAAASwAAAAAJSwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAACCAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAKSwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAABDwAAAAAAIAAAAAAADwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAJwAAAAADDwAAAAADGAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAMgAAAAAAIAAAAAAADwAAAAAADwAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAMgAAAAACIAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAMgAAAAACGAAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACJwAAAAAAJwAAAAABJwAAAAADJwAAAAAAJwAAAAACJwAAAAADJwAAAAACJwAAAAADGAAAAAADDwAAAAACDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACJwAAAAABJwAAAAADDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAAADwAAAAAD
version: 6
-4,0:
ind: -4,0
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAEQAAAAACEQAAAAACBQAAAAABBQAAAAAAaAAAAAAAaAAAAAAAaAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAEQAAAAAAEQAAAAABEQAAAAACEQAAAAABHQAAAAACHQAAAAACEQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAEQAAAAAAEQAAAAAABQAAAAABBQAAAAABaAAAAAABaAAAAAACaAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABEQAAAAADBQAAAAAADgAAAAAADgAAAAACDgAAAAACDgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABEQAAAAADBQAAAAACBQAAAAACHwAAAAAAHwAAAAAAHwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEQAAAAAABQAAAAACBQAAAAAADgAAAAACDgAAAAABDgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAADEQAAAAADBQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAACAQAAAAAABQAAAAACBQAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADBQAAAAACBQAAAAABAQAAAAAABwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAABBQAAAAACBQAAAAAAAQAAAAAADgAAAAADDgAAAAAADgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABaQAAAAAAaQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAADDgAAAAADDgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAACBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAACDwAAAAABDwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAABGAAAAAACGAAAAAABIAAAAAACIAAAAAACGAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAAADwAAAAABDwAAAAABUwAAAAABUwAAAAACUwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAADDwAAAAAAFwAAAAAAFwAAAAACFwAAAAACFwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAADDwAAAAACDwAAAAACIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAACDwAAAAAAFwAAAAACFwAAAAABFwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADGAAAAAADDwAAAAACDwAAAAADDwAAAAACDwAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAACCAAAAAAADwAAAAACDwAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAAEAAAAAAAEAAAAAADEAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAAACAAAAAAAFwAAAAADFwAAAAAAFwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABVAAAAAAAVAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAADFwAAAAADFwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAAHQAAAAADBQAAAAADAQAAAAAABwAAAAADBwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAABHQAAAAAABQAAAAACAQAAAAAABwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAAEQAAAAAABQAAAAABAQAAAAAABwAAAAACBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAACHQAAAAAABQAAAAACAQAAAAAABwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAAHQAAAAACBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAACHQAAAAABBQAAAAACBQAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAAEQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAACHQAAAAABBQAAAAABAQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADHQAAAAAABQAAAAAAAQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAACEQAAAAABBQAAAAABAQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAAEQAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABEQAAAAABEQAAAAABAQAAAAAABQAAAAABBQAAAAABBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEQAAAAABBQAAAAADBQAAAAACBQAAAAAABQAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADEQAAAAABBQAAAAAABQAAAAAADgAAAAABDgAAAAACDgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACEQAAAAAABQAAAAAABQAAAAACHwAAAAAAHwAAAAAAHwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAABBQAAAAACDgAAAAABDgAAAAAADgAAAAAADgAAAAAB
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAIAAAAAADDwAAAAADCAAAAAAAEAAAAAADEAAAAAABEAAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAABIAAAAAAADwAAAAACCAAAAAAAEAAAAAACEAAAAAADEAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAABCAAAAAAAEAAAAAACEAAAAAACEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAAADwAAAAACCAAAAAAAEAAAAAABEAAAAAABEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAIAAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAABDwAAAAACDwAAAAADDAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAGAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAABDwAAAAABCAAAAAAANgAAAAAANgAAAAAANgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADIAAAAAAADwAAAAAACAAAAAAANgAAAAAANgAAAAAANgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACGAAAAAABDwAAAAABCAAAAAAANgAAAAAANgAAAAAANgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAAGAAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAABCAAAAAAADwAAAAABDwAAAAABDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAAADwAAAAAAFwAAAAABFwAAAAACFwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACGAAAAAAADwAAAAAADwAAAAACIQAAAAAAIQAAAAAAIQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAABDwAAAAACFwAAAAABFwAAAAAAFwAAAAAAFwAAAAAB
version: 6
-4,-2:
ind: -4,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADEQAAAAADEQAAAAADEQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAADDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADAQAAAAAABQAAAAACEQAAAAADDgAAAAABHwAAAAAAAwAAAAAAAQAAAAAADgAAAAACBwAAAAABBwAAAAABBwAAAAAAAQAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAACAQAAAAAABQAAAAAAEQAAAAABDgAAAAABHwAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAABCwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACAQAAAAAABQAAAAADEQAAAAABDgAAAAABHwAAAAAAAQAAAAAAAQAAAAAACwAAAAABCwAAAAACCwAAAAADBwAAAAAAAQAAAAAABQAAAAADBQAAAAACBQAAAAACBQAAAAADAQAAAAAABQAAAAAAEQAAAAAADgAAAAADHwAAAAAAAQAAAAAAAQAAAAAACwAAAAADCwAAAAACCwAAAAACBwAAAAABAQAAAAAAEQAAAAADEQAAAAACEQAAAAACEQAAAAAAEQAAAAABBQAAAAABEQAAAAACDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAACBwAAAAADAQAAAAAAEQAAAAABEQAAAAABEQAAAAADEQAAAAAAEQAAAAACBQAAAAACEQAAAAABEQAAAAADEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAADBQAAAAACBQAAAAADAQAAAAAABQAAAAADBQAAAAADBQAAAAADEQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAADBQAAAAAAEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAAABQAAAAACEQAAAAADAQAAAAAAAQAAAAAABQAAAAACBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACEQAAAAABEQAAAAACEQAAAAADEQAAAAADEQAAAAABEQAAAAABAAAAAAAAAQAAAAAABQAAAAABBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABQAAAAABEQAAAAACBQAAAAABBQAAAAAABQAAAAAABQAAAAACBQAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAEQAAAAADEQAAAAAAEQAAAAACAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAADEQAAAAADBQAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAACEQAAAAACBQAAAAAAAQAAAAAABQAAAAAABQAAAAACBQAAAAAD
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADGAAAAAADGAAAAAADGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAADFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAADCAAAAAAADwAAAAACGAAAAAADFwAAAAABIQAAAAAADAAAAAAACAAAAAAAFwAAAAACEAAAAAABEAAAAAABEAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACCAAAAAAADwAAAAAAGAAAAAABFwAAAAABIQAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAABFAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAACCAAAAAAADwAAAAADGAAAAAABFwAAAAABIQAAAAAACAAAAAAACAAAAAAAFAAAAAABFAAAAAACFAAAAAADEAAAAAAACAAAAAAADwAAAAADDwAAAAACDwAAAAACDwAAAAADCAAAAAAADwAAAAAAGAAAAAAAFwAAAAADIQAAAAAACAAAAAAACAAAAAAAFAAAAAADFAAAAAACFAAAAAACEAAAAAABCAAAAAAAGAAAAAADGAAAAAACGAAAAAACGAAAAAAAGAAAAAABDwAAAAABGAAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAADCAAAAAAAGAAAAAABGAAAAAABGAAAAAADGAAAAAAAGAAAAAACDwAAAAACGAAAAAABGAAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACDwAAAAADCAAAAAAADwAAAAADDwAAAAADDwAAAAADGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAAGAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAACDwAAAAAADwAAAAACGAAAAAADCAAAAAAACAAAAAAADwAAAAACDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACGAAAAAABGAAAAAACGAAAAAADGAAAAAADGAAAAAABGAAAAAABBgAAAAAACAAAAAAADwAAAAABDwAAAAADCAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAACDwAAAAADCQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAAGAAAAAADGAAAAAAAGAAAAAACCAAAAAAACAAAAAAADwAAAAAADwAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAADDwAAAAADCAAAAAAADwAAAAAADwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACGAAAAAACDwAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAAD
version: 6
-4,-3:
ind: -4,-3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABQAAAAADEQAAAAABBQAAAAABBQAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABQAAAAADEQAAAAACEQAAAAACEQAAAAADHQAAAAABHQAAAAACEQAAAAACHQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAABBQAAAAABBQAAAAABBQAAAAACBQAAAAADBQAAAAAABQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABQAAAAAABQAAAAABYAAAAAAABQAAAAABBQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAADBQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAAAYAAAAAAEBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAADYAAAAAAEYAAAAAAEBQAAAAABBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABYAAAAAAEYAAAAAAEYAAAAAAEBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAAB
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAABDwAAAAABDwAAAAADDwAAAAADDwAAAAAADwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAACGAAAAAACGAAAAAADIAAAAAABIAAAAAACGAAAAAACIAAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAABDwAAAAABDwAAAAACDwAAAAADDwAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADCQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABCQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAADwAAAAABSgAAAAAADwAAAAABDwAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAADDwAAAAABBgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAAASgAAAAAEDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADSgAAAAAESgAAAAAEDwAAAAABDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABSgAAAAAESgAAAAAESgAAAAAEDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAAB
version: 6
2,0:
ind: 2,0
- tiles: BwAAAAABBwAAAAABBwAAAAAAAQAAAAAAEQAAAAADEQAAAAABEQAAAAADAQAAAAAAAQAAAAAAEQAAAAADEQAAAAAAEQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAACBQAAAAABEQAAAAABBQAAAAABQAAAAAABQAAAAAACQAAAAAACAQAAAAAABQAAAAACBQAAAAADBQAAAAABDgAAAAABBQAAAAABBQAAAAADBQAAAAADEQAAAAAABQAAAAAABQAAAAADHQAAAAADBQAAAAABQAAAAAABQAAAAAADQAAAAAABAQAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAACHQAAAAAAHQAAAAADEQAAAAABEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADBQAAAAABQAAAAAABQAAAAAAAEQAAAAAAAQAAAAAABQAAAAADBQAAAAAABQAAAAACBQAAAAACBQAAAAADBQAAAAAABQAAAAACEQAAAAADBQAAAAADBQAAAAADBQAAAAADBQAAAAABQAAAAAAAQAAAAAAAQAAAAAAAAQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAABQgAAAAABQgAAAAAAQgAAAAABQgAAAAACQgAAAAACQgAAAAADAQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAABQAAAAABAQAAAAAABQAAAAABAQAAAAAAQgAAAAACQgAAAAABQgAAAAADAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABAQAAAAAAQAAAAAAAQAAAAAACQgAAAAABQgAAAAACQgAAAAADQgAAAAABQgAAAAAAQAAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAQAAAAAAAQAAAAAABHQAAAAAAQgAAAAACQAAAAAAAQgAAAAACHQAAAAACQAAAAAACBQAAAAACBQAAAAABBQAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAABQgAAAAADQgAAAAAAQgAAAAACQgAAAAADQgAAAAABQAAAAAADBQAAAAABBQAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAADXgAAAAADQAAAAAADQAAAAAAAQAAAAAAAXgAAAAABQAAAAAADAQAAAAAABQAAAAAACwAAAAADCwAAAAABCwAAAAACCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAADXgAAAAADQAAAAAABQAAAAAABQAAAAAAAXgAAAAAADgAAAAACBQAAAAABBQAAAAAACwAAAAABCwAAAAAACwAAAAACCwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAACQgAAAAACQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAAAQgAAAAADAQAAAAAABQAAAAACCwAAAAABCwAAAAAACwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACDgAAAAADDgAAAAADBwAAAAADDgAAAAACAQAAAAAABQAAAAACCwAAAAACCwAAAAAACwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACDgAAAAACDgAAAAAAEgAAAAAAEgAAAAAA
+ tiles: EAAAAAABEAAAAAABEAAAAAAACAAAAAAAGAAAAAADGAAAAAABGAAAAAADCAAAAAAACAAAAAAAGAAAAAADGAAAAAAAGAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAACDwAAAAABGAAAAAABDwAAAAABOgAAAAABOgAAAAACOgAAAAACCAAAAAAADwAAAAACDwAAAAADDwAAAAABFwAAAAABDwAAAAABDwAAAAADDwAAAAADGAAAAAAADwAAAAAADwAAAAADIAAAAAADDwAAAAABOgAAAAABOgAAAAADOgAAAAABCAAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAACIAAAAAAAIAAAAAADGAAAAAABGAAAAAAAGAAAAAAAIAAAAAAAIAAAAAADDwAAAAABOgAAAAABOgAAAAAAGAAAAAAACAAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAACGAAAAAADDwAAAAADDwAAAAADDwAAAAADDwAAAAABOgAAAAAAOgAAAAAAOgAAAAAACAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAACAAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPQAAAAABPQAAAAAAPQAAAAABPQAAAAACPQAAAAACPQAAAAADCAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAADAAAAAAACAAAAAAADwAAAAABCAAAAAAADwAAAAABCAAAAAAAPQAAAAACPQAAAAABPQAAAAADCAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABCAAAAAAAOgAAAAAAOgAAAAACPQAAAAABPQAAAAACPQAAAAADPQAAAAABPQAAAAAAOgAAAAAADwAAAAAADwAAAAAADwAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAAOgAAAAAAOgAAAAABIAAAAAAAPQAAAAACOgAAAAAAPQAAAAACIAAAAAACOgAAAAACDwAAAAACDwAAAAABDwAAAAACDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOgAAAAABPQAAAAADPQAAAAAAPQAAAAACPQAAAAADPQAAAAABOgAAAAADDwAAAAABDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOgAAAAADSAAAAAADOgAAAAADOgAAAAAAOgAAAAAASAAAAAABOgAAAAADCAAAAAAADwAAAAAAFAAAAAADFAAAAAABFAAAAAACFAAAAAABCAAAAAAACAAAAAAACAAAAAAAOgAAAAADSAAAAAADOgAAAAABOgAAAAABOgAAAAAASAAAAAAAFwAAAAACDwAAAAABDwAAAAAAFAAAAAABFAAAAAAAFAAAAAACFAAAAAADCAAAAAAACAAAAAAACAAAAAAAOgAAAAACPQAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAADCAAAAAAADwAAAAACFAAAAAABFAAAAAAAFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAADFwAAAAADEAAAAAADFwAAAAACCAAAAAAADwAAAAACFAAAAAACFAAAAAAAFAAAAAACFAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAACFwAAAAAAGQAAAAAAGQAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAXwAAAAACXwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAACAAAAAAASQAAAAACSQAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: AQAAAAAAAQAAAAAAEgAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAADBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABwAAAAADBwAAAAACBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAACBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAADBwAAAAAAAQAAAAAAXgAAAAABXgAAAAACQAAAAAACAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAAAAQAAAAAAAQAAAAAABwAAAAACAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAACAQAAAAAABwAAAAABBwAAAAACBwAAAAABAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAACBwAAAAADBwAAAAAAAQAAAAAABwAAAAACBwAAAAACBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACBwAAAAADBwAAAAAABwAAAAADAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADBwAAAAACBwAAAAACBwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABwAAAAAABwAAAAAABwAAAAABAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAAGQAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAACAAAAAAACAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAAEAAAAAADEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAABDAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAAACAAAAAAASAAAAAABSAAAAAACOgAAAAACCAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAACAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAACCAAAAAAAEAAAAAABEAAAAAACEAAAAAABCAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAACEAAAAAADEAAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACEAAAAAADEAAAAAAAEAAAAAADCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAADEAAAAAACEAAAAAACEAAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAAEAAAAAAAEAAAAAAAEAAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: BwAAAAADBwAAAAABMAAAAAACMAAAAAADMAAAAAAABQAAAAADBQAAAAADBQAAAAADBQAAAAACBQAAAAACDgAAAAADDgAAAAAAAQAAAAAABQAAAAACBQAAAAAABQAAAAABAQAAAAAABwAAAAACMAAAAAACMAAAAAACMAAAAAACBQAAAAACBQAAAAAABQAAAAAABQAAAAABBQAAAAADBwAAAAADBwAAAAADAQAAAAAABwAAAAADBwAAAAABBwAAAAADAQAAAAAABwAAAAAAMAAAAAACMAAAAAAAMAAAAAACBQAAAAACBQAAAAAABQAAAAADBQAAAAAABQAAAAADBwAAAAAABwAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABwAAAAAABQAAAAABAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAACBwAAAAADBQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBwAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAACXgAAAAADXgAAAAAAAQAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAABXwAAAAABBwAAAAACBwAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAABwAAAAADBwAAAAADBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAABBwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAADBwAAAAADBwAAAAABAQAAAAAABQAAAAACBQAAAAAABQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAABQAAAAACAQAAAAAABQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABwAAAAADBwAAAAABBwAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAABBQAAAAACBQAAAAABBQAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABwAAAAABBwAAAAABBwAAAAADBQAAAAABBQAAAAABBQAAAAAABQAAAAAC
+ tiles: EAAAAAADEAAAAAABMgAAAAACMgAAAAADMgAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAACDwAAAAACFwAAAAADFwAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAABCAAAAAAAEAAAAAACMgAAAAACMgAAAAACMgAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAADEAAAAAADEAAAAAADCAAAAAAAEAAAAAADEAAAAAABEAAAAAADCAAAAAAAEAAAAAAAMgAAAAACMgAAAAAAMgAAAAACDwAAAAACDwAAAAAADwAAAAADDwAAAAAADwAAAAADEAAAAAAAEAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAAEAAAAAAADwAAAAABCAAAAAAADAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAACEAAAAAADDwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACEAAAAAADDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAABEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAOgAAAAACSAAAAAADSAAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAABSQAAAAABEAAAAAACEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAAACAAAAAAAFwAAAAAAFwAAAAAAFwAAAAACBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAABCAAAAAAADwAAAAACDwAAAAAADwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAADwAAAAACCAAAAAAADwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAABDwAAAAACDwAAAAABDwAAAAACDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAABEAAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAC
version: 6
-2,2:
ind: -2,2
- tiles: AAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAABBQAAAAAAAQAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAACBwAAAAABBwAAAAAAAQAAAAAABQAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAADBwAAAAACBwAAAAAAAQAAAAAABQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAADBQAAAAADBQAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAABBQAAAAAABQAAAAACBQAAAAACBQAAAAABBQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADAQAAAAAABQAAAAABBQAAAAACBQAAAAAABQAAAAADBQAAAAACBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA
+ tiles: BgAAAAAABgAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABDwAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAACAAAAAAADwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAACEAAAAAAACAAAAAAADwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAADDwAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAABDwAAAAAADwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAADwAAAAABDwAAAAACDwAAAAAADwAAAAADDwAAAAACDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAEAAAAAACCQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAABDgAAAAACBQAAAAACBQAAAAABBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAACBQAAAAACBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABQAAAAABBQAAAAACBQAAAAADBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABQAAAAACBwAAAAABBwAAAAABBQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAABBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABFwAAAAACDwAAAAACDwAAAAABDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACAAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAADwAAAAACEAAAAAABEAAAAAABDwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: BQAAAAAABwAAAAABBwAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABBQAAAAAABQAAAAADBQAAAAABAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAADBQAAAAACBQAAAAABBQAAAAABAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACBwAAAAACBwAAAAABBQAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACBwAAAAACBwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: DwAAAAAAEAAAAAABEAAAAAAAFwAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAADDwAAAAACDwAAAAABDwAAAAABCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACEAAAAAACEAAAAAABDwAAAAACCAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACEAAAAAACEAAAAAADCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABDgAAAAACDgAAAAABEgAAAAAAEgAAAAAAAQAAAAAADgAAAAAABwAAAAACBwAAAAABBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABHQAAAAADHQAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABBwAAAAADHQAAAAADHQAAAAAABwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAABBwAAAAABEQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAbQAAAAAAbQAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABFwAAAAACFwAAAAABGQAAAAAAGQAAAAAACAAAAAAAFwAAAAAAEAAAAAACEAAAAAABEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABIAAAAAADIAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABEAAAAAADIAAAAAADIAAAAAAAEAAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAABGAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAAWAAAAAAAWAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAABCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: AQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAACQgAAAAAAAQAAAAAAQAAAAAAAQAAAAAABQAAAAAABQgAAAAACQAAAAAADQgAAAAACAQAAAAAAQgAAAAABQgAAAAAAQAAAAAAAQAAAAAACQAAAAAACAQAAAAAAQgAAAAACQAAAAAACQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQgAAAAAAQAAAAAACQgAAAAAAQgAAAAACQgAAAAACQgAAAAADQAAAAAABQAAAAAAAQAAAAAABQAAAAAADQAAAAAAAQAAAAAABQgAAAAABQgAAAAACQgAAAAACQAAAAAABQgAAAAABQAAAAAADQgAAAAABQgAAAAADQgAAAAACQgAAAAAAQAAAAAADQAAAAAABQAAAAAABAQAAAAAAQgAAAAADQAAAAAAAQAAAAAABQAAAAAAAQAAAAAACQAAAAAABQgAAAAACQAAAAAACQgAAAAACAQAAAAAAQgAAAAABQgAAAAACQAAAAAACQAAAAAADQAAAAAADAQAAAAAAQgAAAAABQgAAAAAAAQAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQgAAAAADQAAAAAAADgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAADQAAAAAABQgAAAAACAQAAAAAAQgAAAAADQgAAAAABQgAAAAAAQgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAABQgAAAAABQAAAAAAAQgAAAAACQgAAAAACQgAAAAABQAAAAAAAQAAAAAACQAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAAAQAAAAAABQAAAAAADQgAAAAAAAQAAAAAAQgAAAAADQAAAAAACQAAAAAADQAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABQAAAAAACQgAAAAABQAAAAAABQgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAABAQAAAAAAQgAAAAABQAAAAAAAQgAAAAAAAQAAAAAADgAAAAADBwAAAAAABwAAAAADBwAAAAABBwAAAAABCwAAAAAACwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADAQAAAAAAQgAAAAACQAAAAAABQgAAAAACQgAAAAAAQgAAAAAABwAAAAAABwAAAAAABwAAAAAAAQAAAAAACwAAAAABCwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAABQAAAAAADQgAAAAACAQAAAAAAQgAAAAABBwAAAAADBwAAAAAABwAAAAADAQAAAAAACwAAAAACCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAAAQgAAAAADQAAAAAAAQgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAADQAAAAAABQAAAAAACQAAAAAAAQgAAAAACQgAAAAADQgAAAAADQAAAAAADQgAAAAADQgAAAAADQgAAAAAAQgAAAAADQgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAQAAAAAABQAAAAAABQAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAADQAAAAAABQAAAAAACQAAAAAACQgAAAAABAQAAAAAAAQAAAAAA
+ tiles: CAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACPQAAAAAACAAAAAAAOgAAAAAAOgAAAAABOgAAAAABPQAAAAACOgAAAAADPQAAAAACCAAAAAAAPQAAAAABPQAAAAAAOgAAAAAAOgAAAAACOgAAAAACCAAAAAAAPQAAAAACOgAAAAACOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAPQAAAAAAOgAAAAACPQAAAAAAPQAAAAACPQAAAAACPQAAAAADOgAAAAABOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAABPQAAAAABPQAAAAACPQAAAAACOgAAAAABPQAAAAABOgAAAAADPQAAAAABPQAAAAADPQAAAAACPQAAAAAAOgAAAAADOgAAAAABOgAAAAABCAAAAAAAPQAAAAADOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAABPQAAAAACOgAAAAACPQAAAAACCAAAAAAAPQAAAAABPQAAAAACOgAAAAACOgAAAAADOgAAAAADCAAAAAAAPQAAAAABPQAAAAAACAAAAAAAOgAAAAAAOgAAAAAAOgAAAAADPQAAAAADOgAAAAAAFwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADOgAAAAABPQAAAAACCAAAAAAAPQAAAAADPQAAAAABPQAAAAAAPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOgAAAAABPQAAAAABOgAAAAAAPQAAAAACPQAAAAACPQAAAAABOgAAAAAAOgAAAAACOgAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOgAAAAAAOgAAAAABOgAAAAADPQAAAAAACAAAAAAAPQAAAAADOgAAAAACOgAAAAADOgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABOgAAAAACPQAAAAABOgAAAAABPQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAABCAAAAAAAPQAAAAABOgAAAAAAPQAAAAAACAAAAAAAFwAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAABFAAAAAAAFAAAAAACCAAAAAAACAAAAAAACAAAAAAADwAAAAADCAAAAAAAPQAAAAACOgAAAAABPQAAAAACPQAAAAAAPQAAAAAAEAAAAAAAEAAAAAAAEAAAAAAACAAAAAAAFAAAAAABFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABOgAAAAADPQAAAAACCAAAAAAAPQAAAAABEAAAAAADEAAAAAAAEAAAAAADCAAAAAAAFAAAAAACFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAAAPQAAAAADOgAAAAAAPQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAPQAAAAACPQAAAAADPQAAAAADOgAAAAADPQAAAAADPQAAAAADPQAAAAAAPQAAAAADPQAAAAABCAAAAAAACAAAAAAACAAAAAAAOgAAAAABOgAAAAABOgAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADOgAAAAABOgAAAAACOgAAAAACPQAAAAABCAAAAAAACAAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAACQAAAAAADQAAAAAABQAAAAAAAQgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAABQgAAAAAAQgAAAAADQgAAAAACQgAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAACwAAAAADCwAAAAACCwAAAAAACwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAbwAAAAAAAQAAAAAAAQAAAAAABwAAAAACAQAAAAAAYAAAAAADbgAAAAAABQAAAAADBQAAAAACAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbQAAAAAAAQAAAAAABQAAAAACBQAAAAADYAAAAAADBQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAACAQAAAAAACwAAAAADCwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAABCwAAAAACCwAAAAAAAQAAAAAACwAAAAADCwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACOgAAAAADOgAAAAABOgAAAAAAPQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABPQAAAAAAPQAAAAADPQAAAAACPQAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAFAAAAAADFAAAAAACFAAAAAAAFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAWgAAAAAACAAAAAAACAAAAAAAEAAAAAACCAAAAAAASgAAAAADWQAAAAAADwAAAAADDwAAAAACCAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAWAAAAAAACAAAAAAADwAAAAACDwAAAAADSgAAAAADDwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAAACAAAAAAAFAAAAAAAFAAAAAACCAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFAAAAAACCAAAAAAAFAAAAAADFAAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAABFAAAAAACFAAAAAAACAAAAAAAFAAAAAADFAAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: AgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAADgAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABDgAAAAADDgAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAADgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADDgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAADgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAADDgAAAAADDgAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAABwAAAAADBwAAAAABBwAAAAADBwAAAAADBwAAAAAADgAAAAAADgAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAADgAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAADgAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAADgAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADDgAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADgAAAAAADgAAAAABDgAAAAABAQAAAAAABwAAAAADBwAAAAADBwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAADDgAAAAADDgAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABQAAAAAAEQAAAAABBQAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAADHQAAAAABBQAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABQAAAAAAHQAAAAACBQAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABQAAAAADHQAAAAADBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAABQAAAAADEQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAEQAAAAADEQAAAAADEQAAAAAAAQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAA
+ tiles: CQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAABEAAAAAADEAAAAAABEAAAAAACEAAAAAABFwAAAAADFwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADFwAAAAAAFwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADFwAAAAADFwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADEAAAAAAAFwAAAAAAFwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAADEAAAAAABEAAAAAABEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAABEAAAAAACEAAAAAABEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAACEAAAAAAAEAAAAAABEAAAAAACEAAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADFwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAAFwAAAAAAFwAAAAABFwAAAAABCAAAAAAAEAAAAAADEAAAAAADEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAADFwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAAGAAAAAABDwAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADIAAAAAABDwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAAAIAAAAAACDwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAADIAAAAAADDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAADwAAAAADGAAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAAGAAAAAADGAAAAAADGAAAAAAACAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAACDgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACDgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAAADgAAAAADBwAAAAADBwAAAAACBwAAAAACBwAAAAAADgAAAAADAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAABDgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAACDgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAACDgAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAABDgAAAAABAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAACDgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACDgAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAADDgAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAACDgAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAABAQAAAAAADgAAAAABDgAAAAACDgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAACDgAAAAACDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADEQAAAAAABQAAAAAAAQAAAAAABQAAAAABBQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAAHQAAAAACBQAAAAABBQAAAAAABQAAAAADBQAAAAACAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADHQAAAAADBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAACHQAAAAABBQAAAAACAQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABEQAAAAACBQAAAAABAQAAAAAAYQAAAAAAYQAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAEQAAAAABEQAAAAABEQAAAAABAQAAAAAAYQAAAAAIYQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAAAFwAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAFwAAAAADCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAACFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABFwAAAAABCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAACFwAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAACFwAAAAACCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADFwAAAAACCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAACCAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAABCAAAAAAAFwAAAAABFwAAAAACFwAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAACFwAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADGAAAAAAADwAAAAAACAAAAAAADwAAAAABDwAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAAAIAAAAAACDwAAAAABDwAAAAAADwAAAAADDwAAAAACCAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAADIAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAADwAAAAACIAAAAAABDwAAAAACCAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABGAAAAAACDwAAAAABCAAAAAAASwAAAAAASwAAAAAECQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAAGAAAAAABGAAAAAABGAAAAAABCAAAAAAASwAAAAAISwAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAA
version: 6
-4,-5:
ind: -4,-5
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAADgAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACAAAAAAAFwAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
-3,-5:
ind: -3,-5
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAADDgAAAAACAQAAAAAAAgAAAAAAAAAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAABCAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAADFwAAAAACCAAAAAAACQAAAAAABgAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAABAQAAAAAAAQAAAAAABQAAAAAABwAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACBQAAAAADBQAAAAADBQAAAAABBQAAAAAAAQAAAAAABQAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAACAQAAAAAABQAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAACBwAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAADBQAAAAADBQAAAAACBQAAAAACBQAAAAADAQAAAAAABQAAAAADDgAAAAAADgAAAAABDgAAAAADDgAAAAABDgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAACDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAABwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAABQAAAAAADQAAAAAAAQAAAAAAAQgAAAAADAQAAAAAAQAAAAAACQAAAAAAAAQAAAAAAQgAAAAAAQgAAAAADQgAAAAADWwAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAQgAAAAACQgAAAAAAQAAAAAADQgAAAAADQgAAAAAAQgAAAAADQAAAAAAAQAAAAAAAAQAAAAAAQgAAAAABQAAAAAACQAAAAAABQAAAAAADQgAAAAAAAQAAAAAAAQAAAAAAQgAAAAABQgAAAAAAQAAAAAAAQgAAAAABQgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAADQAAAAAABQAAAAAADQAAAAAADQgAAAAABAQAAAAAAAQAAAAAAQgAAAAADQAAAAAABQAAAAAAAQAAAAAAAQgAAAAADQgAAAAAAQAAAAAADQgAAAAAAQgAAAAAAQgAAAAAAEQAAAAABEQAAAAACEQAAAAAAQgAAAAADAQAAAAAAAQAAAAAAQgAAAAADQgAAAAABQAAAAAABQgAAAAADQgAAAAACQgAAAAACQAAAAAAAQgAAAAABQgAAAAADQgAAAAACEQAAAAADEQAAAAAAEQAAAAACQgAAAAABAQAAAAAAAQAAAAAAQgAAAAAAQgAAAAABQAAAAAAAQgAAAAADQgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAACQAAAAAACQAAAAAADQAAAAAABQgAAAAADAQAAAAAAQAAAAAACQAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAAAQAAAAAACQAAAAAAAQAAAAAADQgAAAAADQgAAAAADQAAAAAABQAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAAADwAAAAABCAAAAAAACAAAAAAADwAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAAFwAAAAACDwAAAAADDwAAAAADDwAAAAABDwAAAAAACAAAAAAADwAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAACCAAAAAAADwAAAAABEAAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAADDwAAAAADDwAAAAACDwAAAAACDwAAAAADCAAAAAAADwAAAAADFwAAAAAAFwAAAAABFwAAAAADFwAAAAABFwAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAAAFwAAAAAAFwAAAAACFwAAAAAAFwAAAAACFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAACAAAAAAAEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAABOgAAAAADOgAAAAAAOgAAAAAAPQAAAAADCAAAAAAAOgAAAAACOgAAAAAACAAAAAAAPQAAAAAAPQAAAAADPQAAAAADRgAAAAAARgAAAAAACAAAAAAACAAAAAAAPQAAAAACPQAAAAAAOgAAAAADPQAAAAADPQAAAAAAPQAAAAADOgAAAAAAOgAAAAAACAAAAAAAPQAAAAABOgAAAAACOgAAAAABOgAAAAADPQAAAAAACAAAAAAACAAAAAAAPQAAAAABPQAAAAAAOgAAAAAAPQAAAAABPQAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAADOgAAAAABOgAAAAADOgAAAAADPQAAAAABCAAAAAAACAAAAAAAPQAAAAADOgAAAAABOgAAAAAAOgAAAAAAPQAAAAADPQAAAAAAOgAAAAADPQAAAAAAPQAAAAAAPQAAAAAAGAAAAAABGAAAAAACGAAAAAAAPQAAAAADCAAAAAAACAAAAAAAPQAAAAADPQAAAAABOgAAAAABPQAAAAADPQAAAAACPQAAAAACOgAAAAAAPQAAAAABPQAAAAADPQAAAAACGAAAAAADGAAAAAAAGAAAAAACPQAAAAABCAAAAAAACAAAAAAAPQAAAAAAPQAAAAABOgAAAAAAPQAAAAADPQAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAACOgAAAAACOgAAAAADOgAAAAABPQAAAAADCAAAAAAAOgAAAAACOgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAPQAAAAAAOgAAAAACOgAAAAAAOgAAAAADPQAAAAADPQAAAAADOgAAAAABOgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAABCAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: BQAAAAABBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAHQAAAAADBQAAAAADAQAAAAAAEQAAAAADEQAAAAADEQAAAAACEQAAAAAAEQAAAAAAAQAAAAAABQAAAAAAWwAAAAAABQAAAAACBQAAAAADBQAAAAADAQAAAAAAAQAAAAAAHQAAAAAABQAAAAADAQAAAAAAEQAAAAABEQAAAAACEQAAAAAAEQAAAAACEQAAAAABAQAAAAAABQAAAAABWwAAAAAABQAAAAACBQAAAAADBQAAAAABAQAAAAAAAQAAAAAABQAAAAABBQAAAAACBQAAAAADEQAAAAADEQAAAAACEQAAAAAAEQAAAAACEQAAAAADAQAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAAABQAAAAACAQAAAAAAAQAAAAAABQAAAAADBQAAAAADAQAAAAAAEQAAAAACEQAAAAAAEQAAAAACEQAAAAADEQAAAAACAQAAAAAAAwAAAAAAAwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABBQAAAAABBQAAAAACBQAAAAAAEQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAWwAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: DwAAAAABDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAABRgAAAAAARgAAAAAARgAAAAAARgAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAADCAAAAAAAGAAAAAADGAAAAAADGAAAAAACGAAAAAAAGAAAAAAACAAAAAAADwAAAAAARgAAAAAADwAAAAACDwAAAAADDwAAAAADCAAAAAAACAAAAAAAIAAAAAAADwAAAAADCAAAAAAAGAAAAAABGAAAAAACGAAAAAAAGAAAAAACGAAAAAABCAAAAAAADwAAAAABRgAAAAAADwAAAAACDwAAAAADDwAAAAABCAAAAAAACAAAAAAADwAAAAABDwAAAAACDwAAAAADGAAAAAADGAAAAAACGAAAAAAAGAAAAAACGAAAAAADCAAAAAAADAAAAAAADAAAAAAADwAAAAABDwAAAAAADwAAAAACCAAAAAAACAAAAAAADwAAAAADDwAAAAADCAAAAAAAGAAAAAACGAAAAAAAGAAAAAACGAAAAAADGAAAAAACCAAAAAAADAAAAAAADAAAAAAARgAAAAAARgAAAAAARgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABDwAAAAABDwAAAAACDwAAAAAAGAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAADAAAAAAADAAAAAAADAAAAAAARgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAADAAAAAAADAAAAAAADAAAAAAARgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARgAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAARgAAAAAARgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAARgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
4,1:
ind: 4,1
- tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAXwAAAAACAQAAAAAAXwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAXwAAAAAAXwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASQAAAAACCAAAAAAASQAAAAABDAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAASQAAAAAASQAAAAAADAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAABDgAAAAADBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAABDgAAAAACDgAAAAADDgAAAAACBQAAAAAABQAAAAAABQAAAAADAQAAAAAABQAAAAABBQAAAAACBQAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAABwAAAAADDgAAAAADBwAAAAABBQAAAAABBQAAAAABBQAAAAADAQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAACBQAAAAACBQAAAAACBQAAAAAAAQAAAAAAAQAAAAAABQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACCwAAAAAACwAAAAADCwAAAAACBQAAAAADBQAAAAADBQAAAAACAQAAAAAAEQAAAAABBQAAAAADCwAAAAABCwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAADCwAAAAABCwAAAAAACwAAAAAABQAAAAABBQAAAAACDgAAAAABAQAAAAAAEQAAAAAABQAAAAACCwAAAAACCwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACCwAAAAADCwAAAAACCwAAAAADAQAAAAAABQAAAAACAQAAAAAAAQAAAAAAEQAAAAAABQAAAAAADgAAAAAACwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAACBQAAAAACBQAAAAACBQAAAAACBQAAAAADBQAAAAADCwAAAAABCwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAADBQAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAABBQAAAAAABQAAAAABBQAAAAADBQAAAAAABQAAAAADWwAAAAAABQAAAAAABQAAAAADBQAAAAABAQAAAAAAAQAAAAAABQAAAAACBQAAAAAABQAAAAACBQAAAAAABQAAAAAABQAAAAADBQAAAAAABQAAAAADBQAAAAADBQAAAAABWwAAAAAABQAAAAACBQAAAAACBQAAAAADAQAAAAAAAQAAAAAAHQAAAAABBQAAAAACBQAAAAAABQAAAAACBQAAAAABBQAAAAABBQAAAAABBQAAAAAABQAAAAACBQAAAAACWwAAAAAABQAAAAADBQAAAAAABQAAAAABAQAAAAAAAQAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABFwAAAAADEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAABFwAAAAACFwAAAAADFwAAAAACDwAAAAAADwAAAAAADwAAAAADCAAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAEAAAAAAAEAAAAAADFwAAAAADEAAAAAABDwAAAAABDwAAAAABDwAAAAADCAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADCAAAAAAACAAAAAAACAAAAAAADAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACDwAAAAACDwAAAAACDwAAAAAACAAAAAAACAAAAAAADwAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFAAAAAAAFAAAAAADFAAAAAACDwAAAAADDwAAAAADDwAAAAACCAAAAAAAGAAAAAABDwAAAAADFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFAAAAAABFAAAAAAAFAAAAAAADwAAAAABDwAAAAACFwAAAAABCAAAAAAAGAAAAAAADwAAAAACFAAAAAACFAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFAAAAAADFAAAAAACFAAAAAADCAAAAAAADwAAAAACCAAAAAAACAAAAAAAGAAAAAAADwAAAAAAFwAAAAAAFAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAACDwAAAAACDwAAAAACDwAAAAACDwAAAAADDwAAAAADFAAAAAABFAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAADDwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAIAAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADRgAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAACAAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAADDwAAAAAADwAAAAADDwAAAAADDwAAAAABRgAAAAAADwAAAAACDwAAAAACDwAAAAADCAAAAAAACAAAAAAAIAAAAAABDwAAAAACDwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAACDwAAAAACRgAAAAAADwAAAAADDwAAAAAADwAAAAABCAAAAAAACAAAAAAA
version: 6
5,-1:
ind: 5,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAANwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAANwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAANwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
5,-2:
ind: 5,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAADDgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAACDgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAbQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAACBQAAAAADBQAAAAACBQAAAAADBQAAAAADBQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEQAAAAABEQAAAAAABQAAAAADBQAAAAABEQAAAAACEQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAACDgAAAAACBQAAAAADBQAAAAADDgAAAAADDgAAAAABAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAADDgAAAAACBQAAAAACBQAAAAABDgAAAAADDgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAOwAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADFwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAACFwAAAAACCAAAAAAACAAAAAAACAAAAAAAWAAAAAAACAAAAAAADAAAAAAADAAAAAAADAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADDwAAAAADDwAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAGAAAAAABGAAAAAAADwAAAAADDwAAAAABGAAAAAACGAAAAAABCAAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAANwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAACDwAAAAADDwAAAAADFwAAAAADFwAAAAABCAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAANwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAADFwAAAAACDwAAAAACDwAAAAABFwAAAAADFwAAAAAACAAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAANwAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: YwAAAAAAYQAAAAALYQAAAAAAYQAAAAAAYQAAAAAGAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAYQAAAAAGYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAYQAAAAADYQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAXwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAWwAAAAAAXwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAWwAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAXwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: TAAAAAAASwAAAAALSwAAAAAASwAAAAAASwAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAASwAAAAAGSwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAASwAAAAADSwAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAARgAAAAAASQAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAARgAAAAAASQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAARgAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAASQAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: AQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAABBwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAGYQAAAAABYQAAAAAFAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAEYwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAAQAAAAAAZgAAAAAAAQAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAZgAAAAAAYQAAAAAJYQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAACBwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAADAQAAAAAABwAAAAACBwAAAAABAQAAAAAAYQAAAAAAYQAAAAACYQAAAAAJYQAAAAAAYQAAAAAAZgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAABBwAAAAADDgAAAAACBwAAAAAABwAAAAABAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZgAAAAAAAQAAAAAAYwAAAAAAAQAAAAAAAQAAAAAABwAAAAADBwAAAAABBwAAAAABAQAAAAAABwAAAAABBwAAAAABAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAEYQAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAMYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAQAAAAAAAQAAAAAADgAAAAACDgAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAADAQAAAAAAAQAAAAAADgAAAAADDgAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: CAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAGSwAAAAABSwAAAAAFCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAETAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAACAAAAAAAUQAAAAAACAAAAAAATAAAAAAATAAAAAAABgAAAAAABgAAAAAAUQAAAAAASwAAAAAJSwAAAAAACAAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAACEAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAADCAAAAAAAEAAAAAACEAAAAAABCAAAAAAASwAAAAAASwAAAAACSwAAAAAJSwAAAAAASwAAAAAAUQAAAAAACQAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAADFwAAAAACEAAAAAAAEAAAAAABCAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAACAAAAAAATAAAAAAACAAAAAAACAAAAAAAEAAAAAADEAAAAAABEAAAAAABCAAAAAAAEAAAAAABEAAAAAABCAAAAAAASwAAAAAASwAAAAAASwAAAAAESwAAAAAASwAAAAAAUQAAAAAASwAAAAAACAAAAAAACAAAAAAADAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAMSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACAAAAAAACAAAAAAAFwAAAAACFwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAADCAAAAAAACAAAAAAAFwAAAAADFwAAAAACCAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAA
version: 6
0,-4:
ind: 0,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAEYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAAAQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAEYQAAAAAAYQAAAAAJYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAABAQAAAAAAAQAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAADgAAAAABAQAAAAAAAQAAAAAADgAAAAAC
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAABEAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAESwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAACAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAESwAAAAAASwAAAAAJSwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAACAAAAAAAFwAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAAFwAAAAABCAAAAAAACAAAAAAAFwAAAAAC
version: 6
-5,-3:
ind: -5,-3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAXwAAAAABAQAAAAAAXwAAAAAAAQAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADAAAAAAASQAAAAABCAAAAAAASQAAAAAACAAAAAAA
version: 6
-3,2:
ind: -3,2
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAADBQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAACBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAOwAAAAAABQAAAAADBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAOwAAAAAABQAAAAADBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAABQAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAADDwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAACDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAANwAAAAAADwAAAAADDwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAANwAAAAAADwAAAAADDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACAAAAAAADwAAAAABDwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: AgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
5,-3:
ind: 5,-3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAcAAAAAAGcAAAAAADcAAAAAABcAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAcAAAAAADcQAAAAAAcQAAAAAAKwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXAAAAAAGXAAAAAADXAAAAAABXAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAXAAAAAADYgAAAAAAYgAAAAAALQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAYgAAAAAALQAAAAAALQAAAAAALQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: AQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAMZgAAAAAAYQAAAAAFYQAAAAAAYQAAAAAMYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAJYQAAAAAAYQAAAAAJYQAAAAAAYQAAAAAIYQAAAAAAYQAAAAAJYQAAAAAIAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAKYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAAAYQAAAAAAYQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAFYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAMUQAAAAAASwAAAAAFSwAAAAAASwAAAAAMSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAJSwAAAAAASwAAAAAJSwAAAAAASwAAAAAISwAAAAAASwAAAAAJSwAAAAAICQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAKSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAASwAAAAAASwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAFSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAKYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAHYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAACYQAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAIYQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAYwAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAAAQAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAZgAAAAAAYQAAAAAAYQAAAAADYQAAAAAAYQAAAAAGAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAGYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAZgAAAAAAYQAAAAALYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAALYQAAAAAIYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAZgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAABYQAAAAAEZgAAAAAAYQAAAAAKAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAFAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAZgAAAAAAAQAAAAAAYwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYwAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAKSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAHSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAACSwAAAAAASwAAAAAAUQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAISwAAAAAAUQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAATAAAAAAATAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAACAAAAAAAUQAAAAAASwAAAAAASwAAAAAAUQAAAAAASwAAAAAASwAAAAADSwAAAAAASwAAAAAGCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAGSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAAUQAAAAAASwAAAAALSwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAALSwAAAAAISwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAUQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAABSwAAAAAEUQAAAAAASwAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAFCQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAAUQAAAAAACAAAAAAATAAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAATAAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYQAAAAAAYQAAAAAEYQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAAACwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAADCwAAAAABAQAAAAAAYQAAAAAJAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAACCwAAAAACAQAAAAAAYQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABwAAAAABBwAAAAADBwAAAAACAQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABwAAAAADBwAAAAACAQAAAAAAAQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAOwAAAAAAOwAAAAAAAQAAAAAAYQAAAAAKAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASwAAAAAASwAAAAAESwAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAACFAAAAAAAFAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAACFAAAAAADFAAAAAABCAAAAAAASwAAAAAJCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFAAAAAACFAAAAAACFAAAAAACCAAAAAAASwAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAADEAAAAAACCAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAADEAAAAAACCAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAANwAAAAAANwAAAAAACAAAAAAASwAAAAAKCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAASwAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
1,-5:
ind: 1,-5
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAABwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABXQAAAAAAAQAAAAAAXQAAAAAAAQAAAAAAXQAAAAAABwAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAXQAAAAAABwAAAAAAXQAAAAAABwAAAAACXQAAAAAABwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADXQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAXQAAAAAABwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAEgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACXQAAAAAAEgAAAAAAXQAAAAAABwAAAAACBwAAAAACAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACXQAAAAAAEgAAAAAAXQAAAAAABwAAAAABBwAAAAADAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADXQAAAAAAEgAAAAAAXQAAAAAABwAAAAACBwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADAQAAAAAABwAAAAAABwAAAAACAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABDgAAAAABBwAAAAABBwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADRwAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAAEAAAAAACCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABRwAAAAAACAAAAAAARwAAAAAACAAAAAAARwAAAAAAEAAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAAARwAAAAAAEAAAAAAARwAAAAAAEAAAAAACRwAAAAAAEAAAAAACCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADRwAAAAAACAAAAAAACAAAAAAACAAAAAAARwAAAAAAEAAAAAADCAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAARwAAAAAARwAAAAAARwAAAAAAGQAAAAAARwAAAAAARwAAAAAARwAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAACEAAAAAACRwAAAAAAGQAAAAAARwAAAAAAEAAAAAACEAAAAAACCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAADEAAAAAACRwAAAAAAGQAAAAAARwAAAAAAEAAAAAABEAAAAAADCAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAEAAAAAABEAAAAAADRwAAAAAAGQAAAAAARwAAAAAAEAAAAAACEAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAADAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAADCAAAAAAAEAAAAAAAEAAAAAACCAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABFwAAAAABEAAAAAABEAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
0,-5:
ind: 0,-5
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAABwAAAAAABwAAAAAB
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAACEAAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAABgAAAAAACAAAAAAAEAAAAAAAEAAAAAAB
version: 6
- type: Broadphase
- type: Physics
@@ -11837,19 +11837,19 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: AQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABwAAAAAABwAAAAAABwAAAAAAXwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABwAAAAABBwAAAAACBwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABwAAAAACDgAAAAAABwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAADgAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CAAAAAAACAAAAAAABgAAAAAACAAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAASQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAABEAAAAAACEAAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAEAAAAAACFwAAAAAAEAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAAFwAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAABDgAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAADDgAAAAACDgAAAAABDgAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAAQAAAAAAXwAAAAAADgAAAAADAQAAAAAAAgAAAAAAAQAAAAAAXwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAXwAAAAACAAAAAAAAXwAAAAACYAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAEQAAAAACEQAAAAADEQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACXwAAAAAAAQAAAAAAEQAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAABBQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAACDgAAAAADDgAAAAABEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAADBQAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEQAAAAADDgAAAAADDgAAAAADEQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAADBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAACBQAAAAABBQAAAAACBQAAAAACAQAAAAAAAAAAAAAAAQAAAAAAEQAAAAAAEQAAAAADEQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADgAAAAABDgAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAADgAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAACCAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAADFwAAAAACFwAAAAABFwAAAAACCAAAAAAACQAAAAAACQAAAAAABgAAAAAABgAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAFwAAAAAACAAAAAAASQAAAAAAFwAAAAADCAAAAAAACQAAAAAACAAAAAAASQAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAASQAAAAACBgAAAAAASQAAAAACSgAAAAAACAAAAAAABgAAAAAACAAAAAAAGAAAAAACGAAAAAADGAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAACSQAAAAAACAAAAAAAGAAAAAADCAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAABDwAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAACFwAAAAADFwAAAAABGAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAACCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAAGAAAAAADFwAAAAADFwAAAAADGAAAAAAACAAAAAAACAAAAAAACAAAAAAADwAAAAAADwAAAAADDwAAAAABCAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAACDwAAAAABDwAAAAACDwAAAAACCAAAAAAABgAAAAAACAAAAAAAGAAAAAAAGAAAAAADGAAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAAFwAAAAABFwAAAAABCAAAAAAACAAAAAAACQAAAAAACAAAAAAACAAAAAAAFwAAAAACCAAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: CQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAABgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -22276,6 +22276,12 @@ entities:
parent: 2
- proto: ButtonFrameExit
entities:
+ - uid: 17497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,10.5
+ parent: 2
- uid: 21868
components:
- type: Transform
@@ -114434,12 +114440,6 @@ entities:
rot: 3.141592653589793 rad
pos: 40.5,9.5
parent: 2
- - uid: 8850
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 48.5,10.5
- parent: 2
- uid: 8851
components:
- type: Transform
@@ -118743,30 +118743,6 @@ entities:
- Pressed: Toggle
16939:
- Pressed: Toggle
- - uid: 2077
- components:
- - type: MetaData
- name: Door bolt button
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-11.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 6:
- - Pressed: DoorBolt
- - uid: 2079
- components:
- - type: MetaData
- name: Door bolt button
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-11.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 7:
- - Pressed: DoorBolt
- uid: 15610
components:
- type: MetaData
@@ -118825,6 +118801,32 @@ entities:
linkedPorts:
16684:
- Pressed: Toggle
+ - uid: 2077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,10.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5994:
+ - Pressed: Toggle
+ 5990:
+ - Pressed: Toggle
+ 6011:
+ - Pressed: Toggle
+ - uid: 2079
+ components:
+ - type: MetaData
+ name: Light switch
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -29.5,-11.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1688:
+ - Pressed: Toggle
- uid: 4268
components:
- type: Transform
@@ -118989,6 +118991,18 @@ entities:
linkedPorts:
8243:
- Pressed: DoorBolt
+ - uid: 8850
+ components:
+ - type: MetaData
+ name: Light switch
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-11.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1686:
+ - Pressed: Toggle
- uid: 12913
components:
- type: MetaData
@@ -119048,27 +119062,27 @@ entities:
- uid: 14879
components:
- type: MetaData
- name: Lights off button
+ name: Door bolt button
- type: Transform
rot: 3.141592653589793 rad
- pos: -37.5,-11.5
+ pos: -27.5,-11.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 1686:
- - Pressed: Toggle
+ 7:
+ - Pressed: DoorBolt
- uid: 16121
components:
- type: MetaData
- name: Lights off button
+ name: Door bolt button
- type: Transform
rot: 3.141592653589793 rad
- pos: -29.5,-11.5
+ pos: -35.5,-11.5
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 1688:
- - Pressed: Toggle
+ 6:
+ - Pressed: DoorBolt
- uid: 16148
components:
- type: Transform
diff --git a/Resources/Maps/_Impstation/meta.yml b/Resources/Maps/_Impstation/meta.yml
index 4b985c8a6b3d..28f700164470 100644
--- a/Resources/Maps/_Impstation/meta.yml
+++ b/Resources/Maps/_Impstation/meta.yml
@@ -324,7 +324,7 @@ entities:
version: 6
-3,-3:
ind: -3,-3
- tiles: EgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAAFwAAAAAAFwAAAAAADQAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAFwAAAAAAEAAAAAAAEAAAAAAAFwAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAAFwAAAAAAFwAAAAAADQAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAARAAAAAAARAAAAAAARAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADQAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAADQAAAAAAFwAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAADQAAAAAARgAAAAAARgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFQAAAAAADwAAAAADJQAAAAABJQAAAAAAJQAAAAAAJQAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAADJQAAAAACJQAAAAAAJQAAAAACJQAAAAABJQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAABJQAAAAADJQAAAAAAJQAAAAAAJQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAAB
+ tiles: EgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAFwAAAAAAEAAAAAAAEAAAAAAAFwAAAAAADQAAAAAADQAAAAAAFQAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAABEAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAARAAAAAAARAAAAAAARAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADQAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAADQAAAAAAFwAAAAAADQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAADQAAAAAARgAAAAAARgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAACDwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFQAAAAAADwAAAAADJQAAAAABJQAAAAAAJQAAAAAAJQAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAADJQAAAAACJQAAAAAAJQAAAAACJQAAAAABJQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAABJQAAAAADJQAAAAAAJQAAAAAAJQAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADwAAAAAAJQAAAAAAJQAAAAACJQAAAAACJQAAAAACJQAAAAAB
version: 6
0,-4:
ind: 0,-4
@@ -340,7 +340,7 @@ entities:
version: 6
-3,-4:
ind: -3,-4
- tiles: EwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAADQAAAAAAEwAAAAAADQAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAADQAAAAAAEwAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAADQAAAAAAEwAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAADQAAAAAAEwAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAASQAAAAAASQAAAAAADQAAAAAADQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAASQAAAAAAGwAAAAAADQAAAAAAGwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAASAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAAADQAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAAAGwAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJQAAAAACJQAAAAABJQAAAAAAJQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA
+ tiles: EwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAADQAAAAAAEwAAAAAADQAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAFwAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAADQAAAAAAEwAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAADQAAAAAAEwAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAADQAAAAAAEwAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAASQAAAAAASQAAAAAADQAAAAAADQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAASQAAAAAAGwAAAAAADQAAAAAAGwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAASAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAAADQAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAAFwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAAAGwAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJQAAAAACJQAAAAABJQAAAAAAJQAAAAABEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEwAAAAAAEwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJQAAAAAAJQAAAAABJQAAAAAAJQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAJQAAAAADJQAAAAABJQAAAAACJQAAAAACEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAA
version: 6
-4,-3:
ind: -4,-3
@@ -2894,8 +2894,6 @@ entities:
5474: -35,-46
5475: -36,-46
5476: -37,-46
- 5477: -39,-46
- 5478: -38,-46
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale
@@ -3074,7 +3072,6 @@ entities:
5451: -35,-48
5452: -36,-48
5453: -37,-48
- 5454: -38,-48
5455: -24,-48
5456: -25,-48
5457: -26,-48
@@ -3082,7 +3079,6 @@ entities:
5460: -29,-48
5461: -30,-48
5462: -31,-48
- 5479: -40,-48
- node:
color: '#334E6DC8'
id: HalfTileOverlayGreyscale180
@@ -5145,7 +5141,6 @@ entities:
color: '#22668B95'
id: WarnLineGreyscaleN
decals:
- 5483: -40,-46
5484: -30,-46
- node:
color: '#52B4E996'
@@ -5194,7 +5189,6 @@ entities:
color: '#22668B95'
id: WarnLineGreyscaleS
decals:
- 5480: -39,-48
5481: -32,-48
5482: -28,-48
- node:
@@ -10162,7 +10156,7 @@ entities:
- 14177
- 17741
- 308
- - 6116
+ - 13307
- 16624
- 307
- uid: 19406
@@ -14185,11 +14179,6 @@ entities:
- type: Transform
pos: 16.5,20.5
parent: 5350
- - uid: 4251
- components:
- - type: Transform
- pos: -38.5,-48.5
- parent: 5350
- uid: 4625
components:
- type: Transform
@@ -14320,11 +14309,6 @@ entities:
- type: Transform
pos: -40.5,-15.5
parent: 5350
- - uid: 17492
- components:
- - type: Transform
- pos: -39.5,-44.5
- parent: 5350
- uid: 17555
components:
- type: Transform
@@ -14432,6 +14416,12 @@ entities:
- type: Transform
pos: -38.5,-35.5
parent: 5350
+ - uid: 14192
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-46.5
+ parent: 5350
- uid: 15606
components:
- type: Transform
@@ -14670,7 +14660,7 @@ entities:
pos: -29.5,15.5
parent: 5350
- type: Door
- secondsUntilStateChange: -253116.84
+ secondsUntilStateChange: -254482.8
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -14934,7 +14924,7 @@ entities:
pos: -4.5,53.5
parent: 5350
- type: Door
- secondsUntilStateChange: -107770.6
+ secondsUntilStateChange: -109136.54
state: Opening
- type: DeviceLinkSink
invokeCounter: 2
@@ -22995,15 +22985,10 @@ entities:
parent: 5350
- proto: BoxEnvelope
entities:
- - uid: 3539
- components:
- - type: Transform
- pos: -40.610725,2.6056523
- parent: 5350
- - uid: 3577
+ - uid: 16491
components:
- type: Transform
- pos: -40.31385,2.7462773
+ pos: -39.125244,4.6528664
parent: 5350
- proto: BoxFlare
entities:
@@ -49627,11 +49612,6 @@ entities:
- type: Transform
pos: 39.5,3.5
parent: 5350
- - uid: 331
- components:
- - type: Transform
- pos: 52.5,25.5
- parent: 5350
- uid: 354
components:
- type: Transform
@@ -50947,6 +50927,16 @@ entities:
- type: Transform
pos: -32.5,32.5
parent: 5350
+ - uid: 3577
+ components:
+ - type: Transform
+ pos: 53.5,26.5
+ parent: 5350
+ - uid: 3594
+ components:
+ - type: Transform
+ pos: 55.5,25.5
+ parent: 5350
- uid: 3601
components:
- type: Transform
@@ -51127,6 +51117,11 @@ entities:
- type: Transform
pos: -52.5,6.5
parent: 5350
+ - uid: 4251
+ components:
+ - type: Transform
+ pos: 54.5,25.5
+ parent: 5350
- uid: 4295
components:
- type: Transform
@@ -54377,16 +54372,6 @@ entities:
- type: Transform
pos: 53.5,26.5
parent: 5350
- - uid: 13306
- components:
- - type: Transform
- pos: 53.5,25.5
- parent: 5350
- - uid: 13307
- components:
- - type: Transform
- pos: 51.5,25.5
- parent: 5350
- uid: 13309
components:
- type: Transform
@@ -54957,6 +54942,11 @@ entities:
- type: Transform
pos: -27.5,-35.5
parent: 5350
+ - uid: 15310
+ components:
+ - type: Transform
+ pos: 53.5,25.5
+ parent: 5350
- uid: 15316
components:
- type: Transform
@@ -56732,11 +56722,6 @@ entities:
- type: Transform
pos: 48.5,19.5
parent: 5350
- - uid: 23474
- components:
- - type: Transform
- pos: 50.5,25.5
- parent: 5350
- uid: 23475
components:
- type: Transform
@@ -59805,6 +59790,12 @@ entities:
- type: Transform
pos: -58.5,31.5
parent: 5350
+ - uid: 3539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -38.5,-48.5
+ parent: 5350
- uid: 3701
components:
- type: Transform
@@ -64086,6 +64077,9 @@ entities:
parent: 5350
- uid: 14400
components:
+ - type: MetaData
+ desc: In memoriam.
+ name: Cuck chair
- type: Transform
pos: -7.5,-23.5
parent: 5350
@@ -67376,6 +67370,13 @@ entities:
- type: Transform
pos: 20.52728,22.507175
parent: 5350
+- proto: ClothingHeadHatBeret
+ entities:
+ - uid: 331
+ components:
+ - type: Transform
+ pos: -7.5168314,-23.53996
+ parent: 5350
- proto: ClothingHeadHatBeretBrigmedic
entities:
- uid: 10732
@@ -84094,7 +84095,7 @@ entities:
pos: 31.5,-33.5
parent: 5350
- type: Door
- secondsUntilStateChange: -30609.637
+ secondsUntilStateChange: -31975.576
state: Closing
- uid: 9615
components:
@@ -87760,14 +87761,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17230
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-45.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17253
components:
- type: Transform
@@ -101838,22 +101831,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14174
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-45.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14192
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-45.5
- parent: 5350
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14257
components:
- type: Transform
@@ -118548,17 +118525,6 @@ entities:
parent: 5350
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6116
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -38.5,-46.5
- parent: 5350
- - type: DeviceNetwork
- deviceLists:
- - 19295
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 6456
components:
- type: Transform
@@ -119206,6 +119172,15 @@ entities:
- 24697
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 13307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-45.5
+ parent: 5350
+ - type: DeviceNetwork
+ deviceLists:
+ - 19295
- uid: 13406
components:
- type: Transform
@@ -133518,16 +133493,6 @@ entities:
Step 6: Enjoy.
NOTE: If you are doing this multiple times, you will need more than one container, otherwise the heated container will automatically form the electrolyzed water into hydroxide.
- - uid: 28660
- components:
- - type: Transform
- pos: -39.35005,4.4683704
- parent: 5350
- - uid: 28661
- components:
- - type: Transform
- pos: -39.1313,4.5933704
- parent: 5350
- proto: PaperBin
entities:
- uid: 1531
@@ -137642,11 +137607,6 @@ entities:
- type: Transform
pos: -31.5,-45.5
parent: 5350
- - uid: 15310
- components:
- - type: Transform
- pos: -37.5,-45.5
- parent: 5350
- uid: 15485
components:
- type: Transform
@@ -137810,6 +137770,12 @@ entities:
parent: 5350
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 17230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -36.5,-47.5
+ parent: 5350
- uid: 17453
components:
- type: Transform
@@ -140360,11 +140326,6 @@ entities:
- type: Transform
pos: -24.5,18.5
parent: 5350
- - uid: 3594
- components:
- - type: Transform
- pos: -40.5,2.5
- parent: 5350
- uid: 6207
components:
- type: Transform
@@ -151373,16 +151334,6 @@ entities:
- type: Transform
pos: -40.5,10.5
parent: 5350
- - uid: 22922
- components:
- - type: Transform
- pos: -38.5,3.5
- parent: 5350
- - uid: 22947
- components:
- - type: Transform
- pos: -41.5,5.5
- parent: 5350
- uid: 22958
components:
- type: Transform
@@ -151440,6 +151391,18 @@ entities:
- type: Transform
pos: 38.5,-10.5
parent: 5350
+- proto: SpawnPointCourier
+ entities:
+ - uid: 22922
+ components:
+ - type: Transform
+ pos: -38.5,3.5
+ parent: 5350
+ - uid: 22947
+ components:
+ - type: Transform
+ pos: -41.5,5.5
+ parent: 5350
- proto: SpawnPointDetective
entities:
- uid: 9977
@@ -160927,6 +160890,13 @@ entities:
- type: Transform
pos: 26.5,0.5
parent: 5350
+- proto: VendingMachineCourierDrobe
+ entities:
+ - uid: 17492
+ components:
+ - type: Transform
+ pos: -40.5,2.5
+ parent: 5350
- proto: VendingMachineCuraDrobe
entities:
- uid: 11271
@@ -174865,6 +174835,12 @@ entities:
- type: Transform
pos: -20.5,42.5
parent: 5350
+ - uid: 13306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-47.5
+ parent: 5350
- uid: 13314
components:
- type: Transform
@@ -175000,6 +174976,12 @@ entities:
- type: Transform
pos: -34.5,-29.5
parent: 5350
+ - uid: 14174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-45.5
+ parent: 5350
- uid: 14194
components:
- type: Transform
@@ -175897,11 +175879,6 @@ entities:
- type: Transform
pos: 9.5,-31.5
parent: 5350
- - uid: 16491
- components:
- - type: Transform
- pos: -38.5,-44.5
- parent: 5350
- uid: 16510
components:
- type: Transform
@@ -184777,7 +184754,7 @@ entities:
pos: -28.5,-5.5
parent: 5350
- type: Door
- secondsUntilStateChange: -36321.543
+ secondsUntilStateChange: -37687.484
state: Opening
- type: ContainerContainer
containers:
diff --git a/Resources/Maps/_Impstation/train.yml b/Resources/Maps/_Impstation/train.yml
index 7ff81b421f96..f24df70e86a7 100644
--- a/Resources/Maps/_Impstation/train.yml
+++ b/Resources/Maps/_Impstation/train.yml
@@ -6322,6 +6322,7 @@ entities:
- 7542
- 9971
- 7496
+ - 387
- uid: 31
components:
- type: Transform
@@ -6338,6 +6339,9 @@ entities:
- 7489
- 7543
- 7542
+ - 388
+ - 9780
+ - 9980
- uid: 32
components:
- type: Transform
@@ -9602,12 +9606,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 0.5,-141.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 30
- uid: 388
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 1.5,-149.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31
- uid: 389
components:
- type: Transform
@@ -38308,13 +38318,16 @@ entities:
- type: ContainerContainer
containers:
lens_slot: !type:ContainerSlot {}
-- proto: ClothingEyesHudOnionBeer
+- proto: ClothingEyesGlassesOutlawGlasses
entities:
- uid: 5525
components:
- type: Transform
- pos: 17.613636,-73.25992
+ pos: 17.5,-73.5
parent: 2
+ - type: ContainerContainer
+ containers:
+ lens_slot: !type:ContainerSlot {}
- proto: ClothingEyesHudSecurity
entities:
- uid: 5526
@@ -38429,6 +38442,13 @@ entities:
- type: Transform
pos: -7.7489276,-255.68477
parent: 2
+- proto: ClothingHeadHatBunny
+ entities:
+ - uid: 18992
+ components:
+ - type: Transform
+ pos: 17.5,-69.5
+ parent: 2
- proto: ClothingHeadHatCowboyBountyHunter
entities:
- uid: 5543
@@ -71499,6 +71519,9 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,-149.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 9781
@@ -73570,6 +73593,9 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,-148.5
parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 31
- type: AtmosPipeColor
color: '#990000FF'
- uid: 9982
diff --git a/Resources/Maps/amber.yml b/Resources/Maps/amber.yml
index acaebac8aab9..bb07d0481304 100644
--- a/Resources/Maps/amber.yml
+++ b/Resources/Maps/amber.yml
@@ -81,59 +81,59 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: CQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDwAAAAADDwAAAAAADwAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDwAAAAACDwAAAAAADwAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAACGgAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADDwAAAAABDwAAAAADDwAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAAGgAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDwAAAAAADwAAAAAADwAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADwAAAAAADwAAAAABDwAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAADCQAAAAACGgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADwAAAAADDwAAAAAADwAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAADGgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: CQAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAACQAAAAAACQAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABDgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAACCQAAAAABCQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: IwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAAGgAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAABHAAAAAACHAAAAAACIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAADIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAADHAAAAAACIwAAAAACIwAAAAACIwAAAAADIwAAAAADIwAAAAACHAAAAAADHAAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAAASQAAAAABSQAAAAABHAAAAAABHAAAAAAASQAAAAACSQAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAADKQAAAAAAKwAAAAABKwAAAAABKwAAAAAADgAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAADSQAAAAACSQAAAAADHAAAAAADHAAAAAAASQAAAAABSQAAAAAAHAAAAAAADgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAADCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAA
+ tiles: IwAAAAACIwAAAAAAIwAAAAABIwAAAAACIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABIwAAAAADIwAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAAGgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAACCQAAAAADHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAHAAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABIwAAAAADIwAAAAACIwAAAAAAIwAAAAADIwAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAACHAAAAAABSQAAAAAASQAAAAAAHAAAAAABHAAAAAADSQAAAAACSQAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAAAHAAAAAABKQAAAAAAKwAAAAABKwAAAAADKwAAAAADDgAAAAAACQAAAAACHAAAAAABDgAAAAAAHAAAAAAASQAAAAAASQAAAAABHAAAAAABHAAAAAABSQAAAAADSQAAAAAAHAAAAAADDgAAAAAAKwAAAAADKwAAAAABKwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIQAAAAABCQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAADgAAAAAAIQAAAAAD
version: 6
-1,-4:
ind: -1,-4
- tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAACHAAAAAADHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAADAQAAAAADIwAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAABAQAAAAACIwAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACIwAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADIwAAAAACIwAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAAQAAAAADAQAAAAABAQAAAAAADgAAAAAAIwAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAABIwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAA
+ tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAAQAAAAABAQAAAAACAQAAAAAAAQAAAAABAQAAAAAAIwAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAAAIwAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABAQAAAAAAAQAAAAACAQAAAAACAQAAAAADAQAAAAABIwAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAACDgAAAAAAIwAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABIwAAAAACIwAAAAADIwAAAAACIwAAAAABIwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAAC
version: 6
-1,-5:
ind: -1,-5
- tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: CQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAJLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAMAAAAAABMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAMAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAMAAAAAAKDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAADHAAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAADCQAAAAABHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADLwAAAAACLwAAAAADLwAAAAABLwAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAABAQAAAAADLwAAAAABLwAAAAADLwAAAAABAQAAAAADAQAAAAABAQAAAAAALwAAAAAALwAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADAQAAAAAALwAAAAADLwAAAAACLwAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACLwAAAAABLwAAAAABLwAAAAADAQAAAAADAQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAALwAAAAADLwAAAAABLwAAAAABAQAAAAAAAQAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAMAAAAAAAMAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAMAAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAMAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACHAAAAAABHAAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACLwAAAAABLwAAAAADLwAAAAABLwAAAAABLwAAAAACLwAAAAABLwAAAAAALwAAAAADLwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAABLwAAAAAALwAAAAAAAQAAAAACLwAAAAAALwAAAAACLwAAAAABAQAAAAABAQAAAAAAAQAAAAAALwAAAAAALwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAAAAQAAAAAALwAAAAACLwAAAAAALwAAAAACAQAAAAADAQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABLwAAAAADLwAAAAABLwAAAAACAQAAAAABAQAAAAABDgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAADLwAAAAABLwAAAAACLwAAAAAAAQAAAAACAQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: AQAAAAACLwAAAAABLwAAAAADLwAAAAADAQAAAAACAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACAQAAAAADLwAAAAACLwAAAAABLwAAAAADAQAAAAACAQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABCQAAAAAACQAAAAADDgAAAAAAMQAAAAADDgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAADMQAAAAADMQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABDgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACLgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: AQAAAAAALwAAAAADLwAAAAAALwAAAAACAQAAAAABAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACAQAAAAAALwAAAAABLwAAAAACLwAAAAACAQAAAAADAQAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAALwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABCQAAAAACCQAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAABMQAAAAABMQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAABCQAAAAACCQAAAAAACAAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAABHAAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAAACQAAAAADHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAAACQAAAAADCQAAAAABCQAAAAACHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAACDgAAAAAACQAAAAACCQAAAAACHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADCQAAAAABDgAAAAAAHAAAAAABHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAAACQAAAAAD
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACQAAAAACCQAAAAACCQAAAAADCAAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAAAHAAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAAHQAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAAHQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAABCQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADDgAAAAAACQAAAAACCQAAAAABHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAACQAAAAABDgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADCQAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: MwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACCQAAAAADCQAAAAAACQAAAAABDgAAAAAANwAAAAABNwAAAAADNwAAAAAANwAAAAADCQAAAAACMwAAAAADMwAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAANwAAAAADNwAAAAADNwAAAAADNwAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAADMwAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAABCQAAAAABCQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAADOAAAAAAAOAAAAAACOAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAAOAAAAAABOAAAAAAAOAAAAAADOAAAAAACOAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABOAAAAAAAOAAAAAADOAAAAAADOAAAAAABOAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAACDgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAABCQAAAAADDgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACAAAAAAACQAAAAADCQAAAAAB
+ tiles: MwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAACMwAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAANwAAAAADNwAAAAABNwAAAAAANwAAAAADCQAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAANwAAAAACNwAAAAACNwAAAAADNwAAAAADDgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABMwAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAACHAAAAAABCQAAAAADCQAAAAADCQAAAAADDgAAAAAAOAAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAADHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACOAAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAAAOAAAAAADOAAAAAAAOAAAAAADOAAAAAAAOAAAAAACHAAAAAADHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAOAAAAAABOAAAAAACOAAAAAAAOAAAAAAAOAAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAABCAAAAAAACQAAAAACCQAAAAAB
version: 6
-2,-3:
ind: -2,-3
- tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABDgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAAAMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAADHAAAAAACHAAAAAACHAAAAAACMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAABHAAAAAADHAAAAAAAHAAAAAAAMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAAAHAAAAAADHAAAAAAAHAAAAAADMwAAAAADMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAD
+ tiles: DgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAADIwAAAAABIwAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABHAAAAAACDgAAAAAAMwAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAAMwAAAAAAMwAAAAACMwAAAAACMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAABHAAAAAADHAAAAAADMwAAAAACMwAAAAABMwAAAAADMwAAAAACMwAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAADHAAAAAADHAAAAAABMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAAHAAAAAACHAAAAAAAHAAAAAAAMwAAAAACMwAAAAADMwAAAAACMwAAAAAAMwAAAAADMwAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAADCQAAAAABHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACMwAAAAADMwAAAAADMwAAAAAAMwAAAAABMwAAAAADMwAAAAADMwAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: DgAAAAAAHAAAAAABHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAACHAAAAAAAHAAAAAACOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAACHAAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACDgAAAAAAOQAAAAAAOQAAAAADDgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAABCQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAAIwAAAAADDgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAIwAAAAACDgAAAAAAIwAAAAABIwAAAAABDgAAAAAAHAAAAAAAHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAABIwAAAAABDgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAAADgAAAAAAIwAAAAADIwAAAAAA
+ tiles: DgAAAAAAHAAAAAACHAAAAAADOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACOgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAHAAAAAADHAAAAAABHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAOQAAAAADOQAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIwAAAAABDgAAAAAAIwAAAAAAIwAAAAACDgAAAAAAHAAAAAACHAAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAADIwAAAAACIwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABHAAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAACIwAAAAAAIwAAAAADDgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAIwAAAAACIwAAAAAB
version: 6
-2,-5:
ind: -2,-5
- tiles: CQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: DgAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAACHAAAAAACDgAAAAAAHAAAAAACHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAABMwAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAACIwAAAAABIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAMwAAAAABMwAAAAABMwAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAALwAAAAACDgAAAAAADgAAAAAAMwAAAAABMwAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAC
+ tiles: DgAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAAMwAAAAADMwAAAAABMwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAABMwAAAAADMwAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAALwAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAD
version: 6
-2,1:
ind: -2,1
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACAQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAACAQAAAAABAQAAAAAAAQAAAAACAQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACAQAAAAACDgAAAAAADgAAAAAA
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAADDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAABAQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAAQAAAAADAQAAAAADAQAAAAADAQAAAAAAAQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAABAQAAAAAADgAAAAAADgAAAAAA
version: 6
-2,2:
ind: -2,2
@@ -141,31 +141,31 @@ entities:
version: 6
-3,-1:
ind: -3,-1
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAHAAAAAACHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAADCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAABLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAAHAAAAAADHAAAAAABLgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAAHQAAAAAACQAAAAACCQAAAAACCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADgAAAAAAHAAAAAACHAAAAAADLgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: CQAAAAABMwAAAAACMwAAAAACMwAAAAACMwAAAAABMwAAAAABMwAAAAACMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAAAMwAAAAAAMwAAAAADCQAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAAAMwAAAAABMwAAAAAAMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAADMwAAAAAADgAAAAAACQAAAAABDgAAAAAAMwAAAAABMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADMwAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAADMwAAAAACDgAAAAAACQAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAABMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAADCQAAAAABDgAAAAAAMwAAAAABMwAAAAABMwAAAAADMwAAAAAAMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAAAMwAAAAACMwAAAAAAMwAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAABHAAAAAACDgAAAAAAMwAAAAABMwAAAAABMwAAAAAAMwAAAAADCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAAHAAAAAACDgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAABHAAAAAADHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA
+ tiles: CQAAAAABMwAAAAAAMwAAAAACMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAMwAAAAACMwAAAAAAMwAAAAACCQAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACCAAAAAAACAAAAAAACAAAAAAACQAAAAAAMwAAAAAAMwAAAAADDgAAAAAACQAAAAAADgAAAAAAMwAAAAAAMwAAAAADMwAAAAACMwAAAAAAMwAAAAACMwAAAAACMwAAAAABCAAAAAAACAAAAAAACAAAAAAACQAAAAACMwAAAAABMwAAAAABDgAAAAAACQAAAAADMwAAAAACMwAAAAADMwAAAAABMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAACMwAAAAACMwAAAAABMwAAAAABCQAAAAACDgAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAACMwAAAAABMwAAAAABMwAAAAABMwAAAAADMwAAAAADMwAAAAABMwAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAADMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAMwAAAAADMwAAAAABMwAAAAAAMwAAAAACDgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAADHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAMwAAAAAAMwAAAAACMwAAAAABMwAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAAHAAAAAABHAAAAAABHAAAAAABDgAAAAAAHAAAAAACDgAAAAAAMwAAAAACMwAAAAADMwAAAAAAMwAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAAHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAABHAAAAAADHAAAAAADDgAAAAAAMwAAAAACMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADHAAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAACDgAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAADCQAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAADMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAACQAAAAADDgAAAAAAMwAAAAADMwAAAAADMwAAAAABMwAAAAABMwAAAAADMwAAAAACMwAAAAACMwAAAAACMwAAAAAAMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAAB
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADHAAAAAABHAAAAAAAHAAAAAACHAAAAAADDgAAAAAAMwAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADHAAAAAABHAAAAAABHAAAAAACHAAAAAADDgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABMwAAAAACMwAAAAAAMwAAAAAAMwAAAAACMwAAAAADDgAAAAAACQAAAAABDgAAAAAAMwAAAAAAMwAAAAADMwAAAAADMwAAAAADMwAAAAACMwAAAAADMwAAAAADMwAAAAACMwAAAAACMwAAAAABMwAAAAAAMwAAAAACMwAAAAABMwAAAAAC
version: 6
-3,-4:
ind: -3,-4
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAACIwAAAAABDgAAAAAACQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAADDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAAHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAIwAAAAAAIwAAAAABIwAAAAABDgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHAAAAAABIwAAAAACIwAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAACMQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAACCQAAAAAC
version: 6
-3,-5:
ind: -3,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAABCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAADCQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAAB
version: 6
-3,0:
ind: -3,0
- tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACDgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAADDgAAAAAACQAAAAADDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAABDgAAAAAAMwAAAAABDgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABDgAAAAAACQAAAAABDgAAAAAACQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -173,23 +173,23 @@ entities:
version: 6
-4,-1:
ind: -4,-1
- tiles: HAAAAAAADgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: HAAAAAABDgAAAAAAHAAAAAAAHAAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAADLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAACHAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAACQAAAAACCQAAAAACLgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAADHAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACLgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAC
+ tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAMQAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAACQAAAAACLAAAAAAADgAAAAAACQAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADLgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAD
version: 6
-4,-4:
ind: -4,-4
- tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAA
+ tiles: LAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACLAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAA
version: 6
-5,-1:
ind: -5,-1
- tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAACOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABOwAAAAAADgAAAAAADgAAAAAAOwAAAAAAOwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAADgAAAAAADgAAAAAAOgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACOgAAAAAAOwAAAAAAOgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-5,-2:
ind: -5,-2
@@ -205,31 +205,31 @@ entities:
version: 6
0,-1:
ind: 0,-1
- tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAABAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: GwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAAQAAAAACAQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAAQAAAAABAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAAQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: IQAAAAACIQAAAAADDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADwAAAAABDwAAAAADDwAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAADCQAAAAADDwAAAAAAMgAAAAAADwAAAAAACQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDwAAAAACDwAAAAAADwAAAAABCQAAAAACHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAADDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAA
+ tiles: IQAAAAACIQAAAAACDgAAAAAADgAAAAAADgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABDwAAAAADDwAAAAADDwAAAAACCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAACQAAAAAACQAAAAACCQAAAAABDwAAAAACMgAAAAAADwAAAAABCQAAAAADHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADDwAAAAAADwAAAAACDwAAAAABCQAAAAABHgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAMgAAAAAAMgAAAAAAMgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMgAAAAAAMgAAAAAAMgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACDgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: CQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAADgAAAAAAAQAAAAACAQAAAAABDgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAADGwAAAAAADgAAAAAAGwAAAAAAAQAAAAACAQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACAQAAAAACDgAAAAAADgAAAAAAIwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAABIQAAAAACIQAAAAADDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAABDgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAABIQAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAABCQAAAAAB
+ tiles: CQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAAIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAABAQAAAAACDgAAAAAACQAAAAADCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAAIwAAAAACIwAAAAACGwAAAAAADgAAAAAAGwAAAAAAAQAAAAABAQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABDgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACgAAAAAACgAAAAAACgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAACGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACgAAAAAACgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAABAQAAAAACAQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAAAQAAAAADDgAAAAAADgAAAAAAIwAAAAABGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAPwAAAAAAPwAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAAIwAAAAACIwAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAAIwAAAAACIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIQAAAAACIQAAAAADDgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABIQAAAAABIQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAB
version: 6
0,-4:
ind: 0,-4
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAAAHAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAABCQAAAAADCQAAAAABCQAAAAADDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAADIwAAAAAAAQAAAAADAQAAAAACAQAAAAAAAQAAAAABAQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAAMQAAAAADDgAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAABCQAAAAABCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAABAQAAAAADAQAAAAADAQAAAAACAQAAAAAAAQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAAADgAAAAAAAQAAAAACAQAAAAADAQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAACQAAAAABCQAAAAACCQAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAACDgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAABHAAAAAACHAAAAAADDgAAAAAACQAAAAAACQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAADCQAAAAAACQAAAAACCQAAAAAADgAAAAAAMQAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACHAAAAAACDgAAAAAAHAAAAAAAHAAAAAADHAAAAAACDgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAAMQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAAMQAAAAABDgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAABIwAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAADAQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAAMQAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAADIwAAAAADAQAAAAADAQAAAAADAQAAAAABAQAAAAADAQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAACAQAAAAADAQAAAAADAQAAAAACAQAAAAABAQAAAAABCQAAAAABCQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAIwAAAAAAIwAAAAABIwAAAAACIwAAAAADDgAAAAAAAQAAAAABAQAAAAAAAQAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAACQAAAAACCQAAAAACCQAAAAAC
version: 6
0,-5:
ind: 0,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAGLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAAALgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABLwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAAALwAAAAACLwAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAADgAAAAAALwAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAAMAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACLgAAAAAALAAAAAAALAAAAAAAMAAAAAAADgAAAAAADgAAAAAAMAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAADCQAAAAADLwAAAAABLwAAAAACLwAAAAAALwAAAAABLwAAAAACLwAAAAADLwAAAAADLwAAAAADLwAAAAACLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAAADgAAAAAALwAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: CQAAAAABCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAAAHAAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA
+ tiles: CQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAAACQAAAAABCQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACDgAAAAAAHAAAAAADHAAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAABHAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAA
version: 6
0,2:
ind: 0,2
@@ -237,19 +237,19 @@ entities:
version: 6
1,-1:
ind: 1,-1
- tiles: HgAAAAAADgAAAAAASgAAAAABHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAASgAAAAAASgAAAAACSgAAAAACSgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAAGwAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAAwAAAAADHAAAAAADHAAAAAABHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAAD
+ tiles: HgAAAAAADgAAAAAASgAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAASgAAAAAASgAAAAAASgAAAAADSgAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAAHAAAAAACHAAAAAADCQAAAAACCQAAAAADDgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACDgAAAAAAGwAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAACAwAAAAABGwAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADGwAAAAAADgAAAAAADgAAAAAAAwAAAAAAHAAAAAACHAAAAAABHAAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADDgAAAAAACQAAAAADCQAAAAAD
version: 6
1,-2:
ind: 1,-2
- tiles: CQAAAAADCQAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAACCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAACDwAAAAADCQAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACDgAAAAAAHAAAAAAADgAAAAAAHAAAAAABCQAAAAADDwAAAAAACQAAAAADCQAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAADCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAAHAAAAAABDgAAAAAAHAAAAAACCQAAAAADCQAAAAAACQAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAACDgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAB
+ tiles: CQAAAAAACQAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAABCQAAAAABCQAAAAACCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAADHAAAAAACHAAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAABCQAAAAABDgAAAAAAHAAAAAABHAAAAAABHAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAABDgAAAAAAHAAAAAACDgAAAAAAHAAAAAACCQAAAAABDwAAAAACCQAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAAHAAAAAAADgAAAAAAHAAAAAAACQAAAAACDwAAAAABCQAAAAADCQAAAAADHAAAAAADHAAAAAABHAAAAAACHAAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADHAAAAAACDgAAAAAAHAAAAAACCQAAAAADCQAAAAACCQAAAAADHAAAAAACDgAAAAAAHAAAAAADHAAAAAADHAAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAACCQAAAAADCQAAAAADDgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAACQAAAAACCQAAAAAC
version: 6
1,-3:
ind: 1,-3
- tiles: DgAAAAAAIwAAAAACIwAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAAIwAAAAACIwAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAIwAAAAADIwAAAAABIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABIwAAAAAAIwAAAAABIwAAAAADIwAAAAABJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADIwAAAAACIwAAAAACIwAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAABIwAAAAABJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAACCQAAAAAACQAAAAABCQAAAAADDgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAABDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAAIwAAAAABIwAAAAABIwAAAAAAIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAABDgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAABHAAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAADCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA
+ tiles: DgAAAAAAIwAAAAABIwAAAAAAIwAAAAACIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAABIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAAIwAAAAAAIwAAAAACIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAACJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACIwAAAAADIwAAAAACIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAIwAAAAACIwAAAAABIwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAACQAAAAABDgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAACJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAIwAAAAAAIwAAAAACIwAAAAABIwAAAAADDgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAAIwAAAAACIwAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAAQQAAAAACQQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAIwAAAAAAIwAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAAQQAAAAAAQQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAADIwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABIwAAAAABIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAADIwAAAAADIwAAAAACDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAABIwAAAAADIwAAAAAAIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAAIwAAAAABIwAAAAACDgAAAAAAMwAAAAACMwAAAAAADgAAAAAAQQAAAAAAQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAAIwAAAAADIwAAAAADDgAAAAAAMwAAAAAAMwAAAAABDgAAAAAAQQAAAAABQQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAMQAAAAAAMQAAAAADMQAAAAABDgAAAAAAMQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABMQAAAAAAMQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADIwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAACIwAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAACIwAAAAADIwAAAAAAIwAAAAADDgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAACIwAAAAABIwAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALAAAAAAA
version: 6
1,-5:
ind: 1,-5
@@ -257,11 +257,11 @@ entities:
version: 6
1,0:
ind: 1,0
- tiles: DgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAAAHAAAAAABHAAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABHAAAAAABDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAAAwAAAAAAAwAAAAADHAAAAAADHAAAAAACHAAAAAABDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAACCQAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAABHAAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAACDgAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAABHAAAAAAADgAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAACCQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAABCQAAAAABDgAAAAAACQAAAAABHAAAAAABHAAAAAAACQAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAABCQAAAAABCQAAAAADCQAAAAADCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAACHAAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACDgAAAAAACQAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAC
+ tiles: DgAAAAAADgAAAAAAAwAAAAABAwAAAAACHAAAAAADHAAAAAADHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAAwAAAAACAwAAAAADHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADCQAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACDgAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAACCQAAAAAACQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAACHAAAAAAADgAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAADHAAAAAADDgAAAAAACQAAAAABCQAAAAAAGwAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAABCQAAAAABCQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAAACQAAAAACDgAAAAAACQAAAAABHAAAAAACHAAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAACHAAAAAADDgAAAAAACQAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAABCQAAAAACCQAAAAACCQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAACQAAAAADLwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAACQAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAACQAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAAB
version: 6
1,1:
ind: 1,1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAAABAAAAAADCQAAAAAACQAAAAADCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAAACQAAAAACRwAAAAABRwAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAADDgAAAAAADgAAAAAABAAAAAACCQAAAAABCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAACQAAAAAACQAAAAAACQAAAAABCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAABCQAAAAACBAAAAAAACQAAAAAACQAAAAABCQAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAACQAAAAADCQAAAAADRwAAAAAARwAAAAACCQAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAADgAAAAAABAAAAAABCQAAAAADCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
1,2:
ind: 1,2
@@ -269,55 +269,55 @@ entities:
version: 6
2,-1:
ind: 2,-1
- tiles: CQAAAAADDgAAAAAAQAAAAAACQAAAAAACDwAAAAABQAAAAAAAQAAAAAABQAAAAAADQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAACCQAAAAACDgAAAAAAQAAAAAAAQAAAAAABDwAAAAACQAAAAAABQAAAAAACDgAAAAAAQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAADQAAAAAACDwAAAAAAQAAAAAADQAAAAAADQAAAAAACQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAACDgAAAAAAQAAAAAACQAAAAAADQAAAAAACQAAAAAADQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAAAIwAAAAACIwAAAAADIwAAAAABIwAAAAADDgAAAAAAHAAAAAADHAAAAAACHAAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAADDgAAAAAAIwAAAAADIwAAAAACIwAAAAABIwAAAAAAIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAAAIwAAAAAAIwAAAAABIwAAAAABIwAAAAACDgAAAAAAHAAAAAABHAAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAADCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAABCQAAAAAADgAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAADCAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAADDgAAAAAAQAAAAAAAQAAAAAADDwAAAAABQAAAAAACQAAAAAAAQAAAAAADQAAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABDgAAAAAACQAAAAAACQAAAAABDgAAAAAAQAAAAAABQAAAAAADDwAAAAACQAAAAAAAQAAAAAADDgAAAAAAQAAAAAABDgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAAQAAAAAAAQAAAAAAADwAAAAACQAAAAAACQAAAAAABQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAACQAAAAAABQAAAAAABDgAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAADDgAAAAAADgAAAAAAGwAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAADIwAAAAAAIwAAAAADIwAAAAABDgAAAAAAHAAAAAADHAAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAARAAAAAAACQAAAAABDgAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAADIwAAAAAADgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAAIwAAAAABIwAAAAACIwAAAAABIwAAAAACIwAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAACQAAAAAACQAAAAABDgAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAABHAAAAAACHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAADCQAAAAADDgAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAGwAAAAAACQAAAAADCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAACQAAAAABCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAACQAAAAAACAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: CQAAAAAACQAAAAACCQAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAACDgAAAAAAOQAAAAAAOQAAAAACOQAAAAADOQAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAADOQAAAAACOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAAACQAAAAABOQAAAAABOQAAAAACOQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAAAHAAAAAABHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAACHAAAAAABHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAABCQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABLwAAAAACDgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAADDgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAADCQAAAAAACQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAAAGgAAAAAALwAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAABCQAAAAADCQAAAAACCQAAAAADCQAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADGgAAAAADCQAAAAADCQAAAAABCQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAAACQAAAAADGgAAAAABLwAAAAABCQAAAAABDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAADGgAAAAABDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAADQAAAAAADQAAAAAADQAAAAAACQAAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAABGgAAAAACLwAAAAABCQAAAAADDgAAAAAAQAAAAAADQAAAAAAAQAAAAAABQAAAAAAAQAAAAAADQAAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAABDgAAAAAAQAAAAAACQAAAAAAADwAAAAAAQAAAAAAAQAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAB
+ tiles: CQAAAAADCQAAAAAACQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAADCQAAAAABDgAAAAAAOQAAAAAAOQAAAAAAOQAAAAABOQAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAOQAAAAABOQAAAAADOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAACQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAAOQAAAAAAOQAAAAABOQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAACQAAAAAARQAAAAAARQAAAAAARQAAAAAACQAAAAABHAAAAAADHAAAAAADHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACRQAAAAAARQAAAAAARQAAAAAACQAAAAACHAAAAAAAHAAAAAACHAAAAAACDgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAACCQAAAAADRQAAAAAARQAAAAAARQAAAAAACQAAAAADHAAAAAAAHAAAAAAAHAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAABGgAAAAABLwAAAAACDgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACGgAAAAADDgAAAAAACQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAACCQAAAAABCQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABCQAAAAADCQAAAAABGgAAAAADLwAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAADCQAAAAACCQAAAAADCQAAAAABCQAAAAAACQAAAAADCQAAAAABCQAAAAADGgAAAAAACQAAAAAACQAAAAAACQAAAAACCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAABCQAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAABGgAAAAABLwAAAAAACQAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAAGgAAAAACDgAAAAAACQAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACQAAAAAAAQAAAAAACQAAAAAADDgAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADGgAAAAABLwAAAAADCQAAAAADDgAAAAAAQAAAAAACQAAAAAADQAAAAAABQAAAAAABQAAAAAADQAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAABDgAAAAAAQAAAAAACQAAAAAACDwAAAAAAQAAAAAACQAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAC
version: 6
2,-3:
ind: 2,-3
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAACCQAAAAACHAAAAAACHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAACCQAAAAAACQAAAAABCQAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAAHAAAAAABCQAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABIQAAAAACIQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABCQAAAAADCQAAAAADCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAAACQAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAAAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAABHAAAAAAAHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAADHAAAAAABHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAIQAAAAACDgAAAAAADgAAAAAADgAAAAAAHAAAAAABCQAAAAACCQAAAAACCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACDgAAAAAAHAAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAACDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAABDgAAAAAADgAAAAAACQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIQAAAAACIQAAAAADIQAAAAACDgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAAACQAAAAADCQAAAAACCQAAAAADCQAAAAADCQAAAAAACQAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAACDgAAAAAADgAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACCQAAAAAACQAAAAADCQAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAACIwAAAAADDgAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAACMQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAAAMwAAAAADMwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA
+ tiles: DgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAOwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAAMQAAAAABMQAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAABHAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAACHAAAAAADHAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABHAAAAAACHAAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABLgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADRwAAAAACLAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAACHAAAAAACDgAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: CQAAAAACCAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAACCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAABDgAAAAAAIwAAAAABDgAAAAAAIwAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAAACQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAAACAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAACQAAAAABCQAAAAACDgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAABDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAACQAAAAACCQAAAAACDgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAACDgAAAAAAIwAAAAAADgAAAAAAIwAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAADgAAAAAAHgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAADCQAAAAADDgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACCQAAAAADCQAAAAAADgAAAAAADgAAAAAAHgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAACCQAAAAACGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADCQAAAAABCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAACCQAAAAABDgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: CQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAAACQAAAAADBAAAAAABCQAAAAACDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAABDgAAAAAADgAAAAAADgAAAAAACQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAADCQAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAADCQAAAAACRwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAACQAAAAADDgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAACDgAAAAAADgAAAAAARwAAAAACDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: CQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAACQAAAAADCQAAAAAABAAAAAABCQAAAAABDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAABAAAAAADDgAAAAAADgAAAAAADgAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAABAAAAAACCQAAAAACDgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAACQAAAAABCQAAAAABRwAAAAACGwAAAAAAGwAAAAAAGwAAAAAACQAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAACQAAAAABDgAAAAAADgAAAAAARwAAAAABDgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: CQAAAAAACQAAAAACCQAAAAACCQAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA
+ tiles: CQAAAAAACQAAAAACCQAAAAADCQAAAAACCQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAACQAAAAABCQAAAAADCQAAAAABCQAAAAABGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAABCQAAAAACCQAAAAAACQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAABLwAAAAABLwAAAAADGgAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAAALwAAAAADLwAAAAADLwAAAAABGgAAAAAACQAAAAAACQAAAAADCQAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAAACQAAAAAACQAAAAABGgAAAAACCQAAAAACCQAAAAACCQAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAADGgAAAAAACQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAAALwAAAAADLwAAAAAAGgAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAABCQAAAAABCQAAAAADCQAAAAABCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAADDgAAAAAACQAAAAACCQAAAAADCQAAAAADCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAABCQAAAAACCQAAAAAACQAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAADLwAAAAADLwAAAAABLwAAAAACGgAAAAAACQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAADCQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAACLwAAAAADGgAAAAADCQAAAAACCQAAAAAACQAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAAACQAAAAADCQAAAAADCQAAAAACGgAAAAABCQAAAAAACQAAAAACCQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAABLwAAAAACLwAAAAABLwAAAAABGgAAAAADCQAAAAACCQAAAAADCQAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACAAAAAAACAAAAAAACAAAAAAADgAAAAAAGgAAAAACCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAADGgAAAAACCQAAAAADGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABCQAAAAAACQAAAAAACQAAAAABCQAAAAABCQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACCQAAAAACCQAAAAABCQAAAAAACQAAAAABCQAAAAACGwAAAAAADgAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAASAAAAAABSAAAAAADSAAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAACLAAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAACHAAAAAACSAAAAAACSAAAAAABSAAAAAACHAAAAAABHAAAAAAADgAAAAAAHAAAAAADSQAAAAAASQAAAAACLAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAACSAAAAAABSAAAAAADHAAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAACHAAAAAADHAAAAAADHAAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAASAAAAAACSAAAAAADSAAAAAADDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABDgAAAAAAHAAAAAABLAAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAASAAAAAABSAAAAAACSAAAAAACHAAAAAADHAAAAAACDgAAAAAAHAAAAAACSQAAAAAASQAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAASAAAAAACSAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAAAHAAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAASQAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAAGwAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAABDgAAAAAAGwAAAAAADgAAAAAAMQAAAAACDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAACRgAAAAABGwAAAAAARgAAAAADDgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAACDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAACMwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAADDgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA
+ tiles: DgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMQAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAHAAAAAADDgAAAAAAGwAAAAAADgAAAAAAMQAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAAGwAAAAAADgAAAAAARgAAAAAARgAAAAADGwAAAAAARgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAACMwAAAAABDgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACDgAAAAAAMwAAAAABDgAAAAAAMwAAAAACDgAAAAAAMwAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAADgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAMwAAAAABMwAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAACMwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAA
version: 6
3,-5:
ind: 3,-5
- tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAABMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACMwAAAAABDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAABIwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAADDgAAAAAARwAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAIwAAAAADIwAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAPAAAAAABLAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAALgAAAAAADgAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABIwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAADIwAAAAABDgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAIwAAAAACIwAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,1:
ind: 3,1
@@ -329,7 +329,7 @@ entities:
version: 6
5,-2:
ind: 5,-2
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAADQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABPQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAABDgAAAAAAQAAAAAABQAAAAAADQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAADDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAABMwAAAAAADgAAAAAAMwAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAADDgAAAAAALAAAAAAALAAAAAAAQAAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAACQAAAAAADDgAAAAAAQAAAAAAAQAAAAAABLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAABHAAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAAHAAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAAHAAAAAADHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAABDgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAPQAAAAADPQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAPQAAAAAADgAAAAAAQAAAAAAAQAAAAAABQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAADQAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAQAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAHAAAAAABRwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADDgAAAAAAMwAAAAACDgAAAAAADgAAAAAALAAAAAAADgAAAAAAQAAAAAAADgAAAAAALAAAAAAALAAAAAAAQAAAAAADDgAAAAAALgAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAAAMwAAAAADDgAAAAAALAAAAAAALgAAAAAADgAAAAAAQAAAAAAAQAAAAAACDgAAAAAAQAAAAAACQAAAAAACLAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADHAAAAAABDgAAAAAADgAAAAAAHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAADDgAAAAAADgAAAAAAHAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAAHAAAAAADDgAAAAAAHAAAAAADHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAA
version: 6
4,0:
ind: 4,0
@@ -341,7 +341,7 @@ entities:
version: 6
6,-2:
ind: 6,-2
- tiles: QAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: QAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABRwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
1,-6:
ind: 1,-6
@@ -349,15 +349,15 @@ entities:
version: 6
4,-3:
ind: 4,-3
- tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAABDgAAAAAADgAAAAAARwAAAAACMwAAAAACLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAAMwAAAAADLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAACRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAACMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABHAAAAAACDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAAAMwAAAAACMwAAAAAARwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAADDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALgAAAAAARwAAAAAAMwAAAAAAMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAAAMwAAAAAADgAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAADLAAAAAAALAAAAAAAMwAAAAAAMwAAAAADMwAAAAAAMwAAAAADDgAAAAAAMwAAAAABMwAAAAACMwAAAAADLAAAAAAASQAAAAACHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAAMwAAAAACMwAAAAADMwAAAAABDgAAAAAADgAAAAAARwAAAAABMwAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAAAMwAAAAADMwAAAAABMwAAAAADMwAAAAABLgAAAAAALAAAAAAADgAAAAAADgAAAAAAMwAAAAABLAAAAAAARwAAAAABRwAAAAACLAAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAABMwAAAAADMwAAAAAAMwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAAMwAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACHAAAAAADDgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAABMwAAAAACMwAAAAACRwAAAAAAMwAAAAACDgAAAAAADgAAAAAAMwAAAAADMwAAAAABDgAAAAAALgAAAAAADgAAAAAADgAAAAAAMwAAAAACLgAAAAAALgAAAAAARwAAAAACMwAAAAADMwAAAAABMwAAAAADMwAAAAABDgAAAAAAMwAAAAACMwAAAAADDgAAAAAARwAAAAABLAAAAAAADgAAAAAADgAAAAAALAAAAAAAMwAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAAAMwAAAAABMwAAAAAADgAAAAAAMwAAAAADMwAAAAACMwAAAAADLAAAAAAASQAAAAABHAAAAAACDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAARwAAAAABHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
2,-6:
ind: 2,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAADSQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADwAAAAAASQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAADwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,-6:
ind: -1,-6
- tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAADCQAAAAACCQAAAAADDgAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAACHAAAAAACHAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALgAAAAAARwAAAAABCQAAAAACDgAAAAAAHAAAAAABHAAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAADgAAAAAABAAAAAABBAAAAAAEDgAAAAAACQAAAAAADgAAAAAAHAAAAAAAHAAAAAABRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABCQAAAAAACQAAAAACCQAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAABAAAAAAECQAAAAADCQAAAAADDgAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAADHAAAAAADLgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAACQAAAAADDgAAAAAAHAAAAAAAHAAAAAAAHAAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAAADgAAAAAALgAAAAAARwAAAAABCQAAAAADDgAAAAAAHAAAAAADHAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAABDgAAAAAABAAAAAACBAAAAAADDgAAAAAACQAAAAADDgAAAAAAHAAAAAABHAAAAAACRwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAACCQAAAAACCQAAAAAACQAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAARwAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAARwAAAAACDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACLgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,2:
ind: -4,2
@@ -377,11 +377,11 @@ entities:
version: 6
0,-6:
ind: 0,-6
- tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAAADgAAAAAACQAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAARwAAAAACLgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAACDgAAAAAACQAAAAACCQAAAAADBAAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABBAAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAACDgAAAAAADgAAAAAACQAAAAACCQAAAAAACQAAAAABCQAAAAACRwAAAAABLgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAAACQAAAAAADgAAAAAADgAAAAAARwAAAAABLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAADPAAAAAAAIwAAAAACIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAACPAAAAAAFDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA
+ tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAAHAAAAAADDgAAAAAACQAAAAAACQAAAAADCQAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAAHAAAAAABDgAAAAAACQAAAAADCQAAAAABBAAAAAADDgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAACBAAAAAABDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAACQAAAAABCQAAAAAADgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAAIwAAAAADPAAAAAAGIwAAAAADIwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAAJAAAAAAAJAAAAAAADgAAAAAADgAAAAAAHQAAAAAADgAAAAAALgAAAAAALAAAAAAADgAAAAAAIwAAAAAAIwAAAAABPAAAAAAFDgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAA
version: 6
6,-3:
ind: 6,-3
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,1:
ind: -4,1
@@ -389,7 +389,7 @@ entities:
version: 6
5,-3:
ind: 5,-3
- tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAABMwAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAABQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAABDgAAAAAARwAAAAAAQAAAAAACDgAAAAAA
+ tiles: DgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAAMwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAAMwAAAAAAMwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAAQAAAAAACQAAAAAACQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAAPQAAAAADDgAAAAAAQAAAAAABDgAAAAAAQAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAAPQAAAAADDgAAAAAARwAAAAAAQAAAAAACDgAAAAAA
version: 6
-6,-5:
ind: -6,-5
@@ -397,23 +397,23 @@ entities:
version: 6
3,-6:
ind: 3,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAASQAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAACHAAAAAADSgAAAAACSgAAAAADSgAAAAACSgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAALgAAAAAASQAAAAADSQAAAAACHAAAAAACHAAAAAACSgAAAAADSgAAAAABSgAAAAABSgAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAAASQAAAAABSQAAAAABSQAAAAAAHAAAAAABHAAAAAACHAAAAAABDgAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAACLAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAARwAAAAABHAAAAAACSgAAAAACSgAAAAADSgAAAAACSgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADLgAAAAAASQAAAAABSQAAAAABHAAAAAABHAAAAAACSgAAAAACSgAAAAABSgAAAAACSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAABSQAAAAABSQAAAAAASQAAAAAAHAAAAAACHAAAAAABHAAAAAABDgAAAAAARwAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAACHAAAAAACHAAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALAAAAAAARwAAAAAALAAAAAAADgAAAAAADgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-5:
ind: 4,-5
- tiles: PAAAAAAAIwAAAAACDgAAAAAALAAAAAAAPAAAAAADDgAAAAAAIwAAAAABIwAAAAADIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAACRwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAACPAAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADPAAAAAABPAAAAAAELAAAAAAALgAAAAAALAAAAAAAPAAAAAAFIwAAAAACIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAFPAAAAAAFIwAAAAAARwAAAAACLAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAADDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAAFDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAACIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAAAHAAAAAADDgAAAAAADgAAAAAAHAAAAAABHAAAAAACSgAAAAADDgAAAAAADgAAAAAASgAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAACDgAAAAAALAAAAAAAHAAAAAABDgAAAAAADgAAAAAAHAAAAAABSgAAAAAADgAAAAAASgAAAAADSgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: PAAAAAACIwAAAAABDgAAAAAALAAAAAAAPAAAAAACDgAAAAAAIwAAAAABIwAAAAABIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAARwAAAAABDgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAABRwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAAIwAAAAABPAAAAAAFIwAAAAACDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADPAAAAAACPAAAAAACLAAAAAAALgAAAAAALAAAAAAAPAAAAAADIwAAAAAAIwAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABPAAAAAAEIwAAAAACRwAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAABPAAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAAIwAAAAADIwAAAAADDgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHAAAAAADHAAAAAACHAAAAAAADgAAAAAADgAAAAAAHAAAAAACHAAAAAABSgAAAAADDgAAAAAADgAAAAAASgAAAAADDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABDgAAAAAALAAAAAAAHAAAAAACDgAAAAAADgAAAAAAHAAAAAAASgAAAAABDgAAAAAASgAAAAACSgAAAAADDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-6:
ind: 4,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAADDgAAAAAAPAAAAAAAIwAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAABDgAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAADIwAAAAAADgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAGDgAAAAAADgAAAAAAIwAAAAADPAAAAAAEDgAAAAAAIwAAAAACIwAAAAABDgAAAAAARwAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAIwAAAAAADgAAAAAAPAAAAAACIwAAAAABDgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAIwAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAAPAAAAAAGIwAAAAACDgAAAAAAHQAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPAAAAAAADgAAAAAADgAAAAAAIwAAAAACPAAAAAAEDgAAAAAAIwAAAAABIwAAAAABDgAAAAAARwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,-1:
ind: 5,-1
- tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: DgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAAHAAAAAACDgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAAADgAAAAAARwAAAAABDgAAAAAARwAAAAACDgAAAAAARwAAAAACHAAAAAAADgAAAAAADgAAAAAALAAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAACDgAAAAAARwAAAAACDgAAAAAARwAAAAABDgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAHAAAAAABDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,-4:
ind: 5,-4
@@ -425,7 +425,7 @@ entities:
version: 6
0,-7:
ind: 0,-7
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAAADgAAAAAADgAAAAAARwAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAABLAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALgAAAAAALAAAAAAARwAAAAABDgAAAAAADgAAAAAARwAAAAACLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAARwAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALAAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA
version: 6
1,-7:
ind: 1,-7
@@ -433,11 +433,11 @@ entities:
version: 6
-3,-6:
ind: -3,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAADCQAAAAAACQAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAADgAAAAAAGwAAAAAADgAAAAAAGwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAADgAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAA
version: 6
-2,-6:
ind: -2,-6
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAACDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAADgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAACQAAAAABDgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,-5:
ind: -4,-5
@@ -627,12 +627,7 @@ entities:
decals:
4120: -2,-41
12339: -6,-37
- - node:
- zIndex: 2
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerNe
- decals:
- 12350: -4,-42
+ 20088: -4,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -641,19 +636,13 @@ entities:
4135: -13,-37
17687: -38,-53
17780: 33,0
- 19536: -8,-42
+ 20079: -8,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
4127: -2,-42
- - node:
- zIndex: 1
- color: '#FFFFFFFF'
- id: BrickTileDarkCornerSw
- decals:
- 19588: -8,-45
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -695,12 +684,6 @@ entities:
id: BrickTileDarkLineE
decals:
12341: -6,-38
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkLineN
- decals:
- 1438: -5,-42
- 1439: -6,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -721,13 +704,15 @@ entities:
19372: 13,26
19373: 12,26
19374: 11,26
- 19535: -7,-42
+ 20083: -7,-42
+ 20084: -6,-42
+ 20085: -5,-42
+ 20089: -8,-46
- node:
zIndex: 1
color: '#FFFFFFFF'
id: BrickTileDarkLineS
decals:
- 4128: -3,-42
19503: -36,-40
19506: -33,-40
19522: -35,-40
@@ -743,9 +728,10 @@ entities:
17783: 33,-3
17784: 33,-4
17960: 33,-2
- 19537: -8,-43
- 19538: -8,-44
19642: -13,-40
+ 20080: -8,-43
+ 20081: -8,-44
+ 20082: -8,-45
- node:
zIndex: 2
color: '#FFFFFFFF'
@@ -2021,7 +2007,7 @@ entities:
- node:
cleanable: True
zIndex: 5
- color: '#0000007F'
+ color: '#FFFFFF7F'
id: Dirt
decals:
1162: 21,-55
@@ -4940,7 +4926,6 @@ entities:
19016: 16,24
19017: 17,27
19018: 17,27
- 19019: 17,29
19020: 17,31
19021: 16,31
19022: 16,30
@@ -5180,8 +5165,6 @@ entities:
8487: -2,-38
8488: -2,-39
8489: -3,-41
- 8490: -3,-42
- 8491: -3,-42
8492: -4,-41
8496: 0,-45
8497: -1,-45
@@ -5818,7 +5801,6 @@ entities:
6358: -5,-35
6359: -4,-35
6360: -3,-41
- 6361: -3,-42
6372: 0,-29
6373: 0,-30
6374: 1,-30
@@ -6059,9 +6041,7 @@ entities:
12634: -20,-48
12635: -20,-43
12636: -15,-43
- 12637: -4,-42
12638: -5,-41
- 12645: -3,-42
12664: 10,-49
12665: 10,-54
12666: 9,-54
@@ -6318,7 +6298,6 @@ entities:
14963: 42,3
14964: 38,3
15011: -6,-41
- 15012: -4,-42
15013: -5,-40
15030: -13,12
15031: 14,12
@@ -10248,7 +10227,6 @@ entities:
13017: -9,-19
15857: -1,-20
15858: -1,-19
- 18586: 18,29
18587: 18,28
- node:
color: '#FFFFFFFF'
@@ -10323,6 +10301,7 @@ entities:
15128: -1,-51
18374: 19,-40
18415: 21,-44
+ 20074: -7,-43
- node:
zIndex: 2
color: '#FFFFFFFF'
@@ -10441,7 +10420,6 @@ entities:
id: WoodTrimThinInnerSe
decals:
12111: 37,-12
- 19545: -8,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -10464,9 +10442,6 @@ entities:
id: WoodTrimThinLineE
decals:
17677: -37,-55
- 19543: -8,-44
- 19544: -8,-43
- 19587: -8,-45
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -10505,6 +10480,9 @@ entities:
18420: 18,-47
18421: 19,-47
18422: 20,-47
+ 20075: -6,-44
+ 20076: -5,-44
+ 20077: -4,-44
- node:
zIndex: 2
color: '#FFFFFFFF'
@@ -10524,18 +10502,11 @@ entities:
12114: 37,-12
15109: -5,-43
17676: -38,-56
- 19546: -7,-42
- 19547: -6,-42
- 19548: -5,-42
- 19549: -4,-42
- node:
zIndex: 1
color: '#FFFFFFFF'
id: WoodTrimThinLineS
decals:
- 12347: -6,-42
- 12348: -5,-42
- 12349: -4,-42
15132: 1,-54
15133: 2,-54
18378: 20,-42
@@ -11415,7 +11386,6 @@ entities:
19296: 32,18
19297: 16,19
19298: 11,22
- 19299: 17,29
- node:
cleanable: True
zIndex: 5
@@ -11924,7 +11894,7 @@ entities:
0: 7645
-5,-4:
0: 52431
- 2: 256
+ 1: 256
-4,-3:
0: 53727
-5,-3:
@@ -11939,7 +11909,7 @@ entities:
0: 65437
-4,0:
0: 13243
- 3: 2048
+ 2: 2048
-3,-4:
0: 65501
-3,-3:
@@ -11950,8 +11920,8 @@ entities:
0: 53247
-3,0:
0: 15
- 3: 13056
- 2: 3072
+ 2: 13056
+ 1: 3072
-3,-5:
0: 36863
-2,-4:
@@ -11964,7 +11934,7 @@ entities:
0: 65535
-2,0:
0: 15
- 2: 3840
+ 1: 3840
-2,-5:
0: 36349
-1,-4:
@@ -11977,7 +11947,7 @@ entities:
0: 65535
-1,0:
0: 15
- 2: 3840
+ 1: 3840
0,-4:
0: 65523
0,-3:
@@ -12012,23 +11982,23 @@ entities:
0: 56793
-2,-8:
0: 61495
- 1: 136
+ 3: 136
-2,-7:
0: 8176
-2,-6:
0: 64988
-2,-9:
0: 13299
- 1: 32768
+ 3: 32768
-1,-8:
- 1: 51
+ 3: 51
0: 63500
-1,-6:
0: 65535
-1,-5:
0: 4095
-1,-9:
- 1: 12288
+ 3: 12288
0: 35059
-1,-7:
0: 3822
@@ -12067,7 +12037,7 @@ entities:
-2,-12:
0: 64927
-2,-11:
- 0: 65503
+ 0: 65535
-2,-10:
0: 32767
-2,-13:
@@ -12089,11 +12059,11 @@ entities:
0,-9:
0: 48056
-4,-16:
- 2: 17663
+ 1: 17663
-5,-16:
- 2: 255
+ 1: 255
-4,-15:
- 2: 100
+ 1: 100
0: 45056
-5,-15:
0: 65024
@@ -12104,9 +12074,9 @@ entities:
-5,-13:
0: 53759
-4,-17:
- 2: 17663
+ 1: 17663
-3,-16:
- 2: 17
+ 1: 17
0: 52428
-3,-15:
0: 47308
@@ -12114,63 +12084,63 @@ entities:
0: 35775
-3,-17:
0: 52360
- 2: 19
+ 1: 19
-2,-16:
0: 13175
- 2: 32768
+ 1: 32768
-2,-15:
0: 64435
-2,-14:
0: 65339
-2,-17:
0: 13119
- 2: 2048
+ 1: 2048
-1,-15:
0: 65328
- 2: 8
+ 1: 8
-1,-14:
0: 65295
-1,-16:
- 2: 59392
+ 1: 59392
0,-15:
- 2: 15
+ 1: 15
0: 65280
0,-14:
0: 65295
0,-13:
0: 65535
-4,-18:
- 2: 59592
+ 1: 59592
-5,-18:
- 2: 40960
+ 1: 40960
-5,-17:
- 2: 255
+ 1: 255
-4,-20:
- 2: 51400
+ 1: 51400
-4,-21:
- 2: 51404
+ 1: 51404
-4,-19:
- 2: 51400
+ 1: 51400
-3,-18:
- 2: 12288
+ 1: 12288
0: 34952
-3,-21:
- 2: 18575
+ 1: 18575
-3,-20:
0: 2176
-3,-19:
0: 34952
-2,-20:
0: 4913
- 2: 34816
+ 1: 34816
-2,-19:
0: 15347
-2,-18:
0: 45875
- 2: 136
+ 1: 136
-2,-21:
0: 4096
- 2: 17203
+ 1: 17203
-1,-19:
0: 16
-1,-17:
@@ -12179,7 +12149,7 @@ entities:
0: 43688
-4,1:
0: 62259
- 3: 128
+ 2: 128
-5,1:
0: 43690
-4,2:
@@ -12193,14 +12163,14 @@ entities:
-4,4:
0: 21759
-3,1:
- 3: 513
- 2: 8208
+ 2: 513
+ 1: 8208
-3,2:
0: 65280
- 2: 8
+ 1: 8
-3,3:
0: 13119
- 2: 32768
+ 1: 32768
-3,4:
0: 47283
-2,1:
@@ -12208,37 +12178,37 @@ entities:
5: 1092
-2,2:
0: 65280
- 2: 10
+ 1: 10
-2,3:
0: 13
- 2: 61696
+ 1: 61696
-1,1:
- 3: 1365
+ 2: 1365
-1,2:
0: 65280
- 2: 10
+ 1: 10
-1,3:
0: 15
- 2: 5120
+ 1: 5120
-2,4:
- 2: 8
+ 1: 8
0: 16176
-1,4:
0: 61420
0,0:
0: 15
- 2: 3328
- 3: 512
+ 1: 3328
+ 2: 512
0,1:
6: 273
- 3: 3276
+ 2: 3276
0,2:
0: 65280
- 2: 6
- 3: 8
+ 1: 6
+ 2: 8
0,3:
0: 19663
- 2: 256
+ 1: 256
-5,4:
0: 62395
-4,5:
@@ -12246,29 +12216,29 @@ entities:
-5,5:
0: 8079
-4,6:
- 2: 50272
+ 1: 50272
-3,5:
0: 8099
-3,6:
0: 119
- 2: 53248
+ 1: 53248
-3,7:
- 2: 4401
+ 1: 4401
-3,8:
- 2: 4401
+ 1: 4401
-2,5:
0: 13104
- 2: 2184
+ 1: 2184
-2,6:
0: 63
- 2: 6144
+ 1: 6144
-1,6:
0: 3311
- 2: 4096
+ 1: 4096
-1,5:
0: 61038
-1,7:
- 2: 2
+ 1: 2
0,4:
0: 65535
0,5:
@@ -12277,29 +12247,29 @@ entities:
0: 36863
-8,-4:
0: 15
- 2: 768
+ 1: 768
-9,-4:
0: 26239
-8,-3:
0: 44782
-9,-3:
0: 34958
- 2: 12288
+ 1: 12288
-8,-2:
0: 65034
-9,-2:
0: 64904
- 2: 3
+ 1: 3
-8,-1:
0: 60942
-9,-1:
0: 35037
- 2: 12288
+ 1: 12288
-8,0:
0: 26190
-7,-4:
0: 17479
- 2: 256
+ 1: 256
-7,-3:
0: 65535
-7,-2:
@@ -12312,7 +12282,7 @@ entities:
0: 65359
-6,-4:
0: 15
- 2: 2304
+ 1: 2304
-6,-3:
0: 53727
-6,-2:
@@ -12322,7 +12292,8 @@ entities:
-6,-5:
0: 64511
-6,0:
- 0: 60931
+ 0: 59907
+ 7: 1024
-8,-8:
0: 65535
-8,-9:
@@ -12405,28 +12376,28 @@ entities:
0: 65262
-8,-17:
0: 24576
- 2: 206
+ 1: 206
-7,-15:
- 2: 256
+ 1: 256
-7,-16:
- 2: 238
+ 1: 238
-7,-14:
0: 58470
-6,-16:
- 2: 17663
+ 1: 17663
-6,-14:
0: 48043
-6,-17:
- 2: 17663
+ 1: 17663
-6,-15:
- 2: 196
+ 1: 196
0: 32768
-8,-20:
0: 1
- 2: 512
+ 1: 512
-8,-21:
0: 4096
- 2: 32
+ 1: 32
-9,-20:
0: 61423
-9,-19:
@@ -12434,26 +12405,26 @@ entities:
-9,-18:
0: 61423
-8,-18:
- 2: 40960
+ 1: 40960
-9,-17:
0: 65519
-7,-17:
- 2: 511
+ 1: 511
-7,-18:
- 2: 40960
+ 1: 40960
-6,-18:
- 2: 40960
+ 1: 40960
-9,0:
0: 59528
- 2: 34
+ 1: 34
-8,1:
0: 6
- 2: 24576
+ 1: 24576
-9,1:
0: 52462
- 2: 4096
+ 1: 4096
-8,2:
- 2: 2
+ 1: 2
0: 61056
-9,2:
0: 60668
@@ -12487,115 +12458,115 @@ entities:
0: 62990
-8,6:
0: 7
- 2: 1792
+ 1: 1792
-9,6:
- 2: 52288
+ 1: 52288
-8,7:
- 2: 4224
+ 1: 4224
-8,8:
- 2: 18163
+ 1: 18163
-9,7:
- 2: 64716
+ 1: 64716
-7,5:
0: 26159
-7,6:
- 2: 4368
+ 1: 4368
-7,7:
- 2: 4369
+ 1: 4369
-7,8:
- 2: 55569
+ 1: 55569
-6,5:
0: 3903
-6,6:
- 2: 16454
+ 1: 16454
-6,7:
- 2: 2
+ 1: 2
0: 35968
-6,8:
- 2: 4978
+ 1: 4978
-5,6:
0: 4369
- 2: 16452
+ 1: 16452
-5,7:
0: 14128
- 2: 8
+ 1: 8
-5,8:
0: 1
- 2: 2248
+ 1: 2248
-9,8:
- 2: 15
+ 1: 15
-8,9:
- 2: 8
+ 1: 8
-7,9:
- 2: 19038
+ 1: 19038
-7,10:
- 2: 136
+ 1: 136
-6,9:
- 2: 61440
+ 1: 61440
-6,10:
- 2: 116
+ 1: 116
-5,9:
- 2: 61440
+ 1: 61440
-5,10:
- 2: 196
+ 1: 196
-4,8:
- 2: 29456
+ 1: 29456
-4,9:
- 2: 23118
+ 1: 23118
-4,10:
- 2: 50
+ 1: 50
-12,-4:
- 2: 3712
- 3: 57344
+ 1: 3712
+ 2: 57344
-13,-4:
0: 48896
- 3: 7
- 2: 8
+ 2: 7
+ 1: 8
-12,-3:
0: 1
- 2: 62126
+ 1: 62126
-13,-3:
0: 11
- 3: 59136
- 2: 6144
+ 2: 59136
+ 1: 6144
-12,-2:
- 3: 59185
- 2: 2254
+ 2: 59185
+ 1: 2254
-13,-2:
- 3: 140
- 2: 2114
+ 2: 140
+ 1: 2114
-12,-1:
- 3: 140
- 2: 34816
+ 2: 140
+ 1: 34816
-11,-4:
- 2: 1841
- 3: 61440
+ 1: 1841
+ 2: 61440
-11,-3:
- 2: 61759
+ 1: 61759
-11,-2:
- 2: 5
+ 1: 5
0: 36352
-12,0:
- 2: 35562
+ 1: 35562
-11,-5:
- 2: 8048
+ 1: 8048
-11,-1:
0: 34958
- 2: 8704
+ 1: 8704
-10,-4:
0: 59647
- 3: 4096
+ 2: 4096
-10,-3:
- 2: 61633
+ 1: 61633
-10,-2:
0: 65280
- 2: 12
+ 1: 12
-10,-1:
0: 13311
- 2: 32768
+ 1: 32768
-10,0:
0: 13105
- 2: 34816
+ 1: 34816
-12,-8:
0: 64991
-12,-9:
@@ -12606,17 +12577,17 @@ entities:
0: 56349
-13,-7:
0: 51404
- 2: 17
+ 1: 17
-12,-6:
0: 52701
-13,-6:
0: 3838
-12,-5:
- 3: 305
- 2: 4800
+ 2: 305
+ 1: 4800
-13,-5:
- 3: 60552
- 2: 4672
+ 2: 60552
+ 1: 4672
-11,-8:
0: 65535
-11,-7:
@@ -12633,7 +12604,7 @@ entities:
0: 61695
-10,-5:
0: 3087
- 2: 256
+ 1: 256
-10,-9:
0: 65287
-12,-12:
@@ -12644,7 +12615,7 @@ entities:
0: 61058
-12,-11:
0: 4367
- 2: 1024
+ 1: 1024
-13,-11:
0: 34958
-12,-10:
@@ -12653,7 +12624,7 @@ entities:
0: 49080
-13,-9:
0: 52424
- 2: 272
+ 1: 272
-11,-10:
0: 65399
-11,-13:
@@ -12662,7 +12633,7 @@ entities:
0: 61152
-11,-11:
0: 14
- 2: 1024
+ 1: 1024
-10,-12:
0: 32738
-10,-11:
@@ -12672,7 +12643,7 @@ entities:
-10,-13:
0: 65294
-12,-15:
- 2: 3
+ 1: 3
0: 30464
-12,-14:
0: 30576
@@ -12682,173 +12653,174 @@ entities:
0: 60629
-11,-15:
0: 7936
- 2: 10
+ 1: 10
-11,-14:
0: 56799
-10,-15:
0: 3968
- 2: 2
+ 1: 2
-10,-14:
0: 61166
-10,-16:
- 2: 16384
+ 1: 16384
-10,-20:
- 2: 4
+ 1: 4
0: 3072
-10,-21:
- 2: 16512
+ 1: 17536
-10,-19:
0: 12
- 2: 1024
+ 1: 1024
-10,-18:
- 2: 4
+ 1: 4
0: 3072
-10,-17:
0: 12
+ 1: 1024
-9,-21:
0: 64170
-12,1:
- 2: 65416
+ 1: 65416
-13,1:
- 2: 65392
+ 1: 65392
-12,2:
- 3: 3840
- 2: 61440
+ 2: 3840
+ 1: 61440
-13,2:
- 3: 43008
- 2: 21026
+ 2: 43008
+ 1: 21026
-12,3:
- 3: 3855
- 2: 61440
+ 2: 3855
+ 1: 61440
-13,3:
- 3: 43016
- 2: 21026
+ 2: 43016
+ 1: 21026
-12,4:
- 3: 3855
- 2: 61440
+ 2: 3855
+ 1: 61440
-11,1:
- 2: 63265
+ 1: 63265
0: 8
-11,3:
- 2: 34560
- 3: 2048
+ 1: 34560
+ 2: 2048
-11,0:
0: 52416
-10,1:
0: 51
- 2: 47104
- 3: 16384
+ 1: 47104
+ 2: 16384
-10,3:
- 3: 49408
- 2: 4096
+ 2: 49408
+ 1: 4096
0: 140
-11,4:
- 2: 15
+ 1: 15
-10,2:
- 2: 290
+ 1: 290
0: 32960
-10,4:
- 2: 8471
- 3: 3816
+ 1: 8471
+ 2: 3816
-13,4:
- 3: 43016
- 2: 21026
+ 2: 43016
+ 1: 21026
-12,5:
- 3: 8207
- 2: 53760
+ 2: 8207
+ 1: 53760
-13,5:
- 3: 8200
- 2: 53794
+ 2: 8200
+ 1: 53794
-12,6:
- 3: 21872
- 2: 8706
+ 2: 21872
+ 1: 8706
-12,7:
- 3: 85
- 2: 61986
+ 2: 85
+ 1: 61986
-12,8:
- 2: 127
+ 1: 127
-13,7:
- 2: 61986
- 3: 85
+ 1: 61986
+ 2: 85
-11,5:
- 2: 61952
+ 1: 61952
-11,7:
- 2: 61440
+ 1: 61440
-11,8:
- 2: 15
+ 1: 15
-11,6:
- 2: 2
+ 1: 2
-10,5:
- 2: 5760
+ 1: 5760
0: 57344
-10,7:
- 2: 61440
+ 1: 61440
-10,8:
- 2: 15
+ 1: 15
-10,6:
- 2: 6
+ 1: 6
-13,8:
- 2: 127
+ 1: 127
-16,-4:
0: 65327
-16,-5:
0: 61440
- 2: 145
+ 1: 145
-16,-3:
0: 65327
-17,-4:
0: 62578
-16,-2:
- 2: 240
+ 1: 240
-16,-1:
- 2: 35071
+ 1: 35071
-17,-1:
- 2: 255
+ 1: 255
-15,-1:
- 2: 9215
+ 1: 9215
-16,0:
- 2: 34952
+ 1: 34952
-15,-4:
0: 24576
- 2: 12
+ 1: 12
-15,-3:
- 2: 60416
+ 1: 60416
-15,-2:
- 2: 55720
+ 1: 55720
-15,-5:
- 2: 59561
+ 1: 59561
-15,0:
- 2: 8995
+ 1: 8995
-14,-4:
0: 65280
- 2: 14
+ 1: 14
-14,-3:
0: 15
- 2: 43776
+ 1: 43776
-14,-2:
- 2: 32682
+ 1: 32682
-14,-1:
- 2: 23
+ 1: 23
-14,-5:
- 2: 43695
+ 1: 43695
-16,-8:
- 2: 10098
+ 1: 10098
-16,-7:
- 2: 8995
+ 1: 8995
-16,-6:
- 2: 4083
+ 1: 4083
-17,-6:
- 2: 36848
+ 1: 36848
-17,-5:
- 2: 72
+ 1: 72
-16,-9:
- 2: 12848
+ 1: 12848
-15,-8:
0: 32631
-15,-6:
- 2: 14196
+ 1: 14196
-15,-7:
- 2: 10240
+ 1: 10240
-14,-8:
0: 30711
-14,-7:
@@ -12856,105 +12828,105 @@ entities:
-14,-6:
0: 4095
-16,-12:
- 2: 16369
+ 1: 16369
-16,-13:
- 2: 4369
- 3: 8738
+ 1: 4369
+ 2: 8738
-17,-12:
- 2: 49137
+ 1: 49137
-16,-11:
- 2: 12850
+ 1: 12850
-16,-10:
- 2: 5272
- 3: 49668
+ 1: 5272
+ 2: 49668
-15,-12:
- 2: 4083
+ 1: 4083
-15,-10:
- 2: 39248
- 3: 160
+ 1: 39248
+ 2: 160
-15,-13:
- 2: 4352
- 3: 8208
+ 1: 4352
+ 2: 8208
0: 8
-14,-12:
- 2: 3888
+ 1: 3888
0: 8
-14,-10:
- 3: 816
- 2: 1
+ 2: 816
+ 1: 1
0: 34944
-15,-9:
- 2: 8
+ 1: 8
-14,-9:
- 2: 273
- 3: 2
+ 1: 273
+ 2: 2
-14,-13:
0: 52428
-16,-16:
- 2: 319
+ 1: 319
-16,-17:
- 2: 12288
+ 1: 12288
-17,-16:
- 2: 20991
- 3: 8192
+ 1: 20991
+ 2: 8192
-16,-15:
0: 287
- 3: 4096
- 2: 8192
+ 2: 4096
+ 1: 8192
-16,-14:
- 3: 12337
- 2: 450
+ 2: 12337
+ 1: 450
-17,-15:
- 2: 33045
- 3: 12834
+ 1: 33045
+ 2: 12834
-17,-14:
- 2: 361
- 3: 45200
+ 1: 361
+ 2: 45200
-17,-13:
- 3: 43690
- 2: 4369
+ 2: 43690
+ 1: 4369
-15,-16:
- 2: 15
+ 1: 15
0: 57344
-15,-15:
0: 239
- 2: 4096
+ 1: 4096
-15,-14:
- 2: 1
+ 1: 1
0: 61120
-14,-16:
- 2: 63
+ 1: 63
0: 53248
-14,-15:
0: 3295
- 2: 4096
+ 1: 4096
-14,-14:
0: 57308
-13,-16:
- 2: 33843
+ 1: 33843
0: 4096
-13,-15:
0: 22387
-20,-4:
- 2: 52428
+ 1: 52428
-20,-5:
- 2: 52424
+ 1: 52424
-20,-3:
- 2: 52428
+ 1: 52428
-20,-2:
- 2: 2252
+ 1: 2252
-19,-4:
- 2: 29184
+ 1: 29184
-19,-3:
- 2: 31744
+ 1: 31744
-19,-2:
- 2: 29596
+ 1: 29596
-19,-1:
- 2: 206
+ 1: 206
-18,-2:
- 2: 39188
+ 1: 39188
-18,-1:
- 2: 255
+ 1: 255
-18,-4:
0: 25792
-18,-3:
@@ -12962,104 +12934,104 @@ entities:
-17,-3:
0: 628
-17,-2:
- 2: 34928
+ 1: 34928
-19,-5:
- 2: 31891
+ 1: 31891
-19,-6:
- 2: 32448
+ 1: 32448
-18,-6:
- 2: 40944
+ 1: 40944
-18,-5:
- 2: 1113
+ 1: 1113
-21,-16:
- 2: 52460
+ 1: 52460
-21,-17:
- 2: 57344
+ 1: 57344
-21,-15:
- 2: 52428
+ 1: 52428
-21,-14:
- 2: 52428
+ 1: 52428
-21,-13:
- 2: 50252
+ 1: 50252
-21,-12:
- 2: 61164
+ 1: 61164
-20,-16:
- 2: 159
- 3: 32768
+ 1: 159
+ 2: 32768
-20,-14:
- 2: 722
- 3: 32800
+ 1: 722
+ 2: 32800
-20,-17:
- 2: 32768
+ 1: 32768
-19,-16:
- 2: 4607
- 3: 40960
+ 1: 4607
+ 2: 40960
-20,-15:
- 3: 34952
+ 2: 34952
-19,-15:
- 2: 273
- 3: 47786
+ 1: 273
+ 2: 47786
-19,-14:
- 3: 45072
- 2: 481
+ 2: 45072
+ 1: 481
-20,-13:
- 3: 34952
+ 2: 34952
-19,-13:
- 2: 4369
- 3: 43690
+ 1: 4369
+ 2: 43690
-19,-17:
- 2: 45056
+ 1: 45056
-19,-12:
- 2: 49137
+ 1: 49137
-18,-16:
- 2: 4607
- 3: 40960
+ 1: 4607
+ 2: 40960
-18,-15:
- 2: 273
- 3: 47786
+ 1: 273
+ 2: 47786
-18,-14:
- 3: 45072
- 2: 481
+ 2: 45072
+ 1: 481
-18,-13:
- 2: 4369
- 3: 43690
+ 1: 4369
+ 2: 43690
-18,-17:
- 2: 45056
+ 1: 45056
-18,-12:
- 2: 49073
+ 1: 49073
-17,-17:
- 2: 45056
+ 1: 45056
1,-4:
0: 1136
- 2: 57344
+ 1: 57344
1,-2:
0: 61440
- 3: 238
+ 2: 238
1,-1:
0: 65535
1,-5:
0: 65535
1,-3:
- 2: 226
- 3: 57344
+ 1: 226
+ 2: 57344
1,0:
0: 15
- 2: 20224
+ 1: 20224
2,-4:
0: 119
- 2: 28672
+ 1: 28672
2,-3:
- 2: 25173
+ 1: 25173
2,-2:
0: 61568
- 2: 100
+ 1: 100
2,-1:
0: 32631
2,-5:
0: 65535
2,0:
0: 2063
- 2: 1792
+ 1: 1792
3,-4:
0: 4090
3,-3:
@@ -13143,9 +13115,9 @@ entities:
4,-9:
0: 16175
0,-16:
- 2: 43520
+ 1: 43520
1,-16:
- 2: 45056
+ 1: 45056
1,-15:
0: 65248
1,-14:
@@ -13172,63 +13144,63 @@ entities:
0: 2240
1,-17:
0: 12
- 2: 2048
+ 1: 2048
1,-18:
0: 32768
- 2: 136
+ 1: 136
1,-20:
- 2: 34816
+ 1: 34816
2,-19:
0: 61182
2,-21:
- 2: 7918
+ 1: 7918
0: 16384
2,-20:
0: 20196
2,-18:
0: 61166
3,-21:
- 2: 39167
+ 1: 39167
3,-18:
- 2: 58600
+ 1: 58600
3,-20:
- 2: 34952
+ 1: 34952
4,-20:
- 2: 4112
+ 1: 4112
3,-19:
- 2: 34952
+ 1: 34952
4,-19:
- 2: 4112
+ 1: 4112
4,-18:
- 2: 62960
- 3: 2560
+ 1: 62960
+ 2: 2560
1,1:
- 3: 16657
- 2: 1028
+ 2: 16657
+ 1: 1028
1,2:
0: 65280
- 3: 4
- 2: 8
+ 2: 4
+ 1: 8
1,3:
0: 14207
1,4:
0: 65535
2,1:
- 3: 1911
+ 2: 1911
2,2:
0: 65280
- 2: 4
+ 1: 4
2,3:
0: 49359
- 2: 256
+ 1: 256
2,4:
0: 65535
3,1:
- 2: 4113
+ 1: 4113
0: 52416
3,2:
0: 65484
- 2: 1
+ 1: 1
3,3:
0: 63679
3,4:
@@ -13261,25 +13233,25 @@ entities:
0: 30719
3,7:
0: 7
- 2: 17408
- 3: 32768
+ 1: 17408
+ 2: 32768
3,8:
- 2: 36452
- 3: 136
+ 1: 36452
+ 2: 136
4,4:
0: 47568
4,5:
0: 16369
4,6:
0: 13107
- 2: 8
+ 1: 8
4,7:
- 0: 887
- 3: 12288
- 2: 16384
+ 0: 823
+ 2: 12288
+ 1: 16384
4,8:
- 3: 307
- 2: 16068
+ 2: 307
+ 1: 16068
5,-4:
0: 44987
5,-3:
@@ -13326,7 +13298,7 @@ entities:
0: 15291
5,-8:
0: 13311
- 2: 32768
+ 1: 32768
5,-7:
0: 32627
5,-6:
@@ -13335,9 +13307,9 @@ entities:
0: 7974
6,-8:
0: 35067
- 2: 4096
+ 1: 4096
6,-7:
- 2: 1
+ 1: 1
0: 65416
6,-6:
0: 65520
@@ -13387,7 +13359,7 @@ entities:
0: 12275
7,-13:
0: 4113
- 2: 50176
+ 1: 50176
8,-12:
0: 65520
8,-11:
@@ -13407,50 +13379,50 @@ entities:
6,-14:
0: 15295
6,-16:
- 2: 32768
+ 1: 32768
7,-16:
- 2: 14476
- 3: 32768
+ 1: 14476
+ 2: 32768
7,-15:
0: 64432
7,-14:
0: 53247
7,-17:
- 2: 19596
+ 1: 19596
8,-16:
- 3: 4096
+ 2: 4096
8,-14:
0: 3838
8,-13:
- 2: 36906
+ 1: 36906
4,-21:
- 2: 4112
+ 1: 4112
5,-18:
- 2: 62974
- 3: 2048
+ 1: 62974
+ 2: 2048
5,-19:
- 2: 51200
+ 1: 51200
6,-19:
- 2: 4990
+ 1: 4990
6,-18:
- 2: 62960
- 3: 512
+ 1: 62960
+ 2: 512
6,-20:
- 2: 51200
+ 1: 51200
7,-20:
- 2: 65530
- 3: 4
+ 1: 65530
+ 2: 4
7,-19:
- 2: 17487
+ 1: 17487
7,-18:
- 2: 30068
- 3: 512
+ 1: 30068
+ 2: 512
7,-21:
- 2: 64256
+ 1: 64256
8,-20:
- 2: 29456
+ 1: 29456
8,-19:
- 2: 2255
+ 1: 2255
5,1:
0: 65522
5,2:
@@ -13488,7 +13460,7 @@ entities:
6,5:
0: 36848
6,6:
- 2: 2
+ 1: 2
0: 34952
6,7:
0: 140
@@ -13496,17 +13468,17 @@ entities:
0: 40952
7,6:
0: 221
- 2: 24576
+ 1: 24576
7,7:
0: 1
- 2: 2
+ 1: 2
8,4:
0: 65523
8,5:
0: 4369
8,6:
0: 3327
- 2: 4096
+ 1: 4096
9,-4:
0: 30583
9,-3:
@@ -13521,7 +13493,7 @@ entities:
0: 65339
10,-4:
0: 49425
- 2: 192
+ 1: 192
10,-3:
0: 8191
10,-2:
@@ -13534,7 +13506,7 @@ entities:
0: 48682
11,-1:
0: 59
- 2: 12288
+ 1: 12288
11,-4:
0: 59946
11,-3:
@@ -13543,13 +13515,13 @@ entities:
0: 61175
12,-4:
0: 4367
- 2: 52224
+ 1: 52224
12,-3:
0: 4353
- 2: 1028
+ 1: 1028
12,-2:
0: 4353
- 2: 52420
+ 1: 52420
9,-8:
0: 60943
9,-7:
@@ -13566,9 +13538,9 @@ entities:
0: 47291
10,-7:
0: 14
- 2: 25600
+ 1: 25600
10,-5:
- 2: 33376
+ 1: 33376
11,-8:
0: 25328
11,-7:
@@ -13579,7 +13551,7 @@ entities:
0: 58976
12,-8:
0: 4415
- 2: 51200
+ 1: 51200
12,-7:
0: 65489
12,-6:
@@ -13593,25 +13565,25 @@ entities:
9,-10:
0: 61408
9,-13:
- 2: 4096
+ 1: 4096
10,-12:
0: 4368
10,-10:
0: 48952
10,-13:
- 2: 4368
+ 1: 4368
0: 140
10,-11:
- 2: 8736
+ 1: 8736
11,-11:
0: 21776
11,-10:
0: 28455
11,-12:
- 2: 5456
+ 1: 5456
12,-12:
0: 13107
- 2: 32768
+ 1: 32768
12,-11:
0: 56785
12,-10:
@@ -13619,27 +13591,27 @@ entities:
12,-9:
0: 16157
8,-15:
- 2: 1634
+ 1: 1634
9,-14:
0: 61439
9,-15:
- 2: 17
+ 1: 17
0: 60620
9,-16:
0: 52364
9,-17:
0: 51336
- 2: 32
+ 1: 32
10,-16:
0: 56704
- 2: 2
+ 1: 2
10,-15:
0: 57309
10,-14:
0: 57297
10,-17:
- 3: 34816
- 2: 576
+ 2: 34816
+ 1: 576
11,-16:
0: 65520
11,-15:
@@ -13649,8 +13621,8 @@ entities:
11,-13:
0: 127
11,-17:
- 3: 62208
- 2: 3104
+ 2: 62208
+ 1: 3104
12,-16:
0: 56712
12,-15:
@@ -13660,36 +13632,36 @@ entities:
12,-13:
0: 47935
9,-19:
- 2: 62736
- 3: 2082
+ 1: 62736
+ 2: 2082
9,-20:
- 3: 3136
+ 2: 3136
9,-18:
- 2: 2126
+ 1: 2126
10,-20:
- 2: 1792
+ 1: 1792
10,-18:
- 2: 25862
+ 1: 25862
11,-20:
- 3: 13056
- 2: 50304
+ 2: 13056
+ 1: 50304
11,-19:
- 3: 30583
- 2: 8
+ 2: 30583
+ 1: 8
11,-18:
- 3: 375
- 2: 17920
+ 2: 375
+ 1: 17920
11,-21:
- 2: 6513
- 3: 142
+ 1: 6513
+ 2: 142
12,-20:
- 3: 13107
+ 2: 13107
12,-19:
- 2: 5633
- 3: 24610
+ 1: 5633
+ 2: 24610
12,-18:
- 2: 17425
- 3: 8366
+ 1: 17425
+ 2: 8366
9,1:
0: 8083
9,2:
@@ -13698,7 +13670,7 @@ entities:
0: 65339
10,1:
0: 9010
- 2: 2176
+ 1: 2176
10,2:
0: 56575
10,3:
@@ -13708,38 +13680,38 @@ entities:
11,0:
0: 32624
11,1:
- 2: 16
+ 1: 16
0: 57344
11,2:
0: 65535
11,3:
0: 271
12,0:
- 2: 51393
+ 1: 51393
0: 768
- 3: 1024
+ 2: 1024
12,1:
- 2: 49665
+ 1: 49665
12,2:
0: 30577
12,3:
0: 7
- 2: 17408
+ 1: 17408
9,6:
0: 119
- 2: 8192
+ 1: 8192
9,5:
0: 28398
10,4:
0: 62256
- 2: 128
+ 1: 128
10,5:
0: 511
- 2: 49152
+ 1: 49152
10,6:
- 2: 3
+ 1: 3
11,4:
- 2: 80
+ 1: 80
0: 61440
11,5:
0: 44799
@@ -13747,661 +13719,661 @@ entities:
0: 170
12,4:
0: 61440
- 2: 68
+ 1: 68
12,5:
0: 241
- 2: 24576
+ 1: 24576
12,-1:
- 2: 4
+ 1: 4
13,-4:
0: 1
- 2: 64
+ 1: 64
13,-2:
- 2: 4080
+ 1: 4080
13,-5:
0: 62451
14,-2:
- 2: 20478
+ 1: 20478
14,-5:
0: 12336
14,-1:
- 3: 43690
- 2: 17476
+ 2: 43690
+ 1: 17476
14,0:
- 3: 1038
- 2: 19264
+ 2: 1038
+ 1: 19264
15,-2:
- 2: 20478
+ 1: 20478
15,-1:
- 3: 43690
- 2: 17476
+ 2: 43690
+ 1: 17476
15,0:
- 3: 1038
- 2: 19264
+ 2: 1038
+ 1: 19264
16,-2:
- 2: 20478
+ 1: 20478
13,-8:
0: 3
- 2: 17476
+ 1: 17476
13,-7:
0: 62448
13,-6:
0: 65523
13,-9:
- 2: 16388
+ 1: 16388
0: 257
14,-7:
0: 12336
14,-6:
- 2: 8224
+ 1: 8224
13,-12:
- 2: 64512
+ 1: 64512
13,-11:
0: 65520
13,-10:
0: 4607
- 2: 49152
+ 1: 49152
13,-13:
0: 13075
- 2: 2176
+ 1: 2176
14,-12:
- 2: 36864
+ 1: 36864
0: 238
14,-11:
0: 4368
- 3: 19656
- 2: 32768
+ 2: 19656
+ 1: 32768
14,-10:
0: 17
- 3: 2188
- 2: 64
+ 2: 2188
+ 1: 64
14,-13:
0: 58606
15,-11:
- 3: 401
- 2: 4710
+ 2: 401
+ 1: 4710
15,-10:
- 3: 48
- 2: 3784
+ 2: 48
+ 1: 3784
15,-12:
- 2: 8712
+ 1: 8712
15,-13:
- 2: 52832
+ 1: 52832
16,-12:
- 2: 8435
- 3: 35328
+ 1: 8435
+ 2: 35328
16,-11:
- 3: 10937
- 2: 36864
+ 2: 10937
+ 1: 36864
0: 1024
16,-10:
- 3: 383
- 2: 2176
+ 2: 383
+ 1: 2176
12,-17:
0: 34880
- 2: 162
+ 1: 162
13,-16:
0: 4353
- 2: 17408
+ 1: 17408
13,-15:
0: 12561
- 2: 2116
+ 1: 2116
13,-14:
0: 48123
13,-17:
0: 4096
- 3: 16
- 2: 230
+ 2: 16
+ 1: 230
14,-14:
0: 65535
14,-16:
- 2: 28
+ 1: 28
0: 8192
14,-17:
- 2: 4096
- 3: 2
+ 1: 4096
+ 2: 2
14,-15:
0: 57890
15,-16:
- 2: 32775
- 3: 2176
+ 1: 32775
+ 2: 2176
15,-14:
0: 10016
15,-15:
- 2: 28360
+ 1: 28360
15,-17:
- 2: 34944
+ 1: 34944
16,-16:
- 3: 61105
- 2: 14
+ 2: 61105
+ 1: 14
16,-15:
- 3: 119
+ 2: 119
16,-13:
- 2: 4098
+ 1: 4098
12,-21:
- 2: 20480
- 3: 8977
+ 1: 20480
+ 2: 8977
13,-18:
- 3: 8448
- 2: 4096
+ 2: 8448
+ 1: 4096
14,-19:
- 2: 14540
+ 1: 14540
14,-18:
- 2: 21789
- 3: 2
+ 1: 21789
+ 2: 2
14,-20:
- 2: 60416
- 3: 192
+ 1: 60416
+ 2: 192
15,-19:
- 3: 57102
- 2: 8192
+ 2: 57102
+ 1: 8192
15,-18:
- 3: 19
- 2: 32780
+ 2: 19
+ 1: 32780
15,-21:
- 3: 7680
+ 2: 7680
0: 64
15,-20:
- 3: 3686
+ 2: 3686
16,-20:
- 3: 63235
- 2: 2216
+ 2: 63235
+ 1: 2216
16,-19:
- 3: 48031
+ 2: 48031
16,-18:
- 3: 139
- 2: 31744
+ 2: 139
+ 1: 31744
16,-17:
- 3: 49022
- 2: 16384
+ 2: 49022
+ 1: 16384
13,0:
- 2: 20288
+ 1: 20288
13,2:
- 2: 65280
+ 1: 65280
14,2:
- 2: 65348
- 3: 10
+ 1: 65348
+ 2: 10
14,1:
- 3: 43694
- 2: 17472
+ 2: 43694
+ 1: 17472
14,3:
- 2: 14
+ 1: 14
15,2:
- 2: 65348
- 3: 10
+ 1: 65348
+ 2: 10
15,1:
- 3: 43694
- 2: 17472
+ 2: 43694
+ 1: 17472
15,3:
- 2: 14
+ 1: 14
16,0:
- 2: 19264
- 3: 1038
+ 1: 19264
+ 2: 1038
16,2:
- 2: 65348
- 3: 10
+ 1: 65348
+ 2: 10
12,6:
- 2: 2
+ 1: 2
16,-1:
- 3: 43690
- 2: 17476
+ 2: 43690
+ 1: 17476
17,-2:
- 2: 20478
+ 1: 20478
17,-1:
- 3: 43690
- 2: 17476
+ 2: 43690
+ 1: 17476
17,0:
- 3: 1038
- 2: 19264
+ 2: 1038
+ 1: 19264
17,-3:
- 2: 32768
+ 1: 32768
18,-3:
- 2: 14316
+ 1: 14316
18,-2:
- 2: 59185
+ 1: 59185
18,-1:
- 2: 34956
+ 1: 34956
18,-4:
- 2: 32768
+ 1: 32768
19,-4:
- 2: 14316
+ 1: 14316
19,-3:
- 2: 1
+ 1: 1
19,-1:
- 2: 4407
+ 1: 4407
18,0:
- 2: 44456
- 3: 512
+ 1: 44456
+ 2: 512
19,0:
- 2: 13105
+ 1: 13105
19,-2:
- 2: 60544
+ 1: 60544
19,-5:
- 2: 32896
+ 1: 32896
20,-2:
- 2: 311
+ 1: 311
20,-7:
- 3: 24576
+ 2: 24576
19,-7:
- 2: 32768
+ 1: 32768
20,-6:
- 2: 16912
- 3: 36078
+ 1: 16912
+ 2: 36078
19,-6:
- 2: 200
+ 1: 200
20,-5:
- 2: 784
- 3: 60552
+ 1: 784
+ 2: 60552
20,-4:
- 3: 18022
+ 2: 18022
21,-6:
- 3: 18367
- 2: 2048
+ 2: 18367
+ 1: 2048
21,-5:
- 3: 55735
- 2: 8
+ 2: 55735
+ 1: 8
21,-8:
- 2: 546
- 3: 34952
+ 1: 546
+ 2: 34952
21,-7:
- 3: 34958
- 2: 512
+ 2: 34958
+ 1: 512
21,-4:
- 3: 31612
+ 2: 31612
21,-9:
- 3: 36352
- 2: 231
+ 2: 36352
+ 1: 231
22,-8:
- 3: 57339
- 2: 4
+ 2: 57339
+ 1: 4
22,-7:
- 3: 4271
- 2: 57600
+ 2: 4271
+ 1: 57600
22,-6:
- 3: 60621
- 2: 16
+ 2: 60621
+ 1: 16
22,-5:
- 2: 1
- 3: 65534
+ 1: 1
+ 2: 65534
22,-9:
- 3: 40908
- 2: 16434
+ 2: 40908
+ 1: 16434
22,-4:
- 3: 15031
- 2: 8
+ 2: 15031
+ 1: 8
23,-8:
- 3: 65295
+ 2: 65295
23,-7:
- 2: 13056
- 3: 52462
+ 1: 13056
+ 2: 52462
23,-6:
- 3: 34511
- 2: 2096
+ 2: 34511
+ 1: 2096
23,-5:
- 3: 52215
- 2: 12288
+ 2: 52215
+ 1: 12288
0: 1024
23,-9:
- 3: 60943
+ 2: 60943
0: 144
23,-4:
- 3: 4
- 2: 336
+ 2: 4
+ 1: 336
24,-8:
- 3: 4899
+ 2: 4899
24,-7:
- 3: 4371
+ 2: 4371
24,-6:
- 3: 275
- 2: 4640
+ 2: 275
+ 1: 4640
16,1:
- 3: 43694
- 2: 17472
+ 2: 43694
+ 1: 17472
16,3:
- 2: 14
+ 1: 14
17,2:
- 2: 65348
- 3: 10
+ 1: 65348
+ 2: 10
17,1:
- 3: 43694
- 2: 17472
+ 2: 43694
+ 1: 17472
17,3:
- 2: 14
+ 1: 14
18,2:
- 2: 65416
+ 1: 65416
18,1:
- 2: 34952
+ 1: 34952
19,1:
- 2: 4369
+ 1: 4369
19,2:
- 2: 13073
+ 1: 13073
18,3:
- 2: 8
+ 1: 8
19,3:
- 2: 3
+ 1: 3
24,-9:
- 3: 12545
+ 2: 12545
0: 16
4,-24:
- 2: 13107
+ 1: 13107
4,-25:
- 2: 4096
+ 1: 4096
3,-24:
- 2: 224
- 3: 12567
+ 1: 224
+ 2: 12567
4,-23:
- 2: 4915
+ 1: 4915
3,-23:
- 3: 4415
- 2: 34816
+ 2: 4415
+ 1: 34816
4,-22:
- 2: 4369
+ 1: 4369
3,-22:
- 2: 35016
- 3: 1
+ 1: 35016
+ 2: 1
8,-21:
- 2: 4352
+ 1: 4352
17,-12:
- 3: 53248
- 2: 11980
+ 2: 53248
+ 1: 11980
17,-11:
- 3: 40129
- 2: 24588
+ 2: 40129
+ 1: 24588
17,-10:
- 2: 199
+ 1: 199
17,-13:
- 2: 17476
+ 1: 17476
18,-12:
- 3: 61426
- 2: 4096
+ 2: 61426
+ 1: 4096
18,-11:
- 3: 30591
+ 2: 30591
18,-10:
- 2: 112
+ 1: 112
18,-13:
- 2: 51336
+ 1: 51336
19,-12:
- 3: 65520
+ 2: 65520
19,-11:
- 3: 32766
- 2: 32768
+ 2: 32766
+ 1: 32768
19,-13:
- 2: 4096
+ 1: 4096
19,-10:
- 3: 2
+ 2: 2
20,-12:
- 3: 4352
- 2: 8940
+ 2: 4352
+ 1: 8940
20,-11:
- 3: 32784
- 2: 14790
+ 2: 32784
+ 1: 14790
11,-23:
- 3: 49152
+ 2: 49152
11,-22:
- 3: 43148
- 2: 1088
+ 2: 43148
+ 1: 1088
12,-23:
- 3: 4096
+ 2: 4096
12,-22:
- 3: 273
+ 2: 273
-4,-24:
- 3: 238
- 2: 19456
+ 2: 238
+ 1: 19456
-4,-25:
- 3: 57344
+ 2: 57344
-4,-23:
- 2: 52292
- 3: 128
+ 1: 52292
+ 2: 128
-4,-22:
- 2: 52428
+ 1: 52428
-3,-24:
- 2: 487
- 3: 63000
+ 1: 487
+ 2: 63000
-3,-23:
- 3: 51071
- 2: 4096
+ 2: 51071
+ 1: 4096
-3,-25:
- 2: 11840
- 3: 49152
+ 1: 11840
+ 2: 49152
-3,-22:
- 3: 4
- 2: 34816
+ 2: 4
+ 1: 34816
-2,-24:
- 3: 49147
+ 2: 49147
-2,-23:
- 3: 49416
- 2: 13024
+ 2: 49416
+ 1: 13024
-2,-22:
- 2: 13106
- 3: 68
+ 1: 13106
+ 2: 68
-2,-25:
- 3: 34816
- 2: 640
+ 2: 34816
+ 1: 640
-1,-24:
- 3: 65535
+ 2: 65535
-1,-23:
- 2: 248
- 3: 39426
+ 1: 248
+ 2: 39426
-1,-22:
- 2: 48
- 3: 32974
+ 1: 48
+ 2: 32974
-1,-25:
- 3: 7492
- 2: 178
+ 2: 7492
+ 1: 178
0,-24:
- 3: 30481
- 2: 35054
+ 2: 30481
+ 1: 35054
0,-23:
- 2: 58
- 3: 57284
+ 1: 58
+ 2: 57284
0,-22:
- 3: 29439
+ 2: 29439
-16,8:
- 2: 204
+ 1: 204
-16,7:
- 2: 51336
+ 1: 51336
-15,8:
- 2: 31
+ 1: 31
-15,7:
- 2: 61713
+ 1: 61713
-14,8:
- 2: 127
+ 1: 127
-14,7:
- 2: 61986
- 3: 85
+ 1: 61986
+ 2: 85
-3,9:
- 2: 18
+ 1: 18
-16,2:
- 2: 52360
+ 1: 52360
-16,3:
- 2: 52364
+ 1: 52364
-16,4:
- 2: 52364
+ 1: 52364
-16,1:
- 2: 34952
+ 1: 34952
-15,1:
- 2: 65315
+ 1: 65315
-15,2:
- 2: 61713
- 3: 2048
+ 1: 61713
+ 2: 2048
-15,3:
- 2: 61713
- 3: 2056
+ 1: 61713
+ 2: 2056
-15,4:
- 2: 61713
- 3: 2056
+ 1: 61713
+ 2: 2056
-14,1:
- 2: 65280
+ 1: 65280
-14,2:
- 3: 36608
- 2: 28672
+ 2: 36608
+ 1: 28672
-14,3:
- 3: 36623
- 2: 28672
+ 2: 36623
+ 1: 28672
-14,4:
- 3: 36623
- 2: 28672
+ 2: 36623
+ 1: 28672
0,-21:
- 3: 2
+ 2: 2
0,-25:
- 2: 43679
- 3: 256
+ 1: 43679
+ 2: 256
1,-24:
- 2: 547
- 3: 60620
+ 1: 547
+ 2: 60620
1,-23:
- 3: 52730
+ 2: 52730
1,-22:
- 2: 96
+ 1: 96
1,-25:
- 2: 8449
- 3: 50910
+ 1: 8449
+ 2: 50910
2,-24:
- 3: 61438
+ 2: 61438
2,-23:
- 3: 32552
+ 2: 32552
2,-22:
- 3: 231
- 2: 60928
+ 2: 231
+ 1: 60928
2,-25:
- 3: 24576
- 2: 3329
+ 2: 24576
+ 1: 3329
24,-10:
- 3: 4096
+ 2: 4096
23,-10:
- 2: 52851
- 3: 12288
+ 1: 52851
+ 2: 12288
-16,5:
- 2: 52364
+ 1: 52364
-16,6:
- 2: 34956
+ 1: 34956
-15,5:
- 2: 46353
- 3: 16392
+ 1: 46353
+ 2: 16392
-15,6:
- 2: 4373
+ 1: 4373
-14,5:
- 3: 8207
- 2: 53760
+ 2: 8207
+ 1: 53760
-14,6:
- 3: 21872
- 2: 8706
+ 2: 21872
+ 1: 8706
-13,6:
- 3: 21872
- 2: 8706
+ 2: 21872
+ 1: 8706
20,-13:
- 2: 12850
- 3: 257
+ 1: 12850
+ 2: 257
20,-10:
- 2: 35879
- 3: 8
+ 1: 35879
+ 2: 8
21,-12:
- 2: 52851
+ 1: 52851
21,-11:
- 2: 264
- 3: 4096
+ 1: 264
+ 2: 4096
21,-10:
- 3: 33
- 2: 29124
+ 2: 33
+ 1: 29124
22,-12:
- 2: 4096
+ 1: 4096
22,-11:
- 2: 52851
+ 1: 52851
22,-10:
- 2: 52792
+ 1: 52792
23,-11:
- 2: 4096
+ 1: 4096
16,-21:
- 3: 48058
+ 2: 48058
16,-14:
- 2: 2
+ 1: 2
17,-16:
- 2: 1
- 3: 65534
+ 1: 1
+ 2: 65534
17,-15:
- 3: 34021
- 2: 25360
+ 2: 34021
+ 1: 25360
17,-17:
- 3: 65505
+ 2: 65505
17,-14:
- 2: 17612
+ 1: 17612
18,-16:
- 3: 62463
- 2: 3072
+ 2: 62463
+ 1: 3072
18,-15:
- 3: 45055
- 2: 20480
+ 2: 45055
+ 1: 20480
18,-14:
- 2: 35226
+ 1: 35226
18,-17:
- 3: 63482
+ 2: 63482
19,-16:
- 2: 4352
+ 1: 4352
19,-15:
- 3: 273
+ 2: 273
0: 4096
- 2: 25088
+ 1: 25088
19,-14:
- 2: 2671
- 3: 128
+ 1: 2671
+ 2: 128
20,-14:
- 2: 12816
- 3: 256
+ 1: 12816
+ 2: 256
17,-20:
- 3: 34989
- 2: 22032
+ 2: 34989
+ 1: 22032
17,-19:
- 2: 34055
- 3: 2240
+ 1: 34055
+ 2: 2240
17,-18:
- 2: 28417
- 3: 16
+ 1: 28417
+ 2: 16
17,-21:
- 3: 56817
- 2: 4
+ 2: 56817
+ 1: 4
18,-20:
- 3: 65527
+ 2: 65527
18,-19:
- 3: 56784
+ 2: 56784
18,-18:
- 2: 1999
- 3: 61440
+ 1: 1999
+ 2: 61440
18,-21:
- 3: 12544
+ 2: 12544
19,-19:
- 3: 4384
+ 2: 4384
19,-18:
- 2: 4097
- 3: 34
+ 1: 4097
+ 2: 34
19,-17:
- 2: 256
+ 1: 256
16,-22:
- 2: 3168
- 3: 32768
+ 1: 3168
+ 2: 32768
17,-22:
- 3: 12288
+ 2: 12288
20,-3:
- 2: 60544
- 3: 8
+ 1: 60544
+ 2: 8
21,-3:
- 3: 127
- 2: 256
+ 2: 127
+ 1: 256
22,-3:
- 3: 37
+ 2: 37
-1,-26:
- 2: 24576
+ 1: 24576
0,-26:
- 2: 52352
+ 1: 52352
1,-26:
- 2: 4672
- 3: 60416
+ 1: 4672
+ 2: 60416
2,-26:
- 3: 29440
- 2: 35856
+ 2: 29440
+ 1: 35856
3,-25:
- 2: 768
+ 1: 768
-20,-12:
- 2: 36848
+ 1: 36848
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -14419,10 +14391,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 235
+ immutable: True
moles:
- - 21.824879
- - 82.10312
+ - 0
+ - 0
- 0
- 0
- 0
@@ -14434,7 +14406,7 @@ entities:
- 0
- 0
- volume: 2500
- immutable: True
+ temperature: 293.15
moles:
- 0
- 0
@@ -14449,10 +14421,10 @@ entities:
- 0
- 0
- volume: 2500
- temperature: 293.15
+ temperature: 235
moles:
- - 0
- - 0
+ - 21.824879
+ - 82.10312
- 0
- 0
- 0
@@ -14508,21 +14480,36 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
chunkSize: 4
- type: GasTileOverlay
- type: RadiationGridResistance
- type: NavMap
- type: Joint
joints:
- docking287: !type:WeldJoint
- bodyB: 2
- bodyA: 22984
- id: docking287
- localAnchorB: 19,29.5
- localAnchorA: 20,29.5
+ docking284: !type:WeldJoint
+ bodyB: 23224
+ bodyA: 2
+ id: docking284
+ localAnchorB: 20,28.5
+ localAnchorA: 19,28.5
damping: 33.95499
stiffness: 304.7793
- - uid: 22984
+ - uid: 23224
components:
- type: MetaData
name: grid
@@ -14533,7 +14520,7 @@ entities:
chunks:
1,1:
ind: 1,1
- tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARwAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAADgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -14566,14 +14553,14 @@ entities:
- type: NavMap
- type: Joint
joints:
- docking287: !type:WeldJoint
- bodyB: 2
- bodyA: 22984
- id: docking287
- localAnchorB: 19,29.5
- localAnchorA: 20,29.5
- damping: 33.954987
- stiffness: 304.77927
+ docking284: !type:WeldJoint
+ bodyB: 23224
+ bodyA: 2
+ id: docking284
+ localAnchorB: 20,28.5
+ localAnchorA: 19,28.5
+ damping: 33.95499
+ stiffness: 304.7793
- proto: AcousticGuitarInstrument
entities:
- uid: 10313
@@ -14595,6 +14582,13 @@ entities:
- type: InstantAction
originalIconColor: '#FFFFFFFF'
container: 8291
+ - uid: 22750
+ components:
+ - type: Transform
+ parent: 3686
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 3686
- proto: ActionToggleLight
entities:
- uid: 121
@@ -14723,6 +14717,7 @@ entities:
- 13955
- 13168
- 14030
+ - 1809
- uid: 81
components:
- type: Transform
@@ -15535,11 +15530,7 @@ entities:
- 23106
- 1809
- 20277
- - 15168
- - 15169
- - 15170
- - 15166
- - 20173
+ - 13168
- 15860
- 20393
- 6322
@@ -15604,10 +15595,7 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 15170
- - 15169
- - 15168
- - 15166
+ - 1809
- 11385
- 11465
- 11259
@@ -16547,7 +16535,6 @@ entities:
- uid: 255
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 41.5,14.5
parent: 2
- uid: 285
@@ -16568,7 +16555,6 @@ entities:
- uid: 986
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,17.5
parent: 2
- uid: 2083
@@ -16754,6 +16740,17 @@ entities:
parent: 2
- proto: AirlockExternalGlassAtmosphericsLocked
entities:
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 11.5,0.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23150:
+ - DoorStatus: DoorBolt
+ 22563:
+ - DoorStatus: DoorBolt
- uid: 1479
components:
- type: Transform
@@ -16789,31 +16786,15 @@ entities:
linkedPorts:
23144:
- DoorStatus: DoorBolt
- - uid: 10382
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 11.5,0.5
- parent: 2
- - type: DeviceLinkSink
- invokeCounter: 5
- - type: DeviceLinkSource
- linkedPorts:
- 22563:
- - DoorStatus: DoorBolt
- 23150:
- - DoorStatus: DoorBolt
- uid: 22563
components:
- type: Transform
pos: 12.5,3.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 4
+ invokeCounter: 6
- type: DeviceLinkSource
linkedPorts:
- 10382:
- - DoorStatus: DoorBolt
23150:
- DoorStatus: Open
- uid: 23144
@@ -16834,13 +16815,11 @@ entities:
pos: 11.5,2.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 5
- type: DeviceLinkSource
linkedPorts:
22563:
- DoorStatus: Open
- 10382:
- - DoorStatus: DoorBolt
- proto: AirlockExternalGlassCargoLocked
entities:
- uid: 1067
@@ -16862,7 +16841,7 @@ entities:
pos: 17.5,30.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
22491:
@@ -16874,7 +16853,7 @@ entities:
pos: 17.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
22393:
@@ -16898,7 +16877,7 @@ entities:
pos: 16.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
22393:
@@ -16910,7 +16889,7 @@ entities:
pos: 16.5,30.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
22491:
@@ -17065,7 +17044,7 @@ entities:
pos: 27.5,26.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
938:
@@ -17096,8 +17075,8 @@ entities:
linkedPorts:
21958:
- DoorStatus: DoorBolt
- 294:
- - DoorStatus: DoorBolt
+ 13412:
+ - DoorStatus: InputB
- uid: 3999
components:
- type: Transform
@@ -17311,8 +17290,8 @@ entities:
invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
- 294:
- - DoorStatus: DoorBolt
+ 13412:
+ - DoorStatus: InputA
938:
- DoorStatus: DoorBolt
- uid: 22090
@@ -17516,10 +17495,15 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,28.5
parent: 2
+ - type: Door
+ changeAirtight: False
+ - type: Docking
+ dockJointId: docking284
+ dockedWith: 23225
- type: DeviceLinkSource
- linkedPorts:
- 5002:
- - DoorStatus: InputB
+ lastSignals:
+ DoorStatus: False
+ DockStatus: True
- type: DeviceLinkSink
invokeCounter: 2
- uid: 6115
@@ -17576,41 +17560,21 @@ entities:
- DockStatus: InputA
- type: DeviceLinkSink
invokeCounter: 1
- - uid: 21962
+ - uid: 23225
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,29.5
- parent: 22984
+ pos: 20.5,28.5
+ parent: 23224
- type: Door
changeAirtight: False
- type: Docking
- dockJointId: docking287
- dockedWith: 22009
+ dockJointId: docking284
+ dockedWith: 5486
- type: DeviceLinkSource
lastSignals:
DoorStatus: False
DockStatus: True
- - uid: 22009
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,29.5
- parent: 2
- - type: Door
- changeAirtight: False
- - type: Docking
- dockJointId: docking287
- dockedWith: 21962
- - type: DeviceLinkSource
- linkedPorts:
- 5002:
- - DoorStatus: InputA
- lastSignals:
- DoorStatus: False
- DockStatus: True
- - type: DeviceLinkSink
- invokeCounter: 2
- proto: AirlockFreezerLocked
entities:
- uid: 2608
@@ -18090,7 +18054,6 @@ entities:
- uid: 141
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -12.5,-31.5
parent: 2
- uid: 3301
@@ -18120,7 +18083,6 @@ entities:
- uid: 260
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-31.5
parent: 2
- uid: 3485
@@ -18512,7 +18474,6 @@ entities:
- uid: 22100
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 20.5,-1.5
parent: 2
- proto: AirlockMaintRnDLocked
@@ -18789,6 +18750,11 @@ entities:
- type: Transform
pos: 39.5,-43.5
parent: 2
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 39.5,-31.5
+ parent: 2
- uid: 3925
components:
- type: Transform
@@ -18814,13 +18780,6 @@ entities:
- type: Transform
pos: 26.5,-30.5
parent: 2
-- proto: AirlockScienceLocked
- entities:
- - uid: 83
- components:
- - type: Transform
- pos: 39.5,-31.5
- parent: 2
- proto: AirlockSecurityGlassLocked
entities:
- uid: 318
@@ -19048,6 +19007,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 14795
+ - 15139
+ - 58
- uid: 2591
components:
- type: Transform
@@ -19245,6 +19206,7 @@ entities:
deviceLists:
- 15139
- 58
+ - 14795
- uid: 13418
components:
- type: Transform
@@ -20660,7 +20622,7 @@ entities:
- uid: 15664
components:
- type: Transform
- pos: -3.5428128,-42.34056
+ pos: -6.6169634,-43.162365
parent: 2
- uid: 18985
components:
@@ -20799,6 +20761,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 62.5,-53.5
parent: 2
+ - uid: 21796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,28.5
+ parent: 2
- uid: 21943
components:
- type: Transform
@@ -26868,11 +26836,6 @@ entities:
- type: Transform
pos: 16.5,32.5
parent: 2
- - uid: 22750
- components:
- - type: Transform
- pos: 20.5,29.5
- parent: 22984
- uid: 22803
components:
- type: Transform
@@ -27343,6 +27306,11 @@ entities:
- type: Transform
pos: 32.5,-60.5
parent: 2
+ - uid: 23226
+ components:
+ - type: Transform
+ pos: 20.5,28.5
+ parent: 23224
- proto: AtmosFixFreezerMarker
entities:
- uid: 7764
@@ -27985,6 +27953,11 @@ entities:
- type: Transform
pos: 7.5,5.5
parent: 2
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: 32.5,-58.5
+ parent: 2
- uid: 2954
components:
- type: Transform
@@ -28024,20 +27997,15 @@ entities:
- uid: 8141
components:
- type: Transform
- rot: 1.5707963267948966 rad
+ rot: -1.5707963267948966 rad
pos: 6.5,29.5
parent: 2
- uid: 9057
components:
- type: Transform
- rot: -1.5707963267948966 rad
+ rot: 1.5707963267948966 rad
pos: 2.5,29.5
parent: 2
- - uid: 9113
- components:
- - type: Transform
- pos: 32.5,-58.5
- parent: 2
- uid: 12822
components:
- type: Transform
@@ -28377,7 +28345,7 @@ entities:
- uid: 462
components:
- type: Transform
- pos: -27.73392,13.654132
+ pos: -27.699253,13.781265
parent: 2
- proto: BoxFlare
entities:
@@ -28391,7 +28359,7 @@ entities:
- uid: 3955
components:
- type: Transform
- pos: -24.289831,13.800506
+ pos: -27.009739,15.621929
parent: 2
- proto: BoxFolderBlack
entities:
@@ -28419,11 +28387,6 @@ entities:
parent: 2
- proto: BoxFolderClipboard
entities:
- - uid: 627
- components:
- - type: Transform
- pos: -27.573792,6.6655574
- parent: 2
- uid: 4370
components:
- type: Transform
@@ -28488,7 +28451,7 @@ entities:
- uid: 92
components:
- type: Transform
- pos: -24.623165,13.57118
+ pos: -27.519772,6.606838
parent: 2
- proto: BoxInflatable
entities:
@@ -28733,7 +28696,7 @@ entities:
- uid: 15039
components:
- type: Transform
- pos: -0.3603983,-45.15794
+ pos: -5.3761764,-45.357563
parent: 2
- uid: 17548
components:
@@ -43096,11 +43059,6 @@ entities:
- type: Transform
pos: -22.5,20.5
parent: 2
- - uid: 1314
- components:
- - type: Transform
- pos: -14.5,11.5
- parent: 2
- uid: 1315
components:
- type: Transform
@@ -43129,7 +43087,7 @@ entities:
- uid: 1409
components:
- type: Transform
- pos: -15.5,11.5
+ pos: -32.5,8.5
parent: 2
- uid: 1436
components:
@@ -43154,7 +43112,7 @@ entities:
- uid: 1633
components:
- type: Transform
- pos: 25.5,-39.5
+ pos: -32.5,9.5
parent: 2
- uid: 1652
components:
@@ -43429,7 +43387,7 @@ entities:
- uid: 2508
components:
- type: Transform
- pos: 38.5,-31.5
+ pos: 33.5,-54.5
parent: 2
- uid: 2510
components:
@@ -43439,7 +43397,7 @@ entities:
- uid: 2555
components:
- type: Transform
- pos: 39.5,-31.5
+ pos: 15.5,-56.5
parent: 2
- uid: 2570
components:
@@ -43474,37 +43432,37 @@ entities:
- uid: 2627
components:
- type: Transform
- pos: -15.5,4.5
+ pos: 43.5,-31.5
parent: 2
- uid: 2628
components:
- type: Transform
- pos: -15.5,5.5
+ pos: -32.5,1.5
parent: 2
- uid: 2629
components:
- type: Transform
- pos: -15.5,6.5
+ pos: -32.5,2.5
parent: 2
- uid: 2630
components:
- type: Transform
- pos: -15.5,7.5
+ pos: -32.5,3.5
parent: 2
- uid: 2631
components:
- type: Transform
- pos: -15.5,8.5
+ pos: -32.5,4.5
parent: 2
- uid: 2632
components:
- type: Transform
- pos: -15.5,9.5
+ pos: -32.5,5.5
parent: 2
- uid: 2633
components:
- type: Transform
- pos: -15.5,10.5
+ pos: -32.5,6.5
parent: 2
- uid: 2634
components:
@@ -43519,32 +43477,32 @@ entities:
- uid: 2643
components:
- type: Transform
- pos: -15.5,-2.5
+ pos: -32.5,7.5
parent: 2
- uid: 2644
components:
- type: Transform
- pos: -15.5,-3.5
+ pos: -32.5,-5.5
parent: 2
- uid: 2645
components:
- type: Transform
- pos: -15.5,-4.5
+ pos: -32.5,-6.5
parent: 2
- uid: 2646
components:
- type: Transform
- pos: -16.5,-4.5
+ pos: -32.5,-7.5
parent: 2
- uid: 2647
components:
- type: Transform
- pos: -16.5,-5.5
+ pos: -32.5,-8.5
parent: 2
- uid: 2648
components:
- type: Transform
- pos: -16.5,-6.5
+ pos: -32.5,-9.5
parent: 2
- uid: 2651
components:
@@ -43554,12 +43512,12 @@ entities:
- uid: 2652
components:
- type: Transform
- pos: 40.5,-31.5
+ pos: -32.5,-10.5
parent: 2
- uid: 2666
components:
- type: Transform
- pos: 27.5,-39.5
+ pos: 42.5,-31.5
parent: 2
- uid: 2668
components:
@@ -43569,7 +43527,7 @@ entities:
- uid: 2677
components:
- type: Transform
- pos: 37.5,-31.5
+ pos: 32.5,-54.5
parent: 2
- uid: 2680
components:
@@ -43759,7 +43717,7 @@ entities:
- uid: 3125
components:
- type: Transform
- pos: 34.5,-37.5
+ pos: 16.5,-56.5
parent: 2
- uid: 3154
components:
@@ -43799,17 +43757,17 @@ entities:
- uid: 3476
components:
- type: Transform
- pos: 28.5,-37.5
+ pos: 24.5,-55.5
parent: 2
- uid: 3514
components:
- type: Transform
- pos: 32.5,-37.5
+ pos: 29.5,-55.5
parent: 2
- uid: 3560
components:
- type: Transform
- pos: 30.5,-37.5
+ pos: 26.5,-55.5
parent: 2
- uid: 3565
components:
@@ -43829,7 +43787,7 @@ entities:
- uid: 3622
components:
- type: Transform
- pos: 27.5,-37.5
+ pos: 28.5,-55.5
parent: 2
- uid: 3660
components:
@@ -43839,7 +43797,7 @@ entities:
- uid: 3681
components:
- type: Transform
- pos: 27.5,-38.5
+ pos: 30.5,-54.5
parent: 2
- uid: 3890
components:
@@ -44049,17 +44007,17 @@ entities:
- uid: 4308
components:
- type: Transform
- pos: 29.5,-37.5
+ pos: 31.5,-54.5
parent: 2
- uid: 4309
components:
- type: Transform
- pos: 31.5,-37.5
+ pos: 30.5,-55.5
parent: 2
- uid: 4310
components:
- type: Transform
- pos: 33.5,-37.5
+ pos: 27.5,-55.5
parent: 2
- uid: 4322
components:
@@ -44244,7 +44202,7 @@ entities:
- uid: 5853
components:
- type: Transform
- pos: 23.5,7.5
+ pos: 25.5,-55.5
parent: 2
- uid: 5879
components:
@@ -44294,7 +44252,7 @@ entities:
- uid: 5964
components:
- type: Transform
- pos: 31.5,-0.5
+ pos: 22.5,6.5
parent: 2
- uid: 6006
components:
@@ -44304,7 +44262,7 @@ entities:
- uid: 6026
components:
- type: Transform
- pos: 31.5,-1.5
+ pos: -30.5,17.5
parent: 2
- uid: 6038
components:
@@ -44529,7 +44487,7 @@ entities:
- uid: 6659
components:
- type: Transform
- pos: 31.5,-2.5
+ pos: -30.5,18.5
parent: 2
- uid: 6703
components:
@@ -44564,7 +44522,7 @@ entities:
- uid: 6959
components:
- type: Transform
- pos: -15.5,1.5
+ pos: -30.5,19.5
parent: 2
- uid: 6973
components:
@@ -44634,12 +44592,12 @@ entities:
- uid: 7133
components:
- type: Transform
- pos: 21.5,7.5
+ pos: -32.5,-1.5
parent: 2
- uid: 7141
components:
- type: Transform
- pos: 24.5,7.5
+ pos: 21.5,7.5
parent: 2
- uid: 7152
components:
@@ -44699,7 +44657,7 @@ entities:
- uid: 7595
components:
- type: Transform
- pos: -15.5,0.5
+ pos: 23.5,6.5
parent: 2
- uid: 7604
components:
@@ -44709,7 +44667,7 @@ entities:
- uid: 7695
components:
- type: Transform
- pos: 22.5,7.5
+ pos: -32.5,-2.5
parent: 2
- uid: 7728
components:
@@ -44764,7 +44722,7 @@ entities:
- uid: 8034
components:
- type: Transform
- pos: -15.5,2.5
+ pos: 21.5,6.5
parent: 2
- uid: 8048
components:
@@ -44914,17 +44872,17 @@ entities:
- uid: 8686
components:
- type: Transform
- pos: 31.5,7.5
+ pos: 30.5,6.5
parent: 2
- uid: 8691
components:
- type: Transform
- pos: 29.5,7.5
+ pos: 28.5,6.5
parent: 2
- uid: 8692
components:
- type: Transform
- pos: 30.5,7.5
+ pos: 29.5,6.5
parent: 2
- uid: 8709
components:
@@ -45129,7 +45087,7 @@ entities:
- uid: 8883
components:
- type: Transform
- pos: -15.5,3.5
+ pos: -32.5,-0.5
parent: 2
- uid: 8914
components:
@@ -45716,11 +45674,6 @@ entities:
- type: Transform
pos: 7.5,-25.5
parent: 2
- - uid: 9644
- components:
- - type: Transform
- pos: 31.5,-8.5
- parent: 2
- uid: 9657
components:
- type: Transform
@@ -45829,7 +45782,7 @@ entities:
- uid: 10168
components:
- type: Transform
- pos: 31.5,-3.5
+ pos: 27.5,-14.5
parent: 2
- uid: 10176
components:
@@ -45924,32 +45877,32 @@ entities:
- uid: 10268
components:
- type: Transform
- pos: 30.5,-21.5
+ pos: 28.5,-14.5
parent: 2
- uid: 10269
components:
- type: Transform
- pos: 29.5,-21.5
+ pos: 29.5,-14.5
parent: 2
- uid: 10270
components:
- type: Transform
- pos: 28.5,-21.5
+ pos: 30.5,-14.5
parent: 2
- uid: 10271
components:
- type: Transform
- pos: 27.5,-21.5
+ pos: -32.5,10.5
parent: 2
- uid: 10272
components:
- type: Transform
- pos: 26.5,-21.5
+ pos: -32.5,12.5
parent: 2
- uid: 10273
components:
- type: Transform
- pos: 24.5,-21.5
+ pos: -32.5,11.5
parent: 2
- uid: 10274
components:
@@ -46004,7 +45957,7 @@ entities:
- uid: 10284
components:
- type: Transform
- pos: 25.5,-21.5
+ pos: 26.5,-14.5
parent: 2
- uid: 10285
components:
@@ -46039,23 +45992,28 @@ entities:
- uid: 10308
components:
- type: Transform
- pos: 31.5,-21.5
+ pos: 25.5,-14.5
parent: 2
- uid: 10309
components:
- type: Transform
- pos: 31.5,-20.5
+ pos: 24.5,-14.5
parent: 2
- uid: 10310
components:
- type: Transform
- pos: 31.5,-19.5
+ pos: 27.5,6.5
parent: 2
- uid: 10311
components:
- type: Transform
pos: 31.5,-18.5
parent: 2
+ - uid: 10382
+ components:
+ - type: Transform
+ pos: 34.5,-54.5
+ parent: 2
- uid: 10437
components:
- type: Transform
@@ -46079,7 +46037,7 @@ entities:
- uid: 10683
components:
- type: Transform
- pos: 28.5,7.5
+ pos: 17.5,-56.5
parent: 2
- uid: 10716
components:
@@ -46109,7 +46067,7 @@ entities:
- uid: 11177
components:
- type: Transform
- pos: 31.5,-9.5
+ pos: 26.5,6.5
parent: 2
- uid: 11179
components:
@@ -46194,12 +46152,12 @@ entities:
- uid: 11415
components:
- type: Transform
- pos: 26.5,-39.5
+ pos: -33.5,-14.5
parent: 2
- uid: 11417
components:
- type: Transform
- pos: 36.5,-31.5
+ pos: -33.5,-13.5
parent: 2
- uid: 11418
components:
@@ -46359,7 +46317,7 @@ entities:
- uid: 12560
components:
- type: Transform
- pos: 27.5,7.5
+ pos: -33.5,-12.5
parent: 2
- uid: 12669
components:
@@ -46374,27 +46332,22 @@ entities:
- uid: 12893
components:
- type: Transform
- pos: -16.5,-11.5
+ pos: -33.5,-11.5
parent: 2
- uid: 12894
components:
- type: Transform
- pos: -16.5,-10.5
+ pos: -32.5,-11.5
parent: 2
- uid: 12895
components:
- type: Transform
- pos: -16.5,-9.5
+ pos: 24.5,6.5
parent: 2
- uid: 12896
components:
- type: Transform
- pos: -16.5,-8.5
- parent: 2
- - uid: 12897
- components:
- - type: Transform
- pos: -16.5,-7.5
+ pos: 25.5,6.5
parent: 2
- uid: 12985
components:
@@ -46471,21 +46424,11 @@ entities:
- type: Transform
pos: 4.5,-43.5
parent: 2
- - uid: 13742
- components:
- - type: Transform
- pos: 25.5,7.5
- parent: 2
- uid: 13760
components:
- type: Transform
pos: -27.5,-41.5
parent: 2
- - uid: 13763
- components:
- - type: Transform
- pos: 26.5,7.5
- parent: 2
- uid: 13786
components:
- type: Transform
@@ -46551,25 +46494,20 @@ entities:
- type: Transform
pos: 31.5,-17.5
parent: 2
- - uid: 14791
- components:
- - type: Transform
- pos: 31.5,-7.5
- parent: 2
- uid: 14793
components:
- type: Transform
- pos: 31.5,-6.5
+ pos: 24.5,-56.5
parent: 2
- uid: 14794
components:
- type: Transform
- pos: 31.5,-5.5
+ pos: 23.5,-56.5
parent: 2
- uid: 14796
components:
- type: Transform
- pos: 31.5,-4.5
+ pos: 22.5,-56.5
parent: 2
- uid: 15145
components:
@@ -46954,17 +46892,12 @@ entities:
- uid: 17747
components:
- type: Transform
- pos: 34.5,-36.5
- parent: 2
- - uid: 17748
- components:
- - type: Transform
- pos: 34.5,-35.5
+ pos: 21.5,-56.5
parent: 2
- uid: 17749
components:
- type: Transform
- pos: 34.5,-34.5
+ pos: 19.5,-56.5
parent: 2
- uid: 17759
components:
@@ -47049,12 +46982,12 @@ entities:
- uid: 17836
components:
- type: Transform
- pos: 34.5,-33.5
+ pos: 18.5,-56.5
parent: 2
- uid: 17838
components:
- type: Transform
- pos: 34.5,-32.5
+ pos: -32.5,-3.5
parent: 2
- uid: 17839
components:
@@ -47079,12 +47012,12 @@ entities:
- uid: 17871
components:
- type: Transform
- pos: 34.5,-31.5
+ pos: -32.5,-4.5
parent: 2
- uid: 17884
components:
- type: Transform
- pos: 35.5,-31.5
+ pos: -30.5,16.5
parent: 2
- uid: 17887
components:
@@ -47156,6 +47089,11 @@ entities:
- type: Transform
pos: -28.5,22.5
parent: 2
+ - uid: 18021
+ components:
+ - type: Transform
+ pos: -30.5,15.5
+ parent: 2
- uid: 18128
components:
- type: Transform
@@ -47359,12 +47297,12 @@ entities:
- uid: 18904
components:
- type: Transform
- pos: -15.5,-0.5
+ pos: -30.5,14.5
parent: 2
- uid: 18905
components:
- type: Transform
- pos: -15.5,-1.5
+ pos: -31.5,14.5
parent: 2
- uid: 18918
components:
@@ -47541,6 +47479,11 @@ entities:
- type: Transform
pos: -16.5,-55.5
parent: 2
+ - uid: 20768
+ components:
+ - type: Transform
+ pos: -32.5,14.5
+ parent: 2
- uid: 20807
components:
- type: Transform
@@ -47804,32 +47747,27 @@ entities:
- uid: 21793
components:
- type: Transform
- pos: 31.5,0.5
+ pos: -32.5,13.5
parent: 2
- uid: 21794
components:
- type: Transform
- pos: 31.5,1.5
+ pos: -32.5,0.5
parent: 2
- uid: 21795
components:
- type: Transform
- pos: 31.5,2.5
- parent: 2
- - uid: 21796
- components:
- - type: Transform
- pos: 31.5,3.5
+ pos: 20.5,-56.5
parent: 2
- uid: 21797
components:
- type: Transform
- pos: 31.5,4.5
+ pos: 35.5,-54.5
parent: 2
- uid: 21798
components:
- type: Transform
- pos: 31.5,5.5
+ pos: 36.5,-54.5
parent: 2
- uid: 21799
components:
@@ -47921,6 +47859,406 @@ entities:
- type: Transform
pos: -29.5,-17.5
parent: 2
+ - uid: 22755
+ components:
+ - type: Transform
+ pos: 37.5,-54.5
+ parent: 2
+ - uid: 23227
+ components:
+ - type: Transform
+ pos: 37.5,-53.5
+ parent: 2
+ - uid: 23228
+ components:
+ - type: Transform
+ pos: 38.5,-53.5
+ parent: 2
+ - uid: 23229
+ components:
+ - type: Transform
+ pos: 39.5,-53.5
+ parent: 2
+ - uid: 23230
+ components:
+ - type: Transform
+ pos: 40.5,-53.5
+ parent: 2
+ - uid: 23231
+ components:
+ - type: Transform
+ pos: 41.5,-53.5
+ parent: 2
+ - uid: 23232
+ components:
+ - type: Transform
+ pos: 42.5,-53.5
+ parent: 2
+ - uid: 23233
+ components:
+ - type: Transform
+ pos: 43.5,-53.5
+ parent: 2
+ - uid: 23234
+ components:
+ - type: Transform
+ pos: 44.5,-53.5
+ parent: 2
+ - uid: 23235
+ components:
+ - type: Transform
+ pos: 44.5,-52.5
+ parent: 2
+ - uid: 23236
+ components:
+ - type: Transform
+ pos: 45.5,-52.5
+ parent: 2
+ - uid: 23237
+ components:
+ - type: Transform
+ pos: 46.5,-52.5
+ parent: 2
+ - uid: 23238
+ components:
+ - type: Transform
+ pos: 47.5,-52.5
+ parent: 2
+ - uid: 23239
+ components:
+ - type: Transform
+ pos: 48.5,-52.5
+ parent: 2
+ - uid: 23240
+ components:
+ - type: Transform
+ pos: 48.5,-51.5
+ parent: 2
+ - uid: 23241
+ components:
+ - type: Transform
+ pos: 48.5,-50.5
+ parent: 2
+ - uid: 23242
+ components:
+ - type: Transform
+ pos: 48.5,-49.5
+ parent: 2
+ - uid: 23243
+ components:
+ - type: Transform
+ pos: 48.5,-48.5
+ parent: 2
+ - uid: 23244
+ components:
+ - type: Transform
+ pos: 48.5,-47.5
+ parent: 2
+ - uid: 23245
+ components:
+ - type: Transform
+ pos: 48.5,-46.5
+ parent: 2
+ - uid: 23246
+ components:
+ - type: Transform
+ pos: 48.5,-45.5
+ parent: 2
+ - uid: 23247
+ components:
+ - type: Transform
+ pos: 48.5,-44.5
+ parent: 2
+ - uid: 23248
+ components:
+ - type: Transform
+ pos: 48.5,-43.5
+ parent: 2
+ - uid: 23249
+ components:
+ - type: Transform
+ pos: 48.5,-42.5
+ parent: 2
+ - uid: 23250
+ components:
+ - type: Transform
+ pos: 48.5,-41.5
+ parent: 2
+ - uid: 23251
+ components:
+ - type: Transform
+ pos: 48.5,-40.5
+ parent: 2
+ - uid: 23252
+ components:
+ - type: Transform
+ pos: 48.5,-39.5
+ parent: 2
+ - uid: 23253
+ components:
+ - type: Transform
+ pos: 48.5,-38.5
+ parent: 2
+ - uid: 23254
+ components:
+ - type: Transform
+ pos: 48.5,-37.5
+ parent: 2
+ - uid: 23255
+ components:
+ - type: Transform
+ pos: 43.5,-30.5
+ parent: 2
+ - uid: 23256
+ components:
+ - type: Transform
+ pos: 44.5,-30.5
+ parent: 2
+ - uid: 23257
+ components:
+ - type: Transform
+ pos: 45.5,-30.5
+ parent: 2
+ - uid: 23258
+ components:
+ - type: Transform
+ pos: 46.5,-30.5
+ parent: 2
+ - uid: 23259
+ components:
+ - type: Transform
+ pos: 47.5,-30.5
+ parent: 2
+ - uid: 23260
+ components:
+ - type: Transform
+ pos: 48.5,-30.5
+ parent: 2
+ - uid: 23261
+ components:
+ - type: Transform
+ pos: 48.5,-31.5
+ parent: 2
+ - uid: 23262
+ components:
+ - type: Transform
+ pos: 48.5,-32.5
+ parent: 2
+ - uid: 23263
+ components:
+ - type: Transform
+ pos: 48.5,-33.5
+ parent: 2
+ - uid: 23264
+ components:
+ - type: Transform
+ pos: 48.5,-34.5
+ parent: 2
+ - uid: 23265
+ components:
+ - type: Transform
+ pos: 48.5,-35.5
+ parent: 2
+ - uid: 23266
+ components:
+ - type: Transform
+ pos: 48.5,-36.5
+ parent: 2
+ - uid: 23267
+ components:
+ - type: Transform
+ pos: 41.5,1.5
+ parent: 2
+ - uid: 23268
+ components:
+ - type: Transform
+ pos: 41.5,0.5
+ parent: 2
+ - uid: 23269
+ components:
+ - type: Transform
+ pos: 41.5,-0.5
+ parent: 2
+ - uid: 23270
+ components:
+ - type: Transform
+ pos: 41.5,-1.5
+ parent: 2
+ - uid: 23271
+ components:
+ - type: Transform
+ pos: 41.5,-2.5
+ parent: 2
+ - uid: 23272
+ components:
+ - type: Transform
+ pos: 41.5,-3.5
+ parent: 2
+ - uid: 23273
+ components:
+ - type: Transform
+ pos: 41.5,-4.5
+ parent: 2
+ - uid: 23274
+ components:
+ - type: Transform
+ pos: 42.5,-4.5
+ parent: 2
+ - uid: 23275
+ components:
+ - type: Transform
+ pos: 43.5,-4.5
+ parent: 2
+ - uid: 23276
+ components:
+ - type: Transform
+ pos: 44.5,-4.5
+ parent: 2
+ - uid: 23277
+ components:
+ - type: Transform
+ pos: 45.5,-4.5
+ parent: 2
+ - uid: 23278
+ components:
+ - type: Transform
+ pos: 45.5,-5.5
+ parent: 2
+ - uid: 23279
+ components:
+ - type: Transform
+ pos: 45.5,-6.5
+ parent: 2
+ - uid: 23280
+ components:
+ - type: Transform
+ pos: 45.5,-7.5
+ parent: 2
+ - uid: 23281
+ components:
+ - type: Transform
+ pos: 45.5,-8.5
+ parent: 2
+ - uid: 23282
+ components:
+ - type: Transform
+ pos: 45.5,-9.5
+ parent: 2
+ - uid: 23283
+ components:
+ - type: Transform
+ pos: 45.5,-10.5
+ parent: 2
+ - uid: 23284
+ components:
+ - type: Transform
+ pos: 45.5,-11.5
+ parent: 2
+ - uid: 23285
+ components:
+ - type: Transform
+ pos: 45.5,-12.5
+ parent: 2
+ - uid: 23286
+ components:
+ - type: Transform
+ pos: 45.5,-13.5
+ parent: 2
+ - uid: 23287
+ components:
+ - type: Transform
+ pos: 45.5,-14.5
+ parent: 2
+ - uid: 23288
+ components:
+ - type: Transform
+ pos: 45.5,-15.5
+ parent: 2
+ - uid: 23289
+ components:
+ - type: Transform
+ pos: 45.5,-16.5
+ parent: 2
+ - uid: 23290
+ components:
+ - type: Transform
+ pos: 45.5,-17.5
+ parent: 2
+ - uid: 23291
+ components:
+ - type: Transform
+ pos: 45.5,-18.5
+ parent: 2
+ - uid: 23292
+ components:
+ - type: Transform
+ pos: 45.5,-19.5
+ parent: 2
+ - uid: 23293
+ components:
+ - type: Transform
+ pos: 45.5,-20.5
+ parent: 2
+ - uid: 23294
+ components:
+ - type: Transform
+ pos: 45.5,-21.5
+ parent: 2
+ - uid: 23295
+ components:
+ - type: Transform
+ pos: 45.5,-22.5
+ parent: 2
+ - uid: 23296
+ components:
+ - type: Transform
+ pos: 45.5,-23.5
+ parent: 2
+ - uid: 23297
+ components:
+ - type: Transform
+ pos: 45.5,-24.5
+ parent: 2
+ - uid: 23298
+ components:
+ - type: Transform
+ pos: 45.5,-25.5
+ parent: 2
+ - uid: 23299
+ components:
+ - type: Transform
+ pos: 46.5,-25.5
+ parent: 2
+ - uid: 23300
+ components:
+ - type: Transform
+ pos: 47.5,-25.5
+ parent: 2
+ - uid: 23301
+ components:
+ - type: Transform
+ pos: 48.5,-25.5
+ parent: 2
+ - uid: 23302
+ components:
+ - type: Transform
+ pos: 48.5,-26.5
+ parent: 2
+ - uid: 23303
+ components:
+ - type: Transform
+ pos: 48.5,-27.5
+ parent: 2
+ - uid: 23304
+ components:
+ - type: Transform
+ pos: 48.5,-28.5
+ parent: 2
+ - uid: 23305
+ components:
+ - type: Transform
+ pos: 48.5,-29.5
+ parent: 2
- proto: CableHVStack
entities:
- uid: 3391
@@ -49875,6 +50213,11 @@ entities:
- type: Transform
pos: 45.5,-10.5
parent: 2
+ - uid: 8264
+ components:
+ - type: Transform
+ pos: -15.5,3.5
+ parent: 2
- uid: 8274
components:
- type: Transform
@@ -52565,11 +52908,6 @@ entities:
- type: Transform
pos: -15.5,4.5
parent: 2
- - uid: 18021
- components:
- - type: Transform
- pos: -15.5,3.5
- parent: 2
- uid: 18022
components:
- type: Transform
@@ -54482,7 +54820,6 @@ entities:
- uid: 6740
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-38.5
parent: 2
- uid: 7109
@@ -54493,13 +54830,11 @@ entities:
- uid: 7409
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-39.5
parent: 2
- uid: 7523
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -11.5,-39.5
parent: 2
- uid: 8343
@@ -54510,31 +54845,26 @@ entities:
- uid: 10183
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,-38.5
parent: 2
- uid: 10258
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,-39.5
parent: 2
- uid: 11302
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -11.5,-38.5
parent: 2
- uid: 14970
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-38.5
parent: 2
- uid: 15873
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -7.5,-39.5
parent: 2
- uid: 16208
@@ -54545,7 +54875,6 @@ entities:
- uid: 18384
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-38.5
parent: 2
- uid: 18507
@@ -54556,7 +54885,6 @@ entities:
- uid: 18590
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-39.5
parent: 2
- uid: 18777
@@ -54587,13 +54915,11 @@ entities:
- uid: 21873
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-39.5
parent: 2
- uid: 22177
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -7.5,-38.5
parent: 2
- proto: CarpetBlack
@@ -54601,97 +54927,81 @@ entities:
- uid: 8406
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 7.5,-33.5
parent: 2
- uid: 9986
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -2.5,-38.5
parent: 2
- uid: 10141
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 6.5,-33.5
parent: 2
- uid: 10184
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-33.5
parent: 2
- uid: 10495
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-38.5
parent: 2
- uid: 13687
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-37.5
parent: 2
- uid: 13688
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -2.5,-37.5
parent: 2
- uid: 13689
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 7.5,-34.5
parent: 2
- uid: 13690
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 6.5,-34.5
parent: 2
- uid: 13692
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 5.5,-34.5
parent: 2
- uid: 14813
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -21.5,11.5
parent: 2
- uid: 14819
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -22.5,12.5
parent: 2
- uid: 14820
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -22.5,11.5
parent: 2
- uid: 14879
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -21.5,12.5
parent: 2
- uid: 15304
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -22.5,10.5
parent: 2
- uid: 15329
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -21.5,10.5
parent: 2
- proto: CarpetBlue
@@ -54699,31 +55009,26 @@ entities:
- uid: 16
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-46.5
parent: 2
- uid: 157
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,19.5
parent: 2
- uid: 158
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,18.5
parent: 2
- uid: 297
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-46.5
parent: 2
- uid: 362
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-47.5
parent: 2
- uid: 1286
@@ -54734,7 +55039,6 @@ entities:
- uid: 1690
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-45.5
parent: 2
- uid: 1742
@@ -54745,31 +55049,26 @@ entities:
- uid: 2525
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -26.5,-45.5
parent: 2
- uid: 2567
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -26.5,-47.5
parent: 2
- uid: 3068
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -26.5,-46.5
parent: 2
- uid: 3123
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-46.5
parent: 2
- uid: 3130
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -26.5,-44.5
parent: 2
- uid: 3171
@@ -54780,79 +55079,66 @@ entities:
- uid: 4783
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-47.5
parent: 2
- uid: 4797
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-44.5
parent: 2
- uid: 4948
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-45.5
parent: 2
- uid: 4963
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-44.5
parent: 2
- uid: 4967
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-44.5
parent: 2
- uid: 4971
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-44.5
parent: 2
- uid: 5013
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-45.5
parent: 2
- uid: 5213
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-46.5
parent: 2
- uid: 5243
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-47.5
parent: 2
- uid: 5750
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-47.5
parent: 2
- uid: 5751
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-45.5
parent: 2
- uid: 6182
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -7.5,19.5
parent: 2
- uid: 6378
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -7.5,18.5
parent: 2
- uid: 9699
@@ -54873,25 +55159,21 @@ entities:
- uid: 9964
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -11.5,-50.5
parent: 2
- uid: 9965
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -11.5,-51.5
parent: 2
- uid: 9966
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-51.5
parent: 2
- uid: 9967
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-50.5
parent: 2
- uid: 14003
@@ -54902,13 +55184,11 @@ entities:
- uid: 20248
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -24.5,-50.5
parent: 2
- uid: 20249
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -24.5,-51.5
parent: 2
- uid: 20820
@@ -55069,49 +55349,41 @@ entities:
- uid: 419
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-53.5
parent: 2
- uid: 3188
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-51.5
parent: 2
- uid: 4109
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-56.5
parent: 2
- uid: 4668
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-54.5
parent: 2
- uid: 4756
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-51.5
parent: 2
- uid: 4757
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-53.5
parent: 2
- uid: 4776
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-54.5
parent: 2
- uid: 4787
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-56.5
parent: 2
- uid: 5042
@@ -55244,13 +55516,11 @@ entities:
- uid: 7504
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -20.5,-30.5
parent: 2
- uid: 7509
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -20.5,-29.5
parent: 2
- uid: 9468
@@ -55356,13 +55626,11 @@ entities:
- uid: 9989
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -18.5,-29.5
parent: 2
- uid: 10442
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -18.5,-30.5
parent: 2
- uid: 11973
@@ -55378,13 +55646,11 @@ entities:
- uid: 13698
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -19.5,-29.5
parent: 2
- uid: 13699
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -19.5,-30.5
parent: 2
- uid: 14847
@@ -55407,25 +55673,21 @@ entities:
- uid: 3197
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 3.5,-53.5
parent: 2
- uid: 3334
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,11.5
parent: 2
- uid: 3335
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,12.5
parent: 2
- uid: 3563
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 2.5,-51.5
parent: 2
- uid: 3901
@@ -55441,19 +55703,16 @@ entities:
- uid: 6530
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -0.5,-51.5
parent: 2
- uid: 7304
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,3.5
parent: 2
- uid: 7339
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,3.5
parent: 2
- uid: 8591
@@ -55469,55 +55728,46 @@ entities:
- uid: 10590
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 3.5,-52.5
parent: 2
- uid: 10593
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -0.5,-53.5
parent: 2
- uid: 10959
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -0.5,-52.5
parent: 2
- uid: 10960
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 0.5,-52.5
parent: 2
- uid: 10961
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 0.5,-53.5
parent: 2
- uid: 10962
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 3.5,-51.5
parent: 2
- uid: 10967
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 2.5,-52.5
parent: 2
- uid: 11005
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 2.5,-53.5
parent: 2
- uid: 11832
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 0.5,-51.5
parent: 2
- uid: 15859
@@ -55575,19 +55825,16 @@ entities:
- uid: 1048
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,-34.5
parent: 2
- uid: 1323
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 27.5,-35.5
parent: 2
- uid: 1404
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 27.5,-34.5
parent: 2
- uid: 1565
@@ -55598,7 +55845,6 @@ entities:
- uid: 1637
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,-33.5
parent: 2
- uid: 10403
@@ -55649,7 +55895,6 @@ entities:
- uid: 18852
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-35.5
parent: 2
- uid: 22523
@@ -55667,85 +55912,71 @@ entities:
- uid: 3661
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-36.5
parent: 2
- uid: 3731
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-35.5
parent: 2
- uid: 3742
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-38.5
parent: 2
- uid: 3746
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-39.5
parent: 2
- uid: 3764
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-36.5
parent: 2
- uid: 3767
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-38.5
parent: 2
- uid: 3769
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-35.5
parent: 2
- uid: 3770
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-39.5
parent: 2
- uid: 3771
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-37.5
parent: 2
- uid: 3772
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-37.5
parent: 2
- uid: 7235
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-48.5
parent: 2
- uid: 7329
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -16.5,-48.5
parent: 2
- uid: 7650
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -15.5,-46.5
parent: 2
- uid: 7677
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -15.5,-47.5
parent: 2
- uid: 9332
@@ -55756,49 +55987,41 @@ entities:
- uid: 9988
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -2.5,-34.5
parent: 2
- uid: 10261
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -16.5,-46.5
parent: 2
- uid: 10487
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -15.5,-48.5
parent: 2
- uid: 13682
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -16.5,-47.5
parent: 2
- uid: 13684
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-47.5
parent: 2
- uid: 13685
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-46.5
parent: 2
- uid: 13696
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -2.5,-35.5
parent: 2
- uid: 13697
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-35.5
parent: 2
- uid: 14940
@@ -55809,7 +56032,6 @@ entities:
- uid: 17581
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-34.5
parent: 2
- uid: 18844
@@ -56295,12 +56517,6 @@ entities:
- type: Transform
pos: 14.5,-62.5
parent: 2
- - uid: 1263
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-3.5
- parent: 2
- uid: 1269
components:
- type: Transform
@@ -60468,6 +60684,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 42.5,14.5
parent: 2
+ - uid: 23207
+ components:
+ - type: Transform
+ pos: 23.5,-3.5
+ parent: 2
- proto: CelloInstrument
entities:
- uid: 5831
@@ -62795,15 +63016,10 @@ entities:
- uid: 3621
components:
- type: Transform
- pos: 7.5706596,-16.44566
+ pos: 7.6282854,-16.45392
parent: 2
- proto: ClothingHandsGlovesColorYellowBudget
entities:
- - uid: 14105
- components:
- - type: Transform
- pos: -53.26527,-23.38064
- parent: 2
- uid: 18092
components:
- type: Transform
@@ -62976,11 +63192,6 @@ entities:
- type: Transform
pos: -9.481663,24.584553
parent: 2
- - uid: 20267
- components:
- - type: Transform
- pos: -27.292542,6.769797
- parent: 2
- proto: ClothingHeadHatStrawHat
entities:
- uid: 1731
@@ -63023,6 +63234,18 @@ entities:
- type: Transform
pos: 71.56463,-77.43635
parent: 2
+- proto: ClothingHeadHelmetRiot
+ entities:
+ - uid: 2599
+ components:
+ - type: Transform
+ pos: -20.651012,5.6188574
+ parent: 2
+ - uid: 14105
+ components:
+ - type: Transform
+ pos: -20.400887,5.5041943
+ parent: 2
- proto: ClothingMaskBreath
entities:
- uid: 4372
@@ -63162,6 +63385,18 @@ entities:
- type: Transform
pos: 27.65064,-12.475961
parent: 2
+- proto: ClothingOuterArmorReflective
+ entities:
+ - uid: 627
+ components:
+ - type: Transform
+ pos: -21.27595,6.6553745
+ parent: 2
+ - uid: 8729
+ components:
+ - type: Transform
+ pos: -21.263597,6.5225677
+ parent: 2
- proto: ClothingOuterArmorRiot
entities:
- uid: 6250
@@ -63277,13 +63512,6 @@ entities:
priority: 0
component: Armor
title: null
-- proto: ClothingOuterSanta
- entities:
- - uid: 20268
- components:
- - type: Transform
- pos: -27.584208,6.675982
- parent: 2
- proto: ClothingOuterWinterBar
entities:
- uid: 7386
@@ -64747,6 +64975,11 @@ entities:
- type: Transform
pos: 48.5,-13.5
parent: 2
+ - uid: 12142
+ components:
+ - type: Transform
+ pos: -8.5,21.5
+ parent: 2
- uid: 15729
components:
- type: Transform
@@ -64967,6 +65200,13 @@ entities:
- type: Transform
pos: 28.5,-0.5
parent: 2
+- proto: CrateTechBoardRandom
+ entities:
+ - uid: 12128
+ components:
+ - type: Transform
+ pos: -34.5,17.5
+ parent: 2
- proto: CrateTrashCart
entities:
- uid: 9291
@@ -65529,6 +65769,16 @@ entities:
parent: 2
- proto: DefaultStationBeaconEscapePod
entities:
+ - uid: 9644
+ components:
+ - type: Transform
+ pos: -56.5,-53.5
+ parent: 2
+ - uid: 14791
+ components:
+ - type: Transform
+ pos: 61.5,-53.5
+ parent: 2
- uid: 22039
components:
- type: Transform
@@ -66188,6 +66438,12 @@ entities:
- type: Transform
pos: -33.5,-22.5
parent: 2
+ - uid: 15166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-45.5
+ parent: 2
- uid: 15356
components:
- type: Transform
@@ -67043,6 +67299,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -6.5,-36.5
parent: 2
+ - uid: 3717
+ components:
+ - type: Transform
+ pos: -1.5,-47.5
+ parent: 2
- uid: 3724
components:
- type: Transform
@@ -68592,12 +68853,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 0.5,-48.5
parent: 2
- - uid: 12142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-48.5
- parent: 2
- uid: 12143
components:
- type: Transform
@@ -69182,6 +69437,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,-15.5
parent: 2
+ - uid: 15169
+ components:
+ - type: Transform
+ pos: -1.5,-46.5
+ parent: 2
- uid: 15348
components:
- type: Transform
@@ -70650,6 +70910,15 @@ entities:
- type: DisposalRouter
tags:
- Botany
+ - uid: 3473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-48.5
+ parent: 2
+ - type: DisposalRouter
+ tags:
+ - Bar
- uid: 8351
components:
- type: Transform
@@ -70879,6 +71148,9 @@ entities:
rot: 3.141592653589793 rad
pos: 29.5,-58.5
parent: 2
+ - type: MailingUnit
+ tag: Trash
+ targetList: []
- uid: 3659
components:
- type: Transform
@@ -71012,6 +71284,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 40.5,8.5
parent: 2
+ - uid: 9113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-45.5
+ parent: 2
- uid: 9790
components:
- type: Transform
@@ -71887,6 +72165,11 @@ entities:
- type: Transform
pos: -6.7736864,17.657902
parent: 2
+ - uid: 23213
+ components:
+ - type: Transform
+ pos: -20.434305,10.842014
+ parent: 2
- proto: DrinkShotGlass
entities:
- uid: 6
@@ -72170,6 +72453,8 @@ entities:
rot: -1.5707963267948966 rad
pos: 10.5,-2.5
parent: 2
+ - type: Battery
+ startingCharge: 30000
- uid: 11124
components:
- type: Transform
@@ -73292,10 +73577,6 @@ entities:
- 16320
- 16319
- 16318
- - 15170
- - 15169
- - 15168
- - 15166
- 15150
- 15164
- 15165
@@ -73982,7 +74263,6 @@ entities:
- uid: 2011
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -24.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74059,7 +74339,6 @@ entities:
- uid: 2704
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 24.5,-45.5
parent: 2
- uid: 2919
@@ -74087,7 +74366,6 @@ entities:
- uid: 4519
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -22.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74100,7 +74378,6 @@ entities:
- uid: 4559
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -23.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -74113,7 +74390,6 @@ entities:
- uid: 4961
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74126,7 +74402,6 @@ entities:
- uid: 4976
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -34.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74139,7 +74414,6 @@ entities:
- uid: 5024
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -33.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74162,7 +74436,6 @@ entities:
- uid: 5390
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,11.5
parent: 2
- type: DeviceNetwork
@@ -74174,7 +74447,6 @@ entities:
- uid: 5395
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,18.5
parent: 2
- type: DeviceNetwork
@@ -74183,7 +74455,6 @@ entities:
- uid: 5417
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 2.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74194,7 +74465,6 @@ entities:
- uid: 5420
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 12.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74204,7 +74474,6 @@ entities:
- uid: 5421
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 13.5,20.5
parent: 2
- type: DeviceNetwork
@@ -74214,7 +74483,6 @@ entities:
- uid: 5467
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,10.5
parent: 2
- type: DeviceNetwork
@@ -74252,7 +74520,6 @@ entities:
- uid: 6558
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -34.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74287,7 +74554,6 @@ entities:
- uid: 8436
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -33.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74300,7 +74566,6 @@ entities:
- uid: 8446
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-66.5
parent: 2
- type: DeviceNetwork
@@ -74427,7 +74692,6 @@ entities:
- uid: 11233
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,22.5
parent: 2
- type: DeviceNetwork
@@ -74437,7 +74701,6 @@ entities:
- uid: 12056
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 13.5,19.5
parent: 2
- type: DeviceNetwork
@@ -74447,7 +74710,6 @@ entities:
- uid: 12057
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 5.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74458,7 +74720,6 @@ entities:
- uid: 12058
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -2.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74468,7 +74729,6 @@ entities:
- uid: 12062
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 4.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74478,7 +74738,6 @@ entities:
- uid: 12068
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,15.5
parent: 2
- type: DeviceNetwork
@@ -74489,7 +74748,6 @@ entities:
- uid: 12246
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,25.5
parent: 2
- type: DeviceNetwork
@@ -74499,7 +74757,6 @@ entities:
- uid: 12247
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 5.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74509,7 +74766,6 @@ entities:
- uid: 12294
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -1.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74519,25 +74775,21 @@ entities:
- uid: 12296
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,24.5
parent: 2
- uid: 12629
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-10.5
parent: 2
- uid: 13120
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -24.5,20.5
parent: 2
- uid: 13236
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 18.5,22.5
parent: 2
- type: DeviceNetwork
@@ -74548,7 +74800,6 @@ entities:
- uid: 13367
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 18.5,21.5
parent: 2
- type: DeviceNetwork
@@ -74568,7 +74819,6 @@ entities:
- uid: 14308
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,-37.5
parent: 2
- type: DeviceNetwork
@@ -74578,7 +74828,6 @@ entities:
- uid: 14329
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,-35.5
parent: 2
- type: DeviceNetwork
@@ -74588,7 +74837,6 @@ entities:
- uid: 14368
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -15.5,4.5
parent: 2
- type: DeviceNetwork
@@ -74600,7 +74848,6 @@ entities:
- uid: 14382
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -14.5,4.5
parent: 2
- type: DeviceNetwork
@@ -74612,7 +74859,6 @@ entities:
- uid: 14931
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -46.5,-31.5
parent: 2
- type: DeviceNetwork
@@ -74622,7 +74868,6 @@ entities:
- uid: 14941
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -46.5,-28.5
parent: 2
- type: DeviceNetwork
@@ -74632,7 +74877,6 @@ entities:
- uid: 14945
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,-32.5
parent: 2
- type: DeviceNetwork
@@ -74643,7 +74887,6 @@ entities:
- uid: 14946
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,-33.5
parent: 2
- type: DeviceNetwork
@@ -74654,7 +74897,6 @@ entities:
- uid: 14947
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -74665,7 +74907,6 @@ entities:
- uid: 14948
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,-26.5
parent: 2
- type: DeviceNetwork
@@ -74676,7 +74917,6 @@ entities:
- uid: 14949
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -74690,7 +74930,6 @@ entities:
- uid: 14950
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-28.5
parent: 2
- type: DeviceNetwork
@@ -74704,7 +74943,6 @@ entities:
- uid: 14951
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-31.5
parent: 2
- type: DeviceNetwork
@@ -74718,7 +74956,6 @@ entities:
- uid: 14952
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -32.5,-32.5
parent: 2
- type: DeviceNetwork
@@ -74732,13 +74969,11 @@ entities:
- uid: 15035
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,-19.5
parent: 2
- uid: 15044
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,-20.5
parent: 2
- uid: 15143
@@ -74816,50 +75051,9 @@ entities:
- 15163
- 15139
- 17576
- - uid: 15166
- components:
- - type: Transform
- pos: -6.5,-43.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15163
- - 15139
- - 14795
- - uid: 15168
- components:
- - type: Transform
- pos: -5.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15163
- - 15139
- - 14795
- - uid: 15169
- components:
- - type: Transform
- pos: -4.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15163
- - 15139
- - 14795
- - uid: 15170
- components:
- - type: Transform
- pos: -3.5,-42.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 15163
- - 15139
- - 14795
- uid: 15171
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 32.5,-54.5
parent: 2
- type: DeviceNetwork
@@ -74868,7 +75062,6 @@ entities:
- uid: 15172
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 26.5,-55.5
parent: 2
- type: DeviceNetwork
@@ -74877,7 +75070,6 @@ entities:
- uid: 15181
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 21.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -74888,7 +75080,6 @@ entities:
- uid: 15182
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 20.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -74899,7 +75090,6 @@ entities:
- uid: 15183
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 19.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -74910,7 +75100,6 @@ entities:
- uid: 15192
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 11.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74923,7 +75112,6 @@ entities:
- uid: 15193
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74936,7 +75124,6 @@ entities:
- uid: 15194
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 9.5,-46.5
parent: 2
- type: DeviceNetwork
@@ -74987,7 +75174,6 @@ entities:
- uid: 15206
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 12.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -74998,7 +75184,6 @@ entities:
- uid: 15207
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 12.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75009,7 +75194,6 @@ entities:
- uid: 15208
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75020,7 +75204,6 @@ entities:
- uid: 15209
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-23.5
parent: 2
- type: DeviceNetwork
@@ -75031,7 +75214,6 @@ entities:
- uid: 15210
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -75043,7 +75225,6 @@ entities:
- uid: 15211
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 15.5,-27.5
parent: 2
- type: DeviceNetwork
@@ -75055,7 +75236,6 @@ entities:
- uid: 15212
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-20.5
parent: 2
- type: DeviceNetwork
@@ -75066,7 +75246,6 @@ entities:
- uid: 15213
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75077,7 +75256,6 @@ entities:
- uid: 15214
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -75088,7 +75266,6 @@ entities:
- uid: 15220
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 43.5,-20.5
parent: 2
- type: DeviceNetwork
@@ -75100,7 +75277,6 @@ entities:
- uid: 15221
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 43.5,-21.5
parent: 2
- type: DeviceNetwork
@@ -75112,7 +75288,6 @@ entities:
- uid: 15222
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 43.5,-22.5
parent: 2
- type: DeviceNetwork
@@ -75124,7 +75299,6 @@ entities:
- uid: 15223
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75135,7 +75309,6 @@ entities:
- uid: 15224
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75146,7 +75319,6 @@ entities:
- uid: 15225
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 35.5,-19.5
parent: 2
- type: DeviceNetwork
@@ -75184,7 +75356,6 @@ entities:
- uid: 15273
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 16.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75196,7 +75367,6 @@ entities:
- uid: 15274
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 15.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75208,7 +75378,6 @@ entities:
- uid: 15275
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 14.5,8.5
parent: 2
- type: DeviceNetwork
@@ -75220,7 +75389,6 @@ entities:
- uid: 15301
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-14.5
parent: 2
- type: DeviceNetwork
@@ -75230,7 +75398,6 @@ entities:
- uid: 15302
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
- type: DeviceNetwork
@@ -75240,13 +75407,11 @@ entities:
- uid: 15315
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-4.5
parent: 2
- uid: 15323
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-12.5
parent: 2
- type: DeviceNetwork
@@ -75255,7 +75420,6 @@ entities:
- uid: 15324
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -14.5,-11.5
parent: 2
- type: DeviceNetwork
@@ -75264,7 +75428,6 @@ entities:
- uid: 15337
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -21.5,-37.5
parent: 2
- type: DeviceNetwork
@@ -75276,7 +75439,6 @@ entities:
- uid: 15338
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -21.5,-38.5
parent: 2
- type: DeviceNetwork
@@ -75288,19 +75450,16 @@ entities:
- uid: 15354
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -4.5,-28.5
parent: 2
- uid: 15355
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 3.5,-32.5
parent: 2
- uid: 15393
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75312,7 +75471,6 @@ entities:
- uid: 15394
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75324,7 +75482,6 @@ entities:
- uid: 15395
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75336,7 +75493,6 @@ entities:
- uid: 15396
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75348,7 +75504,6 @@ entities:
- uid: 15429
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,-39.5
parent: 2
- type: DeviceNetwork
@@ -75360,7 +75515,6 @@ entities:
- uid: 15430
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 33.5,-39.5
parent: 2
- type: DeviceNetwork
@@ -75372,7 +75526,6 @@ entities:
- uid: 15431
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 39.5,-43.5
parent: 2
- type: DeviceNetwork
@@ -75391,7 +75544,6 @@ entities:
- uid: 15625
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -20.5,-49.5
parent: 2
- type: DeviceNetwork
@@ -75403,7 +75555,6 @@ entities:
- uid: 15626
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -19.5,-49.5
parent: 2
- type: DeviceNetwork
@@ -75434,7 +75585,6 @@ entities:
- uid: 15672
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -17.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75499,7 +75649,6 @@ entities:
- uid: 16318
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-42.5
parent: 2
- type: DeviceNetwork
@@ -75511,7 +75660,6 @@ entities:
- uid: 16319
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-41.5
parent: 2
- type: DeviceNetwork
@@ -75523,7 +75671,6 @@ entities:
- uid: 16320
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-40.5
parent: 2
- type: DeviceNetwork
@@ -75591,7 +75738,6 @@ entities:
- uid: 18877
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 17.5,12.5
parent: 2
- type: DeviceNetwork
@@ -75601,7 +75747,6 @@ entities:
- uid: 18878
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 16.5,13.5
parent: 2
- type: DeviceNetwork
@@ -75611,7 +75756,6 @@ entities:
- uid: 18879
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,13.5
parent: 2
- type: DeviceNetwork
@@ -75621,7 +75765,6 @@ entities:
- uid: 19001
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -16.5,4.5
parent: 2
- type: DeviceNetwork
@@ -75633,7 +75776,6 @@ entities:
- uid: 19006
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -16.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75645,7 +75787,6 @@ entities:
- uid: 19008
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -15.5,-5.5
parent: 2
- type: DeviceNetwork
@@ -75654,14 +75795,6 @@ entities:
- 19009
- 15391
- 10102
- - uid: 20173
- components:
- - type: Transform
- pos: -6.5,-44.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 14795
- uid: 20277
components:
- type: Transform
@@ -75711,7 +75844,6 @@ entities:
- uid: 21847
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,21.5
parent: 2
- type: DeviceNetwork
@@ -77323,13 +77455,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 8729
- components:
- - type: Transform
- pos: -34.5,-24.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 8789
components:
- type: Transform
@@ -77337,14 +77462,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 9286
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 9449
components:
- type: Transform
@@ -79876,14 +79993,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2599
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-16.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 2602
components:
- type: Transform
@@ -81924,13 +82033,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 8264
- components:
- - type: Transform
- pos: 34.5,-32.5
- parent: 2
- - type: AtmosPipeColor
- color: '#FF1212FF'
- uid: 8269
components:
- type: Transform
@@ -82280,6 +82382,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 9286
+ components:
+ - type: Transform
+ pos: -34.5,-17.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 9335
components:
- type: Transform
@@ -83150,6 +83259,20 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 10900
+ components:
+ - type: Transform
+ pos: -34.5,-16.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 10901
+ components:
+ - type: Transform
+ pos: -34.5,-18.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 10943
components:
- type: Transform
@@ -87616,6 +87739,8 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,-36.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 14491
components:
- type: Transform
@@ -90332,6 +90457,11 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 17748
+ components:
+ - type: Transform
+ pos: 34.5,-32.5
+ parent: 2
- uid: 17878
components:
- type: Transform
@@ -91740,6 +91870,41 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23218
+ components:
+ - type: Transform
+ pos: -34.5,-19.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 23219
+ components:
+ - type: Transform
+ pos: -34.5,-20.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 23220
+ components:
+ - type: Transform
+ pos: -34.5,-21.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 23221
+ components:
+ - type: Transform
+ pos: -34.5,-22.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 23222
+ components:
+ - type: Transform
+ pos: -34.5,-23.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- proto: GasPipeTJunction
entities:
- uid: 129
@@ -93008,6 +93173,8 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,-38.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 13613
components:
- type: Transform
@@ -93583,6 +93750,8 @@ entities:
rot: 1.5707963267948966 rad
pos: 9.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 17362
components:
- type: Transform
@@ -93864,6 +94033,14 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-24.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- proto: GasPort
entities:
- uid: 122
@@ -94248,6 +94425,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 7178
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 666
components:
- type: Transform
@@ -96241,6 +96420,8 @@ entities:
- type: DeviceNetwork
deviceLists:
- 7178
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 9627
components:
- type: Transform
@@ -97914,13 +98095,11 @@ entities:
- uid: 264
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,27.5
parent: 2
- uid: 265
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,27.5
parent: 2
- uid: 283
@@ -97941,7 +98120,6 @@ entities:
- uid: 309
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 27.5,30.5
parent: 2
- uid: 310
@@ -98127,7 +98305,6 @@ entities:
- uid: 882
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-35.5
parent: 2
- uid: 891
@@ -98213,7 +98390,6 @@ entities:
- uid: 1164
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-48.5
parent: 2
- uid: 1169
@@ -98239,7 +98415,6 @@ entities:
- uid: 1257
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-46.5
parent: 2
- uid: 1265
@@ -98265,7 +98440,6 @@ entities:
- uid: 1318
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 37.5,26.5
parent: 2
- uid: 1322
@@ -98281,7 +98455,6 @@ entities:
- uid: 1339
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,27.5
parent: 2
- uid: 1357
@@ -98642,7 +98815,6 @@ entities:
- uid: 3146
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,29.5
parent: 2
- uid: 3187
@@ -100118,7 +100290,6 @@ entities:
- uid: 8080
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 18.5,-69.5
parent: 2
- uid: 8081
@@ -100754,7 +100925,6 @@ entities:
- uid: 10237
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-37.5
parent: 2
- uid: 10314
@@ -101100,7 +101270,6 @@ entities:
- uid: 11006
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,13.5
parent: 2
- uid: 11011
@@ -101391,13 +101560,11 @@ entities:
- uid: 12453
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -49.5,-38.5
parent: 2
- uid: 12482
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -49.5,-36.5
parent: 2
- uid: 12506
@@ -101613,7 +101780,6 @@ entities:
- uid: 13039
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,27.5
parent: 2
- uid: 13085
@@ -101709,7 +101875,6 @@ entities:
- uid: 13351
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 38.5,26.5
parent: 2
- uid: 13387
@@ -102630,7 +102795,6 @@ entities:
- uid: 16987
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-45.5
parent: 2
- uid: 17004
@@ -103661,7 +103825,6 @@ entities:
- uid: 18473
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 84.5,-10.5
parent: 2
- uid: 18485
@@ -103722,7 +103885,6 @@ entities:
- uid: 18520
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 97.5,-31.5
parent: 2
- uid: 18533
@@ -105178,7 +105340,6 @@ entities:
- uid: 21811
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,11.5
parent: 2
- uid: 21882
@@ -105254,37 +105415,31 @@ entities:
- uid: 22019
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,28.5
parent: 2
- uid: 22030
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,13.5
parent: 2
- uid: 22095
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,11.5
parent: 2
- uid: 22126
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,29.5
parent: 2
- uid: 22136
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,27.5
parent: 2
- uid: 22345
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-8.5
parent: 2
- uid: 22834
@@ -105305,19 +105460,16 @@ entities:
- uid: 22908
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 94.5,-14.5
parent: 2
- uid: 23068
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-7.5
parent: 2
- uid: 23114
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-30.5
parent: 2
- proto: GrilleBroken
@@ -106313,7 +106465,6 @@ entities:
- uid: 753
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,6.5
parent: 2
- uid: 2868
@@ -106544,7 +106695,6 @@ entities:
- uid: 17191
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -60.5,6.5
parent: 2
- uid: 17305
@@ -106819,6 +106969,36 @@ entities:
- type: Transform
pos: -21.5,2.5
parent: 2
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 293.14673
+ moles:
+ - 1.8856695
+ - 7.0937095
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - type: ContainerContainer
+ containers:
+ entity_storage: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 21962
+ - 21619
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: GunSafeLaserCarbine
entities:
- uid: 19954
@@ -107427,7 +107607,7 @@ entities:
- uid: 14409
components:
- type: Transform
- pos: -27.084833,15.678647
+ pos: -27.478722,15.819984
parent: 2
- proto: HospitalCurtainsOpen
entities:
@@ -108316,14 +108496,6 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 16020:
- - Pressed: Toggle
- 11462:
- - Pressed: Toggle
- 11461:
- - Pressed: Toggle
- 11459:
- - Pressed: Toggle
6345:
- Pressed: Toggle
2759:
@@ -108332,8 +108504,6 @@ entities:
- Pressed: Toggle
16090:
- Pressed: Toggle
- 3717:
- - Pressed: Toggle
- proto: LockableButtonCaptain
entities:
- uid: 195
@@ -108612,28 +108782,6 @@ entities:
- Pressed: Toggle
16037:
- Pressed: Toggle
-- proto: LockableButtonJanitor
- entities:
- - uid: 4890
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-57.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 18130:
- - Pressed: Toggle
- - uid: 5722
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-57.5
- parent: 2
- - type: DeviceLinkSource
- linkedPorts:
- 9113:
- - Pressed: Toggle
- proto: LockableButtonKitchen
entities:
- uid: 16023
@@ -108963,12 +109111,14 @@ entities:
- Pressed: Toggle
527:
- Pressed: Toggle
- 7944:
+ 20173:
- Pressed: Toggle
17722:
- Pressed: Toggle
1053:
- Pressed: Toggle
+ 4890:
+ - Pressed: Toggle
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 1929
@@ -109365,24 +109515,18 @@ entities:
parent: 2
- proto: LogicGateOr
entities:
- - uid: 5002
+ - uid: 13412
components:
- type: Transform
anchored: True
- rot: 3.141592653589793 rad
- pos: 17.5,28.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,27.5
parent: 2
- type: DeviceLinkSink
invokeCounter: 2
- type: DeviceLinkSource
linkedPorts:
- 1722:
- - Output: DoorBolt
- 21849:
- - Output: DoorBolt
- 1756:
- - Output: DoorBolt
- 20665:
+ 294:
- Output: DoorBolt
- type: Physics
canCollide: False
@@ -109395,7 +109539,7 @@ entities:
pos: 16.5,27.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
21849:
@@ -109404,8 +109548,6 @@ entities:
- Output: DoorBolt
5486:
- Output: DoorBolt
- 22009:
- - Output: DoorBolt
- type: Physics
canCollide: False
bodyType: Static
@@ -109417,15 +109559,13 @@ entities:
pos: 16.5,29.5
parent: 2
- type: DeviceLinkSink
- invokeCounter: 2
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
20665:
- Output: DoorBolt
1756:
- Output: DoorBolt
- 22009:
- - Output: DoorBolt
5486:
- Output: DoorBolt
- type: Physics
@@ -110088,6 +110228,11 @@ entities:
- type: Transform
pos: -41.5,-43.5
parent: 2
+ - uid: 16187
+ components:
+ - type: Transform
+ pos: -66.5,-15.5
+ parent: 2
- uid: 20662
components:
- type: Transform
@@ -110220,6 +110365,13 @@ entities:
- type: Configuration
config:
tag: Engineering
+ - uid: 11461
+ components:
+ - type: Transform
+ pos: -0.5,-45.5
+ parent: 2
+ - type: MailingUnit
+ tag: Bar
- uid: 12581
components:
- type: Transform
@@ -110612,6 +110764,28 @@ entities:
- type: Transform
pos: 39.5,21.5
parent: 2
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 1739
+ components:
+ - type: Transform
+ pos: -53.5,-23.5
+ parent: 2
+ - uid: 23057
+ components:
+ - type: Transform
+ pos: 21.5,-16.5
+ parent: 2
+ - uid: 23204
+ components:
+ - type: Transform
+ pos: 45.5,-27.5
+ parent: 2
+ - uid: 23206
+ components:
+ - type: Transform
+ pos: -52.5,-49.5
+ parent: 2
- proto: MaintenancePlantSpawner
entities:
- uid: 510
@@ -111314,11 +111488,6 @@ entities:
parent: 2
- type: TimedSpawner
intervalSeconds: 720
- - uid: 12128
- components:
- - type: Transform
- pos: 24.5,-2.5
- parent: 2
- uid: 16089
components:
- type: Transform
@@ -111355,6 +111524,11 @@ entities:
- type: TimedSpawner
intervalSeconds: 600
chance: 0.2
+ - uid: 23208
+ components:
+ - type: Transform
+ pos: 19.5,-3.5
+ parent: 2
- proto: Multitool
entities:
- uid: 3370
@@ -111857,6 +112031,7 @@ entities:
===================================================
- type: Contraband
+ allowedJobs: []
allowedDepartments:
- Security
severity: Syndicate
@@ -113428,6 +113603,12 @@ entities:
- type: Transform
pos: -22.5,17.5
parent: 2
+ - uid: 1263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-74.5
+ parent: 2
- uid: 1804
components:
- type: Transform
@@ -113649,12 +113830,6 @@ entities:
rot: 3.141592653589793 rad
pos: -21.5,2.5
parent: 2
- - uid: 7944
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-41.5
- parent: 2
- uid: 8420
components:
- type: Transform
@@ -114792,6 +114967,12 @@ entities:
- type: Transform
pos: -64.5,-19.5
parent: 2
+ - uid: 10902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -37.5,-65.5
+ parent: 2
- uid: 12821
components:
- type: Transform
@@ -114875,6 +115056,11 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,31.5
parent: 2
+ - uid: 23209
+ components:
+ - type: Transform
+ pos: -36.5,-82.5
+ parent: 2
- proto: PoweredSmallLight
entities:
- uid: 233
@@ -115751,6 +115937,12 @@ entities:
- type: Transform
pos: 7.5,2.5
parent: 2
+ - uid: 23205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,5.5
+ parent: 2
- proto: PoweredSmallLightEmpty
entities:
- uid: 9504
@@ -115832,16 +116024,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,-47.5
parent: 2
- - uid: 6121
+ - uid: 4890
components:
- type: Transform
- pos: 42.5,12.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-42.5
parent: 2
- - uid: 6943
+ - uid: 6121
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-45.5
+ pos: 42.5,12.5
parent: 2
- uid: 7335
components:
@@ -115988,17 +116180,23 @@ entities:
rot: 1.5707963267948966 rad
pos: -9.5,-25.5
parent: 2
- - uid: 17606
+ - uid: 17723
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-42.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-26.5
parent: 2
- - uid: 17723
+ - uid: 20173
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.5,-26.5
+ pos: -6.5,-44.5
+ parent: 2
+ - uid: 20268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-53.5
parent: 2
- uid: 20501
components:
@@ -116260,12 +116458,6 @@ entities:
- type: Transform
pos: -23.5,15.5
parent: 2
- - uid: 2504
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-45.5
- parent: 2
- uid: 2681
components:
- type: Transform
@@ -117119,7 +117311,7 @@ entities:
- uid: 15855
components:
- type: Transform
- pos: -0.66263175,-45.283024
+ pos: -4.4382114,-46.323513
parent: 2
- uid: 20693
components:
@@ -117960,11 +118152,6 @@ entities:
- type: Transform
pos: 27.5,-50.5
parent: 2
- - uid: 20125
- components:
- - type: Transform
- pos: -34.5,17.5
- parent: 2
- uid: 22807
components:
- type: Transform
@@ -118019,6 +118206,11 @@ entities:
- type: Transform
pos: -4.5,-42.5
parent: 2
+ - uid: 11462
+ components:
+ - type: Transform
+ pos: -6.5,-42.5
+ parent: 2
- uid: 14990
components:
- type: Transform
@@ -118560,25 +118752,21 @@ entities:
- uid: 20608
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -42.5,-4.5
parent: 2
- uid: 20609
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,0.5
parent: 2
- uid: 20610
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-6.5
parent: 2
- uid: 20611
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,5.5
parent: 2
- uid: 22651
@@ -118736,7 +118924,6 @@ entities:
- uid: 14507
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -23.5,13.5
parent: 2
- uid: 15128
@@ -118752,7 +118939,6 @@ entities:
- uid: 16119
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -13.5,-36.5
parent: 2
- uid: 16123
@@ -118803,7 +118989,6 @@ entities:
- uid: 16974
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -13.5,-4.5
parent: 2
- uid: 17024
@@ -118844,37 +119029,31 @@ entities:
- uid: 20251
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -21.5,-53.5
parent: 2
- uid: 20252
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -27.5,-51.5
parent: 2
- uid: 20557
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -27.5,18.5
parent: 2
- uid: 20586
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -22.5,18.5
parent: 2
- uid: 20607
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-1.5
parent: 2
- uid: 21260
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 15.5,-5.5
parent: 2
- uid: 22654
@@ -119010,13 +119189,11 @@ entities:
- uid: 22726
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -29.5,-2.5
parent: 2
- uid: 22727
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -23.5,6.5
parent: 2
- proto: RandomSmokables
@@ -119036,6 +119213,11 @@ entities:
- type: Transform
pos: -27.887064,-45.89555
parent: 2
+ - uid: 15170
+ components:
+ - type: Transform
+ pos: -6.4363174,-43.468136
+ parent: 2
- uid: 18968
components:
- type: Transform
@@ -119076,11 +119258,6 @@ entities:
- type: Transform
pos: -53.675484,-50.3226
parent: 2
- - uid: 22755
- components:
- - type: Transform
- pos: -3.8056746,-42.44955
- parent: 2
- uid: 22756
components:
- type: Transform
@@ -119106,7 +119283,6 @@ entities:
- uid: 12936
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-5.5
parent: 2
- proto: RandomSoap
@@ -119226,7 +119402,6 @@ entities:
- uid: 10972
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 50.5,-9.5
parent: 2
- uid: 11191
@@ -119242,7 +119417,6 @@ entities:
- uid: 15871
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -23.5,-47.5
parent: 2
- uid: 15919
@@ -119662,6 +119836,38 @@ entities:
- type: Transform
pos: 18.5,-20.5
parent: 2
+- proto: RandomVendingClothing
+ entities:
+ - uid: 12612
+ components:
+ - type: Transform
+ pos: -35.5,-62.5
+ parent: 2
+ - uid: 16189
+ components:
+ - type: Transform
+ pos: -20.5,-25.5
+ parent: 2
+ - uid: 16581
+ components:
+ - type: Transform
+ pos: 13.5,-24.5
+ parent: 2
+ - uid: 16672
+ components:
+ - type: Transform
+ pos: 13.5,-26.5
+ parent: 2
+ - uid: 20125
+ components:
+ - type: Transform
+ pos: 13.5,-25.5
+ parent: 2
+ - uid: 20267
+ components:
+ - type: Transform
+ pos: 48.5,-15.5
+ parent: 2
- proto: RandomVendingDrinks
entities:
- uid: 6102
@@ -119676,11 +119882,6 @@ entities:
parent: 2
- proto: RandomVendingSnacks
entities:
- - uid: 1739
- components:
- - type: Transform
- pos: -35.5,-62.5
- parent: 2
- uid: 2604
components:
- type: Transform
@@ -120094,7 +120295,6 @@ entities:
- uid: 196
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 38.5,26.5
parent: 2
- uid: 211
@@ -120500,7 +120700,6 @@ entities:
- uid: 1712
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,28.5
parent: 2
- uid: 1747
@@ -120511,7 +120710,6 @@ entities:
- uid: 1800
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,27.5
parent: 2
- uid: 1832
@@ -120527,7 +120725,6 @@ entities:
- uid: 1891
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,13.5
parent: 2
- uid: 1900
@@ -120543,7 +120740,6 @@ entities:
- uid: 1916
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,27.5
parent: 2
- uid: 1958
@@ -120569,7 +120765,6 @@ entities:
- uid: 2329
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,27.5
parent: 2
- uid: 2352
@@ -120865,7 +121060,6 @@ entities:
- uid: 4494
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,11.5
parent: 2
- uid: 4577
@@ -120916,7 +121110,6 @@ entities:
- uid: 4745
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 51.5,20.5
parent: 2
- uid: 4754
@@ -121112,13 +121305,11 @@ entities:
- uid: 5490
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 46.5,24.5
parent: 2
- uid: 5508
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 46.5,23.5
parent: 2
- uid: 5527
@@ -121224,13 +121415,11 @@ entities:
- uid: 5867
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 50.5,20.5
parent: 2
- uid: 5871
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 49.5,20.5
parent: 2
- uid: 5889
@@ -121726,7 +121915,6 @@ entities:
- uid: 8571
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 46.5,25.5
parent: 2
- uid: 8583
@@ -122562,7 +122750,6 @@ entities:
- uid: 13341
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 37.5,26.5
parent: 2
- uid: 13369
@@ -123038,7 +123225,6 @@ entities:
- uid: 21838
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,11.5
parent: 2
- uid: 21867
@@ -123089,13 +123275,11 @@ entities:
- uid: 21930
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -37.5,13.5
parent: 2
- uid: 21931
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 27.5,30.5
parent: 2
- uid: 21942
@@ -123111,19 +123295,16 @@ entities:
- uid: 22011
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,27.5
parent: 2
- uid: 22012
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 26.5,29.5
parent: 2
- uid: 22050
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,27.5
parent: 2
- uid: 22052
@@ -123134,19 +123315,16 @@ entities:
- uid: 22080
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 28.5,29.5
parent: 2
- uid: 22595
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-8.5
parent: 2
- uid: 22596
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-7.5
parent: 2
- proto: RemoteSignaller
@@ -123238,7 +123416,7 @@ entities:
- uid: 8291
components:
- type: Transform
- pos: -21.461847,6.590386
+ pos: -21.73,6.5
parent: 2
- type: Blocking
blockingToggleActionEntity: 5100
@@ -123253,15 +123431,23 @@ entities:
- uid: 632
components:
- type: Transform
- pos: -21.709589,6.6321044
+ pos: -21.73,6.63
parent: 2
- proto: RiotShield
entities:
- uid: 3686
components:
- type: Transform
- pos: -21.211723,6.5486903
+ pos: -21.71,6.432082
parent: 2
+ - type: Blocking
+ blockingToggleActionEntity: 22750
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 22750
- proto: RobocopCircuitBoard
entities:
- uid: 16469
@@ -123754,10 +123940,10 @@ entities:
- type: Transform
pos: -37.7531,-24.421627
parent: 2
- - uid: 21619
+ - uid: 17606
components:
- type: Transform
- pos: -57.542072,-58.42012
+ pos: -57.49946,-58.450542
parent: 2
- proto: SheetGlass1
entities:
@@ -123950,6 +124136,13 @@ entities:
- type: Transform
pos: 44.497368,9.486668
parent: 2
+- proto: SheetUGlass
+ entities:
+ - uid: 22984
+ components:
+ - type: Transform
+ pos: 26.5036,-16.527693
+ parent: 2
- proto: SheetUranium
entities:
- uid: 13030
@@ -124048,12 +124241,6 @@ entities:
- type: Transform
pos: -3.5,-46.5
parent: 2
- - uid: 3717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-44.5
- parent: 2
- uid: 4048
components:
- type: Transform
@@ -124153,24 +124340,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-18.5
parent: 2
- - uid: 11459
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-43.5
- parent: 2
- - uid: 11461
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-42.5
- parent: 2
- - uid: 11462
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,-42.5
- parent: 2
- uid: 11943
components:
- type: Transform
@@ -124246,12 +124415,6 @@ entities:
rot: 3.141592653589793 rad
pos: -15.5,-45.5
parent: 2
- - uid: 16020
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-42.5
- parent: 2
- uid: 16025
components:
- type: Transform
@@ -125025,6 +125188,26 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,9.3
parent: 2
+- proto: SignDirectionalEscapePod
+ entities:
+ - uid: 12897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,2.5
+ parent: 2
+ - uid: 13742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,21.5
+ parent: 2
+ - uid: 13763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-55.5
+ parent: 2
- proto: SignDirectionalEvac
entities:
- uid: 31
@@ -127280,19 +127463,16 @@ entities:
- uid: 17321
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,15.5
parent: 2
- uid: 17322
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -16.5,15.5
parent: 2
- uid: 17325
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,13.5
parent: 2
- proto: SpawnMobButterfly
@@ -127300,13 +127480,11 @@ entities:
- uid: 788
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -20.5,30.5
parent: 2
- uid: 3007
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -18.5,30.5
parent: 2
- uid: 3376
@@ -127317,13 +127495,11 @@ entities:
- uid: 17326
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -16.5,17.5
parent: 2
- uid: 17327
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,17.5
parent: 2
- proto: SpawnMobCatException
@@ -127432,7 +127608,6 @@ entities:
- uid: 61
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,-53.5
parent: 2
- proto: SpawnMobReindeerDoe
@@ -127440,7 +127615,6 @@ entities:
- uid: 10952
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-53.5
parent: 2
- proto: SpawnMobShiva
@@ -127881,21 +128055,11 @@ entities:
- type: Transform
pos: 50.5,-22.5
parent: 2
- - uid: 16187
- components:
- - type: Transform
- pos: 17.5,-48.5
- parent: 2
- uid: 16188
components:
- type: Transform
pos: 17.5,-49.5
parent: 2
- - uid: 16189
- components:
- - type: Transform
- pos: 19.5,-50.5
- parent: 2
- uid: 16190
components:
- type: Transform
@@ -128094,6 +128258,11 @@ entities:
- type: Transform
pos: -25.5,16.5
parent: 2
+ - uid: 15168
+ components:
+ - type: Transform
+ pos: -22.5,16.5
+ parent: 2
- proto: SpawnPointServiceWorker
entities:
- uid: 22779
@@ -128425,6 +128594,11 @@ entities:
- type: Transform
pos: -25.5,-39.5
parent: 2
+ - uid: 14729
+ components:
+ - type: Transform
+ pos: 13.5,9.5
+ parent: 2
- uid: 16663
components:
- type: Transform
@@ -128440,11 +128614,6 @@ entities:
- type: Transform
pos: -13.5,1.5
parent: 2
- - uid: 16672
- components:
- - type: Transform
- pos: 13.5,9.5
- parent: 2
- uid: 16674
components:
- type: Transform
@@ -128612,11 +128781,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,-43.5
parent: 2
- - uid: 3473
- components:
- - type: Transform
- pos: -4.5,-41.5
- parent: 2
- uid: 3609
components:
- type: Transform
@@ -128628,6 +128792,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 28.5,-28.5
parent: 2
+ - uid: 5722
+ components:
+ - type: Transform
+ pos: -4.5,-41.5
+ parent: 2
- uid: 6696
components:
- type: Transform
@@ -128669,6 +128838,11 @@ entities:
- type: Transform
pos: -0.5,24.5
parent: 2
+ - uid: 11459
+ components:
+ - type: Transform
+ pos: -6.5,-41.5
+ parent: 2
- uid: 11867
components:
- type: Transform
@@ -128715,6 +128889,12 @@ entities:
- type: Transform
pos: 73.5,-61.5
parent: 2
+ - uid: 16020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -7.5,-42.5
+ parent: 2
- uid: 16213
components:
- type: Transform
@@ -130054,7 +130234,6 @@ entities:
- uid: 71
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 13.5,-59.5
parent: 2
- uid: 270
@@ -130070,13 +130249,11 @@ entities:
- uid: 380
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -30.5,3.5
parent: 2
- uid: 388
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -38.5,2.5
parent: 2
- uid: 389
@@ -130122,19 +130299,16 @@ entities:
- uid: 732
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -33.5,-37.5
parent: 2
- uid: 1091
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -23.5,22.5
parent: 2
- uid: 1134
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-54.5
parent: 2
- uid: 1503
@@ -130145,7 +130319,6 @@ entities:
- uid: 1670
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 19.5,15.5
parent: 2
- uid: 1674
@@ -130161,19 +130334,16 @@ entities:
- uid: 1761
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -42.5,-27.5
parent: 2
- uid: 1829
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-16.5
parent: 2
- uid: 1834
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 25.5,-17.5
parent: 2
- uid: 1956
@@ -130194,19 +130364,16 @@ entities:
- uid: 2358
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 18.5,15.5
parent: 2
- uid: 2581
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -23.5,0.5
parent: 2
- uid: 2924
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 36.5,-24.5
parent: 2
- uid: 3037
@@ -130217,7 +130384,6 @@ entities:
- uid: 3111
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -5.5,-23.5
parent: 2
- uid: 3191
@@ -130238,7 +130404,6 @@ entities:
- uid: 3263
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 1.5,-33.5
parent: 2
- uid: 3275
@@ -130264,13 +130429,11 @@ entities:
- uid: 3358
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -14.5,-24.5
parent: 2
- uid: 3366
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -13.5,-24.5
parent: 2
- uid: 3424
@@ -130326,7 +130489,6 @@ entities:
- uid: 4209
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,-38.5
parent: 2
- uid: 4241
@@ -130342,13 +130504,11 @@ entities:
- uid: 4252
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,-37.5
parent: 2
- uid: 4274
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 18.5,-26.5
parent: 2
- uid: 4291
@@ -130359,7 +130519,6 @@ entities:
- uid: 4317
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,-27.5
parent: 2
- uid: 4326
@@ -130370,13 +130529,11 @@ entities:
- uid: 4349
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 38.5,-27.5
parent: 2
- uid: 4367
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,-29.5
parent: 2
- uid: 4460
@@ -130392,13 +130549,11 @@ entities:
- uid: 4500
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,-41.5
parent: 2
- uid: 4562
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 27.5,-28.5
parent: 2
- uid: 4588
@@ -130409,7 +130564,6 @@ entities:
- uid: 4762
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 7.5,-19.5
parent: 2
- uid: 4807
@@ -130420,13 +130574,11 @@ entities:
- uid: 5196
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 27.5,-29.5
parent: 2
- uid: 5207
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -18.5,-22.5
parent: 2
- uid: 5446
@@ -130442,7 +130594,6 @@ entities:
- uid: 5610
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -23.5,21.5
parent: 2
- uid: 5943
@@ -130453,7 +130604,6 @@ entities:
- uid: 6653
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,-15.5
parent: 2
- uid: 6677
@@ -130464,13 +130614,11 @@ entities:
- uid: 6722
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 37.5,-38.5
parent: 2
- uid: 6762
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-30.5
parent: 2
- uid: 6818
@@ -130486,73 +130634,61 @@ entities:
- uid: 7002
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -45.5,-29.5
parent: 2
- uid: 7097
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 14.5,0.5
parent: 2
- uid: 7176
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,-19.5
parent: 2
- uid: 7617
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-6.5
parent: 2
- uid: 7626
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 21.5,-6.5
parent: 2
- uid: 7629
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -15.5,-25.5
parent: 2
- uid: 8538
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -3.5,-14.5
parent: 2
- uid: 8599
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 44.5,-2.5
parent: 2
- uid: 8852
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -25.5,22.5
parent: 2
- uid: 8881
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 6.5,-19.5
parent: 2
- uid: 9130
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -25.5,23.5
parent: 2
- uid: 9275
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 7.5,-16.5
parent: 2
- uid: 9288
@@ -130573,7 +130709,6 @@ entities:
- uid: 9380
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 28.5,-16.5
parent: 2
- uid: 9515
@@ -130584,13 +130719,11 @@ entities:
- uid: 9963
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -36.5,-2.5
parent: 2
- uid: 10191
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 11.5,-16.5
parent: 2
- uid: 10236
@@ -130601,7 +130734,6 @@ entities:
- uid: 10439
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -26.5,15.5
parent: 2
- uid: 10489
@@ -130612,19 +130744,16 @@ entities:
- uid: 10492
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -52.5,-51.5
parent: 2
- uid: 10533
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -44.5,-27.5
parent: 2
- uid: 10551
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-36.5
parent: 2
- uid: 10915
@@ -130635,25 +130764,21 @@ entities:
- uid: 11244
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -27.5,15.5
parent: 2
- uid: 11338
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-36.5
parent: 2
- uid: 11416
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 27.5,-27.5
parent: 2
- uid: 11437
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -53.5,-51.5
parent: 2
- uid: 11843
@@ -130664,19 +130789,16 @@ entities:
- uid: 11976
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -28.5,-7.5
parent: 2
- uid: 12036
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-37.5
parent: 2
- uid: 12152
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -38.5,3.5
parent: 2
- uid: 12338
@@ -130687,7 +130809,6 @@ entities:
- uid: 12384
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -44.5,-29.5
parent: 2
- uid: 12429
@@ -130698,7 +130819,6 @@ entities:
- uid: 12538
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 24.5,8.5
parent: 2
- uid: 12647
@@ -130709,7 +130829,6 @@ entities:
- uid: 12668
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 27.5,-12.5
parent: 2
- uid: 12748
@@ -130720,37 +130839,31 @@ entities:
- uid: 12855
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -21.5,-46.5
parent: 2
- uid: 12918
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-30.5
parent: 2
- uid: 12933
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-29.5
parent: 2
- uid: 12934
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-28.5
parent: 2
- uid: 12938
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-27.5
parent: 2
- uid: 12939
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-28.5
parent: 2
- uid: 12983
@@ -130761,7 +130874,6 @@ entities:
- uid: 13061
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 10.5,-18.5
parent: 2
- uid: 13194
@@ -130777,13 +130889,11 @@ entities:
- uid: 13551
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 48.5,-24.5
parent: 2
- uid: 13749
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-24.5
parent: 2
- uid: 13894
@@ -130849,13 +130959,11 @@ entities:
- uid: 15376
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -4.5,-23.5
parent: 2
- uid: 15405
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-23.5
parent: 2
- uid: 15610
@@ -130871,25 +130979,21 @@ entities:
- uid: 16409
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -63.5,-15.5
parent: 2
- uid: 16416
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -63.5,-16.5
parent: 2
- uid: 16459
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -60.5,-16.5
parent: 2
- uid: 16460
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -61.5,-16.5
parent: 2
- uid: 16587
@@ -130905,13 +131009,11 @@ entities:
- uid: 16879
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-2.5
parent: 2
- uid: 17003
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 31.5,-75.5
parent: 2
- uid: 17258
@@ -131012,7 +131114,6 @@ entities:
- uid: 20661
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -7.5,-6.5
parent: 2
- uid: 20681
@@ -131028,13 +131129,11 @@ entities:
- uid: 21398
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 18.5,-15.5
parent: 2
- uid: 21420
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -20.5,-15.5
parent: 2
- uid: 21445
@@ -131050,7 +131149,6 @@ entities:
- uid: 21757
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 21.5,4.5
parent: 2
- uid: 22111
@@ -131118,7 +131216,6 @@ entities:
- uid: 749
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-26.5
parent: 2
- uid: 773
@@ -131129,13 +131226,11 @@ entities:
- uid: 2169
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -14.5,-14.5
parent: 2
- uid: 2262
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -14.5,-15.5
parent: 2
- uid: 3272
@@ -131166,7 +131261,6 @@ entities:
- uid: 4193
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-23.5
parent: 2
- uid: 4227
@@ -131182,7 +131276,6 @@ entities:
- uid: 4596
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -27.5,-33.5
parent: 2
- uid: 6371
@@ -131203,7 +131296,6 @@ entities:
- uid: 11265
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-33.5
parent: 2
- uid: 11322
@@ -131214,7 +131306,6 @@ entities:
- uid: 11331
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -28.5,-33.5
parent: 2
- uid: 11453
@@ -131225,7 +131316,6 @@ entities:
- uid: 12009
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-26.5
parent: 2
- uid: 12596
@@ -131248,25 +131338,21 @@ entities:
- uid: 3545
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-42.5
parent: 2
- uid: 3546
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -5.5,-42.5
parent: 2
- uid: 3547
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -4.5,-42.5
parent: 2
- uid: 6062
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -36.5,-53.5
parent: 2
- uid: 6147
@@ -131304,10 +131390,14 @@ entities:
- type: Transform
pos: 46.5,11.5
parent: 2
+ - uid: 7944
+ components:
+ - type: Transform
+ pos: -6.5,-42.5
+ parent: 2
- uid: 9397
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -2.5,-46.5
parent: 2
- uid: 11865
@@ -131323,7 +131413,6 @@ entities:
- uid: 14611
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -4.5,-46.5
parent: 2
- uid: 14721
@@ -131359,13 +131448,11 @@ entities:
- uid: 17970
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,-46.5
parent: 2
- uid: 20188
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -3.5,-46.5
parent: 2
- proto: TableFancyBlack
@@ -131629,7 +131716,6 @@ entities:
- uid: 6734
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 27.5,-33.5
parent: 2
- proto: TableReinforced
@@ -131637,7 +131723,6 @@ entities:
- uid: 164
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-15.5
parent: 2
- uid: 443
@@ -131663,7 +131748,6 @@ entities:
- uid: 851
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,22.5
parent: 2
- uid: 853
@@ -131679,13 +131763,11 @@ entities:
- uid: 1362
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 0.5,16.5
parent: 2
- uid: 1363
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,16.5
parent: 2
- uid: 1906
@@ -131726,13 +131808,11 @@ entities:
- uid: 3843
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -0.5,20.5
parent: 2
- uid: 4874
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-16.5
parent: 2
- uid: 4926
@@ -131753,7 +131833,6 @@ entities:
- uid: 5363
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 9.5,18.5
parent: 2
- uid: 7540
@@ -131784,19 +131863,16 @@ entities:
- uid: 14294
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 9.5,22.5
parent: 2
- uid: 18466
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 88.5,-28.5
parent: 2
- uid: 18467
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 87.5,-28.5
parent: 2
- uid: 20675
@@ -131807,13 +131883,11 @@ entities:
- uid: 21969
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 19.5,-0.5
parent: 2
- uid: 22644
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 42.5,15.5
parent: 2
- proto: TableReinforcedGlass
@@ -131821,31 +131895,26 @@ entities:
- uid: 2080
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-86.5
parent: 2
- uid: 10045
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 74.5,-40.5
parent: 2
- uid: 10197
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 73.5,-40.5
parent: 2
- uid: 10726
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 74.5,-41.5
parent: 2
- uid: 12824
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-87.5
parent: 2
- proto: TableWood
@@ -132432,6 +132501,23 @@ entities:
- type: Transform
pos: 19.270489,-6.2979584
parent: 2
+- proto: TearGasGrenade
+ entities:
+ - uid: 23210
+ components:
+ - type: Transform
+ pos: -24.68567,13.724779
+ parent: 2
+ - uid: 23211
+ components:
+ - type: Transform
+ pos: -24.331327,13.724779
+ parent: 2
+ - uid: 23212
+ components:
+ - type: Transform
+ pos: -24.508497,13.651812
+ parent: 2
- proto: TegCenter
entities:
- uid: 2237
@@ -132479,11 +132565,6 @@ entities:
- type: Transform
pos: -11.5,-53.5
parent: 2
- - uid: 16581
- components:
- - type: Transform
- pos: -66.5,-15.5
- parent: 2
- proto: TelecomServerFilledCommon
entities:
- uid: 13181
@@ -132629,19 +132710,16 @@ entities:
- uid: 7780
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-35.5
parent: 2
- uid: 7781
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 20.5,-37.5
parent: 2
- uid: 9883
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-45.5
parent: 2
- uid: 11969
@@ -132662,13 +132740,11 @@ entities:
- uid: 12023
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -49.5,-38.5
parent: 2
- uid: 12043
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -49.5,-36.5
parent: 2
- uid: 12073
@@ -132699,13 +132775,11 @@ entities:
- uid: 21437
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 15.5,-41.5
parent: 2
- uid: 22593
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-30.5
parent: 2
- proto: ToiletDirtyWater
@@ -133238,6 +133312,19 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
+ - uid: 6943
+ components:
+ - type: Transform
+ pos: 31.5,-57.5
+ parent: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2504:
+ - Right: Open
+ - Middle: Close
+ 18130:
+ - Left: Open
+ - Middle: Close
- uid: 11941
components:
- type: Transform
@@ -133519,11 +133606,6 @@ entities:
- type: Transform
pos: 8.5,-62.5
parent: 2
- - uid: 14729
- components:
- - type: Transform
- pos: -20.5,-25.5
- parent: 2
- uid: 22762
components:
- type: Transform
@@ -133531,11 +133613,6 @@ entities:
parent: 2
- proto: VendingMachineClothing
entities:
- - uid: 10901
- components:
- - type: Transform
- pos: 13.5,-25.5
- parent: 2
- uid: 11490
components:
- type: Transform
@@ -133782,13 +133859,6 @@ entities:
- type: Transform
pos: 15.5,25.5
parent: 2
-- proto: VendingMachineTheater
- entities:
- - uid: 10900
- components:
- - type: Transform
- pos: 13.5,-24.5
- parent: 2
- proto: VendingMachineVendomat
entities:
- uid: 2412
@@ -133808,18 +133878,6 @@ entities:
- type: Transform
pos: -53.5,-31.5
parent: 2
-- proto: VendingMachineWinter
- entities:
- - uid: 10902
- components:
- - type: Transform
- pos: 13.5,-26.5
- parent: 2
- - uid: 12612
- components:
- - type: Transform
- pos: 48.5,-15.5
- parent: 2
- proto: VendingMachineYouTool
entities:
- uid: 3385
@@ -133991,7 +134049,6 @@ entities:
- uid: 217
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -35.5,10.5
parent: 2
- uid: 222
@@ -134542,7 +134599,6 @@ entities:
- uid: 1037
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 24.5,19.5
parent: 2
- uid: 1042
@@ -134563,7 +134619,6 @@ entities:
- uid: 1070
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 24.5,18.5
parent: 2
- uid: 1084
@@ -134599,13 +134654,11 @@ entities:
- uid: 1110
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 27.5,18.5
parent: 2
- uid: 1112
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 27.5,17.5
parent: 2
- uid: 1114
@@ -134666,13 +134719,11 @@ entities:
- uid: 1151
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-51.5
parent: 2
- uid: 1153
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-54.5
parent: 2
- uid: 1162
@@ -135198,7 +135249,6 @@ entities:
- uid: 2351
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 33.5,27.5
parent: 2
- uid: 2353
@@ -135214,7 +135264,6 @@ entities:
- uid: 2389
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 36.5,27.5
parent: 2
- uid: 2413
@@ -135740,7 +135789,6 @@ entities:
- uid: 3825
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 25.5,17.5
parent: 2
- uid: 3826
@@ -136248,6 +136296,11 @@ entities:
- type: Transform
pos: -48.5,-59.5
parent: 2
+ - uid: 5002
+ components:
+ - type: Transform
+ pos: 18.5,29.5
+ parent: 2
- uid: 5009
components:
- type: Transform
@@ -136346,7 +136399,6 @@ entities:
- uid: 5176
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 18.5,27.5
parent: 2
- uid: 5185
@@ -136782,7 +136834,6 @@ entities:
- uid: 5886
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 48.5,25.5
parent: 2
- uid: 5900
@@ -137293,7 +137344,6 @@ entities:
- uid: 6948
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 41.5,15.5
parent: 2
- uid: 6949
@@ -137789,7 +137839,6 @@ entities:
- uid: 8507
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 46.5,18.5
parent: 2
- uid: 8541
@@ -137945,7 +137994,6 @@ entities:
- uid: 8853
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 48.5,24.5
parent: 2
- uid: 8861
@@ -138106,7 +138154,6 @@ entities:
- uid: 9602
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 24.5,17.5
parent: 2
- uid: 9609
@@ -138332,7 +138379,6 @@ entities:
- uid: 10423
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-55.5
parent: 2
- uid: 10428
@@ -138533,7 +138579,6 @@ entities:
- uid: 11216
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,30.5
parent: 2
- uid: 11239
@@ -138679,7 +138724,6 @@ entities:
- uid: 11892
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-33.5
parent: 2
- uid: 11894
@@ -138705,7 +138749,6 @@ entities:
- uid: 12022
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 45.5,14.5
parent: 2
- uid: 12026
@@ -139031,7 +139074,6 @@ entities:
- uid: 12784
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-54.5
parent: 2
- uid: 12787
@@ -139077,7 +139119,6 @@ entities:
- uid: 12852
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-54.5
parent: 2
- uid: 12873
@@ -139843,13 +139884,11 @@ entities:
- uid: 16055
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,-54.5
parent: 2
- uid: 16072
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 47.5,18.5
parent: 2
- uid: 16080
@@ -140100,7 +140139,6 @@ entities:
- uid: 17459
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 50.5,13.5
parent: 2
- uid: 17461
@@ -140141,7 +140179,6 @@ entities:
- uid: 17817
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-51.5
parent: 2
- uid: 17849
@@ -140232,7 +140269,6 @@ entities:
- uid: 18409
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 44.5,23.5
parent: 2
- uid: 18523
@@ -140268,7 +140304,6 @@ entities:
- uid: 19229
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-55.5
parent: 2
- uid: 19240
@@ -140299,7 +140334,6 @@ entities:
- uid: 19264
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-57.5
parent: 2
- uid: 19398
@@ -140385,7 +140419,6 @@ entities:
- uid: 20663
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,26.5
parent: 2
- uid: 20670
@@ -140406,7 +140439,6 @@ entities:
- uid: 21785
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: 44.5,25.5
parent: 2
- uid: 21807
@@ -140437,7 +140469,6 @@ entities:
- uid: 21886
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 51.5,12.5
parent: 2
- uid: 21891
@@ -140463,7 +140494,6 @@ entities:
- uid: 22013
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -36.5,10.5
parent: 2
- uid: 22015
@@ -140474,13 +140504,11 @@ entities:
- uid: 22025
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-50.5
parent: 2
- uid: 22038
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 18.5,30.5
parent: 2
- uid: 22081
@@ -140496,7 +140524,6 @@ entities:
- uid: 22086
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -34.5,10.5
parent: 2
- uid: 22089
@@ -140532,13 +140559,11 @@ entities:
- uid: 22184
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,7.5
parent: 2
- uid: 22639
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 45.5,15.5
parent: 2
- proto: WallReinforcedRust
@@ -140616,7 +140641,6 @@ entities:
- uid: 1118
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -59.5,-54.5
parent: 2
- uid: 1158
@@ -140647,7 +140671,6 @@ entities:
- uid: 2805
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-87.5
parent: 2
- uid: 3008
@@ -140693,37 +140716,31 @@ entities:
- uid: 3261
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-85.5
parent: 2
- uid: 3300
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-87.5
parent: 2
- uid: 3306
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -29.5,-68.5
parent: 2
- uid: 3309
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -31.5,-66.5
parent: 2
- uid: 3318
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-59.5
parent: 2
- uid: 3323
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -23.5,-68.5
parent: 2
- uid: 3339
@@ -140744,31 +140761,26 @@ entities:
- uid: 3415
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -30.5,-65.5
parent: 2
- uid: 3423
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -17.5,-68.5
parent: 2
- uid: 3429
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -4.5,-86.5
parent: 2
- uid: 3447
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-86.5
parent: 2
- uid: 3573
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-72.5
parent: 2
- uid: 3719
@@ -140784,13 +140796,11 @@ entities:
- uid: 3812
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -9.5,-71.5
parent: 2
- uid: 3828
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 9.5,-79.5
parent: 2
- uid: 3845
@@ -140801,13 +140811,11 @@ entities:
- uid: 3862
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-59.5
parent: 2
- uid: 4164
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-58.5
parent: 2
- uid: 4352
@@ -140833,31 +140841,26 @@ entities:
- uid: 4852
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -10.5,-88.5
parent: 2
- uid: 4885
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 12.5,-86.5
parent: 2
- uid: 4908
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 16.5,-75.5
parent: 2
- uid: 4918
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 16.5,-81.5
parent: 2
- uid: 4925
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -13.5,-73.5
parent: 2
- uid: 4974
@@ -140868,13 +140871,11 @@ entities:
- uid: 5101
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -13.5,-79.5
parent: 2
- uid: 5114
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-60.5
parent: 2
- uid: 5146
@@ -140985,7 +140986,6 @@ entities:
- uid: 5774
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-85.5
parent: 2
- uid: 5775
@@ -141036,7 +141036,6 @@ entities:
- uid: 5866
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 13.5,-86.5
parent: 2
- uid: 5881
@@ -141047,13 +141046,11 @@ entities:
- uid: 5888
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 12.5,-76.5
parent: 2
- uid: 5892
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 13.5,-88.5
parent: 2
- uid: 5898
@@ -141069,7 +141066,6 @@ entities:
- uid: 6085
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-65.5
parent: 2
- uid: 6099
@@ -141085,7 +141081,6 @@ entities:
- uid: 6161
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -12.5,-91.5
parent: 2
- uid: 6179
@@ -141096,7 +141091,6 @@ entities:
- uid: 6186
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-73.5
parent: 2
- uid: 6223
@@ -141147,31 +141141,26 @@ entities:
- uid: 6321
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-73.5
parent: 2
- uid: 6324
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-75.5
parent: 2
- uid: 6325
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 15.5,-90.5
parent: 2
- uid: 6352
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-76.5
parent: 2
- uid: 6353
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,-76.5
parent: 2
- uid: 6369
@@ -141187,19 +141176,16 @@ entities:
- uid: 6397
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -1.5,-58.5
parent: 2
- uid: 6407
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 11.5,-80.5
parent: 2
- uid: 6428
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-79.5
parent: 2
- uid: 6476
@@ -141210,7 +141196,6 @@ entities:
- uid: 6510
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 11.5,-76.5
parent: 2
- uid: 6604
@@ -141291,7 +141276,6 @@ entities:
- uid: 7087
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -8.5,-76.5
parent: 2
- uid: 7107
@@ -141317,7 +141301,6 @@ entities:
- uid: 7175
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-66.5
parent: 2
- uid: 7210
@@ -141343,7 +141326,6 @@ entities:
- uid: 7286
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -4.5,-61.5
parent: 2
- uid: 7298
@@ -141354,7 +141336,6 @@ entities:
- uid: 7315
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-72.5
parent: 2
- uid: 7318
@@ -141365,7 +141346,6 @@ entities:
- uid: 7320
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 11.5,-79.5
parent: 2
- uid: 7326
@@ -141401,13 +141381,11 @@ entities:
- uid: 7505
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 7.5,-69.5
parent: 2
- uid: 7507
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-66.5
parent: 2
- uid: 7572
@@ -141423,7 +141401,6 @@ entities:
- uid: 7612
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -3.5,-68.5
parent: 2
- uid: 7633
@@ -141554,7 +141531,6 @@ entities:
- uid: 8041
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-96.5
parent: 2
- uid: 8042
@@ -141570,7 +141546,6 @@ entities:
- uid: 8051
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 14.5,-89.5
parent: 2
- uid: 8089
@@ -141686,7 +141661,6 @@ entities:
- uid: 8725
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -58.5,-49.5
parent: 2
- uid: 8737
@@ -141877,7 +141851,6 @@ entities:
- uid: 10925
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-64.5
parent: 2
- uid: 10978
@@ -141948,13 +141921,11 @@ entities:
- uid: 11082
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,-21.5
parent: 2
- uid: 11109
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -27.5,-59.5
parent: 2
- uid: 11165
@@ -141965,43 +141936,36 @@ entities:
- uid: 11266
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -58.5,-39.5
parent: 2
- uid: 11291
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-43.5
parent: 2
- uid: 11292
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -39.5,-16.5
parent: 2
- uid: 11297
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,-45.5
parent: 2
- uid: 11332
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -10.5,-47.5
parent: 2
- uid: 11455
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -19.5,-45.5
parent: 2
- uid: 11498
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-70.5
parent: 2
- uid: 11554
@@ -142012,31 +141976,26 @@ entities:
- uid: 11572
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-70.5
parent: 2
- uid: 11620
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-66.5
parent: 2
- uid: 11622
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-24.5
parent: 2
- uid: 11629
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -25.5,-17.5
parent: 2
- uid: 11825
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-81.5
parent: 2
- uid: 11875
@@ -142087,7 +142046,6 @@ entities:
- uid: 11903
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -30.5,-39.5
parent: 2
- uid: 11927
@@ -142103,13 +142061,11 @@ entities:
- uid: 11965
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -29.5,-57.5
parent: 2
- uid: 12004
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -28.5,-56.5
parent: 2
- uid: 12118
@@ -142125,7 +142081,6 @@ entities:
- uid: 12207
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-65.5
parent: 2
- uid: 12224
@@ -142136,37 +142091,31 @@ entities:
- uid: 12227
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -28.5,-65.5
parent: 2
- uid: 12240
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-13.5
parent: 2
- uid: 12315
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-12.5
parent: 2
- uid: 12316
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -37.5,-16.5
parent: 2
- uid: 12317
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-81.5
parent: 2
- uid: 12318
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-81.5
parent: 2
- uid: 12321
@@ -142177,7 +142126,6 @@ entities:
- uid: 12342
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-82.5
parent: 2
- uid: 12353
@@ -142188,7 +142136,6 @@ entities:
- uid: 12362
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-59.5
parent: 2
- uid: 12365
@@ -142199,7 +142146,6 @@ entities:
- uid: 12390
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -25.5,-20.5
parent: 2
- uid: 12441
@@ -142210,13 +142156,11 @@ entities:
- uid: 12478
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -59.5,-35.5
parent: 2
- uid: 12480
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -61.5,-35.5
parent: 2
- uid: 12486
@@ -142237,13 +142181,11 @@ entities:
- uid: 12565
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -28.5,-50.5
parent: 2
- uid: 12570
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-20.5
parent: 2
- uid: 12601
@@ -142254,7 +142196,6 @@ entities:
- uid: 12616
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-60.5
parent: 2
- uid: 12622
@@ -142265,7 +142206,6 @@ entities:
- uid: 12625
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -47.5,-58.5
parent: 2
- uid: 12648
@@ -142301,25 +142241,21 @@ entities:
- uid: 12691
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-13.5
parent: 2
- uid: 12717
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-12.5
parent: 2
- uid: 12724
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-39.5
parent: 2
- uid: 12780
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -55.5,-61.5
parent: 2
- uid: 12799
@@ -142340,7 +142276,6 @@ entities:
- uid: 12811
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-54.5
parent: 2
- uid: 12812
@@ -142356,7 +142291,6 @@ entities:
- uid: 12859
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -49.5,-60.5
parent: 2
- uid: 12902
@@ -142382,7 +142316,6 @@ entities:
- uid: 13211
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -51.5,-61.5
parent: 2
- uid: 13223
@@ -142403,7 +142336,6 @@ entities:
- uid: 13229
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-11.5
parent: 2
- uid: 13250
@@ -142419,79 +142351,66 @@ entities:
- uid: 13407
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -43.5,-58.5
parent: 2
- uid: 13409
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-58.5
parent: 2
- uid: 13650
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -23.5,-56.5
parent: 2
- uid: 13667
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -11.5,-57.5
parent: 2
- uid: 13671
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -55.5,-57.5
parent: 2
- uid: 13674
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-17.5
parent: 2
- uid: 13704
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -57.5,-24.5
parent: 2
- uid: 13706
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -55.5,-24.5
parent: 2
- uid: 13723
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-21.5
parent: 2
- uid: 13724
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-22.5
parent: 2
- uid: 13725
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-47.5
parent: 2
- uid: 13773
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -50.5,-60.5
parent: 2
- uid: 13813
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -54.5,-50.5
parent: 2
- uid: 13866
@@ -142507,145 +142426,121 @@ entities:
- uid: 13887
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -32.5,-30.5
parent: 2
- uid: 13890
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -59.5,-57.5
parent: 2
- uid: 13900
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-60.5
parent: 2
- uid: 13901
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -29.5,-20.5
parent: 2
- uid: 13903
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-39.5
parent: 2
- uid: 13907
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -25.5,-34.5
parent: 2
- uid: 13908
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-58.5
parent: 2
- uid: 13914
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,-39.5
parent: 2
- uid: 13922
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -35.5,-21.5
parent: 2
- uid: 13975
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -59.5,-60.5
parent: 2
- uid: 14094
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-21.5
parent: 2
- uid: 14095
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-24.5
parent: 2
- uid: 14098
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-59.5
parent: 2
- uid: 14099
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-36.5
parent: 2
- uid: 14100
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -50.5,-39.5
parent: 2
- uid: 14101
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -51.5,-39.5
parent: 2
- uid: 14102
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-20.5
parent: 2
- uid: 14104
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -39.5,-18.5
parent: 2
- uid: 14131
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -53.5,-37.5
parent: 2
- uid: 14132
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -54.5,-39.5
parent: 2
- uid: 14133
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-27.5
parent: 2
- uid: 14137
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-32.5
parent: 2
- uid: 14150
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-26.5
parent: 2
- uid: 14151
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-32.5
parent: 2
- uid: 14190
@@ -142656,25 +142551,21 @@ entities:
- uid: 14279
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -56.5,-27.5
parent: 2
- uid: 14280
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -57.5,-20.5
parent: 2
- uid: 14365
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -51.5,-42.5
parent: 2
- uid: 14399
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -51.5,-45.5
parent: 2
- uid: 14413
@@ -142705,19 +142596,16 @@ entities:
- uid: 14811
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -43.5,-44.5
parent: 2
- uid: 14816
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -43.5,-43.5
parent: 2
- uid: 14906
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -43.5,-47.5
parent: 2
- uid: 14908
@@ -142728,19 +142616,16 @@ entities:
- uid: 14917
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -48.5,-47.5
parent: 2
- uid: 14922
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -47.5,-47.5
parent: 2
- uid: 14932
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -50.5,-46.5
parent: 2
- uid: 14942
@@ -142761,7 +142646,6 @@ entities:
- uid: 15015
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 4.5,-54.5
parent: 2
- uid: 15023
@@ -142777,13 +142661,11 @@ entities:
- uid: 15142
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -40.5,-42.5
parent: 2
- uid: 15204
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-26.5
parent: 2
- uid: 15265
@@ -142809,49 +142691,41 @@ entities:
- uid: 15444
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-36.5
parent: 2
- uid: 15445
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-38.5
parent: 2
- uid: 15446
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-35.5
parent: 2
- uid: 15447
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -11.5,-52.5
parent: 2
- uid: 15448
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -62.5,-57.5
parent: 2
- uid: 15449
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -54.5,-57.5
parent: 2
- uid: 15450
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -54.5,-49.5
parent: 2
- uid: 15457
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -64.5,-59.5
parent: 2
- uid: 15476
@@ -143497,25 +143371,21 @@ entities:
- uid: 22594
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -4.5,-33.5
parent: 2
- uid: 23036
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 9.5,7.5
parent: 2
- uid: 23037
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 10.5,7.5
parent: 2
- uid: 23112
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-32.5
parent: 2
- uid: 23145
@@ -143823,7 +143693,6 @@ entities:
- uid: 1812
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: -25.5,-44.5
parent: 2
- uid: 1823
@@ -144649,7 +144518,6 @@ entities:
- uid: 5425
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 40.5,16.5
parent: 2
- uid: 5513
@@ -145060,7 +144928,6 @@ entities:
- uid: 6300
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-42.5
parent: 2
- uid: 6339
@@ -145086,7 +144953,6 @@ entities:
- uid: 6365
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-44.5
parent: 2
- uid: 6429
@@ -145907,7 +145773,6 @@ entities:
- uid: 10707
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -54.5,-54.5
parent: 2
- uid: 10722
@@ -147150,11 +147015,6 @@ entities:
- type: Transform
pos: 29.5,9.5
parent: 2
- - uid: 20768
- components:
- - type: Transform
- pos: -6.5,-42.5
- parent: 2
- uid: 20787
components:
- type: Transform
@@ -147168,7 +147028,6 @@ entities:
- uid: 21900
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 20.5,4.5
parent: 2
- uid: 21967
@@ -147179,7 +147038,6 @@ entities:
- uid: 21997
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -54.5,-52.5
parent: 2
- uid: 22002
@@ -147190,7 +147048,6 @@ entities:
- uid: 22003
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-8.5
parent: 2
- uid: 22005
@@ -147278,7 +147135,6 @@ entities:
- uid: 3838
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-58.5
parent: 2
- uid: 4867
@@ -147299,7 +147155,6 @@ entities:
- uid: 5657
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-59.5
parent: 2
- uid: 6053
@@ -147330,31 +147185,26 @@ entities:
- uid: 9295
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 14.5,-41.5
parent: 2
- uid: 9522
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 48.5,-10.5
parent: 2
- uid: 9556
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 47.5,-14.5
parent: 2
- uid: 9677
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-35.5
parent: 2
- uid: 9678
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 2.5,-46.5
parent: 2
- uid: 9708
@@ -147365,7 +147215,6 @@ entities:
- uid: 9862
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,15.5
parent: 2
- uid: 9896
@@ -147391,7 +147240,6 @@ entities:
- uid: 9938
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-58.5
parent: 2
- uid: 9992
@@ -147422,25 +147270,21 @@ entities:
- uid: 10061
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -12.5,-30.5
parent: 2
- uid: 10065
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-54.5
parent: 2
- uid: 10133
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -25.5,-48.5
parent: 2
- uid: 10188
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,5.5
parent: 2
- uid: 10389
@@ -147456,7 +147300,6 @@ entities:
- uid: 10571
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -17.5,-31.5
parent: 2
- uid: 10627
@@ -147487,7 +147330,6 @@ entities:
- uid: 10706
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -18.5,-31.5
parent: 2
- uid: 10711
@@ -147528,7 +147370,6 @@ entities:
- uid: 10914
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,9.5
parent: 2
- uid: 11001
@@ -147539,7 +147380,6 @@ entities:
- uid: 11074
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-38.5
parent: 2
- uid: 11118
@@ -147580,7 +147420,6 @@ entities:
- uid: 11287
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 30.5,20.5
parent: 2
- uid: 11310
@@ -147596,7 +147435,6 @@ entities:
- uid: 11439
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 16.5,-45.5
parent: 2
- uid: 11523
@@ -147607,13 +147445,11 @@ entities:
- uid: 11609
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-43.5
parent: 2
- uid: 11621
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 21.5,11.5
parent: 2
- uid: 11634
@@ -147644,7 +147480,6 @@ entities:
- uid: 11766
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 5.5,-35.5
parent: 2
- uid: 11795
@@ -147655,7 +147490,6 @@ entities:
- uid: 11805
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 26.5,-57.5
parent: 2
- uid: 11841
@@ -147671,7 +147505,6 @@ entities:
- uid: 11931
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -19.5,-31.5
parent: 2
- uid: 11932
@@ -147742,7 +147575,6 @@ entities:
- uid: 12132
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 7.5,-40.5
parent: 2
- uid: 12202
@@ -147798,13 +147630,11 @@ entities:
- uid: 12541
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 6.5,-46.5
parent: 2
- uid: 12551
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 5.5,-43.5
parent: 2
- uid: 12603
@@ -147815,7 +147645,6 @@ entities:
- uid: 12628
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 29.5,24.5
parent: 2
- uid: 12722
@@ -147826,43 +147655,36 @@ entities:
- uid: 12735
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 37.5,-0.5
parent: 2
- uid: 12751
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 39.5,-0.5
parent: 2
- uid: 12771
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 40.5,-0.5
parent: 2
- uid: 12825
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 8.5,-55.5
parent: 2
- uid: 12853
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 46.5,-3.5
parent: 2
- uid: 13191
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 3.5,-43.5
parent: 2
- uid: 13199
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 40.5,0.5
parent: 2
- uid: 13221
@@ -147873,55 +147695,46 @@ entities:
- uid: 13268
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,5.5
parent: 2
- uid: 13274
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 46.5,-9.5
parent: 2
- uid: 13287
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,4.5
parent: 2
- uid: 13289
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 25.5,-57.5
parent: 2
- uid: 13392
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 22.5,9.5
parent: 2
- uid: 13397
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,-0.5
parent: 2
- uid: 13401
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 18.5,-0.5
parent: 2
- uid: 13404
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,4.5
parent: 2
- uid: 13663
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 17.5,3.5
parent: 2
- uid: 13735
@@ -147937,7 +147750,6 @@ entities:
- uid: 13740
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 24.5,4.5
parent: 2
- uid: 13762
@@ -147973,7 +147785,6 @@ entities:
- uid: 13892
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 36.5,16.5
parent: 2
- uid: 14209
@@ -147989,7 +147800,6 @@ entities:
- uid: 14348
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,3.5
parent: 2
- uid: 14479
@@ -148015,7 +147825,6 @@ entities:
- uid: 14833
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-42.5
parent: 2
- uid: 15144
@@ -148026,7 +147835,6 @@ entities:
- uid: 15154
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 23.5,-44.5
parent: 2
- uid: 15283
@@ -148062,7 +147870,6 @@ entities:
- uid: 15606
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 0.5,-45.5
parent: 2
- uid: 15663
@@ -148083,7 +147890,6 @@ entities:
- uid: 15878
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,11.5
parent: 2
- uid: 15906
@@ -148109,13 +147915,11 @@ entities:
- uid: 16704
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -41.5,-34.5
parent: 2
- uid: 16894
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -26.5,-23.5
parent: 2
- uid: 16937
@@ -148126,7 +147930,6 @@ entities:
- uid: 17073
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 35.5,10.5
parent: 2
- uid: 17120
@@ -148162,7 +147965,6 @@ entities:
- uid: 18065
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 34.5,16.5
parent: 2
- uid: 18190
@@ -148203,13 +148005,11 @@ entities:
- uid: 18552
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-34.5
parent: 2
- uid: 18622
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -38.5,-34.5
parent: 2
- uid: 18967
@@ -148220,7 +148020,6 @@ entities:
- uid: 18970
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 29.5,20.5
parent: 2
- uid: 18974
@@ -148231,43 +148030,36 @@ entities:
- uid: 19147
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 21.5,16.5
parent: 2
- uid: 19222
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 22.5,14.5
parent: 2
- uid: 19246
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 22.5,15.5
parent: 2
- uid: 19257
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 0.5,-42.5
parent: 2
- uid: 19260
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -6.5,-45.5
parent: 2
- uid: 19266
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -0.5,-46.5
parent: 2
- uid: 19274
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 38.5,5.5
parent: 2
- uid: 19348
@@ -148283,19 +148075,16 @@ entities:
- uid: 19916
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 0.5,-46.5
parent: 2
- uid: 19918
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 12.5,-61.5
parent: 2
- uid: 19919
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 12.5,-58.5
parent: 2
- uid: 19959
@@ -148311,73 +148100,61 @@ entities:
- uid: 20221
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: -5.5,-46.5
parent: 2
- uid: 20279
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 20.5,-45.5
parent: 2
- uid: 20767
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -41.5,-25.5
parent: 2
- uid: 21223
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-29.5
parent: 2
- uid: 21271
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 37.5,16.5
parent: 2
- uid: 21297
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -39.5,-25.5
parent: 2
- uid: 21311
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -36.5,-25.5
parent: 2
- uid: 21312
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -31.5,-23.5
parent: 2
- uid: 21314
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -45.5,-33.5
parent: 2
- uid: 21389
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -46.5,-34.5
parent: 2
- uid: 21395
components:
- type: Transform
- rot: 3.141592653589793 rad
pos: -52.5,-31.5
parent: 2
- uid: 21438
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 38.5,16.5
parent: 2
- uid: 21859
@@ -148388,25 +148165,21 @@ entities:
- uid: 21963
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-11.5
parent: 2
- uid: 21968
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-9.5
parent: 2
- uid: 21996
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 14.5,-10.5
parent: 2
- uid: 22022
components:
- type: Transform
- rot: -1.5707963267948966 rad
pos: 21.5,-45.5
parent: 2
- uid: 22054
@@ -148742,6 +148515,27 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,-53.5
parent: 2
+- proto: WeaponDisabler
+ entities:
+ - uid: 21619
+ components:
+ - type: Transform
+ parent: 2207
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 21962
+ components:
+ - type: Transform
+ parent: 2207
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 22009
+ components:
+ - type: Transform
+ pos: -24.54724,13.558739
+ parent: 2
- proto: WeaponSubMachineGunWt550
entities:
- uid: 14803
@@ -148749,6 +148543,28 @@ entities:
- type: Transform
pos: -21.319635,10.6595335
parent: 2
+- proto: WeaponTurretSyndicateBroken
+ entities:
+ - uid: 23214
+ components:
+ - type: Transform
+ pos: -65.5,-14.5
+ parent: 2
+ - uid: 23215
+ components:
+ - type: Transform
+ pos: -69.5,-14.5
+ parent: 2
+ - uid: 23216
+ components:
+ - type: Transform
+ pos: -69.5,-10.5
+ parent: 2
+ - uid: 23217
+ components:
+ - type: Transform
+ pos: -65.5,-10.5
+ parent: 2
- proto: WeaponWaterPistol
entities:
- uid: 1138
diff --git a/Resources/Maps/bagel.yml b/Resources/Maps/bagel.yml
index 8af96925d116..b8bc38e69a35 100644
--- a/Resources/Maps/bagel.yml
+++ b/Resources/Maps/bagel.yml
@@ -77,99 +77,99 @@ entities:
chunks:
0,-1:
ind: 0,-1
- tiles: XQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAACHwAAAAADHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAAAHwAAAAACHwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAADfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAC
+ tiles: XQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADHwAAAAADHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAACHwAAAAACHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAADHwAAAAAAfgAAAAAATwAAAAAAEQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAD
version: 6
-1,-1:
ind: -1,-1
- tiles: XQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAZAAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAADZAAAAAAAXQAAAAACZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAZAAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAADcwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAHwAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAMwAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAHwAAAAACXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAACMwAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAACJAAAAAAAegAAAAACegAAAAABegAAAAAAfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAABegAAAAADegAAAAADfgAAAAAAHwAAAAABTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAB
+ tiles: XQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAACZAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADZAAAAAAAXQAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAALgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAdAAAAAAAdAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAdAAAAAABcwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACMwAAAAAAegAAAAABegAAAAAAegAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAACMwAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADJAAAAAADegAAAAADegAAAAADegAAAAADfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAABfgAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAHwAAAAADTQAAAAADTQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAC
version: 6
0,0:
ind: 0,0
- tiles: HwAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAABLwAAAAACLwAAAAACfQAAAAAAfgAAAAAAXQAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAABDAAAAAABDAAAAAABDAAAAAADLwAAAAABfgAAAAAAXQAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAADDAAAAAAADAAAAAADDAAAAAAADAAAAAACDAAAAAADLwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAABDAAAAAADDAAAAAABDAAAAAACDAAAAAAALwAAAAAAXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAADHwAAAAAADAAAAAABDAAAAAACDAAAAAADHwAAAAACLwAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAABLwAAAAAATgAAAAADLwAAAAACLwAAAAACfgAAAAAATQAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACTQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADTQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAATQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAC
+ tiles: HwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACLwAAAAAALwAAAAABfQAAAAAAfgAAAAAAXQAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAACDAAAAAADDAAAAAACDAAAAAADLwAAAAAAfgAAAAAAXQAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAAADAAAAAACDAAAAAACDAAAAAADDAAAAAACDAAAAAADLwAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALwAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAABLwAAAAABXQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALwAAAAACHwAAAAABDAAAAAACDAAAAAAADAAAAAAAHwAAAAACLwAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAALwAAAAADLwAAAAABTgAAAAABLwAAAAAALwAAAAAAfgAAAAAATQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAATQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABTQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABTQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAADfgAAAAAAXQAAAAAB
version: 6
-1,0:
ind: -1,0
- tiles: XQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACXQAAAAADXQAAAAADHwAAAAACbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABXQAAAAABXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAACTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADTQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACTQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADTQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACHwAAAAADHwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADHwAAAAAAHwAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABegAAAAADegAAAAAAegAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAXQAAAAAB
+ tiles: XQAAAAABXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAXQAAAAADXQAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAXQAAAAACXQAAAAABfgAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAOAAAAAAAOAAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAATQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAADTQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADTQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACTQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAAAegAAAAADegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAABegAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAACegAAAAACegAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAegAAAAACegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAXQAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: XQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAADgAAAAADegAAAAACegAAAAADegAAAAADegAAAAADegAAAAADXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAAAfgAAAAAADgAAAAABegAAAAADegAAAAACegAAAAAAegAAAAAAegAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAACDgAAAAABXQAAAAAAXQAAAAADfgAAAAAATQAAAAAATQAAAAACTQAAAAACTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACTQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAADXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAC
+ tiles: XQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAegAAAAAAegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAATgAAAAACfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAADgAAAAADegAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAAAHwAAAAACfgAAAAAADgAAAAAAegAAAAABegAAAAADegAAAAABegAAAAACegAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAABDgAAAAACDgAAAAABXQAAAAACXQAAAAADfgAAAAAATQAAAAAATQAAAAABTQAAAAABTQAAAAAATQAAAAAATQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADTQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACTQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACTQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAC
version: 6
-1,-2:
ind: -1,-2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAATQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAADTQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACTQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAACfgAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADTQAAAAAATQAAAAABfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAABfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABTQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAACTQAAAAACXQAAAAABTQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAALgAAAAAAfgAAAAAAAgAAAAACfgAAAAAAHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAALgAAAAAAfgAAAAAAAwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAALgAAAAAAfgAAAAAAAwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAAwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAQgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAC
version: 6
0,-3:
ind: 0,-3
- tiles: XQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAACXQAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAACHwAAAAACfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAADXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA
+ tiles: XQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAABXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAegAAAAAAegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAABfgAAAAAAegAAAAADegAAAAADfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAADXQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAbQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAAAXQAAAAADXQAAAAABZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAABQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: egAAAAADegAAAAABegAAAAACegAAAAACegAAAAADegAAAAADfgAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAACfgAAAAAAHwAAAAACXQAAAAACXQAAAAABXQAAAAABegAAAAACegAAAAACegAAAAACegAAAAABegAAAAADegAAAAABfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAACfgAAAAAAHwAAAAACXQAAAAADXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAACfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADXQAAAAADXQAAAAABXQAAAAAAegAAAAADegAAAAADegAAAAABegAAAAABegAAAAACegAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABDgAAAAAADgAAAAADDgAAAAAADgAAAAABDgAAAAAADgAAAAABfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAPAAAAAAAXQAAAAACXQAAAAAATQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADTQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACTQAAAAAATQAAAAACfgAAAAAAfgAAAAAADgAAAAAADgAAAAACDgAAAAABDgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADDgAAAAACDgAAAAABDgAAAAABDgAAAAABDgAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACcAAAAAADfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAADDgAAAAADegAAAAAAegAAAAAAegAAAAACfgAAAAAAcAAAAAABcAAAAAAAcAAAAAADXQAAAAABXQAAAAAAHwAAAAADHwAAAAAADgAAAAAADgAAAAACDgAAAAAADgAAAAAADgAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABHwAAAAAAHwAAAAABDgAAAAACDgAAAAACDgAAAAADDgAAAAAADgAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACDgAAAAABDgAAAAABDgAAAAADDgAAAAACDgAAAAAAegAAAAACegAAAAADegAAAAAAfgAAAAAAcAAAAAACcAAAAAADfgAAAAAA
+ tiles: egAAAAACegAAAAABegAAAAACegAAAAADegAAAAAAegAAAAADfgAAAAAABAAAAAACBAAAAAAABAAAAAACBAAAAAACfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAABegAAAAACegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAADfgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAACfgAAAAAAHwAAAAACXQAAAAAAXQAAAAACXQAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAACegAAAAAAegAAAAADfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAXQAAAAADXQAAAAAAXQAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAADXQAAAAABXQAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAACfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAACXQAAAAABXQAAAAACXQAAAAACDgAAAAABDgAAAAACDgAAAAACDgAAAAABDgAAAAADDgAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABDgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAPAAAAAAAXQAAAAADXQAAAAACTQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAABTQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABTQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAADgAAAAADDgAAAAABDgAAAAAADgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAACDgAAAAADDgAAAAADDgAAAAADDgAAAAAADgAAAAACegAAAAABegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAcAAAAAADfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAADgAAAAADDgAAAAAADgAAAAADDgAAAAADDgAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAACXQAAAAAAXQAAAAACHwAAAAABHwAAAAABDgAAAAABDgAAAAACDgAAAAACDgAAAAAADgAAAAACegAAAAADegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABHwAAAAABHwAAAAAADgAAAAADDgAAAAABDgAAAAACDgAAAAACDgAAAAACegAAAAAAegAAAAABegAAAAADfgAAAAAAcAAAAAAAcAAAAAADcAAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAADgAAAAAADgAAAAAADgAAAAABDgAAAAADDgAAAAACegAAAAABegAAAAABegAAAAAAfgAAAAAAcAAAAAADcAAAAAAAfgAAAAAA
version: 6
1,-1:
ind: 1,-1
- tiles: XQAAAAACXQAAAAAAfgAAAAAAHwAAAAAADgAAAAABDgAAAAAADgAAAAABDgAAAAABDgAAAAACegAAAAAAegAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAegAAAAABegAAAAACcAAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAACfgAAAAAAegAAAAACegAAAAAAHwAAAAADXQAAAAACXQAAAAACfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAABEQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: XQAAAAACXQAAAAACfgAAAAAAHwAAAAAADgAAAAAADgAAAAABDgAAAAABDgAAAAAADgAAAAACegAAAAAAegAAAAABegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAGwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAegAAAAACegAAAAACcAAAAAACXQAAAAADXQAAAAACfgAAAAAAHwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAADfgAAAAAAegAAAAABegAAAAADHwAAAAADXQAAAAABXQAAAAADfgAAAAAAHwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAATQAAAAADTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACHwAAAAACEQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
1,0:
ind: 1,0
- tiles: XQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAAAEQAAAAAAHwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAEQAAAAAAXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAATQAAAAAATQAAAAADfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACTQAAAAAATQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAdAAAAAADdAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAcAAAAAADdAAAAAABdAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAdAAAAAADdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAdAAAAAAAVgAAAAACfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: XQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAXQAAAAADEQAAAAAAHwAAAAACOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAOAAAAAAAOAAAAAAAEQAAAAAAOAAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAEQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfgAAAAAAHwAAAAACQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAATQAAAAAATQAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAATQAAAAABTQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAdAAAAAABdAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACcAAAAAADdAAAAAAAdAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAdAAAAAACdAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAdAAAAAADVgAAAAADfgAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAACegAAAAACfAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABTQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAATQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADTQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAHwAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABHwAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAADHwAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAATQAAAAADHwAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAWwAAAAAFfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAABfAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABTQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABTQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABTQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADfgAAAAAATQAAAAADHwAAAAADHwAAAAACHwAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAADTQAAAAABTQAAAAADLgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAATQAAAAACTQAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACHwAAAAABTQAAAAABTQAAAAAAHwAAAAADLgAAAAAALgAAAAAALgAAAAAAHwAAAAABTQAAAAABTQAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACLgAAAAAATgAAAAACLgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAAALgAAAAAALgAAAAAALgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAD
version: 6
-2,-1:
ind: -2,-1
- tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAcAAAAAAAcAAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAcAAAAAACcAAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAAAHwAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAHwAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAACfgAAAAAATQAAAAABfgAAAAAAHwAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAADfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATQAAAAACTQAAAAACXQAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABfgAAAAAAXQAAAAACXQAAAAAC
+ tiles: XQAAAAAAXQAAAAABHwAAAAAALgAAAAAALgAAAAAATgAAAAABLgAAAAAALgAAAAAAHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACHwAAAAADHwAAAAADHwAAAAACfgAAAAAAXQAAAAAATQAAAAACTQAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAATQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADXQAAAAABXQAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAABHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAATQAAAAACHwAAAAABHwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAADXQAAAAABHwAAAAAAHwAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAADXQAAAAAC
version: 6
-2,0:
ind: -2,0
- tiles: TQAAAAAATQAAAAABXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAAATQAAAAAATQAAAAACXQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABegAAAAABegAAAAABegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAACHwAAAAADHwAAAAACXQAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAXQAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAbgAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAHwAAAAACHwAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADTQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADTQAAAAABXQAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAACegAAAAADegAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAADfgAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAAAegAAAAABegAAAAABHwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAHwAAAAABegAAAAABegAAAAABegAAAAACegAAAAABegAAAAACHwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAABEQAAAAAAHwAAAAAAfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAHwAAAAABegAAAAADegAAAAACegAAAAAAegAAAAACegAAAAACHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAB
+ tiles: HwAAAAADHwAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAegAAAAADegAAAAABegAAAAADegAAAAACfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACTQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADTQAAAAACXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAAAegAAAAADegAAAAABegAAAAAAegAAAAACegAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAABfgAAAAAAHwAAAAADegAAAAADegAAAAADegAAAAAAegAAAAABegAAAAADHwAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADEQAAAAAAXQAAAAACfgAAAAAAHwAAAAAAegAAAAABegAAAAABegAAAAACegAAAAACegAAAAABHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACEQAAAAAAHwAAAAACfgAAAAAAHwAAAAAAegAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABHwAAAAABfgAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAAB
version: 6
1,-3:
ind: 1,-3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAABfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAABAAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAACfgAAAAAADAAAAAABDAAAAAADfgAAAAAAegAAAAAAegAAAAABegAAAAADegAAAAABegAAAAAAegAAAAABHwAAAAAABAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAACHwAAAAADDAAAAAAADAAAAAADfgAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAADfgAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAADfgAAAAAADAAAAAACDAAAAAAAfgAAAAAAegAAAAACegAAAAAAegAAAAABegAAAAABegAAAAACegAAAAAAfgAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAADDAAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAADegAAAAACegAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADegAAAAACegAAAAADegAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAAD
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAADfgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAACegAAAAACegAAAAABegAAAAACHwAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAADBAAAAAACHwAAAAADDAAAAAADDAAAAAADfgAAAAAAegAAAAAAegAAAAACegAAAAADegAAAAADegAAAAACegAAAAADfgAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAACfgAAAAAADAAAAAABDAAAAAACfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAADfgAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAACfgAAAAAAfgAAAAAADAAAAAABDAAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAADegAAAAAAegAAAAADfgAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAAAegAAAAACfgAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAABfgAAAAAAHwAAAAADXQAAAAADXQAAAAADXQAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: HwAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAeQAAAAACeQAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAATQAAAAABTQAAAAAATQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACfgAAAAAATQAAAAACTQAAAAADTQAAAAACHwAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAATQAAAAAATQAAAAABTQAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAATQAAAAADTQAAAAAATQAAAAABHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAAATQAAAAABTQAAAAACTQAAAAACMgAAAAADMgAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAACfgAAAAAATQAAAAAATQAAAAADTQAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADegAAAAADegAAAAACfgAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADTQAAAAACXQAAAAABXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAABegAAAAAAegAAAAABHwAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABTQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAegAAAAABegAAAAAAfgAAAAAAegAAAAACfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABTQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABcAAAAAABcAAAAAACcAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADKAAAAAACHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAACcAAAAAADcAAAAAACcAAAAAAAfgAAAAAAXQAAAAABEQAAAAAAXQAAAAABKAAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAAAcAAAAAACcAAAAAACcAAAAAADHwAAAAACXQAAAAAAEQAAAAAAEQAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABfgAAAAAAXQAAAAACEQAAAAAAXQAAAAABaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAD
+ tiles: HwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAeQAAAAACeQAAAAACfgAAAAAATQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAMgAAAAACMgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAAAegAAAAACfgAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAACTQAAAAAAXQAAAAAAXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAABHwAAAAABegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACTQAAAAACXQAAAAACXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAAAfgAAAAAAegAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAADTQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACKAAAAAADHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAXQAAAAACEQAAAAAAXQAAAAADKAAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABcAAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAAAHwAAAAABXQAAAAABEQAAAAAAEQAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAAAcAAAAAABfgAAAAAAXQAAAAABEQAAAAAAXQAAAAABaAAAAAACXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAKAAAAAADXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACKAAAAAACXQAAAAABXQAAAAABXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAAAKAAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABegAAAAACegAAAAABegAAAAABegAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAATQAAAAABTQAAAAADTQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADegAAAAADegAAAAABegAAAAABegAAAAADegAAAAACegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAA
+ tiles: ZAAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABegAAAAABfgAAAAAATQAAAAAATQAAAAABTQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAADegAAAAAAegAAAAAAegAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: fgAAAAAAfAAAAAAAfAAAAAABegAAAAAAegAAAAABegAAAAADfAAAAAADfAAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAHwAAAAABHwAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAXQAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAHwAAAAACHwAAAAACXQAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAABXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAACKAAAAAAAKAAAAAABHwAAAAADTQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAATQAAAAABTQAAAAAATQAAAAAA
+ tiles: fgAAAAAAfAAAAAABfAAAAAACegAAAAAAegAAAAADegAAAAAAfAAAAAAAfAAAAAACfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADbAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAADXQAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAATQAAAAABXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAABKAAAAAADKAAAAAABHwAAAAABTQAAAAACXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAC
version: 6
2,-3:
ind: 2,-3
- tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAABTQAAAAACTQAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAADfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAcAAAAAABeQAAAAABcAAAAAABcAAAAAAAcAAAAAAD
+ tiles: fgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAABegAAAAADAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAZAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATQAAAAAATQAAAAAATQAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABeQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAADfgAAAAAAcAAAAAADeQAAAAABcAAAAAACcAAAAAAAcAAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: XQAAAAABXQAAAAABXQAAAAADHwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAcAAAAAAAcAAAAAABeQAAAAACcAAAAAADcAAAAAADcAAAAAADXQAAAAACXQAAAAADXQAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAcAAAAAACeQAAAAAAcAAAAAABcAAAAAADcAAAAAACXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACXQAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACcAAAAAADcAAAAAADeQAAAAADcAAAAAAAcAAAAAABdQAAAAADXQAAAAABXQAAAAADXQAAAAADHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABfgAAAAAAcAAAAAACeQAAAAADcAAAAAABcAAAAAAAdQAAAAABXQAAAAAAXQAAAAABXQAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAADPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADfgAAAAAAcAAAAAADcAAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAcAAAAAABcAAAAAABcAAAAAABcAAAAAACcAAAAAACfgAAAAAAcAAAAAABcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAABcAAAAAAAcAAAAAABeQAAAAAAeQAAAAACeQAAAAADcAAAAAABcAAAAAADcAAAAAACeQAAAAADcAAAAAAAfgAAAAAAKAAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAHwAAAAADfgAAAAAAcAAAAAAAcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADHwAAAAADcAAAAAAAcAAAAAAAcAAAAAADcAAAAAACcAAAAAADcAAAAAADcAAAAAAAcAAAAAADcAAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAACcAAAAAAAfgAAAAAAXQAAAAADcAAAAAADeQAAAAACeQAAAAACeQAAAAAAeQAAAAACeQAAAAADeQAAAAACeQAAAAABeQAAAAAAcAAAAAADXQAAAAABcAAAAAAAeQAAAAABcAAAAAABfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAACcAAAAAAAeQAAAAADeQAAAAACcAAAAAADcAAAAAACeQAAAAADcAAAAAADcAAAAAABcAAAAAACcAAAAAAAeQAAAAABeQAAAAACeQAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABfgAAAAAAcAAAAAABeQAAAAADcAAAAAABcAAAAAABcAAAAAACcAAAAAABcAAAAAACcAAAAAAAcAAAAAABcAAAAAADcAAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAABfgAAAAAAcAAAAAACcAAAAAABcAAAAAABcAAAAAABcAAAAAAB
+ tiles: XQAAAAABXQAAAAAAXQAAAAADHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAABcAAAAAACcAAAAAABeQAAAAADcAAAAAADcAAAAAABcAAAAAACXQAAAAADXQAAAAAAXQAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAACcAAAAAADcAAAAAABXQAAAAACXQAAAAAAXQAAAAAAHwAAAAAAXQAAAAABHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACcAAAAAAAcAAAAAABeQAAAAADcAAAAAACcAAAAAACdQAAAAABXQAAAAABXQAAAAACXQAAAAACHwAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAABeQAAAAACcAAAAAABcAAAAAACdQAAAAADXQAAAAAAXQAAAAABXQAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACcAAAAAACcAAAAAABeQAAAAAAcAAAAAAAcAAAAAABdQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAABfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAcAAAAAAAcAAAAAAAcAAAAAABcAAAAAACcAAAAAAAPAAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAXQAAAAACXQAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAfgAAAAAAcAAAAAADcAAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAADfgAAAAAAcAAAAAABcAAAAAACcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADcAAAAAABcAAAAAABeQAAAAAAeQAAAAAAeQAAAAABcAAAAAABcAAAAAACcAAAAAAAeQAAAAAAcAAAAAABfgAAAAAAKAAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAcAAAAAACcAAAAAACcAAAAAAAcAAAAAAAcAAAAAACfgAAAAAAcAAAAAACeQAAAAABcAAAAAABfgAAAAAAHwAAAAACfgAAAAAAcAAAAAABcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAABHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAABcAAAAAAAcAAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAADfgAAAAAAXQAAAAACcAAAAAACeQAAAAACeQAAAAACeQAAAAACeQAAAAADeQAAAAABeQAAAAABeQAAAAAAeQAAAAABcAAAAAAAXQAAAAABcAAAAAAAeQAAAAADcAAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADeQAAAAADeQAAAAAAcAAAAAABcAAAAAABeQAAAAADcAAAAAABcAAAAAACcAAAAAACcAAAAAACeQAAAAADeQAAAAADeQAAAAADeQAAAAABeQAAAAAAeQAAAAABeQAAAAADeQAAAAADcAAAAAACfgAAAAAAcAAAAAAAeQAAAAACcAAAAAAAcAAAAAADcAAAAAABcAAAAAADcAAAAAADcAAAAAABcAAAAAABcAAAAAAAcAAAAAADcAAAAAABcAAAAAAAcAAAAAADcAAAAAAAfgAAAAAAcAAAAAACcAAAAAADcAAAAAACcAAAAAADcAAAAAAD
version: 6
3,-3:
ind: 3,-3
- tiles: fgAAAAAAegAAAAADegAAAAABegAAAAACegAAAAAAegAAAAADfgAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAAAegAAAAABegAAAAADQAAAAAAAegAAAAABegAAAAADegAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAAAegAAAAACfgAAAAAAegAAAAAAegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAABegAAAAADegAAAAADegAAAAABegAAAAABfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAABZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAABZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAACcAAAAAABcAAAAAAAcAAAAAABcAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA
+ tiles: fgAAAAAAegAAAAADegAAAAABegAAAAABegAAAAADegAAAAABfgAAAAAAegAAAAABfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAADegAAAAADfgAAAAAAegAAAAADegAAAAACegAAAAADQAAAAAAAegAAAAAAegAAAAADegAAAAABZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAegAAAAACegAAAAACfgAAAAAAegAAAAACegAAAAACfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAegAAAAACegAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAegAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAfgAAAAAAXQAAAAADZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAXQAAAAACZAAAAAAAZAAAAAAAXQAAAAADZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAXQAAAAADZAAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAAAcAAAAAADcAAAAAADcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: cAAAAAAAcAAAAAACcAAAAAADeQAAAAABcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAAAcAAAAAABcAAAAAABeQAAAAACcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAABcAAAAAADeQAAAAABcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfQAAAAAAdQAAAAABdQAAAAADcAAAAAACeQAAAAAAcAAAAAABfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAACeQAAAAABcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAACcAAAAAABcAAAAAABeQAAAAACcAAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAADcAAAAAAAcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAADKAAAAAADKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAAAKAAAAAADKAAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAAAKAAAAAAAKAAAAAADKAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAAATQAAAAACXQAAAAACXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
+ tiles: cAAAAAABcAAAAAACcAAAAAADeQAAAAACcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAACcAAAAAABeQAAAAABcAAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAABdQAAAAAAcAAAAAABeQAAAAADcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfQAAAAAAdQAAAAACdQAAAAACcAAAAAAAeQAAAAACcAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAdQAAAAACdQAAAAABcAAAAAABeQAAAAADcAAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAABcAAAAAABcAAAAAABeQAAAAAAcAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfQAAAAAAcAAAAAAAcAAAAAACcAAAAAADcAAAAAADcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAKAAAAAABKAAAAAABKAAAAAABKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAACKAAAAAACKAAAAAACKAAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAKAAAAAADKAAAAAAAKAAAAAACKAAAAAACfgAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAXQAAAAABTQAAAAABXQAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: fgAAAAAAcAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAADeQAAAAABeQAAAAABcAAAAAABfgAAAAAAcAAAAAACcAAAAAACcAAAAAABcAAAAAABcAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAcAAAAAADcAAAAAACcAAAAAADfgAAAAAAXQAAAAABcAAAAAABcAAAAAAAcAAAAAACcAAAAAACcAAAAAACfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAADcAAAAAACeQAAAAABcAAAAAABfgAAAAAAXQAAAAACcAAAAAABcAAAAAABcAAAAAACcAAAAAAAcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAABfgAAAAAAcAAAAAAAeQAAAAADcAAAAAABfgAAAAAAXQAAAAACfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADeQAAAAADcAAAAAADfgAAAAAAXQAAAAAAHwAAAAABHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAcAAAAAADeQAAAAACcAAAAAADfgAAAAAAcAAAAAADHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAcAAAAAABeQAAAAACcAAAAAACcAAAAAACcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAACHwAAAAABfgAAAAAAcAAAAAADcAAAAAAAcAAAAAACfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAA
+ tiles: fgAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAeQAAAAACeQAAAAACeQAAAAABcAAAAAADfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAAAcAAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAcAAAAAADcAAAAAADcAAAAAAAfgAAAAAAXQAAAAABcAAAAAADcAAAAAABcAAAAAACcAAAAAADcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAACHwAAAAABcAAAAAABeQAAAAAAcAAAAAACfgAAAAAAXQAAAAADcAAAAAAAcAAAAAADcAAAAAAAcAAAAAAAcAAAAAABfgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAHwAAAAADfgAAAAAAcAAAAAACeQAAAAACcAAAAAACfgAAAAAAXQAAAAABfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACeQAAAAACcAAAAAABfgAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAcAAAAAACeQAAAAAAcAAAAAACfgAAAAAAcAAAAAADHwAAAAADHwAAAAABHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAABcAAAAAAAeQAAAAADcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAcAAAAAAAcAAAAAADcAAAAAABfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: cAAAAAAAfgAAAAAAcAAAAAACAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAACcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAADcAAAAAADfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAABXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: cAAAAAABfgAAAAAAcAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAAAcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAABfgAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAcAAAAAAAcAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAACcAAAAAACXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAcAAAAAABcAAAAAABXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,-4:
ind: 1,-4
@@ -197,11 +197,11 @@ entities:
version: 6
-4,-1:
ind: -4,-1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAACbgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAACfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAALwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAHwAAAAABLwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAHwAAAAAALwAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADLwAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbgAAAAABbgAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbgAAAAADfgAAAAAAbgAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAABfgAAAAAAHwAAAAAALwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAACfgAAAAAAHwAAAAAALwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACLwAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAAALwAAAAAD
version: 6
-4,-2:
ind: -4,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAA
version: 6
-6,-1:
ind: -6,-1
@@ -213,7 +213,7 @@ entities:
version: 6
-4,0:
ind: -4,0
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAABcAAAAAABfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAABLwAAAAACHwAAAAAALwAAAAACHwAAAAADLwAAAAABHwAAAAACLwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAATQAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAAAcAAAAAACcAAAAAADfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADcAAAAAAAcAAAAAABcAAAAAADfgAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACKAAAAAACHwAAAAADfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAKAAAAAAAKAAAAAAAKAAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAACcAAAAAADfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACLwAAAAAAHwAAAAADLwAAAAABHwAAAAACLwAAAAACHwAAAAACLwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAACTQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAOAAAAAAAHwAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAcAAAAAACcAAAAAABcAAAAAADcAAAAAABfgAAAAAAOAAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAABcAAAAAACcAAAAAABcAAAAAAAfgAAAAAAOAAAAAAAHwAAAAADEQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAcAAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAADHwAAAAADKAAAAAADHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAABHwAAAAADHwAAAAABKAAAAAABKAAAAAADKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAA
version: 6
-4,-3:
ind: -4,-3
@@ -221,15 +221,15 @@ entities:
version: 6
0,-4:
ind: 0,-4
- tiles: XQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAJAAAAAACHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACegAAAAADfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAABXQAAAAAB
+ tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAJAAAAAADHwAAAAABHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAACegAAAAACegAAAAADegAAAAABfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAC
version: 6
-2,-4:
ind: -2,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAA
version: 6
-1,-6:
ind: -1,-6
@@ -237,23 +237,23 @@ entities:
version: 6
0,-5:
ind: 0,-5
- tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAABXQAAAAADXQAAAAADXQAAAAACBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAAAXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAABXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAADXQAAAAAAXQAAAAAAXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAADAAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAADXQAAAAABXQAAAAADXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAADDAAAAAAAXQAAAAAAXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAAXQAAAAAAXQAAAAABXQAAAAABBwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAABDAAAAAAAXQAAAAAAXQAAAAADXQAAAAAABwAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAACDAAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAACegAAAAADfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAegAAAAAAegAAAAADfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: XQAAAAACXQAAAAABXQAAAAAAegAAAAABegAAAAAAegAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAfgAAAAAAHwAAAAABHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAegAAAAADegAAAAACegAAAAADegAAAAACegAAAAADegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAegAAAAADegAAAAAAegAAAAABegAAAAAAegAAAAADegAAAAABegAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAegAAAAACegAAAAADegAAAAAAegAAAAABHwAAAAABHwAAAAADHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAAAegAAAAABHwAAAAABHwAAAAABHwAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAATQAAAAAATQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAACegAAAAABHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAHwAAAAAAfgAAAAAATgAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAABfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAXQAAAAABXQAAAAABfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADXQAAAAAA
+ tiles: XQAAAAADXQAAAAAAHwAAAAADegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAABfgAAAAAAHwAAAAADHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAegAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADfgAAAAAAegAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAegAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAegAAAAABegAAAAABQAAAAAAAQAAAAAAAQAAAAAAAegAAAAACegAAAAABfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAegAAAAABegAAAAADegAAAAAAegAAAAADHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAAAegAAAAAAHwAAAAAAHwAAAAADHwAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAABTQAAAAABTQAAAAACfgAAAAAAegAAAAABegAAAAABegAAAAABegAAAAACHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAKAAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADHwAAAAAAfgAAAAAATgAAAAABXQAAAAADbQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAABHwAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: XQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAegAAAAAAegAAAAADfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAADXQAAAAABXQAAAAACHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAegAAAAADegAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAABfgAAAAAAegAAAAADegAAAAACfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACHwAAAAACegAAAAAAegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAATQAAAAADfgAAAAAAfgAAAAAAHwAAAAADfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAACfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACHwAAAAADfgAAAAAAHwAAAAADHwAAAAACfgAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAHwAAAAAAHwAAAAACHwAAAAADfgAAAAAAHwAAAAABHwAAAAADfgAAAAAAHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAHwAAAAAAHwAAAAADfgAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAA
version: 6
0,-6:
ind: 0,-6
@@ -261,15 +261,15 @@ entities:
version: 6
-1,-5:
ind: -1,-5
- tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAADAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAAAXQAAAAABXQAAAAACDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAABXQAAAAAAXQAAAAABXQAAAAAADAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAABXQAAAAAAXQAAAAADDAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAADXQAAAAACDAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADDAAAAAAC
+ tiles: fQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAACXQAAAAABXQAAAAABDAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAIXQAAAAAAXQAAAAABXQAAAAACDAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAAAXQAAAAAAXQAAAAAADAAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAABwAAAAAAXQAAAAADXQAAAAACXQAAAAAADAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADDAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: XQAAAAADXQAAAAADfgAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAKAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAABTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAAATQAAAAABTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA
+ tiles: XQAAAAAAXQAAAAAAfgAAAAAATQAAAAAATQAAAAACfgAAAAAAfgAAAAAAKAAAAAADfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAATQAAAAADTQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAATQAAAAACTQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: fgAAAAAAfgAAAAAAJgAAAAACJgAAAAABJgAAAAADJgAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAegAAAAACegAAAAAAegAAAAACXQAAAAABXQAAAAABbAAAAAAAfgAAAAAAJgAAAAABLwAAAAADLwAAAAAALwAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAJgAAAAACLwAAAAAALwAAAAABLwAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAADfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAADTQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADTQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACTQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAACXQAAAAABXQAAAAADfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAJgAAAAABJgAAAAADJgAAAAAAJgAAAAACfgAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAegAAAAACegAAAAACegAAAAABXQAAAAADXQAAAAABbAAAAAAAfgAAAAAAJgAAAAABLwAAAAABLwAAAAAALwAAAAABfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAJgAAAAACLwAAAAABLwAAAAABLwAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAATQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAAATQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAAATQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-2:
ind: 4,-2
@@ -285,27 +285,27 @@ entities:
version: 6
2,0:
ind: 2,0
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAADXQAAAAABfgAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAegAAAAADegAAAAADegAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACXQAAAAADXQAAAAADXQAAAAACfgAAAAAAegAAAAACegAAAAADegAAAAADfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAegAAAAABegAAAAACegAAAAABfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAHwAAAAAAHwAAAAACHwAAAAABfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAegAAAAABegAAAAADegAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAegAAAAAAegAAAAACegAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAADegAAAAADegAAAAADfgAAAAAAfgAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: XQAAAAADXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAACfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAABXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAACQAAAAAACQAAAAAACQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: aAAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAACegAAAAACfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAACegAAAAADHwAAAAADXQAAAAADXQAAAAACXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAACegAAAAADegAAAAAAegAAAAADXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAADTgAAAAABXQAAAAAATgAAAAAAXQAAAAAATgAAAAACXQAAAAABTgAAAAAAXQAAAAAAegAAAAADegAAAAACegAAAAADfgAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA
+ tiles: aAAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAaAAAAAADaAAAAAABaAAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAegAAAAACegAAAAABegAAAAADfgAAAAAAXQAAAAADXQAAAAADXQAAAAABfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAAAegAAAAABHwAAAAAAXQAAAAAAXQAAAAABXQAAAAADfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAPwAAAAAAPwAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAPwAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAegAAAAAAegAAAAACegAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAABegAAAAABegAAAAAAegAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAABXQAAAAABTgAAAAADXQAAAAABTgAAAAACXQAAAAAATgAAAAADXQAAAAABTgAAAAAAXQAAAAADegAAAAADegAAAAABegAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAACfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADegAAAAADegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAADXQAAAAADfgAAAAAAegAAAAADegAAAAABegAAAAADfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACZAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAADTgAAAAABfgAAAAAAfgAAAAAAegAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAADfgAAAAAAXQAAAAABegAAAAADegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAACfgAAAAAAegAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAZAAAAAAAfgAAAAAAfgAAAAAAegAAAAABegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAegAAAAAAegAAAAAAegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAATgAAAAAAXQAAAAAAfgAAAAAAegAAAAAAegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAACZAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAXQAAAAAATgAAAAABfgAAAAAAfgAAAAAAegAAAAABegAAAAAAegAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAZAAAAAAAXQAAAAACfgAAAAAAXQAAAAAAegAAAAACegAAAAADegAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADfgAAAAAAegAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAACegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAACegAAAAABegAAAAABegAAAAADegAAAAABegAAAAABHwAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAADfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAABegAAAAADegAAAAAAegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAACegAAAAACegAAAAADegAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAACegAAAAABHwAAAAAAHwAAAAACIwAAAAAAHwAAAAABIwAAAAACfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAADegAAAAAAegAAAAACegAAAAACegAAAAABegAAAAABHwAAAAABfgAAAAAAIwAAAAAAHwAAAAAAIwAAAAACfgAAAAAAXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAABXQAAAAAAXQAAAAACXQAAAAABXQAAAAACXQAAAAACTgAAAAABXQAAAAADTgAAAAABXQAAAAACTgAAAAABXQAAAAACTgAAAAAAXQAAAAADTgAAAAABXQAAAAADTgAAAAAAXQAAAAACTgAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAABXQAAAAADXQAAAAABXQAAAAAAXQAAAAABXQAAAAACXQAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAHwAAAAADHwAAAAACfgAAAAAATQAAAAADTQAAAAABTQAAAAABfgAAAAAAfgAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABegAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAADHwAAAAACfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAHwAAAAAAegAAAAADegAAAAADegAAAAABegAAAAACegAAAAADHwAAAAADHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAABegAAAAACegAAAAABegAAAAADegAAAAAAHwAAAAABfgAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAADegAAAAABegAAAAABegAAAAABegAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABfgAAAAAAXQAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAACegAAAAACegAAAAACegAAAAAAegAAAAAAegAAAAAAHwAAAAAAHwAAAAACIwAAAAACHwAAAAACIwAAAAAAfgAAAAAAXQAAAAABfgAAAAAAbAAAAAAAfgAAAAAAHwAAAAABegAAAAABegAAAAAAegAAAAACegAAAAACegAAAAABHwAAAAADfgAAAAAAIwAAAAAAHwAAAAACIwAAAAAAfgAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATQAAAAABXQAAAAACXQAAAAABXQAAAAABXQAAAAACXQAAAAAAXQAAAAAAXQAAAAABXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAACXQAAAAABTgAAAAADXQAAAAAATgAAAAAAXQAAAAADTgAAAAADXQAAAAAATgAAAAAAXQAAAAABTgAAAAADXQAAAAADTgAAAAAAXQAAAAADTgAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAACXQAAAAAAXQAAAAADXQAAAAACXQAAAAABXQAAAAABHwAAAAACHwAAAAAAHwAAAAABHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAABfgAAAAAATQAAAAAATQAAAAACTQAAAAADfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABXQAAAAACXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAABXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAACXQAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: fgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAADXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAXQAAAAABTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAAATwAAAAAABQAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAABXQAAAAACXQAAAAABXQAAAAACfgAAAAAAXQAAAAAATwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAACXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAACfgAAAAAAHwAAAAACHwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA
+ tiles: fgAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAABXQAAAAAAXQAAAAACfgAAAAAAXQAAAAACTwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAXQAAAAABTwAAAAAABQAAAAADfgAAAAAATwAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAXQAAAAACTwAAAAAATwAAAAAAfgAAAAAATwAAAAAAHwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAABXQAAAAABXQAAAAACXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAACTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAfgAAAAAAHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAUQAAAAAA
version: 6
-1,3:
ind: -1,3
@@ -313,7 +313,7 @@ entities:
version: 6
-1,2:
ind: -1,2
- tiles: TwAAAAAAXQAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAADfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAACbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: TwAAAAAAXQAAAAADfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAABXQAAAAACTwAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAADbAAAAAAATwAAAAAAXQAAAAABfgAAAAAAXQAAAAABXQAAAAAAXQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAXQAAAAACbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAXQAAAAAAXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAAAXQAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAHwAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-3,2:
ind: -3,2
@@ -333,23 +333,23 @@ entities:
version: 6
0,2:
ind: 0,2
- tiles: bAAAAAAAbAAAAAAAXQAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAbAAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAADXQAAAAACfgAAAAAAfgAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABXQAAAAADbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAABXQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbAAAAAAAbAAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAABHwAAAAABfgAAAAAAfgAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAbAAAAAAAXQAAAAAAHwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAbAAAAAAAbAAAAAAAXQAAAAABHwAAAAABbQAAAAAAbQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAXQAAAAADXQAAAAABXQAAAAABHwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAXQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAATwAAAAAATwAAAAAATwAAAAAAfgAAAAAAfQAAAAAAXQAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,1:
ind: -5,1
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADHwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAADfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAABgAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAHwAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAACfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
2,-5:
ind: 2,-5
@@ -405,11 +405,11 @@ entities:
version: 6
-6,1:
ind: -6,1
- tiles: HwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADHwAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAACHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HwAAAAADHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAHwAAAAABHwAAAAABHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAOwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAfgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,1:
ind: -7,1
- tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAAAHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAADfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAACHwAAAAADHwAAAAABfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAADHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADHwAAAAAAHwAAAAADHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAADOAAAAAAAOAAAAAAAIwAAAAABHwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAACHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAIwAAAAACIwAAAAAAIwAAAAAAIwAAAAACOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAABHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAAATwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: QAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAADHwAAAAADHwAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAAAHwAAAAADQAAAAAAAQAAAAAAAQAAAAAAAHwAAAAABfgAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAADTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAIwAAAAACIwAAAAADIwAAAAADIwAAAAAAHwAAAAABHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAIwAAAAABHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAACHwAAAAACfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAfgAAAAAAOAAAAAAAIwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAACIwAAAAACIwAAAAABIwAAAAACIwAAAAABOAAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIwAAAAADHwAAAAABHwAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAACIwAAAAAAIwAAAAADIwAAAAADHwAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAABTwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,0:
ind: -6,0
@@ -417,23 +417,23 @@ entities:
version: 6
-7,0:
ind: -7,0
- tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAACHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAACJAAAAAACHwAAAAABHwAAAAADfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAEQAAAAAAHwAAAAACEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAACfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAACHwAAAAAAHwAAAAAAfgAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAACHwAAAAABfgAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAA
+ tiles: fQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAABHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACEQAAAAAAEQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAJAAAAAADHwAAAAABHwAAAAABfgAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADEQAAAAAAHwAAAAABEQAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAADHwAAAAACHwAAAAABfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABHwAAAAAAEQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAADHwAAAAAAfgAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABfgAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAA
version: 6
-8,0:
ind: -8,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAHwAAAAABHwAAAAACHwAAAAABHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAABJAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAADHwAAAAADHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAADEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAACHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAADHwAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABHwAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAHwAAAAADHwAAAAAAJAAAAAADAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADHwAAAAABHwAAAAAAHwAAAAAAHwAAAAABHwAAAAACfQAAAAAAfQAAAAAAfgAAAAAAEQAAAAAAHwAAAAABEQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAEQAAAAAAHwAAAAADHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAD
version: 6
-8,1:
ind: -8,1
- tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABHwAAAAABHwAAAAADfgAAAAAAHwAAAAADQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAABHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAABHwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAACIwAAAAACIwAAAAAAIwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAADIwAAAAADOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAACIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAACIwAAAAADOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAABIwAAAAADOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAHwAAAAACIwAAAAADIwAAAAADIwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAABHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAC
+ tiles: AAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAACfgAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAACHwAAAAACfgAAAAAAHwAAAAABQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAADfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAHwAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAABHwAAAAAAHwAAAAACAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAAAIwAAAAADIwAAAAABAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABOAAAAAAAOAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAADHwAAAAAAIwAAAAABOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAADIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAOAAAAAAAIwAAAAABIwAAAAAAIwAAAAADIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAAIwAAAAAAOAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAABHwAAAAAAIwAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAHwAAAAACHwAAAAAAIwAAAAACIwAAAAACIwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAABfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAATwAAAAAAHwAAAAADHwAAAAAAHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAHwAAAAAA
version: 6
-8,2:
ind: -8,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAHwAAAAADHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAABHwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABHwAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAHwAAAAACHwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,2:
ind: -7,2
- tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAABfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAADHwAAAAABHwAAAAABHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAADHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAABHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAHwAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAABHwAAAAACHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAHwAAAAAAHwAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACHwAAAAAAHwAAAAADfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-7,-1:
ind: -7,-1
@@ -445,7 +445,7 @@ entities:
version: 6
-5,3:
ind: -5,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-5,2:
ind: -5,2
@@ -465,11 +465,11 @@ entities:
version: 6
3,2:
ind: 3,2
- tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAACfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAABXQAAAAACXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAAAXQAAAAADXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: XQAAAAABXQAAAAACXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAAAXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAAAXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAABXQAAAAADXQAAAAAAXQAAAAAAXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAABXQAAAAABXQAAAAAAbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: XQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAABfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAABXQAAAAACbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAABXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAACXQAAAAAAXQAAAAADXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAAAXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAACXQAAAAACXQAAAAADbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAXQAAAAADXQAAAAACXQAAAAABbQAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
@@ -477,11 +477,11 @@ entities:
version: 6
2,3:
ind: 2,3
- tiles: fgAAAAAAXQAAAAAAXQAAAAABXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAADXQAAAAADXQAAAAABXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAACXQAAAAADXQAAAAAAXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: fgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAXQAAAAADXQAAAAACXQAAAAABfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAADXQAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAACXQAAAAABfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAACXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAXQAAAAADXQAAAAABXQAAAAABfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAADXQAAAAAAXQAAAAACXQAAAAABXQAAAAADfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACXQAAAAACfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfgAAAAAAfgAAAAAAXQAAAAABXQAAAAADXQAAAAADfgAAAAAAfgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAfgAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -501,6 +501,334 @@ entities:
chunkCollection:
version: 2
nodes:
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ decals:
+ 55: -7,-24
+ 56: 11,-29
+ 58: 13,-28
+ 59: 16,-38
+ 60: 21,-38
+ 61: 37,-22
+ 62: 44,-37
+ 63: 44,-38
+ 67: 30,-12
+ 68: 31,-12
+ 69: 33,-12
+ 70: -45,9
+ 71: -44,9
+ 72: -45,8
+ 79: -7,9
+ 81: 17,12
+ 82: 16,13
+ 83: 17,14
+ 84: 15,16
+ 85: 11,11
+ 89: 11,15
+ 91: 1,-42
+ 92: 1,-35
+ 93: 15,-17
+ 94: 13,-17
+ 95: 17,-9
+ 98: -37,0
+ 100: -17,-1
+ 101: -17,-2
+ 102: -15,-12
+ 103: -1,-24
+ 104: 0,-28
+ 106: 19,-30
+ 107: 19,-13
+ 108: 20,-11
+ 111: -1,-31
+ 119: -11,-43
+ 120: -13,-43
+ 121: -10,-43
+ 122: -9,-43
+ 123: -7,-43
+ 124: -6,-42
+ 125: -15,-40
+ 135: -47,-33
+ 136: -45,-35
+ 137: -50,-30
+ 152: -38,-13
+ 153: -38,-14
+ 154: -38,-18
+ 155: -39,-19
+ 283: -23,-12
+ 359: 11,-21
+ 360: 12,-21
+ 374: 16,-9
+ 409: -26,31
+ 410: -27,30
+ 411: -23,31
+ 412: -23,29
+ 413: -21,29
+ 414: -18,29
+ 415: -22,27
+ 416: -24,30
+ 417: -29,31
+ 448: -16,12
+ 449: -16,23
+ 450: -23,24
+ 451: -39,24
+ 452: -42,22
+ 453: -43,21
+ 460: -58,20
+ 461: -59,18
+ 462: -60,17
+ 463: -59,25
+ 464: -60,24
+ 465: -56,24
+ 466: -57,20
+ 511: -38,8
+ 512: -38,6
+ 514: -39,12
+ 585: 47,-1
+ 586: 48,-2
+ 587: 49,-2
+ 588: 51,1
+ 589: 50,1
+ 591: 48,2
+ 592: 47,0
+ 597: 55,12
+ 598: 54,11
+ 599: 53,11
+ 600: 55,13
+ 601: 55,9
+ 602: 49,14
+ 603: 50,13
+ 607: 37,4
+ 608: 36,5
+ 675: -22,25
+ 676: -17,18
+ 677: -37,4
+ 683: -16,-5
+ 691: -16,7
+ 693: -16,4
+ 694: -15,9
+ 695: -16,0
+ 828: -9,-25
+ 829: -8,-25
+ 830: -8,-25
+ 835: -4,-24
+ 836: -1,-25
+ 895: -6,-23
+ 896: -25,-23
+ 898: -37,-24
+ 1068: -10,-55
+ 1069: -14,-56
+ 1070: -19,-55
+ 1071: -7,-54
+ 1072: -2,-54
+ 1073: -3,-57
+ 1074: 2,-59
+ 1075: -3,-64
+ 1076: 0,-61
+ 1077: -3,-66
+ 1078: -3,-71
+ 1079: -1,-73
+ 1080: 2,-71
+ 1081: 1,-55
+ 1082: -1,-47
+ 1083: 0,-45
+ 1153: 15,25
+ 1154: 16,27
+ 1156: 38,24
+ 1163: 41,20
+ 1164: 52,14
+ 1165: 48,18
+ 1166: 49,16
+ 1167: 45,7
+ 1168: 20,8
+ 1169: 32,7
+ 1170: 34,8
+ 1171: 16,8
+ 1172: 5,8
+ 1173: -7,9
+ 1174: -8,8
+ 1216: 7,-24
+ 1218: 18,-28
+ 1219: 21,-35
+ 1220: 19,-34
+ 1629: -38,9
+ 1630: -39,8
+ 1631: -39,7
+ 1632: -39,-1
+ 1641: -8,-14
+ 1642: -9,-13
+ 1657: -9,-16
+ 1658: -8,-16
+ 1659: -8,-16
+ 1981: -39,-12
+ 1983: -40,-7
+ 1986: -39,-9
+ 1987: -39,-3
+ 1988: -39,3
+ 2218: 1,13
+ 2219: 0,14
+ 2220: 0,15
+ 2221: 0,15
+ 2222: 1,15
+ 2223: 3,14
+ 2224: 5,15
+ 2225: 7,13
+ 2226: 9,14
+ 2227: 11,12
+ 2228: 11,14
+ 2229: 5,17
+ 2230: 4,17
+ 2231: 4,18
+ 2232: -4,17
+ 2233: -4,19
+ 2234: -3,20
+ 2235: -2,17
+ 2272: 3,19
+ 2273: 4,20
+ 2275: -4,21
+ 2276: -3,22
+ 2278: -2,21
+ 2279: -2,20
+ 2281: -5,28
+ 2283: -11,28
+ 2284: -12,29
+ 2285: -13,30
+ 2286: -13,31
+ 2287: -12,32
+ 2288: -22,31
+ 2289: -30,30
+ 2292: 51,-38
+ 2293: 51,-38
+ 2302: 49,-39
+ 2418: -52,-35
+ 2419: -52,-35
+ 2420: -52,-32
+ 2421: -49,-31
+ 2422: -49,-31
+ 2423: -48,-32
+ 2424: -48,-32
+ 2425: -45,-33
+ 2426: -45,-33
+ 2427: -45,-33
+ 2428: -46,-32
+ 2429: -46,-32
+ 2430: -46,-32
+ 2528: 28,21
+ 2529: 31,18
+ 2530: 31,12
+ 2531: 27,12
+ 2895: 44,9
+ 2896: 46,8
+ 2897: 44,10
+ 2898: 45,12
+ 3069: 37,1
+ 3070: 37,-1
+ 3071: 38,0
+ 3072: 36,0
+ 3073: 36,-1
+ 3074: 40,0
+ 3109: 46,-1
+ 3110: 46,1
+ 3111: 47,2
+ 3112: 48,1
+ 3115: 46,2
+ 3116: 40,2
+ 3128: 49,6
+ 3129: 48,7
+ 3132: 41,8
+ 3133: 40,9
+ 3134: 39,8
+ 3135: 41,13
+ 3136: 41,15
+ 3137: 40,16
+ 3138: 56,7
+ 3139: 41,1
+ 3140: 41,0
+ 3141: 42,2
+ 3142: 40,-1
+ 3153: 56,12
+ 3154: 54,15
+ 3155: 49,17
+ 3156: 55,7
+ 3157: 49,9
+ 3158: 50,11
+ 3159: 37,7
+ 3486: 43,-19
+ 3487: 43,-23
+ 3488: 41,-24
+ 3573: 35,-23
+ 3574: 34,-25
+ 3576: 33,-22
+ 3729: -33,8
+ 3730: -34,9
+ 3731: -35,8
+ 3732: -35,7
+ 3733: -37,8
+ 4407: 33,23
+ 4408: 34,23
+ 4409: 37,23
+ 4410: 38,25
+ 4411: 37,25
+ 4412: 19,25
+ 4413: 20,25
+ 4414: 19,23
+ 4415: 24,25
+ 4417: 28,23
+ 4418: 29,24
+ 4419: 27,23
+ 4420: 33,27
+ 4421: 33,28
+ 4423: 35,33
+ 4424: 33,38
+ 4425: 35,40
+ 4426: 35,44
+ 4427: 35,45
+ 4428: 33,46
+ 4429: 53,44
+ 4430: 53,45
+ 4431: 55,46
+ 4432: 53,48
+ 4433: 55,41
+ 4434: 53,41
+ 4435: 53,40
+ 4436: 54,39
+ 4437: 54,38
+ 4438: 53,35
+ 4439: 53,34
+ 4440: 53,28
+ 4441: 55,30
+ 4442: 55,25
+ 4443: 56,25
+ 4444: 57,24
+ 4445: 55,20
+ 4446: 54,20
+ 4447: 49,20
+ 4448: 51,25
+ 4449: 50,24
+ 4452: 50,25
+ 4453: 48,25
+ 4454: 48,24
+ 4455: 47,25
+ 4456: 46,25
+ 4632: -28,-20
+ 4634: -27,-20
+ 4636: -30,-15
+ 4637: -29,-16
+ 4638: -24,-15
+ 4639: -23,-8
+ 4640: -23,-7
+ 4641: -24,-5
+ 4642: -31,-7
+ 4643: -19,-20
+ 4660: 16,-15
+ 4661: 17,-14
+ 4662: 17,-13
+ 4663: 17,-17
+ 4664: 16,-16
+ 4665: 16,-18
+ 4666: 16,-12
+ 4667: 15,-21
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -533,7 +861,6 @@ entities:
3288: -40,42
3289: -40,44
3291: -36,30
- 3690: -39,-8
3736: 8,43
3737: 8,51
4104: 54,9
@@ -611,17 +938,6 @@ entities:
decals:
3292: -20,41
3295: -13,39
- - node:
- angle: -1.5707963267948966 rad
- color: '#FFFFFFFF'
- id: Bot
- decals:
- 3738: -7,46
- 3739: -7,47
- 3740: -7,48
- 3741: 7,46
- 3742: 7,47
- 3743: 7,48
- node:
color: '#FFFFFFFF'
id: Bot
@@ -631,14 +947,12 @@ entities:
147: 6,-26
184: -2,-45
185: 12,11
- 358: -37,1
400: -27,35
401: -28,35
402: -29,35
403: -29,36
404: -28,36
405: -27,36
- 502: -15,-10
503: -32,26
566: 22,18
567: 22,19
@@ -651,7 +965,6 @@ entities:
731: -119,17
732: -98,17
1041: -4,-69
- 1066: -26,2
1221: -52,13
1222: -50,13
1264: -58,-4
@@ -669,7 +982,6 @@ entities:
1486: 30,-23
1516: -48,16
1517: -47,17
- 1691: -25,-6
1800: -19,27
1817: -27,32
1818: -28,32
@@ -683,7 +995,6 @@ entities:
1997: -42,-8
2007: -57,7
2009: -44,-4
- 2057: -40,-20
2139: -11,32
2140: -13,32
2213: 3,15
@@ -695,8 +1006,6 @@ entities:
2323: 19,-21
2339: 2,-1
2345: 3,-8
- 2349: -20,5
- 2350: -19,5
2363: -42,19
2364: -42,20
2365: 30,9
@@ -704,7 +1013,6 @@ entities:
2513: 20,16
2514: 19,16
2749: 4,-35
- 2777: -31,-19
2778: -6,-27
2779: 3,-28
2818: 45,-27
@@ -728,13 +1036,19 @@ entities:
3808: 45,1
3809: 47,17
3810: 47,18
- 3896: -13,11
3941: -5,17
3979: -56,13
3980: -54,13
4869: -31,19
4870: -31,20
4871: -31,21
+ 5045: -40,-8
+ 5065: -14,-2
+ 5094: -19,5
+ 5095: -20,5
+ 5096: -25,5
+ 5227: -25,-12
+ 5352: -14,11
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -765,11 +1079,6 @@ entities:
id: BotGreyscale
decals:
4186: 43,3
- - node:
- color: '#DE3A3AFF'
- id: BotLeft
- decals:
- 2775: -33,-21
- node:
color: '#FFFFFFFF'
id: BotLeft
@@ -790,19 +1099,15 @@ entities:
3673: 50,-11
3841: 4,-47
3897: 5,-47
+ 5047: -30,-21
+ 5069: -26,1
+ 5077: -25,-2
- node:
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
2385: 39,-6
- - node:
- color: '#DE3A3AFF'
- id: BotRight
- decals:
- 2772: -35,-17
- 2773: -35,-18
- 2774: -35,-19
- 2776: -35,-20
+ 5078: -25,-1
- node:
color: '#FFFFFFFF'
id: BotRight
@@ -817,8 +1122,9 @@ entities:
2748: 4,-36
3205: 6,-37
3300: -15,46
- 3344: -35,5
- 3872: -28,2
+ 5048: -24,-21
+ 5070: -28,1
+ 5225: -29,-12
- node:
color: '#FF8FC9FF'
id: BotRightGreyscale
@@ -828,39 +1134,16 @@ entities:
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 3759: -29,-1
- 3760: -29,0
- 3761: -29,1
- 3774: 7,34
- 3775: 7,35
- 3776: 7,36
- 3777: 8,36
- 3778: 8,34
- 3779: 8,35
- - node:
- color: '#79150096'
- id: Box
- decals:
- 1888: -24,-12
- 1889: -24,-13
- - node:
- color: '#9FED5896'
- id: Box
- decals:
- 1887: -30,-8
- - node:
- color: '#EFB341FF'
- id: Box
- decals:
- 1885: -30,-13
+ 5067: -29,-1
+ 5068: -29,0
+ 5083: -29,-2
+ 5226: -29,-13
- node:
color: '#FFFFFFFF'
id: Box
decals:
1593: 38,6
1594: 38,10
- 2012: -26,0
- 2013: -28,0
3842: 5,-45
3843: 4,-45
4874: 1,25
@@ -869,11 +1152,8 @@ entities:
4877: 1,23
4879: -1,23
4880: 0,23
- - node:
- color: '#52B4E996'
- id: BoxGreyscale
- decals:
- 1886: -30,-12
+ 5079: -28,-1
+ 5080: -26,-1
- node:
color: '#DE3A3A96'
id: BoxGreyscale
@@ -951,7 +1231,6 @@ entities:
decals:
3008: 21,1
3019: 23,1
- 3773: 6,37
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerSw
@@ -965,9 +1244,6 @@ entities:
2959: -115,13
3011: 23,0
3275: 37,18
- 3770: 6,34
- 3771: 6,35
- 3772: 6,36
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -1019,16 +1295,12 @@ entities:
color: '#52B4E996'
id: BrickTileSteelCornerNe
decals:
- 1878: -34,-10
- 2025: -20,-5
- 2026: -20,-5
3681: 51,-22
- node:
color: '#9FED5896'
id: BrickTileSteelCornerNe
decals:
1529: -3,-26
- 1875: -34,-7
- node:
color: '#D381C996'
id: BrickTileSteelCornerNe
@@ -1038,20 +1310,10 @@ entities:
1907: -45,0
1942: -42,-4
1989: -40,12
- - node:
- color: '#DE3A3A96'
- id: BrickTileSteelCornerNe
- decals:
- 1717: -19,-16
- 1865: -19,-10
- 1866: -19,-13
- node:
color: '#52B4E996'
id: BrickTileSteelCornerNw
decals:
- 1877: -35,-10
- 2027: -19,-5
- 2028: -19,-5
3675: 47,-22
- node:
color: '#9FED5896'
@@ -1059,7 +1321,6 @@ entities:
decals:
1531: -5,-26
1532: -8,-27
- 1876: -35,-7
- node:
color: '#D381C996'
id: BrickTileSteelCornerNw
@@ -1068,26 +1329,11 @@ entities:
1938: -46,-4
1990: -43,12
3968: -57,14
- - node:
- color: '#DE3A3A96'
- id: BrickTileSteelCornerNw
- decals:
- 1718: -21,-16
- 1867: -20,-10
- 1868: -20,-13
- node:
color: '#52B4E996'
id: BrickTileSteelCornerSe
decals:
- 1880: -34,-11
- 2031: -20,-4
- 2032: -20,-4
3679: 51,-24
- - node:
- color: '#9FED5896'
- id: BrickTileSteelCornerSe
- decals:
- 1873: -34,-8
- node:
color: '#D381C996'
id: BrickTileSteelCornerSe
@@ -1098,26 +1344,11 @@ entities:
1945: -42,-9
1992: -40,11
2011: -44,-11
- - node:
- color: '#DE3A3A96'
- id: BrickTileSteelCornerSe
- decals:
- 1720: -19,-17
- 1871: -19,-14
- 1872: -19,-11
- node:
color: '#52B4E996'
id: BrickTileSteelCornerSw
decals:
- 1879: -35,-11
- 2029: -19,-4
- 2030: -19,-4
3680: 47,-24
- - node:
- color: '#9FED5896'
- id: BrickTileSteelCornerSw
- decals:
- 1874: -35,-8
- node:
color: '#D381C996'
id: BrickTileSteelCornerSw
@@ -1129,13 +1360,6 @@ entities:
1932: -46,-11
1991: -43,11
3966: -57,11
- - node:
- color: '#DE3A3A96'
- id: BrickTileSteelCornerSw
- decals:
- 1719: -21,-17
- 1869: -20,-14
- 1870: -20,-11
- node:
color: '#D381C996'
id: BrickTileSteelInnerNe
@@ -1280,7 +1504,6 @@ entities:
1643: -8,-18
1644: -9,-18
1650: -6,-18
- 1721: -20,-16
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineN
@@ -1327,7 +1550,6 @@ entities:
1645: -6,-19
1646: -7,-19
1647: -8,-19
- 1722: -20,-17
- node:
color: '#FFFFFFFF'
id: BrickTileSteelLineS
@@ -1433,6 +1655,12 @@ entities:
decals:
2719: 8,-28
2740: 5,-39
+ 5005: -34,-10
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 5000: -34,-6
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNe
@@ -1446,18 +1674,18 @@ entities:
id: BrickTileWhiteCornerNe
decals:
2042: -41,-20
- 3345: -33,4
- 3347: -31,1
- node:
- color: '#DE3A3A96'
+ color: '#8C347F96'
id: BrickTileWhiteCornerNe
decals:
- 1698: -24,-19
+ 5017: -19,-10
- node:
- color: '#EFB34141'
+ color: '#DE3A3A96'
id: BrickTileWhiteCornerNe
decals:
- 1881: -34,-13
+ 5211: -26,-9
+ 5217: -25,-11
+ 5244: -22,-4
- node:
color: '#EFD54193'
id: BrickTileWhiteCornerNe
@@ -1474,12 +1702,23 @@ entities:
id: BrickTileWhiteCornerNe
decals:
1827: -15,29
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 5010: -19,-6
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerNw
decals:
2720: 3,-28
2739: 3,-39
+ 5006: -35,-10
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 4999: -35,-6
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerNw
@@ -1493,22 +1732,23 @@ entities:
id: BrickTileWhiteCornerNw
decals:
2043: -47,-20
- 3346: -35,4
- node:
- color: '#D381C996'
+ color: '#8C347F96'
id: BrickTileWhiteCornerNw
decals:
- 1229: -47,16
+ 5018: -20,-10
- node:
- color: '#DE3A3A96'
+ color: '#D381C996'
id: BrickTileWhiteCornerNw
decals:
- 1697: -31,-19
+ 1229: -47,16
- node:
- color: '#EFB34141'
+ color: '#DE3A3A96'
id: BrickTileWhiteCornerNw
decals:
- 1882: -35,-13
+ 5210: -28,-9
+ 5218: -29,-11
+ 5253: -32,-4
- node:
color: '#EFCC4196'
id: BrickTileWhiteCornerNw
@@ -1525,6 +1765,11 @@ entities:
decals:
1791: -23,32
1811: -31,32
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteCornerNw
+ decals:
+ 5009: -20,-6
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerNw
@@ -1538,6 +1783,12 @@ entities:
2726: 5,-33
2732: 8,-30
2736: 5,-40
+ 5008: -34,-12
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 4998: -34,-8
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSe
@@ -1550,17 +1801,17 @@ entities:
id: BrickTileWhiteCornerSe
decals:
2044: -41,-22
- 3348: -31,-1
- node:
- color: '#DE3A3A96'
+ color: '#8C347F96'
id: BrickTileWhiteCornerSe
decals:
- 1699: -24,-21
+ 5020: -19,-12
- node:
- color: '#EFB34141'
+ color: '#DE3A3A96'
id: BrickTileWhiteCornerSe
decals:
- 1883: -34,-14
+ 5220: -25,-13
+ 5282: -31,-17
- node:
color: '#EFD54193'
id: BrickTileWhiteCornerSe
@@ -1571,6 +1822,11 @@ entities:
id: BrickTileWhiteCornerSe
decals:
1788: -15,27
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 5012: -19,-8
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSe
@@ -1582,6 +1838,12 @@ entities:
decals:
2724: 3,-33
2738: 3,-40
+ 5007: -35,-12
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 4997: -35,-8
- node:
color: '#52B4E996'
id: BrickTileWhiteCornerSw
@@ -1595,17 +1857,17 @@ entities:
id: BrickTileWhiteCornerSw
decals:
2045: -47,-22
- 3349: -35,-1
- node:
- color: '#DE3A3A96'
+ color: '#8C347F96'
id: BrickTileWhiteCornerSw
decals:
- 1700: -31,-21
+ 5019: -20,-12
- node:
- color: '#EFB34141'
+ color: '#DE3A3A96'
id: BrickTileWhiteCornerSw
decals:
- 1884: -35,-14
+ 5219: -29,-13
+ 5275: -23,-17
- node:
color: '#EFCC4196'
id: BrickTileWhiteCornerSw
@@ -1623,23 +1885,22 @@ entities:
decals:
1793: -23,28
1797: -19,27
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteCornerSw
+ decals:
+ 5011: -20,-8
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteCornerSw
decals:
816: 19,11
3365: -4,-11
- - node:
- color: '#79150096'
- id: BrickTileWhiteInnerNe
- decals:
- 3354: -33,1
- node:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNe
decals:
- 1695: -29,-14
- 1738: -22,-23
+ 5216: -26,-11
- node:
zIndex: 5
color: '#EFCC4193'
@@ -1660,10 +1921,7 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteInnerNw
decals:
- 1686: -31,-6
- 1696: -25,-14
- 1736: -18,-23
- 1737: -17,-22
+ 5215: -28,-11
- node:
color: '#EFCC4196'
id: BrickTileWhiteInnerNw
@@ -1674,12 +1932,6 @@ entities:
id: BrickTileWhiteInnerSe
decals:
2729: 5,-30
- - node:
- color: '#DE3A3A96'
- id: BrickTileWhiteInnerSe
- decals:
- 1690: -29,-6
- 1862: -31,-17
- node:
zIndex: 5
color: '#EFCC4193'
@@ -1696,11 +1948,6 @@ entities:
id: BrickTileWhiteInnerSw
decals:
3670: 48,-11
- - node:
- color: '#DE3A3A96'
- id: BrickTileWhiteInnerSw
- decals:
- 1689: -25,-6
- node:
color: '#EFCC4193'
id: BrickTileWhiteInnerSw
@@ -1723,6 +1970,12 @@ entities:
2727: 5,-32
2728: 5,-31
2733: 8,-29
+ 5004: -34,-11
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteLineE
+ decals:
+ 5001: -34,-7
- node:
color: '#52B4E996'
id: BrickTileWhiteLineE
@@ -1745,23 +1998,26 @@ entities:
3664: 49,-12
3665: 49,-11
- node:
- color: '#79150096'
+ color: '#8C347F96'
id: BrickTileWhiteLineE
decals:
- 3353: -31,0
- 3360: -33,3
- 3361: -33,2
+ 5015: -19,-11
- node:
color: '#DE3A3A96'
id: BrickTileWhiteLineE
decals:
- 851: -33,-21
- 852: -33,-19
- 853: -33,-18
- 854: -33,-16
- 1671: -22,-6
- 1672: -22,-5
- 1711: -24,-20
+ 5214: -26,-10
+ 5223: -25,-12
+ 5236: -22,-12
+ 5237: -22,-11
+ 5238: -22,-10
+ 5239: -22,-9
+ 5240: -22,-8
+ 5241: -22,-7
+ 5242: -22,-6
+ 5243: -22,-5
+ 5280: -31,-14
+ 5281: -31,-15
- node:
color: '#EFCC4193'
id: BrickTileWhiteLineE
@@ -1790,6 +2046,11 @@ entities:
id: BrickTileWhiteLineE
decals:
1834: -21,30
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteLineE
+ decals:
+ 5014: -19,-7
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineE
@@ -1811,6 +2072,9 @@ entities:
id: BrickTileWhiteLineN
decals:
3666: 48,-10
+ 5305: -21,-15
+ 5306: -20,-15
+ 5307: -19,-15
- node:
color: '#79150096'
id: BrickTileWhiteLineN
@@ -1819,8 +2083,6 @@ entities:
2039: -43,-20
2040: -45,-20
2041: -46,-20
- 3359: -34,4
- 3362: -32,1
- node:
color: '#D381C996'
id: BrickTileWhiteLineN
@@ -1830,23 +2092,15 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteLineN
decals:
- 1675: -23,-3
- 1676: -24,-3
- 1677: -25,-3
- 1678: -26,-3
- 1679: -28,-3
- 1680: -29,-3
- 1681: -30,-3
- 1692: -26,-14
- 1693: -27,-14
- 1694: -28,-14
- 1708: -27,-19
- 1709: -29,-19
- 1710: -30,-19
- 1730: -19,-23
- 1731: -20,-23
- 1732: -21,-23
- 4627: -25,-19
+ 5212: -27,-9
+ 5245: -23,-4
+ 5246: -24,-4
+ 5247: -25,-4
+ 5248: -26,-4
+ 5249: -28,-4
+ 5250: -29,-4
+ 5251: -30,-4
+ 5252: -31,-4
- node:
color: '#EFB3414A'
id: BrickTileWhiteLineN
@@ -1923,9 +2177,6 @@ entities:
2035: -44,-22
2036: -45,-22
2037: -46,-22
- 3350: -34,-1
- 3351: -33,-1
- 3352: -32,-1
- node:
color: '#D381C925'
id: BrickTileWhiteLineS
@@ -1935,20 +2186,13 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteLineS
decals:
- 1687: -26,-6
- 1688: -28,-6
- 1701: -30,-21
- 1702: -29,-21
- 1703: -28,-21
- 1704: -27,-21
- 1705: -26,-21
- 1706: -25,-21
- 1856: -23,-17
- 1857: -24,-17
- 1858: -25,-17
- 1859: -27,-17
- 1860: -29,-17
- 1861: -30,-17
+ 5221: -28,-13
+ 5222: -26,-13
+ 5273: -20,-17
+ 5274: -22,-17
+ 5283: -32,-17
+ 5284: -33,-17
+ 5285: -35,-17
- node:
zIndex: 5
color: '#EFCC4193'
@@ -2003,6 +2247,12 @@ entities:
2721: 3,-29
2722: 3,-31
2723: 3,-32
+ 5003: -35,-11
+ - node:
+ color: '#43990996'
+ id: BrickTileWhiteLineW
+ decals:
+ 5002: -35,-7
- node:
color: '#52B4E996'
id: BrickTileWhiteLineW
@@ -2022,13 +2272,10 @@ entities:
3668: 48,-13
3669: 48,-14
- node:
- color: '#79150096'
+ color: '#8C347F96'
id: BrickTileWhiteLineW
decals:
- 3355: -35,0
- 3356: -35,1
- 3357: -35,2
- 3358: -35,3
+ 5016: -20,-11
- node:
color: '#D381C996'
id: BrickTileWhiteLineW
@@ -2038,18 +2285,18 @@ entities:
color: '#DE3A3A96'
id: BrickTileWhiteLineW
decals:
- 845: -35,-21
- 846: -35,-20
- 847: -35,-19
- 848: -35,-18
- 849: -35,-17
- 850: -35,-16
- 1685: -31,-5
- 1733: -17,-21
- 1734: -17,-20
- 1735: -17,-19
- 1853: -21,-20
- 1854: -21,-22
+ 5213: -28,-10
+ 5224: -29,-12
+ 5254: -32,-5
+ 5255: -32,-6
+ 5256: -32,-7
+ 5257: -32,-8
+ 5258: -32,-9
+ 5259: -32,-10
+ 5260: -32,-11
+ 5261: -32,-12
+ 5276: -23,-15
+ 5277: -23,-14
- node:
color: '#EFCC4196'
id: BrickTileWhiteLineW
@@ -2072,6 +2319,11 @@ entities:
id: BrickTileWhiteLineW
decals:
1792: -23,29
+ - node:
+ color: '#EFE54193'
+ id: BrickTileWhiteLineW
+ decals:
+ 5013: -20,-7
- node:
color: '#FFFFFFFF'
id: BrickTileWhiteLineW
@@ -2175,31 +2427,20 @@ entities:
color: '#FFFFFFFF'
id: Caution
decals:
- 1067: -27,-1
1662: -9,-21
3839: -26,32
+ 5081: -27,-2
- node:
color: '#DE3A3A96'
id: CautionGreyscale
decals:
1664: -7,-18
- - node:
- color: '#52B4E996'
- id: CheckerNESW
- decals:
- 1342: -20,-8
- 1343: -20,-7
- 1344: -19,-7
- 1345: -19,-8
- node:
color: '#D4D4D428'
id: CheckerNESW
decals:
156: 2,-46
157: 2,-45
- 159: -37,-5
- 160: -37,-4
- 161: -37,-3
- node:
color: '#D4D4D453'
id: CheckerNESW
@@ -2396,19 +2637,6 @@ entities:
339: -56,9
340: -55,9
341: -54,9
- - node:
- color: '#D4D4D406'
- id: CheckerNWSE
- decals:
- 2386: -33,-4
- 2387: -33,-3
- 2388: -34,-3
- 2389: -35,-3
- 2390: -35,-4
- 2391: -34,-4
- 2392: -35,-5
- 2393: -34,-5
- 2394: -33,-5
- node:
color: '#D4D4D428'
id: CheckerNWSE
@@ -2440,6 +2668,14 @@ entities:
decals:
1824: -16,30
1825: -17,30
+ 5097: -23,-20
+ 5098: -24,-20
+ 5099: -24,-19
+ 5100: -23,-19
+ 5101: -31,-20
+ 5102: -30,-20
+ 5103: -30,-19
+ 5104: -31,-19
- node:
color: '#EFB34196'
id: CheckerNWSE
@@ -2478,14 +2714,22 @@ entities:
2761: -58,26
2762: -59,26
2763: -60,27
+ - node:
+ color: '#9FED5896'
+ id: Delivery
+ decals:
+ 5038: -30,-8
- node:
color: '#DE3A3A96'
id: Delivery
decals:
- 2902: -32,-20
- 3363: -32,2
- 3364: -31,2
3674: 51,-21
+ 5027: -29,-19
+ 5028: -29,-18
+ 5029: -29,-17
+ 5030: -25,-19
+ 5031: -25,-18
+ 5032: -25,-17
- node:
color: '#FFFFFFFF'
id: Delivery
@@ -2564,6 +2808,27 @@ entities:
4575: 46,0
4576: 46,1
4873: -31,18
+ 4984: -17,6
+ 4985: -16,6
+ 4986: -15,6
+ 4991: -17,-22
+ 4992: -16,-22
+ 4993: -15,-22
+ 5040: -24,-8
+ 5107: -20,-21
+ 5108: -20,-20
+ 5109: -20,-19
+ 5110: -35,-20
+ 5111: -34,-20
+ 5112: -34,-19
+ 5125: -36,-20
+ 5126: -34,-18
+ 5127: -21,-18
+ 5128: -19,-18
+ 5129: -19,-22
+ 5130: -21,-22
+ 5350: 3,34
+ 5351: 0,30
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -2577,6 +2842,12 @@ entities:
decals:
3460: 31,-20
3461: 31,-18
+ 5039: -30,-9
+ - node:
+ color: '#C74EBDD6'
+ id: DeliveryGreyscale
+ decals:
+ 5042: -24,-9
- node:
color: '#D381C941'
id: DeliveryGreyscale
@@ -2621,6 +2892,13 @@ entities:
52: 18,-51
53: 17,-51
54: 17,-51
+ 126: -15,-43
+ 127: -16,-43
+ 128: -14,-43
+ 129: -16,-41
+ 130: -16,-42
+ 131: -15,-40
+ 132: -12,-42
2431: -45,-32
2432: -46,-32
2433: -46,-33
@@ -2798,26 +3076,21 @@ entities:
3862: -9,-12
3863: -11,-12
3864: -10,-12
- 126: -15,-43
- 127: -16,-43
- 128: -14,-43
- 129: -16,-41
- 130: -16,-42
- 131: -15,-40
- 132: -12,-42
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 36: 0,-3
37: 2,-2
- 3062: 37,-2
- 3063: 37,2
64: 53,-38
65: 60,-28
86: 13,11
+ 112: -16,-43
+ 113: -14,-43
+ 114: -14,-44
+ 115: -16,-42
+ 116: -16,-40
133: -51,-30
149: -39,-14
455: -59,19
@@ -2850,17 +3123,14 @@ entities:
2764: -59,26
2765: -60,26
2894: 45,9
+ 3062: 37,-2
+ 3063: 37,2
3279: -59,20
3280: -59,22
3281: -59,22
3811: -12,-16
3813: -12,-15
3854: -13,-16
- 112: -16,-43
- 113: -14,-43
- 114: -14,-44
- 115: -16,-42
- 116: -16,-40
- node:
cleanable: True
zIndex: 1
@@ -2874,361 +3144,14 @@ entities:
3494: 8,14
3855: -11,-17
3856: -11,-14
- - node:
- cleanable: True
- zIndex: 1
- color: '#FFFFFFFF'
- decals:
- 283: -23,-12
- 284: -32,-11
- 511: -38,8
- 512: -38,6
- 513: -38,5
- 514: -39,12
- 858: -33,-20
- 859: -33,-17
- 860: -32,-20
- 3069: 37,1
- 3070: 37,-1
- 3071: 38,0
- 3072: 36,0
- 3073: 36,-1
- 3074: 40,0
- 55: -7,-24
- 56: 11,-29
- 58: 13,-28
- 59: 16,-38
- 60: 21,-38
- 61: 37,-22
- 62: 44,-37
- 63: 44,-38
- 67: 30,-12
- 68: 31,-12
- 69: 33,-12
- 70: -45,9
- 71: -44,9
- 72: -45,8
- 79: -7,9
- 81: 17,12
- 82: 16,13
- 83: 17,14
- 84: 15,16
- 85: 11,11
- 89: 11,15
- 91: 1,-42
- 92: 1,-35
- 93: 15,-17
- 94: 13,-17
- 95: 17,-9
- 98: -37,0
- 100: -17,-1
- 101: -17,-2
- 102: -15,-12
- 103: -1,-24
- 104: 0,-28
- 106: 19,-30
- 135: -47,-33
- 136: -45,-35
- 137: -50,-30
- 152: -38,-13
- 153: -38,-14
- 154: -38,-18
- 155: -39,-19
- 359: 11,-21
- 360: 12,-21
- 374: 16,-9
- 409: -26,31
- 410: -27,30
- 411: -23,31
- 412: -23,29
- 413: -21,29
- 414: -18,29
- 415: -22,27
- 416: -24,30
- 417: -29,31
- 448: -16,12
- 449: -16,23
- 450: -23,24
- 451: -39,24
- 452: -42,22
- 453: -43,21
- 460: -58,20
- 461: -59,18
- 462: -60,17
- 463: -59,25
- 464: -60,24
- 465: -56,24
- 466: -57,20
- 585: 47,-1
- 586: 48,-2
- 587: 49,-2
- 588: 51,1
- 589: 50,1
- 591: 48,2
- 592: 47,0
- 597: 55,12
- 598: 54,11
- 599: 53,11
- 600: 55,13
- 601: 55,9
- 602: 49,14
- 603: 50,13
- 607: 37,4
- 608: 36,5
- 675: -22,25
- 676: -17,18
- 677: -37,4
- 678: -37,-11
- 679: -37,-15
- 681: -17,-14
- 682: -17,-7
- 683: -16,-5
- 691: -16,7
- 693: -16,4
- 694: -15,9
- 695: -16,0
- 828: -9,-25
- 829: -8,-25
- 830: -8,-25
- 835: -4,-24
- 836: -1,-25
- 895: -6,-23
- 896: -25,-23
- 897: -34,-23
- 898: -37,-24
- 1068: -10,-55
- 1069: -14,-56
- 1070: -19,-55
- 1071: -7,-54
- 1072: -2,-54
- 1073: -3,-57
- 1074: 2,-59
- 1075: -3,-64
- 1076: 0,-61
- 1077: -3,-66
- 1078: -3,-71
- 1079: -1,-73
- 1080: 2,-71
- 1081: 1,-55
- 1082: -1,-47
- 1083: 0,-45
- 1153: 15,25
- 1154: 16,27
- 1156: 38,24
- 1163: 41,20
- 1164: 52,14
- 1165: 48,18
- 1166: 49,16
- 1167: 45,7
- 1168: 20,8
- 1169: 32,7
- 1170: 34,8
- 1171: 16,8
- 1172: 5,8
- 1173: -7,9
- 1174: -8,8
- 1216: 7,-24
- 1218: 18,-28
- 1219: 21,-35
- 1220: 19,-34
- 1629: -38,9
- 1630: -39,8
- 1631: -39,7
- 1632: -39,-1
- 1641: -8,-14
- 1642: -9,-13
- 1657: -9,-16
- 1658: -8,-16
- 1659: -8,-16
- 1981: -39,-12
- 1982: -39,-8
- 1983: -40,-7
- 1984: -39,-8
- 1986: -39,-9
- 1987: -39,-3
- 1988: -39,3
- 2218: 1,13
- 2219: 0,14
- 2220: 0,15
- 2221: 0,15
- 2222: 1,15
- 2223: 3,14
- 2224: 5,15
- 2225: 7,13
- 2226: 9,14
- 2227: 11,12
- 2228: 11,14
- 2229: 5,17
- 2230: 4,17
- 2231: 4,18
- 2232: -4,17
- 2233: -4,19
- 2234: -3,20
- 2235: -2,17
- 2272: 3,19
- 2273: 4,20
- 2275: -4,21
- 2276: -3,22
- 2278: -2,21
- 2279: -2,20
- 2281: -5,28
- 2283: -11,28
- 2284: -12,29
- 2285: -13,30
- 2286: -13,31
- 2287: -12,32
- 2288: -22,31
- 2289: -30,30
- 2292: 51,-38
- 2293: 51,-38
- 2302: 49,-39
- 2418: -52,-35
- 2419: -52,-35
- 2420: -52,-32
- 2421: -49,-31
- 2422: -49,-31
- 2423: -48,-32
- 2424: -48,-32
- 2425: -45,-33
- 2426: -45,-33
- 2427: -45,-33
- 2428: -46,-32
- 2429: -46,-32
- 2430: -46,-32
- 2528: 28,21
- 2529: 31,18
- 2530: 31,12
- 2531: 27,12
- 2895: 44,9
- 2896: 46,8
- 2897: 44,10
- 2898: 45,12
- 3109: 46,-1
- 3110: 46,1
- 3111: 47,2
- 3112: 48,1
- 3115: 46,2
- 3116: 40,2
- 3128: 49,6
- 3129: 48,7
- 3132: 41,8
- 3133: 40,9
- 3134: 39,8
- 3135: 41,13
- 3136: 41,15
- 3137: 40,16
- 3138: 56,7
- 3139: 41,1
- 3140: 41,0
- 3141: 42,2
- 3142: 40,-1
- 3153: 56,12
- 3154: 54,15
- 3155: 49,17
- 3156: 55,7
- 3157: 49,9
- 3158: 50,11
- 3159: 37,7
- 3486: 43,-19
- 3487: 43,-23
- 3488: 41,-24
- 3573: 35,-23
- 3574: 34,-25
- 3576: 33,-22
- 3729: -33,8
- 3730: -34,9
- 3731: -35,8
- 3732: -35,7
- 3733: -37,8
- 4407: 33,23
- 4408: 34,23
- 4409: 37,23
- 4410: 38,25
- 4411: 37,25
- 4412: 19,25
- 4413: 20,25
- 4414: 19,23
- 4415: 24,25
- 4417: 28,23
- 4418: 29,24
- 4419: 27,23
- 4420: 33,27
- 4421: 33,28
- 4423: 35,33
- 4424: 33,38
- 4425: 35,40
- 4426: 35,44
- 4427: 35,45
- 4428: 33,46
- 4429: 53,44
- 4430: 53,45
- 4431: 55,46
- 4432: 53,48
- 4433: 55,41
- 4434: 53,41
- 4435: 53,40
- 4436: 54,39
- 4437: 54,38
- 4438: 53,35
- 4439: 53,34
- 4440: 53,28
- 4441: 55,30
- 4442: 55,25
- 4443: 56,25
- 4444: 57,24
- 4445: 55,20
- 4446: 54,20
- 4447: 49,20
- 4448: 51,25
- 4449: 50,24
- 4452: 50,25
- 4453: 48,25
- 4454: 48,24
- 4455: 47,25
- 4456: 46,25
- 4628: -24,-19
- 4631: -27,-19
- 4632: -28,-20
- 4633: -29,-19
- 4634: -27,-20
- 4635: -30,-20
- 4636: -30,-15
- 4637: -29,-16
- 4638: -24,-15
- 4639: -23,-8
- 4640: -23,-7
- 4641: -24,-5
- 4642: -31,-7
- 4643: -19,-20
- 4644: -21,-19
- 4660: 16,-15
- 4661: 17,-14
- 4662: 17,-13
- 4663: 17,-17
- 4664: 16,-16
- 4665: 16,-18
- 4666: 16,-12
- 4667: 15,-21
- 107: 19,-13
- 108: 20,-11
- 111: -1,-31
- 119: -11,-43
- 120: -13,-43
- 121: -10,-43
- 122: -9,-43
- 123: -7,-43
- 124: -6,-42
- 125: -15,-40
- node:
cleanable: True
zIndex: 1
color: '#FFFFFFFF'
id: DirtLight
decals:
- 31: -2,-3
+ 31: 50,-33
38: 3,-2
- 39: 4,-2
- 40: -1,-3
41: 11,-4
- node:
cleanable: True
@@ -3236,21 +3159,12 @@ entities:
color: '#FFFFFFFF'
id: DirtMedium
decals:
- 32: -2,-4
- 33: -3,-4
+ 32: 52,-33
+ 33: 51,-33
34: -6,-3
- 35: -4,-4
42: 11,-3
43: 5,-3
44: -4,-3
- 508: -38,7
- 509: -39,10
- 510: -39,11
- 3064: 36,-2
- 3065: 38,-2
- 3066: 36,2
- 3067: 38,2
- 3068: 37,1
57: 11,-28
66: 35,-12
78: -7,10
@@ -3258,7 +3172,8 @@ entities:
87: 12,11
88: 10,15
90: -1,-42
- 99: -37,-1
+ 117: -16,-42
+ 118: -12,-43
134: -50,-33
150: -39,-15
151: -39,-16
@@ -3267,6 +3182,9 @@ entities:
408: -25,31
458: -58,21
459: -59,25
+ 508: -38,7
+ 509: -39,10
+ 510: -39,11
582: 50,2
584: 49,0
690: -16,6
@@ -3297,17 +3215,18 @@ entities:
2700: -64,-10
2701: -62,-9
2702: -60,-12
+ 3064: 36,-2
+ 3065: 38,-2
+ 3066: 36,2
+ 3067: 38,2
+ 3068: 37,1
4405: 31,22
4406: 32,22
4416: 29,23
4450: 49,24
4451: 49,25
- 4629: -26,-19
- 4630: -28,-19
4658: 17,-16
4659: 17,-15
- 117: -16,-42
- 118: -12,-43
- node:
cleanable: True
color: '#FED83DFF'
@@ -3466,16 +3385,10 @@ entities:
color: '#DE3A3A96'
id: FullTileOverlayGreyscale
decals:
- 251: -33,-13
- 252: -33,-10
- 253: -33,-7
- 254: -21,-13
- 255: -21,-10
- 256: -21,-7
- 270: -26,-18
- 271: -28,-18
- 285: -22,-21
- 286: -22,-19
+ 5232: -33,-10
+ 5233: -33,-6
+ 5234: -21,-6
+ 5235: -21,-10
- node:
color: '#EFCC4196'
id: FullTileOverlayGreyscale
@@ -3694,11 +3607,11 @@ entities:
decals:
14: 48,-27
16: 49,-27
- 33: 51,-33
3910: 30,-33
3911: 31,-33
3912: 32,-33
3913: 33,-33
+ 5312: 51,-33
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale180
@@ -3709,11 +3622,6 @@ entities:
4357: 49,20
4358: 50,20
4359: 51,20
- - node:
- color: '#D381C93E'
- id: HalfTileOverlayGreyscale180
- decals:
- 332: -36,2
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale180
@@ -3723,6 +3631,11 @@ entities:
301: -41,13
302: -40,13
1975: -42,-11
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 5123: -34,-21
- node:
color: '#EFB34196'
id: HalfTileOverlayGreyscale180
@@ -3817,14 +3730,7 @@ entities:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale270
decals:
- 264: -32,-13
- 265: -32,-12
- 266: -32,-11
- 267: -32,-10
- 268: -32,-9
- 269: -32,-8
- 1669: -32,-14
- 1670: -32,-7
+ 5117: -21,-20
- node:
color: '#EFCC4196'
id: HalfTileOverlayGreyscale270
@@ -3901,19 +3807,12 @@ entities:
id: HalfTileOverlayGreyscale90
decals:
162: 17,-9
- 164: -37,-1
- node:
color: '#DE3A3A96'
id: HalfTileOverlayGreyscale90
decals:
- 257: -22,-13
- 258: -22,-12
- 259: -22,-11
- 260: -22,-10
- 261: -22,-9
- 262: -22,-8
- 263: -22,-7
- 1668: -22,-14
+ 5118: -19,-20
+ 5124: -33,-20
- node:
color: '#EFCC4196'
id: HalfTileOverlayGreyscale90
@@ -4063,7 +3962,6 @@ entities:
469: -1,-6
470: -1,-5
471: -1,-4
- 472: -1,-3
499: -3,1
500: -4,0
613: -74,18
@@ -4076,10 +3974,11 @@ entities:
882: -1,-16
883: -1,-15
884: -1,-14
- 885: -1,-13
886: -1,-12
887: -1,-11
888: -1,-10
+ 5093: -1,-13
+ 5327: -1,-3
- node:
color: '#52B4E92E'
id: QuarterTileOverlayGreyscale
@@ -4168,7 +4067,6 @@ entities:
1599: -39,9
1600: -39,8
1601: -39,7
- 1602: -39,6
1957: -40,-4
1958: -39,-4
1959: -39,-3
@@ -4213,7 +4111,6 @@ entities:
1434: -26,25
1435: -25,25
1436: -24,25
- 1460: -22,-23
1461: -23,-23
1462: -24,-23
1463: -25,-23
@@ -4356,20 +4253,19 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale
decals:
- 651: -17,-17
- 652: -17,-16
- 653: -17,-15
- 654: -17,-14
- 655: -17,-13
- 656: -17,-12
- 657: -17,-11
- 658: -17,-10
- 659: -17,-9
- 660: -17,-8
- 661: -17,-7
- 662: -17,-6
- 698: -18,1
- 699: -18,2
+ 5056: -18,-2
+ 5057: -18,-1
+ 5058: -18,0
+ 5131: -26,-23
+ 5132: -25,-23
+ 5133: -24,-23
+ 5134: -23,-23
+ 5135: -22,-23
+ 5152: -21,-23
+ 5153: -20,-23
+ 5154: -19,-23
+ 5155: -18,-23
+ 5156: -17,-23
- node:
color: '#EFCC4196'
id: QuarterTileOverlayGreyscale
@@ -4460,13 +4356,13 @@ entities:
decals:
13: 47,-27
23: 52,-26
- 31: 50,-33
3556: 35,-25
3557: 34,-25
3558: 33,-25
4967: 30,-25
4968: 31,-25
4969: 32,-25
+ 5313: 50,-33
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale180
@@ -4492,6 +4388,7 @@ entities:
4123: 55,6
4124: 54,6
4140: 54,5
+ 5091: 41,12
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale180
@@ -4503,9 +4400,7 @@ entities:
1448: -32,7
1449: -33,7
1450: -34,7
- 1494: -14,-2
1495: -15,-2
- 1496: -15,-3
1497: -15,-4
1498: -15,-5
1499: -15,-6
@@ -4513,7 +4408,6 @@ entities:
1501: -15,-8
1502: -15,-9
1503: -15,5
- 1504: -15,6
1505: -15,7
1507: 10,7
1508: 9,7
@@ -4614,6 +4508,23 @@ entities:
4470: 36,50
4521: 44,20
4522: 45,20
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 5173: -37,-17
+ 5174: -37,-16
+ 5175: -37,-15
+ 5176: -37,-14
+ 5177: -37,-13
+ 5178: -37,-12
+ 5179: -37,-11
+ 5180: -37,-10
+ 5181: -37,-9
+ 5182: -37,-8
+ 5183: -37,-7
+ 5184: -37,-6
+ 5185: -37,-5
- node:
color: '#EFB3414A'
id: QuarterTileOverlayGreyscale180
@@ -4701,7 +4612,7 @@ entities:
id: QuarterTileOverlayGreyscale270
decals:
15: 50,-27
- 32: 52,-33
+ 5314: 52,-33
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale270
@@ -4724,12 +4635,12 @@ entities:
1962: -39,3
1963: -39,4
1964: -40,-8
- 1965: -39,-8
1966: -39,-9
1967: -39,-10
1968: -39,-11
1969: -39,-12
1970: -40,-7
+ 4990: -39,-8
- node:
color: '#D4D4D428'
id: QuarterTileOverlayGreyscale270
@@ -4807,7 +4718,6 @@ entities:
2564: 15,19
2565: 15,20
2566: 15,21
- 2576: -17,-22
2590: -24,23
2591: -23,23
2592: -22,23
@@ -4876,8 +4786,23 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale270
decals:
- 696: -18,-1
- 697: -18,0
+ 5190: -17,-21
+ 5191: -17,-20
+ 5192: -17,-19
+ 5193: -17,-18
+ 5194: -17,-17
+ 5195: -17,-16
+ 5196: -17,-15
+ 5199: -17,-14
+ 5200: -17,-13
+ 5201: -17,-12
+ 5202: -17,-11
+ 5203: -17,-10
+ 5204: -17,-9
+ 5205: -17,-8
+ 5206: -17,-7
+ 5207: -17,-6
+ 5208: -17,-5
- node:
color: '#EFB3414A'
id: QuarterTileOverlayGreyscale270
@@ -4913,7 +4838,6 @@ entities:
865: 1,-10
866: 1,-11
867: 1,-12
- 868: 1,-13
869: 1,-14
870: 1,-15
871: 1,-16
@@ -4922,6 +4846,7 @@ entities:
874: 1,-19
875: 1,-20
876: 1,-21
+ 5092: 1,-13
- node:
color: '#52B4E92E'
id: QuarterTileOverlayGreyscale90
@@ -5055,7 +4980,6 @@ entities:
1473: 30,-23
1491: -15,1
1492: -15,0
- 1493: -14,0
1838: -15,21
1839: -15,20
1840: -15,19
@@ -5072,15 +4996,9 @@ entities:
2066: -30,-23
2067: -31,-23
2068: -32,-23
- 2069: -33,-23
- 2070: -34,-23
- 2071: -35,-23
2072: -36,-23
2073: -37,-23
2074: -37,-22
- 2075: -37,-21
- 2076: -37,-20
- 2077: -37,-19
2304: -21,9
2305: -22,9
2306: -23,9
@@ -5091,12 +5009,7 @@ entities:
2557: 17,12
2558: 17,11
2570: 17,9
- 2577: -18,-23
2578: -15,-23
- 2579: -15,-22
- 2580: -15,-21
- 2581: -15,-20
- 2582: -15,-19
2583: -15,-17
2584: -15,-16
2585: -15,-15
@@ -5158,6 +5071,9 @@ entities:
4979: 20,-23
4980: 19,-23
4981: 18,-23
+ 5062: -14,-2
+ 5063: -14,-1
+ 5064: -14,0
- node:
color: '#D4D4D437'
id: QuarterTileOverlayGreyscale90
@@ -5202,21 +5118,23 @@ entities:
color: '#DE3A3A96'
id: QuarterTileOverlayGreyscale90
decals:
- 663: -37,-17
- 664: -37,-16
- 665: -37,-15
- 666: -37,-14
- 667: -37,-13
- 668: -37,-12
- 669: -37,-11
- 670: -37,-10
- 671: -37,-9
- 672: -37,-8
- 673: -37,-7
- 674: -37,-6
1635: -8,-15
1636: -8,-14
1637: -8,-13
+ 5136: -28,-23
+ 5137: -29,-23
+ 5138: -30,-23
+ 5139: -31,-23
+ 5140: -32,-23
+ 5141: -33,-23
+ 5142: -34,-23
+ 5143: -36,-23
+ 5144: -35,-23
+ 5145: -37,-23
+ 5146: -37,-22
+ 5149: -37,-19
+ 5150: -37,-20
+ 5151: -37,-21
- node:
color: '#EFB34160'
id: QuarterTileOverlayGreyscale90
@@ -5284,18 +5202,14 @@ entities:
color: '#FFFFFFFF'
id: Rust
decals:
- 34: 10,-44
- 35: 10,-44
- 36: 11,-47
- 37: 15,-46
- 38: 16,-45
- 39: 16,-45
- 40: 18,-45
- 41: 13,-44
- 42: 13,-44
- 43: 13,-45
- 44: 18,-47
138: -45,-35
+ 5315: -6,-3
+ 5318: 2,-2
+ 5319: 3,-2
+ 5322: 11,-4
+ 5323: 11,-3
+ 5324: 5,-3
+ 5325: -4,-3
- node:
cleanable: True
color: '#80C71FFF'
@@ -5342,7 +5256,6 @@ entities:
id: StandClear
decals:
333: -40,-1
- 1729: -23,-20
1783: -22,26
- node:
color: '#D381C996'
@@ -5371,6 +5284,12 @@ entities:
decals:
296: -43,14
1974: -43,-10
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 5116: -21,-19
+ 5119: -35,-19
- node:
color: '#EFCC4196'
id: ThreeQuarterTileOverlayGreyscale
@@ -5404,6 +5323,12 @@ entities:
decals:
1955: -37,11
1973: -41,-11
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 5113: -19,-21
+ 5120: -33,-21
- node:
color: '#EFCC4196'
id: ThreeQuarterTileOverlayGreyscale180
@@ -5434,6 +5359,12 @@ entities:
294: -39,11
295: -43,13
1978: -43,-11
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 5114: -21,-21
+ 5122: -35,-21
- node:
color: '#EFCC4196'
id: ThreeQuarterTileOverlayGreyscale270
@@ -5473,6 +5404,12 @@ entities:
decals:
1954: -37,14
1977: -41,-10
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 5115: -19,-19
+ 5121: -33,-19
- node:
color: '#EFCC4196'
id: ThreeQuarterTileOverlayGreyscale90
@@ -5505,7 +5442,6 @@ entities:
color: '#FFFFFFFF'
id: WarnBox
decals:
- 2014: -25,2
3169: 12,-55
3170: -25,-36
3171: 23,-47
@@ -5515,6 +5451,8 @@ entities:
3176: 5,-64
3177: 39,-47
3302: -17,48
+ 5071: -25,1
+ 5228: -25,-13
- node:
color: '#FFFFFFFF'
id: WarnCorner
@@ -5537,21 +5475,11 @@ entities:
id: WarnCornerFlipped
decals:
4: 47,-32
- - node:
- color: '#DE3A3A96'
- id: WarnCornerGreyscaleNE
- decals:
- 1674: -22,-3
- node:
color: '#D381C996'
id: WarnCornerGreyscaleNW
decals:
1275: -58,-1
- - node:
- color: '#DE3A3A96'
- id: WarnCornerGreyscaleNW
- decals:
- 1682: -31,-3
- node:
color: '#FFFFFFFF'
id: WarnCornerNE
@@ -5578,11 +5506,11 @@ entities:
decals:
718: -30,34
861: -12,2
- 1363: -2,31
3342: -19,40
3749: -8,29
3881: -114,30
3895: -15,2
+ 5348: -2,32
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5594,11 +5522,11 @@ entities:
id: WarnCornerSmallNW
decals:
841: -8,2
- 1362: 2,31
3330: -27,38
3341: -15,40
3748: -5,29
3880: -110,30
+ 5349: 2,32
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5611,9 +5539,9 @@ entities:
decals:
1050: -2,-78
3340: -19,42
- 3762: -29,-1
3894: -15,4
- 4923: -2,36
+ 5082: -29,-2
+ 5347: -2,37
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5626,12 +5554,12 @@ entities:
decals:
727: -30,36
1049: 2,-78
- 1360: 2,36
2544: 40,-35
3329: -27,40
3339: -15,42
- 3870: -25,-1
3963: -54,6
+ 5075: -25,-2
+ 5346: 2,37
- node:
zIndex: 5
color: '#FFFFFFFF'
@@ -5643,6 +5571,9 @@ entities:
id: WarnFullGreyscale
decals:
3449: 42,-19
+ 5299: -21,-14
+ 5300: -19,-14
+ 5301: -20,-14
- node:
color: '#D381C996'
id: WarnFullGreyscale
@@ -5650,6 +5581,11 @@ entities:
1999: -58,0
3977: -56,10
3978: -55,10
+ - node:
+ color: '#DE3A3A96'
+ id: WarnFullGreyscale
+ decals:
+ 5230: -27,-14
- node:
color: '#FFFFFFFF'
id: WarnFullGreyscale
@@ -5665,6 +5601,8 @@ entities:
3258: -32,31
3259: -22,33
3260: -12,33
+ 5293: -30,-16
+ 5294: -24,-16
- node:
color: '#FFFFFFFF'
id: WarnLineE
@@ -5676,42 +5614,35 @@ entities:
862: -12,3
863: -12,4
864: -12,5
- 1353: -2,32
- 1354: -2,33
- 1355: -2,34
- 1356: -2,35
- 1744: -15,-18
1748: -37,-18
- 1752: -37,5
- 1757: -15,6
1759: -15,22
1763: 17,6
- 1765: 41,12
1773: 17,22
1774: 17,26
1775: 17,-9
1787: -21,26
- 1850: -15,-3
1894: -52,1
1895: -48,1
2113: -2,25
2268: -3,26
2269: -3,22
2845: 45,-16
- 3041: 3,34
- 3042: 3,35
- 3043: 3,36
3148: 56,15
3149: 56,14
3150: 56,13
3151: 56,12
3152: 56,11
3338: -19,41
- 3390: 1,-13
3893: -15,3
4099: 17,-22
4214: -16,33
4886: -2,23
+ 5267: -31,-13
+ 5268: -22,-13
+ 5339: -2,36
+ 5340: -2,35
+ 5341: -2,34
+ 5342: -2,33
- node:
color: '#52B4E996'
id: WarnLineGreyscaleE
@@ -5731,23 +5662,10 @@ entities:
1929: -48,-6
1931: -45,-1
1949: -42,-6
- - node:
- color: '#DE3A3A96'
- id: WarnLineGreyscaleE
- decals:
- 1673: -22,-4
- 1715: -33,-20
- 1716: -33,-17
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleE
decals:
- 1726: -23,-21
- 1727: -23,-20
- 1728: -23,-19
- 1739: -18,-21
- 1740: -18,-20
- 1741: -18,-19
1802: -15,28
1808: -25,31
2264: 6,19
@@ -5758,6 +5676,11 @@ entities:
3541: -5,-54
3889: -25,30
3939: 41,-32
+ 5105: -30,-20
+ 5262: -33,-10
+ 5263: -33,-6
+ 5289: -31,-16
+ 5292: -25,-16
- node:
color: '#52B4E996'
id: WarnLineGreyscaleN
@@ -5783,9 +5706,8 @@ entities:
color: '#DE3A3A96'
id: WarnLineGreyscaleN
decals:
- 1684: -27,-3
- 4625: -28,-19
- 4626: -26,-19
+ 5231: -27,-15
+ 5311: -27,-4
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleN
@@ -5809,6 +5731,9 @@ entities:
3526: -1,-76
4148: 53,2
4149: 54,2
+ 4987: -17,5
+ 4988: -16,5
+ 4989: -15,5
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleS
@@ -5844,18 +5769,13 @@ entities:
color: '#DE3A3A96'
id: WarnLineGreyscaleS
decals:
- 1667: -27,-6
- 1863: -26,-17
- 1864: -28,-17
+ 5229: -27,-13
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleS
decals:
- 1742: -19,-22
- 1743: -20,-22
1801: -18,27
1803: -22,28
- 1855: -21,-22
2263: 5,17
3032: 23,7
3369: 1,-21
@@ -5890,6 +5810,12 @@ entities:
4252: 54,27
4253: 55,27
4651: -11,27
+ 4995: -16,-21
+ 4996: -15,-21
+ 5209: -17,-21
+ 5286: -34,-17
+ 5287: -21,-17
+ 5288: -19,-17
- node:
color: '#52B4E996'
id: WarnLineGreyscaleW
@@ -5911,21 +5837,10 @@ entities:
id: WarnLineGreyscaleW
decals:
1930: -46,-6
- - node:
- color: '#DE3A3A96'
- id: WarnLineGreyscaleW
- decals:
- 1683: -31,-4
- 1851: -21,-21
- 4624: -31,-20
- 4645: -21,-19
- node:
color: '#FFFFFFFF'
id: WarnLineGreyscaleW
decals:
- 1723: -23,-21
- 1724: -23,-20
- 1725: -23,-19
1805: -23,30
1806: -23,31
1809: -31,30
@@ -5943,13 +5858,15 @@ entities:
4245: 19,23
4246: 19,24
4292: 19,25
+ 5106: -24,-20
+ 5264: -21,-10
+ 5265: -21,-6
+ 5290: -23,-16
+ 5291: -29,-16
- node:
color: '#FFFFFFFF'
id: WarnLineN
decals:
- 706: -26,-1
- 707: -27,-1
- 708: -28,-1
726: -31,36
738: -117,18
739: -118,18
@@ -5959,9 +5876,6 @@ entities:
1046: 0,-78
1047: 1,-78
1048: -1,-78
- 1357: -1,36
- 1358: 0,36
- 1359: 1,36
1746: -27,-25
1749: -40,-2
1753: -36,7
@@ -5987,16 +5901,19 @@ entities:
3745: -6,31
3961: -56,6
3962: -55,6
- 3985: 14,7
- 3998: -14,7
- 4100: -14,-25
- 4103: -18,7
4211: -17,32
4243: 38,23
4881: -1,24
4882: 0,24
4883: 1,24
4983: 18,-25
+ 5072: -28,-2
+ 5073: -27,-2
+ 5074: -26,-2
+ 5090: -18,7
+ 5336: 1,37
+ 5337: 0,37
+ 5338: -1,37
- node:
color: '#DE3A3A96'
id: WarnLineS
@@ -6017,22 +5934,13 @@ entities:
1051: -20,-56
1052: -20,-55
1053: -20,-54
- 1349: 2,32
- 1350: 2,33
- 1351: 2,34
- 1352: 2,35
- 1745: -17,-18
1747: -39,-18
- 1751: -39,5
- 1755: -17,6
1760: -17,22
1762: 15,6
- 1766: 39,12
1771: 15,22
1772: 15,26
1776: 15,-9
1786: -23,26
- 1849: -17,-3
1893: -54,1
1896: -50,1
2114: 2,25
@@ -6044,13 +5952,16 @@ entities:
2846: 43,-16
3328: -27,39
3334: -15,41
- 3391: -1,-13
3780: 40,-36
4098: 15,-22
4212: -18,33
4887: 2,23
- 4921: -3,35
- 4922: -3,36
+ 5266: -32,-13
+ 5269: -23,-13
+ 5332: 2,33
+ 5333: 2,34
+ 5334: 2,35
+ 5335: 2,36
- node:
color: '#DE3A3A96'
id: WarnLineW
@@ -6076,9 +5987,6 @@ entities:
745: -62,40
746: -63,40
747: -64,40
- 1346: -1,31
- 1347: 0,31
- 1348: 1,31
1536: -58,2
1537: -59,2
1538: -60,2
@@ -6116,7 +6024,6 @@ entities:
3747: -6,29
3764: 4,37
3765: 5,37
- 3766: 6,37
3767: -4,37
3768: -5,37
3769: -6,37
@@ -6124,10 +6031,6 @@ entities:
3877: -113,30
3878: -112,30
3879: -111,30
- 3984: 14,9
- 3999: -14,9
- 4101: -14,-23
- 4102: -18,9
4137: 58,3
4187: 57,3
4213: -17,34
@@ -6136,6 +6039,14 @@ entities:
4889: 0,24
4890: 1,24
4982: 18,-23
+ 5089: -18,9
+ 5308: -35,-15
+ 5309: -34,-15
+ 5310: -33,-15
+ 5330: 6,37
+ 5343: -1,32
+ 5344: 0,32
+ 5345: 1,32
- node:
angle: -3.141592653589793 rad
color: '#FFFFFFFF'
@@ -6208,28 +6119,49 @@ entities:
id: WoodTrimThinCornerNe
decals:
3580: -12,-51
+ 5353: -12,15
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNw
decals:
3579: -15,-51
+ 5354: -8,15
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 5356: -12,19
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 5355: -8,19
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNe
+ decals:
+ 5373: -13,15
+ 5374: -12,14
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerNw
decals:
- 1207: -7,14
+ 5375: -8,14
+ 5376: -7,15
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSe
decals:
- 1197: -12,19
3695: 10,-27
+ 5371: -12,20
+ 5372: -13,19
- node:
color: '#FFFFFFFF'
id: WoodTrimThinInnerSw
decals:
827: -23,-27
- 1202: -7,19
+ 5369: -7,19
+ 5370: -8,20
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineE
@@ -6252,10 +6184,6 @@ entities:
820: -24,-30
821: -24,-29
822: -24,-28
- 1193: -12,15
- 1194: -12,16
- 1195: -12,17
- 1196: -12,18
2023: -24,-27
2048: -46,-16
2324: 24,-21
@@ -6268,6 +6196,9 @@ entities:
3692: 10,-29
3693: 10,-28
3844: 26,-16
+ 5357: -13,16
+ 5358: -13,17
+ 5359: -13,18
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineN
@@ -6278,27 +6209,14 @@ entities:
824: -25,-28
825: -26,-28
826: -27,-28
- 1186: -7,19
- 1187: -8,19
- 1188: -9,19
- 1189: -10,19
- 1190: -11,19
- 1191: -12,19
1192: -13,19
1208: -8,14
- 1209: -9,14
- 1210: -10,14
- 1211: -11,14
1279: 17,-38
1280: 16,-38
1281: 18,-38
1282: 19,-38
1283: 20,-38
1284: 21,-38
- 2019: -20,-1
- 2020: -21,-1
- 2021: -22,-1
- 2022: -23,-1
2024: -23,-28
2054: -41,9
2055: -44,9
@@ -6315,6 +6233,13 @@ entities:
3577: -15,-53
3581: -13,-51
3582: -14,-51
+ 5052: -23,-2
+ 5053: -22,-2
+ 5054: -21,-2
+ 5055: -20,-2
+ 5363: -11,14
+ 5364: -10,14
+ 5365: -9,14
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -6324,14 +6249,6 @@ entities:
797: -5,-3
798: -7,-3
799: -8,-3
- 1198: -11,19
- 1199: -10,19
- 1200: -9,19
- 1201: -8,19
- 2015: -20,2
- 2016: -21,2
- 2017: -22,2
- 2018: -23,2
2046: -47,-16
2047: -46,-16
2053: -41,7
@@ -6351,6 +6268,12 @@ entities:
3703: 19,-27
3704: 20,-27
3705: 21,-27
+ 5049: -23,1
+ 5050: -22,1
+ 5051: -21,1
+ 5366: -11,20
+ 5367: -10,20
+ 5368: -9,20
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
@@ -6368,11 +6291,10 @@ entities:
778: -23,21
794: -6,-5
811: -42,8
- 1203: -7,18
- 1204: -7,17
- 1205: -7,16
- 1206: -7,15
3584: -15,-52
+ 5360: -7,16
+ 5361: -7,17
+ 5362: -7,18
- node:
cleanable: True
color: '#474F52FF'
@@ -6589,21 +6511,21 @@ entities:
-4,-5:
0: 64447
-5,-4:
- 0: 48011
+ 0: 35771
-4,-3:
0: 15295
-5,-3:
- 0: 35768
+ 0: 35771
-4,-2:
0: 13107
1: 34952
-5,-2:
- 0: 48059
+ 0: 35771
-4,-1:
0: 30515
1: 8
-5,-1:
- 0: 55483
+ 0: 56715
-4,0:
0: 64311
-3,-4:
@@ -6667,7 +6589,7 @@ entities:
1: 300
0: 60416
3,1:
- 0: 63675
+ 0: 63679
3,2:
0: 47359
3,3:
@@ -6684,18 +6606,18 @@ entities:
3,4:
0: 48056
-5,0:
- 0: 36317
+ 0: 64141
-4,1:
0: 62395
-5,1:
- 0: 63679
+ 0: 63675
-4,2:
- 0: 62463
+ 0: 29695
-5,2:
0: 35071
1: 12288
-4,3:
- 0: 46079
+ 0: 45943
-5,3:
0: 47240
1: 48
@@ -6706,9 +6628,9 @@ entities:
-3,1:
0: 61695
-3,2:
- 0: 58623
+ 0: 62719
-3,3:
- 0: 65262
+ 0: 65535
-3,4:
0: 65535
-2,1:
@@ -6785,9 +6707,9 @@ entities:
-4,-6:
0: 46079
-5,-6:
- 0: 64511
+ 0: 47871
-5,-5:
- 0: 47615
+ 0: 47803
-4,-9:
0: 19921
-3,-8:
@@ -7017,30 +6939,30 @@ entities:
1: 17
0: 62668
-8,-6:
- 0: 57599
+ 0: 61695
-9,-7:
0: 61440
-9,-6:
0: 57599
-8,-5:
- 0: 61679
+ 0: 47359
-9,-5:
- 0: 61166
+ 0: 58607
-8,-4:
- 0: 32750
+ 0: 46015
-7,-7:
0: 63726
-7,-6:
0: 61695
-7,-5:
- 0: 62975
+ 0: 65535
-7,-9:
0: 65160
1: 2
-7,-8:
0: 61152
-7,-4:
- 0: 4095
+ 0: 62207
-6,-8:
0: 48057
-6,-7:
@@ -7048,50 +6970,50 @@ entities:
-6,-6:
0: 63743
-6,-5:
- 0: 45307
+ 0: 59647
-6,-9:
0: 65280
1: 6
-6,-4:
- 0: 63295
+ 0: 28399
-9,-4:
- 0: 58894
+ 0: 3822
-8,-3:
- 0: 16183
+ 0: 29691
-9,-3:
- 0: 3680
+ 0: 3694
-8,-2:
- 0: 61047
+ 0: 65527
-9,-2:
- 0: 57574
+ 0: 3694
-8,-1:
- 0: 45807
+ 0: 47903
-9,-1:
- 0: 57582
+ 0: 61038
-8,0:
- 0: 3003
+ 0: 9131
-7,-3:
- 0: 32631
+ 0: 30719
-7,-2:
- 0: 65319
+ 0: 65520
-7,-1:
- 0: 62207
+ 0: 65327
-7,0:
- 0: 4095
+ 0: 255
-6,-3:
- 0: 28519
+ 0: 32382
-6,-2:
- 0: 30711
+ 0: 32639
-6,-1:
- 0: 58495
+ 0: 60999
-6,0:
- 0: 3822
+ 0: 57582
-9,0:
- 0: 61166
+ 0: 60942
-8,1:
- 0: 61683
+ 0: 61694
-9,1:
- 0: 61679
+ 0: 61684
-8,2:
0: 45311
-9,2:
@@ -7101,7 +7023,7 @@ entities:
-9,3:
0: 61182
-7,1:
- 0: 62192
+ 0: 62143
-7,2:
0: 65279
-7,3:
@@ -7111,7 +7033,7 @@ entities:
-7,4:
0: 65535
-6,1:
- 0: 61694
+ 0: 61695
-6,2:
0: 12543
1: 32768
@@ -7249,11 +7171,11 @@ entities:
1: 17
0: 57344
-10,-6:
- 0: 65519
- -10,-5:
- 0: 61167
+ 0: 65263
-10,-9:
0: 61661
+ -10,-5:
+ 0: 61166
-10,-4:
0: 65262
-9,-9:
@@ -7945,7 +7867,7 @@ entities:
-3,7:
0: 46079
-3,8:
- 0: 48027
+ 0: 15259
-2,5:
0: 37819
-2,6:
@@ -7953,7 +7875,7 @@ entities:
-2,7:
0: 61695
-2,8:
- 0: 46079
+ 0: 4095
-1,5:
0: 64511
-1,6:
@@ -7961,7 +7883,7 @@ entities:
-1,7:
0: 53503
-1,8:
- 0: 64733
+ 0: 52701
0,4:
0: 65520
0,5:
@@ -8005,7 +7927,7 @@ entities:
1,7:
0: 65535
1,8:
- 0: 65295
+ 0: 30479
2,4:
0: 63344
2,5:
@@ -8018,8 +7940,8 @@ entities:
0: 4369
1: 19524
2,8:
- 0: 4353
- 1: 52292
+ 0: 30465
+ 1: 4
3,5:
0: 34955
1: 8960
@@ -8229,8 +8151,10 @@ entities:
0: 61567
-13,6:
0: 61440
+ -12,7:
+ 1: 240
-13,7:
- 1: 39312
+ 1: 39408
-12,8:
4: 12
5: 3072
@@ -8239,12 +8163,12 @@ entities:
-11,6:
0: 4607
1: 49152
+ -11,7:
+ 1: 17532
-11,8:
4: 1
1: 17476
5: 256
- -11,7:
- 1: 17484
-10,5:
0: 62139
-10,6:
@@ -8438,23 +8362,23 @@ entities:
0,14:
1: 65456
-3,9:
- 0: 15283
+ 0: 15291
-3,10:
0: 13115
1: 34944
-2,9:
- 0: 7672
+ 0: 7677
-2,10:
0: 4433
1: 57902
-1,9:
- 0: 287
+ 0: 511
1: 49152
-1,10:
1: 61727
0,9:
- 0: 15
- 1: 28928
+ 0: 255
+ 1: 28672
0,10:
1: 61727
0,11:
@@ -8587,15 +8511,15 @@ entities:
-5,16:
1: 30068
1,9:
- 0: 1919
+ 0: 2039
1,10:
1: 63903
0: 64
2,9:
- 0: 4097
- 1: 43916
+ 0: 4915
+ 1: 34944
2,10:
- 0: 4369
+ 0: 4371
1: 43680
3,9:
1: 65255
@@ -9550,15 +9474,10 @@ entities:
id: docking43669
localAnchorB: -47.5,-40
localAnchorA: 0.5,0
- damping: 1560.5402
- stiffness: 14007.377
+ damping: 1560.5565
+ stiffness: 14007.522
- proto: AcousticGuitarInstrument
entities:
- - uid: 2133
- components:
- - type: Transform
- pos: -27.45107,-11.577459
- parent: 60
- uid: 6610
components:
- type: Transform
@@ -9571,6 +9490,11 @@ entities:
- type: Transform
pos: 31.477634,-79.4623
parent: 60
+ - uid: 14226
+ components:
+ - type: Transform
+ pos: -23.537233,-10.44661
+ parent: 60
- proto: ActionToggleInternals
entities:
- uid: 13159
@@ -9597,48 +9521,116 @@ entities:
container: 18476
- proto: AirAlarm
entities:
- - uid: 249
+ - uid: 12
components:
- type: Transform
- pos: -24.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-15.5
parent: 60
- type: DeviceList
devices:
- - 21734
- - 21733
- - 5565
- - 5562
- - 8466
- - 5563
- - 6307
- - 6308
- - 1902
- - 1651
- - 1893
- - 1682
- - 5454
- - 1665
- - 1850
- - 1669
- - 1846
- - 1652
- - 1564
- - 1838
- - 6759
- - 7790
- - uid: 2103
+ - 21615
+ - 1771
+ - 1787
+ - 5952
+ - 2772
+ - 21614
+ - 6018
+ - 8388
+ - uid: 57
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-20.5
+ pos: -10.5,-21.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 21505
+ - 1511
+ - 516
+ - 904
+ - 928
+ - 21495
+ - uid: 105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -11.5,1.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 109
+ - 8416
+ - 9157
+ - uid: 148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-17.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1976
+ - 1966
+ - 1974
+ - 1659
+ - 777
+ - uid: 178
+ components:
+ - type: Transform
+ pos: -29.5,-2.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1975
+ - 1983
+ - 2009
+ - uid: 231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-17.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1985
+ - 1971
+ - 157
+ - 779
+ - 778
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -5.5,14.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 11525
+ - 13248
+ - 21646
+ - uid: 1960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,1.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1645
+ - 21407
+ - 9155
+ - 788
+ - 792
+ - uid: 3204
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-21.5
parent: 60
- type: DeviceList
devices:
- - 6648
- - 8230
- - 1633
- - 1636
- - 1559
+ - 5688
+ - 5364
- uid: 4046
components:
- type: Transform
@@ -9650,6 +9642,19 @@ entities:
- 4502
- 5518
- 12511
+ - uid: 4709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-17.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1136
+ - 1133
+ - 122
+ - 788
+ - 792
- uid: 5092
components:
- type: Transform
@@ -9679,23 +9684,16 @@ entities:
- 5065
- 7485
- 7463
- - uid: 5224
+ - uid: 5933
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-13.5
parent: 60
- type: DeviceList
devices:
- - 780
- - 7721
- - 1017
- - 21614
- - 491
- - 8774
- - 8957
- - 6018
- - 8388
+ - 841
+ - 1845
- uid: 7065
components:
- type: Transform
@@ -9743,61 +9741,33 @@ entities:
- 21029
- 21084
- 21087
- - uid: 8260
- components:
- - type: Transform
- pos: -19.5,3.5
- parent: 60
- - type: DeviceList
- devices:
- - 6762
- - 5425
- - uid: 8265
+ - uid: 8483
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -51.5,-16.5
parent: 60
- type: DeviceList
devices:
- - 8259
- - 8269
- - uid: 8271
+ - 116
+ - 7099
+ - uid: 8516
components:
- type: Transform
- pos: -25.5,3.5
+ rot: 3.141592653589793 rad
+ pos: -44.5,-22.5
parent: 60
- type: DeviceList
devices:
- - 3197
- - 8898
+ - 8439
+ - 9150
+ - 1682
+ - 8942
- uid: 8669
components:
- type: Transform
pos: -33.5,6.5
parent: 60
- - type: DeviceList
- devices:
- - 2861
- - 8718
- - uid: 8714
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 60
- - type: DeviceList
- devices:
- - 11978
- - 9156
- - uid: 8791
- components:
- - type: Transform
- pos: -32.5,-1.5
- parent: 60
- - type: DeviceList
- devices:
- - 9034
- - 2791
- uid: 11464
components:
- type: Transform
@@ -9858,16 +9828,6 @@ entities:
devices:
- 16635
- 16634
- - uid: 16145
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-17.5
- parent: 60
- - type: DeviceList
- devices:
- - 8578
- - 856
- uid: 19868
components:
- type: Transform
@@ -9896,9 +9856,6 @@ entities:
- 428
- 426
- 21485
- - 18464
- - 18463
- - 18462
- uid: 21488
components:
- type: Transform
@@ -9909,9 +9866,6 @@ entities:
devices:
- 18609
- 21486
- - 18464
- - 18463
- - 18462
- 18426
- 18425
- 18429
@@ -9928,19 +9882,6 @@ entities:
- 18257
- 21491
- 18608
- - uid: 21496
- components:
- - type: Transform
- pos: -6.5,-21.5
- parent: 60
- - type: DeviceList
- devices:
- - 670
- - 672
- - 671
- - 21495
- - 928
- - 904
- uid: 21499
components:
- type: Transform
@@ -9957,27 +9898,6 @@ entities:
- 673
- 1455
- 1456
- - uid: 21504
- components:
- - type: Transform
- pos: -24.5,-21.5
- parent: 60
- - type: DeviceList
- devices:
- - 21505
- - 112
- - 81
- - 63
- - 121
- - 836
- - 158
- - 11338
- - 11339
- - 11340
- - 1511
- - 516
- - 6065
- - 6087
- uid: 21507
components:
- type: Transform
@@ -9991,30 +9911,11 @@ entities:
- 6098
- 6002
- 5962
- - 6093
- - 5961
- 15846
- 2585
- 17493
- - uid: 21509
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-5.5
- parent: 60
- - type: DeviceList
- devices:
- - 11340
- - 11339
- - 11338
- - 18859
- - 18858
- - 18857
- - 21511
- - 792
- - 788
- - 1133
- - 1136
+ - 1660
+ - 1581
- uid: 21515
components:
- type: Transform
@@ -10071,9 +9972,6 @@ entities:
devices:
- 13106
- 13107
- - 13148
- - 13149
- - 13150
- 13151
- 13152
- 13153
@@ -10088,9 +9986,6 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 13148
- - 13149
- - 13150
- 21547
- 13073
- 19403
@@ -10316,20 +10211,14 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 8957
- - 8774
- - 491
- - 9468
- - 5623
- - 8168
- - 6098
- - 6097
- - 5940
- - 21615
+ - 8388
+ - 6018
+ - 21614
- 2772
- 5952
- 1787
- 1771
+ - 21615
- uid: 21616
components:
- type: Transform
@@ -10442,18 +10331,6 @@ entities:
- 6593
- 6785
- 6661
- - uid: 21645
- components:
- - type: Transform
- pos: -8.5,23.5
- parent: 60
- - type: DeviceList
- devices:
- - 21646
- - 14318
- - 14312
- - 14303
- - 14302
- uid: 21647
components:
- type: Transform
@@ -10903,19 +10780,28 @@ entities:
parent: 60
- proto: AirlockArmoryGlassLocked
entities:
- - uid: 1467
+ - uid: 342
components:
- type: MetaData
- name: Warden Office
+ name: Ready Room
- type: Transform
- pos: -26.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-15.5
parent: 60
- - uid: 19786
+ - uid: 8471
+ components:
+ - type: Transform
+ pos: -26.5,-2.5
+ parent: 60
+- proto: AirlockArmoryLocked
+ entities:
+ - uid: 813
components:
- type: MetaData
- name: Secure Armory
+ name: Panopticon
- type: Transform
- pos: -26.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-13.5
parent: 60
- proto: AirlockAtmosphericsGlass
entities:
@@ -11012,35 +10898,35 @@ entities:
parent: 60
- proto: AirlockBrigGlassLocked
entities:
- - uid: 144
+ - uid: 242
components:
- - type: MetaData
- name: Brig Medbay
- type: Transform
- pos: -20.5,-3.5
+ pos: -20.5,-21.5
parent: 60
- - type: PaintableAirlock
- department: Medical
- - uid: 244
+ - uid: 243
components:
- - type: MetaData
- name: Security Brig
- type: Transform
- pos: -27.5,-17.5
+ pos: -20.5,-17.5
parent: 60
- - uid: 1487
+ - uid: 245
components:
- - type: MetaData
- name: Security Front Desk
- type: Transform
- pos: -21.5,-15.5
+ pos: -18.5,-17.5
parent: 60
- - uid: 7901
+ - uid: 1919
components:
- - type: MetaData
- name: Security Brig
- type: Transform
- pos: -25.5,-17.5
+ pos: -33.5,-17.5
+ parent: 60
+ - uid: 8297
+ components:
+ - type: Transform
+ pos: -35.5,-19.5
+ parent: 60
+ - uid: 8454
+ components:
+ - type: Transform
+ pos: -18.5,-21.5
parent: 60
- proto: AirlockBrigLocked
entities:
@@ -11065,6 +10951,13 @@ entities:
- type: Transform
pos: -49.5,-22.5
parent: 60
+ - uid: 14225
+ components:
+ - type: MetaData
+ name: Interrogation
+ - type: Transform
+ pos: -31.5,-2.5
+ parent: 60
- proto: AirlockCaptainGlassLocked
entities:
- uid: 18369
@@ -11310,6 +11203,11 @@ entities:
parent: 60
- proto: AirlockEngineeringGlassLocked
entities:
+ - uid: 4260
+ components:
+ - type: Transform
+ pos: 23.5,3.5
+ parent: 60
- uid: 5859
components:
- type: MetaData
@@ -11427,6 +11325,13 @@ entities:
- type: Transform
pos: -5.5,-49.5
parent: 60
+ - uid: 11660
+ components:
+ - type: MetaData
+ name: Security Substation
+ - type: Transform
+ pos: -33.5,4.5
+ parent: 60
- uid: 12015
components:
- type: Transform
@@ -11468,12 +11373,6 @@ entities:
- type: Transform
pos: 3.5,24.5
parent: 60
- - uid: 18549
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,3.5
- parent: 60
- proto: AirlockExternalAtmosphericsLocked
entities:
- uid: 12194
@@ -11524,8 +11423,35 @@ entities:
linkedPorts:
23569:
- DoorStatus: DoorBolt
+ - uid: 23701
+ components:
+ - type: Transform
+ pos: 7.5,37.5
+ parent: 60
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23702:
+ - DoorStatus: DoorBolt
+ - uid: 23702
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 60
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23701:
+ - DoorStatus: DoorBolt
- proto: AirlockExternalGlass
entities:
+ - uid: 97
+ components:
+ - type: Transform
+ pos: -47.5,27.5
+ parent: 60
- uid: 1543
components:
- type: Transform
@@ -11544,6 +11470,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 32.5,47.5
parent: 60
+ - uid: 4214
+ components:
+ - type: Transform
+ pos: -53.5,27.5
+ parent: 60
- uid: 4237
components:
- type: Transform
@@ -12316,26 +12247,6 @@ entities:
parent: 60
- proto: AirlockGlass
entities:
- - uid: 51
- components:
- - type: MetaData
- name: Security Lobby
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-18.5
- parent: 60
- - type: PaintableAirlock
- department: Security
- - uid: 84
- components:
- - type: MetaData
- name: Security Lobby
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-20.5
- parent: 60
- - type: PaintableAirlock
- department: Security
- uid: 211
components:
- type: Transform
@@ -12376,6 +12287,11 @@ entities:
- type: Transform
pos: 36.5,-23.5
parent: 60
+ - uid: 3149
+ components:
+ - type: Transform
+ pos: -39.5,-20.5
+ parent: 60
- uid: 3987
components:
- type: Transform
@@ -12391,6 +12307,36 @@ entities:
- type: Transform
pos: 1.5,-43.5
parent: 60
+ - uid: 4553
+ components:
+ - type: Transform
+ pos: -16.5,6.5
+ parent: 60
+ - uid: 4554
+ components:
+ - type: Transform
+ pos: -16.5,-21.5
+ parent: 60
+ - uid: 4555
+ components:
+ - type: Transform
+ pos: -15.5,-21.5
+ parent: 60
+ - uid: 4561
+ components:
+ - type: Transform
+ pos: -14.5,-21.5
+ parent: 60
+ - uid: 4566
+ components:
+ - type: Transform
+ pos: -14.5,6.5
+ parent: 60
+ - uid: 4567
+ components:
+ - type: Transform
+ pos: -15.5,6.5
+ parent: 60
- uid: 5001
components:
- type: Transform
@@ -12701,12 +12647,13 @@ entities:
parent: 60
- proto: AirlockHeadOfSecurityGlassLocked
entities:
- - uid: 1729
+ - uid: 8467
components:
- type: MetaData
- name: Head of Security Office
+ name: HoS Office
- type: Transform
- pos: -21.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-2.5
parent: 60
- proto: AirlockHydroGlassLocked
entities:
@@ -12829,18 +12776,6 @@ entities:
- type: Transform
pos: -10.5,26.5
parent: 60
-- proto: AirlockMaintGlass
- entities:
- - uid: 11660
- components:
- - type: Transform
- pos: -53.5,27.5
- parent: 60
- - uid: 11663
- components:
- - type: Transform
- pos: -47.5,27.5
- parent: 60
- proto: AirlockMaintGlassLocked
entities:
- uid: 3415
@@ -12913,13 +12848,6 @@ entities:
parent: 60
- proto: AirlockMaintLocked
entities:
- - uid: 363
- components:
- - type: MetaData
- name: Security Maintenance
- - type: Transform
- pos: -26.5,6.5
- parent: 60
- uid: 555
components:
- type: Transform
@@ -12935,6 +12863,18 @@ entities:
- type: Transform
pos: -1.5,-30.5
parent: 60
+ - uid: 1587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,5.5
+ parent: 60
+ - uid: 1637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,6.5
+ parent: 60
- uid: 1670
components:
- type: Transform
@@ -13002,6 +12942,12 @@ entities:
- type: Transform
pos: -39.5,-23.5
parent: 60
+ - uid: 4686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,3.5
+ parent: 60
- uid: 5227
components:
- type: Transform
@@ -13051,13 +12997,6 @@ entities:
- type: Transform
pos: 35.5,5.5
parent: 60
- - uid: 9151
- components:
- - type: MetaData
- name: Security Maintenance
- - type: Transform
- pos: -17.5,4.5
- parent: 60
- uid: 9620
components:
- type: Transform
@@ -13214,12 +13153,13 @@ entities:
parent: 60
- proto: AirlockMaintSecLocked
entities:
- - uid: 1847
+ - uid: 18781
components:
- type: MetaData
- name: Security Maintenance
+ name: Security Maint
- type: Transform
- pos: -29.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,3.5
parent: 60
- proto: AirlockMaintTheatreLocked
entities:
@@ -13479,21 +13419,12 @@ entities:
parent: 60
- proto: AirlockSecurityGlassLocked
entities:
- - uid: 1835
- components:
- - type: MetaData
- name: Security Locker Room
- - type: Transform
- pos: -31.5,-16.5
- parent: 60
-- proto: AirlockSecurityLawyerLocked
- entities:
- - uid: 4686
+ - uid: 1225
components:
- type: MetaData
- name: Interrogation
+ name: Ready Room
- type: Transform
- pos: -31.5,-3.5
+ pos: -23.5,-15.5
parent: 60
- proto: AirlockSecurityLocked
entities:
@@ -13502,31 +13433,17 @@ entities:
- type: Transform
pos: -8.5,-21.5
parent: 60
- - uid: 1889
- components:
- - type: MetaData
- name: Security Break Room
- - type: Transform
- pos: -35.5,4.5
- parent: 60
- - uid: 2086
+ - uid: 13881
components:
- - type: MetaData
- name: Security Break Room
- type: Transform
- pos: -30.5,-1.5
+ pos: -6.5,-16.5
parent: 60
- - uid: 8242
+ - uid: 19620
components:
- type: MetaData
- name: Security Locker Room
- - type: Transform
- pos: -31.5,-19.5
- parent: 60
- - uid: 13881
- components:
+ name: Security Maint
- type: Transform
- pos: -6.5,-16.5
+ pos: -30.5,1.5
parent: 60
- proto: AirlockServiceLocked
entities:
@@ -13663,6 +13580,59 @@ entities:
- DoorStatus: DoorBolt
- proto: AirSensor
entities:
+ - uid: 109
+ components:
+ - type: Transform
+ pos: -9.5,2.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 105
+ - uid: 122
+ components:
+ - type: Transform
+ pos: -15.5,-15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4710
+ - 4709
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: -15.5,1.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1960
+ - 1962
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: -26.5,-4.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 178
+ - 177
+ - uid: 1976
+ components:
+ - type: Transform
+ pos: -20.5,-15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1970
+ - 148
+ - uid: 1985
+ components:
+ - type: Transform
+ pos: -32.5,-15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 230
+ - 231
- uid: 2084
components:
- type: Transform
@@ -13778,7 +13748,7 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
+ - 57
- uid: 21501
components:
- type: Transform
@@ -13799,17 +13769,18 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
+ - 4191
+ - 4190
+ - 63
+ - 57
- uid: 21508
components:
- type: Transform
pos: -31.5,-23.5
parent: 60
- - uid: 21511
- components:
- - type: Transform
- pos: -15.5,-10.5
- parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21506
- uid: 21512
components:
- type: Transform
@@ -13826,6 +13797,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21514
+ - 4545
- uid: 21538
components:
- type: Transform
@@ -13937,11 +13909,25 @@ entities:
- type: Transform
pos: -37.5,7.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21613
+ - 11347
+ - 4627
+ - 21612
+ - 12
- uid: 21615
components:
- type: Transform
pos: -37.5,-15.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21613
+ - 11347
+ - 4627
+ - 21612
+ - 12
- uid: 21624
components:
- type: Transform
@@ -14003,6 +13989,9 @@ entities:
- type: Transform
pos: -7.5,13.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1229
- uid: 21648
components:
- type: Transform
@@ -14051,23 +14040,6 @@ entities:
- type: Transform
pos: -3.5,28.5
parent: 60
- - uid: 21733
- components:
- - type: Transform
- pos: -25.5,-3.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - uid: 21734
- components:
- - type: Transform
- pos: -27.5,-15.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- - 249
- uid: 21772
components:
- type: Transform
@@ -14213,6 +14185,14 @@ entities:
parent: 60
- proto: APCBasic
entities:
+ - uid: 124
+ components:
+ - type: MetaData
+ name: Security Ready Room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-21.5
+ parent: 60
- uid: 283
components:
- type: MetaData
@@ -14254,6 +14234,22 @@ entities:
rot: 3.141592653589793 rad
pos: -12.5,1.5
parent: 60
+ - uid: 1955
+ components:
+ - type: MetaData
+ name: East Security APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-12.5
+ parent: 60
+ - uid: 1956
+ components:
+ - type: MetaData
+ name: West Security APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-12.5
+ parent: 60
- uid: 2277
components:
- type: MetaData
@@ -14340,6 +14336,14 @@ entities:
currentReceiving: 69.9903
currentSupply: 70
supplyRampPosition: 0.00969696
+ - uid: 4526
+ components:
+ - type: MetaData
+ name: Library APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,14.5
+ parent: 60
- uid: 5093
components:
- type: MetaData
@@ -14416,6 +14420,14 @@ entities:
- type: Transform
pos: 10.5,-52.5
parent: 60
+ - uid: 7032
+ components:
+ - type: MetaData
+ name: Warden's Office APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-13.5
+ parent: 60
- uid: 7124
components:
- type: MetaData
@@ -14469,26 +14481,12 @@ entities:
- type: Transform
pos: 9.5,-1.5
parent: 7536
- - uid: 8244
- components:
- - type: MetaData
- name: Security Locker Room APC
- - type: Transform
- pos: -32.5,-14.5
- parent: 60
- - uid: 8684
- components:
- - type: MetaData
- name: Security Entrance APC
- - type: Transform
- pos: -24.5,-17.5
- parent: 60
- - uid: 8695
+ - uid: 8348
components:
- type: MetaData
- name: Security North APC
+ name: Interrogation APC
- type: Transform
- pos: -29.5,-1.5
+ pos: -32.5,1.5
parent: 60
- uid: 9448
components:
@@ -14497,6 +14495,11 @@ entities:
- type: Transform
pos: -44.5,15.5
parent: 60
+ - uid: 9465
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 60
- uid: 9694
components:
- type: MetaData
@@ -14576,12 +14579,12 @@ entities:
- type: Transform
pos: 51.5,15.5
parent: 60
- - uid: 14328
+ - uid: 13718
components:
- type: MetaData
- name: Library APC
+ name: Armory APC
- type: Transform
- pos: -13.5,14.5
+ pos: -24.5,-2.5
parent: 60
- uid: 14552
components:
@@ -15575,18 +15578,6 @@ entities:
- type: Transform
pos: 11.5,2.5
parent: 60
-- proto: BannerSecurity
- entities:
- - uid: 8247
- components:
- - type: Transform
- pos: -28.5,-2.5
- parent: 60
- - uid: 8248
- components:
- - type: Transform
- pos: -24.5,-2.5
- parent: 60
- proto: Barricade
entities:
- uid: 3310
@@ -15746,45 +15737,30 @@ entities:
- type: Transform
pos: 52.5,-44.5
parent: 60
- - uid: 806
- components:
- - type: Transform
- pos: -6.5,24.5
- parent: 60
- - uid: 1722
- components:
- - type: Transform
- pos: -18.5,-10.5
- parent: 60
- - uid: 1739
- components:
- - type: Transform
- pos: -18.5,-13.5
- parent: 60
- - uid: 1764
+ - uid: 309
components:
- type: Transform
- pos: -33.5,-10.5
+ pos: -34.5,-6.5
parent: 60
- - uid: 1767
+ - uid: 806
components:
- type: Transform
- pos: -33.5,-7.5
+ pos: -6.5,24.5
parent: 60
- - uid: 1857
+ - uid: 1850
components:
- type: Transform
- pos: -33.5,-13.5
+ pos: -19.5,-3.5
parent: 60
- - uid: 1888
+ - uid: 2150
components:
- type: Transform
- pos: -19.5,0.5
+ pos: 30.5,-14.5
parent: 60
- - uid: 2150
+ - uid: 2581
components:
- type: Transform
- pos: 30.5,-14.5
+ pos: -34.5,-10.5
parent: 60
- uid: 2923
components:
@@ -15846,6 +15822,11 @@ entities:
- type: Transform
pos: 3.5,-3.5
parent: 7536
+ - uid: 9223
+ components:
+ - type: Transform
+ pos: -18.5,-6.5
+ parent: 60
- uid: 13733
components:
- type: Transform
@@ -15911,6 +15892,11 @@ entities:
- type: Transform
pos: -6.5,-6.5
parent: 60
+ - uid: 19170
+ components:
+ - type: Transform
+ pos: -18.5,-10.5
+ parent: 60
- uid: 24362
components:
- type: Transform
@@ -15982,10 +15968,10 @@ entities:
parent: 60
- proto: BedsheetHOS
entities:
- - uid: 11456
+ - uid: 6117
components:
- type: Transform
- pos: -19.5,0.5
+ pos: -19.5,-3.5
parent: 60
- proto: BedsheetIan
entities:
@@ -16003,17 +15989,6 @@ entities:
- type: Transform
pos: 36.5,-16.5
parent: 60
- - uid: 1354
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-2.5
- parent: 60
- - uid: 1502
- components:
- - type: Transform
- pos: -18.5,-7.5
- parent: 60
- uid: 9005
components:
- type: Transform
@@ -16043,35 +16018,30 @@ entities:
parent: 60
- proto: BedsheetOrange
entities:
- - uid: 1717
+ - uid: 269
components:
- type: Transform
pos: -18.5,-10.5
parent: 60
- - uid: 1718
- components:
- - type: Transform
- pos: -18.5,-13.5
- parent: 60
- - uid: 1719
+ - uid: 6830
components:
- type: Transform
- pos: -33.5,-7.5
+ pos: -34.5,-10.5
parent: 60
- - uid: 1720
+ - uid: 10684
components:
- type: Transform
- pos: -33.5,-10.5
+ pos: -34.5,-6.5
parent: 60
- - uid: 1721
+ - uid: 13699
components:
- type: Transform
- pos: -33.5,-13.5
+ pos: -7.5,-12.5
parent: 60
- - uid: 13699
+ - uid: 17469
components:
- type: Transform
- pos: -7.5,-12.5
+ pos: -18.5,-6.5
parent: 60
- proto: BedsheetQM
entities:
@@ -16248,11 +16218,6 @@ entities:
- type: Transform
pos: -16.5,-43.5
parent: 60
- - uid: 12598
- components:
- - type: Transform
- pos: -55.5,0.5
- parent: 60
- uid: 13901
components:
- type: Transform
@@ -16328,50 +16293,148 @@ entities:
- type: Transform
pos: 55.5,-0.5
parent: 60
-- proto: BlastDoorBridgeOpen
+- proto: BlastDoorOpen
entities:
- - uid: 21763
+ - uid: 187
components:
- type: Transform
- pos: -0.5,-1.5
+ pos: 5.5,1.5
parent: 60
- - uid: 21764
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 5.5,0.5
+ parent: 60
+ - uid: 189
components:
- type: Transform
pos: 1.5,-1.5
parent: 60
- - uid: 21765
+ - uid: 190
components:
- type: Transform
- pos: 1.5,-8.5
+ pos: -0.5,-1.5
parent: 60
- - uid: 21766
+ - uid: 191
components:
- type: Transform
pos: -0.5,-8.5
parent: 60
- - uid: 21767
+ - uid: 206
components:
- type: Transform
- pos: 5.5,0.5
+ pos: 1.5,-8.5
parent: 60
- - uid: 21768
+ - uid: 207
components:
- type: Transform
- pos: 5.5,1.5
+ pos: -3.5,3.5
parent: 60
- - uid: 21769
+ - uid: 208
components:
- type: Transform
- pos: -4.5,0.5
+ pos: -4.5,1.5
parent: 60
- - uid: 21770
+ - uid: 1238
components:
- type: Transform
- pos: -4.5,1.5
+ pos: -17.5,-10.5
+ parent: 60
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 60
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 60
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 60
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 60
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: -35.5,-11.5
+ parent: 60
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: -35.5,-10.5
+ parent: 60
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: -35.5,-9.5
+ parent: 60
+ - uid: 1652
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
+ - uid: 1653
+ components:
+ - type: Transform
+ pos: -35.5,-7.5
+ parent: 60
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: -35.5,-6.5
+ parent: 60
+ - uid: 1656
+ components:
+ - type: Transform
+ pos: -35.5,-5.5
+ parent: 60
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: -18.5,-1.5
+ parent: 60
+ - uid: 4457
+ components:
+ - type: Transform
+ pos: -0.5,4.5
+ parent: 60
+ - uid: 4505
+ components:
+ - type: Transform
+ pos: 0.5,4.5
+ parent: 60
+ - uid: 4542
+ components:
+ - type: Transform
+ pos: 1.5,4.5
+ parent: 60
+ - uid: 4552
+ components:
+ - type: Transform
+ pos: 2.5,4.5
+ parent: 60
+ - uid: 4563
+ components:
+ - type: Transform
+ pos: 3.5,4.5
+ parent: 60
+ - uid: 4564
+ components:
+ - type: Transform
+ pos: 4.5,4.5
+ parent: 60
+ - uid: 4565
+ components:
+ - type: Transform
+ pos: -3.5,4.5
parent: 60
-- proto: BlastDoorOpen
- entities:
- uid: 5344
components:
- type: Transform
@@ -16414,6 +16477,46 @@ entities:
rot: 3.141592653589793 rad
pos: -115.5,9.5
parent: 60
+ - uid: 5432
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 60
+ - uid: 8721
+ components:
+ - type: Transform
+ pos: -2.5,4.5
+ parent: 60
+ - uid: 9679
+ components:
+ - type: Transform
+ pos: -4.5,0.5
+ parent: 60
+ - uid: 9680
+ components:
+ - type: Transform
+ pos: 4.5,3.5
+ parent: 60
+ - uid: 10622
+ components:
+ - type: Transform
+ pos: -18.5,-0.5
+ parent: 60
+ - uid: 13978
+ components:
+ - type: Transform
+ pos: -1.5,4.5
+ parent: 60
+ - uid: 14167
+ components:
+ - type: Transform
+ pos: -17.5,-16.5
+ parent: 60
+ - uid: 16425
+ components:
+ - type: Transform
+ pos: -17.5,-14.5
+ parent: 60
- proto: BlastDoorWindowsOpen
entities:
- uid: 21780
@@ -16500,34 +16603,6 @@ entities:
- 0
- type: Foldable
folded: True
-- proto: BookAtmosAirAlarms
- entities:
- - uid: 23700
- components:
- - type: Transform
- pos: -11.637694,22.589413
- parent: 60
-- proto: BookAtmosDistro
- entities:
- - uid: 23702
- components:
- - type: Transform
- pos: -6.590819,15.667539
- parent: 60
-- proto: BookAtmosVentsMore
- entities:
- - uid: 23701
- components:
- - type: Transform
- pos: -11.418944,22.495663
- parent: 60
-- proto: BookAtmosWaste
- entities:
- - uid: 23703
- components:
- - type: Transform
- pos: -6.434569,15.495664
- parent: 60
- proto: BookRandomStory
entities:
- uid: 23696
@@ -16535,11 +16610,6 @@ entities:
- type: Transform
pos: -7.5117726,20.590528
parent: 60
- - uid: 23697
- components:
- - type: Transform
- pos: -12.548856,19.605753
- parent: 60
- proto: BooksBag
entities:
- uid: 23695
@@ -16559,6 +16629,16 @@ entities:
- type: Transform
pos: -7.5,-14.5
parent: 60
+ - uid: 14161
+ components:
+ - type: Transform
+ pos: -10.5,13.5
+ parent: 60
+ - uid: 14441
+ components:
+ - type: Transform
+ pos: -8.5,12.5
+ parent: 60
- proto: BookshelfFilled
entities:
- uid: 655
@@ -16566,80 +16646,70 @@ entities:
- type: Transform
pos: -5.5,-7.5
parent: 60
- - uid: 4526
- components:
- - type: Transform
- pos: -6.5,18.5
- parent: 60
- - uid: 4527
+ - uid: 4794
components:
- type: Transform
- pos: -6.5,16.5
+ pos: -6.5,14.5
parent: 60
- uid: 6577
components:
- type: Transform
pos: -6.5,22.5
parent: 60
- - uid: 14124
+ - uid: 9009
components:
- type: Transform
- pos: -6.5,17.5
+ pos: -10.5,20.5
parent: 60
- - uid: 14126
+ - uid: 9040
components:
- type: Transform
pos: -6.5,12.5
parent: 60
- - uid: 14131
- components:
- - type: Transform
- pos: -7.5,12.5
- parent: 60
- - uid: 14137
+ - uid: 11522
components:
- type: Transform
- pos: -6.5,14.5
+ pos: -11.5,20.5
parent: 60
- - uid: 14138
+ - uid: 14155
components:
- type: Transform
pos: -7.5,14.5
parent: 60
- - uid: 14139
+ - uid: 14171
components:
- type: Transform
- pos: -12.5,20.5
+ pos: -11.5,22.5
parent: 60
- - uid: 14141
+ - uid: 14173
components:
- type: Transform
- pos: -10.5,12.5
+ pos: -11.5,13.5
parent: 60
- - uid: 14144
+ - uid: 14303
components:
- type: Transform
- pos: -10.5,14.5
+ pos: -11.5,11.5
parent: 60
- - uid: 14145
+ - uid: 16091
components:
- type: Transform
- pos: -12.5,21.5
+ pos: -10.5,22.5
parent: 60
- - uid: 14146
+ - uid: 16418
components:
- type: Transform
- pos: -12.5,18.5
+ pos: -12.5,22.5
parent: 60
- - uid: 14175
+ - uid: 16436
components:
- type: Transform
- pos: -10.5,22.5
+ pos: -7.5,12.5
parent: 60
- - uid: 14178
+ - uid: 16438
components:
- type: Transform
- pos: -12.5,22.5
+ pos: -12.5,20.5
parent: 60
- uid: 17652
components:
@@ -16748,10 +16818,10 @@ entities:
parent: 60
- proto: BoxFlashbang
entities:
- - uid: 7793
+ - uid: 23646
components:
- type: Transform
- pos: -25.31633,-11.483709
+ pos: -27.693483,-9.22786
parent: 60
- proto: BoxFolderBlack
entities:
@@ -16772,6 +16842,11 @@ entities:
parent: 60
- proto: BoxFolderBlue
entities:
+ - uid: 213
+ components:
+ - type: Transform
+ pos: -41.41446,-17.409948
+ parent: 60
- uid: 8972
components:
- type: Transform
@@ -16782,11 +16857,6 @@ entities:
- type: Transform
pos: 56.403923,-12.374418
parent: 60
- - uid: 11576
- components:
- - type: Transform
- pos: -40.52726,-17.397173
- parent: 60
- uid: 11581
components:
- type: Transform
@@ -16822,6 +16892,18 @@ entities:
- type: Transform
pos: -106.46888,28.590736
parent: 60
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 8478
+ components:
+ - type: Transform
+ pos: -49.488464,-19.519323
+ parent: 60
+ - uid: 8673
+ components:
+ - type: Transform
+ pos: -49.332214,-19.409948
+ parent: 60
- proto: BoxFolderGrey
entities:
- uid: 9534
@@ -16892,10 +16974,10 @@ entities:
parent: 60
- proto: BoxHandcuff
entities:
- - uid: 1872
+ - uid: 8517
components:
- type: Transform
- pos: -25.850195,-13.340575
+ pos: -25.770853,-6.4264956
parent: 60
- proto: BoxLatexGloves
entities:
@@ -16918,11 +17000,6 @@ entities:
parent: 60
- proto: BoxLightMixed
entities:
- - uid: 1940
- components:
- - type: Transform
- pos: -32.45523,-0.43822744
- parent: 60
- uid: 3972
components:
- type: Transform
@@ -16933,6 +17010,11 @@ entities:
- type: Transform
pos: 1.5511138,15.604638
parent: 60
+ - uid: 6704
+ components:
+ - type: Transform
+ pos: -22.497168,-20.37416
+ parent: 60
- uid: 7217
components:
- type: Transform
@@ -17011,10 +17093,15 @@ entities:
parent: 60
- proto: BoxZiptie
entities:
- - uid: 19869
+ - uid: 13148
+ components:
+ - type: Transform
+ pos: -30.92134,-20.595226
+ parent: 60
+ - uid: 21067
components:
- type: Transform
- pos: -25.488205,-11.296209
+ pos: -27.615358,-9.430985
parent: 60
- proto: BrbSign
entities:
@@ -17030,84 +17117,62 @@ entities:
parent: 60
- proto: BrigTimer
entities:
- - uid: 1468
+ - uid: 24
components:
- type: MetaData
- name: Cell 3 Timer
+ name: Cell 1 Brig Timer
- type: Transform
- pos: -32.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-4.5
parent: 60
- type: DeviceLinkSource
linkedPorts:
- 230:
+ 1483:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- - uid: 1485
- components:
- - type: MetaData
- name: Cell 4 Timer
- - type: Transform
- pos: -32.5,-8.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 268:
- - Start: Close
- Timer: AutoClose
- - Timer: Open
- - uid: 1486
+ - uid: 1853
components:
- type: MetaData
- name: Cell 5 Timer
+ name: Cell 3 Brig Timer
- type: Transform
- pos: -32.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-4.5
parent: 60
- type: DeviceLinkSource
linkedPorts:
- 243:
+ 1548:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- - uid: 1488
- components:
- - type: MetaData
- name: Cell 1 Timer
- - type: Transform
- pos: -20.5,-8.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 151:
- - Start: Close
- Timer: AutoClose
- - Timer: Open
- - uid: 6971
+ - uid: 9058
components:
- type: MetaData
- name: Medical Cell Timer
+ name: Cell 2 Brig Timer
- type: Transform
- pos: -20.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-8.5
parent: 60
- type: DeviceLinkSource
linkedPorts:
- 843:
+ 1555:
- Start: Close
- - Timer: AutoClose
- Timer: Open
- - uid: 6972
+ - Timer: AutoClose
+ - uid: 9158
components:
- type: MetaData
- name: Cell 2 Timer
+ name: Cell 4 Brig Timer
- type: Transform
- pos: -20.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-8.5
parent: 60
- type: DeviceLinkSource
linkedPorts:
- 72:
+ 1487:
- Start: Close
- - Timer: AutoClose
- Timer: Open
+ - Timer: AutoClose
- proto: BrokenBottle
entities:
- uid: 23662
@@ -17115,6 +17180,13 @@ entities:
- type: Transform
pos: -56.485756,52.334377
parent: 60
+- proto: Brutepack
+ entities:
+ - uid: 9030
+ components:
+ - type: Transform
+ pos: -19.411993,-13.214928
+ parent: 60
- proto: Bucket
entities:
- uid: 2708
@@ -17161,6 +17233,12 @@ entities:
- type: Transform
pos: -8.5,-2.5
parent: 60
+ - uid: 4551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,1.5
+ parent: 60
- uid: 4723
components:
- type: Transform
@@ -17179,6 +17257,23 @@ entities:
rot: 3.141592653589793 rad
pos: -1.5,-1.5
parent: 60
+ - uid: 8233
+ components:
+ - type: Transform
+ pos: -54.5,0.5
+ parent: 60
+ - uid: 9682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 60
+ - uid: 10671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-2.5
+ parent: 60
- uid: 13637
components:
- type: Transform
@@ -17190,11 +17285,11 @@ entities:
rot: 3.141592653589793 rad
pos: 37.5,-21.5
parent: 60
- - uid: 18968
+ - uid: 16403
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-1.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,31.5
parent: 60
- uid: 19838
components:
@@ -17207,12 +17302,6 @@ entities:
- type: Transform
pos: 25.5,5.5
parent: 60
- - uid: 23939
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-18.5
- parent: 60
- uid: 25261
components:
- type: Transform
@@ -17266,12 +17355,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,-30.5
parent: 60
- - uid: 25396
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,31.5
- parent: 60
- uid: 25397
components:
- type: Transform
@@ -17286,10 +17369,15 @@ entities:
parent: 60
- proto: ButtonFrameCautionSecurity
entities:
- - uid: 766
+ - uid: 4299
components:
- type: Transform
- pos: -20.5,-14.5
+ pos: -52.5,28.5
+ parent: 60
+ - uid: 4333
+ components:
+ - type: Transform
+ pos: -48.5,28.5
parent: 60
- uid: 5659
components:
@@ -17314,17 +17402,17 @@ entities:
parent: 60
- proto: ButtonFrameJanitor
entities:
- - uid: 21482
+ - uid: 19869
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 46.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
parent: 60
- - uid: 23940
+ - uid: 21482
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -21.5,-14.5
+ pos: 46.5,5.5
parent: 60
- uid: 25263
components:
@@ -17361,11 +17449,71 @@ entities:
- type: Transform
pos: -65.5,7.5
parent: 60
+ - uid: 69
+ components:
+ - type: Transform
+ pos: -35.5,-6.5
+ parent: 60
- uid: 70
components:
- type: Transform
pos: 1.5,-77.5
parent: 60
+ - uid: 72
+ components:
+ - type: Transform
+ pos: -32.5,-5.5
+ parent: 60
+ - uid: 76
+ components:
+ - type: Transform
+ pos: -33.5,-5.5
+ parent: 60
+ - uid: 79
+ components:
+ - type: Transform
+ pos: -31.5,-6.5
+ parent: 60
+ - uid: 81
+ components:
+ - type: Transform
+ pos: -31.5,-5.5
+ parent: 60
+ - uid: 96
+ components:
+ - type: Transform
+ pos: -23.5,-5.5
+ parent: 60
+ - uid: 112
+ components:
+ - type: Transform
+ pos: -27.5,0.5
+ parent: 60
+ - uid: 115
+ components:
+ - type: Transform
+ pos: -25.5,0.5
+ parent: 60
+ - uid: 119
+ components:
+ - type: Transform
+ pos: -29.5,-5.5
+ parent: 60
+ - uid: 151
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 60
+ - uid: 152
+ components:
+ - type: Transform
+ pos: -35.5,-5.5
+ parent: 60
+ - uid: 155
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 60
- uid: 167
components:
- type: Transform
@@ -17391,6 +17539,11 @@ entities:
- type: Transform
pos: 50.5,23.5
parent: 60
+ - uid: 315
+ components:
+ - type: Transform
+ pos: -29.5,-10.5
+ parent: 60
- uid: 332
components:
- type: Transform
@@ -17451,11 +17604,6 @@ entities:
- type: Transform
pos: -10.5,5.5
parent: 60
- - uid: 630
- components:
- - type: Transform
- pos: -33.5,-16.5
- parent: 60
- uid: 643
components:
- type: Transform
@@ -17466,16 +17614,6 @@ entities:
- type: Transform
pos: -11.5,5.5
parent: 60
- - uid: 778
- components:
- - type: Transform
- pos: -32.5,-15.5
- parent: 60
- - uid: 781
- components:
- - type: Transform
- pos: -32.5,-14.5
- parent: 60
- uid: 815
components:
- type: Transform
@@ -17556,16 +17694,6 @@ entities:
- type: Transform
pos: -11.5,25.5
parent: 60
- - uid: 1555
- components:
- - type: Transform
- pos: -25.5,-20.5
- parent: 60
- - uid: 1560
- components:
- - type: Transform
- pos: -27.5,-21.5
- parent: 60
- uid: 1628
components:
- type: Transform
@@ -17586,20 +17714,55 @@ entities:
- type: Transform
pos: -20.5,-33.5
parent: 60
+ - uid: 1697
+ components:
+ - type: Transform
+ pos: -33.5,-21.5
+ parent: 60
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 60
- uid: 1703
components:
- type: Transform
pos: 30.5,-17.5
parent: 60
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: -20.5,-15.5
+ parent: 60
- uid: 1716
components:
- type: Transform
pos: 1.5,-6.5
parent: 60
- - uid: 1762
+ - uid: 1717
components:
- type: Transform
- pos: -33.5,-15.5
+ pos: -18.5,-5.5
+ parent: 60
+ - uid: 1720
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: -20.5,0.5
+ parent: 60
+ - uid: 1735
+ components:
+ - type: Transform
+ pos: -19.5,-16.5
+ parent: 60
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: -19.5,-19.5
parent: 60
- uid: 1763
components:
@@ -17611,21 +17774,131 @@ entities:
- type: Transform
pos: -57.5,-22.5
parent: 60
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: -21.5,-14.5
+ parent: 60
+ - uid: 1831
+ components:
+ - type: Transform
+ pos: -21.5,-12.5
+ parent: 60
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: -32.5,-21.5
+ parent: 60
+ - uid: 1836
+ components:
+ - type: Transform
+ pos: -19.5,-15.5
+ parent: 60
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: -18.5,-19.5
+ parent: 60
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: -17.5,-19.5
+ parent: 60
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: -19.5,-2.5
+ parent: 60
- uid: 1860
components:
- type: Transform
pos: 32.5,-17.5
parent: 60
- - uid: 1862
+ - uid: 1872
components:
- type: Transform
- pos: -33.5,-18.5
+ pos: -27.5,-11.5
+ parent: 60
+ - uid: 1874
+ components:
+ - type: Transform
+ pos: -26.5,-8.5
+ parent: 60
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: -26.5,-7.5
+ parent: 60
+ - uid: 1883
+ components:
+ - type: Transform
+ pos: -27.5,-7.5
+ parent: 60
+ - uid: 1887
+ components:
+ - type: Transform
+ pos: -28.5,-19.5
+ parent: 60
+ - uid: 1888
+ components:
+ - type: Transform
+ pos: -26.5,-18.5
+ parent: 60
+ - uid: 1889
+ components:
+ - type: Transform
+ pos: -26.5,-9.5
parent: 60
- uid: 1891
components:
- type: Transform
pos: 52.5,-24.5
parent: 60
+ - uid: 1892
+ components:
+ - type: Transform
+ pos: -28.5,-7.5
+ parent: 60
+ - uid: 1893
+ components:
+ - type: Transform
+ pos: -26.5,-16.5
+ parent: 60
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: -27.5,-15.5
+ parent: 60
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 60
+ - uid: 1938
+ components:
+ - type: Transform
+ pos: -34.5,-5.5
+ parent: 60
+ - uid: 1947
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 60
+ - uid: 1951
+ components:
+ - type: Transform
+ pos: -31.5,-10.5
+ parent: 60
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: -18.5,-9.5
+ parent: 60
+ - uid: 1965
+ components:
+ - type: Transform
+ pos: -31.5,-9.5
+ parent: 60
- uid: 2019
components:
- type: Transform
@@ -17636,10 +17909,30 @@ entities:
- type: Transform
pos: -23.5,-29.5
parent: 60
- - uid: 2119
+ - uid: 2090
components:
- type: Transform
- pos: -25.5,-21.5
+ pos: -33.5,2.5
+ parent: 60
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: -32.5,1.5
+ parent: 60
+ - uid: 2096
+ components:
+ - type: Transform
+ pos: -23.5,-11.5
+ parent: 60
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: -19.5,0.5
+ parent: 60
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: -34.5,-17.5
parent: 60
- uid: 2166
components:
@@ -17701,11 +17994,6 @@ entities:
- type: Transform
pos: -61.5,-18.5
parent: 60
- - uid: 2602
- components:
- - type: Transform
- pos: -33.5,-21.5
- parent: 60
- uid: 2606
components:
- type: Transform
@@ -17721,6 +18009,31 @@ entities:
- type: Transform
pos: 39.5,-44.5
parent: 60
+ - uid: 2760
+ components:
+ - type: Transform
+ pos: -34.5,-19.5
+ parent: 60
+ - uid: 2791
+ components:
+ - type: Transform
+ pos: -35.5,-19.5
+ parent: 60
+ - uid: 2792
+ components:
+ - type: Transform
+ pos: -33.5,-15.5
+ parent: 60
+ - uid: 2793
+ components:
+ - type: Transform
+ pos: -35.5,-18.5
+ parent: 60
+ - uid: 2807
+ components:
+ - type: Transform
+ pos: -33.5,-16.5
+ parent: 60
- uid: 2887
components:
- type: Transform
@@ -17761,6 +18074,11 @@ entities:
- type: Transform
pos: -12.5,-19.5
parent: 60
+ - uid: 3198
+ components:
+ - type: Transform
+ pos: -30.5,0.5
+ parent: 60
- uid: 3246
components:
- type: Transform
@@ -17906,6 +18224,11 @@ entities:
- type: Transform
pos: 45.5,6.5
parent: 60
+ - uid: 4009
+ components:
+ - type: Transform
+ pos: -31.5,-0.5
+ parent: 60
- uid: 4017
components:
- type: Transform
@@ -17916,6 +18239,11 @@ entities:
- type: Transform
pos: -65.5,-0.5
parent: 60
+ - uid: 4235
+ components:
+ - type: Transform
+ pos: -17.5,-20.5
+ parent: 60
- uid: 4259
components:
- type: Transform
@@ -17931,6 +18259,11 @@ entities:
- type: Transform
pos: -52.5,-13.5
parent: 60
+ - uid: 4282
+ components:
+ - type: Transform
+ pos: -43.5,26.5
+ parent: 60
- uid: 4327
components:
- type: Transform
@@ -17951,11 +18284,31 @@ entities:
- type: Transform
pos: -66.5,1.5
parent: 60
+ - uid: 4504
+ components:
+ - type: Transform
+ pos: -21.5,-7.5
+ parent: 60
+ - uid: 4516
+ components:
+ - type: Transform
+ pos: -20.5,-9.5
+ parent: 60
- uid: 4528
components:
- type: Transform
pos: 55.5,-35.5
parent: 60
+ - uid: 4562
+ components:
+ - type: Transform
+ pos: -19.5,-1.5
+ parent: 60
+ - uid: 4568
+ components:
+ - type: Transform
+ pos: -43.5,25.5
+ parent: 60
- uid: 4632
components:
- type: Transform
@@ -18301,10 +18654,10 @@ entities:
- type: Transform
pos: -15.5,-31.5
parent: 60
- - uid: 5219
+ - uid: 5224
components:
- type: Transform
- pos: -27.5,-20.5
+ pos: -29.5,-11.5
parent: 60
- uid: 5233
components:
@@ -18316,6 +18669,11 @@ entities:
- type: Transform
pos: 40.5,-7.5
parent: 60
+ - uid: 5294
+ components:
+ - type: Transform
+ pos: -31.5,-13.5
+ parent: 60
- uid: 5325
components:
- type: Transform
@@ -18361,6 +18719,21 @@ entities:
- type: Transform
pos: 8.5,5.5
parent: 60
+ - uid: 5423
+ components:
+ - type: Transform
+ pos: -29.5,-19.5
+ parent: 60
+ - uid: 5431
+ components:
+ - type: Transform
+ pos: -34.5,-21.5
+ parent: 60
+ - uid: 5436
+ components:
+ - type: Transform
+ pos: -19.5,-18.5
+ parent: 60
- uid: 5462
components:
- type: Transform
@@ -18386,6 +18759,11 @@ entities:
- type: Transform
pos: 58.5,5.5
parent: 60
+ - uid: 5662
+ components:
+ - type: Transform
+ pos: -21.5,-10.5
+ parent: 60
- uid: 5665
components:
- type: Transform
@@ -18421,21 +18799,81 @@ entities:
- type: Transform
pos: 55.5,4.5
parent: 60
+ - uid: 5810
+ components:
+ - type: Transform
+ pos: -20.5,-1.5
+ parent: 60
- uid: 5838
components:
- type: Transform
pos: -15.5,-29.5
parent: 60
+ - uid: 5925
+ components:
+ - type: Transform
+ pos: -19.5,-3.5
+ parent: 60
+ - uid: 5935
+ components:
+ - type: Transform
+ pos: -32.5,-12.5
+ parent: 60
+ - uid: 5936
+ components:
+ - type: Transform
+ pos: -21.5,-1.5
+ parent: 60
+ - uid: 5972
+ components:
+ - type: Transform
+ pos: -17.5,-18.5
+ parent: 60
+ - uid: 6043
+ components:
+ - type: Transform
+ pos: -31.5,-14.5
+ parent: 60
- uid: 6086
components:
- type: Transform
pos: 52.5,-25.5
parent: 60
+ - uid: 6087
+ components:
+ - type: Transform
+ pos: -25.5,-20.5
+ parent: 60
+ - uid: 6093
+ components:
+ - type: Transform
+ pos: -33.5,-18.5
+ parent: 60
+ - uid: 6156
+ components:
+ - type: Transform
+ pos: -21.5,-8.5
+ parent: 60
+ - uid: 6173
+ components:
+ - type: Transform
+ pos: -21.5,-11.5
+ parent: 60
+ - uid: 6174
+ components:
+ - type: Transform
+ pos: -31.5,-12.5
+ parent: 60
- uid: 6216
components:
- type: Transform
pos: -16.5,-54.5
parent: 60
+ - uid: 6365
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 60
- uid: 6428
components:
- type: Transform
@@ -18451,11 +18889,31 @@ entities:
- type: Transform
pos: 49.5,-11.5
parent: 60
+ - uid: 6467
+ components:
+ - type: Transform
+ pos: -20.5,-12.5
+ parent: 60
+ - uid: 6541
+ components:
+ - type: Transform
+ pos: -30.5,-19.5
+ parent: 60
+ - uid: 6560
+ components:
+ - type: Transform
+ pos: -24.5,-8.5
+ parent: 60
- uid: 6591
components:
- type: Transform
pos: -57.5,-13.5
parent: 60
+ - uid: 6611
+ components:
+ - type: Transform
+ pos: -23.5,-10.5
+ parent: 60
- uid: 6664
components:
- type: Transform
@@ -18466,6 +18924,26 @@ entities:
- type: Transform
pos: -59.5,-21.5
parent: 60
+ - uid: 6702
+ components:
+ - type: Transform
+ pos: -25.5,-19.5
+ parent: 60
+ - uid: 6703
+ components:
+ - type: Transform
+ pos: -25.5,-21.5
+ parent: 60
+ - uid: 6714
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 60
+ - uid: 6733
+ components:
+ - type: Transform
+ pos: -33.5,-20.5
+ parent: 60
- uid: 6740
components:
- type: Transform
@@ -18516,6 +18994,36 @@ entities:
- type: Transform
pos: -7.5,-54.5
parent: 60
+ - uid: 6761
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 60
+ - uid: 6763
+ components:
+ - type: Transform
+ pos: -21.5,-6.5
+ parent: 60
+ - uid: 6794
+ components:
+ - type: Transform
+ pos: -26.5,-19.5
+ parent: 60
+ - uid: 6818
+ components:
+ - type: Transform
+ pos: -31.5,-15.5
+ parent: 60
+ - uid: 6825
+ components:
+ - type: Transform
+ pos: -33.5,-19.5
+ parent: 60
+ - uid: 6828
+ components:
+ - type: Transform
+ pos: -20.5,-5.5
+ parent: 60
- uid: 6858
components:
- type: Transform
@@ -18526,6 +19034,26 @@ entities:
- type: Transform
pos: -52.5,-16.5
parent: 60
+ - uid: 6885
+ components:
+ - type: Transform
+ pos: -25.5,-15.5
+ parent: 60
+ - uid: 6886
+ components:
+ - type: Transform
+ pos: -27.5,-13.5
+ parent: 60
+ - uid: 6888
+ components:
+ - type: Transform
+ pos: -26.5,-17.5
+ parent: 60
+ - uid: 6889
+ components:
+ - type: Transform
+ pos: -26.5,-15.5
+ parent: 60
- uid: 6921
components:
- type: Transform
@@ -18561,11 +19089,41 @@ entities:
- type: Transform
pos: -62.5,-0.5
parent: 60
+ - uid: 6971
+ components:
+ - type: Transform
+ pos: -20.5,-6.5
+ parent: 60
+ - uid: 6983
+ components:
+ - type: Transform
+ pos: -22.5,-19.5
+ parent: 60
+ - uid: 6992
+ components:
+ - type: Transform
+ pos: -24.5,-19.5
+ parent: 60
+ - uid: 6993
+ components:
+ - type: Transform
+ pos: -27.5,-19.5
+ parent: 60
+ - uid: 7006
+ components:
+ - type: Transform
+ pos: -27.5,-12.5
+ parent: 60
- uid: 7010
components:
- type: Transform
pos: -34.5,-32.5
parent: 60
+ - uid: 7041
+ components:
+ - type: Transform
+ pos: -26.5,-11.5
+ parent: 60
- uid: 7062
components:
- type: Transform
@@ -18586,6 +19144,16 @@ entities:
- type: Transform
pos: -10.5,27.5
parent: 60
+ - uid: 7231
+ components:
+ - type: Transform
+ pos: -28.5,-8.5
+ parent: 60
+ - uid: 7284
+ components:
+ - type: Transform
+ pos: -32.5,-15.5
+ parent: 60
- uid: 7366
components:
- type: Transform
@@ -18731,150 +19299,125 @@ entities:
- type: Transform
pos: -63.5,7.5
parent: 60
- - uid: 7668
+ - uid: 7656
components:
- type: Transform
- pos: 3.5,33.5
+ pos: -19.5,-0.5
parent: 60
- - uid: 7741
+ - uid: 7668
components:
- type: Transform
- pos: -10.5,-18.5
+ pos: 3.5,33.5
parent: 60
- - uid: 7907
+ - uid: 7685
components:
- type: Transform
- pos: -33.5,-19.5
+ pos: -21.5,0.5
parent: 60
- - uid: 8190
- components:
- - type: Transform
- pos: 9.5,-1.5
- parent: 7536
- - uid: 8191
- components:
- - type: Transform
- pos: 9.5,-2.5
- parent: 7536
- - uid: 8209
- components:
- - type: Transform
- pos: 10.5,-2.5
- parent: 7536
- - uid: 8275
- components:
- - type: Transform
- pos: 11.5,-2.5
- parent: 7536
- - uid: 8276
- components:
- - type: Transform
- pos: 12.5,-2.5
- parent: 7536
- - uid: 8277
+ - uid: 7741
components:
- type: Transform
- pos: -18.5,4.5
+ pos: -10.5,-18.5
parent: 60
- - uid: 8278
+ - uid: 7786
components:
- type: Transform
- pos: -19.5,4.5
+ pos: -18.5,-3.5
parent: 60
- - uid: 8279
+ - uid: 7790
components:
- type: Transform
- pos: -20.5,4.5
+ pos: -21.5,-5.5
parent: 60
- - uid: 8280
+ - uid: 7793
components:
- type: Transform
- pos: -21.5,4.5
+ pos: -33.5,-17.5
parent: 60
- - uid: 8281
+ - uid: 7812
components:
- type: Transform
- pos: -21.5,5.5
+ pos: -20.5,-10.5
parent: 60
- - uid: 8282
+ - uid: 7917
components:
- type: Transform
- pos: -22.5,5.5
+ pos: -19.5,-5.5
parent: 60
- - uid: 8283
+ - uid: 8190
components:
- type: Transform
- pos: -23.5,5.5
- parent: 60
- - uid: 8284
+ pos: 9.5,-1.5
+ parent: 7536
+ - uid: 8191
components:
- type: Transform
- pos: -24.5,5.5
- parent: 60
- - uid: 8285
+ pos: 9.5,-2.5
+ parent: 7536
+ - uid: 8209
components:
- type: Transform
- pos: -25.5,5.5
- parent: 60
- - uid: 8286
+ pos: 10.5,-2.5
+ parent: 7536
+ - uid: 8223
components:
- type: Transform
- pos: -26.5,5.5
+ pos: -19.5,-20.5
parent: 60
- - uid: 8287
+ - uid: 8226
components:
- type: Transform
- pos: -27.5,5.5
+ pos: -21.5,-13.5
parent: 60
- - uid: 8288
+ - uid: 8229
components:
- type: Transform
- pos: -28.5,5.5
+ pos: -28.5,-9.5
parent: 60
- - uid: 8289
+ - uid: 8247
components:
- type: Transform
- pos: -29.5,5.5
+ pos: -29.5,-12.5
parent: 60
- - uid: 8290
+ - uid: 8252
components:
- type: Transform
- pos: -34.5,5.5
+ pos: -21.5,-9.5
parent: 60
- - uid: 8291
+ - uid: 8263
components:
- type: Transform
- pos: -33.5,5.5
+ pos: -35.5,-20.5
parent: 60
- - uid: 8292
+ - uid: 8265
components:
- type: Transform
- pos: -30.5,5.5
+ pos: -19.5,1.5
parent: 60
- - uid: 8293
+ - uid: 8271
components:
- type: Transform
- pos: -31.5,5.5
+ pos: -26.5,-10.5
parent: 60
- - uid: 8294
+ - uid: 8273
components:
- type: Transform
- pos: -32.5,5.5
+ pos: -23.5,-12.5
parent: 60
- - uid: 8295
+ - uid: 8275
components:
- type: Transform
- pos: -32.5,4.5
- parent: 60
- - uid: 8296
+ pos: 11.5,-2.5
+ parent: 7536
+ - uid: 8276
components:
- type: Transform
- pos: -32.5,3.5
- parent: 60
- - uid: 8297
+ pos: 12.5,-2.5
+ parent: 7536
+ - uid: 8282
components:
- type: Transform
- pos: -32.5,2.5
+ pos: -17.5,-11.5
parent: 60
- uid: 8315
components:
@@ -18906,145 +19449,25 @@ entities:
- type: Transform
pos: -59.5,-13.5
parent: 60
- - uid: 8326
- components:
- - type: Transform
- pos: -32.5,1.5
- parent: 60
- - uid: 8327
- components:
- - type: Transform
- pos: -32.5,0.5
- parent: 60
- - uid: 8328
- components:
- - type: Transform
- pos: -34.5,-0.5
- parent: 60
- - uid: 8329
- components:
- - type: Transform
- pos: -33.5,-0.5
- parent: 60
- - uid: 8330
- components:
- - type: Transform
- pos: -32.5,-0.5
- parent: 60
- - uid: 8331
- components:
- - type: Transform
- pos: -31.5,-0.5
- parent: 60
- - uid: 8332
- components:
- - type: Transform
- pos: -30.5,-0.5
- parent: 60
- - uid: 8333
- components:
- - type: Transform
- pos: -30.5,-1.5
- parent: 60
- - uid: 8334
- components:
- - type: Transform
- pos: -30.5,-2.5
- parent: 60
- uid: 8335
components:
- type: Transform
- pos: -34.5,-3.5
- parent: 60
- - uid: 8336
- components:
- - type: Transform
- pos: -33.5,-3.5
- parent: 60
- - uid: 8337
- components:
- - type: Transform
- pos: -32.5,-3.5
- parent: 60
- - uid: 8338
- components:
- - type: Transform
- pos: -31.5,-3.5
- parent: 60
- - uid: 8339
- components:
- - type: Transform
- pos: -30.5,-3.5
+ pos: -35.5,-11.5
parent: 60
- uid: 8340
components:
- type: Transform
- pos: -24.5,-9.5
+ pos: -35.5,-7.5
parent: 60
- uid: 8341
components:
- type: Transform
- pos: -28.5,-9.5
- parent: 60
- - uid: 8342
- components:
- - type: Transform
- pos: -27.5,-9.5
- parent: 60
- - uid: 8343
- components:
- - type: Transform
- pos: -25.5,-9.5
- parent: 60
- - uid: 8344
- components:
- - type: Transform
- pos: -26.5,-11.5
- parent: 60
- - uid: 8345
- components:
- - type: Transform
- pos: -26.5,-10.5
- parent: 60
- - uid: 8346
- components:
- - type: Transform
- pos: -26.5,-9.5
+ pos: -33.5,-9.5
parent: 60
- uid: 8347
components:
- type: Transform
- pos: -26.5,-8.5
- parent: 60
- - uid: 8348
- components:
- - type: Transform
- pos: -26.5,-7.5
- parent: 60
- - uid: 8349
- components:
- - type: Transform
- pos: -26.5,-6.5
- parent: 60
- - uid: 8350
- components:
- - type: Transform
- pos: -26.5,-5.5
- parent: 60
- - uid: 8351
- components:
- - type: Transform
- pos: -25.5,1.5
- parent: 60
- - uid: 8352
- components:
- - type: Transform
- pos: -27.5,1.5
- parent: 60
- - uid: 8353
- components:
- - type: Transform
- pos: -26.5,2.5
+ pos: -31.5,-11.5
parent: 60
- uid: 8356
components:
@@ -19066,11 +19489,6 @@ entities:
- type: Transform
pos: 5.5,-0.5
parent: 7536
- - uid: 8392
- components:
- - type: Transform
- pos: -26.5,1.5
- parent: 60
- uid: 8405
components:
- type: Transform
@@ -19086,395 +19504,35 @@ entities:
- type: Transform
pos: 5.5,-3.5
parent: 7536
- - uid: 8416
- components:
- - type: Transform
- pos: -26.5,0.5
- parent: 60
- - uid: 8417
- components:
- - type: Transform
- pos: -26.5,-0.5
- parent: 60
- - uid: 8418
- components:
- - type: Transform
- pos: -26.5,-1.5
- parent: 60
- - uid: 8419
- components:
- - type: Transform
- pos: -26.5,-2.5
- parent: 60
- - uid: 8420
- components:
- - type: Transform
- pos: -26.5,-3.5
- parent: 60
- - uid: 8421
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 60
- - uid: 8424
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 60
- - uid: 8425
- components:
- - type: Transform
- pos: -19.5,1.5
- parent: 60
- - uid: 8428
- components:
- - type: Transform
- pos: -19.5,0.5
- parent: 60
- uid: 8429
components:
- type: Transform
- pos: -19.5,-0.5
- parent: 60
- - uid: 8430
- components:
- - type: Transform
- pos: -20.5,-0.5
- parent: 60
- - uid: 8431
- components:
- - type: Transform
- pos: -21.5,-0.5
- parent: 60
- - uid: 8433
- components:
- - type: Transform
- pos: -21.5,-1.5
- parent: 60
- - uid: 8434
- components:
- - type: Transform
- pos: -21.5,-2.5
- parent: 60
- - uid: 8436
- components:
- - type: Transform
- pos: -18.5,-3.5
- parent: 60
- - uid: 8437
- components:
- - type: Transform
- pos: -19.5,-3.5
- parent: 60
- - uid: 8438
- components:
- - type: Transform
- pos: -20.5,-3.5
- parent: 60
- - uid: 8439
- components:
- - type: Transform
- pos: -21.5,-3.5
- parent: 60
- - uid: 8440
- components:
- - type: Transform
- pos: -21.5,-4.5
- parent: 60
- - uid: 8441
- components:
- - type: Transform
- pos: -22.5,-4.5
- parent: 60
- - uid: 8442
- components:
- - type: Transform
- pos: -23.5,-4.5
- parent: 60
- - uid: 8443
- components:
- - type: Transform
- pos: -24.5,-4.5
- parent: 60
- - uid: 8444
- components:
- - type: Transform
- pos: -25.5,-4.5
- parent: 60
- - uid: 8445
- components:
- - type: Transform
- pos: -26.5,-4.5
- parent: 60
- - uid: 8446
- components:
- - type: Transform
- pos: -27.5,-4.5
- parent: 60
- - uid: 8447
- components:
- - type: Transform
- pos: -28.5,-4.5
- parent: 60
- - uid: 8448
- components:
- - type: Transform
- pos: -29.5,-4.5
- parent: 60
- - uid: 8449
- components:
- - type: Transform
- pos: -29.5,-3.5
- parent: 60
- - uid: 8450
- components:
- - type: Transform
- pos: -29.5,-2.5
- parent: 60
- - uid: 8451
- components:
- - type: Transform
- pos: -29.5,-1.5
- parent: 60
- - uid: 8452
- components:
- - type: Transform
- pos: -34.5,-6.5
- parent: 60
- - uid: 8453
- components:
- - type: Transform
- pos: -33.5,-6.5
- parent: 60
- - uid: 8454
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 60
- - uid: 8455
- components:
- - type: Transform
- pos: -31.5,-6.5
- parent: 60
- - uid: 8456
- components:
- - type: Transform
- pos: -34.5,-9.5
- parent: 60
- - uid: 8457
- components:
- - type: Transform
- pos: -33.5,-9.5
- parent: 60
- - uid: 8458
- components:
- - type: Transform
- pos: -32.5,-9.5
- parent: 60
- - uid: 8462
- components:
- - type: Transform
- pos: -31.5,-9.5
- parent: 60
- - uid: 8463
- components:
- - type: Transform
- pos: -34.5,-12.5
- parent: 60
- - uid: 8464
- components:
- - type: Transform
- pos: -33.5,-12.5
+ pos: -35.5,-10.5
parent: 60
- uid: 8465
components:
- type: Transform
- pos: -32.5,-12.5
- parent: 60
- - uid: 8467
- components:
- - type: Transform
- pos: -31.5,-12.5
- parent: 60
- - uid: 8468
- components:
- - type: Transform
- pos: -30.5,-6.5
- parent: 60
- - uid: 8469
- components:
- - type: Transform
- pos: -30.5,-7.5
+ pos: -25.5,-7.5
parent: 60
- uid: 8470
components:
- type: Transform
- pos: -30.5,-8.5
- parent: 60
- - uid: 8471
- components:
- - type: Transform
- pos: -30.5,-9.5
- parent: 60
- - uid: 8472
- components:
- - type: Transform
- pos: -30.5,-10.5
- parent: 60
- - uid: 8473
- components:
- - type: Transform
- pos: -30.5,-11.5
+ pos: -24.5,-7.5
parent: 60
- uid: 8474
components:
- type: Transform
- pos: -30.5,-12.5
- parent: 60
- - uid: 8475
- components:
- - type: Transform
- pos: -30.5,-13.5
- parent: 60
- - uid: 8476
- components:
- - type: Transform
- pos: -30.5,-14.5
- parent: 60
- - uid: 8477
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 60
- - uid: 8478
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 60
- - uid: 8479
- components:
- - type: Transform
- pos: -20.5,-12.5
- parent: 60
- - uid: 8480
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 60
- - uid: 8481
- components:
- - type: Transform
- pos: -18.5,-9.5
+ pos: -29.5,-9.5
parent: 60
- uid: 8482
components:
- type: Transform
- pos: -19.5,-9.5
- parent: 60
- - uid: 8483
- components:
- - type: Transform
- pos: -20.5,-9.5
- parent: 60
- - uid: 8484
- components:
- - type: Transform
- pos: -21.5,-9.5
- parent: 60
- - uid: 8503
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 60
- - uid: 8504
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 60
- - uid: 8505
- components:
- - type: Transform
- pos: -21.5,-6.5
- parent: 60
- - uid: 8506
- components:
- - type: Transform
- pos: -20.5,-6.5
- parent: 60
- - uid: 8507
- components:
- - type: Transform
- pos: -22.5,-6.5
- parent: 60
- - uid: 8508
- components:
- - type: Transform
- pos: -22.5,-7.5
- parent: 60
- - uid: 8509
- components:
- - type: Transform
- pos: -22.5,-8.5
- parent: 60
- - uid: 8510
- components:
- - type: Transform
- pos: -22.5,-9.5
- parent: 60
- - uid: 8511
- components:
- - type: Transform
- pos: -22.5,-10.5
+ pos: -35.5,-9.5
parent: 60
- uid: 8512
components:
- type: Transform
- pos: -22.5,-11.5
- parent: 60
- - uid: 8513
- components:
- - type: Transform
- pos: -22.5,-12.5
- parent: 60
- - uid: 8514
- components:
- - type: Transform
- pos: -22.5,-13.5
- parent: 60
- - uid: 8515
- components:
- - type: Transform
- pos: -22.5,-14.5
- parent: 60
- - uid: 8516
- components:
- - type: Transform
- pos: -19.5,-16.5
- parent: 60
- - uid: 8517
- components:
- - type: Transform
- pos: -20.5,-15.5
- parent: 60
- - uid: 8518
- components:
- - type: Transform
- pos: -19.5,-15.5
- parent: 60
- - uid: 8519
- components:
- - type: Transform
- pos: -21.5,-15.5
- parent: 60
- - uid: 8520
- components:
- - type: Transform
- pos: -22.5,-15.5
- parent: 60
- - uid: 8523
- components:
- - type: Transform
- pos: -23.5,-15.5
+ pos: -34.5,-1.5
parent: 60
- uid: 8531
components:
@@ -19486,125 +19544,25 @@ entities:
- type: Transform
pos: 3.5,-1.5
parent: 7536
- - uid: 8569
- components:
- - type: Transform
- pos: -30.5,-15.5
- parent: 60
- - uid: 8570
- components:
- - type: Transform
- pos: -29.5,-15.5
- parent: 60
- - uid: 8571
- components:
- - type: Transform
- pos: -28.5,-15.5
- parent: 60
- - uid: 8572
- components:
- - type: Transform
- pos: -27.5,-15.5
- parent: 60
- - uid: 8573
- components:
- - type: Transform
- pos: -26.5,-15.5
- parent: 60
- - uid: 8574
- components:
- - type: Transform
- pos: -25.5,-15.5
- parent: 60
- - uid: 8575
- components:
- - type: Transform
- pos: -24.5,-15.5
- parent: 60
- - uid: 8576
- components:
- - type: Transform
- pos: -24.5,-16.5
- parent: 60
- - uid: 8582
- components:
- - type: Transform
- pos: -19.5,-18.5
- parent: 60
- - uid: 8590
- components:
- - type: Transform
- pos: -19.5,-20.5
- parent: 60
- - uid: 8595
- components:
- - type: Transform
- pos: -18.5,-19.5
- parent: 60
- - uid: 8596
- components:
- - type: Transform
- pos: -19.5,-19.5
- parent: 60
- - uid: 8597
- components:
- - type: Transform
- pos: -20.5,-19.5
- parent: 60
- - uid: 8598
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- - uid: 8601
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 60
- - uid: 8606
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 60
- uid: 8609
components:
- type: Transform
- pos: -29.5,-19.5
+ pos: -24.5,-4.5
parent: 60
- uid: 8610
components:
- type: Transform
- pos: -28.5,-19.5
- parent: 60
- - uid: 8654
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 60
- - uid: 8655
- components:
- - type: Transform
- pos: -26.5,-19.5
- parent: 60
- - uid: 8656
- components:
- - type: Transform
- pos: -25.5,-19.5
- parent: 60
- - uid: 8662
- components:
- - type: Transform
- pos: -24.5,-19.5
+ pos: -27.5,-4.5
parent: 60
- - uid: 8664
+ - uid: 8695
components:
- type: Transform
- pos: -24.5,-18.5
+ pos: -32.5,2.5
parent: 60
- - uid: 8665
+ - uid: 8709
components:
- type: Transform
- pos: -24.5,-17.5
+ pos: -29.5,-4.5
parent: 60
- uid: 8739
components:
@@ -19631,11 +19589,6 @@ entities:
- type: Transform
pos: -66.5,2.5
parent: 60
- - uid: 8770
- components:
- - type: Transform
- pos: -33.5,-17.5
- parent: 60
- uid: 8786
components:
- type: Transform
@@ -19656,6 +19609,11 @@ entities:
- type: Transform
pos: -0.5,-2.5
parent: 7536
+ - uid: 8790
+ components:
+ - type: Transform
+ pos: -33.5,3.5
+ parent: 60
- uid: 8893
components:
- type: Transform
@@ -21426,6 +21384,11 @@ entities:
- type: Transform
pos: -34.5,13.5
parent: 60
+ - uid: 10368
+ components:
+ - type: Transform
+ pos: -24.5,-9.5
+ parent: 60
- uid: 10370
components:
- type: Transform
@@ -22551,6 +22514,16 @@ entities:
- type: Transform
pos: -37.5,-24.5
parent: 60
+ - uid: 10673
+ components:
+ - type: Transform
+ pos: -21.5,-15.5
+ parent: 60
+ - uid: 10677
+ components:
+ - type: Transform
+ pos: -19.5,-21.5
+ parent: 60
- uid: 10683
components:
- type: Transform
@@ -23671,6 +23644,16 @@ entities:
- type: Transform
pos: 24.5,-37.5
parent: 60
+ - uid: 11373
+ components:
+ - type: Transform
+ pos: -31.5,-8.5
+ parent: 60
+ - uid: 11374
+ components:
+ - type: Transform
+ pos: -26.5,0.5
+ parent: 60
- uid: 11380
components:
- type: Transform
@@ -23681,6 +23664,11 @@ entities:
- type: Transform
pos: -10.5,-1.5
parent: 7536
+ - uid: 11383
+ components:
+ - type: Transform
+ pos: -31.5,-7.5
+ parent: 60
- uid: 11398
components:
- type: Transform
@@ -23691,6 +23679,11 @@ entities:
- type: Transform
pos: -52.5,-15.5
parent: 60
+ - uid: 11456
+ components:
+ - type: Transform
+ pos: -30.5,2.5
+ parent: 60
- uid: 11475
components:
- type: Transform
@@ -24421,6 +24414,11 @@ entities:
- type: Transform
pos: 7.5,-20.5
parent: 60
+ - uid: 12188
+ components:
+ - type: Transform
+ pos: -25.5,-4.5
+ parent: 60
- uid: 12278
components:
- type: Transform
@@ -25391,6 +25389,16 @@ entities:
- type: Transform
pos: 36.5,-16.5
parent: 60
+ - uid: 13149
+ components:
+ - type: Transform
+ pos: -32.5,0.5
+ parent: 60
+ - uid: 13158
+ components:
+ - type: Transform
+ pos: -34.5,-9.5
+ parent: 60
- uid: 13203
components:
- type: Transform
@@ -25406,6 +25414,11 @@ entities:
- type: Transform
pos: 51.5,15.5
parent: 60
+ - uid: 13266
+ components:
+ - type: Transform
+ pos: -3.5,37.5
+ parent: 60
- uid: 13271
components:
- type: Transform
@@ -26226,11 +26239,31 @@ entities:
- type: Transform
pos: 31.5,-51.5
parent: 60
+ - uid: 13583
+ components:
+ - type: Transform
+ pos: -32.5,-6.5
+ parent: 60
+ - uid: 13585
+ components:
+ - type: Transform
+ pos: -32.5,-10.5
+ parent: 60
+ - uid: 13623
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 60
- uid: 13655
components:
- type: Transform
pos: -10.5,25.5
parent: 60
+ - uid: 13662
+ components:
+ - type: Transform
+ pos: -32.5,-1.5
+ parent: 60
- uid: 13686
components:
- type: Transform
@@ -26351,6 +26384,11 @@ entities:
- type: Transform
pos: -10.5,-14.5
parent: 60
+ - uid: 13828
+ components:
+ - type: Transform
+ pos: -1.5,37.5
+ parent: 60
- uid: 13892
components:
- type: Transform
@@ -26376,6 +26414,26 @@ entities:
- type: Transform
pos: -62.5,27.5
parent: 60
+ - uid: 14131
+ components:
+ - type: Transform
+ pos: -2.5,37.5
+ parent: 60
+ - uid: 14227
+ components:
+ - type: Transform
+ pos: -33.5,-1.5
+ parent: 60
+ - uid: 14230
+ components:
+ - type: Transform
+ pos: -26.5,-1.5
+ parent: 60
+ - uid: 14231
+ components:
+ - type: Transform
+ pos: -30.5,1.5
+ parent: 60
- uid: 14345
components:
- type: Transform
@@ -26786,6 +26844,11 @@ entities:
- type: Transform
pos: -1.5,9.5
parent: 60
+ - uid: 14436
+ components:
+ - type: Transform
+ pos: 5.5,36.5
+ parent: 60
- uid: 14453
components:
- type: Transform
@@ -27066,11 +27129,21 @@ entities:
- type: Transform
pos: -20.5,17.5
parent: 60
+ - uid: 14631
+ components:
+ - type: Transform
+ pos: -26.5,-4.5
+ parent: 60
- uid: 14652
components:
- type: Transform
pos: -12.5,-14.5
parent: 60
+ - uid: 14726
+ components:
+ - type: Transform
+ pos: -34.5,-2.5
+ parent: 60
- uid: 14904
components:
- type: Transform
@@ -27091,11 +27164,6 @@ entities:
- type: Transform
pos: -23.5,46.5
parent: 60
- - uid: 14911
- components:
- - type: Transform
- pos: -4.5,36.5
- parent: 60
- uid: 14912
components:
- type: Transform
@@ -27161,6 +27229,11 @@ entities:
- type: Transform
pos: -17.5,48.5
parent: 60
+ - uid: 15183
+ components:
+ - type: Transform
+ pos: -26.5,-2.5
+ parent: 60
- uid: 15272
components:
- type: Transform
@@ -27471,10 +27544,15 @@ entities:
- type: Transform
pos: -50.5,16.5
parent: 60
+ - uid: 16164
+ components:
+ - type: Transform
+ pos: -30.5,-0.5
+ parent: 60
- uid: 16361
components:
- type: Transform
- pos: -3.5,35.5
+ pos: 6.5,37.5
parent: 60
- uid: 16366
components:
@@ -27486,21 +27564,26 @@ entities:
- type: Transform
pos: -7.5,39.5
parent: 60
- - uid: 16401
+ - uid: 16377
components:
- type: Transform
- pos: -7.5,33.5
+ pos: 5.5,37.5
parent: 60
- - uid: 16407
+ - uid: 16401
components:
- type: Transform
- pos: -2.5,35.5
+ pos: -7.5,33.5
parent: 60
- uid: 16412
components:
- type: Transform
pos: -7.5,38.5
parent: 60
+ - uid: 16447
+ components:
+ - type: Transform
+ pos: -26.5,-0.5
+ parent: 60
- uid: 16510
components:
- type: Transform
@@ -28836,11 +28919,6 @@ entities:
- type: Transform
pos: -29.5,47.5
parent: 60
- - uid: 17258
- components:
- - type: Transform
- pos: -4.5,35.5
- parent: 60
- uid: 17320
components:
- type: Transform
@@ -29236,6 +29314,11 @@ entities:
- type: Transform
pos: -44.5,15.5
parent: 60
+ - uid: 18104
+ components:
+ - type: Transform
+ pos: -32.5,-9.5
+ parent: 60
- uid: 18213
components:
- type: Transform
@@ -29606,6 +29689,16 @@ entities:
- type: Transform
pos: 3.5,-10.5
parent: 60
+ - uid: 18590
+ components:
+ - type: Transform
+ pos: -24.5,-3.5
+ parent: 60
+ - uid: 18606
+ components:
+ - type: Transform
+ pos: -31.5,2.5
+ parent: 60
- uid: 18631
components:
- type: Transform
@@ -30736,6 +30829,11 @@ entities:
- type: Transform
pos: 8.5,-23.5
parent: 60
+ - uid: 21074
+ components:
+ - type: Transform
+ pos: -28.5,-4.5
+ parent: 60
- uid: 21093
components:
- type: Transform
@@ -30859,7 +30957,7 @@ entities:
- uid: 21158
components:
- type: Transform
- pos: -33.5,-20.5
+ pos: -23.5,-4.5
parent: 60
- uid: 21171
components:
@@ -30966,6 +31064,16 @@ entities:
- type: Transform
pos: 10.5,-23.5
parent: 60
+ - uid: 21380
+ components:
+ - type: Transform
+ pos: -24.5,-2.5
+ parent: 60
+ - uid: 21409
+ components:
+ - type: Transform
+ pos: -23.5,-19.5
+ parent: 60
- uid: 21466
components:
- type: Transform
@@ -31041,6 +31149,26 @@ entities:
- type: Transform
pos: -2.5,-4.5
parent: 60
+ - uid: 21770
+ components:
+ - type: Transform
+ pos: -26.5,-3.5
+ parent: 60
+ - uid: 22450
+ components:
+ - type: Transform
+ pos: 7.5,37.5
+ parent: 60
+ - uid: 22452
+ components:
+ - type: Transform
+ pos: 8.5,37.5
+ parent: 60
+ - uid: 22453
+ components:
+ - type: Transform
+ pos: 8.5,38.5
+ parent: 60
- uid: 22548
components:
- type: Transform
@@ -32271,6 +32399,16 @@ entities:
- type: Transform
pos: -62.5,40.5
parent: 60
+ - uid: 23697
+ components:
+ - type: Transform
+ pos: 8.5,39.5
+ parent: 60
+ - uid: 23700
+ components:
+ - type: Transform
+ pos: 8.5,40.5
+ parent: 60
- uid: 23723
components:
- type: Transform
@@ -32341,6 +32479,26 @@ entities:
- type: Transform
pos: 18.5,20.5
parent: 60
+ - uid: 23897
+ components:
+ - type: Transform
+ pos: 9.5,37.5
+ parent: 60
+ - uid: 23898
+ components:
+ - type: Transform
+ pos: 9.5,36.5
+ parent: 60
+ - uid: 23899
+ components:
+ - type: Transform
+ pos: 9.5,35.5
+ parent: 60
+ - uid: 23900
+ components:
+ - type: Transform
+ pos: 9.5,34.5
+ parent: 60
- uid: 24381
components:
- type: Transform
@@ -33193,8 +33351,28 @@ entities:
- type: Transform
pos: 22.165026,21.61817
parent: 60
+ - uid: 23903
+ components:
+ - type: Transform
+ pos: 6.5304193,34.55674
+ parent: 60
- proto: CableApcStack1
entities:
+ - uid: 4580
+ components:
+ - type: Transform
+ pos: -58.5,19.5
+ parent: 60
+ - uid: 8666
+ components:
+ - type: Transform
+ pos: -58.5,17.5
+ parent: 60
+ - uid: 9683
+ components:
+ - type: Transform
+ pos: -58.5,18.5
+ parent: 60
- uid: 21173
components:
- type: Transform
@@ -33212,6 +33390,11 @@ entities:
- type: Transform
pos: -65.5,-17.5
parent: 60
+ - uid: 255
+ components:
+ - type: Transform
+ pos: -26.5,6.5
+ parent: 60
- uid: 277
components:
- type: Transform
@@ -33312,6 +33495,86 @@ entities:
- type: Transform
pos: 31.5,-58.5
parent: 60
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: -36.5,4.5
+ parent: 60
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: -36.5,-12.5
+ parent: 60
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: -36.5,-11.5
+ parent: 60
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: -36.5,-9.5
+ parent: 60
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: -36.5,-8.5
+ parent: 60
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: -36.5,-7.5
+ parent: 60
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: -36.5,-5.5
+ parent: 60
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: -36.5,-4.5
+ parent: 60
+ - uid: 1600
+ components:
+ - type: Transform
+ pos: -36.5,-3.5
+ parent: 60
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: -36.5,-2.5
+ parent: 60
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: -36.5,-1.5
+ parent: 60
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: -36.5,-0.5
+ parent: 60
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: -36.5,0.5
+ parent: 60
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: -36.5,1.5
+ parent: 60
+ - uid: 1620
+ components:
+ - type: Transform
+ pos: -36.5,2.5
+ parent: 60
+ - uid: 1623
+ components:
+ - type: Transform
+ pos: -36.5,3.5
+ parent: 60
- uid: 1626
components:
- type: Transform
@@ -33537,6 +33800,11 @@ entities:
- type: Transform
pos: 1.5,-39.5
parent: 60
+ - uid: 4018
+ components:
+ - type: Transform
+ pos: -27.5,5.5
+ parent: 60
- uid: 4031
components:
- type: Transform
@@ -33547,6 +33815,11 @@ entities:
- type: Transform
pos: -86.5,-16.5
parent: 60
+ - uid: 4215
+ components:
+ - type: Transform
+ pos: -46.5,27.5
+ parent: 60
- uid: 4240
components:
- type: Transform
@@ -34152,11 +34425,6 @@ entities:
- type: Transform
pos: 27.5,-62.5
parent: 60
- - uid: 6779
- components:
- - type: Transform
- pos: -33.5,4.5
- parent: 60
- uid: 6829
components:
- type: Transform
@@ -34242,11 +34510,6 @@ entities:
- type: Transform
pos: 55.5,-41.5
parent: 60
- - uid: 7909
- components:
- - type: Transform
- pos: -35.5,4.5
- parent: 60
- uid: 7910
components:
- type: Transform
@@ -34482,16 +34745,6 @@ entities:
- type: Transform
pos: -9.5,-2.5
parent: 7536
- - uid: 8221
- components:
- - type: Transform
- pos: -36.5,4.5
- parent: 60
- - uid: 8240
- components:
- - type: Transform
- pos: -34.5,4.5
- parent: 60
- uid: 8306
components:
- type: Transform
@@ -34517,6 +34770,21 @@ entities:
- type: Transform
pos: -72.5,-21.5
parent: 60
+ - uid: 8441
+ components:
+ - type: Transform
+ pos: -22.5,4.5
+ parent: 60
+ - uid: 8455
+ components:
+ - type: Transform
+ pos: -16.5,-14.5
+ parent: 60
+ - uid: 8505
+ components:
+ - type: Transform
+ pos: -16.5,-16.5
+ parent: 60
- uid: 8628
components:
- type: Transform
@@ -34577,6 +34845,21 @@ entities:
- type: Transform
pos: -80.5,-12.5
parent: 60
+ - uid: 8696
+ components:
+ - type: Transform
+ pos: -16.5,-18.5
+ parent: 60
+ - uid: 8711
+ components:
+ - type: Transform
+ pos: -16.5,-21.5
+ parent: 60
+ - uid: 8715
+ components:
+ - type: Transform
+ pos: -16.5,-17.5
+ parent: 60
- uid: 8727
components:
- type: Transform
@@ -34627,6 +34910,11 @@ entities:
- type: Transform
pos: 41.5,-44.5
parent: 60
+ - uid: 8770
+ components:
+ - type: Transform
+ pos: -16.5,-19.5
+ parent: 60
- uid: 8772
components:
- type: Transform
@@ -34672,6 +34960,11 @@ entities:
- type: Transform
pos: 37.5,-72.5
parent: 60
+ - uid: 9014
+ components:
+ - type: Transform
+ pos: -16.5,-23.5
+ parent: 60
- uid: 9025
components:
- type: Transform
@@ -34697,6 +34990,11 @@ entities:
- type: Transform
pos: 34.5,-70.5
parent: 60
+ - uid: 9031
+ components:
+ - type: Transform
+ pos: -16.5,-12.5
+ parent: 60
- uid: 9055
components:
- type: Transform
@@ -34867,6 +35165,11 @@ entities:
- type: Transform
pos: 24.5,-76.5
parent: 60
+ - uid: 9283
+ components:
+ - type: Transform
+ pos: -26.5,5.5
+ parent: 60
- uid: 9296
components:
- type: Transform
@@ -36447,115 +36750,10 @@ entities:
- type: Transform
pos: -37.5,-12.5
parent: 60
- - uid: 11361
- components:
- - type: Transform
- pos: -37.5,-11.5
- parent: 60
- - uid: 11362
- components:
- - type: Transform
- pos: -37.5,-10.5
- parent: 60
- - uid: 11363
- components:
- - type: Transform
- pos: -37.5,-9.5
- parent: 60
- - uid: 11364
- components:
- - type: Transform
- pos: -37.5,-8.5
- parent: 60
- - uid: 11365
- components:
- - type: Transform
- pos: -37.5,-7.5
- parent: 60
- - uid: 11366
- components:
- - type: Transform
- pos: -37.5,-6.5
- parent: 60
- - uid: 11367
- components:
- - type: Transform
- pos: -37.5,-5.5
- parent: 60
- - uid: 11368
- components:
- - type: Transform
- pos: -37.5,-4.5
- parent: 60
- - uid: 11369
- components:
- - type: Transform
- pos: -37.5,-3.5
- parent: 60
- - uid: 11370
- components:
- - type: Transform
- pos: -37.5,-2.5
- parent: 60
- - uid: 11371
- components:
- - type: Transform
- pos: -37.5,-1.5
- parent: 60
- - uid: 11372
- components:
- - type: Transform
- pos: -37.5,-0.5
- parent: 60
- - uid: 11373
- components:
- - type: Transform
- pos: -37.5,0.5
- parent: 60
- - uid: 11374
- components:
- - type: Transform
- pos: -37.5,1.5
- parent: 60
- - uid: 11375
- components:
- - type: Transform
- pos: -37.5,2.5
- parent: 60
- - uid: 11376
- components:
- - type: Transform
- pos: -37.5,3.5
- parent: 60
- - uid: 11377
- components:
- - type: Transform
- pos: -37.5,4.5
- parent: 60
- - uid: 11382
- components:
- - type: Transform
- pos: -33.5,5.5
- parent: 60
- - uid: 11383
- components:
- - type: Transform
- pos: -32.5,5.5
- parent: 60
- - uid: 11384
- components:
- - type: Transform
- pos: -31.5,5.5
- parent: 60
- - uid: 11385
- components:
- - type: Transform
- pos: -30.5,5.5
- parent: 60
- uid: 11386
components:
- type: Transform
- pos: -30.5,4.5
+ pos: -31.5,5.5
parent: 60
- uid: 11451
components:
@@ -36637,6 +36835,11 @@ entities:
- type: Transform
pos: -5.5,-49.5
parent: 60
+ - uid: 11510
+ components:
+ - type: Transform
+ pos: -17.5,-7.5
+ parent: 60
- uid: 11515
components:
- type: Transform
@@ -36672,6 +36875,16 @@ entities:
- type: Transform
pos: -58.5,15.5
parent: 60
+ - uid: 11536
+ components:
+ - type: Transform
+ pos: -33.5,4.5
+ parent: 60
+ - uid: 11555
+ components:
+ - type: Transform
+ pos: -15.5,-24.5
+ parent: 60
- uid: 11584
components:
- type: Transform
@@ -36775,7 +36988,7 @@ entities:
- uid: 11604
components:
- type: Transform
- pos: -46.5,27.5
+ pos: -26.5,4.5
parent: 60
- uid: 11605
components:
@@ -36897,6 +37110,11 @@ entities:
- type: Transform
pos: 38.5,-76.5
parent: 60
+ - uid: 11759
+ components:
+ - type: Transform
+ pos: -16.5,-13.5
+ parent: 60
- uid: 11786
components:
- type: Transform
@@ -37202,6 +37420,11 @@ entities:
- type: Transform
pos: 35.5,-3.5
parent: 60
+ - uid: 11978
+ components:
+ - type: Transform
+ pos: -16.5,-15.5
+ parent: 60
- uid: 11983
components:
- type: Transform
@@ -37417,6 +37640,11 @@ entities:
- type: Transform
pos: 7.5,-37.5
parent: 60
+ - uid: 12189
+ components:
+ - type: Transform
+ pos: -18.5,3.5
+ parent: 60
- uid: 12198
components:
- type: Transform
@@ -37657,6 +37885,11 @@ entities:
- type: Transform
pos: -7.5,39.5
parent: 60
+ - uid: 12598
+ components:
+ - type: Transform
+ pos: -35.5,5.5
+ parent: 60
- uid: 12649
components:
- type: Transform
@@ -37687,6 +37920,16 @@ entities:
- type: Transform
pos: 38.5,-66.5
parent: 60
+ - uid: 12684
+ components:
+ - type: Transform
+ pos: -32.5,5.5
+ parent: 60
+ - uid: 12685
+ components:
+ - type: Transform
+ pos: -18.5,4.5
+ parent: 60
- uid: 12696
components:
- type: Transform
@@ -37977,26 +38220,121 @@ entities:
- type: Transform
pos: 16.5,24.5
parent: 60
+ - uid: 13150
+ components:
+ - type: Transform
+ pos: -16.5,-24.5
+ parent: 60
- uid: 13249
components:
- type: Transform
pos: 5.5,38.5
parent: 60
+ - uid: 13478
+ components:
+ - type: Transform
+ pos: -19.5,4.5
+ parent: 60
- uid: 13532
components:
- type: Transform
pos: -58.5,9.5
parent: 60
+ - uid: 13582
+ components:
+ - type: Transform
+ pos: -16.5,-20.5
+ parent: 60
+ - uid: 13624
+ components:
+ - type: Transform
+ pos: -25.5,4.5
+ parent: 60
+ - uid: 13660
+ components:
+ - type: Transform
+ pos: -15.5,-25.5
+ parent: 60
+ - uid: 13667
+ components:
+ - type: Transform
+ pos: -23.5,4.5
+ parent: 60
- uid: 13694
components:
- type: Transform
pos: -112.5,31.5
parent: 60
+ - uid: 13831
+ components:
+ - type: Transform
+ pos: -2.5,37.5
+ parent: 60
+ - uid: 13958
+ components:
+ - type: Transform
+ pos: -3.5,37.5
+ parent: 60
+ - uid: 13972
+ components:
+ - type: Transform
+ pos: -21.5,4.5
+ parent: 60
+ - uid: 14001
+ components:
+ - type: Transform
+ pos: -0.5,35.5
+ parent: 60
+ - uid: 14002
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 60
+ - uid: 14092
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 60
+ - uid: 14121
+ components:
+ - type: Transform
+ pos: -1.5,36.5
+ parent: 60
+ - uid: 14125
+ components:
+ - type: Transform
+ pos: -1.5,35.5
+ parent: 60
+ - uid: 14126
+ components:
+ - type: Transform
+ pos: -1.5,37.5
+ parent: 60
+ - uid: 14134
+ components:
+ - type: Transform
+ pos: 2.5,35.5
+ parent: 60
+ - uid: 14212
+ components:
+ - type: Transform
+ pos: -34.5,5.5
+ parent: 60
- uid: 14343
components:
- type: Transform
pos: -10.5,24.5
parent: 60
+ - uid: 14523
+ components:
+ - type: Transform
+ pos: 6.5,37.5
+ parent: 60
+ - uid: 14911
+ components:
+ - type: Transform
+ pos: 5.5,37.5
+ parent: 60
- uid: 15124
components:
- type: Transform
@@ -38137,11 +38475,6 @@ entities:
- type: Transform
pos: 3.5,35.5
parent: 60
- - uid: 15523
- components:
- - type: Transform
- pos: -4.5,36.5
- parent: 60
- uid: 15706
components:
- type: Transform
@@ -38797,31 +39130,6 @@ entities:
- type: Transform
pos: -26.5,7.5
parent: 60
- - uid: 15897
- components:
- - type: Transform
- pos: -26.5,6.5
- parent: 60
- - uid: 15898
- components:
- - type: Transform
- pos: -26.5,5.5
- parent: 60
- - uid: 15899
- components:
- - type: Transform
- pos: -27.5,5.5
- parent: 60
- - uid: 15900
- components:
- - type: Transform
- pos: -28.5,5.5
- parent: 60
- - uid: 15901
- components:
- - type: Transform
- pos: -29.5,5.5
- parent: 60
- uid: 15902
components:
- type: Transform
@@ -39687,16 +39995,6 @@ entities:
- type: Transform
pos: 3.5,34.5
parent: 60
- - uid: 16347
- components:
- - type: Transform
- pos: 2.5,34.5
- parent: 60
- - uid: 16348
- components:
- - type: Transform
- pos: 1.5,34.5
- parent: 60
- uid: 16350
components:
- type: Transform
@@ -39727,30 +40025,10 @@ entities:
- type: Transform
pos: 0.5,28.5
parent: 60
- - uid: 16356
- components:
- - type: Transform
- pos: -0.5,34.5
- parent: 60
- - uid: 16357
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 60
- - uid: 16359
- components:
- - type: Transform
- pos: -1.5,35.5
- parent: 60
- - uid: 16360
- components:
- - type: Transform
- pos: -3.5,35.5
- parent: 60
- - uid: 16394
+ - uid: 16456
components:
- type: Transform
- pos: -4.5,35.5
+ pos: -28.5,5.5
parent: 60
- uid: 16502
components:
@@ -39767,10 +40045,10 @@ entities:
- type: Transform
pos: 6.5,38.5
parent: 60
- - uid: 16528
+ - uid: 16678
components:
- type: Transform
- pos: -2.5,35.5
+ pos: -34.5,2.5
parent: 60
- uid: 17085
components:
@@ -39887,21 +40165,6 @@ entities:
- type: Transform
pos: 10.5,57.5
parent: 60
- - uid: 17108
- components:
- - type: Transform
- pos: 8.5,47.5
- parent: 60
- - uid: 17109
- components:
- - type: Transform
- pos: 9.5,47.5
- parent: 60
- - uid: 17110
- components:
- - type: Transform
- pos: 10.5,47.5
- parent: 60
- uid: 17111
components:
- type: Transform
@@ -40027,10 +40290,10 @@ entities:
- type: Transform
pos: -9.5,56.5
parent: 60
- - uid: 17153
+ - uid: 17467
components:
- type: Transform
- pos: 10.5,37.5
+ pos: -33.5,5.5
parent: 60
- uid: 17928
components:
@@ -40092,65 +40355,25 @@ entities:
- type: Transform
pos: -16.5,3.5
parent: 60
- - uid: 17952
- components:
- - type: Transform
- pos: -16.5,4.5
- parent: 60
- - uid: 17953
- components:
- - type: Transform
- pos: -16.5,4.5
- parent: 60
- - uid: 17954
- components:
- - type: Transform
- pos: -17.5,4.5
- parent: 60
- - uid: 17955
- components:
- - type: Transform
- pos: -18.5,4.5
- parent: 60
- uid: 17956
components:
- type: Transform
- pos: -19.5,4.5
- parent: 60
- - uid: 17957
- components:
- - type: Transform
- pos: -20.5,4.5
- parent: 60
- - uid: 17958
- components:
- - type: Transform
- pos: -21.5,4.5
+ pos: -36.5,5.5
parent: 60
- uid: 17959
components:
- type: Transform
- pos: -22.5,4.5
- parent: 60
- - uid: 17960
- components:
- - type: Transform
- pos: -22.5,5.5
- parent: 60
- - uid: 17961
- components:
- - type: Transform
- pos: -23.5,5.5
+ pos: -35.5,-6.5
parent: 60
- uid: 17962
components:
- type: Transform
- pos: -24.5,5.5
+ pos: -35.5,-11.5
parent: 60
- uid: 17963
components:
- type: Transform
- pos: -25.5,5.5
+ pos: -36.5,-6.5
parent: 60
- uid: 17964
components:
@@ -40202,6 +40425,11 @@ entities:
- type: Transform
pos: 11.5,-3.5
parent: 60
+ - uid: 17987
+ components:
+ - type: Transform
+ pos: -35.5,-7.5
+ parent: 60
- uid: 18001
components:
- type: Transform
@@ -40212,6 +40440,21 @@ entities:
- type: Transform
pos: 10.5,-3.5
parent: 60
+ - uid: 18008
+ components:
+ - type: Transform
+ pos: -16.5,2.5
+ parent: 60
+ - uid: 18092
+ components:
+ - type: Transform
+ pos: -35.5,-9.5
+ parent: 60
+ - uid: 18103
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 60
- uid: 18108
components:
- type: Transform
@@ -40507,6 +40750,11 @@ entities:
- type: Transform
pos: 4.5,3.5
parent: 60
+ - uid: 18267
+ components:
+ - type: Transform
+ pos: -36.5,-10.5
+ parent: 60
- uid: 18405
components:
- type: Transform
@@ -40527,6 +40775,81 @@ entities:
- type: Transform
pos: -0.5,-8.5
parent: 60
+ - uid: 18463
+ components:
+ - type: Transform
+ pos: -35.5,-5.5
+ parent: 60
+ - uid: 18509
+ components:
+ - type: Transform
+ pos: -16.5,0.5
+ parent: 60
+ - uid: 18510
+ components:
+ - type: Transform
+ pos: -16.5,-1.5
+ parent: 60
+ - uid: 18592
+ components:
+ - type: Transform
+ pos: -35.5,-10.5
+ parent: 60
+ - uid: 18594
+ components:
+ - type: Transform
+ pos: -16.5,1.5
+ parent: 60
+ - uid: 18595
+ components:
+ - type: Transform
+ pos: -16.5,-9.5
+ parent: 60
+ - uid: 18596
+ components:
+ - type: Transform
+ pos: -16.5,-0.5
+ parent: 60
+ - uid: 18597
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 60
+ - uid: 18598
+ components:
+ - type: Transform
+ pos: -16.5,-2.5
+ parent: 60
+ - uid: 18599
+ components:
+ - type: Transform
+ pos: -17.5,-10.5
+ parent: 60
+ - uid: 18600
+ components:
+ - type: Transform
+ pos: -16.5,-5.5
+ parent: 60
+ - uid: 18602
+ components:
+ - type: Transform
+ pos: -16.5,-8.5
+ parent: 60
+ - uid: 18603
+ components:
+ - type: Transform
+ pos: -16.5,-3.5
+ parent: 60
+ - uid: 18604
+ components:
+ - type: Transform
+ pos: -16.5,-7.5
+ parent: 60
+ - uid: 18605
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 60
- uid: 18613
components:
- type: Transform
@@ -40597,6 +40920,11 @@ entities:
- type: Transform
pos: -9.5,-3.5
parent: 60
+ - uid: 18766
+ components:
+ - type: Transform
+ pos: -16.5,-6.5
+ parent: 60
- uid: 18775
components:
- type: Transform
@@ -40627,6 +40955,11 @@ entities:
- type: Transform
pos: 25.5,4.5
parent: 60
+ - uid: 18998
+ components:
+ - type: Transform
+ pos: -16.5,-10.5
+ parent: 60
- uid: 19205
components:
- type: Transform
@@ -42172,6 +42505,31 @@ entities:
- type: Transform
pos: 4.5,36.5
parent: 60
+ - uid: 21012
+ components:
+ - type: Transform
+ pos: -16.5,-11.5
+ parent: 60
+ - uid: 21050
+ components:
+ - type: Transform
+ pos: -29.5,5.5
+ parent: 60
+ - uid: 21069
+ components:
+ - type: Transform
+ pos: -30.5,5.5
+ parent: 60
+ - uid: 21214
+ components:
+ - type: Transform
+ pos: -20.5,4.5
+ parent: 60
+ - uid: 21217
+ components:
+ - type: Transform
+ pos: -24.5,4.5
+ parent: 60
- uid: 21429
components:
- type: Transform
@@ -42197,11 +42555,26 @@ entities:
- type: Transform
pos: -11.5,-34.5
parent: 60
+ - uid: 21726
+ components:
+ - type: Transform
+ pos: -33.5,3.5
+ parent: 60
- uid: 21741
components:
- type: Transform
pos: 0.5,34.5
parent: 60
+ - uid: 21763
+ components:
+ - type: Transform
+ pos: -16.5,-22.5
+ parent: 60
+ - uid: 21765
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 60
- uid: 22475
components:
- type: Transform
@@ -42252,6 +42625,21 @@ entities:
- type: Transform
pos: -118.5,15.5
parent: 60
+ - uid: 23108
+ components:
+ - type: Transform
+ pos: -33.5,2.5
+ parent: 60
+ - uid: 23644
+ components:
+ - type: Transform
+ pos: -17.5,3.5
+ parent: 60
+ - uid: 23830
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
- uid: 24416
components:
- type: Transform
@@ -42731,6 +43119,21 @@ entities:
- type: Transform
pos: -11.5,4.5
parent: 60
+ - uid: 84
+ components:
+ - type: Transform
+ pos: -31.5,2.5
+ parent: 60
+ - uid: 88
+ components:
+ - type: Transform
+ pos: -30.5,2.5
+ parent: 60
+ - uid: 113
+ components:
+ - type: Transform
+ pos: -21.5,-8.5
+ parent: 60
- uid: 117
components:
- type: Transform
@@ -42741,15 +43144,30 @@ entities:
- type: Transform
pos: 4.5,-32.5
parent: 60
- - uid: 166
+ - uid: 121
components:
- type: Transform
- pos: 41.5,-18.5
+ pos: -22.5,-3.5
parent: 60
- - uid: 178
+ - uid: 149
components:
- type: Transform
- pos: -20.5,-2.5
+ pos: -21.5,-5.5
+ parent: 60
+ - uid: 150
+ components:
+ - type: Transform
+ pos: -21.5,-4.5
+ parent: 60
+ - uid: 156
+ components:
+ - type: Transform
+ pos: -33.5,2.5
+ parent: 60
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 41.5,-18.5
parent: 60
- uid: 241
components:
@@ -42791,31 +43209,11 @@ entities:
- type: Transform
pos: 50.5,-21.5
parent: 60
- - uid: 564
- components:
- - type: Transform
- pos: -17.5,-13.5
- parent: 60
- uid: 592
components:
- type: Transform
pos: -12.5,1.5
parent: 60
- - uid: 628
- components:
- - type: Transform
- pos: -28.5,-16.5
- parent: 60
- - uid: 634
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 60
- - uid: 635
- components:
- - type: Transform
- pos: -29.5,-17.5
- parent: 60
- uid: 718
components:
- type: Transform
@@ -42831,46 +43229,6 @@ entities:
- type: Transform
pos: 51.5,-21.5
parent: 60
- - uid: 774
- components:
- - type: Transform
- pos: -34.5,-6.5
- parent: 60
- - uid: 776
- components:
- - type: Transform
- pos: -29.5,-16.5
- parent: 60
- - uid: 777
- components:
- - type: Transform
- pos: -22.5,-14.5
- parent: 60
- - uid: 779
- components:
- - type: Transform
- pos: -27.5,-5.5
- parent: 60
- - uid: 782
- components:
- - type: Transform
- pos: -35.5,-9.5
- parent: 60
- - uid: 783
- components:
- - type: Transform
- pos: -34.5,-12.5
- parent: 60
- - uid: 793
- components:
- - type: Transform
- pos: -35.5,-6.5
- parent: 60
- - uid: 813
- components:
- - type: Transform
- pos: -22.5,-5.5
- parent: 60
- uid: 814
components:
- type: Transform
@@ -42911,66 +43269,11 @@ entities:
- type: Transform
pos: 4.5,-27.5
parent: 60
- - uid: 1504
- components:
- - type: Transform
- pos: -26.5,-15.5
- parent: 60
- - uid: 1527
- components:
- - type: Transform
- pos: -21.5,-6.5
- parent: 60
- - uid: 1540
- components:
- - type: Transform
- pos: -30.5,5.5
- parent: 60
- - uid: 1541
- components:
- - type: Transform
- pos: -29.5,-14.5
- parent: 60
- - uid: 1542
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 60
- - uid: 1551
- components:
- - type: Transform
- pos: -21.5,-7.5
- parent: 60
- - uid: 1552
- components:
- - type: Transform
- pos: -21.5,-9.5
- parent: 60
- - uid: 1553
- components:
- - type: Transform
- pos: -31.5,-6.5
- parent: 60
- uid: 1554
components:
- type: Transform
pos: 34.5,-15.5
parent: 60
- - uid: 1557
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 60
- - uid: 1558
- components:
- - type: Transform
- pos: -20.5,-7.5
- parent: 60
- - uid: 1561
- components:
- - type: Transform
- pos: -22.5,-13.5
- parent: 60
- uid: 1565
components:
- type: Transform
@@ -42986,106 +43289,6 @@ entities:
- type: Transform
pos: 35.5,-16.5
parent: 60
- - uid: 1568
- components:
- - type: Transform
- pos: -20.5,-10.5
- parent: 60
- - uid: 1569
- components:
- - type: Transform
- pos: -23.5,-17.5
- parent: 60
- - uid: 1570
- components:
- - type: Transform
- pos: -31.5,-10.5
- parent: 60
- - uid: 1571
- components:
- - type: Transform
- pos: -31.5,-11.5
- parent: 60
- - uid: 1572
- components:
- - type: Transform
- pos: -32.5,-6.5
- parent: 60
- - uid: 1573
- components:
- - type: Transform
- pos: -33.5,-6.5
- parent: 60
- - uid: 1574
- components:
- - type: Transform
- pos: -31.5,-7.5
- parent: 60
- - uid: 1575
- components:
- - type: Transform
- pos: -31.5,-8.5
- parent: 60
- - uid: 1576
- components:
- - type: Transform
- pos: -26.5,-17.5
- parent: 60
- - uid: 1577
- components:
- - type: Transform
- pos: -23.5,-16.5
- parent: 60
- - uid: 1578
- components:
- - type: Transform
- pos: -29.5,-5.5
- parent: 60
- - uid: 1579
- components:
- - type: Transform
- pos: -20.5,-13.5
- parent: 60
- - uid: 1580
- components:
- - type: Transform
- pos: -32.5,-7.5
- parent: 60
- - uid: 1581
- components:
- - type: Transform
- pos: -21.5,-8.5
- parent: 60
- - uid: 1582
- components:
- - type: Transform
- pos: -32.5,-10.5
- parent: 60
- - uid: 1583
- components:
- - type: Transform
- pos: -23.5,-18.5
- parent: 60
- - uid: 1584
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 60
- - uid: 1585
- components:
- - type: Transform
- pos: -28.5,-14.5
- parent: 60
- - uid: 1586
- components:
- - type: Transform
- pos: -21.5,-13.5
- parent: 60
- - uid: 1589
- components:
- - type: Transform
- pos: -28.5,-5.5
- parent: 60
- uid: 1590
components:
- type: Transform
@@ -43096,41 +43299,11 @@ entities:
- type: Transform
pos: 4.5,-28.5
parent: 60
- - uid: 1597
- components:
- - type: Transform
- pos: -31.5,-13.5
- parent: 60
- uid: 1598
components:
- type: Transform
pos: 32.5,-16.5
parent: 60
- - uid: 1599
- components:
- - type: Transform
- pos: -22.5,-19.5
- parent: 60
- - uid: 1617
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 60
- - uid: 1618
- components:
- - type: Transform
- pos: -30.5,-14.5
- parent: 60
- - uid: 1623
- components:
- - type: Transform
- pos: -26.5,-16.5
- parent: 60
- - uid: 1659
- components:
- - type: Transform
- pos: -21.5,0.5
- parent: 60
- uid: 1695
components:
- type: Transform
@@ -43141,11 +43314,6 @@ entities:
- type: Transform
pos: 4.5,-29.5
parent: 60
- - uid: 1728
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 60
- uid: 1738
components:
- type: Transform
@@ -43181,20 +43349,30 @@ entities:
- type: Transform
pos: 52.5,-28.5
parent: 60
- - uid: 1843
+ - uid: 1948
components:
- type: Transform
- pos: -18.5,1.5
+ pos: -30.5,-0.5
parent: 60
- - uid: 1971
+ - uid: 1953
components:
- type: Transform
- pos: -21.5,-0.5
+ pos: -30.5,-1.5
parent: 60
- - uid: 1979
+ - uid: 1957
components:
- type: Transform
- pos: -23.5,-15.5
+ pos: -25.5,-2.5
+ parent: 60
+ - uid: 2017
+ components:
+ - type: Transform
+ pos: -34.5,2.5
+ parent: 60
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: -32.5,2.5
parent: 60
- uid: 2058
components:
@@ -43216,10 +43394,25 @@ entities:
- type: Transform
pos: 11.5,-20.5
parent: 60
- - uid: 2105
+ - uid: 2086
components:
- type: Transform
- pos: -21.5,-1.5
+ pos: -25.5,-3.5
+ parent: 60
+ - uid: 2087
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 60
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: -21.5,-6.5
+ parent: 60
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: -30.5,-8.5
parent: 60
- uid: 2136
components:
@@ -43236,11 +43429,6 @@ entities:
- type: Transform
pos: 38.5,-18.5
parent: 60
- - uid: 2160
- components:
- - type: Transform
- pos: -23.5,-19.5
- parent: 60
- uid: 2171
components:
- type: Transform
@@ -43351,11 +43539,21 @@ entities:
- type: Transform
pos: -55.5,-18.5
parent: 60
+ - uid: 3196
+ components:
+ - type: Transform
+ pos: -20.5,-1.5
+ parent: 60
- uid: 3203
components:
- type: Transform
pos: -52.5,-18.5
parent: 60
+ - uid: 3217
+ components:
+ - type: Transform
+ pos: -31.5,-12.5
+ parent: 60
- uid: 3222
components:
- type: Transform
@@ -43396,71 +43594,31 @@ entities:
- type: Transform
pos: -7.5,38.5
parent: 60
- - uid: 4108
- components:
- - type: Transform
- pos: -13.5,-14.5
- parent: 60
- - uid: 4457
+ - uid: 4010
components:
- type: Transform
- pos: -31.5,5.5
+ pos: -30.5,-2.5
parent: 60
- - uid: 4504
+ - uid: 4011
components:
- type: Transform
- pos: -35.5,-10.5
+ pos: -28.5,-15.5
parent: 60
- - uid: 4505
+ - uid: 4080
components:
- type: Transform
- pos: -32.5,-12.5
+ pos: -25.5,-18.5
parent: 60
- - uid: 4506
+ - uid: 4108
components:
- type: Transform
- pos: -33.5,-12.5
+ pos: -13.5,-14.5
parent: 60
- uid: 4508
components:
- type: Transform
pos: -1.5,-74.5
parent: 60
- - uid: 4561
- components:
- - type: Transform
- pos: -24.5,-5.5
- parent: 60
- - uid: 4562
- components:
- - type: Transform
- pos: -33.5,-9.5
- parent: 60
- - uid: 4563
- components:
- - type: Transform
- pos: -26.5,-5.5
- parent: 60
- - uid: 4564
- components:
- - type: Transform
- pos: -32.5,-9.5
- parent: 60
- - uid: 4565
- components:
- - type: Transform
- pos: -34.5,-9.5
- parent: 60
- - uid: 4566
- components:
- - type: Transform
- pos: -23.5,-5.5
- parent: 60
- - uid: 4567
- components:
- - type: Transform
- pos: -25.5,-5.5
- parent: 60
- uid: 4619
components:
- type: Transform
@@ -43651,56 +43809,11 @@ entities:
- type: Transform
pos: 46.5,2.5
parent: 60
- - uid: 5423
- components:
- - type: Transform
- pos: -21.5,-5.5
- parent: 60
- - uid: 5427
- components:
- - type: Transform
- pos: -30.5,-5.5
- parent: 60
- - uid: 5428
- components:
- - type: Transform
- pos: -27.5,-14.5
- parent: 60
- - uid: 5429
- components:
- - type: Transform
- pos: -20.5,-17.5
- parent: 60
- - uid: 5430
- components:
- - type: Transform
- pos: -18.5,-17.5
- parent: 60
- - uid: 5431
- components:
- - type: Transform
- pos: -21.5,-16.5
- parent: 60
- - uid: 5436
- components:
- - type: Transform
- pos: -20.5,-6.5
- parent: 60
- uid: 5455
components:
- type: Transform
pos: 52.5,-29.5
parent: 60
- - uid: 5682
- components:
- - type: Transform
- pos: -23.5,-14.5
- parent: 60
- - uid: 5689
- components:
- - type: Transform
- pos: -25.5,-14.5
- parent: 60
- uid: 5833
components:
- type: Transform
@@ -43716,21 +43829,11 @@ entities:
- type: Transform
pos: 36.5,-7.5
parent: 60
- - uid: 5909
- components:
- - type: Transform
- pos: -30.5,-13.5
- parent: 60
- uid: 5934
components:
- type: Transform
pos: 48.5,-9.5
parent: 60
- - uid: 5974
- components:
- - type: Transform
- pos: -32.5,5.5
- parent: 60
- uid: 6066
components:
- type: Transform
@@ -43851,126 +43954,16 @@ entities:
- type: Transform
pos: -11.5,-54.5
parent: 60
- - uid: 6702
- components:
- - type: Transform
- pos: -35.5,-13.5
- parent: 60
- - uid: 6703
- components:
- - type: Transform
- pos: -35.5,-12.5
- parent: 60
- - uid: 6704
- components:
- - type: Transform
- pos: -17.5,-6.5
- parent: 60
- - uid: 6705
- components:
- - type: Transform
- pos: -17.5,-7.5
- parent: 60
- - uid: 6706
- components:
- - type: Transform
- pos: -20.5,-12.5
- parent: 60
- - uid: 6707
- components:
- - type: Transform
- pos: -18.5,-9.5
- parent: 60
- - uid: 6708
- components:
- - type: Transform
- pos: -20.5,-9.5
- parent: 60
- - uid: 6709
- components:
- - type: Transform
- pos: -18.5,-6.5
- parent: 60
- - uid: 6710
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 60
- uid: 6713
components:
- type: Transform
pos: -12.5,-54.5
parent: 60
- - uid: 6794
- components:
- - type: Transform
- pos: -21.5,-2.5
- parent: 60
- uid: 6817
components:
- type: Transform
pos: 36.5,-8.5
parent: 60
- - uid: 6818
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 60
- - uid: 6819
- components:
- - type: Transform
- pos: -19.5,-9.5
- parent: 60
- - uid: 6828
- components:
- - type: Transform
- pos: -21.5,-3.5
- parent: 60
- - uid: 6884
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- - uid: 6885
- components:
- - type: Transform
- pos: -22.5,-16.5
- parent: 60
- - uid: 6886
- components:
- - type: Transform
- pos: -20.5,-16.5
- parent: 60
- - uid: 6887
- components:
- - type: Transform
- pos: -19.5,-16.5
- parent: 60
- - uid: 6888
- components:
- - type: Transform
- pos: -18.5,-16.5
- parent: 60
- - uid: 6889
- components:
- - type: Transform
- pos: -24.5,-14.5
- parent: 60
- - uid: 6890
- components:
- - type: Transform
- pos: -26.5,-14.5
- parent: 60
- - uid: 6992
- components:
- - type: Transform
- pos: -17.5,-9.5
- parent: 60
- - uid: 7031
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 60
- uid: 7197
components:
- type: Transform
@@ -44001,11 +43994,6 @@ entities:
- type: Transform
pos: 41.5,-42.5
parent: 60
- - uid: 7612
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 60
- uid: 7694
components:
- type: Transform
@@ -44016,16 +44004,6 @@ entities:
- type: Transform
pos: 46.5,3.5
parent: 60
- - uid: 7813
- components:
- - type: Transform
- pos: -21.5,-4.5
- parent: 60
- - uid: 8030
- components:
- - type: Transform
- pos: -17.5,-10.5
- parent: 60
- uid: 8114
components:
- type: Transform
@@ -44161,115 +44139,255 @@ entities:
- type: Transform
pos: 41.5,-48.5
parent: 60
- - uid: 8231
+ - uid: 8280
components:
- type: Transform
- pos: -31.5,-9.5
+ pos: -19.5,0.5
parent: 60
- - uid: 8232
+ - uid: 8281
components:
- type: Transform
- pos: -31.5,-12.5
+ pos: -30.5,-4.5
parent: 60
- - uid: 8245
+ - uid: 8283
components:
- type: Transform
- pos: -30.5,-15.5
+ pos: -30.5,-7.5
parent: 60
- - uid: 8246
+ - uid: 8284
components:
- type: Transform
- pos: -31.5,-15.5
+ pos: -29.5,-3.5
+ parent: 60
+ - uid: 8285
+ components:
+ - type: Transform
+ pos: -30.5,-5.5
+ parent: 60
+ - uid: 8286
+ components:
+ - type: Transform
+ pos: -30.5,-3.5
+ parent: 60
+ - uid: 8287
+ components:
+ - type: Transform
+ pos: -30.5,-10.5
+ parent: 60
+ - uid: 8288
+ components:
+ - type: Transform
+ pos: -21.5,-7.5
+ parent: 60
+ - uid: 8289
+ components:
+ - type: Transform
+ pos: -24.5,-3.5
+ parent: 60
+ - uid: 8290
+ components:
+ - type: Transform
+ pos: -32.5,-12.5
+ parent: 60
+ - uid: 8293
+ components:
+ - type: Transform
+ pos: -27.5,-2.5
+ parent: 60
+ - uid: 8294
+ components:
+ - type: Transform
+ pos: -18.5,-1.5
+ parent: 60
+ - uid: 8295
+ components:
+ - type: Transform
+ pos: -26.5,-3.5
+ parent: 60
+ - uid: 8326
+ components:
+ - type: Transform
+ pos: -28.5,-3.5
+ parent: 60
+ - uid: 8327
+ components:
+ - type: Transform
+ pos: -27.5,-3.5
+ parent: 60
+ - uid: 8328
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 60
+ - uid: 8329
+ components:
+ - type: Transform
+ pos: -25.5,-20.5
+ parent: 60
+ - uid: 8330
+ components:
+ - type: Transform
+ pos: -30.5,-9.5
+ parent: 60
+ - uid: 8331
+ components:
+ - type: Transform
+ pos: -24.5,-2.5
+ parent: 60
+ - uid: 8332
+ components:
+ - type: Transform
+ pos: -30.5,-11.5
+ parent: 60
+ - uid: 8333
+ components:
+ - type: Transform
+ pos: -30.5,-12.5
+ parent: 60
+ - uid: 8334
+ components:
+ - type: Transform
+ pos: -26.5,-15.5
+ parent: 60
+ - uid: 8338
+ components:
+ - type: Transform
+ pos: -22.5,-15.5
+ parent: 60
+ - uid: 8351
+ components:
+ - type: Transform
+ pos: -25.5,-16.5
+ parent: 60
+ - uid: 8392
+ components:
+ - type: Transform
+ pos: -21.5,-10.5
+ parent: 60
+ - uid: 8401
+ components:
+ - type: Transform
+ pos: -30.5,-6.5
parent: 60
- uid: 8402
components:
- type: Transform
pos: -25.5,52.5
parent: 60
- - uid: 8581
+ - uid: 8403
components:
- type: Transform
- pos: -28.5,-15.5
+ pos: -18.5,-0.5
parent: 60
- - uid: 8666
+ - uid: 8418
components:
- type: Transform
- pos: -24.5,-17.5
+ pos: -21.5,-2.5
parent: 60
- - uid: 8668
+ - uid: 8425
components:
- type: Transform
- pos: -30.5,4.5
+ pos: -25.5,-17.5
parent: 60
- - uid: 8670
+ - uid: 8430
components:
- type: Transform
- pos: -32.5,4.5
+ pos: -20.5,-12.5
parent: 60
- - uid: 8671
+ - uid: 8446
components:
- type: Transform
pos: -32.5,3.5
parent: 60
- - uid: 8672
+ - uid: 8463
components:
- type: Transform
- pos: -32.5,2.5
+ pos: -30.5,-14.5
parent: 60
- - uid: 8673
+ - uid: 8507
components:
- type: Transform
- pos: -32.5,1.5
+ pos: -30.5,-13.5
+ parent: 60
+ - uid: 8515
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 60
+ - uid: 8524
+ components:
+ - type: Transform
+ pos: -30.5,-15.5
+ parent: 60
+ - uid: 8578
+ components:
+ - type: Transform
+ pos: -22.5,-13.5
+ parent: 60
+ - uid: 8579
+ components:
+ - type: Transform
+ pos: -23.5,-15.5
parent: 60
- uid: 8674
components:
- type: Transform
- pos: -32.5,0.5
+ pos: -29.5,-15.5
parent: 60
- uid: 8675
components:
- type: Transform
- pos: -32.5,-0.5
+ pos: -24.5,-15.5
parent: 60
- - uid: 8676
+ - uid: 8683
components:
- type: Transform
- pos: -31.5,-0.5
+ pos: -22.5,-12.5
parent: 60
- - uid: 8677
+ - uid: 8684
components:
- type: Transform
- pos: -30.5,-0.5
+ pos: -22.5,-14.5
parent: 60
- - uid: 8678
+ - uid: 8694
components:
- type: Transform
- pos: -29.5,-1.5
+ pos: -23.5,-3.5
parent: 60
- - uid: 8679
+ - uid: 8714
components:
- type: Transform
- pos: -30.5,-1.5
+ pos: -25.5,-15.5
parent: 60
- - uid: 8680
+ - uid: 8718
components:
- type: Transform
- pos: -30.5,-2.5
+ pos: -25.5,-21.5
parent: 60
- - uid: 8681
+ - uid: 8719
components:
- type: Transform
- pos: -30.5,-2.5
+ pos: -21.5,-1.5
parent: 60
- - uid: 8682
+ - uid: 8735
components:
- type: Transform
- pos: -30.5,-3.5
+ pos: -27.5,-15.5
parent: 60
- - uid: 8683
+ - uid: 8744
components:
- type: Transform
- pos: -30.5,-4.5
+ pos: -21.5,-11.5
+ parent: 60
+ - uid: 8791
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 60
+ - uid: 8883
+ components:
+ - type: Transform
+ pos: -25.5,-19.5
parent: 60
- uid: 8913
components:
@@ -45266,11 +45384,6 @@ entities:
- type: Transform
pos: 41.5,-43.5
parent: 60
- - uid: 10829
- components:
- - type: Transform
- pos: -30.5,-6.5
- parent: 60
- uid: 10846
components:
- type: Transform
@@ -45711,6 +45824,11 @@ entities:
- type: Transform
pos: 26.5,-39.5
parent: 60
+ - uid: 11375
+ components:
+ - type: Transform
+ pos: -30.5,1.5
+ parent: 60
- uid: 11467
components:
- type: Transform
@@ -45721,6 +45839,16 @@ entities:
- type: Transform
pos: 50.5,-32.5
parent: 60
+ - uid: 11556
+ components:
+ - type: Transform
+ pos: -21.5,-12.5
+ parent: 60
+ - uid: 11576
+ components:
+ - type: Transform
+ pos: -30.5,0.5
+ parent: 60
- uid: 11651
components:
- type: Transform
@@ -45766,11 +45894,6 @@ entities:
- type: Transform
pos: 29.5,18.5
parent: 60
- - uid: 11759
- components:
- - type: Transform
- pos: -20.5,-4.5
- parent: 60
- uid: 11890
components:
- type: Transform
@@ -46096,6 +46219,11 @@ entities:
- type: Transform
pos: 51.5,14.5
parent: 60
+ - uid: 13269
+ components:
+ - type: Transform
+ pos: -1.5,36.5
+ parent: 60
- uid: 13274
components:
- type: Transform
@@ -46176,6 +46304,11 @@ entities:
- type: Transform
pos: 52.5,14.5
parent: 60
+ - uid: 13383
+ components:
+ - type: Transform
+ pos: -21.5,-3.5
+ parent: 60
- uid: 13391
components:
- type: Transform
@@ -46351,6 +46484,56 @@ entities:
- type: Transform
pos: -11.5,-16.5
parent: 60
+ - uid: 13829
+ components:
+ - type: Transform
+ pos: -0.5,35.5
+ parent: 60
+ - uid: 13982
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 60
+ - uid: 13983
+ components:
+ - type: Transform
+ pos: -19.5,-1.5
+ parent: 60
+ - uid: 13987
+ components:
+ - type: Transform
+ pos: -3.5,37.5
+ parent: 60
+ - uid: 14055
+ components:
+ - type: Transform
+ pos: -19.5,-0.5
+ parent: 60
+ - uid: 14091
+ components:
+ - type: Transform
+ pos: -1.5,35.5
+ parent: 60
+ - uid: 14120
+ components:
+ - type: Transform
+ pos: -1.5,37.5
+ parent: 60
+ - uid: 14122
+ components:
+ - type: Transform
+ pos: 1.5,35.5
+ parent: 60
+ - uid: 14124
+ components:
+ - type: Transform
+ pos: -2.5,37.5
+ parent: 60
+ - uid: 14224
+ components:
+ - type: Transform
+ pos: -32.5,1.5
+ parent: 60
- uid: 14329
components:
- type: Transform
@@ -46921,11 +47104,6 @@ entities:
- type: Transform
pos: -6.5,41.5
parent: 60
- - uid: 16362
- components:
- - type: Transform
- pos: -3.5,35.5
- parent: 60
- uid: 16372
components:
- type: Transform
@@ -46951,36 +47129,6 @@ entities:
- type: Transform
pos: 2.5,34.5
parent: 60
- - uid: 16388
- components:
- - type: Transform
- pos: 1.5,34.5
- parent: 60
- - uid: 16389
- components:
- - type: Transform
- pos: 0.5,34.5
- parent: 60
- - uid: 16390
- components:
- - type: Transform
- pos: -0.5,34.5
- parent: 60
- - uid: 16391
- components:
- - type: Transform
- pos: -1.5,34.5
- parent: 60
- - uid: 16395
- components:
- - type: Transform
- pos: -4.5,35.5
- parent: 60
- - uid: 16422
- components:
- - type: Transform
- pos: -4.5,36.5
- parent: 60
- uid: 16435
components:
- type: Transform
@@ -46991,21 +47139,11 @@ entities:
- type: Transform
pos: 2.5,33.5
parent: 60
- - uid: 16449
- components:
- - type: Transform
- pos: -2.5,35.5
- parent: 60
- uid: 16504
components:
- type: Transform
pos: 5.5,34.5
parent: 60
- - uid: 16529
- components:
- - type: Transform
- pos: -1.5,35.5
- parent: 60
- uid: 16686
components:
- type: Transform
@@ -47181,11 +47319,6 @@ entities:
- type: Transform
pos: -8.5,2.5
parent: 60
- - uid: 18096
- components:
- - type: Transform
- pos: -32.5,-14.5
- parent: 60
- uid: 18282
components:
- type: Transform
@@ -47251,16 +47384,6 @@ entities:
- type: Transform
pos: -93.5,17.5
parent: 60
- - uid: 18521
- components:
- - type: Transform
- pos: -32.5,-15.5
- parent: 60
- - uid: 18547
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 60
- uid: 18575
components:
- type: Transform
@@ -47361,16 +47484,6 @@ entities:
- type: Transform
pos: -12.5,-4.5
parent: 60
- - uid: 18790
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 60
- - uid: 18791
- components:
- - type: Transform
- pos: -19.5,1.5
- parent: 60
- uid: 18842
components:
- type: Transform
@@ -48651,6 +48764,21 @@ entities:
- type: Transform
pos: 27.5,-34.5
parent: 60
+ - uid: 23839
+ components:
+ - type: Transform
+ pos: -26.5,-14.5
+ parent: 60
+ - uid: 23851
+ components:
+ - type: Transform
+ pos: -26.5,-13.5
+ parent: 60
+ - uid: 23852
+ components:
+ - type: Transform
+ pos: -27.5,-13.5
+ parent: 60
- uid: 24094
components:
- type: Transform
@@ -49427,21 +49555,6 @@ entities:
parent: 60
- proto: Carpet
entities:
- - uid: 1656
- components:
- - type: Transform
- pos: -20.5,0.5
- parent: 60
- - uid: 1962
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 60
- - uid: 2098
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 60
- uid: 4276
components:
- type: Transform
@@ -49462,93 +49575,46 @@ entities:
- type: Transform
pos: -46.5,-18.5
parent: 60
- - uid: 5835
- components:
- - type: Transform
- pos: -21.5,0.5
- parent: 60
- - uid: 7293
- components:
- - type: Transform
- pos: -26.5,-29.5
- parent: 60
- - uid: 10823
- components:
- - type: Transform
- pos: 3.5,-3.5
- parent: 7536
- - uid: 14163
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,20.5
- parent: 60
- - uid: 14164
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,21.5
- parent: 60
- - uid: 14165
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,20.5
- parent: 60
- - uid: 14166
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,21.5
- parent: 60
- - uid: 14167
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,20.5
- parent: 60
- - uid: 14168
+ - uid: 5660
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -9.5,21.5
+ pos: -19.5,-3.5
parent: 60
- - uid: 14169
+ - uid: 5910
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -9.5,11.5
+ pos: -21.5,0.5
parent: 60
- - uid: 14170
+ - uid: 6091
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -9.5,12.5
+ pos: -20.5,0.5
parent: 60
- - uid: 14171
+ - uid: 7293
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,13.5
+ pos: -26.5,-29.5
parent: 60
- - uid: 14172
+ - uid: 8227
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -8.5,11.5
+ pos: -21.5,-0.5
parent: 60
- - uid: 14173
+ - uid: 8255
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -8.5,12.5
+ pos: -20.5,-0.5
parent: 60
- - uid: 14174
+ - uid: 10823
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,13.5
- parent: 60
+ pos: 3.5,-3.5
+ parent: 7536
- uid: 14485
components:
- type: Transform
@@ -49614,6 +49680,113 @@ entities:
- type: Transform
pos: -25.5,-28.5
parent: 60
+- proto: CarpetBlack
+ entities:
+ - uid: 4527
+ components:
+ - type: Transform
+ pos: -11.5,18.5
+ parent: 60
+ - uid: 13095
+ components:
+ - type: Transform
+ pos: -11.5,16.5
+ parent: 60
+ - uid: 14135
+ components:
+ - type: Transform
+ pos: -8.5,16.5
+ parent: 60
+ - uid: 14136
+ components:
+ - type: Transform
+ pos: -7.5,16.5
+ parent: 60
+ - uid: 14137
+ components:
+ - type: Transform
+ pos: -8.5,17.5
+ parent: 60
+ - uid: 14138
+ components:
+ - type: Transform
+ pos: -8.5,19.5
+ parent: 60
+ - uid: 14141
+ components:
+ - type: Transform
+ pos: -8.5,18.5
+ parent: 60
+ - uid: 14144
+ components:
+ - type: Transform
+ pos: -9.5,16.5
+ parent: 60
+ - uid: 14145
+ components:
+ - type: Transform
+ pos: -9.5,18.5
+ parent: 60
+ - uid: 14147
+ components:
+ - type: Transform
+ pos: -8.5,15.5
+ parent: 60
+ - uid: 14170
+ components:
+ - type: Transform
+ pos: -7.5,17.5
+ parent: 60
+ - uid: 14210
+ components:
+ - type: Transform
+ pos: -10.5,17.5
+ parent: 60
+ - uid: 14216
+ components:
+ - type: Transform
+ pos: -10.5,18.5
+ parent: 60
+ - uid: 14218
+ components:
+ - type: Transform
+ pos: -10.5,19.5
+ parent: 60
+ - uid: 14326
+ components:
+ - type: Transform
+ pos: -11.5,17.5
+ parent: 60
+ - uid: 14510
+ components:
+ - type: Transform
+ pos: -10.5,15.5
+ parent: 60
+ - uid: 16307
+ components:
+ - type: Transform
+ pos: -10.5,16.5
+ parent: 60
+ - uid: 16360
+ components:
+ - type: Transform
+ pos: -9.5,15.5
+ parent: 60
+ - uid: 16419
+ components:
+ - type: Transform
+ pos: -9.5,19.5
+ parent: 60
+ - uid: 16437
+ components:
+ - type: Transform
+ pos: -7.5,18.5
+ parent: 60
+ - uid: 17110
+ components:
+ - type: Transform
+ pos: -9.5,17.5
+ parent: 60
- proto: CarpetBlue
entities:
- uid: 17643
@@ -49883,96 +50056,6 @@ entities:
- type: Transform
pos: 21.5,-37.5
parent: 60
- - uid: 14147
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,15.5
- parent: 60
- - uid: 14148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,16.5
- parent: 60
- - uid: 14149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,17.5
- parent: 60
- - uid: 14150
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -10.5,18.5
- parent: 60
- - uid: 14151
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,15.5
- parent: 60
- - uid: 14152
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,16.5
- parent: 60
- - uid: 14154
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,18.5
- parent: 60
- - uid: 14155
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,15.5
- parent: 60
- - uid: 14156
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,16.5
- parent: 60
- - uid: 14157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,17.5
- parent: 60
- - uid: 14158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,18.5
- parent: 60
- - uid: 14159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,15.5
- parent: 60
- - uid: 14160
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,16.5
- parent: 60
- - uid: 14161
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,17.5
- parent: 60
- - uid: 14162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,18.5
- parent: 60
- uid: 14188
components:
- type: Transform
@@ -49985,12 +50068,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,25.5
parent: 60
- - uid: 14326
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -9.5,17.5
- parent: 60
- uid: 17207
components:
- type: Transform
@@ -50163,51 +50240,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -6.5,-45.5
parent: 60
- - uid: 4211
- components:
- - type: Transform
- pos: -40.5,-20.5
- parent: 60
- - uid: 4212
- components:
- - type: Transform
- pos: -41.5,-20.5
- parent: 60
- - uid: 4213
- components:
- - type: Transform
- pos: -42.5,-20.5
- parent: 60
- - uid: 4214
- components:
- - type: Transform
- pos: -43.5,-20.5
- parent: 60
- - uid: 4215
- components:
- - type: Transform
- pos: -44.5,-20.5
- parent: 60
- - uid: 4216
- components:
- - type: Transform
- pos: -44.5,-20.5
- parent: 60
- - uid: 4217
- components:
- - type: Transform
- pos: -46.5,-20.5
- parent: 60
- - uid: 4218
- components:
- - type: Transform
- pos: -45.5,-20.5
- parent: 60
- - uid: 4220
- components:
- - type: Transform
- pos: -43.5,-19.5
- parent: 60
- uid: 6597
components:
- type: Transform
@@ -50610,6 +50642,11 @@ entities:
- type: Transform
pos: -56.5,-18.5
parent: 60
+ - uid: 98
+ components:
+ - type: Transform
+ pos: -48.5,27.5
+ parent: 60
- uid: 399
components:
- type: Transform
@@ -50660,6 +50697,11 @@ entities:
- type: Transform
pos: -12.5,24.5
parent: 60
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: -52.5,27.5
+ parent: 60
- uid: 1988
components:
- type: Transform
@@ -50770,6 +50812,21 @@ entities:
- type: Transform
pos: 5.5,-41.5
parent: 60
+ - uid: 4211
+ components:
+ - type: Transform
+ pos: -32.5,5.5
+ parent: 60
+ - uid: 4212
+ components:
+ - type: Transform
+ pos: -33.5,5.5
+ parent: 60
+ - uid: 4213
+ components:
+ - type: Transform
+ pos: -34.5,5.5
+ parent: 60
- uid: 4279
components:
- type: Transform
@@ -50815,6 +50872,12 @@ entities:
- type: Transform
pos: -52.5,-22.5
parent: 60
+ - uid: 4746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,3.5
+ parent: 60
- uid: 5175
components:
- type: Transform
@@ -51575,6 +51638,12 @@ entities:
- type: Transform
pos: -73.5,-20.5
parent: 60
+ - uid: 8344
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,2.5
+ parent: 60
- uid: 8364
components:
- type: Transform
@@ -51625,6 +51694,11 @@ entities:
- type: Transform
pos: -73.5,-16.5
parent: 60
+ - uid: 8456
+ components:
+ - type: Transform
+ pos: -24.5,4.5
+ parent: 60
- uid: 8485
components:
- type: Transform
@@ -51670,6 +51744,11 @@ entities:
- type: Transform
pos: -84.5,-18.5
parent: 60
+ - uid: 8513
+ components:
+ - type: Transform
+ pos: -27.5,5.5
+ parent: 60
- uid: 8529
components:
- type: Transform
@@ -51860,6 +51939,16 @@ entities:
- type: Transform
pos: -58.5,-5.5
parent: 60
+ - uid: 9032
+ components:
+ - type: Transform
+ pos: -22.5,4.5
+ parent: 60
+ - uid: 9033
+ components:
+ - type: Transform
+ pos: -25.5,4.5
+ parent: 60
- uid: 9064
components:
- type: Transform
@@ -52390,6 +52479,12 @@ entities:
- type: Transform
pos: 47.5,-41.5
parent: 60
+ - uid: 11376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,2.5
+ parent: 60
- uid: 11387
components:
- type: Transform
@@ -53474,6 +53569,11 @@ entities:
- type: Transform
pos: 54.5,-11.5
parent: 60
+ - uid: 13139
+ components:
+ - type: Transform
+ pos: -23.5,4.5
+ parent: 60
- uid: 13320
components:
- type: Transform
@@ -53524,6 +53624,11 @@ entities:
- type: Transform
pos: 53.5,4.5
parent: 60
+ - uid: 13569
+ components:
+ - type: Transform
+ pos: 0.5,34.5
+ parent: 60
- uid: 13574
components:
- type: Transform
@@ -53589,6 +53694,11 @@ entities:
- type: Transform
pos: -60.5,-5.5
parent: 60
+ - uid: 14133
+ components:
+ - type: Transform
+ pos: 0.5,35.5
+ parent: 60
- uid: 14390
components:
- type: Transform
@@ -53889,6 +53999,31 @@ entities:
- type: Transform
pos: -81.5,17.5
parent: 60
+ - uid: 16439
+ components:
+ - type: Transform
+ pos: -6.5,46.5
+ parent: 60
+ - uid: 16449
+ components:
+ - type: Transform
+ pos: -6.5,48.5
+ parent: 60
+ - uid: 16500
+ components:
+ - type: Transform
+ pos: -6.5,47.5
+ parent: 60
+ - uid: 16505
+ components:
+ - type: Transform
+ pos: 7.5,48.5
+ parent: 60
+ - uid: 16508
+ components:
+ - type: Transform
+ pos: 7.5,47.5
+ parent: 60
- uid: 17685
components:
- type: Transform
@@ -54104,62 +54239,37 @@ entities:
- type: Transform
pos: -25.5,49.5
parent: 60
- - uid: 18007
- components:
- - type: Transform
- pos: -92.5,16.5
- parent: 60
- - uid: 18484
- components:
- - type: Transform
- pos: 3.5,-11.5
- parent: 60
- - uid: 18485
- components:
- - type: Transform
- pos: 3.5,-10.5
- parent: 60
- - uid: 18590
+ - uid: 17953
components:
- type: Transform
pos: -28.5,5.5
parent: 60
- - uid: 18591
- components:
- - type: Transform
- pos: -27.5,5.5
- parent: 60
- - uid: 18594
- components:
- - type: Transform
- pos: -25.5,5.5
- parent: 60
- - uid: 18595
+ - uid: 18007
components:
- type: Transform
- pos: -24.5,5.5
+ pos: -92.5,16.5
parent: 60
- - uid: 18596
+ - uid: 18438
components:
- type: Transform
- pos: -23.5,5.5
+ pos: -30.5,5.5
parent: 60
- - uid: 18597
+ - uid: 18484
components:
- type: Transform
- pos: -22.5,4.5
+ pos: 3.5,-11.5
parent: 60
- - uid: 18598
+ - uid: 18485
components:
- type: Transform
- pos: -21.5,4.5
+ pos: 3.5,-10.5
parent: 60
- - uid: 18599
+ - uid: 18547
components:
- type: Transform
- pos: -20.5,4.5
+ pos: -31.5,5.5
parent: 60
- - uid: 18600
+ - uid: 18591
components:
- type: Transform
pos: -19.5,4.5
@@ -54167,7 +54277,7 @@ entities:
- uid: 18601
components:
- type: Transform
- pos: -18.5,4.5
+ pos: -21.5,4.5
parent: 60
- uid: 18726
components:
@@ -54354,6 +54464,11 @@ entities:
- type: Transform
pos: 55.5,-23.5
parent: 60
+ - uid: 18827
+ components:
+ - type: Transform
+ pos: -29.5,5.5
+ parent: 60
- uid: 19000
components:
- type: Transform
@@ -54379,6 +54494,11 @@ entities:
- type: Transform
pos: 40.5,4.5
parent: 60
+ - uid: 19130
+ components:
+ - type: Transform
+ pos: -20.5,4.5
+ parent: 60
- uid: 19703
components:
- type: Transform
@@ -55946,6 +56066,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -75.5,22.5
parent: 60
+ - uid: 21645
+ components:
+ - type: Transform
+ pos: 7.5,46.5
+ parent: 60
- uid: 21792
components:
- type: Transform
@@ -56352,12 +56477,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 56.5,-5.5
parent: 60
- - uid: 69
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-18.5
- parent: 60
- uid: 662
components:
- type: Transform
@@ -56389,17 +56508,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -63.5,-13.5
parent: 60
- - uid: 1448
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -46.5,-19.5
- parent: 60
- - uid: 1480
+ - uid: 1648
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -40.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-20.5
parent: 60
- uid: 1672
components:
@@ -56407,16 +56520,23 @@ entities:
rot: -1.5707963267948966 rad
pos: -59.5,-2.5
parent: 60
- - uid: 1701
+ - uid: 1810
components:
- type: Transform
- pos: -33.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-42.5
parent: 60
- - uid: 1810
+ - uid: 1867
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 54.5,-42.5
+ pos: -25.5,-20.5
+ parent: 60
+ - uid: 2088
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,0.5
parent: 60
- uid: 2143
components:
@@ -56441,54 +56561,6 @@ entities:
- type: Transform
pos: -66.5,8.5
parent: 60
- - uid: 4200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-19.5
- parent: 60
- - uid: 4201
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-19.5
- parent: 60
- - uid: 4202
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-19.5
- parent: 60
- - uid: 4203
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-19.5
- parent: 60
- - uid: 4206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -41.5,-21.5
- parent: 60
- - uid: 4207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-21.5
- parent: 60
- - uid: 4208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -44.5,-21.5
- parent: 60
- - uid: 4209
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -45.5,-21.5
- parent: 60
- uid: 4233
components:
- type: Transform
@@ -56558,11 +56630,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,-49.5
parent: 60
- - uid: 5010
- components:
- - type: Transform
- pos: -33.5,-15.5
- parent: 60
- uid: 5096
components:
- type: Transform
@@ -56590,12 +56657,6 @@ entities:
- type: Transform
pos: -11.5,-55.5
parent: 60
- - uid: 5971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-20.5
- parent: 60
- uid: 6322
components:
- type: Transform
@@ -56762,11 +56823,6 @@ entities:
- type: Transform
pos: -36.5,-24.5
parent: 60
- - uid: 7786
- components:
- - type: Transform
- pos: -32.5,4.5
- parent: 60
- uid: 7791
components:
- type: Transform
@@ -56784,11 +56840,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,-50.5
parent: 60
- - uid: 9042
+ - uid: 8510
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-0.5
parent: 60
- uid: 9079
components:
@@ -56807,18 +56863,6 @@ entities:
rot: 3.141592653589793 rad
pos: 55.5,-13.5
parent: 60
- - uid: 9309
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-2.5
- parent: 60
- - uid: 9546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-3.5
- parent: 60
- uid: 9604
components:
- type: Transform
@@ -56834,11 +56878,17 @@ entities:
- type: Transform
pos: -48.5,4.5
parent: 60
- - uid: 9680
+ - uid: 11377
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-0.5
+ parent: 60
+ - uid: 11385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,0.5
parent: 60
- uid: 11480
components:
@@ -56885,12 +56935,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,21.5
parent: 60
- - uid: 16150
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-17.5
- parent: 60
- uid: 17262
components:
- type: Transform
@@ -56921,6 +56965,12 @@ entities:
- type: Transform
pos: -26.5,26.5
parent: 60
+ - uid: 17330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-4.5
+ parent: 60
- uid: 17669
components:
- type: Transform
@@ -56980,18 +57030,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,-51.5
parent: 60
- - uid: 18103
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,0.5
- parent: 60
- - uid: 18104
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,-1.5
- parent: 60
- uid: 18210
components:
- type: Transform
@@ -57002,13 +57040,7 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 60
- - uid: 18487
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-3.5
+ pos: -0.5,-5.5
parent: 60
- uid: 18524
components:
@@ -57068,12 +57100,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 52.5,-42.5
parent: 60
- - uid: 21030
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,2.5
- parent: 60
- uid: 21399
components:
- type: Transform
@@ -57106,6 +57132,12 @@ entities:
- type: Transform
pos: -110.5,3.5
parent: 60
+ - uid: 23894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,0.5
+ parent: 60
- uid: 24023
components:
- type: Transform
@@ -57358,36 +57390,55 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.52908,-13.379191
parent: 60
-- proto: ChairOfficeDark
+- proto: ChairFoldingSpawnFolded
entities:
- - uid: 1379
+ - uid: 1762
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-27.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-11.5
parent: 60
- - uid: 1642
+ - uid: 1764
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-4.5
+ pos: -19.5,-11.5
parent: 60
- - uid: 1861
+ - uid: 1909
components:
- type: Transform
- pos: -19.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-7.5
parent: 60
- - uid: 1924
+ - uid: 8232
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.474321,-9.37935
+ pos: -19.5,-7.5
parent: 60
- - uid: 1937
+- proto: ChairOfficeDark
+ entities:
+ - uid: 238
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -28.568071,-9.4106
+ pos: -30.5,-19.5
+ parent: 60
+ - uid: 1379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-27.5
+ parent: 60
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: -26.5,-9.5
+ parent: 60
+ - uid: 2094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.446068,-3.4362593
parent: 60
- uid: 2590
components:
@@ -57406,11 +57457,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -46.5,16.5
parent: 60
- - uid: 3070
- components:
- - type: Transform
- pos: -26.5,-10.5
- parent: 60
- uid: 3588
components:
- type: Transform
@@ -57493,6 +57539,12 @@ entities:
- type: Transform
pos: -65.5,10.5
parent: 60
+ - uid: 8345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-19.5
+ parent: 60
- uid: 8383
components:
- type: Transform
@@ -57504,12 +57556,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 13.5,19.5
parent: 60
- - uid: 8946
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,-4.5
- parent: 60
- uid: 9203
components:
- type: Transform
@@ -57565,6 +57611,11 @@ entities:
- type: Transform
pos: -7.5,21.5
parent: 60
+ - uid: 14319
+ components:
+ - type: Transform
+ pos: -9.5,18.5
+ parent: 60
- uid: 14727
components:
- type: Transform
@@ -57956,41 +58007,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 18.4897,-38.423878
parent: 60
- - uid: 14118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,17.5
- parent: 60
- - uid: 14119
+ - uid: 14154
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,16.5
- parent: 60
- - uid: 14121
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -8.5,15.5
+ pos: -11.5321455,21.501402
parent: 60
- - uid: 14134
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,15.5
- parent: 60
- - uid: 14135
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,16.5
- parent: 60
- - uid: 14136
+ - uid: 14159
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -10.5,17.5
+ pos: -11.474271,12.4426365
parent: 60
- uid: 14187
components:
@@ -58004,17 +58031,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,-31.5
parent: 60
- - uid: 14440
- components:
- - type: Transform
- pos: -11.5,21.5
- parent: 60
- - uid: 14441
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,11.5
- parent: 60
- uid: 14522
components:
- type: Transform
@@ -58152,6 +58168,11 @@ entities:
- type: Transform
pos: 45.485657,-24.447033
parent: 60
+ - uid: 16150
+ components:
+ - type: Transform
+ pos: -19.84328,-13.204234
+ parent: 60
- proto: ChemDispenser
entities:
- uid: 2520
@@ -58190,11 +58211,10 @@ entities:
- type: Transform
pos: 2.5348077,-76.44673
parent: 60
- - uid: 9155
+ - uid: 8948
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -28.503572,-20.408875
+ pos: -34.5,-15.5
parent: 60
- uid: 13678
components:
@@ -58294,6 +58314,13 @@ entities:
- type: Transform
pos: 5.5158696,-7.3988457
parent: 60
+- proto: CigarSpent
+ entities:
+ - uid: 21734
+ components:
+ - type: Transform
+ pos: -33.433487,-2.3675175
+ parent: 60
- proto: CigPackGreen
entities:
- uid: 12874
@@ -58324,34 +58351,11 @@ entities:
parent: 60
- proto: ClosetBombFilled
entities:
- - uid: 5662
- components:
- - type: Transform
- pos: -34.5,5.5
- parent: 60
- - uid: 8919
+ - uid: 2112
components:
- type: Transform
- pos: -25.5,2.5
+ pos: -23.5,-20.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.877957
- - 7.0646954
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 11346
components:
- type: Transform
@@ -58693,29 +58697,6 @@ entities:
- 0
- 0
- 0
- - uid: 18602
- components:
- - type: Transform
- pos: -18.5,5.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 19085
components:
- type: Transform
@@ -58790,6 +58771,11 @@ entities:
- 0
- 0
- 0
+ - uid: 21497
+ components:
+ - type: Transform
+ pos: -18.5,5.5
+ parent: 60
- uid: 24008
components:
- type: Transform
@@ -58817,6 +58803,11 @@ entities:
parent: 60
- proto: ClosetEmergencyN2FilledRandom
entities:
+ - uid: 21503
+ components:
+ - type: Transform
+ pos: -19.5,5.5
+ parent: 60
- uid: 24022
components:
- type: Transform
@@ -58967,6 +58958,11 @@ entities:
- 0
- 0
- 0
+ - uid: 8447
+ components:
+ - type: Transform
+ pos: -24.5,5.5
+ parent: 60
- uid: 12851
components:
- type: Transform
@@ -59023,29 +59019,6 @@ entities:
- 0
- 0
- 0
- - uid: 18603
- components:
- - type: Transform
- pos: -19.5,5.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 19893
components:
- type: Transform
@@ -59146,29 +59119,11 @@ entities:
- 0
- proto: ClosetL3SecurityFilled
entities:
- - uid: 1462
+ - uid: 8469
components:
- type: Transform
- pos: -32.5,-20.5
+ pos: -29.5,-20.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: ClosetL3VirologyFilled
entities:
- uid: 2962
@@ -60002,10 +59957,17 @@ entities:
parent: 7536
- proto: ClothingBeltSecurityFilled
entities:
- - uid: 7099
+ - uid: 6546
+ components:
+ - type: Transform
+ pos: -30.497168,-20.40541
+ parent: 60
+- proto: ClothingBeltUtilityEngineering
+ entities:
+ - uid: 14118
components:
- type: Transform
- pos: -33.78202,-0.46209612
+ pos: -14.449867,32.546978
parent: 60
- proto: ClothingBeltUtilityFilled
entities:
@@ -60277,13 +60239,6 @@ entities:
- type: Transform
pos: -38.320274,19.65635
parent: 60
-- proto: ClothingHeadHatBeretWarden
- entities:
- - uid: 11556
- components:
- - type: Transform
- pos: -27.758022,-9.545581
- parent: 60
- proto: ClothingHeadHatBowlerHat
entities:
- uid: 8020
@@ -60325,7 +60280,7 @@ entities:
- uid: 24258
components:
- type: Transform
- pos: 12.042968,35.99082
+ pos: 12.34339,35.974167
parent: 60
- uid: 24259
components:
@@ -60365,6 +60320,13 @@ entities:
- type: Transform
pos: 42.399185,-38.15878
parent: 60
+- proto: ClothingHeadHatGreysoft
+ entities:
+ - uid: 18096
+ components:
+ - type: Transform
+ pos: -12.635327,-50.409695
+ parent: 60
- proto: ClothingHeadHatPaper
entities:
- uid: 13642
@@ -60459,13 +60421,6 @@ entities:
- type: Transform
pos: -39.62937,16.44374
parent: 60
-- proto: ClothingHeadHatWarden
- entities:
- - uid: 16450
- components:
- - type: Transform
- pos: -27.336147,-11.701831
- parent: 60
- proto: ClothingHeadHatWelding
entities:
- uid: 6584
@@ -60568,15 +60523,20 @@ entities:
parent: 60
- proto: ClothingHeadHelmetRiot
entities:
- - uid: 1866
+ - uid: 6308
components:
- type: Transform
- pos: -24.644444,1.636905
+ pos: -24.634363,-12.292603
parent: 60
- - uid: 1867
+ - uid: 6707
+ components:
+ - type: Transform
+ pos: -24.634363,-12.292603
+ parent: 60
+ - uid: 7747
components:
- type: Transform
- pos: -24.644444,1.636905
+ pos: -24.634363,-12.292603
parent: 60
- proto: ClothingHeadHelmetThunderdome
entities:
@@ -60623,6 +60583,20 @@ entities:
- type: Transform
pos: 56.480446,-3.47641
parent: 60
+- proto: ClothingMaskBlushingClown
+ entities:
+ - uid: 12225
+ components:
+ - type: Transform
+ pos: 22.039051,-11.200508
+ parent: 60
+- proto: ClothingMaskBlushingMime
+ entities:
+ - uid: 4261
+ components:
+ - type: Transform
+ pos: 27.273426,-11.294258
+ parent: 60
- proto: ClothingMaskBreath
entities:
- uid: 9502
@@ -60719,20 +60693,6 @@ entities:
- type: Transform
pos: 50.52941,-44.450947
parent: 60
-- proto: ClothingMaskSexyClown
- entities:
- - uid: 12225
- components:
- - type: Transform
- pos: 22.039051,-11.200508
- parent: 60
-- proto: ClothingMaskSexyMime
- entities:
- - uid: 4261
- components:
- - type: Transform
- pos: 27.273426,-11.294258
- parent: 60
- proto: ClothingMaskSterile
entities:
- uid: 59
@@ -60757,13 +60717,6 @@ entities:
- type: Transform
pos: 83.621025,-13.51627
parent: 60
-- proto: ClothingNeckBisexualPin
- entities:
- - uid: 24090
- components:
- - type: Transform
- pos: -20.494595,5.7531924
- parent: 60
- proto: ClothingNeckBling
entities:
- uid: 18461
@@ -60790,27 +60743,6 @@ entities:
- type: Transform
pos: -38.4609,19.6876
parent: 60
-- proto: ClothingNeckIntersexPin
- entities:
- - uid: 24088
- components:
- - type: Transform
- pos: -12.770909,19.336336
- parent: 60
-- proto: ClothingNeckLesbianPin
- entities:
- - uid: 24086
- components:
- - type: Transform
- pos: -10.308835,13.564301
- parent: 60
-- proto: ClothingNeckLGBTPin
- entities:
- - uid: 7174
- components:
- - type: Transform
- pos: -11.221505,22.789167
- parent: 60
- proto: ClothingNeckMantleHOP
entities:
- uid: 5207
@@ -60820,15 +60752,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingNeckMantleHOS
- entities:
- - uid: 17672
- components:
- - type: Transform
- parent: 5933
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
- proto: ClothingNeckMantleRD
entities:
- uid: 17673
@@ -60838,13 +60761,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingNeckNonBinaryPin
- entities:
- - uid: 13569
- components:
- - type: Transform
- pos: -6.8039737,15.288539
- parent: 60
- proto: ClothingNeckScarfStripedBlue
entities:
- uid: 7862
@@ -60912,13 +60828,6 @@ entities:
- type: Transform
pos: -63.651737,-1.4881696
parent: 60
-- proto: ClothingNeckTransPin
- entities:
- - uid: 5166
- components:
- - type: Transform
- pos: -8.970711,16.51249
- parent: 60
- proto: ClothingOuterApron
entities:
- uid: 8027
@@ -60928,66 +60837,44 @@ entities:
parent: 60
- proto: ClothingOuterApronChef
entities:
- - uid: 2513
- components:
- - type: MetaData
- desc: An apron-jacket used by Mr.Chang
- name: Mr.Chang Official Apron
- - type: Transform
- pos: -12.442651,-50.453358
- parent: 60
-- proto: ClothingOuterArmorBasic
- entities:
- - uid: 19886
- components:
- - type: Transform
- pos: -24.397709,1.3971437
- parent: 60
- - uid: 20003
+ - uid: 1986
components:
- type: Transform
- pos: -24.397709,1.3971437
+ pos: -12.119702,-50.42532
parent: 60
-- proto: ClothingOuterArmorBulletproof
+- proto: ClothingOuterArmorReflective
entities:
- - uid: 21011
+ - uid: 5010
components:
- type: Transform
- pos: -24.521177,1.5767841
+ pos: -24.587488,-12.605103
parent: 60
- - uid: 21012
+ - uid: 5909
components:
- type: Transform
- pos: -24.521177,1.5767841
+ pos: -24.587488,-12.605103
parent: 60
- - uid: 21016
+ - uid: 7785
components:
- type: Transform
- pos: -24.521177,1.5767841
+ pos: -24.587488,-12.605103
parent: 60
-- proto: ClothingOuterArmorReflective
+- proto: ClothingOuterArmorRiot
entities:
- - uid: 24113
- components:
- - type: Transform
- pos: -24.597569,1.293155
- parent: 60
- - uid: 24114
+ - uid: 5201
components:
- type: Transform
- pos: -24.597569,1.293155
+ pos: -24.384363,-12.511353
parent: 60
-- proto: ClothingOuterArmorRiot
- entities:
- - uid: 1816
+ - uid: 5849
components:
- type: Transform
- pos: -24.316319,1.574405
+ pos: -24.384363,-12.511353
parent: 60
- - uid: 8203
+ - uid: 21723
components:
- type: Transform
- pos: -24.316319,1.574405
+ pos: -24.384363,-12.511353
parent: 60
- proto: ClothingOuterCardborg
entities:
@@ -61022,13 +60909,6 @@ entities:
- type: Transform
pos: 51.556362,-34.423466
parent: 60
-- proto: ClothingOuterCoatJensen
- entities:
- - uid: 18606
- components:
- - type: Transform
- pos: -20.447735,5.5611706
- parent: 60
- proto: ClothingOuterCoatLab
entities:
- uid: 9624
@@ -61052,20 +60932,20 @@ entities:
parent: 60
- proto: ClothingOuterHardsuitSecurity
entities:
- - uid: 1820
+ - uid: 1862
components:
- type: Transform
- pos: -28.680038,2.632019
+ pos: -28.693623,1.6351235
parent: 60
- - uid: 13767
+ - uid: 5313
components:
- type: Transform
- pos: -28.414413,2.444519
+ pos: -28.552998,1.5257485
parent: 60
- - uid: 13978
+ - uid: 6367
components:
- type: Transform
- pos: -28.555038,2.538269
+ pos: -28.381123,1.4163735
parent: 60
- proto: ClothingOuterHoodieBlack
entities:
@@ -61417,11 +61297,6 @@ entities:
- type: Transform
pos: -5.5,-44.5
parent: 60
- - uid: 1957
- components:
- - type: Transform
- pos: -21.5,1.5
- parent: 60
- uid: 2249
components:
- type: Transform
@@ -61479,6 +61354,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,-37.5
parent: 60
+ - uid: 5166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,16.5
+ parent: 60
+ - uid: 5542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,15.5
+ parent: 60
- uid: 5844
components:
- type: Transform
@@ -61500,11 +61387,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 24.5,-40.5
parent: 60
- - uid: 7232
+ - uid: 8225
+ components:
+ - type: Transform
+ pos: -21.5,0.5
+ parent: 60
+ - uid: 8259
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,-0.5
+ pos: -22.5,-1.5
parent: 60
- uid: 8745
components:
@@ -61535,6 +61427,24 @@ entities:
rot: 3.141592653589793 rad
pos: -49.5,-8.5
parent: 60
+ - uid: 11477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,18.5
+ parent: 60
+ - uid: 11529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,16.5
+ parent: 60
+ - uid: 11687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,15.5
+ parent: 60
- uid: 12715
components:
- type: Transform
@@ -61547,16 +61457,35 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-37.5
parent: 60
- - uid: 14117
+ - uid: 14172
components:
- type: Transform
- pos: -9.5,18.5
+ rot: 3.141592653589793 rad
+ pos: -10.5,15.5
+ parent: 60
+ - uid: 14327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,18.5
+ parent: 60
+ - uid: 14328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,17.5
parent: 60
- uid: 14525
components:
- type: Transform
pos: -25.5,20.5
parent: 60
+ - uid: 16434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,17.5
+ parent: 60
- uid: 17357
components:
- type: Transform
@@ -61794,12 +61723,6 @@ entities:
rot: 3.141592653589793 rad
pos: -25.5,-30.5
parent: 60
- - uid: 6582
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-11.5
- parent: 60
- uid: 8705
components:
- type: Transform
@@ -61813,17 +61736,15 @@ entities:
parent: 60
- proto: ComputerCriminalRecords
entities:
- - uid: 1796
+ - uid: 617
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-10.5
+ pos: -30.5,-18.5
parent: 60
- - uid: 1868
+ - uid: 667
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,1.5
+ pos: -22.5,-18.5
parent: 60
- uid: 2024
components:
@@ -61831,17 +61752,16 @@ entities:
rot: 3.141592653589793 rad
pos: -26.5,-30.5
parent: 60
- - uid: 9153
+ - uid: 4217
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-7.5
+ pos: -27.5,-8.5
parent: 60
- - uid: 13383
+ - uid: 8213
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -20.5,-16.5
+ pos: -22.5,0.5
parent: 60
- uid: 18561
components:
@@ -62031,11 +61951,10 @@ entities:
parent: 60
- proto: ComputerStationRecords
entities:
- - uid: 6611
+ - uid: 584
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-10.5
+ pos: -23.5,-18.5
parent: 60
- uid: 10938
components:
@@ -62055,6 +61974,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 32.5,-12.5
parent: 60
+ - uid: 15898
+ components:
+ - type: Transform
+ pos: -25.5,-8.5
+ parent: 60
- uid: 19686
components:
- type: Transform
@@ -62063,10 +61987,15 @@ entities:
parent: 60
- proto: ComputerSurveillanceCameraMonitor
entities:
- - uid: 1980
+ - uid: 564
components:
- type: Transform
- pos: -21.5,2.5
+ pos: -29.5,-18.5
+ parent: 60
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: -26.5,-8.5
parent: 60
- uid: 2068
components:
@@ -63124,10 +63053,10 @@ entities:
- 0
- proto: CrateSecurityTrackingMindshieldImplants
entities:
- - uid: 11097
+ - uid: 1559
components:
- type: Transform
- pos: -27.5,-8.5
+ pos: -24.5,-11.5
parent: 60
- proto: CrateServiceJanitorialSupplies
entities:
@@ -63243,6 +63172,11 @@ entities:
available: False
- proto: Crowbar
entities:
+ - uid: 1977
+ components:
+ - type: Transform
+ pos: -27.476547,-12.57161
+ parent: 60
- uid: 23156
components:
- type: Transform
@@ -63262,11 +63196,6 @@ entities:
parent: 60
- proto: CrowbarRed
entities:
- - uid: 6041
- components:
- - type: Transform
- pos: -27.486204,-11.386857
- parent: 60
- uid: 9351
components:
- type: Transform
@@ -63359,12 +63288,50 @@ entities:
parent: 60
- proto: CurtainsBlackOpen
entities:
+ - uid: 8672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-2.5
+ parent: 60
+ - uid: 14624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-2.5
+ parent: 60
- uid: 23835
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -19.5,21.5
parent: 60
+- proto: CurtainsGreenOpen
+ entities:
+ - uid: 5409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,15.5
+ parent: 60
+ - uid: 9142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,10.5
+ parent: 60
+ - uid: 11018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,10.5
+ parent: 60
+ - uid: 14175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,17.5
+ parent: 60
- proto: CurtainsRedOpen
entities:
- uid: 23090
@@ -63403,35 +63370,19 @@ entities:
parent: 7536
- proto: d20Dice
entities:
- - uid: 14217
+ - uid: 14149
components:
- type: Transform
- pos: -8.428826,17.002214
+ rot: -1.5707963267948966 rad
+ pos: -8.975064,16.881664
parent: 60
- proto: d6Dice
entities:
- - uid: 14219
- components:
- - type: Transform
- pos: -9.018627,17.160591
- parent: 60
- - uid: 14220
- components:
- - type: Transform
- pos: -8.967095,16.960144
- parent: 60
- uid: 17897
components:
- type: Transform
pos: -8.719646,-50.56693
parent: 60
-- proto: d8Dice
- entities:
- - uid: 14218
- components:
- - type: Transform
- pos: -9.631951,17.08034
- parent: 60
- proto: DawInstrumentMachineCircuitboard
entities:
- uid: 6277
@@ -63483,10 +63434,10 @@ entities:
parent: 60
- proto: DefaultStationBeaconArmory
entities:
- - uid: 18267
+ - uid: 8462
components:
- type: Transform
- pos: -26.5,0.5
+ pos: -26.5,-1.5
parent: 60
- proto: DefaultStationBeaconArrivals
entities:
@@ -63530,13 +63481,6 @@ entities:
- type: Transform
pos: 0.5,0.5
parent: 60
-- proto: DefaultStationBeaconBrig
- entities:
- - uid: 4147
- components:
- - type: Transform
- pos: -25.5,-15.5
- parent: 60
- proto: DefaultStationBeaconCaptainsQuarters
entities:
- uid: 15423
@@ -63663,13 +63607,6 @@ entities:
- type: Transform
pos: 5.5,-28.5
parent: 60
-- proto: DefaultStationBeaconHOSRoom
- entities:
- - uid: 23108
- components:
- - type: Transform
- pos: -21.5,-0.5
- parent: 60
- proto: DefaultStationBeaconJanitorsCloset
entities:
- uid: 22485
@@ -63761,6 +63698,13 @@ entities:
- type: Transform
pos: 50.5,1.5
parent: 60
+- proto: DefaultStationBeaconSecurity
+ entities:
+ - uid: 21496
+ components:
+ - type: Transform
+ pos: -27.5,-19.5
+ parent: 60
- proto: DefaultStationBeaconServerRoom
entities:
- uid: 24418
@@ -63848,10 +63792,10 @@ entities:
parent: 60
- proto: DefaultStationBeaconWardensOffice
entities:
- - uid: 24426
+ - uid: 8458
components:
- type: Transform
- pos: -26.5,-8.5
+ pos: -27.5,-11.5
parent: 60
- proto: DefibrillatorCabinetFilled
entities:
@@ -63876,11 +63820,10 @@ entities:
rot: 1.5707963267948966 rad
pos: 37.5,-14.5
parent: 60
- - uid: 19450
+ - uid: 19514
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-3.5
+ pos: -19.5,-12.5
parent: 60
- uid: 21264
components:
@@ -63889,18 +63832,28 @@ entities:
parent: 60
- proto: DeployableBarrier
entities:
- - uid: 6044
+ - uid: 8606
components:
- type: Transform
- pos: -23.5,-7.5
+ pos: -34.5,-13.5
parent: 60
- - uid: 10681
+ - uid: 8722
+ components:
+ - type: Transform
+ pos: -33.5,-13.5
+ parent: 60
+ - uid: 21733
components:
- type: Transform
- pos: -23.5,-6.5
+ pos: -32.5,-13.5
parent: 60
- proto: DeskBell
entities:
+ - uid: 8279
+ components:
+ - type: Transform
+ pos: 4.6358204,12.572609
+ parent: 60
- uid: 19741
components:
- type: Transform
@@ -63917,11 +63870,6 @@ entities:
- type: Physics
canCollide: False
bodyType: Static
- - uid: 24779
- components:
- - type: Transform
- pos: -19.317991,-17.371677
- parent: 60
- proto: DiceBag
entities:
- uid: 14192
@@ -64223,22 +64171,11 @@ entities:
rot: 3.141592653589793 rad
pos: 28.5,-24.5
parent: 60
- - uid: 8273
+ - uid: 8450
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -26.5,-5.5
- parent: 60
- - uid: 8710
- components:
- - type: Transform
- pos: -18.5,-19.5
- parent: 60
- - uid: 8947
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-19.5
+ pos: -33.5,-16.5
parent: 60
- uid: 9343
components:
@@ -64268,6 +64205,12 @@ entities:
rot: 3.141592653589793 rad
pos: -48.5,-5.5
parent: 60
+ - uid: 11365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-19.5
+ parent: 60
- uid: 13092
components:
- type: Transform
@@ -64285,11 +64228,6 @@ entities:
- type: Transform
pos: -16.5,8.5
parent: 60
- - uid: 14433
- components:
- - type: Transform
- pos: -12.5,16.5
- parent: 60
- uid: 14634
components:
- type: Transform
@@ -64518,6 +64456,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 33.5,-23.5
parent: 60
+ - uid: 2714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -39.5,-5.5
+ parent: 60
- uid: 3048
components:
- type: Transform
@@ -64551,11 +64495,6 @@ entities:
- type: Transform
pos: 16.5,11.5
parent: 60
- - uid: 9147
- components:
- - type: Transform
- pos: -37.5,-19.5
- parent: 60
- uid: 9392
components:
- type: Transform
@@ -64604,11 +64543,6 @@ entities:
- type: Transform
pos: 16.5,9.5
parent: 60
- - uid: 979
- components:
- - type: Transform
- pos: -15.5,-9.5
- parent: 60
- uid: 1208
components:
- type: Transform
@@ -64631,6 +64565,11 @@ entities:
- type: Transform
pos: 0.5,-23.5
parent: 60
+ - uid: 2115
+ components:
+ - type: Transform
+ pos: -37.5,-19.5
+ parent: 60
- uid: 2192
components:
- type: Transform
@@ -64649,6 +64588,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,-22.5
parent: 60
+ - uid: 3187
+ components:
+ - type: Transform
+ pos: -15.5,-1.5
+ parent: 60
- uid: 4767
components:
- type: Transform
@@ -64661,11 +64605,6 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-44.5
parent: 60
- - uid: 6091
- components:
- - type: Transform
- pos: -37.5,1.5
- parent: 60
- uid: 6602
components:
- type: Transform
@@ -64682,11 +64621,6 @@ entities:
- type: Transform
pos: -15.5,11.5
parent: 60
- - uid: 14097
- components:
- - type: Transform
- pos: -15.5,16.5
- parent: 60
- uid: 14635
components:
- type: Transform
@@ -64723,12 +64657,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,8.5
parent: 60
- - uid: 23938
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-19.5
- parent: 60
- proto: DisposalPipe
entities:
- uid: 5
@@ -65271,11 +65199,6 @@ entities:
- type: Transform
pos: -15.5,-3.5
parent: 60
- - uid: 986
- components:
- - type: Transform
- pos: -15.5,-1.5
- parent: 60
- uid: 987
components:
- type: Transform
@@ -65578,12 +65501,6 @@ entities:
- type: Transform
pos: -37.5,-22.5
parent: 60
- - uid: 1637
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-19.5
- parent: 60
- uid: 1649
components:
- type: Transform
@@ -65607,12 +65524,6 @@ entities:
- type: Transform
pos: -37.5,-21.5
parent: 60
- - uid: 1708
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-19.5
- parent: 60
- uid: 1709
components:
- type: Transform
@@ -65661,18 +65572,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 31.5,24.5
parent: 60
- - uid: 1919
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-5.5
- parent: 60
- - uid: 1922
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-19.5
- parent: 60
- uid: 1950
components:
- type: Transform
@@ -65725,6 +65624,18 @@ entities:
- type: Transform
pos: 0.5,-21.5
parent: 60
+ - uid: 2118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-1.5
+ parent: 60
+ - uid: 2119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,1.5
+ parent: 60
- uid: 2188
components:
- type: Transform
@@ -66134,12 +66045,30 @@ entities:
rot: 3.141592653589793 rad
pos: -38.5,9.5
parent: 60
+ - uid: 3156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-6.5
+ parent: 60
+ - uid: 3493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-19.5
+ parent: 60
- uid: 3542
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 45.5,-32.5
parent: 60
+ - uid: 3590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-18.5
+ parent: 60
- uid: 3880
components:
- type: Transform
@@ -66863,34 +66792,29 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,-44.5
parent: 60
- - uid: 8229
- components:
- - type: Transform
- pos: -26.5,-6.5
- parent: 60
- - uid: 8251
+ - uid: 8379
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,24.5
parent: 60
- - uid: 8252
+ - uid: 8421
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -27.5,-19.5
+ pos: -36.5,-19.5
parent: 60
- - uid: 8253
+ - uid: 8451
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-19.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-16.5
parent: 60
- - uid: 8379
+ - uid: 8464
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 20.5,24.5
+ pos: -32.5,-16.5
parent: 60
- uid: 8536
components:
@@ -66922,58 +66846,18 @@ entities:
- type: Transform
pos: 16.5,23.5
parent: 60
- - uid: 8891
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-19.5
- parent: 60
- uid: 8897
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 23.5,24.5
parent: 60
- - uid: 8908
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-19.5
- parent: 60
- - uid: 8941
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-19.5
- parent: 60
- - uid: 8942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-19.5
- parent: 60
- - uid: 8943
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-19.5
- parent: 60
- - uid: 8944
- components:
- - type: Transform
- pos: -18.5,-20.5
- parent: 60
- uid: 8971
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -12.5,-23.5
parent: 60
- - uid: 9048
- components:
- - type: Transform
- pos: -18.5,-21.5
- parent: 60
- uid: 9050
components:
- type: Transform
@@ -67043,12 +66927,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -38.5,-5.5
parent: 60
- - uid: 9397
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-5.5
- parent: 60
- uid: 9398
components:
- type: Transform
@@ -67096,6 +66974,17 @@ entities:
- type: Transform
pos: -55.5,6.5
parent: 60
+ - uid: 11364
+ components:
+ - type: Transform
+ pos: -15.5,-9.5
+ parent: 60
+ - uid: 11370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-19.5
+ parent: 60
- uid: 11881
components:
- type: Transform
@@ -67328,12 +67217,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,11.5
parent: 60
- - uid: 14091
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,11.5
- parent: 60
- uid: 14093
components:
- type: Transform
@@ -67389,17 +67272,11 @@ entities:
- type: Transform
pos: -15.5,23.5
parent: 60
- - uid: 14434
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -13.5,16.5
- parent: 60
- - uid: 14435
+ - uid: 14178
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,16.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,16.5
parent: 60
- uid: 14636
components:
@@ -67863,6 +67740,12 @@ entities:
- type: Transform
pos: -24.5,-24.5
parent: 60
+ - uid: 21509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-17.5
+ parent: 60
- uid: 21689
components:
- type: Transform
@@ -67994,66 +67877,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -93.5,17.5
parent: 60
- - uid: 23926
- components:
- - type: Transform
- pos: -26.5,-7.5
- parent: 60
- - uid: 23927
- components:
- - type: Transform
- pos: -26.5,-8.5
- parent: 60
- - uid: 23928
- components:
- - type: Transform
- pos: -26.5,-9.5
- parent: 60
- - uid: 23929
- components:
- - type: Transform
- pos: -26.5,-10.5
- parent: 60
- - uid: 23930
- components:
- - type: Transform
- pos: -26.5,-11.5
- parent: 60
- - uid: 23931
- components:
- - type: Transform
- pos: -26.5,-12.5
- parent: 60
- - uid: 23932
- components:
- - type: Transform
- pos: -26.5,-13.5
- parent: 60
- - uid: 23933
- components:
- - type: Transform
- pos: -26.5,-14.5
- parent: 60
- - uid: 23934
- components:
- - type: Transform
- pos: -26.5,-15.5
- parent: 60
- - uid: 23935
- components:
- - type: Transform
- pos: -26.5,-16.5
- parent: 60
- - uid: 23936
- components:
- - type: Transform
- pos: -26.5,-17.5
- parent: 60
- - uid: 23937
- components:
- - type: Transform
- pos: -26.5,-18.5
- parent: 60
- uid: 24082
components:
- type: Transform
@@ -68334,6 +68157,12 @@ entities:
rot: 3.141592653589793 rad
pos: 33.5,22.5
parent: 60
+ - uid: 2121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-1.5
+ parent: 60
- uid: 2271
components:
- type: Transform
@@ -68373,6 +68202,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 45.5,-26.5
parent: 60
+ - uid: 3199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -39.5,-7.5
+ parent: 60
- uid: 3793
components:
- type: Transform
@@ -68385,12 +68220,6 @@ entities:
rot: 3.141592653589793 rad
pos: -14.5,-43.5
parent: 60
- - uid: 4337
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -39.5,-19.5
- parent: 60
- uid: 4514
components:
- type: Transform
@@ -68420,12 +68249,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,-0.5
parent: 60
- - uid: 6094
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,1.5
- parent: 60
- uid: 6327
components:
- type: Transform
@@ -68443,38 +68266,27 @@ entities:
rot: 1.5707963267948966 rad
pos: -4.5,17.5
parent: 60
- - uid: 7906
- components:
- - type: Transform
- pos: -30.5,-18.5
- parent: 60
- uid: 7959
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -1.5,-44.5
parent: 60
- - uid: 8709
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-5.5
- parent: 60
- uid: 9414
components:
- type: Transform
pos: -56.5,14.5
parent: 60
- - uid: 13756
+ - uid: 11367
components:
- type: Transform
- pos: 7.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-16.5
parent: 60
- - uid: 13983
+ - uid: 13756
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-9.5
+ pos: 7.5,10.5
parent: 60
- uid: 14067
components:
@@ -68487,23 +68299,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -28.5,11.5
parent: 60
- - uid: 14092
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,11.5
- parent: 60
- uid: 14143
components:
- type: Transform
pos: -43.5,-3.5
parent: 60
- - uid: 14432
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -12.5,15.5
- parent: 60
- uid: 15793
components:
- type: Transform
@@ -68544,6 +68344,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-13.5
parent: 60
+ - uid: 21339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,11.5
+ parent: 60
- uid: 21353
components:
- type: Transform
@@ -68608,10 +68414,10 @@ entities:
- type: Transform
pos: 19.5,-20.5
parent: 60
- - uid: 77
+ - uid: 144
components:
- type: Transform
- pos: -30.5,-18.5
+ pos: -30.5,-16.5
parent: 60
- uid: 659
components:
@@ -68678,11 +68484,6 @@ entities:
- type: Transform
pos: 50.5,-31.5
parent: 60
- - uid: 4338
- components:
- - type: Transform
- pos: -39.5,-19.5
- parent: 60
- uid: 4826
components:
- type: Transform
@@ -68698,11 +68499,6 @@ entities:
- type: Transform
pos: 45.5,-8.5
parent: 60
- - uid: 5800
- components:
- - type: Transform
- pos: -24.5,-5.5
- parent: 60
- uid: 6328
components:
- type: Transform
@@ -68733,6 +68529,11 @@ entities:
- type: Transform
pos: -1.5,-44.5
parent: 60
+ - uid: 8679
+ components:
+ - type: Transform
+ pos: -39.5,-7.5
+ parent: 60
- uid: 9037
components:
- type: Transform
@@ -68748,15 +68549,15 @@ entities:
- type: Transform
pos: -43.5,-3.5
parent: 60
- - uid: 9550
+ - uid: 9568
components:
- type: Transform
- pos: -36.5,1.5
+ pos: -56.5,14.5
parent: 60
- - uid: 9568
+ - uid: 11363
components:
- type: Transform
- pos: -56.5,14.5
+ pos: -13.5,-1.5
parent: 60
- uid: 11474
components:
@@ -68768,21 +68569,6 @@ entities:
- type: Transform
pos: 7.5,10.5
parent: 60
- - uid: 13975
- components:
- - type: Transform
- pos: -14.5,-9.5
- parent: 60
- - uid: 13982
- components:
- - type: Transform
- pos: -12.5,11.5
- parent: 60
- - uid: 14176
- components:
- - type: Transform
- pos: -12.5,15.5
- parent: 60
- uid: 14546
components:
- type: Transform
@@ -68828,6 +68614,11 @@ entities:
- type: Transform
pos: 47.5,14.5
parent: 60
+ - uid: 21362
+ components:
+ - type: Transform
+ pos: -13.5,11.5
+ parent: 60
- uid: 21402
components:
- type: Transform
@@ -68883,11 +68674,6 @@ entities:
parent: 60
- proto: DogBed
entities:
- - uid: 1201
- components:
- - type: Transform
- pos: -27.5,-9.5
- parent: 60
- uid: 2036
components:
- type: MetaData
@@ -68910,6 +68696,11 @@ entities:
- type: Transform
pos: 6.5,-29.5
parent: 60
+ - uid: 7920
+ components:
+ - type: Transform
+ pos: -25.5,-11.5
+ parent: 60
- uid: 11557
components:
- type: Transform
@@ -68925,6 +68716,11 @@ entities:
parent: 60
- proto: DonkpocketBoxSpawner
entities:
+ - uid: 628
+ components:
+ - type: Transform
+ pos: -24.5,-14.5
+ parent: 60
- uid: 3137
components:
- type: Transform
@@ -69051,10 +68847,10 @@ entities:
parent: 60
- proto: DresserHeadOfSecurityFilled
entities:
- - uid: 15403
+ - uid: 1696
components:
- type: Transform
- pos: -19.5,-0.5
+ pos: -18.5,-3.5
parent: 60
- proto: DresserQuarterMasterFilled
entities:
@@ -69093,6 +68889,16 @@ entities:
parent: 60
- proto: DrinkGlass
entities:
+ - uid: 3722
+ components:
+ - type: Transform
+ pos: -13.197583,-50.45657
+ parent: 60
+ - uid: 3737
+ components:
+ - type: Transform
+ pos: -13.135083,-50.284695
+ parent: 60
- uid: 23627
components:
- type: Transform
@@ -69124,13 +68930,6 @@ entities:
parent: 60
- type: Tag
tags: []
-- proto: DrinkMugBlack
- entities:
- - uid: 4551
- components:
- - type: Transform
- pos: -34.42806,-0.22675279
- parent: 60
- proto: DrinkMugDog
entities:
- uid: 14993
@@ -69140,10 +68939,10 @@ entities:
parent: 60
- proto: DrinkMugMetal
entities:
- - uid: 1624
+ - uid: 1915
components:
- type: Transform
- pos: -34.349934,-0.4142528
+ pos: -26.325293,-20.46791
parent: 60
- uid: 16127
components:
@@ -69166,27 +68965,17 @@ entities:
parent: 60
- proto: DrinkMugRed
entities:
- - uid: 18826
+ - uid: 9546
components:
- type: Transform
- pos: -34.58431,-0.4611278
+ pos: -26.590918,-20.34291
parent: 60
-- proto: DrinkSakeGlass
+- proto: DrinkSakeBottleFull
entities:
- - uid: 4281
- components:
- - type: Transform
- pos: -13.1094885,-50.43419
- parent: 60
- - uid: 4282
- components:
- - type: Transform
- pos: -13.1094885,-50.37169
- parent: 60
- - uid: 4545
+ - uid: 3742
components:
- type: Transform
- pos: -13.1094885,-50.49669
+ pos: -13.744458,-50.23782
parent: 60
- proto: DrinkShaker
entities:
@@ -69205,13 +68994,6 @@ entities:
- type: Transform
pos: -62.596844,46.56719
parent: 60
-- proto: DrinkShinyFlask
- entities:
- - uid: 12189
- components:
- - type: Transform
- pos: -25.703217,-11.4913645
- parent: 60
- proto: DrinkShotGlass
entities:
- uid: 6388
@@ -69294,21 +69076,6 @@ entities:
- type: Transform
pos: -7.5137773,-11.361463
parent: 60
- - uid: 14454
- components:
- - type: Transform
- pos: -27.223204,-13.440722
- parent: 60
- - uid: 14618
- components:
- - type: Transform
- pos: -27.098204,-13.175097
- parent: 60
- - uid: 14625
- components:
- - type: Transform
- pos: -27.035704,-13.425097
- parent: 60
- uid: 16380
components:
- type: Transform
@@ -69428,24 +69195,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 5234
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-5.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 5235
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-16.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 6186
components:
- type: Transform
@@ -69549,23 +69298,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 21380
- components:
- - type: Transform
- pos: -26.5,2.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- - uid: 21381
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-14.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 21382
components:
- type: Transform
@@ -69636,15 +69368,6 @@ entities:
- type: PointLight
enabled: True
- type: ActiveEmergencyLight
- - uid: 21392
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,3.5
- parent: 60
- - type: PointLight
- enabled: True
- - type: ActiveEmergencyLight
- uid: 25126
components:
- type: Transform
@@ -69664,10 +69387,10 @@ entities:
parent: 60
- proto: EmergencyMedipen
entities:
- - uid: 3505
+ - uid: 17955
components:
- type: Transform
- pos: -19.478468,-2.5346627
+ pos: -18.983906,-13.563609
parent: 60
- proto: EmergencyOxygenTankFilled
entities:
@@ -69732,16 +69455,6 @@ entities:
- type: Transform
pos: -7.5,31.5
parent: 60
- - uid: 24122
- components:
- - type: Transform
- pos: -8.5,37.5
- parent: 60
- - uid: 24175
- components:
- - type: Transform
- pos: -8.5,38.5
- parent: 60
- proto: EncryptionKeyCargo
entities:
- uid: 19039
@@ -69834,6 +69547,26 @@ entities:
parent: 60
- proto: ExtinguisherCabinetFilled
entities:
+ - uid: 158
+ components:
+ - type: Transform
+ pos: -34.5,10.5
+ parent: 60
+ - uid: 176
+ components:
+ - type: Transform
+ pos: -17.5,16.5
+ parent: 60
+ - uid: 1979
+ components:
+ - type: Transform
+ pos: -35.5,-14.5
+ parent: 60
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: -17.5,-15.5
+ parent: 60
- uid: 3153
components:
- type: Transform
@@ -69895,6 +69628,11 @@ entities:
- type: Transform
pos: 46.5,16.5
parent: 60
+ - uid: 14158
+ components:
+ - type: Transform
+ pos: -12.5,12.5
+ parent: 60
- uid: 17230
components:
- type: Transform
@@ -69925,11 +69663,6 @@ entities:
- type: Transform
pos: 3.5,25.5
parent: 60
- - uid: 18496
- components:
- - type: Transform
- pos: -11.5,11.5
- parent: 60
- uid: 19871
components:
- type: Transform
@@ -69960,21 +69693,6 @@ entities:
- type: Transform
pos: -52.5,8.5
parent: 60
- - uid: 21722
- components:
- - type: Transform
- pos: -35.5,1.5
- parent: 60
- - uid: 21723
- components:
- - type: Transform
- pos: -35.5,-16.5
- parent: 60
- - uid: 21726
- components:
- - type: Transform
- pos: -18.5,-0.5
- parent: 60
- uid: 21727
components:
- type: Transform
@@ -70020,6 +69738,16 @@ entities:
- type: Transform
pos: 36.5,-32.5
parent: 60
+ - uid: 21768
+ components:
+ - type: Transform
+ pos: -12.5,-25.5
+ parent: 60
+ - uid: 21769
+ components:
+ - type: Transform
+ pos: -35.5,1.5
+ parent: 60
- uid: 23077
components:
- type: Transform
@@ -70044,6 +69772,13 @@ entities:
parent: 60
- proto: FaxMachineBase
entities:
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: -26.5,-6.5
+ parent: 60
+ - type: FaxMachine
+ name: Security
- uid: 4256
components:
- type: Transform
@@ -70058,6 +69793,13 @@ entities:
parent: 60
- type: FaxMachine
name: HoP Office
+ - uid: 6890
+ components:
+ - type: Transform
+ pos: -20.5,-0.5
+ parent: 60
+ - type: FaxMachine
+ name: HoS Office
- uid: 7919
components:
- type: Transform
@@ -70121,13 +69863,6 @@ entities:
parent: 60
- type: FaxMachine
name: Library
- - uid: 24176
- components:
- - type: Transform
- pos: -26.5,-13.5
- parent: 60
- - type: FaxMachine
- name: Security Fax
- proto: FaxMachineCaptain
entities:
- uid: 15836
@@ -70144,13 +69879,13 @@ entities:
- type: Transform
pos: -36.5,-34.5
parent: 60
- - uid: 11018
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 1942
components:
- type: Transform
- pos: -8.5,16.5
+ pos: -45.5,-15.5
parent: 60
-- proto: filingCabinetDrawerRandom
- entities:
- uid: 4172
components:
- type: Transform
@@ -70202,6 +69937,110 @@ entities:
parent: 60
- proto: FireAlarm
entities:
+ - uid: 63
+ components:
+ - type: Transform
+ pos: -24.5,-21.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 21505
+ - 17493
+ - 15846
+ - 2585
+ - 9052
+ - 22
+ - 1491
+ - 670
+ - 672
+ - 671
+ - uid: 177
+ components:
+ - type: Transform
+ pos: -23.5,-2.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 1975
+ - 2002
+ - 1993
+ - 182
+ - 180
+ - 210
+ - 1972
+ - 1982
+ - 1967
+ - uid: 230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-13.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 180
+ - 182
+ - 1969
+ - 1985
+ - uid: 1962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,5.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 8574
+ - 1644
+ - 1643
+ - 1645
+ - uid: 1970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-13.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 232
+ - 184
+ - 1976
+ - 1972
+ - 210
+ - uid: 4190
+ components:
+ - type: Transform
+ pos: -12.5,-21.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 21505
+ - 17493
+ - 15846
+ - 2585
+ - 9052
+ - 22
+ - 1491
+ - 670
+ - 672
+ - 671
+ - uid: 4191
+ components:
+ - type: Transform
+ pos: -6.5,-21.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 21505
+ - 17493
+ - 15846
+ - 2585
+ - 9052
+ - 22
+ - 1491
+ - 670
+ - 672
+ - 671
- uid: 4511
components:
- type: Transform
@@ -70221,6 +70060,54 @@ entities:
- 21015
- 21023
- 21022
+ - uid: 4545
+ components:
+ - type: Transform
+ pos: -12.5,10.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 4338
+ - 4337
+ - 4361
+ - 1643
+ - 1644
+ - 8574
+ - 8986
+ - 8521
+ - 9054
+ - 21513
+ - uid: 4627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -35.5,-16.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 780
+ - 7721
+ - 1017
+ - 8168
+ - 5623
+ - 9468
+ - 21614
+ - 6098
+ - 6097
+ - 5940
+ - 21615
+ - uid: 4710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-17.5
+ parent: 60
+ - type: DeviceList
+ devices:
+ - 122
+ - 9052
+ - 22
+ - 1491
- uid: 4831
components:
- type: Transform
@@ -70307,13 +70194,17 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 780
- - 7721
+ - 8168
- 1017
+ - 7721
+ - 780
- 21614
- - 491
- - 8774
- - 8957
+ - 9468
+ - 5623
+ - 6098
+ - 6097
+ - 5940
+ - 21615
- uid: 12733
components:
- type: Transform
@@ -70324,21 +70215,6 @@ entities:
devices:
- 12571
- 12594
- - uid: 18592
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-8.5
- parent: 60
- - type: DeviceList
- devices:
- - 18859
- - 18858
- - 18857
- - 21511
- - 11338
- - 11339
- - 11340
- uid: 21484
components:
- type: Transform
@@ -70350,9 +70226,6 @@ entities:
- 458
- 459
- 460
- - 18464
- - 18463
- - 18462
- 21485
- uid: 21487
components:
@@ -70364,9 +70237,6 @@ entities:
devices:
- 18609
- 21486
- - 18464
- - 18463
- - 18462
- uid: 21490
components:
- type: Transform
@@ -70387,20 +70257,6 @@ entities:
devices:
- 18609
- 21494
- - uid: 21497
- components:
- - type: Transform
- pos: -10.5,-21.5
- parent: 60
- - type: DeviceList
- devices:
- - 671
- - 672
- - 670
- - 21495
- - 6147
- - 6173
- - 6156
- uid: 21498
components:
- type: Transform
@@ -70418,29 +70274,6 @@ entities:
- 9184
- 9237
- 6626
- - uid: 21503
- components:
- - type: Transform
- pos: -22.5,-21.5
- parent: 60
- - type: DeviceList
- devices:
- - 11340
- - 11339
- - 11338
- - 158
- - 836
- - 121
- - 63
- - 81
- - 112
- - 2585
- - 15846
- - 17493
- - 21505
- - 6147
- - 6173
- - 6156
- uid: 21506
components:
- type: Transform
@@ -70448,13 +70281,13 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 21508
- - 5940
- - 6097
- 6098
- - 15846
+ - 6097
+ - 5940
- 2585
+ - 15846
- 17493
+ - 21508
- uid: 21514
components:
- type: Transform
@@ -70462,14 +70295,8 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 6367
- - 6174
- - 6542
- 21512
- 21513
- - 9283
- - 9465
- - 9488
- 4127
- 13243
- uid: 21536
@@ -70499,9 +70326,6 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 13148
- - 13149
- - 13150
- 13107
- 13106
- 13153
@@ -70516,9 +70340,6 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 13148
- - 13149
- - 13150
- 21547
- 19862
- 19861
@@ -70647,15 +70468,16 @@ entities:
parent: 60
- type: DeviceList
devices:
- - 8957
- - 8774
- - 491
+ - 5940
+ - 6097
+ - 6098
+ - 21614
- 9468
- 5623
- 8168
- - 6098
- - 6097
- - 5940
+ - 1017
+ - 7721
+ - 780
- 21615
- uid: 21617
components:
@@ -70709,9 +70531,9 @@ entities:
- 7721
- 780
- 21633
- - 9058
- - 6830
- - 6560
+ - 4338
+ - 4337
+ - 4361
- uid: 21637
components:
- type: Transform
@@ -70745,12 +70567,6 @@ entities:
- 6593
- 6785
- 6661
- - uid: 21644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,13.5
- parent: 60
- uid: 21650
components:
- type: Transform
@@ -70827,21 +70643,6 @@ entities:
- 16558
- 21678
- 21713
- - uid: 21736
- components:
- - type: Transform
- pos: -19.5,-14.5
- parent: 60
- - type: DeviceList
- devices:
- - 13098
- - 21734
- - 5562
- - 5565
- - 5563
- - 8466
- - 6734
- - 7139
- uid: 23384
components:
- type: Transform
@@ -70884,19 +70685,6 @@ entities:
- 23765
- 23766
- 21643
- - uid: 24148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-6.5
- parent: 60
- - type: DeviceList
- devices:
- - 5562
- - 5565
- - 5563
- - 8466
- - 21733
- uid: 25156
components:
- type: Transform
@@ -71003,48 +70791,33 @@ entities:
parent: 60
- proto: FirelockEdge
entities:
- - uid: 63
- components:
- - type: Transform
- pos: -18.5,-21.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- - uid: 81
- components:
- - type: Transform
- pos: -19.5,-21.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- - uid: 112
+ - uid: 22
components:
- type: Transform
- pos: -20.5,-21.5
+ pos: -15.5,-20.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
- - uid: 121
+ - 4191
+ - 4710
+ - 4190
+ - 63
+ - uid: 184
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-20.5
+ pos: -18.5,-16.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
- - uid: 158
+ - 1970
+ - uid: 232
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-18.5
+ pos: -20.5,-16.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
+ - 1970
- uid: 458
components:
- type: Transform
@@ -71060,23 +70833,45 @@ entities:
- type: Transform
pos: -0.5,-20.5
parent: 60
- - uid: 836
+ - uid: 1280
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -17.5,-19.5
+ pos: 17.5,11.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
- - uid: 1280
+ - 21553
+ - uid: 1491
components:
- type: Transform
- pos: 17.5,11.5
+ pos: -14.5,-20.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21553
+ - 4191
+ - 4710
+ - 4190
+ - 63
+ - uid: 1643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4545
+ - 1962
+ - uid: 1644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -15.5,5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4545
+ - 1962
- uid: 1698
components:
- type: Transform
@@ -71093,6 +70888,50 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21553
+ - uid: 1967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 177
+ - uid: 1969
+ components:
+ - type: Transform
+ pos: -33.5,-16.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 230
+ - uid: 1982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-9.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 177
+ - uid: 1993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-9.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 177
+ - uid: 2002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 177
- uid: 2455
components:
- type: Transform
@@ -71125,24 +70964,6 @@ entities:
- type: Transform
pos: 1.5,-42.5
parent: 60
- - uid: 4009
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-42.5
- parent: 60
- - uid: 4010
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-41.5
- parent: 60
- - uid: 4011
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,-40.5
- parent: 60
- uid: 4501
components:
- type: Transform
@@ -71219,6 +71040,17 @@ entities:
- type: DeviceNetwork
deviceLists:
- 23767
+ - 4545
+ - uid: 8574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,5.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4545
+ - 1962
- uid: 8986
components:
- type: Transform
@@ -71227,6 +71059,18 @@ entities:
- type: DeviceNetwork
deviceLists:
- 23767
+ - 4545
+ - uid: 9052
+ components:
+ - type: Transform
+ pos: -16.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4191
+ - 4710
+ - 4190
+ - 63
- uid: 9054
components:
- type: Transform
@@ -71235,6 +71079,7 @@ entities:
- type: DeviceNetwork
deviceLists:
- 23767
+ - 4545
- uid: 9095
components:
- type: Transform
@@ -71253,18 +71098,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-27.5
parent: 60
- - uid: 11510
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -46.5,27.5
- parent: 60
- - uid: 11551
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -54.5,27.5
- parent: 60
- uid: 11698
components:
- type: Transform
@@ -71565,11 +71398,33 @@ entities:
parent: 60
- proto: FirelockGlass
entities:
- - uid: 491
+ - uid: 180
components:
- type: Transform
- pos: -36.5,5.5
+ pos: -30.5,-12.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 230
+ - 177
+ - uid: 182
+ components:
+ - type: Transform
+ pos: -31.5,-12.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 230
+ - 177
+ - uid: 210
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1970
+ - 177
- uid: 670
components:
- type: Transform
@@ -71577,7 +71432,9 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
+ - 4191
+ - 4190
+ - 63
- uid: 671
components:
- type: Transform
@@ -71585,7 +71442,9 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
+ - 4191
+ - 4190
+ - 63
- uid: 672
components:
- type: Transform
@@ -71593,7 +71452,9 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
+ - 4191
+ - 4190
+ - 63
- uid: 673
components:
- type: Transform
@@ -71626,6 +71487,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21635
+ - 21613
+ - 11347
+ - 4627
- uid: 1017
components:
- type: Transform
@@ -71634,6 +71498,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21635
+ - 21613
+ - 11347
+ - 4627
- uid: 1191
components:
- type: Transform
@@ -71647,30 +71514,15 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21558
- - uid: 1559
- components:
- - type: Transform
- pos: -22.5,-20.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 2103
- - uid: 1633
- components:
- - type: Transform
- pos: -22.5,-18.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 2103
- - uid: 1636
+ - uid: 1972
components:
- type: Transform
- pos: -22.5,-19.5
+ pos: -21.5,-12.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 2103
+ - 1970
+ - 177
- uid: 2044
components:
- type: Transform
@@ -71693,7 +71545,10 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
+ - 4191
+ - 21506
+ - 4190
+ - 63
- uid: 2680
components:
- type: Transform
@@ -71787,6 +71642,33 @@ entities:
- type: Transform
pos: -50.5,-23.5
parent: 60
+ - uid: 4337
+ components:
+ - type: Transform
+ pos: -17.5,8.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21635
+ - 4545
+ - uid: 4338
+ components:
+ - type: Transform
+ pos: -17.5,7.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21635
+ - 4545
+ - uid: 4361
+ components:
+ - type: Transform
+ pos: -17.5,9.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21635
+ - 4545
- uid: 4369
components:
- type: Transform
@@ -71911,38 +71793,16 @@ entities:
- type: Transform
pos: 45.5,-38.5
parent: 60
- - uid: 5562
- components:
- - type: Transform
- pos: -30.5,-8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- - 249
- - uid: 5563
- components:
- - type: Transform
- pos: -22.5,-8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- - 249
- - uid: 5565
- components:
- - type: Transform
- pos: -31.5,-8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- - 249
- uid: 5623
components:
- type: Transform
pos: -39.5,-0.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21613
+ - 11347
+ - 4627
- uid: 5684
components:
- type: Transform
@@ -71963,64 +71823,39 @@ entities:
- type: Transform
pos: -36.5,-17.5
parent: 60
- - uid: 6097
- components:
- - type: Transform
- pos: -37.5,-17.5
- parent: 60
- - uid: 6098
- components:
- - type: Transform
- pos: -38.5,-17.5
- parent: 60
- - uid: 6133
- components:
- - type: Transform
- pos: 15.5,6.5
- parent: 60
- - uid: 6147
- components:
- - type: Transform
- pos: -13.5,-22.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21497
- - 21503
- - uid: 6156
- components:
- - type: Transform
- pos: -13.5,-24.5
- parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
- - 21503
- - uid: 6173
+ - 21506
+ - 21613
+ - 11347
+ - 4627
+ - uid: 6097
components:
- type: Transform
- pos: -13.5,-23.5
+ pos: -37.5,-17.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21497
- - 21503
- - uid: 6174
+ - 21506
+ - 21613
+ - 11347
+ - 4627
+ - uid: 6098
components:
- type: Transform
- pos: 14.5,8.5
+ pos: -38.5,-17.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21514
- - uid: 6367
+ - 21506
+ - 21613
+ - 11347
+ - 4627
+ - uid: 6133
components:
- type: Transform
- pos: 14.5,9.5
+ pos: 15.5,6.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- uid: 6489
components:
- type: Transform
@@ -72031,22 +71866,6 @@ entities:
- type: Transform
pos: 20.5,-21.5
parent: 60
- - uid: 6542
- components:
- - type: Transform
- pos: 14.5,7.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- - uid: 6560
- components:
- - type: Transform
- pos: -17.5,7.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21635
- uid: 6561
components:
- type: Transform
@@ -72071,14 +71890,6 @@ entities:
- type: Transform
pos: -40.5,25.5
parent: 60
- - uid: 6734
- components:
- - type: Transform
- pos: -23.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- uid: 6736
components:
- type: Transform
@@ -72089,14 +71900,6 @@ entities:
- type: Transform
pos: -40.5,24.5
parent: 60
- - uid: 6830
- components:
- - type: Transform
- pos: -17.5,8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21635
- uid: 6854
components:
- type: Transform
@@ -72112,14 +71915,6 @@ entities:
- type: Transform
pos: -61.5,10.5
parent: 60
- - uid: 7139
- components:
- - type: Transform
- pos: -19.5,-17.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- uid: 7146
components:
- type: Transform
@@ -72166,20 +71961,19 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21635
+ - 21613
+ - 11347
+ - 4627
- uid: 8168
components:
- type: Transform
pos: -39.5,-1.5
parent: 60
- - uid: 8466
- components:
- - type: Transform
- pos: -21.5,-8.5
- parent: 60
- type: DeviceNetwork
deviceLists:
- - 21736
- - 249
+ - 21613
+ - 11347
+ - 4627
- uid: 8611
components:
- type: Transform
@@ -72204,11 +71998,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21553
- - uid: 8774
- components:
- - type: Transform
- pos: -37.5,5.5
- parent: 60
- uid: 8778
components:
- type: Transform
@@ -72219,24 +72008,11 @@ entities:
- type: Transform
pos: 39.5,-38.5
parent: 60
- - uid: 8957
- components:
- - type: Transform
- pos: -38.5,5.5
- parent: 60
- uid: 8961
components:
- type: Transform
pos: 44.5,-15.5
parent: 60
- - uid: 9058
- components:
- - type: Transform
- pos: -17.5,9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21635
- uid: 9184
components:
- type: Transform
@@ -72255,14 +72031,6 @@ entities:
deviceLists:
- 21558
- 21498
- - uid: 9283
- components:
- - type: Transform
- pos: -13.5,9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- uid: 9409
components:
- type: Transform
@@ -72286,27 +72054,16 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21630
- - uid: 9465
- components:
- - type: Transform
- pos: -13.5,8.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21514
- uid: 9468
components:
- type: Transform
pos: -39.5,0.5
parent: 60
- - uid: 9488
- components:
- - type: Transform
- pos: -13.5,7.5
- parent: 60
- type: DeviceNetwork
deviceLists:
- - 21514
+ - 21613
+ - 11347
+ - 4627
- uid: 9526
components:
- type: Transform
@@ -72322,40 +72079,11 @@ entities:
- type: Transform
pos: -49.5,1.5
parent: 60
- - uid: 10686
- components:
- - type: Transform
- pos: -16.5,6.5
- parent: 60
- uid: 11017
components:
- type: Transform
pos: 40.5,-41.5
parent: 60
- - uid: 11338
- components:
- - type: Transform
- pos: -16.5,-17.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- - uid: 11339
- components:
- - type: Transform
- pos: -15.5,-17.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- - uid: 11340
- components:
- - type: Transform
- pos: -14.5,-17.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21503
- uid: 11520
components:
- type: Transform
@@ -72386,14 +72114,6 @@ entities:
- type: Transform
pos: -50.5,-24.5
parent: 60
- - uid: 13098
- components:
- - type: Transform
- pos: -29.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21736
- uid: 13106
components:
- type: Transform
@@ -72410,30 +72130,6 @@ entities:
- type: DeviceNetwork
deviceLists:
- 21543
- - uid: 13148
- components:
- - type: Transform
- pos: 41.5,12.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21543
- - uid: 13149
- components:
- - type: Transform
- pos: 40.5,12.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21543
- - uid: 13150
- components:
- - type: Transform
- pos: 39.5,12.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 21543
- uid: 13151
components:
- type: Transform
@@ -72474,16 +72170,6 @@ entities:
- type: Transform
pos: -15.5,26.5
parent: 60
- - uid: 13966
- components:
- - type: Transform
- pos: -14.5,6.5
- parent: 60
- - uid: 13967
- components:
- - type: Transform
- pos: -15.5,6.5
- parent: 60
- uid: 13979
components:
- type: Transform
@@ -72506,7 +72192,10 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
+ - 4191
+ - 21506
+ - 4190
+ - 63
- uid: 16007
components:
- type: Transform
@@ -72554,22 +72243,10 @@ entities:
parent: 60
- type: DeviceNetwork
deviceLists:
- - 21503
- - uid: 18462
- components:
- - type: Transform
- pos: 1.5,-12.5
- parent: 60
- - uid: 18463
- components:
- - type: Transform
- pos: 0.5,-12.5
- parent: 60
- - uid: 18464
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 60
+ - 4191
+ - 21506
+ - 4190
+ - 63
- uid: 18608
components:
- type: Transform
@@ -72580,21 +72257,6 @@ entities:
- type: Transform
pos: 0.5,-1.5
parent: 60
- - uid: 18857
- components:
- - type: Transform
- pos: -14.5,-2.5
- parent: 60
- - uid: 18858
- components:
- - type: Transform
- pos: -15.5,-2.5
- parent: 60
- - uid: 18859
- components:
- - type: Transform
- pos: -16.5,-2.5
- parent: 60
- uid: 19088
components:
- type: Transform
@@ -72716,10 +72378,10 @@ entities:
- 25158
- proto: Fireplace
entities:
- - uid: 1532
+ - uid: 6065
components:
- type: Transform
- pos: -20.5,2.5
+ pos: -21.5,1.5
parent: 60
- uid: 7044
components:
@@ -72835,6 +72497,13 @@ entities:
- type: Transform
pos: -70.59139,20.353971
parent: 60
+- proto: FlashlightSeclite
+ entities:
+ - uid: 323
+ components:
+ - type: Transform
+ pos: -21.5,-20.5
+ parent: 60
- proto: FlippoLighter
entities:
- uid: 1352
@@ -73710,11 +73379,6 @@ entities:
parent: 60
- proto: FoodBoxDonkpocketPizza
entities:
- - uid: 177
- components:
- - type: Transform
- pos: -34.542274,1.9138722
- parent: 60
- uid: 15714
components:
- type: Transform
@@ -73722,10 +73386,10 @@ entities:
parent: 60
- proto: FoodBoxDonut
entities:
- - uid: 1930
+ - uid: 1737
components:
- type: Transform
- pos: -25.24082,-13.2937
+ pos: -25.411478,-6.2389956
parent: 60
- uid: 24664
components:
@@ -74113,7 +73777,7 @@ entities:
pos: 47.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF1212FF'
- proto: GasFilterFlipped
entities:
- uid: 23468
@@ -74320,7 +73984,7 @@ entities:
pos: 23.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- proto: GasPassiveVent
entities:
- uid: 2979
@@ -74544,7 +74208,7 @@ entities:
pos: 44.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 125
components:
- type: Transform
@@ -74560,7 +74224,7 @@ entities:
pos: 27.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 222
components:
- type: Transform
@@ -74568,7 +74232,7 @@ entities:
pos: 20.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 248
components:
- type: Transform
@@ -74576,21 +74240,44 @@ entities:
pos: -24.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 311
components:
- type: Transform
pos: 27.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -27.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 947
components:
- type: Transform
pos: 16.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 995
components:
- type: Transform
@@ -74598,14 +74285,14 @@ entities:
pos: 9.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1388
components:
- type: Transform
pos: 4.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1408
components:
- type: Transform
@@ -74613,7 +74300,7 @@ entities:
pos: 5.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1409
components:
- type: Transform
@@ -74621,53 +74308,46 @@ entities:
pos: 7.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1817
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1836
+ color: '#0335FCFF'
+ - uid: 1700
components:
- type: Transform
- pos: -30.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1892
+ color: '#FF1212FF'
+ - uid: 1776
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -27.5,-20.5
+ pos: -9.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1926
+ color: '#0335FCFF'
+ - uid: 2025
components:
- type: Transform
- pos: -29.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -23.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1973
+ color: '#0335FCFF'
+ - uid: 2113
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2025
+ color: '#0335FCFF'
+ - uid: 2120
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-27.5
+ pos: -20.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2203
components:
- type: Transform
@@ -74675,7 +74355,7 @@ entities:
pos: 15.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2207
components:
- type: Transform
@@ -74683,14 +74363,22 @@ entities:
pos: 32.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2274
components:
- type: Transform
pos: 34.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2366
components:
- type: Transform
@@ -74698,7 +74386,7 @@ entities:
pos: 30.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2443
components:
- type: Transform
@@ -74706,7 +74394,23 @@ entities:
pos: 16.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 2513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 2569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2999
components:
- type: Transform
@@ -74752,7 +74456,7 @@ entities:
pos: 40.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3188
components:
- type: Transform
@@ -74760,14 +74464,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 3198
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 3211
components:
- type: Transform
@@ -74775,7 +74471,7 @@ entities:
pos: 49.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3960
components:
- type: Transform
@@ -74783,7 +74479,7 @@ entities:
pos: -13.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3961
components:
- type: Transform
@@ -74791,7 +74487,7 @@ entities:
pos: -13.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4739
components:
- type: Transform
@@ -74799,7 +74495,7 @@ entities:
pos: 43.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4911
components:
- type: Transform
@@ -74807,14 +74503,14 @@ entities:
pos: -2.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4912
components:
- type: Transform
pos: -0.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4913
components:
- type: Transform
@@ -74822,7 +74518,7 @@ entities:
pos: 3.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4914
components:
- type: Transform
@@ -74830,7 +74526,7 @@ entities:
pos: -2.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4935
components:
- type: Transform
@@ -74838,14 +74534,14 @@ entities:
pos: 1.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4936
components:
- type: Transform
pos: 3.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4961
components:
- type: Transform
@@ -74853,7 +74549,7 @@ entities:
pos: 43.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4985
components:
- type: Transform
@@ -74861,7 +74557,7 @@ entities:
pos: 1.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4987
components:
- type: Transform
@@ -74869,7 +74565,7 @@ entities:
pos: -0.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5474
components:
- type: Transform
@@ -74877,7 +74573,7 @@ entities:
pos: -38.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5550
components:
- type: Transform
@@ -74900,14 +74596,14 @@ entities:
pos: 8.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5695
components:
- type: Transform
pos: 8.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5699
components:
- type: Transform
@@ -74915,7 +74611,7 @@ entities:
pos: 5.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5700
components:
- type: Transform
@@ -74923,21 +74619,21 @@ entities:
pos: 6.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5701
components:
- type: Transform
pos: 6.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5702
components:
- type: Transform
pos: 5.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5703
components:
- type: Transform
@@ -74945,7 +74641,7 @@ entities:
pos: -7.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5706
components:
- type: Transform
@@ -74953,7 +74649,7 @@ entities:
pos: -7.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5709
components:
- type: Transform
@@ -74961,7 +74657,7 @@ entities:
pos: -4.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5710
components:
- type: Transform
@@ -74969,7 +74665,7 @@ entities:
pos: -4.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5711
components:
- type: Transform
@@ -74977,7 +74673,7 @@ entities:
pos: -5.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5712
components:
- type: Transform
@@ -74985,14 +74681,14 @@ entities:
pos: -5.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5819
components:
- type: Transform
pos: 19.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5902
components:
- type: Transform
@@ -75000,7 +74696,7 @@ entities:
pos: 15.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5950
components:
- type: Transform
@@ -75008,7 +74704,7 @@ entities:
pos: -54.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5967
components:
- type: Transform
@@ -75016,14 +74712,14 @@ entities:
pos: -55.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6046
components:
- type: Transform
pos: -44.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6047
components:
- type: Transform
@@ -75031,14 +74727,14 @@ entities:
pos: -49.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6062
components:
- type: Transform
pos: -43.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6112
components:
- type: Transform
@@ -75046,7 +74742,7 @@ entities:
pos: -43.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6135
components:
- type: Transform
@@ -75054,7 +74750,15 @@ entities:
pos: -44.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6401
components:
- type: Transform
@@ -75062,37 +74766,22 @@ entities:
pos: -47.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6803
+ color: '#FF1212FF'
+ - uid: 6796
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-14.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 6823
components:
- type: Transform
pos: 17.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7033
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7285
- components:
- - type: Transform
- pos: -24.5,-18.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 7357
components:
- type: Transform
@@ -75112,83 +74801,112 @@ entities:
pos: 23.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8255
+ color: '#FF1212FF'
+ - uid: 7907
components:
- type: Transform
- pos: -37.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8258
+ color: '#FF1212FF'
+ - uid: 8212
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-8.5
+ pos: -18.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8579
+ color: '#FF1212FF'
+ - uid: 8343
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-16.5
+ pos: -31.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8771
+ color: '#FF1212FF'
+ - uid: 8386
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-18.5
+ pos: -12.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8948
+ color: '#FF1212FF'
+ - uid: 8417
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,-0.5
+ pos: -45.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8970
+ color: '#0335FCFF'
+ - uid: 8472
components:
- type: Transform
- pos: 21.5,-15.5
+ pos: -46.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9019
+ color: '#0335FCFF'
+ - uid: 8475
+ components:
+ - type: Transform
+ pos: -43.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8511
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 47.5,-21.5
+ pos: -43.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 9030
+ color: '#FF1212FF'
+ - uid: 8580
components:
- type: Transform
- pos: -30.5,0.5
+ rot: 3.141592653589793 rad
+ pos: -46.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9032
+ color: '#0335FCFF'
+ - uid: 8919
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9157
+ color: '#0335FCFF'
+ - uid: 8943
components:
- type: Transform
- pos: -18.5,-2.5
+ pos: -7.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 8944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8970
+ components:
+ - type: Transform
+ pos: 21.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 9019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-21.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 9638
components:
- type: Transform
@@ -75196,7 +74914,7 @@ entities:
pos: -54.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 11105
components:
- type: Transform
@@ -75211,7 +74929,7 @@ entities:
pos: -6.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11281
components:
- type: Transform
@@ -75225,7 +74943,7 @@ entities:
pos: 37.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11488
components:
- type: Transform
@@ -75233,7 +74951,7 @@ entities:
pos: 12.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11723
components:
- type: Transform
@@ -75241,7 +74959,7 @@ entities:
pos: 40.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11841
components:
- type: Transform
@@ -75249,7 +74967,7 @@ entities:
pos: 48.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12192
components:
- type: Transform
@@ -75257,7 +74975,7 @@ entities:
pos: 41.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12629
components:
- type: Transform
@@ -75265,7 +74983,7 @@ entities:
pos: 39.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12635
components:
- type: Transform
@@ -75273,7 +74991,7 @@ entities:
pos: 40.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12823
components:
- type: Transform
@@ -75281,7 +74999,7 @@ entities:
pos: -36.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12829
components:
- type: Transform
@@ -75289,7 +75007,7 @@ entities:
pos: -43.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12835
components:
- type: Transform
@@ -75297,7 +75015,7 @@ entities:
pos: -43.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13230
components:
- type: Transform
@@ -75320,7 +75038,7 @@ entities:
pos: 49.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13515
components:
- type: Transform
@@ -75328,7 +75046,7 @@ entities:
pos: 41.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13516
components:
- type: Transform
@@ -75336,7 +75054,7 @@ entities:
pos: 37.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13517
components:
- type: Transform
@@ -75344,7 +75062,7 @@ entities:
pos: 37.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13537
components:
- type: Transform
@@ -75352,7 +75070,7 @@ entities:
pos: 20.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13538
components:
- type: Transform
@@ -75360,7 +75078,7 @@ entities:
pos: 20.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13631
components:
- type: Transform
@@ -75368,30 +75086,30 @@ entities:
pos: -8.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14230
+ color: '#0335FCFF'
+ - uid: 14217
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -15.5,10.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14231
+ color: '#FF1212FF'
+ - uid: 14219
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,10.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14260
components:
- type: Transform
pos: -14.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14297
components:
- type: Transform
@@ -75399,14 +75117,14 @@ entities:
pos: -7.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14311
components:
- type: Transform
pos: -8.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14666
components:
- type: Transform
@@ -75421,7 +75139,7 @@ entities:
pos: -12.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14668
components:
- type: Transform
@@ -75429,7 +75147,7 @@ entities:
pos: -20.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14674
components:
- type: Transform
@@ -75437,7 +75155,7 @@ entities:
pos: -20.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14698
components:
- type: Transform
@@ -75445,7 +75163,7 @@ entities:
pos: -12.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14702
components:
- type: Transform
@@ -75466,7 +75184,7 @@ entities:
pos: -20.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14842
components:
- type: Transform
@@ -75563,7 +75281,7 @@ entities:
pos: -33.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15181
components:
- type: Transform
@@ -75663,14 +75381,14 @@ entities:
pos: -22.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15594
components:
- type: Transform
pos: -10.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15612
components:
- type: Transform
@@ -75678,14 +75396,14 @@ entities:
pos: -20.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15613
components:
- type: Transform
pos: -12.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16611
components:
- type: Transform
@@ -75693,7 +75411,7 @@ entities:
pos: 1.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16641
components:
- type: Transform
@@ -75701,7 +75419,7 @@ entities:
pos: -3.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16741
components:
- type: Transform
@@ -75731,7 +75449,7 @@ entities:
pos: -47.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17290
components:
- type: Transform
@@ -75739,7 +75457,7 @@ entities:
pos: -52.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17586
components:
- type: Transform
@@ -75747,7 +75465,7 @@ entities:
pos: -41.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17587
components:
- type: Transform
@@ -75755,7 +75473,7 @@ entities:
pos: -43.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18020
components:
- type: Transform
@@ -75769,7 +75487,7 @@ entities:
pos: -2.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18250
components:
- type: Transform
@@ -75777,14 +75495,14 @@ entities:
pos: -3.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18276
components:
- type: Transform
pos: -2.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18277
components:
- type: Transform
@@ -75792,7 +75510,7 @@ entities:
pos: -4.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18366
components:
- type: Transform
@@ -75805,7 +75523,7 @@ entities:
pos: 4.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18435
components:
- type: Transform
@@ -75813,7 +75531,7 @@ entities:
pos: -3.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18511
components:
- type: Transform
@@ -75821,21 +75539,21 @@ entities:
pos: -2.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18532
components:
- type: Transform
pos: 2.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18534
components:
- type: Transform
pos: 4.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18712
components:
- type: Transform
@@ -75843,7 +75561,7 @@ entities:
pos: 39.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18713
components:
- type: Transform
@@ -75851,7 +75569,7 @@ entities:
pos: 37.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18914
components:
- type: Transform
@@ -75859,7 +75577,7 @@ entities:
pos: 47.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21325
components:
- type: Transform
@@ -75867,14 +75585,14 @@ entities:
pos: -58.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21326
components:
- type: Transform
pos: -58.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21393
components:
- type: Transform
@@ -75882,14 +75600,14 @@ entities:
pos: -15.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21440
components:
- type: Transform
pos: -7.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21441
components:
- type: Transform
@@ -75897,7 +75615,7 @@ entities:
pos: -8.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21534
components:
- type: Transform
@@ -75905,14 +75623,14 @@ entities:
pos: 53.5,45.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21666
components:
- type: Transform
pos: -29.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 22829
components:
- type: Transform
@@ -75920,7 +75638,7 @@ entities:
pos: -119.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22846
components:
- type: Transform
@@ -75928,7 +75646,7 @@ entities:
pos: -111.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22872
components:
- type: Transform
@@ -75936,14 +75654,14 @@ entities:
pos: -110.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22873
components:
- type: Transform
pos: -102.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22874
components:
- type: Transform
@@ -75951,35 +75669,35 @@ entities:
pos: -102.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22875
components:
- type: Transform
pos: -99.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22877
components:
- type: Transform
pos: -110.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22880
components:
- type: Transform
pos: -98.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22895
components:
- type: Transform
pos: -111.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22896
components:
- type: Transform
@@ -75987,7 +75705,7 @@ entities:
pos: -113.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22897
components:
- type: Transform
@@ -75995,7 +75713,7 @@ entities:
pos: -113.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22898
components:
- type: Transform
@@ -76003,7 +75721,7 @@ entities:
pos: -111.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22899
components:
- type: Transform
@@ -76011,7 +75729,7 @@ entities:
pos: -111.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22909
components:
- type: Transform
@@ -76247,7 +75965,7 @@ entities:
pos: 55.5,47.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24902
components:
- type: Transform
@@ -76255,14 +75973,14 @@ entities:
pos: 33.5,45.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25167
components:
- type: Transform
pos: 35.5,47.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- proto: GasPipeFourway
entities:
- uid: 467
@@ -76271,70 +75989,77 @@ entities:
pos: 1.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 483
components:
- type: Transform
pos: -0.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 872
components:
- type: Transform
pos: 44.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 942
components:
- type: Transform
pos: 45.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1040
components:
- type: Transform
pos: 15.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1177
components:
- type: Transform
pos: -16.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2002
+ color: '#FF1212FF'
+ - uid: 1664
components:
- type: Transform
- pos: -22.5,-3.5
+ pos: -22.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1744
+ components:
+ - type: Transform
+ pos: -30.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 2361
components:
- type: Transform
pos: 23.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2470
components:
- type: Transform
pos: 21.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2491
components:
- type: Transform
pos: 39.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2903
components:
- type: Transform
@@ -76353,126 +76078,133 @@ entities:
pos: 45.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3194
components:
- type: Transform
pos: 44.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3195
components:
- type: Transform
pos: 44.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4002
components:
- type: Transform
pos: -7.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4116
components:
- type: Transform
pos: 33.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4656
components:
- type: Transform
pos: -0.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5247
+ components:
+ - type: Transform
+ pos: -38.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5473
+ components:
+ - type: Transform
+ pos: -9.5,7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5837
+ components:
+ - type: Transform
+ pos: -20.5,-22.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5991
components:
- type: Transform
pos: -52.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6213
components:
- type: Transform
pos: 1.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6264
components:
- type: Transform
pos: 17.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6268
components:
- type: Transform
pos: -38.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6275
components:
- type: Transform
pos: -47.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6834
components:
- type: Transform
pos: -47.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7563
- components:
- - type: Transform
- pos: -21.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8720
- components:
- - type: Transform
- pos: -18.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8748
+ color: '#FF1212FF'
+ - uid: 7904
components:
- type: Transform
- pos: -21.5,-7.5
+ pos: -14.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9232
components:
- type: Transform
pos: 17.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14241
components:
- type: Transform
pos: -14.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15113
components:
- type: Transform
pos: -33.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15531
components:
- type: Transform
@@ -76486,35 +76218,35 @@ entities:
pos: 39.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17887
components:
- type: Transform
pos: 45.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18231
components:
- type: Transform
pos: 1.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18239
components:
- type: Transform
pos: 1.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22822
components:
- type: Transform
pos: -111.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22997
components:
- type: Transform
@@ -76556,7 +76288,7 @@ entities:
pos: -30.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- proto: GasPipeSensorTEGCold
entities:
- uid: 15074
@@ -76584,7 +76316,7 @@ entities:
pos: -30.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- proto: GasPipeStraight
entities:
- uid: 47
@@ -76593,23 +76325,7 @@ entities:
pos: -36.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 88
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 98
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-11.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 133
components:
- type: Transform
@@ -76617,14 +76333,14 @@ entities:
pos: 23.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 171
components:
- type: Transform
pos: 44.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 195
components:
- type: Transform
@@ -76632,7 +76348,7 @@ entities:
pos: 39.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 196
components:
- type: Transform
@@ -76640,7 +76356,7 @@ entities:
pos: 40.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 198
components:
- type: Transform
@@ -76648,7 +76364,7 @@ entities:
pos: 41.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 199
components:
- type: Transform
@@ -76656,7 +76372,7 @@ entities:
pos: 42.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 202
components:
- type: Transform
@@ -76664,7 +76380,7 @@ entities:
pos: 23.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 212
components:
- type: Transform
@@ -76672,7 +76388,7 @@ entities:
pos: 21.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 221
components:
- type: Transform
@@ -76680,7 +76396,7 @@ entities:
pos: 20.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 224
components:
- type: Transform
@@ -76688,7 +76404,7 @@ entities:
pos: 21.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 272
components:
- type: Transform
@@ -76696,7 +76412,7 @@ entities:
pos: 21.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 293
components:
- type: Transform
@@ -76704,7 +76420,7 @@ entities:
pos: 20.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 294
components:
- type: Transform
@@ -76712,7 +76428,7 @@ entities:
pos: 27.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 299
components:
- type: Transform
@@ -76720,7 +76436,7 @@ entities:
pos: 21.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 301
components:
- type: Transform
@@ -76728,7 +76444,7 @@ entities:
pos: 27.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 302
components:
- type: Transform
@@ -76736,7 +76452,7 @@ entities:
pos: 23.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 305
components:
- type: Transform
@@ -76744,7 +76460,7 @@ entities:
pos: 24.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 310
components:
- type: Transform
@@ -76752,7 +76468,7 @@ entities:
pos: 26.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 312
components:
- type: Transform
@@ -76760,7 +76476,7 @@ entities:
pos: 23.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 318
components:
- type: Transform
@@ -76768,7 +76484,15 @@ entities:
pos: 27.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 360
components:
- type: Transform
@@ -76776,7 +76500,7 @@ entities:
pos: 21.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 361
components:
- type: Transform
@@ -76784,105 +76508,105 @@ entities:
pos: 25.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 412
components:
- type: Transform
pos: 1.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 413
components:
- type: Transform
pos: 1.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 414
components:
- type: Transform
pos: 1.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 415
components:
- type: Transform
pos: 1.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 416
components:
- type: Transform
pos: 1.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 418
components:
- type: Transform
pos: 1.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 420
components:
- type: Transform
pos: -0.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 421
components:
- type: Transform
pos: -0.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 422
components:
- type: Transform
pos: -0.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 423
components:
- type: Transform
pos: -0.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 424
components:
- type: Transform
pos: -0.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 425
components:
- type: Transform
pos: -0.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 427
components:
- type: Transform
pos: -0.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 440
components:
- type: Transform
pos: 44.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 462
components:
- type: Transform
@@ -76890,7 +76614,7 @@ entities:
pos: 1.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 463
components:
- type: Transform
@@ -76898,14 +76622,14 @@ entities:
pos: 0.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 465
components:
- type: Transform
pos: 45.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 468
components:
- type: Transform
@@ -76913,7 +76637,7 @@ entities:
pos: -0.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 469
components:
- type: Transform
@@ -76921,7 +76645,7 @@ entities:
pos: -1.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 470
components:
- type: Transform
@@ -76929,7 +76653,7 @@ entities:
pos: -2.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 471
components:
- type: Transform
@@ -76937,7 +76661,7 @@ entities:
pos: 2.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 472
components:
- type: Transform
@@ -76945,35 +76669,35 @@ entities:
pos: 3.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 475
components:
- type: Transform
pos: 1.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 476
components:
- type: Transform
pos: 1.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 477
components:
- type: Transform
pos: 1.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 478
components:
- type: Transform
pos: 1.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 480
components:
- type: Transform
@@ -76981,7 +76705,7 @@ entities:
pos: -0.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 481
components:
- type: Transform
@@ -76989,7 +76713,7 @@ entities:
pos: -0.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 484
components:
- type: Transform
@@ -76997,7 +76721,7 @@ entities:
pos: -0.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 485
components:
- type: Transform
@@ -77005,7 +76729,7 @@ entities:
pos: -0.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 486
components:
- type: Transform
@@ -77013,7 +76737,7 @@ entities:
pos: -0.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 495
components:
- type: Transform
@@ -77021,7 +76745,7 @@ entities:
pos: -2.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 496
components:
- type: Transform
@@ -77029,7 +76753,7 @@ entities:
pos: -1.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 505
components:
- type: Transform
@@ -77037,7 +76761,7 @@ entities:
pos: 0.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 506
components:
- type: Transform
@@ -77045,7 +76769,7 @@ entities:
pos: 1.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 507
components:
- type: Transform
@@ -77053,7 +76777,7 @@ entities:
pos: 2.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 509
components:
- type: Transform
@@ -77061,7 +76785,7 @@ entities:
pos: 4.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 510
components:
- type: Transform
@@ -77069,7 +76793,7 @@ entities:
pos: 4.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 512
components:
- type: Transform
@@ -77077,7 +76801,7 @@ entities:
pos: -3.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 532
components:
- type: Transform
@@ -77085,7 +76809,7 @@ entities:
pos: 43.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 618
components:
- type: Transform
@@ -77093,7 +76817,7 @@ entities:
pos: -32.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 619
components:
- type: Transform
@@ -77101,14 +76825,14 @@ entities:
pos: -31.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 632
components:
- type: Transform
pos: -14.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 716
components:
- type: Transform
@@ -77116,29 +76840,38 @@ entities:
pos: 13.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 720
+ color: '#0335FCFF'
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 30.5,-31.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 781
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -24.5,-15.5
+ pos: -21.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 735
+ color: '#0335FCFF'
+ - uid: 782
components:
- type: Transform
- pos: 30.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 764
+ color: '#0335FCFF'
+ - uid: 783
components:
- type: Transform
- pos: -27.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -28.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 794
components:
- type: Transform
@@ -77146,29 +76879,37 @@ entities:
pos: -15.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 835
+ color: '#FF1212FF'
+ - uid: 838
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,-19.5
+ pos: -23.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 874
components:
- type: Transform
pos: -3.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 875
components:
- type: Transform
pos: -3.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 879
components:
- type: Transform
@@ -77176,7 +76917,7 @@ entities:
pos: -7.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 880
components:
- type: Transform
@@ -77184,7 +76925,7 @@ entities:
pos: -6.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 881
components:
- type: Transform
@@ -77192,7 +76933,7 @@ entities:
pos: -5.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 882
components:
- type: Transform
@@ -77200,7 +76941,7 @@ entities:
pos: -4.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 883
components:
- type: Transform
@@ -77208,7 +76949,7 @@ entities:
pos: -4.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 884
components:
- type: Transform
@@ -77216,7 +76957,7 @@ entities:
pos: -8.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 885
components:
- type: Transform
@@ -77224,7 +76965,7 @@ entities:
pos: -8.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 886
components:
- type: Transform
@@ -77232,7 +76973,7 @@ entities:
pos: -9.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 888
components:
- type: Transform
@@ -77240,7 +76981,7 @@ entities:
pos: -11.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 889
components:
- type: Transform
@@ -77248,14 +76989,14 @@ entities:
pos: -12.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 890
components:
- type: Transform
pos: -9.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 891
components:
- type: Transform
@@ -77263,7 +77004,7 @@ entities:
pos: -4.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 892
components:
- type: Transform
@@ -77271,7 +77012,7 @@ entities:
pos: -5.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 893
components:
- type: Transform
@@ -77279,7 +77020,7 @@ entities:
pos: -6.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 894
components:
- type: Transform
@@ -77287,7 +77028,7 @@ entities:
pos: -7.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 897
components:
- type: Transform
@@ -77295,7 +77036,7 @@ entities:
pos: -10.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 899
components:
- type: Transform
@@ -77303,7 +77044,7 @@ entities:
pos: -11.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 900
components:
- type: Transform
@@ -77311,7 +77052,7 @@ entities:
pos: -12.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 901
components:
- type: Transform
@@ -77319,7 +77060,7 @@ entities:
pos: -13.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 903
components:
- type: Transform
@@ -77327,42 +77068,42 @@ entities:
pos: -14.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 905
components:
- type: Transform
pos: -9.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 906
components:
- type: Transform
pos: -9.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 908
components:
- type: Transform
pos: -3.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 909
components:
- type: Transform
pos: -3.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 917
components:
- type: Transform
pos: 30.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 950
components:
- type: Transform
@@ -77370,7 +77111,7 @@ entities:
pos: 42.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 951
components:
- type: Transform
@@ -77378,7 +77119,7 @@ entities:
pos: 44.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 961
components:
- type: Transform
@@ -77386,7 +77127,7 @@ entities:
pos: -13.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 991
components:
- type: Transform
@@ -77394,7 +77135,7 @@ entities:
pos: -16.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 996
components:
- type: Transform
@@ -77402,7 +77143,7 @@ entities:
pos: 14.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1029
components:
- type: Transform
@@ -77410,7 +77151,7 @@ entities:
pos: 5.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1030
components:
- type: Transform
@@ -77418,7 +77159,7 @@ entities:
pos: 6.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1031
components:
- type: Transform
@@ -77426,7 +77167,7 @@ entities:
pos: 7.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1032
components:
- type: Transform
@@ -77434,7 +77175,7 @@ entities:
pos: 8.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1033
components:
- type: Transform
@@ -77442,7 +77183,7 @@ entities:
pos: 9.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1034
components:
- type: Transform
@@ -77450,7 +77191,7 @@ entities:
pos: 10.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1035
components:
- type: Transform
@@ -77458,7 +77199,7 @@ entities:
pos: 11.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1037
components:
- type: Transform
@@ -77466,7 +77207,7 @@ entities:
pos: 13.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1038
components:
- type: Transform
@@ -77474,7 +77215,7 @@ entities:
pos: 14.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1039
components:
- type: Transform
@@ -77482,7 +77223,7 @@ entities:
pos: 15.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1041
components:
- type: Transform
@@ -77490,7 +77231,7 @@ entities:
pos: 5.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1042
components:
- type: Transform
@@ -77498,7 +77239,7 @@ entities:
pos: 6.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1044
components:
- type: Transform
@@ -77506,7 +77247,7 @@ entities:
pos: 8.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1046
components:
- type: Transform
@@ -77514,7 +77255,7 @@ entities:
pos: 10.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1048
components:
- type: Transform
@@ -77522,7 +77263,7 @@ entities:
pos: 12.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1049
components:
- type: Transform
@@ -77530,7 +77271,7 @@ entities:
pos: 13.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1050
components:
- type: Transform
@@ -77538,7 +77279,7 @@ entities:
pos: 14.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1053
components:
- type: Transform
@@ -77546,7 +77287,7 @@ entities:
pos: 17.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1054
components:
- type: Transform
@@ -77554,7 +77295,7 @@ entities:
pos: 17.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1055
components:
- type: Transform
@@ -77562,7 +77303,7 @@ entities:
pos: 15.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1056
components:
- type: Transform
@@ -77570,7 +77311,7 @@ entities:
pos: 17.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1057
components:
- type: Transform
@@ -77578,7 +77319,7 @@ entities:
pos: 17.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1058
components:
- type: Transform
@@ -77586,7 +77327,7 @@ entities:
pos: 15.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1060
components:
- type: Transform
@@ -77594,7 +77335,7 @@ entities:
pos: 17.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1062
components:
- type: Transform
@@ -77602,7 +77343,7 @@ entities:
pos: 15.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1063
components:
- type: Transform
@@ -77610,7 +77351,7 @@ entities:
pos: 15.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1064
components:
- type: Transform
@@ -77618,7 +77359,7 @@ entities:
pos: 17.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1065
components:
- type: Transform
@@ -77626,7 +77367,7 @@ entities:
pos: 17.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1067
components:
- type: Transform
@@ -77634,7 +77375,7 @@ entities:
pos: 15.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1068
components:
- type: Transform
@@ -77642,7 +77383,7 @@ entities:
pos: 17.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1069
components:
- type: Transform
@@ -77650,7 +77391,7 @@ entities:
pos: 17.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1070
components:
- type: Transform
@@ -77658,7 +77399,7 @@ entities:
pos: 15.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1073
components:
- type: Transform
@@ -77666,7 +77407,7 @@ entities:
pos: 17.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1076
components:
- type: Transform
@@ -77674,7 +77415,7 @@ entities:
pos: 17.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1078
components:
- type: Transform
@@ -77682,7 +77423,7 @@ entities:
pos: 15.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1080
components:
- type: Transform
@@ -77690,7 +77431,7 @@ entities:
pos: 17.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1081
components:
- type: Transform
@@ -77698,7 +77439,7 @@ entities:
pos: 17.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1082
components:
- type: Transform
@@ -77706,7 +77447,7 @@ entities:
pos: 15.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1083
components:
- type: Transform
@@ -77714,7 +77455,7 @@ entities:
pos: 15.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1084
components:
- type: Transform
@@ -77722,7 +77463,7 @@ entities:
pos: 17.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1085
components:
- type: Transform
@@ -77730,7 +77471,7 @@ entities:
pos: 17.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1086
components:
- type: Transform
@@ -77738,7 +77479,7 @@ entities:
pos: 15.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1087
components:
- type: Transform
@@ -77746,7 +77487,7 @@ entities:
pos: 15.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1088
components:
- type: Transform
@@ -77754,7 +77495,7 @@ entities:
pos: 17.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1089
components:
- type: Transform
@@ -77762,7 +77503,7 @@ entities:
pos: 17.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1090
components:
- type: Transform
@@ -77770,7 +77511,7 @@ entities:
pos: 15.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1091
components:
- type: Transform
@@ -77778,14 +77519,14 @@ entities:
pos: 15.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1092
components:
- type: Transform
pos: 17.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1093
components:
- type: Transform
@@ -77793,7 +77534,7 @@ entities:
pos: 15.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1094
components:
- type: Transform
@@ -77801,14 +77542,14 @@ entities:
pos: 17.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1095
components:
- type: Transform
pos: 15.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1097
components:
- type: Transform
@@ -77816,7 +77557,7 @@ entities:
pos: 15.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1098
components:
- type: Transform
@@ -77824,7 +77565,7 @@ entities:
pos: 17.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1100
components:
- type: Transform
@@ -77832,7 +77573,7 @@ entities:
pos: 17.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1101
components:
- type: Transform
@@ -77840,7 +77581,7 @@ entities:
pos: 15.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1102
components:
- type: Transform
@@ -77848,7 +77589,7 @@ entities:
pos: 17.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1103
components:
- type: Transform
@@ -77856,7 +77597,7 @@ entities:
pos: 15.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1104
components:
- type: Transform
@@ -77864,7 +77605,7 @@ entities:
pos: 17.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1105
components:
- type: Transform
@@ -77872,7 +77613,7 @@ entities:
pos: 15.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1106
components:
- type: Transform
@@ -77880,7 +77621,7 @@ entities:
pos: 17.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1107
components:
- type: Transform
@@ -77888,7 +77629,7 @@ entities:
pos: 15.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1108
components:
- type: Transform
@@ -77896,7 +77637,7 @@ entities:
pos: 17.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1109
components:
- type: Transform
@@ -77904,7 +77645,7 @@ entities:
pos: 15.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1110
components:
- type: Transform
@@ -77912,7 +77653,7 @@ entities:
pos: 17.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1111
components:
- type: Transform
@@ -77920,7 +77661,7 @@ entities:
pos: 15.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1112
components:
- type: Transform
@@ -77928,7 +77669,7 @@ entities:
pos: 17.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1113
components:
- type: Transform
@@ -77936,7 +77677,7 @@ entities:
pos: -15.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1119
components:
- type: Transform
@@ -77944,7 +77685,7 @@ entities:
pos: -14.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1120
components:
- type: Transform
@@ -77952,7 +77693,7 @@ entities:
pos: -14.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1123
components:
- type: Transform
@@ -77960,7 +77701,7 @@ entities:
pos: -14.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1124
components:
- type: Transform
@@ -77968,7 +77709,7 @@ entities:
pos: -14.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1125
components:
- type: Transform
@@ -77976,14 +77717,14 @@ entities:
pos: -16.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1126
components:
- type: Transform
pos: -16.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1127
components:
- type: Transform
@@ -77991,7 +77732,7 @@ entities:
pos: -14.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1129
components:
- type: Transform
@@ -77999,7 +77740,7 @@ entities:
pos: -16.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1130
components:
- type: Transform
@@ -78007,7 +77748,7 @@ entities:
pos: -16.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1131
components:
- type: Transform
@@ -78015,7 +77756,7 @@ entities:
pos: -14.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1132
components:
- type: Transform
@@ -78023,7 +77764,7 @@ entities:
pos: -14.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1134
components:
- type: Transform
@@ -78031,7 +77772,7 @@ entities:
pos: -16.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1135
components:
- type: Transform
@@ -78039,7 +77780,7 @@ entities:
pos: -16.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1137
components:
- type: Transform
@@ -78047,7 +77788,7 @@ entities:
pos: -14.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1138
components:
- type: Transform
@@ -78055,7 +77796,7 @@ entities:
pos: -14.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1139
components:
- type: Transform
@@ -78063,7 +77804,7 @@ entities:
pos: -16.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1140
components:
- type: Transform
@@ -78071,7 +77812,7 @@ entities:
pos: -16.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1141
components:
- type: Transform
@@ -78079,7 +77820,7 @@ entities:
pos: -14.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1142
components:
- type: Transform
@@ -78087,7 +77828,7 @@ entities:
pos: -14.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1143
components:
- type: Transform
@@ -78095,7 +77836,7 @@ entities:
pos: -16.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1144
components:
- type: Transform
@@ -78103,7 +77844,7 @@ entities:
pos: -16.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1145
components:
- type: Transform
@@ -78111,7 +77852,7 @@ entities:
pos: -14.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1146
components:
- type: Transform
@@ -78119,7 +77860,7 @@ entities:
pos: -14.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1147
components:
- type: Transform
@@ -78127,7 +77868,7 @@ entities:
pos: -16.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1149
components:
- type: Transform
@@ -78135,7 +77876,7 @@ entities:
pos: -14.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1151
components:
- type: Transform
@@ -78143,7 +77884,7 @@ entities:
pos: -16.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1152
components:
- type: Transform
@@ -78151,7 +77892,7 @@ entities:
pos: -16.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1153
components:
- type: Transform
@@ -78159,7 +77900,7 @@ entities:
pos: -14.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1154
components:
- type: Transform
@@ -78167,7 +77908,7 @@ entities:
pos: -14.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1155
components:
- type: Transform
@@ -78175,7 +77916,7 @@ entities:
pos: -16.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1156
components:
- type: Transform
@@ -78183,7 +77924,7 @@ entities:
pos: -16.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1157
components:
- type: Transform
@@ -78191,7 +77932,7 @@ entities:
pos: -14.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1158
components:
- type: Transform
@@ -78199,7 +77940,7 @@ entities:
pos: -14.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1159
components:
- type: Transform
@@ -78207,7 +77948,7 @@ entities:
pos: -16.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1160
components:
- type: Transform
@@ -78215,7 +77956,7 @@ entities:
pos: -16.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1161
components:
- type: Transform
@@ -78223,15 +77964,7 @@ entities:
pos: -14.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1163
components:
- type: Transform
@@ -78239,7 +77972,7 @@ entities:
pos: -16.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1164
components:
- type: Transform
@@ -78247,7 +77980,7 @@ entities:
pos: -16.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1165
components:
- type: Transform
@@ -78255,7 +77988,7 @@ entities:
pos: -14.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1166
components:
- type: Transform
@@ -78263,15 +77996,7 @@ entities:
pos: -14.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1168
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1169
components:
- type: Transform
@@ -78279,7 +78004,7 @@ entities:
pos: -14.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1171
components:
- type: Transform
@@ -78287,7 +78012,7 @@ entities:
pos: -16.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1172
components:
- type: Transform
@@ -78295,7 +78020,7 @@ entities:
pos: -16.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1173
components:
- type: Transform
@@ -78303,7 +78028,7 @@ entities:
pos: -14.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1176
components:
- type: Transform
@@ -78311,28 +78036,28 @@ entities:
pos: -17.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1214
components:
- type: Transform
pos: -14.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1215
components:
- type: Transform
pos: -16.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1216
components:
- type: Transform
pos: -14.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1218
components:
- type: Transform
@@ -78340,14 +78065,14 @@ entities:
pos: -13.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1219
components:
- type: Transform
pos: -16.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1220
components:
- type: Transform
@@ -78355,7 +78080,7 @@ entities:
pos: -12.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1221
components:
- type: Transform
@@ -78363,7 +78088,7 @@ entities:
pos: -12.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1222
components:
- type: Transform
@@ -78371,7 +78096,7 @@ entities:
pos: -11.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1223
components:
- type: Transform
@@ -78379,7 +78104,7 @@ entities:
pos: -11.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1224
components:
- type: Transform
@@ -78387,7 +78112,7 @@ entities:
pos: -10.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1227
components:
- type: Transform
@@ -78395,7 +78120,7 @@ entities:
pos: -9.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1228
components:
- type: Transform
@@ -78403,7 +78128,7 @@ entities:
pos: -8.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1231
components:
- type: Transform
@@ -78411,15 +78136,7 @@ entities:
pos: -15.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1257
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-24.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1260
components:
- type: Transform
@@ -78427,7 +78144,7 @@ entities:
pos: 9.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1261
components:
- type: Transform
@@ -78435,7 +78152,7 @@ entities:
pos: 10.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1263
components:
- type: Transform
@@ -78443,7 +78160,7 @@ entities:
pos: 11.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1264
components:
- type: Transform
@@ -78451,7 +78168,7 @@ entities:
pos: 11.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1266
components:
- type: Transform
@@ -78459,7 +78176,7 @@ entities:
pos: 12.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1267
components:
- type: Transform
@@ -78467,7 +78184,7 @@ entities:
pos: 13.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1268
components:
- type: Transform
@@ -78475,7 +78192,7 @@ entities:
pos: 14.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1270
components:
- type: Transform
@@ -78483,7 +78200,7 @@ entities:
pos: 14.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1271
components:
- type: Transform
@@ -78491,7 +78208,7 @@ entities:
pos: 15.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1272
components:
- type: Transform
@@ -78499,7 +78216,7 @@ entities:
pos: 16.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1274
components:
- type: Transform
@@ -78507,7 +78224,7 @@ entities:
pos: 17.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1279
components:
- type: Transform
@@ -78515,14 +78232,14 @@ entities:
pos: -48.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1281
components:
- type: Transform
pos: -16.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1306
components:
- type: Transform
@@ -78530,7 +78247,7 @@ entities:
pos: -17.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1308
components:
- type: Transform
@@ -78538,7 +78255,7 @@ entities:
pos: -1.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1359
components:
- type: Transform
@@ -78553,112 +78270,112 @@ entities:
pos: 3.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1390
components:
- type: Transform
pos: 3.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1391
components:
- type: Transform
pos: 3.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1395
components:
- type: Transform
pos: 4.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1396
components:
- type: Transform
pos: 4.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1399
components:
- type: Transform
pos: 7.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1400
components:
- type: Transform
pos: 7.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1401
components:
- type: Transform
pos: 7.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1402
components:
- type: Transform
pos: 7.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1403
components:
- type: Transform
pos: 7.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1404
components:
- type: Transform
pos: 7.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1413
components:
- type: Transform
pos: -0.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1414
components:
- type: Transform
pos: -0.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1415
components:
- type: Transform
pos: 1.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1416
components:
- type: Transform
pos: 1.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1418
components:
- type: Transform
pos: 1.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1420
components:
- type: Transform
@@ -78666,7 +78383,7 @@ entities:
pos: -0.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1421
components:
- type: Transform
@@ -78674,7 +78391,7 @@ entities:
pos: -0.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1422
components:
- type: Transform
@@ -78682,7 +78399,7 @@ entities:
pos: -0.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1423
components:
- type: Transform
@@ -78690,7 +78407,7 @@ entities:
pos: -0.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1424
components:
- type: Transform
@@ -78698,7 +78415,7 @@ entities:
pos: -0.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1425
components:
- type: Transform
@@ -78706,7 +78423,7 @@ entities:
pos: 1.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1426
components:
- type: Transform
@@ -78714,7 +78431,7 @@ entities:
pos: 1.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1427
components:
- type: Transform
@@ -78722,7 +78439,7 @@ entities:
pos: 1.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1428
components:
- type: Transform
@@ -78730,7 +78447,7 @@ entities:
pos: 1.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1497
components:
- type: Transform
@@ -78738,14 +78455,14 @@ entities:
pos: -20.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1500
components:
- type: Transform
pos: -36.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1505
components:
- type: Transform
@@ -78753,7 +78470,7 @@ entities:
pos: -21.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1506
components:
- type: Transform
@@ -78761,7 +78478,7 @@ entities:
pos: -16.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1519
components:
- type: Transform
@@ -78769,7 +78486,7 @@ entities:
pos: -22.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1526
components:
- type: Transform
@@ -78777,7 +78494,7 @@ entities:
pos: -21.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1531
components:
- type: Transform
@@ -78785,7 +78502,7 @@ entities:
pos: -24.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1588
components:
- type: Transform
@@ -78793,21 +78510,14 @@ entities:
pos: -18.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1592
components:
- type: Transform
pos: -28.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1601
- components:
- - type: Transform
- pos: -25.5,-17.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1602
components:
- type: Transform
@@ -78815,7 +78525,7 @@ entities:
pos: -16.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1605
components:
- type: Transform
@@ -78823,7 +78533,7 @@ entities:
pos: -25.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1606
components:
- type: Transform
@@ -78831,7 +78541,7 @@ entities:
pos: -27.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1607
components:
- type: Transform
@@ -78839,7 +78549,7 @@ entities:
pos: -26.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1609
components:
- type: Transform
@@ -78847,7 +78557,7 @@ entities:
pos: -23.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1612
components:
- type: Transform
@@ -78855,7 +78565,7 @@ entities:
pos: -26.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1613
components:
- type: Transform
@@ -78863,7 +78573,7 @@ entities:
pos: -27.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1614
components:
- type: Transform
@@ -78871,15 +78581,7 @@ entities:
pos: -28.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1619
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-10.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 1629
components:
- type: Transform
@@ -78887,7 +78589,7 @@ entities:
pos: -16.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1630
components:
- type: Transform
@@ -78895,7 +78597,7 @@ entities:
pos: -16.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1641
components:
- type: Transform
@@ -78903,21 +78605,54 @@ entities:
pos: 4.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1657
+ color: '#0335FCFF'
+ - uid: 1663
components:
- type: Transform
- pos: -25.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -9.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 1684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 1692
components:
- type: Transform
pos: -36.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1694
components:
- type: Transform
@@ -78925,7 +78660,15 @@ entities:
pos: -17.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 1702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 1705
components:
- type: Transform
@@ -78933,7 +78676,7 @@ entities:
pos: -25.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1712
components:
- type: Transform
@@ -78941,7 +78684,7 @@ entities:
pos: -29.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1713
components:
- type: Transform
@@ -78949,77 +78692,99 @@ entities:
pos: -30.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1723
+ color: '#0335FCFF'
+ - uid: 1718
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -20.5,-9.5
+ pos: -35.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1730
+ color: '#0335FCFF'
+ - uid: 1721
components:
- type: Transform
- pos: -38.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1733
+ color: '#FF1212FF'
+ - uid: 1724
+ components:
+ - type: Transform
+ pos: -22.5,-8.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: -22.5,-6.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1729
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -24.5,-19.5
+ pos: -32.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1747
+ color: '#0335FCFF'
+ - uid: 1730
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-22.5
+ pos: -38.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1749
+ color: '#FF1212FF'
+ - uid: 1732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1734
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -28.5,-19.5
+ pos: -23.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1750
+ color: '#0335FCFF'
+ - uid: 1747
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -31.5,-19.5
+ pos: -33.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1751
+ color: '#0335FCFF'
+ - uid: 1748
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1752
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -17.5,-19.5
+ pos: -31.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1753
components:
- type: Transform
pos: -38.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1754
components:
- type: Transform
@@ -79027,117 +78792,122 @@ entities:
pos: -30.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1755
components:
- type: Transform
pos: -38.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1757
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,-19.5
+ pos: -20.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1769
+ color: '#0335FCFF'
+ - uid: 1758
components:
- type: Transform
- pos: -36.5,-1.5
+ pos: -22.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1770
+ color: '#0335FCFF'
+ - uid: 1765
components:
- type: Transform
- pos: -36.5,3.5
+ pos: -22.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1772
+ color: '#0335FCFF'
+ - uid: 1766
components:
- type: Transform
- pos: -36.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1773
+ color: '#FF1212FF'
+ - uid: 1767
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-19.5
+ pos: -22.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1774
+ color: '#0335FCFF'
+ - uid: 1769
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,9.5
+ pos: -36.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1776
+ color: '#0335FCFF'
+ - uid: 1770
+ components:
+ - type: Transform
+ pos: -36.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1772
+ components:
+ - type: Transform
+ pos: -36.5,2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1774
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-19.5
+ pos: -25.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1777
components:
- type: Transform
pos: -36.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1778
components:
- type: Transform
pos: -38.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1779
components:
- type: Transform
pos: -36.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1782
components:
- type: Transform
pos: -38.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1783
components:
- type: Transform
pos: -36.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1784
components:
- type: Transform
pos: -36.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1786
components:
- type: Transform
@@ -79145,552 +78915,390 @@ entities:
pos: -18.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1788
components:
- type: Transform
pos: -38.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-6.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1797
+ color: '#FF1212FF'
+ - uid: 1790
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -24.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1809
- components:
- - type: Transform
- pos: -31.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1825
- components:
- - type: Transform
- pos: -38.5,-11.5
+ pos: -36.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1826
+ color: '#FF1212FF'
+ - uid: 1791
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -30.5,9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1827
- components:
- - type: Transform
- pos: -38.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1828
- components:
- - type: Transform
- pos: -38.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1829
- components:
- - type: Transform
- pos: -36.5,-17.5
+ pos: -24.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1834
+ color: '#0335FCFF'
+ - uid: 1793
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -26.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1837
- components:
- - type: Transform
- pos: -36.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1839
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,9.5
+ pos: -37.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1840
+ color: '#FF1212FF'
+ - uid: 1794
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-19.5
+ pos: -25.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1841
+ color: '#0335FCFF'
+ - uid: 1796
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -34.5,9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1842
- components:
- - type: Transform
- pos: -38.5,-10.5
+ pos: -26.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1844
+ color: '#0335FCFF'
+ - uid: 1797
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1851
+ color: '#0335FCFF'
+ - uid: 1798
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -21.5,7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1855
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-13.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1874
- components:
- - type: Transform
- pos: -38.5,-18.5
+ pos: -35.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1875
+ color: '#FF1212FF'
+ - uid: 1799
components:
- type: Transform
- pos: -38.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1876
+ color: '#FF1212FF'
+ - uid: 1800
components:
- type: Transform
- pos: -38.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1877
+ color: '#0335FCFF'
+ - uid: 1804
components:
- type: Transform
- pos: -38.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1878
+ color: '#0335FCFF'
+ - uid: 1805
components:
- type: Transform
- pos: -38.5,7.5
+ pos: -30.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1879
+ color: '#0335FCFF'
+ - uid: 1811
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -35.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1880
+ color: '#0335FCFF'
+ - uid: 1812
components:
- type: Transform
- pos: -36.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1890
+ color: '#0335FCFF'
+ - uid: 1813
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -36.5,-0.5
+ pos: -30.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1894
+ color: '#0335FCFF'
+ - uid: 1816
components:
- type: Transform
- pos: -24.5,9.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1895
+ color: '#0335FCFF'
+ - uid: 1819
components:
- type: Transform
- pos: -38.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1896
+ color: '#FF1212FF'
+ - uid: 1823
components:
- type: Transform
- pos: -36.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1897
+ color: '#0335FCFF'
+ - uid: 1825
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,7.5
+ pos: -38.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1898
+ color: '#FF1212FF'
+ - uid: 1826
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1899
+ color: '#FF1212FF'
+ - uid: 1827
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,7.5
+ pos: -38.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1900
+ color: '#FF1212FF'
+ - uid: 1828
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,7.5
+ pos: -38.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1901
+ color: '#FF1212FF'
+ - uid: 1829
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-15.5
+ pos: -36.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1903
+ color: '#0335FCFF'
+ - uid: 1837
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-15.5
+ pos: -36.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1906
+ color: '#0335FCFF'
+ - uid: 1838
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-14.5
+ pos: -22.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1909
+ color: '#0335FCFF'
+ - uid: 1839
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -24.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1910
+ color: '#FF1212FF'
+ - uid: 1841
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-11.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1913
+ color: '#FF1212FF'
+ - uid: 1842
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-9.5
+ pos: -38.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1914
+ color: '#FF1212FF'
+ - uid: 1843
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,-10.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1915
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-12.5
+ pos: -30.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1916
+ color: '#0335FCFF'
+ - uid: 1844
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1917
+ color: '#FF1212FF'
+ - uid: 1851
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -31.5,-9.5
+ pos: -21.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1918
+ color: '#0335FCFF'
+ - uid: 1852
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,-6.5
+ pos: -22.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1920
+ color: '#FF1212FF'
+ - uid: 1871
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -27.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1921
+ color: '#0335FCFF'
+ - uid: 1875
components:
- type: Transform
- pos: -21.5,-6.5
+ pos: -38.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1923
+ color: '#FF1212FF'
+ - uid: 1876
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-9.5
+ pos: -38.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1925
+ color: '#FF1212FF'
+ - uid: 1877
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-6.5
+ pos: -38.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1929
+ color: '#FF1212FF'
+ - uid: 1878
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-12.5
+ pos: -38.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1934
+ color: '#FF1212FF'
+ - uid: 1879
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1935
- components:
- - type: Transform
- pos: -21.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1936
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-2.5
+ pos: -35.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1943
+ color: '#FF1212FF'
+ - uid: 1880
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-7.5
+ pos: -36.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1945
+ color: '#0335FCFF'
+ - uid: 1890
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: -36.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1946
+ color: '#0335FCFF'
+ - uid: 1894
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-5.5
+ pos: -24.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1958
+ color: '#0335FCFF'
+ - uid: 1895
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-3.5
+ pos: -38.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1961
+ color: '#FF1212FF'
+ - uid: 1896
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,9.5
+ pos: -36.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1965
+ color: '#0335FCFF'
+ - uid: 1897
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -29.5,-7.5
+ pos: -32.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1966
+ color: '#0335FCFF'
+ - uid: 1898
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -23.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1967
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-15.5
+ pos: -35.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1968
+ color: '#0335FCFF'
+ - uid: 1899
components:
- type: Transform
- pos: -22.5,-14.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1969
+ color: '#0335FCFF'
+ - uid: 1900
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -32.5,-16.5
+ pos: -34.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1970
+ color: '#0335FCFF'
+ - uid: 1961
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -29.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1974
- components:
- - type: Transform
- pos: -30.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1975
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1976
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1977
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-12.5
+ pos: -21.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1981
+ color: '#FF1212FF'
+ - uid: 1973
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -25.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1983
- components:
- - type: Transform
- pos: -31.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1985
- components:
- - type: Transform
- pos: -31.5,-11.5
+ pos: -21.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1990
+ color: '#0335FCFF'
+ - uid: 1978
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 1991
components:
- type: Transform
@@ -79698,36 +79306,28 @@ entities:
pos: -33.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1992
components:
- type: Transform
pos: -38.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1993
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1995
components:
- type: Transform
pos: -36.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1997
components:
- type: Transform
pos: -38.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1998
components:
- type: Transform
@@ -79735,28 +79335,28 @@ entities:
pos: -37.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1999
components:
- type: Transform
pos: -36.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2000
components:
- type: Transform
pos: -38.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2001
components:
- type: Transform
pos: -38.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2006
components:
- type: Transform
@@ -79764,30 +79364,14 @@ entities:
pos: -27.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2007
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 2010
components:
- type: Transform
pos: -24.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2011
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2013
components:
- type: Transform
@@ -79795,7 +79379,7 @@ entities:
pos: -23.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2016
components:
- type: Transform
@@ -79803,21 +79387,21 @@ entities:
pos: -36.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2020
components:
- type: Transform
pos: -23.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2021
components:
- type: Transform
pos: -23.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2023
components:
- type: Transform
@@ -79825,7 +79409,7 @@ entities:
pos: -24.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2028
components:
- type: Transform
@@ -79833,7 +79417,7 @@ entities:
pos: -24.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2029
components:
- type: Transform
@@ -79841,49 +79425,49 @@ entities:
pos: -23.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2031
components:
- type: Transform
pos: -23.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2032
components:
- type: Transform
pos: -24.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2033
components:
- type: Transform
pos: -24.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2107
components:
- type: Transform
pos: -36.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2108
components:
- type: Transform
pos: -36.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2109
components:
- type: Transform
pos: -36.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2110
components:
- type: Transform
@@ -79891,35 +79475,28 @@ entities:
pos: -39.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2111
components:
- type: Transform
pos: -38.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2112
- components:
- - type: Transform
- pos: -36.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 2122
components:
- type: Transform
pos: -36.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2123
components:
- type: Transform
pos: -38.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2124
components:
- type: Transform
@@ -79927,7 +79504,7 @@ entities:
pos: -18.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2125
components:
- type: Transform
@@ -79935,7 +79512,7 @@ entities:
pos: -20.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2126
components:
- type: Transform
@@ -79943,7 +79520,7 @@ entities:
pos: -23.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2128
components:
- type: Transform
@@ -79951,7 +79528,7 @@ entities:
pos: -27.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2129
components:
- type: Transform
@@ -79959,15 +79536,23 @@ entities:
pos: -28.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2131
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-10.5
+ pos: -33.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 2133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2159
components:
- type: Transform
@@ -79975,7 +79560,15 @@ entities:
pos: 43.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -18.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 2161
components:
- type: Transform
@@ -79983,56 +79576,70 @@ entities:
pos: -22.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2162
+ components:
+ - type: Transform
+ pos: -18.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 2183
+ components:
+ - type: Transform
+ pos: -22.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2194
components:
- type: Transform
pos: 15.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2195
components:
- type: Transform
pos: 15.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2196
components:
- type: Transform
pos: 15.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2197
components:
- type: Transform
pos: 15.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2198
components:
- type: Transform
pos: 15.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2201
components:
- type: Transform
pos: 16.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2202
components:
- type: Transform
pos: 16.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2204
components:
- type: Transform
@@ -80040,7 +79647,7 @@ entities:
pos: 34.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2206
components:
- type: Transform
@@ -80048,7 +79655,7 @@ entities:
pos: 33.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2209
components:
- type: Transform
@@ -80056,7 +79663,7 @@ entities:
pos: 34.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2288
components:
- type: Transform
@@ -80064,21 +79671,21 @@ entities:
pos: -4.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2356
components:
- type: Transform
pos: 32.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2357
components:
- type: Transform
pos: 32.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2362
components:
- type: Transform
@@ -80086,7 +79693,7 @@ entities:
pos: 23.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2363
components:
- type: Transform
@@ -80094,7 +79701,7 @@ entities:
pos: 23.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2364
components:
- type: Transform
@@ -80110,7 +79717,7 @@ entities:
pos: 22.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2367
components:
- type: Transform
@@ -80118,7 +79725,7 @@ entities:
pos: 23.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2372
components:
- type: Transform
@@ -80126,7 +79733,7 @@ entities:
pos: 23.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2373
components:
- type: Transform
@@ -80134,7 +79741,7 @@ entities:
pos: 25.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2460
components:
- type: Transform
@@ -80142,7 +79749,7 @@ entities:
pos: 16.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2461
components:
- type: Transform
@@ -80150,7 +79757,7 @@ entities:
pos: 17.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2462
components:
- type: Transform
@@ -80158,7 +79765,7 @@ entities:
pos: 18.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2463
components:
- type: Transform
@@ -80166,7 +79773,7 @@ entities:
pos: 19.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2464
components:
- type: Transform
@@ -80174,7 +79781,7 @@ entities:
pos: 20.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2465
components:
- type: Transform
@@ -80182,7 +79789,7 @@ entities:
pos: 18.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2466
components:
- type: Transform
@@ -80190,7 +79797,7 @@ entities:
pos: 19.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2467
components:
- type: Transform
@@ -80198,7 +79805,7 @@ entities:
pos: 20.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2468
components:
- type: Transform
@@ -80206,7 +79813,7 @@ entities:
pos: 21.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2469
components:
- type: Transform
@@ -80214,7 +79821,7 @@ entities:
pos: 22.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2471
components:
- type: Transform
@@ -80222,7 +79829,7 @@ entities:
pos: 24.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2472
components:
- type: Transform
@@ -80230,7 +79837,7 @@ entities:
pos: 25.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2474
components:
- type: Transform
@@ -80238,7 +79845,7 @@ entities:
pos: 22.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2475
components:
- type: Transform
@@ -80246,7 +79853,7 @@ entities:
pos: 23.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2476
components:
- type: Transform
@@ -80254,7 +79861,7 @@ entities:
pos: 24.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2477
components:
- type: Transform
@@ -80262,7 +79869,7 @@ entities:
pos: 25.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2478
components:
- type: Transform
@@ -80270,7 +79877,7 @@ entities:
pos: 26.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2479
components:
- type: Transform
@@ -80278,7 +79885,7 @@ entities:
pos: 27.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2480
components:
- type: Transform
@@ -80286,7 +79893,7 @@ entities:
pos: 28.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2483
components:
- type: Transform
@@ -80294,7 +79901,7 @@ entities:
pos: 31.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2484
components:
- type: Transform
@@ -80302,7 +79909,7 @@ entities:
pos: 32.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2485
components:
- type: Transform
@@ -80310,7 +79917,7 @@ entities:
pos: 33.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2487
components:
- type: Transform
@@ -80318,7 +79925,7 @@ entities:
pos: 35.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2488
components:
- type: Transform
@@ -80326,7 +79933,7 @@ entities:
pos: 36.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2489
components:
- type: Transform
@@ -80334,7 +79941,7 @@ entities:
pos: 37.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2490
components:
- type: Transform
@@ -80342,7 +79949,7 @@ entities:
pos: 38.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2492
components:
- type: Transform
@@ -80350,7 +79957,7 @@ entities:
pos: 26.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2493
components:
- type: Transform
@@ -80358,7 +79965,7 @@ entities:
pos: 27.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2494
components:
- type: Transform
@@ -80366,7 +79973,7 @@ entities:
pos: 28.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2495
components:
- type: Transform
@@ -80374,7 +79981,7 @@ entities:
pos: 29.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2496
components:
- type: Transform
@@ -80382,7 +79989,7 @@ entities:
pos: 30.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2497
components:
- type: Transform
@@ -80390,7 +79997,7 @@ entities:
pos: 31.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2500
components:
- type: Transform
@@ -80398,7 +80005,7 @@ entities:
pos: 34.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2501
components:
- type: Transform
@@ -80406,7 +80013,7 @@ entities:
pos: 35.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2502
components:
- type: Transform
@@ -80414,7 +80021,7 @@ entities:
pos: 36.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2503
components:
- type: Transform
@@ -80422,7 +80029,7 @@ entities:
pos: 37.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2504
components:
- type: Transform
@@ -80430,7 +80037,7 @@ entities:
pos: 38.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2505
components:
- type: Transform
@@ -80438,7 +80045,7 @@ entities:
pos: 39.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2545
components:
- type: Transform
@@ -80446,7 +80053,7 @@ entities:
pos: 32.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2546
components:
- type: Transform
@@ -80454,7 +80061,7 @@ entities:
pos: 30.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2547
components:
- type: Transform
@@ -80462,7 +80069,7 @@ entities:
pos: 32.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2548
components:
- type: Transform
@@ -80470,7 +80077,7 @@ entities:
pos: 30.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2549
components:
- type: Transform
@@ -80478,7 +80085,7 @@ entities:
pos: 32.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2550
components:
- type: Transform
@@ -80486,7 +80093,7 @@ entities:
pos: 30.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2554
components:
- type: Transform
@@ -80494,23 +80101,7 @@ entities:
pos: 32.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-15.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2581
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2613
components:
- type: Transform
@@ -80518,7 +80109,7 @@ entities:
pos: 29.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2638
components:
- type: Transform
@@ -80526,14 +80117,14 @@ entities:
pos: 33.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2639
components:
- type: Transform
pos: 30.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2669
components:
- type: Transform
@@ -80541,7 +80132,7 @@ entities:
pos: 19.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2670
components:
- type: Transform
@@ -80549,7 +80140,7 @@ entities:
pos: 20.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2692
components:
- type: Transform
@@ -80557,49 +80148,49 @@ entities:
pos: 18.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2695
components:
- type: Transform
pos: 40.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2696
components:
- type: Transform
pos: 40.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2697
components:
- type: Transform
pos: 40.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2698
components:
- type: Transform
pos: 39.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2699
components:
- type: Transform
pos: 39.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2700
components:
- type: Transform
pos: 39.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2701
components:
- type: Transform
@@ -80607,7 +80198,7 @@ entities:
pos: 40.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2702
components:
- type: Transform
@@ -80615,7 +80206,7 @@ entities:
pos: 41.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2703
components:
- type: Transform
@@ -80623,22 +80214,14 @@ entities:
pos: 41.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2707
components:
- type: Transform
pos: 40.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2760
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,-0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 2783
components:
- type: Transform
@@ -80646,7 +80229,7 @@ entities:
pos: 19.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2786
components:
- type: Transform
@@ -80654,7 +80237,7 @@ entities:
pos: 29.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2787
components:
- type: Transform
@@ -80662,28 +80245,14 @@ entities:
pos: 19.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2788
components:
- type: Transform
pos: 17.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2792
- components:
- - type: Transform
- pos: -25.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2793
- components:
- - type: Transform
- pos: -21.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2794
components:
- type: Transform
@@ -80691,7 +80260,7 @@ entities:
pos: 25.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2796
components:
- type: Transform
@@ -80699,7 +80268,7 @@ entities:
pos: 24.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2797
components:
- type: Transform
@@ -80707,7 +80276,7 @@ entities:
pos: 26.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2798
components:
- type: Transform
@@ -80715,7 +80284,7 @@ entities:
pos: 31.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2800
components:
- type: Transform
@@ -80723,7 +80292,7 @@ entities:
pos: 28.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2801
components:
- type: Transform
@@ -80731,7 +80300,7 @@ entities:
pos: 27.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2803
components:
- type: Transform
@@ -80739,7 +80308,7 @@ entities:
pos: 25.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2804
components:
- type: Transform
@@ -80747,7 +80316,7 @@ entities:
pos: 33.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2805
components:
- type: Transform
@@ -80755,28 +80324,14 @@ entities:
pos: 19.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2806
- components:
- - type: Transform
- pos: -25.5,-1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 2807
- components:
- - type: Transform
- pos: -27.5,-1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 2808
components:
- type: Transform
- pos: -27.5,-0.5
+ pos: -22.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2810
components:
- type: Transform
@@ -80784,7 +80339,7 @@ entities:
pos: 21.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2811
components:
- type: Transform
@@ -80792,7 +80347,7 @@ entities:
pos: 20.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2814
components:
- type: Transform
@@ -80800,7 +80355,7 @@ entities:
pos: 21.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2815
components:
- type: Transform
@@ -80808,7 +80363,7 @@ entities:
pos: 26.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2816
components:
- type: Transform
@@ -80816,14 +80371,14 @@ entities:
pos: 19.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2820
components:
- type: Transform
pos: 17.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2842
components:
- type: Transform
@@ -80831,7 +80386,7 @@ entities:
pos: 28.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2843
components:
- type: Transform
@@ -80839,14 +80394,14 @@ entities:
pos: 30.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2844
components:
- type: Transform
pos: 17.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2849
components:
- type: Transform
@@ -80854,15 +80409,14 @@ entities:
pos: 16.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2860
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-3.5
+ pos: -22.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 2862
components:
- type: Transform
@@ -80870,7 +80424,7 @@ entities:
pos: 42.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2863
components:
- type: Transform
@@ -80878,7 +80432,7 @@ entities:
pos: 43.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2864
components:
- type: Transform
@@ -80886,7 +80440,7 @@ entities:
pos: 44.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2867
components:
- type: Transform
@@ -80894,7 +80448,7 @@ entities:
pos: 42.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2868
components:
- type: Transform
@@ -80902,14 +80456,14 @@ entities:
pos: 43.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2885
components:
- type: Transform
pos: 45.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2899
components:
- type: Transform
@@ -80917,22 +80471,22 @@ entities:
pos: 32.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2901
components:
- type: Transform
pos: 44.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2940
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2980
components:
- type: Transform
@@ -80956,7 +80510,7 @@ entities:
pos: 46.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2987
components:
- type: Transform
@@ -80964,7 +80518,7 @@ entities:
pos: 45.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2988
components:
- type: Transform
@@ -80972,14 +80526,14 @@ entities:
pos: 45.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2990
components:
- type: Transform
pos: 45.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2991
components:
- type: Transform
@@ -80987,7 +80541,7 @@ entities:
pos: 45.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2992
components:
- type: Transform
@@ -80995,7 +80549,7 @@ entities:
pos: 45.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2993
components:
- type: Transform
@@ -81003,7 +80557,7 @@ entities:
pos: 45.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2994
components:
- type: Transform
@@ -81011,7 +80565,7 @@ entities:
pos: 45.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2995
components:
- type: Transform
@@ -81019,7 +80573,7 @@ entities:
pos: 45.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2997
components:
- type: Transform
@@ -81051,7 +80605,7 @@ entities:
pos: 22.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3011
components:
- type: Transform
@@ -81092,46 +80646,54 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#D3FC03FF'
- - uid: 3113
+ - uid: 3070
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 46.5,-20.5
+ pos: -21.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3148
+ color: '#0335FCFF'
+ - uid: 3072
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 45.5,-20.5
+ pos: -20.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3149
+ color: '#0335FCFF'
+ - uid: 3113
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: 46.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3186
+ color: '#FF1212FF'
+ - uid: 3148
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,-3.5
+ pos: 45.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3187
+ color: '#FF1212FF'
+ - uid: 3168
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 3186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 3190
components:
- type: Transform
@@ -81139,7 +80701,7 @@ entities:
pos: 43.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3191
components:
- type: Transform
@@ -81147,30 +80709,22 @@ entities:
pos: 44.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3193
components:
- type: Transform
pos: 45.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3199
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -23.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3204
+ color: '#0335FCFF'
+ - uid: 3197
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -24.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3216
components:
- type: Transform
@@ -81178,15 +80732,7 @@ entities:
pos: 45.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 3219
components:
- type: Transform
@@ -81194,140 +80740,140 @@ entities:
pos: 42.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3561
components:
- type: Transform
pos: 45.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3562
components:
- type: Transform
pos: 45.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3563
components:
- type: Transform
pos: 45.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3564
components:
- type: Transform
pos: 45.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3565
components:
- type: Transform
pos: 45.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3566
components:
- type: Transform
pos: 45.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3568
components:
- type: Transform
pos: 44.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3569
components:
- type: Transform
pos: 44.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3570
components:
- type: Transform
pos: 44.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3571
components:
- type: Transform
pos: 44.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3572
components:
- type: Transform
pos: 44.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3574
components:
- type: Transform
pos: 44.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3575
components:
- type: Transform
pos: 44.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3576
components:
- type: Transform
pos: 44.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3577
components:
- type: Transform
pos: 44.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3578
components:
- type: Transform
pos: 44.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3579
components:
- type: Transform
pos: 44.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3580
components:
- type: Transform
pos: 44.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3581
components:
- type: Transform
pos: 44.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3618
components:
- type: Transform
@@ -81335,7 +80881,7 @@ entities:
pos: -6.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3619
components:
- type: Transform
@@ -81343,7 +80889,7 @@ entities:
pos: -3.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3620
components:
- type: Transform
@@ -81351,7 +80897,7 @@ entities:
pos: -4.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3711
components:
- type: Transform
@@ -81359,105 +80905,105 @@ entities:
pos: 44.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3914
components:
- type: Transform
pos: 1.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3916
components:
- type: Transform
pos: 1.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3917
components:
- type: Transform
pos: 1.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3919
components:
- type: Transform
pos: 1.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3921
components:
- type: Transform
pos: 1.5,-43.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3922
components:
- type: Transform
pos: 1.5,-44.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3923
components:
- type: Transform
pos: 1.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3925
components:
- type: Transform
pos: -0.5,-44.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3926
components:
- type: Transform
pos: -0.5,-43.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3927
components:
- type: Transform
pos: -0.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3928
components:
- type: Transform
pos: -0.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3931
components:
- type: Transform
pos: -0.5,-38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3932
components:
- type: Transform
pos: -0.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3933
components:
- type: Transform
pos: -0.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3934
components:
- type: Transform
@@ -81465,7 +81011,7 @@ entities:
pos: 0.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3935
components:
- type: Transform
@@ -81473,7 +81019,7 @@ entities:
pos: -0.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3936
components:
- type: Transform
@@ -81481,7 +81027,7 @@ entities:
pos: -1.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3937
components:
- type: Transform
@@ -81489,7 +81035,7 @@ entities:
pos: -2.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3938
components:
- type: Transform
@@ -81497,7 +81043,7 @@ entities:
pos: -3.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3939
components:
- type: Transform
@@ -81505,7 +81051,7 @@ entities:
pos: -2.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3940
components:
- type: Transform
@@ -81513,7 +81059,7 @@ entities:
pos: -3.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3941
components:
- type: Transform
@@ -81521,7 +81067,7 @@ entities:
pos: -1.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3942
components:
- type: Transform
@@ -81529,7 +81075,7 @@ entities:
pos: -4.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3943
components:
- type: Transform
@@ -81537,7 +81083,7 @@ entities:
pos: -4.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3944
components:
- type: Transform
@@ -81545,7 +81091,7 @@ entities:
pos: -5.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3945
components:
- type: Transform
@@ -81553,7 +81099,7 @@ entities:
pos: -5.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3946
components:
- type: Transform
@@ -81561,7 +81107,7 @@ entities:
pos: -6.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3947
components:
- type: Transform
@@ -81569,7 +81115,7 @@ entities:
pos: -6.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3948
components:
- type: Transform
@@ -81577,7 +81123,7 @@ entities:
pos: -7.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3951
components:
- type: Transform
@@ -81585,7 +81131,7 @@ entities:
pos: -8.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3952
components:
- type: Transform
@@ -81593,7 +81139,7 @@ entities:
pos: -9.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3953
components:
- type: Transform
@@ -81601,7 +81147,7 @@ entities:
pos: -9.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3954
components:
- type: Transform
@@ -81609,7 +81155,7 @@ entities:
pos: -10.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3955
components:
- type: Transform
@@ -81617,7 +81163,7 @@ entities:
pos: -10.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3956
components:
- type: Transform
@@ -81625,7 +81171,7 @@ entities:
pos: -11.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3957
components:
- type: Transform
@@ -81633,7 +81179,7 @@ entities:
pos: -11.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3958
components:
- type: Transform
@@ -81641,7 +81187,7 @@ entities:
pos: -12.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3959
components:
- type: Transform
@@ -81649,28 +81195,28 @@ entities:
pos: -12.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3983
components:
- type: Transform
pos: -0.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3997
components:
- type: Transform
pos: -42.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4001
components:
- type: Transform
pos: 48.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4006
components:
- type: Transform
@@ -81678,7 +81224,7 @@ entities:
pos: 14.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4008
components:
- type: Transform
@@ -81686,15 +81232,15 @@ entities:
pos: -5.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4018
+ color: '#0335FCFF'
+ - uid: 4014
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -27.5,-14.5
+ pos: -43.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 4023
components:
- type: Transform
@@ -81702,7 +81248,7 @@ entities:
pos: -34.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4024
components:
- type: Transform
@@ -81710,7 +81256,7 @@ entities:
pos: -35.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4025
components:
- type: Transform
@@ -81718,7 +81264,7 @@ entities:
pos: -31.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4026
components:
- type: Transform
@@ -81726,7 +81272,7 @@ entities:
pos: -32.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4027
components:
- type: Transform
@@ -81734,7 +81280,7 @@ entities:
pos: -33.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4028
components:
- type: Transform
@@ -81742,7 +81288,7 @@ entities:
pos: -34.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4029
components:
- type: Transform
@@ -81750,7 +81296,7 @@ entities:
pos: -35.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4030
components:
- type: Transform
@@ -81758,7 +81304,7 @@ entities:
pos: -36.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4032
components:
- type: Transform
@@ -81766,7 +81312,15 @@ entities:
pos: -37.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 4077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-21.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 4107
components:
- type: Transform
@@ -81774,14 +81328,14 @@ entities:
pos: 35.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4112
components:
- type: Transform
pos: 33.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4122
components:
- type: Transform
@@ -81789,7 +81343,7 @@ entities:
pos: 30.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4126
components:
- type: Transform
@@ -81797,7 +81351,7 @@ entities:
pos: 31.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4130
components:
- type: Transform
@@ -81805,7 +81359,7 @@ entities:
pos: 34.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4132
components:
- type: Transform
@@ -81813,7 +81367,7 @@ entities:
pos: 34.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4134
components:
- type: Transform
@@ -81821,7 +81375,7 @@ entities:
pos: 34.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4137
components:
- type: Transform
@@ -81835,14 +81389,14 @@ entities:
pos: 34.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4151
components:
- type: Transform
pos: 33.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4155
components:
- type: Transform
@@ -81850,7 +81404,7 @@ entities:
pos: 43.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4183
components:
- type: Transform
@@ -81858,7 +81412,7 @@ entities:
pos: 33.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4184
components:
- type: Transform
@@ -81866,7 +81420,7 @@ entities:
pos: 31.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4185
components:
- type: Transform
@@ -81874,7 +81428,7 @@ entities:
pos: 30.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4186
components:
- type: Transform
@@ -81882,22 +81436,39 @@ entities:
pos: 33.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4325
+ color: '#FF1212FF'
+ - uid: 4206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 4207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -46.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 4208
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 36.5,-20.5
+ pos: -41.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4333
+ color: '#0335FCFF'
+ - uid: 4325
components:
- type: Transform
- pos: -31.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 4335
components:
- type: Transform
@@ -81905,7 +81476,7 @@ entities:
pos: 34.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4356
components:
- type: Transform
@@ -81913,15 +81484,7 @@ entities:
pos: 35.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4361
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 4484
components:
- type: Transform
@@ -81929,7 +81492,7 @@ entities:
pos: 40.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4485
components:
- type: Transform
@@ -81937,14 +81500,14 @@ entities:
pos: 37.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4486
components:
- type: Transform
pos: 44.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4488
components:
- type: Transform
@@ -81952,7 +81515,7 @@ entities:
pos: 46.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4489
components:
- type: Transform
@@ -81960,7 +81523,7 @@ entities:
pos: 47.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4490
components:
- type: Transform
@@ -81968,7 +81531,7 @@ entities:
pos: 36.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4497
components:
- type: Transform
@@ -81976,7 +81539,7 @@ entities:
pos: 48.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4507
components:
- type: Transform
@@ -81984,37 +81547,21 @@ entities:
pos: 46.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4519
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 4550
components:
- type: Transform
pos: -36.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4627
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4629
components:
- type: Transform
pos: -0.5,-60.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4645
components:
- type: Transform
@@ -82022,42 +81569,42 @@ entities:
pos: 40.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4648
components:
- type: Transform
pos: -0.5,-59.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4649
components:
- type: Transform
pos: -0.5,-58.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4650
components:
- type: Transform
pos: -0.5,-57.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4657
components:
- type: Transform
pos: 1.5,-56.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4658
components:
- type: Transform
pos: 1.5,-57.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4666
components:
- type: Transform
@@ -82065,21 +81612,21 @@ entities:
pos: 38.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4725
components:
- type: Transform
pos: 1.5,-54.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4726
components:
- type: Transform
pos: 1.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4836
components:
- type: Transform
@@ -82087,7 +81634,7 @@ entities:
pos: 1.5,-47.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4837
components:
- type: Transform
@@ -82095,7 +81642,7 @@ entities:
pos: -0.5,-48.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4838
components:
- type: Transform
@@ -82103,7 +81650,7 @@ entities:
pos: -0.5,-49.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4839
components:
- type: Transform
@@ -82111,7 +81658,7 @@ entities:
pos: 1.5,-49.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4840
components:
- type: Transform
@@ -82119,7 +81666,7 @@ entities:
pos: 1.5,-50.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4841
components:
- type: Transform
@@ -82127,7 +81674,7 @@ entities:
pos: -0.5,-50.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4842
components:
- type: Transform
@@ -82135,7 +81682,7 @@ entities:
pos: -0.5,-51.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4843
components:
- type: Transform
@@ -82143,7 +81690,7 @@ entities:
pos: 1.5,-51.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4844
components:
- type: Transform
@@ -82151,7 +81698,7 @@ entities:
pos: -0.5,-52.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4845
components:
- type: Transform
@@ -82159,14 +81706,14 @@ entities:
pos: 1.5,-52.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4908
components:
- type: Transform
pos: 1.5,-60.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4909
components:
- type: Transform
@@ -82174,7 +81721,7 @@ entities:
pos: -2.5,-65.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4916
components:
- type: Transform
@@ -82182,7 +81729,7 @@ entities:
pos: 2.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4917
components:
- type: Transform
@@ -82190,7 +81737,7 @@ entities:
pos: 3.5,-64.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4918
components:
- type: Transform
@@ -82198,7 +81745,7 @@ entities:
pos: 2.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4919
components:
- type: Transform
@@ -82206,7 +81753,7 @@ entities:
pos: 3.5,-69.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4920
components:
- type: Transform
@@ -82214,7 +81761,7 @@ entities:
pos: 3.5,-68.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4921
components:
- type: Transform
@@ -82222,7 +81769,7 @@ entities:
pos: -2.5,-67.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4927
components:
- type: Transform
@@ -82230,14 +81777,14 @@ entities:
pos: -3.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4928
components:
- type: Transform
pos: -0.5,-62.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4930
components:
- type: Transform
@@ -82245,7 +81792,7 @@ entities:
pos: -4.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4931
components:
- type: Transform
@@ -82253,7 +81800,7 @@ entities:
pos: 1.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4932
components:
- type: Transform
@@ -82261,7 +81808,7 @@ entities:
pos: -5.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4933
components:
- type: Transform
@@ -82269,14 +81816,14 @@ entities:
pos: -2.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4934
components:
- type: Transform
pos: 1.5,-62.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4967
components:
- type: Transform
@@ -82284,7 +81831,7 @@ entities:
pos: -6.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4968
components:
- type: Transform
@@ -82292,7 +81839,7 @@ entities:
pos: -7.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4969
components:
- type: Transform
@@ -82300,7 +81847,7 @@ entities:
pos: -7.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4970
components:
- type: Transform
@@ -82308,7 +81855,7 @@ entities:
pos: -8.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4972
components:
- type: Transform
@@ -82316,7 +81863,7 @@ entities:
pos: -2.5,-68.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4974
components:
- type: Transform
@@ -82324,7 +81871,7 @@ entities:
pos: 2.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4975
components:
- type: Transform
@@ -82332,14 +81879,14 @@ entities:
pos: -8.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4981
components:
- type: Transform
pos: 1.5,-58.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4982
components:
- type: Transform
@@ -82347,7 +81894,7 @@ entities:
pos: -2.5,-66.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4983
components:
- type: Transform
@@ -82355,7 +81902,7 @@ entities:
pos: -2.5,-69.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4984
components:
- type: Transform
@@ -82363,14 +81910,14 @@ entities:
pos: -1.5,-70.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4986
components:
- type: Transform
pos: 1.5,-59.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4988
components:
- type: Transform
@@ -82378,7 +81925,7 @@ entities:
pos: -1.5,-63.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4989
components:
- type: Transform
@@ -82386,14 +81933,14 @@ entities:
pos: -2.5,-64.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4991
components:
- type: Transform
pos: 1.5,-71.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4994
components:
- type: Transform
@@ -82401,7 +81948,7 @@ entities:
pos: 3.5,-67.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4995
components:
- type: Transform
@@ -82409,14 +81956,14 @@ entities:
pos: 3.5,-66.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4998
components:
- type: Transform
pos: -0.5,-71.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5000
components:
- type: Transform
@@ -82424,7 +81971,7 @@ entities:
pos: 2.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5012
components:
- type: Transform
@@ -82432,15 +81979,7 @@ entities:
pos: 3.5,-65.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5020
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5055
components:
- type: Transform
@@ -82448,7 +81987,7 @@ entities:
pos: 37.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5098
components:
- type: Transform
@@ -82456,21 +81995,21 @@ entities:
pos: 6.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5115
components:
- type: Transform
pos: 1.5,-73.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5117
components:
- type: Transform
pos: 1.5,-74.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5118
components:
- type: Transform
@@ -82478,7 +82017,7 @@ entities:
pos: 4.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5142
components:
- type: Transform
@@ -82486,7 +82025,7 @@ entities:
pos: 3.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5147
components:
- type: Transform
@@ -82494,7 +82033,7 @@ entities:
pos: -9.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5148
components:
- type: Transform
@@ -82502,14 +82041,22 @@ entities:
pos: 4.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5215
components:
- type: Transform
pos: -0.5,-73.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5299
components:
- type: Transform
@@ -82517,51 +82064,59 @@ entities:
pos: -36.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5392
components:
- type: Transform
pos: 13.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5393
components:
- type: Transform
pos: 13.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5394
components:
- type: Transform
pos: 13.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5396
components:
- type: Transform
pos: 9.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5424
+ color: '#0335FCFF'
+ - uid: 5425
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 5426
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-13.5
+ pos: -14.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
+ - uid: 5427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5441
components:
- type: Transform
@@ -82569,7 +82124,7 @@ entities:
pos: 41.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5443
components:
- type: Transform
@@ -82577,7 +82132,7 @@ entities:
pos: 42.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5444
components:
- type: Transform
@@ -82585,7 +82140,7 @@ entities:
pos: 38.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5447
components:
- type: Transform
@@ -82593,7 +82148,7 @@ entities:
pos: 31.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5448
components:
- type: Transform
@@ -82601,7 +82156,7 @@ entities:
pos: 32.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5449
components:
- type: Transform
@@ -82609,14 +82164,14 @@ entities:
pos: 31.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5450
components:
- type: Transform
pos: 44.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5451
components:
- type: Transform
@@ -82624,7 +82179,7 @@ entities:
pos: 30.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5452
components:
- type: Transform
@@ -82632,15 +82187,7 @@ entities:
pos: 30.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5456
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-21.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5463
components:
- type: Transform
@@ -82648,7 +82195,7 @@ entities:
pos: 38.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5464
components:
- type: Transform
@@ -82656,7 +82203,7 @@ entities:
pos: 44.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5465
components:
- type: Transform
@@ -82664,7 +82211,7 @@ entities:
pos: -22.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5467
components:
- type: Transform
@@ -82672,7 +82219,7 @@ entities:
pos: 44.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5468
components:
- type: Transform
@@ -82680,21 +82227,21 @@ entities:
pos: 41.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5469
components:
- type: Transform
pos: -38.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5470
components:
- type: Transform
pos: -38.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5471
components:
- type: Transform
@@ -82702,7 +82249,7 @@ entities:
pos: -17.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5475
components:
- type: Transform
@@ -82710,7 +82257,7 @@ entities:
pos: -16.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5487
components:
- type: Transform
@@ -82718,7 +82265,7 @@ entities:
pos: 42.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5511
components:
- type: Transform
@@ -82726,7 +82273,7 @@ entities:
pos: -13.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5517
components:
- type: Transform
@@ -82734,7 +82281,7 @@ entities:
pos: 43.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5549
components:
- type: Transform
@@ -82750,7 +82297,7 @@ entities:
pos: 45.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5558
components:
- type: Transform
@@ -82758,7 +82305,22 @@ entities:
pos: 44.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5563
+ components:
+ - type: Transform
+ pos: -16.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5569
components:
- type: Transform
@@ -82766,7 +82328,7 @@ entities:
pos: -44.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5570
components:
- type: Transform
@@ -82774,7 +82336,7 @@ entities:
pos: -42.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5571
components:
- type: Transform
@@ -82782,7 +82344,7 @@ entities:
pos: -42.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5572
components:
- type: Transform
@@ -82790,7 +82352,7 @@ entities:
pos: -44.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5573
components:
- type: Transform
@@ -82798,7 +82360,7 @@ entities:
pos: -44.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5574
components:
- type: Transform
@@ -82806,7 +82368,7 @@ entities:
pos: -44.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5575
components:
- type: Transform
@@ -82814,7 +82376,7 @@ entities:
pos: -42.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5576
components:
- type: Transform
@@ -82844,7 +82406,7 @@ entities:
pos: 41.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5596
components:
- type: Transform
@@ -82852,7 +82414,7 @@ entities:
pos: 45.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5648
components:
- type: Transform
@@ -82869,6 +82431,21 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 5661
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 5682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5685
components:
- type: Transform
@@ -82876,7 +82453,15 @@ entities:
pos: 33.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5689
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5694
components:
- type: Transform
@@ -82884,7 +82469,7 @@ entities:
pos: 8.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5697
components:
- type: Transform
@@ -82892,7 +82477,7 @@ entities:
pos: 6.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5698
components:
- type: Transform
@@ -82900,7 +82485,7 @@ entities:
pos: 7.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5704
components:
- type: Transform
@@ -82908,7 +82493,7 @@ entities:
pos: -7.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5705
components:
- type: Transform
@@ -82916,7 +82501,7 @@ entities:
pos: -6.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5707
components:
- type: Transform
@@ -82924,7 +82509,7 @@ entities:
pos: -6.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5708
components:
- type: Transform
@@ -82932,7 +82517,7 @@ entities:
pos: -5.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5713
components:
- type: Transform
@@ -82940,7 +82525,7 @@ entities:
pos: -3.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5714
components:
- type: Transform
@@ -82948,7 +82533,7 @@ entities:
pos: -2.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5715
components:
- type: Transform
@@ -82956,7 +82541,7 @@ entities:
pos: -1.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5716
components:
- type: Transform
@@ -82964,7 +82549,7 @@ entities:
pos: 1.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5717
components:
- type: Transform
@@ -82972,7 +82557,7 @@ entities:
pos: 3.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5718
components:
- type: Transform
@@ -82980,7 +82565,7 @@ entities:
pos: 4.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5719
components:
- type: Transform
@@ -82988,7 +82573,7 @@ entities:
pos: 2.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5720
components:
- type: Transform
@@ -82996,7 +82581,7 @@ entities:
pos: -0.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5721
components:
- type: Transform
@@ -83004,7 +82589,7 @@ entities:
pos: -4.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5722
components:
- type: Transform
@@ -83012,7 +82597,7 @@ entities:
pos: -3.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5723
components:
- type: Transform
@@ -83020,7 +82605,7 @@ entities:
pos: -2.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5724
components:
- type: Transform
@@ -83028,7 +82613,7 @@ entities:
pos: -1.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5726
components:
- type: Transform
@@ -83036,7 +82621,7 @@ entities:
pos: 5.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5727
components:
- type: Transform
@@ -83044,7 +82629,7 @@ entities:
pos: 4.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5728
components:
- type: Transform
@@ -83052,7 +82637,7 @@ entities:
pos: 3.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5729
components:
- type: Transform
@@ -83060,7 +82645,7 @@ entities:
pos: 2.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5731
components:
- type: Transform
@@ -83068,7 +82653,7 @@ entities:
pos: 0.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5732
components:
- type: Transform
@@ -83076,28 +82661,59 @@ entities:
pos: 0.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5734
components:
- type: Transform
pos: -0.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5735
components:
- type: Transform
pos: 1.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5737
components:
- type: Transform
pos: 1.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -40.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5754
+ components:
+ - type: Transform
+ pos: -25.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 5756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5762
components:
- type: Transform
@@ -83105,7 +82721,7 @@ entities:
pos: 15.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5763
components:
- type: Transform
@@ -83113,7 +82729,7 @@ entities:
pos: 15.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5764
components:
- type: Transform
@@ -83121,7 +82737,7 @@ entities:
pos: 17.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5818
components:
- type: Transform
@@ -83129,14 +82745,7 @@ entities:
pos: 17.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5825
- components:
- - type: Transform
- pos: -25.5,-0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5832
components:
- type: Transform
@@ -83144,21 +82753,28 @@ entities:
pos: 34.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5834
components:
- type: Transform
pos: -38.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5842
+ components:
+ - type: Transform
+ pos: -21.5,-2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5846
components:
- type: Transform
pos: 1.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5852
components:
- type: Transform
@@ -83166,7 +82782,7 @@ entities:
pos: 43.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5875
components:
- type: Transform
@@ -83179,49 +82795,42 @@ entities:
pos: 15.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5893
components:
- type: Transform
pos: -28.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5894
components:
- type: Transform
pos: -29.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5895
components:
- type: Transform
pos: -29.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5896
components:
- type: Transform
pos: -28.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5904
components:
- type: Transform
pos: 48.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5910
- components:
- - type: Transform
- pos: -23.5,-13.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5913
components:
- type: Transform
@@ -83229,7 +82838,7 @@ entities:
pos: 46.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5916
components:
- type: Transform
@@ -83237,7 +82846,7 @@ entities:
pos: 6.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5920
components:
- type: Transform
@@ -83245,63 +82854,71 @@ entities:
pos: 19.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5931
components:
- type: Transform
pos: -38.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5939
components:
- type: Transform
pos: -36.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5941
components:
- type: Transform
pos: -52.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5944
components:
- type: Transform
pos: -52.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5945
components:
- type: Transform
pos: -36.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5946
components:
- type: Transform
pos: -49.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5948
components:
- type: Transform
pos: -52.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5949
components:
- type: Transform
pos: -36.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5957
components:
- type: Transform
@@ -83309,7 +82926,7 @@ entities:
pos: -40.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5958
components:
- type: Transform
@@ -83317,7 +82934,7 @@ entities:
pos: -50.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5959
components:
- type: Transform
@@ -83325,7 +82942,15 @@ entities:
pos: -43.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5965
components:
- type: Transform
@@ -83333,7 +82958,7 @@ entities:
pos: -38.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5966
components:
- type: Transform
@@ -83341,14 +82966,14 @@ entities:
pos: -43.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5968
components:
- type: Transform
pos: 48.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5969
components:
- type: Transform
@@ -83356,7 +82981,7 @@ entities:
pos: -42.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5970
components:
- type: Transform
@@ -83364,7 +82989,7 @@ entities:
pos: -49.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5973
components:
- type: Transform
@@ -83372,7 +82997,15 @@ entities:
pos: -38.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 5974
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 5975
components:
- type: Transform
@@ -83380,14 +83013,14 @@ entities:
pos: -55.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5976
components:
- type: Transform
pos: -36.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5977
components:
- type: Transform
@@ -83395,7 +83028,7 @@ entities:
pos: -53.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5978
components:
- type: Transform
@@ -83403,7 +83036,7 @@ entities:
pos: -52.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5979
components:
- type: Transform
@@ -83411,7 +83044,7 @@ entities:
pos: -48.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5981
components:
- type: Transform
@@ -83419,35 +83052,35 @@ entities:
pos: -45.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5982
components:
- type: Transform
pos: -42.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5984
components:
- type: Transform
pos: -47.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5985
components:
- type: Transform
pos: -47.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5986
components:
- type: Transform
pos: -49.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5989
components:
- type: Transform
@@ -83455,7 +83088,7 @@ entities:
pos: -37.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5992
components:
- type: Transform
@@ -83463,14 +83096,14 @@ entities:
pos: -46.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5993
components:
- type: Transform
pos: -55.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5994
components:
- type: Transform
@@ -83478,7 +83111,7 @@ entities:
pos: -39.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5995
components:
- type: Transform
@@ -83486,7 +83119,7 @@ entities:
pos: -40.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5996
components:
- type: Transform
@@ -83494,7 +83127,7 @@ entities:
pos: -41.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5997
components:
- type: Transform
@@ -83502,7 +83135,7 @@ entities:
pos: -45.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5998
components:
- type: Transform
@@ -83510,7 +83143,7 @@ entities:
pos: -39.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5999
components:
- type: Transform
@@ -83518,7 +83151,7 @@ entities:
pos: -46.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6000
components:
- type: Transform
@@ -83526,7 +83159,7 @@ entities:
pos: -37.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6001
components:
- type: Transform
@@ -83534,7 +83167,7 @@ entities:
pos: -55.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6003
components:
- type: Transform
@@ -83542,7 +83175,7 @@ entities:
pos: -40.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6004
components:
- type: Transform
@@ -83550,7 +83183,7 @@ entities:
pos: -44.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6006
components:
- type: Transform
@@ -83558,7 +83191,7 @@ entities:
pos: -54.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6007
components:
- type: Transform
@@ -83566,7 +83199,7 @@ entities:
pos: -51.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6009
components:
- type: Transform
@@ -83574,7 +83207,7 @@ entities:
pos: 10.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6010
components:
- type: Transform
@@ -83582,7 +83215,7 @@ entities:
pos: -55.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6011
components:
- type: Transform
@@ -83590,14 +83223,14 @@ entities:
pos: -35.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6016
components:
- type: Transform
pos: -38.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6017
components:
- type: Transform
@@ -83605,7 +83238,7 @@ entities:
pos: -51.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6019
components:
- type: Transform
@@ -83613,7 +83246,7 @@ entities:
pos: -53.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6021
components:
- type: Transform
@@ -83621,7 +83254,7 @@ entities:
pos: -46.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6022
components:
- type: Transform
@@ -83629,7 +83262,7 @@ entities:
pos: -47.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6023
components:
- type: Transform
@@ -83637,7 +83270,7 @@ entities:
pos: -45.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6025
components:
- type: Transform
@@ -83645,7 +83278,7 @@ entities:
pos: -44.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6027
components:
- type: Transform
@@ -83653,14 +83286,14 @@ entities:
pos: -47.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6029
components:
- type: Transform
pos: -47.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6030
components:
- type: Transform
@@ -83668,7 +83301,7 @@ entities:
pos: -48.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6031
components:
- type: Transform
@@ -83676,7 +83309,7 @@ entities:
pos: -50.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6033
components:
- type: Transform
@@ -83684,7 +83317,15 @@ entities:
pos: -40.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 6034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-10.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6035
components:
- type: Transform
@@ -83692,7 +83333,15 @@ entities:
pos: -39.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 6039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6040
components:
- type: Transform
@@ -83700,7 +83349,15 @@ entities:
pos: -44.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-13.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6045
components:
- type: Transform
@@ -83708,14 +83365,14 @@ entities:
pos: -55.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6048
components:
- type: Transform
pos: -47.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6057
components:
- type: Transform
@@ -83723,7 +83380,7 @@ entities:
pos: -45.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6059
components:
- type: Transform
@@ -83731,14 +83388,14 @@ entities:
pos: -46.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6060
components:
- type: Transform
pos: -47.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6063
components:
- type: Transform
@@ -83746,7 +83403,7 @@ entities:
pos: -45.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6064
components:
- type: Transform
@@ -83754,7 +83411,7 @@ entities:
pos: -42.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6095
components:
- type: Transform
@@ -83762,7 +83419,7 @@ entities:
pos: -43.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6096
components:
- type: Transform
@@ -83770,7 +83427,7 @@ entities:
pos: -55.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6106
components:
- type: Transform
@@ -83778,7 +83435,7 @@ entities:
pos: -44.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6107
components:
- type: Transform
@@ -83786,7 +83443,7 @@ entities:
pos: -44.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6108
components:
- type: Transform
@@ -83794,14 +83451,14 @@ entities:
pos: -44.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6110
components:
- type: Transform
pos: -49.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6111
components:
- type: Transform
@@ -83809,14 +83466,14 @@ entities:
pos: -47.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6113
components:
- type: Transform
pos: -49.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6114
components:
- type: Transform
@@ -83824,7 +83481,7 @@ entities:
pos: -46.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6115
components:
- type: Transform
@@ -83832,7 +83489,7 @@ entities:
pos: -44.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6116
components:
- type: Transform
@@ -83840,7 +83497,7 @@ entities:
pos: -44.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6122
components:
- type: Transform
@@ -83848,7 +83505,7 @@ entities:
pos: -48.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6124
components:
- type: Transform
@@ -83856,7 +83513,7 @@ entities:
pos: 11.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6134
components:
- type: Transform
@@ -83864,7 +83521,7 @@ entities:
pos: -48.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6178
components:
- type: Transform
@@ -83872,7 +83529,7 @@ entities:
pos: -19.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6180
components:
- type: Transform
@@ -83880,7 +83537,7 @@ entities:
pos: -23.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6197
components:
- type: Transform
@@ -83888,7 +83545,7 @@ entities:
pos: 7.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6198
components:
- type: Transform
@@ -83896,7 +83553,7 @@ entities:
pos: 3.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6199
components:
- type: Transform
@@ -83904,28 +83561,36 @@ entities:
pos: 5.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 6208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-5.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6212
components:
- type: Transform
pos: -0.5,-54.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6217
components:
- type: Transform
pos: -0.5,-56.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6218
components:
- type: Transform
pos: -0.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6267
components:
- type: Transform
@@ -83933,7 +83598,7 @@ entities:
pos: -55.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6269
components:
- type: Transform
@@ -83941,7 +83606,7 @@ entities:
pos: -38.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6279
components:
- type: Transform
@@ -83949,7 +83614,7 @@ entities:
pos: 12.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6281
components:
- type: Transform
@@ -83957,7 +83622,7 @@ entities:
pos: 17.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6283
components:
- type: Transform
@@ -83965,14 +83630,14 @@ entities:
pos: 17.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6284
components:
- type: Transform
pos: 15.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6285
components:
- type: Transform
@@ -83980,7 +83645,7 @@ entities:
pos: 15.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6287
components:
- type: Transform
@@ -83988,7 +83653,7 @@ entities:
pos: 15.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6289
components:
- type: Transform
@@ -83996,7 +83661,7 @@ entities:
pos: 16.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6291
components:
- type: Transform
@@ -84004,7 +83669,7 @@ entities:
pos: 14.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6292
components:
- type: Transform
@@ -84012,7 +83677,7 @@ entities:
pos: 13.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6293
components:
- type: Transform
@@ -84020,7 +83685,7 @@ entities:
pos: 12.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6294
components:
- type: Transform
@@ -84028,7 +83693,7 @@ entities:
pos: 16.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6295
components:
- type: Transform
@@ -84036,7 +83701,7 @@ entities:
pos: 15.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6296
components:
- type: Transform
@@ -84044,7 +83709,7 @@ entities:
pos: 14.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6297
components:
- type: Transform
@@ -84052,7 +83717,7 @@ entities:
pos: 13.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6298
components:
- type: Transform
@@ -84060,14 +83725,7 @@ entities:
pos: 15.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6309
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 6358
components:
- type: Transform
@@ -84075,7 +83733,7 @@ entities:
pos: -35.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6371
components:
- type: Transform
@@ -84083,7 +83741,7 @@ entities:
pos: 17.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6379
components:
- type: Transform
@@ -84091,7 +83749,7 @@ entities:
pos: -1.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6391
components:
- type: Transform
@@ -84099,7 +83757,7 @@ entities:
pos: 17.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6399
components:
- type: Transform
@@ -84107,7 +83765,7 @@ entities:
pos: 17.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6410
components:
- type: Transform
@@ -84115,7 +83773,7 @@ entities:
pos: -2.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6457
components:
- type: Transform
@@ -84123,7 +83781,15 @@ entities:
pos: -0.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 6596
components:
- type: Transform
@@ -84139,30 +83805,47 @@ entities:
pos: 7.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6760
+ color: '#0335FCFF'
+ - uid: 6651
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,7.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6761
+ color: '#FF1212FF'
+ - uid: 6706
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-2.5
+ pos: -27.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6763
+ color: '#0335FCFF'
+ - uid: 6710
components:
- type: Transform
- pos: -21.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
+ - uid: 6759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -45.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 6760
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 6778
components:
- type: Transform
@@ -84178,14 +83861,21 @@ entities:
pos: 2.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6798
+ components:
+ - type: Transform
+ pos: -31.5,-4.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 6799
components:
- type: Transform
pos: -38.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6800
components:
- type: Transform
@@ -84193,15 +83883,15 @@ entities:
pos: -32.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6801
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-19.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6802
components:
- type: Transform
@@ -84209,14 +83899,7 @@ entities:
pos: -29.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6804
- components:
- - type: Transform
- pos: -30.5,-8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6809
components:
- type: Transform
@@ -84224,14 +83907,7 @@ entities:
pos: 17.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6824
- components:
- - type: Transform
- pos: -27.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 6833
components:
- type: Transform
@@ -84239,7 +83915,7 @@ entities:
pos: 45.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6837
components:
- type: Transform
@@ -84247,7 +83923,7 @@ entities:
pos: 41.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6838
components:
- type: Transform
@@ -84255,7 +83931,7 @@ entities:
pos: 42.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6839
components:
- type: Transform
@@ -84263,7 +83939,7 @@ entities:
pos: 44.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6840
components:
- type: Transform
@@ -84271,7 +83947,23 @@ entities:
pos: 45.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 6884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 6887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 6982
components:
- type: Transform
@@ -84279,7 +83971,7 @@ entities:
pos: -41.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7012
components:
- type: Transform
@@ -84287,7 +83979,7 @@ entities:
pos: 15.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7115
components:
- type: Transform
@@ -84300,20 +83992,13 @@ entities:
pos: 15.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7123
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -53.5,48.5
parent: 60
- - uid: 7166
- components:
- - type: Transform
- pos: -22.5,-4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7200
components:
- type: Transform
@@ -84321,21 +84006,21 @@ entities:
pos: 16.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7211
components:
- type: Transform
pos: -49.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7214
components:
- type: Transform
pos: -23.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7215
components:
- type: Transform
@@ -84343,15 +84028,23 @@ entities:
pos: 23.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7284
+ color: '#0335FCFF'
+ - uid: 7220
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 7225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7335
components:
- type: Transform
@@ -84388,21 +84081,21 @@ entities:
pos: 1.5,-75.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7382
components:
- type: Transform
pos: -0.5,-74.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7383
components:
- type: Transform
pos: -0.5,-75.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7458
components:
- type: Transform
@@ -84410,15 +84103,7 @@ entities:
pos: -28.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7464
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7473
components:
- type: Transform
@@ -84426,7 +84111,7 @@ entities:
pos: 5.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7478
components:
- type: Transform
@@ -84434,30 +84119,47 @@ entities:
pos: 6.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7601
components:
- type: Transform
- pos: -22.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,8.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 7604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 7612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 7647
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,1.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 7649
+ color: '#0335FCFF'
+ - uid: 7657
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,-20.5
+ pos: -39.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7670
components:
- type: Transform
@@ -84465,21 +84167,21 @@ entities:
pos: 27.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7676
components:
- type: Transform
pos: -49.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7680
components:
- type: Transform
pos: -36.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7681
components:
- type: Transform
@@ -84487,14 +84189,14 @@ entities:
pos: -29.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7715
components:
- type: Transform
pos: 33.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7716
components:
- type: Transform
@@ -84502,7 +84204,7 @@ entities:
pos: 32.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7717
components:
- type: Transform
@@ -84510,22 +84212,22 @@ entities:
pos: 32.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7785
+ color: '#FF1212FF'
+ - uid: 7787
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 7835
components:
- type: Transform
pos: 4.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7856
components:
- type: Transform
@@ -84533,13 +84235,28 @@ entities:
pos: 45.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7896
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -41.5,39.5
parent: 60
+ - uid: 7903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 7905
+ components:
+ - type: Transform
+ pos: -36.5,4.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 7981
components:
- type: Transform
@@ -84697,7 +84414,7 @@ entities:
pos: 25.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8130
components:
- type: Transform
@@ -84705,7 +84422,7 @@ entities:
pos: -1.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8131
components:
- type: Transform
@@ -84713,7 +84430,7 @@ entities:
pos: -2.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8132
components:
- type: Transform
@@ -84721,7 +84438,7 @@ entities:
pos: 0.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8133
components:
- type: Transform
@@ -84729,7 +84446,7 @@ entities:
pos: -0.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8134
components:
- type: Transform
@@ -84737,7 +84454,7 @@ entities:
pos: -1.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8135
components:
- type: Transform
@@ -84745,27 +84462,35 @@ entities:
pos: -2.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8151
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -52.5,48.5
parent: 60
+ - uid: 8203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-12.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8204
components:
- type: Transform
pos: -38.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8206
components:
- type: Transform
pos: -38.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8207
components:
- type: Transform
@@ -84773,39 +84498,46 @@ entities:
pos: -26.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8212
+ color: '#0335FCFF'
+ - uid: 8230
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8223
+ color: '#FF1212FF'
+ - uid: 8242
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -23.5,-8.5
+ pos: -38.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8225
+ color: '#0335FCFF'
+ - uid: 8244
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-19.5
+ pos: -25.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8228
+ color: '#FF1212FF'
+ - uid: 8246
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -21.5,-4.5
+ pos: -21.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
+ - uid: 8253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8257
components:
- type: Transform
@@ -84813,62 +84545,71 @@ entities:
pos: 45.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8261
+ color: '#FF1212FF'
+ - uid: 8258
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,-2.5
+ pos: -21.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8263
+ color: '#FF1212FF'
+ - uid: 8269
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -29.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8264
+ color: '#FF1212FF'
+ - uid: 8270
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -28.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8267
+ color: '#FF1212FF'
+ - uid: 8274
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,-1.5
+ pos: -31.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8270
+ color: '#FF1212FF'
+ - uid: 8277
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,-3.5
+ pos: -31.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8274
+ color: '#FF1212FF'
+ - uid: 8292
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -28.5,-7.5
+ pos: -8.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8386
+ color: '#0335FCFF'
+ - uid: 8336
components:
- type: Transform
- pos: -22.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
+ - uid: 8350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8387
components:
- type: Transform
@@ -84876,125 +84617,94 @@ entities:
pos: 23.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 8436
+ components:
+ - type: Transform
+ pos: -43.5,-17.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -31.5,-2.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 8533
components:
- type: Transform
pos: 17.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8534
components:
- type: Transform
pos: 17.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8535
components:
- type: Transform
pos: 17.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8538
components:
- type: Transform
pos: 15.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8539
components:
- type: Transform
pos: 15.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8540
components:
- type: Transform
pos: 15.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8541
components:
- type: Transform
pos: 15.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8577
+ color: '#0335FCFF'
+ - uid: 8569
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -31.5,-16.5
+ pos: -39.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8711
+ color: '#FF1212FF'
+ - uid: 8792
components:
- type: Transform
- pos: -21.5,-1.5
+ pos: -16.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8712
+ color: '#FF1212FF'
+ - uid: 8891
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -22.5,-1.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8713
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8717
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8719
- components:
- - type: Transform
- pos: -18.5,-17.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8721
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8749
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8792
- components:
- - type: Transform
- pos: -16.5,6.5
+ pos: -7.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 8899
components:
- type: Transform
@@ -85014,112 +84724,105 @@ entities:
pos: -55.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8945
+ color: '#0335FCFF'
+ - uid: 8922
components:
- type: Transform
- pos: 1.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8949
+ color: '#FF1212FF'
+ - uid: 8945
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-8.5
+ pos: 1.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8963
components:
- type: Transform
pos: 44.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8964
components:
- type: Transform
pos: 44.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9003
components:
- type: Transform
pos: 19.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9014
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,0.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9022
components:
- type: Transform
pos: 44.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9031
+ color: '#FF1212FF'
+ - uid: 9042
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -21.5,-15.5
+ pos: -44.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9033
+ color: '#0335FCFF'
+ - uid: 9045
components:
- type: Transform
- pos: -18.5,-16.5
+ rot: 3.141592653589793 rad
+ pos: 39.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9043
+ color: '#FF1212FF'
+ - uid: 9111
components:
- type: Transform
- pos: -18.5,-18.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9045
+ color: '#FF1212FF'
+ - uid: 9149
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 39.5,-28.5
+ pos: -18.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9148
+ color: '#FF1212FF'
+ - uid: 9151
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,4.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9158
+ color: '#0335FCFF'
+ - uid: 9153
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -11.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 9159
+ color: '#FF1212FF'
+ - uid: 9154
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-2.5
+ pos: -45.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9358
components:
- type: Transform
@@ -85140,6 +84843,14 @@ entities:
- type: Transform
pos: -53.5,15.5
parent: 60
+ - uid: 9488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 9609
components:
- type: Transform
@@ -85147,7 +84858,7 @@ entities:
pos: -46.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9610
components:
- type: Transform
@@ -85155,7 +84866,7 @@ entities:
pos: -45.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9635
components:
- type: Transform
@@ -85163,7 +84874,7 @@ entities:
pos: -53.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9636
components:
- type: Transform
@@ -85171,7 +84882,7 @@ entities:
pos: -54.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9639
components:
- type: Transform
@@ -85179,7 +84890,7 @@ entities:
pos: -39.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9640
components:
- type: Transform
@@ -85187,7 +84898,7 @@ entities:
pos: -40.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9642
components:
- type: Transform
@@ -85195,7 +84906,7 @@ entities:
pos: -43.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9649
components:
- type: Transform
@@ -85203,7 +84914,7 @@ entities:
pos: -44.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9650
components:
- type: Transform
@@ -85211,7 +84922,7 @@ entities:
pos: -45.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9653
components:
- type: Transform
@@ -85219,63 +84930,63 @@ entities:
pos: -53.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9654
components:
- type: Transform
pos: -54.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9655
components:
- type: Transform
pos: -54.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9657
components:
- type: Transform
pos: -54.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9658
components:
- type: Transform
pos: -54.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9659
components:
- type: Transform
pos: -54.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9660
components:
- type: Transform
pos: -54.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9661
components:
- type: Transform
pos: -54.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9662
components:
- type: Transform
pos: -54.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9663
components:
- type: Transform
@@ -85305,37 +85016,53 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 9681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-4.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 10310
components:
- type: Transform
pos: -58.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 10695
+ color: '#0335FCFF'
+ - uid: 10585
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -51.5,11.5
+ rot: 3.141592653589793 rad
+ pos: -21.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10696
+ color: '#FF1212FF'
+ - uid: 10676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -21.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 10695
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -49.5,11.5
+ pos: -51.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 10828
+ color: '#FF1212FF'
+ - uid: 10696
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -34.5,4.5
+ pos: -49.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 11132
components:
- type: Transform
@@ -85343,7 +85070,7 @@ entities:
pos: 46.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11158
components:
- type: Transform
@@ -85351,7 +85078,23 @@ entities:
pos: 43.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 11361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 11371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -33.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 11379
components:
- type: Transform
@@ -85359,7 +85102,7 @@ entities:
pos: 14.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11739
components:
- type: Transform
@@ -85367,7 +85110,7 @@ entities:
pos: 44.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11757
components:
- type: Transform
@@ -85375,7 +85118,7 @@ entities:
pos: 47.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11814
components:
- type: Transform
@@ -85383,7 +85126,7 @@ entities:
pos: 45.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11830
components:
- type: Transform
@@ -85391,14 +85134,14 @@ entities:
pos: 48.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12221
components:
- type: Transform
pos: 9.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12284
components:
- type: Transform
@@ -85406,7 +85149,7 @@ entities:
pos: 42.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12522
components:
- type: Transform
@@ -85427,28 +85170,28 @@ entities:
pos: 41.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12620
components:
- type: Transform
pos: 49.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12627
components:
- type: Transform
pos: 38.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12628
components:
- type: Transform
pos: 38.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12630
components:
- type: Transform
@@ -85456,7 +85199,7 @@ entities:
pos: 40.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12824
components:
- type: Transform
@@ -85464,7 +85207,7 @@ entities:
pos: -37.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12826
components:
- type: Transform
@@ -85472,7 +85215,7 @@ entities:
pos: -40.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12827
components:
- type: Transform
@@ -85480,7 +85223,7 @@ entities:
pos: -41.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12828
components:
- type: Transform
@@ -85488,42 +85231,42 @@ entities:
pos: -42.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12830
components:
- type: Transform
pos: -43.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12831
components:
- type: Transform
pos: -43.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12832
components:
- type: Transform
pos: -43.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12833
components:
- type: Transform
pos: -43.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12834
components:
- type: Transform
pos: -43.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12836
components:
- type: Transform
@@ -85531,7 +85274,7 @@ entities:
pos: -44.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12838
components:
- type: Transform
@@ -85539,7 +85282,7 @@ entities:
pos: -47.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12843
components:
- type: Transform
@@ -85547,7 +85290,7 @@ entities:
pos: -39.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12844
components:
- type: Transform
@@ -85555,21 +85298,21 @@ entities:
pos: -38.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12847
components:
- type: Transform
pos: -43.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12848
components:
- type: Transform
pos: -43.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12849
components:
- type: Transform
@@ -85577,7 +85320,7 @@ entities:
pos: -46.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12850
components:
- type: Transform
@@ -85585,7 +85328,7 @@ entities:
pos: -45.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13081
components:
- type: Transform
@@ -85593,7 +85336,7 @@ entities:
pos: 43.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13140
components:
- type: Transform
@@ -85601,14 +85344,14 @@ entities:
pos: 38.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13206
components:
- type: Transform
pos: 49.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13210
components:
- type: Transform
@@ -85616,7 +85359,7 @@ entities:
pos: 40.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13237
components:
- type: Transform
@@ -85624,7 +85367,7 @@ entities:
pos: 18.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13239
components:
- type: Transform
@@ -85632,7 +85375,7 @@ entities:
pos: 17.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13240
components:
- type: Transform
@@ -85640,7 +85383,7 @@ entities:
pos: 18.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13244
components:
- type: Transform
@@ -85648,7 +85391,7 @@ entities:
pos: 24.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13268
components:
- type: Transform
@@ -85661,7 +85404,7 @@ entities:
pos: 49.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13505
components:
- type: Transform
@@ -85669,7 +85412,7 @@ entities:
pos: 46.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13506
components:
- type: Transform
@@ -85677,7 +85420,7 @@ entities:
pos: 45.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13507
components:
- type: Transform
@@ -85685,14 +85428,14 @@ entities:
pos: 41.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13508
components:
- type: Transform
pos: 49.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13509
components:
- type: Transform
@@ -85700,14 +85443,14 @@ entities:
pos: 41.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13511
components:
- type: Transform
pos: 49.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13512
components:
- type: Transform
@@ -85715,7 +85458,7 @@ entities:
pos: 44.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13513
components:
- type: Transform
@@ -85723,7 +85466,7 @@ entities:
pos: 43.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13518
components:
- type: Transform
@@ -85731,7 +85474,7 @@ entities:
pos: 38.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13539
components:
- type: Transform
@@ -85739,7 +85482,7 @@ entities:
pos: 17.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13540
components:
- type: Transform
@@ -85747,7 +85490,7 @@ entities:
pos: 18.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13541
components:
- type: Transform
@@ -85755,7 +85498,7 @@ entities:
pos: 19.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13542
components:
- type: Transform
@@ -85763,7 +85506,7 @@ entities:
pos: 18.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13543
components:
- type: Transform
@@ -85771,7 +85514,7 @@ entities:
pos: 19.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13544
components:
- type: Transform
@@ -85779,7 +85522,7 @@ entities:
pos: 20.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13545
components:
- type: Transform
@@ -85787,7 +85530,7 @@ entities:
pos: 21.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13550
components:
- type: Transform
@@ -85795,7 +85538,7 @@ entities:
pos: -32.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13564
components:
- type: Transform
@@ -85803,7 +85546,7 @@ entities:
pos: 23.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13565
components:
- type: Transform
@@ -85811,7 +85554,7 @@ entities:
pos: 24.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13566
components:
- type: Transform
@@ -85819,7 +85562,7 @@ entities:
pos: 39.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13573
components:
- type: Transform
@@ -85827,7 +85570,7 @@ entities:
pos: 13.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13587
components:
- type: Transform
@@ -85835,7 +85578,7 @@ entities:
pos: 26.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13588
components:
- type: Transform
@@ -85843,14 +85586,14 @@ entities:
pos: 3.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13591
components:
- type: Transform
pos: 49.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13594
components:
- type: Transform
@@ -85858,7 +85601,7 @@ entities:
pos: 27.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13595
components:
- type: Transform
@@ -85866,7 +85609,7 @@ entities:
pos: 28.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13596
components:
- type: Transform
@@ -85874,7 +85617,7 @@ entities:
pos: 29.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13597
components:
- type: Transform
@@ -85882,7 +85625,7 @@ entities:
pos: 30.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13630
components:
- type: Transform
@@ -85890,7 +85633,7 @@ entities:
pos: 32.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13640
components:
- type: Transform
@@ -85898,7 +85641,7 @@ entities:
pos: 12.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13643
components:
- type: Transform
@@ -85918,7 +85661,7 @@ entities:
pos: 33.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13652
components:
- type: Transform
@@ -85926,7 +85669,7 @@ entities:
pos: 34.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13653
components:
- type: Transform
@@ -85934,7 +85677,7 @@ entities:
pos: 35.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13674
components:
- type: Transform
@@ -85942,7 +85685,7 @@ entities:
pos: -8.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13675
components:
- type: Transform
@@ -85950,7 +85693,7 @@ entities:
pos: -8.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13676
components:
- type: Transform
@@ -85958,7 +85701,7 @@ entities:
pos: -8.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13806
components:
- type: Transform
@@ -85966,7 +85709,7 @@ entities:
pos: 36.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13807
components:
- type: Transform
@@ -85974,7 +85717,7 @@ entities:
pos: 37.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13809
components:
- type: Transform
@@ -85982,7 +85725,7 @@ entities:
pos: 39.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13810
components:
- type: Transform
@@ -85990,7 +85733,7 @@ entities:
pos: 22.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13822
components:
- type: Transform
@@ -85998,7 +85741,7 @@ entities:
pos: 25.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13836
components:
- type: Transform
@@ -86006,7 +85749,7 @@ entities:
pos: 25.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13837
components:
- type: Transform
@@ -86014,7 +85757,7 @@ entities:
pos: 26.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13839
components:
- type: Transform
@@ -86022,7 +85765,7 @@ entities:
pos: -26.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13840
components:
- type: Transform
@@ -86030,7 +85773,7 @@ entities:
pos: -26.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13841
components:
- type: Transform
@@ -86038,7 +85781,7 @@ entities:
pos: -26.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13843
components:
- type: Transform
@@ -86046,7 +85789,7 @@ entities:
pos: 27.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13869
components:
- type: Transform
@@ -86054,7 +85797,7 @@ entities:
pos: -30.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13877
components:
- type: Transform
@@ -86068,7 +85811,7 @@ entities:
pos: 28.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13920
components:
- type: Transform
@@ -86076,7 +85819,7 @@ entities:
pos: 29.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13921
components:
- type: Transform
@@ -86084,7 +85827,7 @@ entities:
pos: 30.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13932
components:
- type: Transform
@@ -86092,7 +85835,7 @@ entities:
pos: -14.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13935
components:
- type: Transform
@@ -86112,7 +85855,7 @@ entities:
pos: 31.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14003
components:
- type: Transform
@@ -86120,7 +85863,7 @@ entities:
pos: -26.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14004
components:
- type: Transform
@@ -86128,7 +85871,7 @@ entities:
pos: -26.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14005
components:
- type: Transform
@@ -86136,7 +85879,7 @@ entities:
pos: -26.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14016
components:
- type: Transform
@@ -86144,7 +85887,7 @@ entities:
pos: 33.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14017
components:
- type: Transform
@@ -86152,7 +85895,7 @@ entities:
pos: 34.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14018
components:
- type: Transform
@@ -86160,7 +85903,7 @@ entities:
pos: 35.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14019
components:
- type: Transform
@@ -86168,7 +85911,7 @@ entities:
pos: 36.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14020
components:
- type: Transform
@@ -86176,7 +85919,7 @@ entities:
pos: 37.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14023
components:
- type: Transform
@@ -86184,7 +85927,7 @@ entities:
pos: 16.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14024
components:
- type: Transform
@@ -86192,7 +85935,7 @@ entities:
pos: 17.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14025
components:
- type: Transform
@@ -86200,7 +85943,7 @@ entities:
pos: 18.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14026
components:
- type: Transform
@@ -86208,7 +85951,7 @@ entities:
pos: 19.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14027
components:
- type: Transform
@@ -86216,7 +85959,7 @@ entities:
pos: 20.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14028
components:
- type: Transform
@@ -86224,7 +85967,7 @@ entities:
pos: 21.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14030
components:
- type: Transform
@@ -86232,7 +85975,7 @@ entities:
pos: 23.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14031
components:
- type: Transform
@@ -86240,7 +85983,7 @@ entities:
pos: 24.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14032
components:
- type: Transform
@@ -86248,7 +85991,7 @@ entities:
pos: 25.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14033
components:
- type: Transform
@@ -86256,7 +85999,7 @@ entities:
pos: 26.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14034
components:
- type: Transform
@@ -86264,7 +86007,7 @@ entities:
pos: 27.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14035
components:
- type: Transform
@@ -86272,7 +86015,7 @@ entities:
pos: 28.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14036
components:
- type: Transform
@@ -86280,7 +86023,7 @@ entities:
pos: 29.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14037
components:
- type: Transform
@@ -86288,7 +86031,7 @@ entities:
pos: 30.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14038
components:
- type: Transform
@@ -86296,7 +86039,7 @@ entities:
pos: 31.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14039
components:
- type: Transform
@@ -86304,7 +86047,7 @@ entities:
pos: 32.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14041
components:
- type: Transform
@@ -86312,7 +86055,7 @@ entities:
pos: 34.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14042
components:
- type: Transform
@@ -86320,7 +86063,7 @@ entities:
pos: 35.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14045
components:
- type: Transform
@@ -86328,7 +86071,7 @@ entities:
pos: 37.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14046
components:
- type: Transform
@@ -86336,7 +86079,7 @@ entities:
pos: 38.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14048
components:
- type: Transform
@@ -86344,21 +86087,37 @@ entities:
pos: 40.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14132
components:
- type: Transform
pos: -9.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14153
components:
- type: Transform
pos: -9.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 14174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 14176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,14.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 14181
components:
- type: Transform
@@ -86366,7 +86125,7 @@ entities:
pos: -21.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14209
components:
- type: Transform
@@ -86374,7 +86133,7 @@ entities:
pos: -13.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14214
components:
- type: Transform
@@ -86382,15 +86141,7 @@ entities:
pos: -15.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14229
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 14232
components:
- type: Transform
@@ -86398,7 +86149,7 @@ entities:
pos: -16.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14233
components:
- type: Transform
@@ -86406,7 +86157,7 @@ entities:
pos: -16.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14234
components:
- type: Transform
@@ -86414,7 +86165,7 @@ entities:
pos: -16.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14235
components:
- type: Transform
@@ -86422,7 +86173,7 @@ entities:
pos: -16.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14236
components:
- type: Transform
@@ -86430,7 +86181,7 @@ entities:
pos: -16.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14238
components:
- type: Transform
@@ -86438,7 +86189,7 @@ entities:
pos: -16.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14239
components:
- type: Transform
@@ -86446,7 +86197,7 @@ entities:
pos: -16.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14240
components:
- type: Transform
@@ -86454,7 +86205,7 @@ entities:
pos: -16.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14242
components:
- type: Transform
@@ -86462,7 +86213,7 @@ entities:
pos: -16.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14243
components:
- type: Transform
@@ -86470,7 +86221,7 @@ entities:
pos: -16.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14244
components:
- type: Transform
@@ -86478,7 +86229,7 @@ entities:
pos: -16.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14245
components:
- type: Transform
@@ -86486,7 +86237,7 @@ entities:
pos: -14.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14246
components:
- type: Transform
@@ -86494,7 +86245,7 @@ entities:
pos: -14.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14247
components:
- type: Transform
@@ -86502,7 +86253,7 @@ entities:
pos: -14.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14248
components:
- type: Transform
@@ -86510,7 +86261,7 @@ entities:
pos: -14.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14249
components:
- type: Transform
@@ -86518,7 +86269,7 @@ entities:
pos: -14.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14250
components:
- type: Transform
@@ -86526,7 +86277,7 @@ entities:
pos: -14.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14252
components:
- type: Transform
@@ -86534,7 +86285,7 @@ entities:
pos: -14.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14253
components:
- type: Transform
@@ -86542,7 +86293,7 @@ entities:
pos: -14.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14254
components:
- type: Transform
@@ -86550,7 +86301,7 @@ entities:
pos: -14.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14255
components:
- type: Transform
@@ -86558,7 +86309,7 @@ entities:
pos: -14.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14256
components:
- type: Transform
@@ -86566,7 +86317,7 @@ entities:
pos: -14.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14257
components:
- type: Transform
@@ -86574,7 +86325,7 @@ entities:
pos: -14.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14258
components:
- type: Transform
@@ -86582,7 +86333,7 @@ entities:
pos: -14.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14261
components:
- type: Transform
@@ -86590,7 +86341,7 @@ entities:
pos: -17.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14262
components:
- type: Transform
@@ -86598,7 +86349,7 @@ entities:
pos: -18.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14263
components:
- type: Transform
@@ -86606,7 +86357,7 @@ entities:
pos: -19.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14264
components:
- type: Transform
@@ -86614,7 +86365,7 @@ entities:
pos: -20.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14265
components:
- type: Transform
@@ -86622,7 +86373,7 @@ entities:
pos: -21.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14266
components:
- type: Transform
@@ -86630,14 +86381,14 @@ entities:
pos: -22.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14267
components:
- type: Transform
pos: 49.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14268
components:
- type: Transform
@@ -86645,7 +86396,7 @@ entities:
pos: -24.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14269
components:
- type: Transform
@@ -86653,7 +86404,7 @@ entities:
pos: -25.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14271
components:
- type: Transform
@@ -86661,7 +86412,7 @@ entities:
pos: -27.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14272
components:
- type: Transform
@@ -86669,7 +86420,7 @@ entities:
pos: -28.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14273
components:
- type: Transform
@@ -86677,7 +86428,7 @@ entities:
pos: -29.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14275
components:
- type: Transform
@@ -86685,7 +86436,7 @@ entities:
pos: -15.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14276
components:
- type: Transform
@@ -86693,7 +86444,7 @@ entities:
pos: -16.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14277
components:
- type: Transform
@@ -86701,7 +86452,7 @@ entities:
pos: -17.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14278
components:
- type: Transform
@@ -86709,7 +86460,7 @@ entities:
pos: -18.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14281
components:
- type: Transform
@@ -86717,7 +86468,7 @@ entities:
pos: -21.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14282
components:
- type: Transform
@@ -86725,7 +86476,7 @@ entities:
pos: -22.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14283
components:
- type: Transform
@@ -86733,7 +86484,7 @@ entities:
pos: -23.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14284
components:
- type: Transform
@@ -86741,7 +86492,7 @@ entities:
pos: -25.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14290
components:
- type: Transform
@@ -86755,7 +86506,7 @@ entities:
pos: -13.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14292
components:
- type: Transform
@@ -86763,7 +86514,7 @@ entities:
pos: -12.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14294
components:
- type: Transform
@@ -86771,7 +86522,7 @@ entities:
pos: -10.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14296
components:
- type: Transform
@@ -86779,7 +86530,7 @@ entities:
pos: -8.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14298
components:
- type: Transform
@@ -86787,7 +86538,7 @@ entities:
pos: -7.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14299
components:
- type: Transform
@@ -86795,7 +86546,7 @@ entities:
pos: -7.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14300
components:
- type: Transform
@@ -86803,7 +86554,7 @@ entities:
pos: -7.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14301
components:
- type: Transform
@@ -86811,7 +86562,7 @@ entities:
pos: -7.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14304
components:
- type: Transform
@@ -86819,7 +86570,7 @@ entities:
pos: -15.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14305
components:
- type: Transform
@@ -86827,7 +86578,7 @@ entities:
pos: -14.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14306
components:
- type: Transform
@@ -86835,7 +86586,7 @@ entities:
pos: -12.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14307
components:
- type: Transform
@@ -86843,7 +86594,7 @@ entities:
pos: -13.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14309
components:
- type: Transform
@@ -86851,7 +86602,7 @@ entities:
pos: -10.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14310
components:
- type: Transform
@@ -86859,7 +86610,7 @@ entities:
pos: -9.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14314
components:
- type: Transform
@@ -86867,7 +86618,7 @@ entities:
pos: -8.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14315
components:
- type: Transform
@@ -86875,7 +86626,7 @@ entities:
pos: -8.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14316
components:
- type: Transform
@@ -86883,7 +86634,7 @@ entities:
pos: -8.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14317
components:
- type: Transform
@@ -86891,56 +86642,57 @@ entities:
pos: -8.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14319
+ color: '#FF1212FF'
+ - uid: 14318
components:
- type: Transform
- pos: -9.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14320
components:
- type: Transform
pos: -9.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14321
components:
- type: Transform
pos: -9.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14322
components:
- type: Transform
pos: -9.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14323
components:
- type: Transform
pos: -9.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14324
components:
- type: Transform
pos: -9.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14455
components:
- type: Transform
pos: -27.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14456
components:
- type: Transform
@@ -86948,7 +86700,7 @@ entities:
pos: -26.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14457
components:
- type: Transform
@@ -86956,7 +86708,7 @@ entities:
pos: -26.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14458
components:
- type: Transform
@@ -86964,7 +86716,7 @@ entities:
pos: -26.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14459
components:
- type: Transform
@@ -86972,7 +86724,7 @@ entities:
pos: -26.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14460
components:
- type: Transform
@@ -86980,7 +86732,7 @@ entities:
pos: -26.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14461
components:
- type: Transform
@@ -86988,119 +86740,119 @@ entities:
pos: -26.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14462
components:
- type: Transform
pos: -24.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14463
components:
- type: Transform
pos: -24.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14464
components:
- type: Transform
pos: -24.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14465
components:
- type: Transform
pos: -24.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14466
components:
- type: Transform
pos: -24.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14467
components:
- type: Transform
pos: -24.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14469
components:
- type: Transform
pos: -24.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14470
components:
- type: Transform
pos: -24.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14471
components:
- type: Transform
pos: -24.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14472
components:
- type: Transform
pos: -24.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14473
components:
- type: Transform
pos: -24.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14474
components:
- type: Transform
pos: -24.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14475
components:
- type: Transform
pos: -24.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14476
components:
- type: Transform
pos: -24.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14489
components:
- type: Transform
pos: -27.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14495
components:
- type: Transform
pos: -23.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14643
components:
- type: Transform
@@ -87108,7 +86860,7 @@ entities:
pos: -20.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14644
components:
- type: Transform
@@ -87116,7 +86868,7 @@ entities:
pos: -22.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14662
components:
- type: Transform
@@ -87129,7 +86881,7 @@ entities:
pos: -16.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14669
components:
- type: Transform
@@ -87137,7 +86889,7 @@ entities:
pos: -24.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14671
components:
- type: Transform
@@ -87145,7 +86897,7 @@ entities:
pos: -23.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14672
components:
- type: Transform
@@ -87153,7 +86905,7 @@ entities:
pos: -22.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14686
components:
- type: Transform
@@ -87194,7 +86946,7 @@ entities:
pos: 41.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14742
components:
- type: Transform
@@ -87202,7 +86954,7 @@ entities:
pos: -29.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14743
components:
- type: Transform
@@ -87210,7 +86962,7 @@ entities:
pos: -28.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14744
components:
- type: Transform
@@ -87218,7 +86970,7 @@ entities:
pos: -27.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14747
components:
- type: Transform
@@ -87226,7 +86978,7 @@ entities:
pos: -24.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14748
components:
- type: Transform
@@ -87234,7 +86986,7 @@ entities:
pos: -23.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14754
components:
- type: Transform
@@ -87242,7 +86994,7 @@ entities:
pos: -20.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14755
components:
- type: Transform
@@ -87250,7 +87002,7 @@ entities:
pos: -20.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14757
components:
- type: Transform
@@ -87258,7 +87010,7 @@ entities:
pos: -25.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14758
components:
- type: Transform
@@ -87266,7 +87018,7 @@ entities:
pos: -22.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14759
components:
- type: Transform
@@ -87274,7 +87026,7 @@ entities:
pos: -22.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14760
components:
- type: Transform
@@ -87282,7 +87034,7 @@ entities:
pos: -22.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14761
components:
- type: Transform
@@ -87290,7 +87042,7 @@ entities:
pos: -22.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14762
components:
- type: Transform
@@ -87298,7 +87050,7 @@ entities:
pos: -22.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14764
components:
- type: Transform
@@ -87306,7 +87058,7 @@ entities:
pos: -36.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14765
components:
- type: Transform
@@ -87314,7 +87066,7 @@ entities:
pos: -35.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14767
components:
- type: Transform
@@ -87322,7 +87074,7 @@ entities:
pos: -33.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14768
components:
- type: Transform
@@ -87330,14 +87082,14 @@ entities:
pos: -32.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14769
components:
- type: Transform
pos: -41.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14771
components:
- type: Transform
@@ -87345,7 +87097,7 @@ entities:
pos: -35.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14773
components:
- type: Transform
@@ -87353,7 +87105,7 @@ entities:
pos: -29.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14777
components:
- type: Transform
@@ -87361,7 +87113,7 @@ entities:
pos: -26.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14778
components:
- type: Transform
@@ -87369,7 +87121,7 @@ entities:
pos: -25.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14781
components:
- type: Transform
@@ -87383,7 +87135,7 @@ entities:
pos: -28.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14786
components:
- type: Transform
@@ -87391,7 +87143,7 @@ entities:
pos: -31.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14790
components:
- type: Transform
@@ -87399,7 +87151,7 @@ entities:
pos: -34.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14794
components:
- type: Transform
@@ -87431,14 +87183,14 @@ entities:
pos: -27.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14871
components:
- type: Transform
pos: -43.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14878
components:
- type: Transform
@@ -87446,7 +87198,7 @@ entities:
pos: -33.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14879
components:
- type: Transform
@@ -87454,7 +87206,7 @@ entities:
pos: -31.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14883
components:
- type: Transform
@@ -87486,7 +87238,7 @@ entities:
pos: -33.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14897
components:
- type: Transform
@@ -87528,7 +87280,7 @@ entities:
pos: -26.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14934
components:
- type: Transform
@@ -87536,7 +87288,7 @@ entities:
pos: -27.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14935
components:
- type: Transform
@@ -87544,7 +87296,7 @@ entities:
pos: -28.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14936
components:
- type: Transform
@@ -87552,7 +87304,7 @@ entities:
pos: -26.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14938
components:
- type: Transform
@@ -87560,7 +87312,7 @@ entities:
pos: -31.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14940
components:
- type: Transform
@@ -87586,14 +87338,14 @@ entities:
pos: 1.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14987
components:
- type: Transform
pos: -33.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14991
components:
- type: Transform
@@ -87797,7 +87549,7 @@ entities:
pos: -32.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15118
components:
- type: Transform
@@ -87883,7 +87635,7 @@ entities:
pos: -33.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15146
components:
- type: Transform
@@ -87903,7 +87655,7 @@ entities:
pos: 13.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15172
components:
- type: Transform
@@ -87928,14 +87680,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 15183
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 15273
components:
- type: Transform
@@ -87995,7 +87739,7 @@ entities:
pos: -19.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15358
components:
- type: Transform
@@ -88003,7 +87747,7 @@ entities:
pos: -17.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15365
components:
- type: Transform
@@ -88318,7 +88062,7 @@ entities:
pos: -22.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15589
components:
- type: Transform
@@ -88326,7 +88070,7 @@ entities:
pos: -22.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15590
components:
- type: Transform
@@ -88334,7 +88078,7 @@ entities:
pos: -22.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15592
components:
- type: Transform
@@ -88342,7 +88086,7 @@ entities:
pos: -22.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15598
components:
- type: Transform
@@ -88350,7 +88094,7 @@ entities:
pos: -18.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15606
components:
- type: Transform
@@ -88358,7 +88102,7 @@ entities:
pos: -10.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15607
components:
- type: Transform
@@ -88366,7 +88110,7 @@ entities:
pos: -10.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15608
components:
- type: Transform
@@ -88374,7 +88118,7 @@ entities:
pos: -10.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15609
components:
- type: Transform
@@ -88382,7 +88126,7 @@ entities:
pos: -10.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15610
components:
- type: Transform
@@ -88390,7 +88134,7 @@ entities:
pos: -10.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15611
components:
- type: Transform
@@ -88398,7 +88142,7 @@ entities:
pos: -10.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15614
components:
- type: Transform
@@ -88406,7 +88150,7 @@ entities:
pos: -20.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15615
components:
- type: Transform
@@ -88414,7 +88158,7 @@ entities:
pos: -20.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15616
components:
- type: Transform
@@ -88422,7 +88166,7 @@ entities:
pos: -19.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15618
components:
- type: Transform
@@ -88430,7 +88174,7 @@ entities:
pos: -17.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15619
components:
- type: Transform
@@ -88438,7 +88182,7 @@ entities:
pos: -16.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15620
components:
- type: Transform
@@ -88446,7 +88190,7 @@ entities:
pos: -15.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15622
components:
- type: Transform
@@ -88454,28 +88198,28 @@ entities:
pos: -13.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15623
components:
- type: Transform
pos: -12.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15624
components:
- type: Transform
pos: -12.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15625
components:
- type: Transform
pos: -12.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15627
components:
- type: Transform
@@ -88483,7 +88227,7 @@ entities:
pos: -19.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15628
components:
- type: Transform
@@ -88491,7 +88235,7 @@ entities:
pos: -18.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15629
components:
- type: Transform
@@ -88499,7 +88243,7 @@ entities:
pos: -17.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15630
components:
- type: Transform
@@ -88507,7 +88251,7 @@ entities:
pos: -16.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15631
components:
- type: Transform
@@ -88515,7 +88259,7 @@ entities:
pos: -15.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15632
components:
- type: Transform
@@ -88523,7 +88267,7 @@ entities:
pos: -14.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15633
components:
- type: Transform
@@ -88531,14 +88275,14 @@ entities:
pos: -13.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15634
components:
- type: Transform
pos: -12.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15638
components:
- type: Transform
@@ -88546,7 +88290,7 @@ entities:
pos: -16.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15639
components:
- type: Transform
@@ -88554,7 +88298,7 @@ entities:
pos: -16.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15640
components:
- type: Transform
@@ -88562,7 +88306,7 @@ entities:
pos: -16.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15641
components:
- type: Transform
@@ -88570,7 +88314,7 @@ entities:
pos: -15.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15642
components:
- type: Transform
@@ -88578,7 +88322,7 @@ entities:
pos: -14.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15643
components:
- type: Transform
@@ -88586,7 +88330,7 @@ entities:
pos: -13.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15644
components:
- type: Transform
@@ -88594,7 +88338,7 @@ entities:
pos: -12.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15645
components:
- type: Transform
@@ -88602,35 +88346,35 @@ entities:
pos: -11.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15646
components:
- type: Transform
pos: -10.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15655
components:
- type: Transform
pos: -0.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15656
components:
- type: Transform
pos: -0.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15657
components:
- type: Transform
pos: -0.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15658
components:
- type: Transform
@@ -88638,7 +88382,7 @@ entities:
pos: 0.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15659
components:
- type: Transform
@@ -88646,21 +88390,21 @@ entities:
pos: -9.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15662
components:
- type: Transform
pos: 1.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15663
components:
- type: Transform
pos: 1.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15746
components:
- type: Transform
@@ -88668,14 +88412,14 @@ entities:
pos: 0.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16562
components:
- type: Transform
pos: -16.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16564
components:
- type: Transform
@@ -88683,7 +88427,7 @@ entities:
pos: -8.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16565
components:
- type: Transform
@@ -88691,7 +88435,7 @@ entities:
pos: -7.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16566
components:
- type: Transform
@@ -88699,7 +88443,7 @@ entities:
pos: -6.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16567
components:
- type: Transform
@@ -88707,7 +88451,7 @@ entities:
pos: -5.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16568
components:
- type: Transform
@@ -88715,7 +88459,7 @@ entities:
pos: -4.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16569
components:
- type: Transform
@@ -88723,56 +88467,56 @@ entities:
pos: -3.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16570
components:
- type: Transform
pos: -2.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16572
components:
- type: Transform
pos: -2.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16573
components:
- type: Transform
pos: -2.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16574
components:
- type: Transform
pos: -2.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16575
components:
- type: Transform
pos: -2.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16577
components:
- type: Transform
pos: -2.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16578
components:
- type: Transform
pos: -2.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16579
components:
- type: Transform
@@ -88780,7 +88524,7 @@ entities:
pos: -1.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16583
components:
- type: Transform
@@ -88788,7 +88532,7 @@ entities:
pos: -11.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16584
components:
- type: Transform
@@ -88796,7 +88540,7 @@ entities:
pos: -10.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16585
components:
- type: Transform
@@ -88804,7 +88548,7 @@ entities:
pos: -9.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16586
components:
- type: Transform
@@ -88812,7 +88556,7 @@ entities:
pos: -8.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16587
components:
- type: Transform
@@ -88820,7 +88564,7 @@ entities:
pos: -7.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16588
components:
- type: Transform
@@ -88828,7 +88572,7 @@ entities:
pos: -6.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16589
components:
- type: Transform
@@ -88836,7 +88580,7 @@ entities:
pos: -5.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16590
components:
- type: Transform
@@ -88844,28 +88588,28 @@ entities:
pos: -4.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16591
components:
- type: Transform
pos: -3.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16592
components:
- type: Transform
pos: -3.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16593
components:
- type: Transform
pos: -3.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16595
components:
- type: Transform
@@ -88873,28 +88617,28 @@ entities:
pos: -3.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16596
components:
- type: Transform
pos: -3.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16597
components:
- type: Transform
pos: -3.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16598
components:
- type: Transform
pos: -3.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16600
components:
- type: Transform
@@ -88902,7 +88646,7 @@ entities:
pos: -2.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16601
components:
- type: Transform
@@ -88910,7 +88654,7 @@ entities:
pos: -1.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16602
components:
- type: Transform
@@ -88918,7 +88662,7 @@ entities:
pos: -0.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16603
components:
- type: Transform
@@ -88926,7 +88670,7 @@ entities:
pos: 0.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16606
components:
- type: Transform
@@ -88934,7 +88678,7 @@ entities:
pos: -2.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16607
components:
- type: Transform
@@ -88942,7 +88686,7 @@ entities:
pos: -1.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16609
components:
- type: Transform
@@ -88950,7 +88694,7 @@ entities:
pos: -0.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16610
components:
- type: Transform
@@ -88958,7 +88702,7 @@ entities:
pos: 0.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16613
components:
- type: Transform
@@ -88966,7 +88710,7 @@ entities:
pos: -0.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16614
components:
- type: Transform
@@ -88974,7 +88718,7 @@ entities:
pos: -0.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16617
components:
- type: Transform
@@ -88982,7 +88726,7 @@ entities:
pos: 1.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16618
components:
- type: Transform
@@ -88990,7 +88734,7 @@ entities:
pos: 1.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16622
components:
- type: Transform
@@ -88998,7 +88742,7 @@ entities:
pos: -2.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16624
components:
- type: Transform
@@ -89006,7 +88750,7 @@ entities:
pos: -0.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16625
components:
- type: Transform
@@ -89014,7 +88758,7 @@ entities:
pos: 1.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16626
components:
- type: Transform
@@ -89022,7 +88766,7 @@ entities:
pos: 2.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16627
components:
- type: Transform
@@ -89030,7 +88774,7 @@ entities:
pos: 3.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16628
components:
- type: Transform
@@ -89038,7 +88782,7 @@ entities:
pos: 4.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16629
components:
- type: Transform
@@ -89046,7 +88790,7 @@ entities:
pos: 2.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16630
components:
- type: Transform
@@ -89054,7 +88798,7 @@ entities:
pos: 3.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16631
components:
- type: Transform
@@ -89062,35 +88806,35 @@ entities:
pos: 4.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16637
components:
- type: Transform
pos: -3.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16638
components:
- type: Transform
pos: -3.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16639
components:
- type: Transform
pos: -3.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16640
components:
- type: Transform
pos: -2.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16644
components:
- type: Transform
@@ -89098,7 +88842,7 @@ entities:
pos: 2.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16646
components:
- type: Transform
@@ -89106,7 +88850,7 @@ entities:
pos: 1.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16649
components:
- type: Transform
@@ -89114,7 +88858,7 @@ entities:
pos: 5.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16650
components:
- type: Transform
@@ -89122,7 +88866,7 @@ entities:
pos: 6.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16651
components:
- type: Transform
@@ -89130,7 +88874,7 @@ entities:
pos: 7.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16652
components:
- type: Transform
@@ -89138,7 +88882,7 @@ entities:
pos: 8.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16653
components:
- type: Transform
@@ -89146,7 +88890,7 @@ entities:
pos: 9.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16655
components:
- type: Transform
@@ -89154,7 +88898,7 @@ entities:
pos: 11.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16657
components:
- type: Transform
@@ -89162,14 +88906,14 @@ entities:
pos: 3.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16658
components:
- type: Transform
pos: 4.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16660
components:
- type: Transform
@@ -89177,7 +88921,7 @@ entities:
pos: 6.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16661
components:
- type: Transform
@@ -89185,7 +88929,7 @@ entities:
pos: 7.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16662
components:
- type: Transform
@@ -89193,7 +88937,7 @@ entities:
pos: 8.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16663
components:
- type: Transform
@@ -89201,7 +88945,7 @@ entities:
pos: 9.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16665
components:
- type: Transform
@@ -89209,7 +88953,7 @@ entities:
pos: 11.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16671
components:
- type: Transform
@@ -89217,7 +88961,7 @@ entities:
pos: 5.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16676
components:
- type: Transform
@@ -89225,7 +88969,7 @@ entities:
pos: 5.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16677
components:
- type: Transform
@@ -89233,7 +88977,7 @@ entities:
pos: 5.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16742
components:
- type: Transform
@@ -89264,7 +89008,7 @@ entities:
pos: -50.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17458
components:
- type: Transform
@@ -89272,7 +89016,7 @@ entities:
pos: -44.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17506
components:
- type: Transform
@@ -89280,7 +89024,7 @@ entities:
pos: 18.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17507
components:
- type: Transform
@@ -89288,7 +89032,7 @@ entities:
pos: 19.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17508
components:
- type: Transform
@@ -89296,7 +89040,7 @@ entities:
pos: 20.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17510
components:
- type: Transform
@@ -89304,7 +89048,7 @@ entities:
pos: 22.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17511
components:
- type: Transform
@@ -89312,7 +89056,7 @@ entities:
pos: 23.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17512
components:
- type: Transform
@@ -89320,7 +89064,7 @@ entities:
pos: 24.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17513
components:
- type: Transform
@@ -89328,7 +89072,7 @@ entities:
pos: 25.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17514
components:
- type: Transform
@@ -89336,7 +89080,7 @@ entities:
pos: 26.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17515
components:
- type: Transform
@@ -89344,7 +89088,7 @@ entities:
pos: 27.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17516
components:
- type: Transform
@@ -89352,7 +89096,7 @@ entities:
pos: 28.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17517
components:
- type: Transform
@@ -89360,7 +89104,7 @@ entities:
pos: 29.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17518
components:
- type: Transform
@@ -89368,7 +89112,7 @@ entities:
pos: 30.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17519
components:
- type: Transform
@@ -89376,7 +89120,7 @@ entities:
pos: 31.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17520
components:
- type: Transform
@@ -89384,7 +89128,7 @@ entities:
pos: 32.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17521
components:
- type: Transform
@@ -89392,7 +89136,7 @@ entities:
pos: 33.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17522
components:
- type: Transform
@@ -89400,7 +89144,7 @@ entities:
pos: 34.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17524
components:
- type: Transform
@@ -89408,7 +89152,7 @@ entities:
pos: 36.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17526
components:
- type: Transform
@@ -89416,7 +89160,7 @@ entities:
pos: 38.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17527
components:
- type: Transform
@@ -89424,7 +89168,7 @@ entities:
pos: 39.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17528
components:
- type: Transform
@@ -89432,105 +89176,105 @@ entities:
pos: 40.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17530
components:
- type: Transform
pos: 41.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17531
components:
- type: Transform
pos: 41.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17532
components:
- type: Transform
pos: 41.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17533
components:
- type: Transform
pos: 41.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17534
components:
- type: Transform
pos: 41.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17535
components:
- type: Transform
pos: 41.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17536
components:
- type: Transform
pos: 41.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17537
components:
- type: Transform
pos: 41.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17539
components:
- type: Transform
pos: 41.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17540
components:
- type: Transform
pos: 41.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17541
components:
- type: Transform
pos: 41.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17542
components:
- type: Transform
pos: 41.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17543
components:
- type: Transform
pos: 41.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17544
components:
- type: Transform
pos: 41.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17546
components:
- type: Transform
@@ -89538,7 +89282,7 @@ entities:
pos: 40.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17547
components:
- type: Transform
@@ -89546,28 +89290,28 @@ entities:
pos: 39.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17548
components:
- type: Transform
pos: 39.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17549
components:
- type: Transform
pos: 39.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17550
components:
- type: Transform
pos: 39.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17569
components:
- type: Transform
@@ -89575,7 +89319,7 @@ entities:
pos: -37.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17571
components:
- type: Transform
@@ -89583,7 +89327,7 @@ entities:
pos: -39.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17572
components:
- type: Transform
@@ -89591,7 +89335,7 @@ entities:
pos: -40.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17573
components:
- type: Transform
@@ -89599,7 +89343,7 @@ entities:
pos: -41.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17574
components:
- type: Transform
@@ -89613,7 +89357,7 @@ entities:
pos: -37.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17576
components:
- type: Transform
@@ -89621,7 +89365,7 @@ entities:
pos: -38.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17577
components:
- type: Transform
@@ -89629,7 +89373,7 @@ entities:
pos: -39.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17578
components:
- type: Transform
@@ -89637,7 +89381,7 @@ entities:
pos: -40.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17579
components:
- type: Transform
@@ -89650,21 +89394,21 @@ entities:
pos: -43.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17582
components:
- type: Transform
pos: -43.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17584
components:
- type: Transform
pos: -41.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17588
components:
- type: Transform
@@ -89672,7 +89416,7 @@ entities:
pos: -41.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17589
components:
- type: Transform
@@ -89680,7 +89424,7 @@ entities:
pos: -42.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17590
components:
- type: Transform
@@ -89688,7 +89432,7 @@ entities:
pos: -43.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17591
components:
- type: Transform
@@ -89696,7 +89440,7 @@ entities:
pos: -45.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17592
components:
- type: Transform
@@ -89704,7 +89448,7 @@ entities:
pos: -45.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17593
components:
- type: Transform
@@ -89712,7 +89456,7 @@ entities:
pos: -44.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17594
components:
- type: Transform
@@ -89726,7 +89470,7 @@ entities:
pos: -43.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17596
components:
- type: Transform
@@ -89734,7 +89478,7 @@ entities:
pos: -44.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17597
components:
- type: Transform
@@ -89742,7 +89486,7 @@ entities:
pos: -45.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17598
components:
- type: Transform
@@ -89750,7 +89494,7 @@ entities:
pos: -44.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17599
components:
- type: Transform
@@ -89758,77 +89502,77 @@ entities:
pos: -45.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17605
components:
- type: Transform
pos: -38.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17606
components:
- type: Transform
pos: -38.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17607
components:
- type: Transform
pos: -38.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17608
components:
- type: Transform
pos: -38.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17609
components:
- type: Transform
pos: -36.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17610
components:
- type: Transform
pos: -36.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17611
components:
- type: Transform
pos: -36.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17612
components:
- type: Transform
pos: -36.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17613
components:
- type: Transform
pos: -34.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17614
components:
- type: Transform
pos: -34.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17699
components:
- type: Transform
@@ -89836,84 +89580,84 @@ entities:
pos: 23.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17711
components:
- type: Transform
pos: 39.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17746
components:
- type: Transform
pos: 39.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17747
components:
- type: Transform
pos: 39.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17748
components:
- type: Transform
pos: 39.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17842
components:
- type: Transform
pos: 39.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17846
components:
- type: Transform
pos: 39.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17847
components:
- type: Transform
pos: 39.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17848
components:
- type: Transform
pos: 39.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17849
components:
- type: Transform
pos: 39.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17850
components:
- type: Transform
pos: 39.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17862
components:
- type: Transform
pos: 39.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17866
components:
- type: Transform
@@ -89921,7 +89665,7 @@ entities:
pos: 23.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17869
components:
- type: Transform
@@ -89929,7 +89673,7 @@ entities:
pos: 23.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17880
components:
- type: Transform
@@ -89937,7 +89681,7 @@ entities:
pos: 40.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17881
components:
- type: Transform
@@ -89945,7 +89689,7 @@ entities:
pos: 41.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17882
components:
- type: Transform
@@ -89953,7 +89697,7 @@ entities:
pos: 42.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17885
components:
- type: Transform
@@ -89961,7 +89705,7 @@ entities:
pos: 43.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17886
components:
- type: Transform
@@ -89969,7 +89713,7 @@ entities:
pos: 44.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17888
components:
- type: Transform
@@ -89977,7 +89721,7 @@ entities:
pos: 46.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17889
components:
- type: Transform
@@ -89985,7 +89729,7 @@ entities:
pos: 47.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17890
components:
- type: Transform
@@ -89993,7 +89737,7 @@ entities:
pos: 48.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18097
components:
- type: Transform
@@ -90001,7 +89745,7 @@ entities:
pos: 50.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18101
components:
- type: Transform
@@ -90009,7 +89753,7 @@ entities:
pos: 51.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18102
components:
- type: Transform
@@ -90017,7 +89761,7 @@ entities:
pos: 42.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18216
components:
- type: Transform
@@ -90025,7 +89769,7 @@ entities:
pos: -2.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18218
components:
- type: Transform
@@ -90033,84 +89777,84 @@ entities:
pos: 1.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18219
components:
- type: Transform
pos: 1.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18220
components:
- type: Transform
pos: 1.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18221
components:
- type: Transform
pos: 1.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18222
components:
- type: Transform
pos: 1.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18224
components:
- type: Transform
pos: 1.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18225
components:
- type: Transform
pos: 1.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18226
components:
- type: Transform
pos: 1.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18227
components:
- type: Transform
pos: 1.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18228
components:
- type: Transform
pos: 1.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18229
components:
- type: Transform
pos: 1.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18230
components:
- type: Transform
pos: -0.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18232
components:
- type: Transform
@@ -90118,35 +89862,35 @@ entities:
pos: -0.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18233
components:
- type: Transform
pos: -0.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18234
components:
- type: Transform
pos: -0.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18235
components:
- type: Transform
pos: -0.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18236
components:
- type: Transform
pos: -0.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18237
components:
- type: Transform
@@ -90154,28 +89898,28 @@ entities:
pos: 0.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18238
components:
- type: Transform
pos: -0.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18240
components:
- type: Transform
pos: -0.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18241
components:
- type: Transform
pos: -0.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18244
components:
- type: Transform
@@ -90183,7 +89927,7 @@ entities:
pos: -1.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18245
components:
- type: Transform
@@ -90191,7 +89935,7 @@ entities:
pos: 0.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18246
components:
- type: Transform
@@ -90199,7 +89943,7 @@ entities:
pos: -0.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18247
components:
- type: Transform
@@ -90207,7 +89951,7 @@ entities:
pos: -1.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18248
components:
- type: Transform
@@ -90215,28 +89959,28 @@ entities:
pos: -2.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18251
components:
- type: Transform
pos: -2.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18252
components:
- type: Transform
pos: -2.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18253
components:
- type: Transform
pos: -2.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18262
components:
- type: Transform
@@ -90244,28 +89988,28 @@ entities:
pos: -6.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18263
components:
- type: Transform
pos: -3.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18264
components:
- type: Transform
pos: -3.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18265
components:
- type: Transform
pos: -3.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18268
components:
- type: Transform
@@ -90273,7 +90017,7 @@ entities:
pos: -5.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18269
components:
- type: Transform
@@ -90281,7 +90025,7 @@ entities:
pos: -6.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18274
components:
- type: Transform
@@ -90289,7 +90033,7 @@ entities:
pos: -2.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18275
components:
- type: Transform
@@ -90297,7 +90041,7 @@ entities:
pos: -2.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18278
components:
- type: Transform
@@ -90305,7 +90049,7 @@ entities:
pos: -4.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18279
components:
- type: Transform
@@ -90313,7 +90057,7 @@ entities:
pos: -4.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18280
components:
- type: Transform
@@ -90321,7 +90065,7 @@ entities:
pos: -3.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18417
components:
- type: Transform
@@ -90329,7 +90073,7 @@ entities:
pos: 2.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18418
components:
- type: Transform
@@ -90337,7 +90081,7 @@ entities:
pos: 3.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18419
components:
- type: Transform
@@ -90345,7 +90089,7 @@ entities:
pos: 4.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18420
components:
- type: Transform
@@ -90353,7 +90097,7 @@ entities:
pos: 1.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18421
components:
- type: Transform
@@ -90361,7 +90105,7 @@ entities:
pos: 2.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18422
components:
- type: Transform
@@ -90369,7 +90113,7 @@ entities:
pos: 3.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18431
components:
- type: Transform
@@ -90377,7 +90121,7 @@ entities:
pos: -3.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18432
components:
- type: Transform
@@ -90385,7 +90129,7 @@ entities:
pos: -3.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18433
components:
- type: Transform
@@ -90393,7 +90137,15 @@ entities:
pos: -3.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 18464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -41.5,-19.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 18502
components:
- type: Transform
@@ -90401,7 +90153,7 @@ entities:
pos: -5.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18533
components:
- type: Transform
@@ -90409,7 +90161,7 @@ entities:
pos: 1.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18535
components:
- type: Transform
@@ -90417,7 +90169,7 @@ entities:
pos: 3.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18536
components:
- type: Transform
@@ -90425,7 +90177,7 @@ entities:
pos: 4.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18537
components:
- type: Transform
@@ -90433,7 +90185,7 @@ entities:
pos: 4.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18538
components:
- type: Transform
@@ -90441,7 +90193,7 @@ entities:
pos: 4.5,-2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18543
components:
- type: Transform
@@ -90449,7 +90201,7 @@ entities:
pos: 45.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18545
components:
- type: Transform
@@ -90457,7 +90209,7 @@ entities:
pos: 46.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18551
components:
- type: Transform
@@ -90465,7 +90217,7 @@ entities:
pos: 47.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18585
components:
- type: Transform
@@ -90473,7 +90225,7 @@ entities:
pos: 49.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18648
components:
- type: Transform
@@ -90481,7 +90233,7 @@ entities:
pos: 50.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18650
components:
- type: Transform
@@ -90489,7 +90241,7 @@ entities:
pos: 45.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18651
components:
- type: Transform
@@ -90497,7 +90249,7 @@ entities:
pos: 45.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18654
components:
- type: Transform
@@ -90505,7 +90257,7 @@ entities:
pos: 43.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18655
components:
- type: Transform
@@ -90513,7 +90265,7 @@ entities:
pos: 43.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18656
components:
- type: Transform
@@ -90521,21 +90273,21 @@ entities:
pos: 43.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18660
components:
- type: Transform
pos: 52.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18661
components:
- type: Transform
pos: 52.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18665
components:
- type: Transform
@@ -90543,7 +90295,7 @@ entities:
pos: 51.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18666
components:
- type: Transform
@@ -90551,7 +90303,7 @@ entities:
pos: 50.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18667
components:
- type: Transform
@@ -90559,7 +90311,7 @@ entities:
pos: 49.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18670
components:
- type: Transform
@@ -90567,7 +90319,7 @@ entities:
pos: 51.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18672
components:
- type: Transform
@@ -90575,7 +90327,7 @@ entities:
pos: 51.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18673
components:
- type: Transform
@@ -90583,7 +90335,7 @@ entities:
pos: 51.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18674
components:
- type: Transform
@@ -90591,7 +90343,7 @@ entities:
pos: 51.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18675
components:
- type: Transform
@@ -90599,7 +90351,7 @@ entities:
pos: 51.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18680
components:
- type: Transform
@@ -90607,7 +90359,7 @@ entities:
pos: 50.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18684
components:
- type: Transform
@@ -90615,7 +90367,7 @@ entities:
pos: 49.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18688
components:
- type: Transform
@@ -90623,7 +90375,7 @@ entities:
pos: 52.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18689
components:
- type: Transform
@@ -90631,7 +90383,7 @@ entities:
pos: 52.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18690
components:
- type: Transform
@@ -90639,7 +90391,7 @@ entities:
pos: 39.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18692
components:
- type: Transform
@@ -90647,7 +90399,7 @@ entities:
pos: 39.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18711
components:
- type: Transform
@@ -90655,7 +90407,7 @@ entities:
pos: 39.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18714
components:
- type: Transform
@@ -90663,35 +90415,35 @@ entities:
pos: 38.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18715
components:
- type: Transform
pos: 37.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18716
components:
- type: Transform
pos: 37.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18718
components:
- type: Transform
pos: 37.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18872
components:
- type: Transform
pos: 48.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18892
components:
- type: Transform
@@ -90704,21 +90456,21 @@ entities:
pos: 47.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18912
components:
- type: Transform
pos: 47.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18913
components:
- type: Transform
pos: 47.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18928
components:
- type: Transform
@@ -90754,7 +90506,7 @@ entities:
pos: 16.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19172
components:
- type: Transform
@@ -90762,7 +90514,7 @@ entities:
pos: 17.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19173
components:
- type: Transform
@@ -90770,7 +90522,7 @@ entities:
pos: 18.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19174
components:
- type: Transform
@@ -90778,7 +90530,7 @@ entities:
pos: 19.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19175
components:
- type: Transform
@@ -90786,7 +90538,7 @@ entities:
pos: 20.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19176
components:
- type: Transform
@@ -90794,7 +90546,7 @@ entities:
pos: 18.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19177
components:
- type: Transform
@@ -90802,7 +90554,7 @@ entities:
pos: 19.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19178
components:
- type: Transform
@@ -90810,7 +90562,31 @@ entities:
pos: 20.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 19786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 19794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -48.5,-20.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 19879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -47.5,-16.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 21289
components:
- type: Transform
@@ -90818,7 +90594,7 @@ entities:
pos: -56.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21301
components:
- type: Transform
@@ -90826,7 +90602,7 @@ entities:
pos: -57.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21302
components:
- type: Transform
@@ -90834,7 +90610,7 @@ entities:
pos: -58.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21304
components:
- type: Transform
@@ -90842,7 +90618,7 @@ entities:
pos: -58.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21305
components:
- type: Transform
@@ -90850,7 +90626,7 @@ entities:
pos: -59.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21306
components:
- type: Transform
@@ -90858,7 +90634,7 @@ entities:
pos: -60.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21307
components:
- type: Transform
@@ -90866,7 +90642,7 @@ entities:
pos: -61.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21308
components:
- type: Transform
@@ -90874,7 +90650,7 @@ entities:
pos: -62.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21309
components:
- type: Transform
@@ -90882,7 +90658,7 @@ entities:
pos: -63.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21310
components:
- type: Transform
@@ -90890,7 +90666,7 @@ entities:
pos: -64.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21311
components:
- type: Transform
@@ -90898,7 +90674,7 @@ entities:
pos: -65.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21312
components:
- type: Transform
@@ -90906,7 +90682,7 @@ entities:
pos: -66.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21313
components:
- type: Transform
@@ -90914,7 +90690,7 @@ entities:
pos: -67.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21314
components:
- type: Transform
@@ -90922,7 +90698,7 @@ entities:
pos: -68.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21315
components:
- type: Transform
@@ -90930,7 +90706,7 @@ entities:
pos: -69.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21316
components:
- type: Transform
@@ -90938,7 +90714,7 @@ entities:
pos: -70.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21317
components:
- type: Transform
@@ -90946,7 +90722,7 @@ entities:
pos: -71.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21319
components:
- type: Transform
@@ -90954,7 +90730,7 @@ entities:
pos: -73.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21320
components:
- type: Transform
@@ -90962,7 +90738,7 @@ entities:
pos: -74.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21321
components:
- type: Transform
@@ -90970,7 +90746,7 @@ entities:
pos: -75.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21322
components:
- type: Transform
@@ -90978,7 +90754,7 @@ entities:
pos: -76.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21323
components:
- type: Transform
@@ -90986,7 +90762,7 @@ entities:
pos: -77.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21324
components:
- type: Transform
@@ -90994,7 +90770,7 @@ entities:
pos: -78.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21329
components:
- type: Transform
@@ -91017,6 +90793,14 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 21410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 21412
components:
- type: Transform
@@ -91039,7 +90823,7 @@ entities:
pos: -7.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21659
components:
- type: Transform
@@ -91047,7 +90831,7 @@ entities:
pos: -23.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21660
components:
- type: Transform
@@ -91055,7 +90839,7 @@ entities:
pos: -24.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21661
components:
- type: Transform
@@ -91063,7 +90847,7 @@ entities:
pos: -25.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21662
components:
- type: Transform
@@ -91071,7 +90855,7 @@ entities:
pos: -26.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21663
components:
- type: Transform
@@ -91079,7 +90863,7 @@ entities:
pos: -27.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21664
components:
- type: Transform
@@ -91087,7 +90871,7 @@ entities:
pos: -28.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 22790
components:
- type: Transform
@@ -91095,7 +90879,7 @@ entities:
pos: -79.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22791
components:
- type: Transform
@@ -91103,7 +90887,7 @@ entities:
pos: -80.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22792
components:
- type: Transform
@@ -91111,7 +90895,7 @@ entities:
pos: -81.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22793
components:
- type: Transform
@@ -91119,7 +90903,7 @@ entities:
pos: -82.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22794
components:
- type: Transform
@@ -91127,7 +90911,7 @@ entities:
pos: -83.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22795
components:
- type: Transform
@@ -91135,7 +90919,7 @@ entities:
pos: -84.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22796
components:
- type: Transform
@@ -91143,7 +90927,7 @@ entities:
pos: -85.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22797
components:
- type: Transform
@@ -91151,7 +90935,7 @@ entities:
pos: -86.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22798
components:
- type: Transform
@@ -91159,7 +90943,7 @@ entities:
pos: -87.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22799
components:
- type: Transform
@@ -91167,7 +90951,7 @@ entities:
pos: -88.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22800
components:
- type: Transform
@@ -91175,7 +90959,7 @@ entities:
pos: -89.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22801
components:
- type: Transform
@@ -91183,7 +90967,7 @@ entities:
pos: -90.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22802
components:
- type: Transform
@@ -91191,7 +90975,7 @@ entities:
pos: -91.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22803
components:
- type: Transform
@@ -91199,7 +90983,7 @@ entities:
pos: -92.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22804
components:
- type: Transform
@@ -91207,7 +90991,7 @@ entities:
pos: -93.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22805
components:
- type: Transform
@@ -91215,7 +90999,7 @@ entities:
pos: -94.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22806
components:
- type: Transform
@@ -91223,7 +91007,7 @@ entities:
pos: -95.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22807
components:
- type: Transform
@@ -91231,7 +91015,7 @@ entities:
pos: -96.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22808
components:
- type: Transform
@@ -91239,7 +91023,7 @@ entities:
pos: -97.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22809
components:
- type: Transform
@@ -91247,7 +91031,7 @@ entities:
pos: -98.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22811
components:
- type: Transform
@@ -91255,7 +91039,7 @@ entities:
pos: -100.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22812
components:
- type: Transform
@@ -91263,7 +91047,7 @@ entities:
pos: -101.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22813
components:
- type: Transform
@@ -91271,7 +91055,7 @@ entities:
pos: -102.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22815
components:
- type: Transform
@@ -91279,7 +91063,7 @@ entities:
pos: -104.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22816
components:
- type: Transform
@@ -91287,7 +91071,7 @@ entities:
pos: -105.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22817
components:
- type: Transform
@@ -91295,7 +91079,7 @@ entities:
pos: -106.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22818
components:
- type: Transform
@@ -91303,7 +91087,7 @@ entities:
pos: -107.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22819
components:
- type: Transform
@@ -91311,7 +91095,7 @@ entities:
pos: -108.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22820
components:
- type: Transform
@@ -91319,7 +91103,7 @@ entities:
pos: -109.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22821
components:
- type: Transform
@@ -91327,7 +91111,7 @@ entities:
pos: -110.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22824
components:
- type: Transform
@@ -91335,7 +91119,7 @@ entities:
pos: -113.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22825
components:
- type: Transform
@@ -91343,7 +91127,7 @@ entities:
pos: -114.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22826
components:
- type: Transform
@@ -91351,7 +91135,7 @@ entities:
pos: -115.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22827
components:
- type: Transform
@@ -91359,7 +91143,7 @@ entities:
pos: -116.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22830
components:
- type: Transform
@@ -91367,7 +91151,7 @@ entities:
pos: -111.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22831
components:
- type: Transform
@@ -91375,7 +91159,7 @@ entities:
pos: -111.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22832
components:
- type: Transform
@@ -91383,7 +91167,7 @@ entities:
pos: -111.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22833
components:
- type: Transform
@@ -91391,7 +91175,7 @@ entities:
pos: -111.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22834
components:
- type: Transform
@@ -91399,7 +91183,7 @@ entities:
pos: -111.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22835
components:
- type: Transform
@@ -91407,7 +91191,7 @@ entities:
pos: -111.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22836
components:
- type: Transform
@@ -91415,7 +91199,7 @@ entities:
pos: -111.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22837
components:
- type: Transform
@@ -91423,7 +91207,7 @@ entities:
pos: -111.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22838
components:
- type: Transform
@@ -91431,7 +91215,7 @@ entities:
pos: -111.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22840
components:
- type: Transform
@@ -91439,7 +91223,7 @@ entities:
pos: -111.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22841
components:
- type: Transform
@@ -91447,7 +91231,7 @@ entities:
pos: -111.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22842
components:
- type: Transform
@@ -91455,7 +91239,7 @@ entities:
pos: -111.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22843
components:
- type: Transform
@@ -91463,7 +91247,7 @@ entities:
pos: -111.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22844
components:
- type: Transform
@@ -91471,7 +91255,7 @@ entities:
pos: -111.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22845
components:
- type: Transform
@@ -91479,7 +91263,7 @@ entities:
pos: -111.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22848
components:
- type: Transform
@@ -91487,7 +91271,7 @@ entities:
pos: -99.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22849
components:
- type: Transform
@@ -91495,7 +91279,7 @@ entities:
pos: -99.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22850
components:
- type: Transform
@@ -91503,7 +91287,7 @@ entities:
pos: -99.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22851
components:
- type: Transform
@@ -91511,7 +91295,7 @@ entities:
pos: -100.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22852
components:
- type: Transform
@@ -91519,91 +91303,91 @@ entities:
pos: -101.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22853
components:
- type: Transform
pos: -102.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22854
components:
- type: Transform
pos: -102.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22855
components:
- type: Transform
pos: -102.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22856
components:
- type: Transform
pos: -102.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22857
components:
- type: Transform
pos: -102.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22858
components:
- type: Transform
pos: -102.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22859
components:
- type: Transform
pos: -102.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22860
components:
- type: Transform
pos: -102.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22861
components:
- type: Transform
pos: -102.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22862
components:
- type: Transform
pos: -102.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22863
components:
- type: Transform
pos: -102.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22864
components:
- type: Transform
pos: -102.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22865
components:
- type: Transform
@@ -91611,7 +91395,7 @@ entities:
pos: -103.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22866
components:
- type: Transform
@@ -91619,7 +91403,7 @@ entities:
pos: -104.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22867
components:
- type: Transform
@@ -91627,7 +91411,7 @@ entities:
pos: -105.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22868
components:
- type: Transform
@@ -91635,7 +91419,7 @@ entities:
pos: -106.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22869
components:
- type: Transform
@@ -91643,7 +91427,7 @@ entities:
pos: -107.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22870
components:
- type: Transform
@@ -91651,7 +91435,7 @@ entities:
pos: -108.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22871
components:
- type: Transform
@@ -91659,7 +91443,7 @@ entities:
pos: -109.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22900
components:
- type: Transform
@@ -91667,35 +91451,35 @@ entities:
pos: -112.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22901
components:
- type: Transform
pos: -113.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22902
components:
- type: Transform
pos: -113.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22903
components:
- type: Transform
pos: -113.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22904
components:
- type: Transform
pos: -113.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22905
components:
- type: Transform
@@ -91703,7 +91487,7 @@ entities:
pos: -112.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22919
components:
- type: Transform
@@ -92773,22 +92557,22 @@ entities:
rot: -1.5707963267948966 rad
pos: -54.5,51.5
parent: 60
- - uid: 23924
+ - uid: 23647
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,-7.5
+ pos: -30.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23925
+ color: '#0335FCFF'
+ - uid: 23652
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -30.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 23977
components:
- type: Transform
@@ -92796,7 +92580,7 @@ entities:
pos: 15.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24128
components:
- type: Transform
@@ -92804,7 +92588,7 @@ entities:
pos: -6.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24130
components:
- type: Transform
@@ -92812,7 +92596,7 @@ entities:
pos: -7.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24131
components:
- type: Transform
@@ -92820,7 +92604,7 @@ entities:
pos: -8.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24132
components:
- type: Transform
@@ -92828,7 +92612,7 @@ entities:
pos: -7.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24135
components:
- type: Transform
@@ -92836,7 +92620,7 @@ entities:
pos: -6.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24357
components:
- type: Transform
@@ -92844,7 +92628,7 @@ entities:
pos: 46.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24750
components:
- type: Transform
@@ -92852,7 +92636,7 @@ entities:
pos: 54.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24827
components:
- type: Transform
@@ -92860,7 +92644,7 @@ entities:
pos: 53.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24828
components:
- type: Transform
@@ -92868,7 +92652,7 @@ entities:
pos: 52.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24829
components:
- type: Transform
@@ -92876,7 +92660,7 @@ entities:
pos: 51.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24830
components:
- type: Transform
@@ -92884,7 +92668,7 @@ entities:
pos: 50.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24831
components:
- type: Transform
@@ -92892,7 +92676,7 @@ entities:
pos: 49.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24832
components:
- type: Transform
@@ -92900,7 +92684,7 @@ entities:
pos: 48.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24833
components:
- type: Transform
@@ -92908,7 +92692,7 @@ entities:
pos: 47.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24835
components:
- type: Transform
@@ -92916,7 +92700,7 @@ entities:
pos: 44.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24836
components:
- type: Transform
@@ -92924,7 +92708,7 @@ entities:
pos: 43.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24837
components:
- type: Transform
@@ -92932,7 +92716,7 @@ entities:
pos: 42.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24838
components:
- type: Transform
@@ -92940,7 +92724,7 @@ entities:
pos: 46.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24839
components:
- type: Transform
@@ -92948,7 +92732,7 @@ entities:
pos: 42.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24840
components:
- type: Transform
@@ -92956,7 +92740,7 @@ entities:
pos: 44.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24841
components:
- type: Transform
@@ -92964,7 +92748,7 @@ entities:
pos: 45.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24842
components:
- type: Transform
@@ -92972,7 +92756,7 @@ entities:
pos: 46.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24843
components:
- type: Transform
@@ -92980,7 +92764,7 @@ entities:
pos: 47.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24844
components:
- type: Transform
@@ -92988,7 +92772,7 @@ entities:
pos: 48.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24846
components:
- type: Transform
@@ -92996,7 +92780,7 @@ entities:
pos: 49.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24847
components:
- type: Transform
@@ -93004,7 +92788,7 @@ entities:
pos: 50.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24848
components:
- type: Transform
@@ -93012,7 +92796,7 @@ entities:
pos: 51.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24849
components:
- type: Transform
@@ -93020,7 +92804,7 @@ entities:
pos: 52.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24850
components:
- type: Transform
@@ -93028,7 +92812,7 @@ entities:
pos: 55.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24851
components:
- type: Transform
@@ -93036,7 +92820,7 @@ entities:
pos: 55.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24852
components:
- type: Transform
@@ -93044,7 +92828,7 @@ entities:
pos: 55.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24853
components:
- type: Transform
@@ -93052,7 +92836,7 @@ entities:
pos: 55.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24854
components:
- type: Transform
@@ -93060,7 +92844,7 @@ entities:
pos: 55.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24855
components:
- type: Transform
@@ -93068,7 +92852,7 @@ entities:
pos: 55.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24856
components:
- type: Transform
@@ -93076,7 +92860,7 @@ entities:
pos: 55.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24857
components:
- type: Transform
@@ -93084,7 +92868,7 @@ entities:
pos: 55.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24858
components:
- type: Transform
@@ -93092,7 +92876,7 @@ entities:
pos: 55.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24859
components:
- type: Transform
@@ -93100,7 +92884,7 @@ entities:
pos: 55.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24860
components:
- type: Transform
@@ -93108,7 +92892,7 @@ entities:
pos: 55.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24861
components:
- type: Transform
@@ -93116,7 +92900,7 @@ entities:
pos: 55.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24862
components:
- type: Transform
@@ -93124,7 +92908,7 @@ entities:
pos: 55.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24863
components:
- type: Transform
@@ -93132,7 +92916,7 @@ entities:
pos: 55.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24864
components:
- type: Transform
@@ -93140,7 +92924,7 @@ entities:
pos: 55.5,40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24865
components:
- type: Transform
@@ -93148,7 +92932,7 @@ entities:
pos: 55.5,41.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24866
components:
- type: Transform
@@ -93156,7 +92940,7 @@ entities:
pos: 55.5,38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24867
components:
- type: Transform
@@ -93164,7 +92948,7 @@ entities:
pos: 55.5,43.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24868
components:
- type: Transform
@@ -93172,7 +92956,7 @@ entities:
pos: 55.5,44.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24869
components:
- type: Transform
@@ -93180,7 +92964,7 @@ entities:
pos: 55.5,45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24870
components:
- type: Transform
@@ -93188,7 +92972,7 @@ entities:
pos: 55.5,42.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24872
components:
- type: Transform
@@ -93196,7 +92980,7 @@ entities:
pos: 53.5,44.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24873
components:
- type: Transform
@@ -93204,7 +92988,7 @@ entities:
pos: 53.5,43.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24874
components:
- type: Transform
@@ -93212,7 +92996,7 @@ entities:
pos: 53.5,42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24875
components:
- type: Transform
@@ -93220,7 +93004,7 @@ entities:
pos: 53.5,41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24876
components:
- type: Transform
@@ -93228,7 +93012,7 @@ entities:
pos: 53.5,39.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24877
components:
- type: Transform
@@ -93236,7 +93020,7 @@ entities:
pos: 53.5,38.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24879
components:
- type: Transform
@@ -93244,7 +93028,7 @@ entities:
pos: 53.5,40.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24880
components:
- type: Transform
@@ -93252,7 +93036,7 @@ entities:
pos: 53.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24881
components:
- type: Transform
@@ -93260,7 +93044,7 @@ entities:
pos: 53.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24882
components:
- type: Transform
@@ -93268,7 +93052,7 @@ entities:
pos: 53.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24883
components:
- type: Transform
@@ -93276,7 +93060,7 @@ entities:
pos: 53.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24884
components:
- type: Transform
@@ -93284,7 +93068,7 @@ entities:
pos: 53.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24885
components:
- type: Transform
@@ -93292,7 +93076,7 @@ entities:
pos: 53.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24886
components:
- type: Transform
@@ -93300,7 +93084,7 @@ entities:
pos: 53.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24887
components:
- type: Transform
@@ -93308,7 +93092,7 @@ entities:
pos: 53.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24888
components:
- type: Transform
@@ -93316,7 +93100,7 @@ entities:
pos: 53.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24889
components:
- type: Transform
@@ -93324,7 +93108,7 @@ entities:
pos: 53.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24890
components:
- type: Transform
@@ -93332,7 +93116,7 @@ entities:
pos: 53.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24892
components:
- type: Transform
@@ -93340,7 +93124,7 @@ entities:
pos: 33.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24893
components:
- type: Transform
@@ -93348,7 +93132,7 @@ entities:
pos: 33.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24894
components:
- type: Transform
@@ -93356,7 +93140,7 @@ entities:
pos: 33.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24895
components:
- type: Transform
@@ -93364,7 +93148,7 @@ entities:
pos: 33.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24896
components:
- type: Transform
@@ -93372,7 +93156,7 @@ entities:
pos: 33.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24897
components:
- type: Transform
@@ -93380,7 +93164,7 @@ entities:
pos: 33.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24898
components:
- type: Transform
@@ -93388,7 +93172,7 @@ entities:
pos: 33.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24899
components:
- type: Transform
@@ -93396,7 +93180,7 @@ entities:
pos: 33.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24900
components:
- type: Transform
@@ -93404,7 +93188,7 @@ entities:
pos: 33.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24901
components:
- type: Transform
@@ -93412,7 +93196,7 @@ entities:
pos: 33.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24903
components:
- type: Transform
@@ -93420,7 +93204,7 @@ entities:
pos: 33.5,38.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24904
components:
- type: Transform
@@ -93428,7 +93212,7 @@ entities:
pos: 33.5,39.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24905
components:
- type: Transform
@@ -93436,7 +93220,7 @@ entities:
pos: 33.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24906
components:
- type: Transform
@@ -93444,7 +93228,7 @@ entities:
pos: 33.5,40.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24907
components:
- type: Transform
@@ -93452,7 +93236,7 @@ entities:
pos: 33.5,41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24908
components:
- type: Transform
@@ -93460,7 +93244,7 @@ entities:
pos: 33.5,42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24909
components:
- type: Transform
@@ -93468,7 +93252,7 @@ entities:
pos: 33.5,43.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24910
components:
- type: Transform
@@ -93476,7 +93260,7 @@ entities:
pos: 33.5,44.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24911
components:
- type: Transform
@@ -93484,7 +93268,7 @@ entities:
pos: 35.5,44.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24912
components:
- type: Transform
@@ -93492,7 +93276,7 @@ entities:
pos: 35.5,43.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24913
components:
- type: Transform
@@ -93500,7 +93284,7 @@ entities:
pos: 35.5,42.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24914
components:
- type: Transform
@@ -93508,7 +93292,7 @@ entities:
pos: 35.5,41.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24915
components:
- type: Transform
@@ -93516,7 +93300,7 @@ entities:
pos: 35.5,40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24917
components:
- type: Transform
@@ -93524,7 +93308,7 @@ entities:
pos: 35.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24918
components:
- type: Transform
@@ -93532,7 +93316,7 @@ entities:
pos: 35.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24919
components:
- type: Transform
@@ -93540,7 +93324,7 @@ entities:
pos: 35.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24920
components:
- type: Transform
@@ -93548,7 +93332,7 @@ entities:
pos: 35.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24921
components:
- type: Transform
@@ -93556,7 +93340,7 @@ entities:
pos: 35.5,38.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24922
components:
- type: Transform
@@ -93564,7 +93348,7 @@ entities:
pos: 35.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24923
components:
- type: Transform
@@ -93572,7 +93356,7 @@ entities:
pos: 35.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24924
components:
- type: Transform
@@ -93580,7 +93364,7 @@ entities:
pos: 35.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24925
components:
- type: Transform
@@ -93588,7 +93372,7 @@ entities:
pos: 35.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24926
components:
- type: Transform
@@ -93596,7 +93380,7 @@ entities:
pos: 35.5,33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24927
components:
- type: Transform
@@ -93604,7 +93388,7 @@ entities:
pos: 35.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24928
components:
- type: Transform
@@ -93612,7 +93396,7 @@ entities:
pos: 35.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24929
components:
- type: Transform
@@ -93620,7 +93404,7 @@ entities:
pos: 35.5,26.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24930
components:
- type: Transform
@@ -93628,7 +93412,7 @@ entities:
pos: 35.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24931
components:
- type: Transform
@@ -93636,7 +93420,7 @@ entities:
pos: 35.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25169
components:
- type: Transform
@@ -93644,7 +93428,7 @@ entities:
pos: 35.5,45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25170
components:
- type: Transform
@@ -93652,14 +93436,14 @@ entities:
pos: 35.5,46.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25171
components:
- type: Transform
pos: 55.5,46.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25187
components:
- type: Transform
@@ -93667,7 +93451,7 @@ entities:
pos: 53.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25188
components:
- type: Transform
@@ -93675,7 +93459,7 @@ entities:
pos: 53.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- proto: GasPipeTJunction
entities:
- uid: 46
@@ -93685,7 +93469,7 @@ entities:
pos: -33.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 220
components:
- type: Transform
@@ -93693,7 +93477,7 @@ entities:
pos: 23.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 306
components:
- type: Transform
@@ -93701,7 +93485,7 @@ entities:
pos: 21.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 409
components:
- type: Transform
@@ -93709,7 +93493,7 @@ entities:
pos: 1.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 417
components:
- type: Transform
@@ -93717,7 +93501,7 @@ entities:
pos: -0.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 429
components:
- type: Transform
@@ -93725,7 +93509,7 @@ entities:
pos: 45.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 474
components:
- type: Transform
@@ -93733,7 +93517,7 @@ entities:
pos: 1.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 479
components:
- type: Transform
@@ -93741,7 +93525,7 @@ entities:
pos: -0.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 499
components:
- type: Transform
@@ -93749,51 +93533,51 @@ entities:
pos: -14.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 508
components:
- type: Transform
pos: 3.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 511
components:
- type: Transform
pos: -3.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 617
+ color: '#0335FCFF'
+ - uid: 795
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 795
+ color: '#FF1212FF'
+ - uid: 840
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -38.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 877
components:
- type: Transform
pos: -4.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 878
components:
- type: Transform
pos: -8.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 887
components:
- type: Transform
@@ -93801,14 +93585,14 @@ entities:
pos: -10.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 896
components:
- type: Transform
pos: -9.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 953
components:
- type: Transform
@@ -93816,7 +93600,7 @@ entities:
pos: -36.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 960
components:
- type: Transform
@@ -93824,21 +93608,21 @@ entities:
pos: -9.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1036
components:
- type: Transform
pos: 11.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1043
components:
- type: Transform
pos: 7.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1045
components:
- type: Transform
@@ -93846,7 +93630,7 @@ entities:
pos: 15.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1047
components:
- type: Transform
@@ -93854,14 +93638,14 @@ entities:
pos: 12.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1051
components:
- type: Transform
pos: 16.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1052
components:
- type: Transform
@@ -93869,7 +93653,7 @@ entities:
pos: 17.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1059
components:
- type: Transform
@@ -93877,7 +93661,7 @@ entities:
pos: 17.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1061
components:
- type: Transform
@@ -93885,7 +93669,7 @@ entities:
pos: 15.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1066
components:
- type: Transform
@@ -93893,7 +93677,7 @@ entities:
pos: 9.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1077
components:
- type: Transform
@@ -93901,7 +93685,7 @@ entities:
pos: 17.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1079
components:
- type: Transform
@@ -93909,7 +93693,7 @@ entities:
pos: 15.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1096
components:
- type: Transform
@@ -93917,7 +93701,7 @@ entities:
pos: 15.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1114
components:
- type: Transform
@@ -93925,7 +93709,7 @@ entities:
pos: -14.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1115
components:
- type: Transform
@@ -93933,22 +93717,14 @@ entities:
pos: -16.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1116
components:
- type: Transform
pos: -24.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1128
components:
- type: Transform
@@ -93956,7 +93732,7 @@ entities:
pos: -16.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1148
components:
- type: Transform
@@ -93964,7 +93740,7 @@ entities:
pos: -14.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1150
components:
- type: Transform
@@ -93972,59 +93748,28 @@ entities:
pos: -16.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1174
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1217
- components:
- - type: Transform
- pos: -14.5,9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1225
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -9.5,7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 1226
components:
- type: Transform
pos: -10.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1229
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1259
components:
- type: Transform
pos: 13.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1262
components:
- type: Transform
pos: 10.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1265
components:
- type: Transform
@@ -94032,14 +93777,14 @@ entities:
pos: 12.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1269
components:
- type: Transform
pos: 9.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1273
components:
- type: Transform
@@ -94047,7 +93792,7 @@ entities:
pos: 15.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1275
components:
- type: Transform
@@ -94055,7 +93800,7 @@ entities:
pos: 15.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1276
components:
- type: Transform
@@ -94063,7 +93808,7 @@ entities:
pos: 17.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1410
components:
- type: Transform
@@ -94071,7 +93816,7 @@ entities:
pos: 3.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1417
components:
- type: Transform
@@ -94079,7 +93824,7 @@ entities:
pos: -0.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1419
components:
- type: Transform
@@ -94087,7 +93832,7 @@ entities:
pos: 1.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1498
components:
- type: Transform
@@ -94095,67 +93840,52 @@ entities:
pos: -19.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1510
- components:
- - type: Transform
- pos: -20.5,-22.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1529
+ color: '#FF1212FF'
+ - uid: 1579
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -22.5,-5.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-18.5
+ pos: -18.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1608
components:
- type: Transform
pos: -29.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1610
components:
- type: Transform
pos: -23.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1658
+ color: '#0335FCFF'
+ - uid: 1665
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -31.5,-13.5
+ pos: -21.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1668
+ color: '#FF1212FF'
+ - uid: 1708
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-16.5
+ rot: -1.5707963267948966 rad
+ pos: -34.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 1714
components:
- type: Transform
pos: -28.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1715
components:
- type: Transform
@@ -94163,130 +93893,93 @@ entities:
pos: -30.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1756
- components:
- - type: Transform
- pos: -22.5,9.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1768
- components:
- - type: Transform
- pos: -25.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1775
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1781
+ color: '#FF1212FF'
+ - uid: 1719
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -38.5,-19.5
+ pos: -22.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1813
+ color: '#0335FCFF'
+ - uid: 1727
components:
- type: Transform
- pos: -26.5,-2.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1822
+ color: '#0335FCFF'
+ - uid: 1756
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-10.5
+ pos: -22.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1845
+ color: '#FF1212FF'
+ - uid: 1775
components:
- type: Transform
- pos: -27.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1848
+ color: '#0335FCFF'
+ - uid: 1781
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1927
+ color: '#FF1212FF'
+ - uid: 1785
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -30.5,-12.5
+ pos: -28.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1928
+ color: '#0335FCFF'
+ - uid: 1814
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1933
+ color: '#FF1212FF'
+ - uid: 1820
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-5.5
+ pos: -15.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1947
+ color: '#FF1212FF'
+ - uid: 1830
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -22.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1948
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-12.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1960
- components:
- - type: Transform
- pos: -26.5,-14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1972
+ color: '#0335FCFF'
+ - uid: 1834
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1982
+ color: '#0335FCFF'
+ - uid: 1848
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1994
components:
- type: Transform
@@ -94294,15 +93987,15 @@ entities:
pos: -36.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2090
+ color: '#0335FCFF'
+ - uid: 2105
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2127
components:
- type: Transform
@@ -94310,7 +94003,15 @@ entities:
pos: -26.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 2182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-15.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 2276
components:
- type: Transform
@@ -94318,7 +94019,7 @@ entities:
pos: 32.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2358
components:
- type: Transform
@@ -94326,7 +94027,7 @@ entities:
pos: 32.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2359
components:
- type: Transform
@@ -94334,21 +94035,21 @@ entities:
pos: 30.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2377
components:
- type: Transform
pos: 24.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2380
components:
- type: Transform
pos: 25.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2473
components:
- type: Transform
@@ -94356,21 +94057,21 @@ entities:
pos: 23.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2481
components:
- type: Transform
pos: 30.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2482
components:
- type: Transform
pos: 32.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2486
components:
- type: Transform
@@ -94378,7 +94079,7 @@ entities:
pos: 34.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2498
components:
- type: Transform
@@ -94386,7 +94087,7 @@ entities:
pos: 29.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2499
components:
- type: Transform
@@ -94394,7 +94095,7 @@ entities:
pos: 33.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2537
components:
- type: Transform
@@ -94402,14 +94103,22 @@ entities:
pos: 32.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 2578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 2693
components:
- type: Transform
pos: 40.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2694
components:
- type: Transform
@@ -94417,7 +94126,7 @@ entities:
pos: 40.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2799
components:
- type: Transform
@@ -94425,7 +94134,7 @@ entities:
pos: 19.5,-33.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2802
components:
- type: Transform
@@ -94433,7 +94142,7 @@ entities:
pos: 17.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2812
components:
- type: Transform
@@ -94441,7 +94150,7 @@ entities:
pos: 17.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2869
components:
- type: Transform
@@ -94449,7 +94158,7 @@ entities:
pos: 44.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2881
components:
- type: Transform
@@ -94457,7 +94166,7 @@ entities:
pos: 35.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2902
components:
- type: Transform
@@ -94465,7 +94174,7 @@ entities:
pos: 44.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2981
components:
- type: Transform
@@ -94481,7 +94190,7 @@ entities:
pos: 45.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2989
components:
- type: Transform
@@ -94489,7 +94198,7 @@ entities:
pos: 44.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3001
components:
- type: Transform
@@ -94505,7 +94214,7 @@ entities:
pos: 44.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3121
components:
- type: Transform
@@ -94520,7 +94229,7 @@ entities:
pos: 47.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3189
components:
- type: Transform
@@ -94528,15 +94237,7 @@ entities:
pos: 33.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-2.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3205
components:
- type: Transform
@@ -94544,7 +94245,7 @@ entities:
pos: 45.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3209
components:
- type: Transform
@@ -94567,15 +94268,7 @@ entities:
pos: 45.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,-4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0335FCFF'
- uid: 3367
components:
- type: Transform
@@ -94583,7 +94276,7 @@ entities:
pos: -3.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3573
components:
- type: Transform
@@ -94591,7 +94284,7 @@ entities:
pos: 45.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3915
components:
- type: Transform
@@ -94599,7 +94292,7 @@ entities:
pos: 1.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3918
components:
- type: Transform
@@ -94607,7 +94300,7 @@ entities:
pos: -0.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3920
components:
- type: Transform
@@ -94615,7 +94308,7 @@ entities:
pos: -0.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3924
components:
- type: Transform
@@ -94623,7 +94316,7 @@ entities:
pos: 1.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3929
components:
- type: Transform
@@ -94631,7 +94324,7 @@ entities:
pos: 1.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3930
components:
- type: Transform
@@ -94639,7 +94332,7 @@ entities:
pos: 1.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3950
components:
- type: Transform
@@ -94647,7 +94340,7 @@ entities:
pos: -8.5,-42.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3984
components:
- type: Transform
@@ -94655,7 +94348,7 @@ entities:
pos: -0.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3998
components:
- type: Transform
@@ -94663,7 +94356,7 @@ entities:
pos: -54.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4110
components:
- type: Transform
@@ -94671,7 +94364,7 @@ entities:
pos: 34.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4117
components:
- type: Transform
@@ -94679,7 +94372,7 @@ entities:
pos: 45.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4123
components:
- type: Transform
@@ -94687,7 +94380,7 @@ entities:
pos: 33.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4146
components:
- type: Transform
@@ -94695,7 +94388,7 @@ entities:
pos: 33.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4154
components:
- type: Transform
@@ -94703,14 +94396,22 @@ entities:
pos: 34.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 4220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 4336
components:
- type: Transform
pos: 39.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4354
components:
- type: Transform
@@ -94718,7 +94419,7 @@ entities:
pos: 39.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4483
components:
- type: Transform
@@ -94726,14 +94427,14 @@ entities:
pos: 34.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4541
components:
- type: Transform
pos: -4.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4630
components:
- type: Transform
@@ -94741,7 +94442,7 @@ entities:
pos: -0.5,-61.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4834
components:
- type: Transform
@@ -94749,7 +94450,7 @@ entities:
pos: -0.5,-47.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4835
components:
- type: Transform
@@ -94757,7 +94458,7 @@ entities:
pos: 1.5,-48.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4915
components:
- type: Transform
@@ -94765,7 +94466,7 @@ entities:
pos: 1.5,-72.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4965
components:
- type: Transform
@@ -94773,7 +94474,7 @@ entities:
pos: 1.5,-61.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4990
components:
- type: Transform
@@ -94781,15 +94482,15 @@ entities:
pos: -0.5,-72.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5473
+ color: '#FF1212FF'
+ - uid: 5472
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -15.5,7.5
+ pos: -27.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5476
components:
- type: Transform
@@ -94797,7 +94498,7 @@ entities:
pos: -38.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5532
components:
- type: Transform
@@ -94805,7 +94506,15 @@ entities:
pos: 17.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 5562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,0.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 5583
components:
- type: Transform
@@ -94819,7 +94528,7 @@ entities:
pos: -0.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5730
components:
- type: Transform
@@ -94827,7 +94536,7 @@ entities:
pos: 1.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5733
components:
- type: Transform
@@ -94835,7 +94544,7 @@ entities:
pos: -0.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5736
components:
- type: Transform
@@ -94843,7 +94552,7 @@ entities:
pos: 1.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5746
components:
- type: Transform
@@ -94851,14 +94560,7 @@ entities:
pos: -9.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5758
- components:
- - type: Transform
- pos: -14.5,7.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5765
components:
- type: Transform
@@ -94866,14 +94568,14 @@ entities:
pos: 16.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5817
components:
- type: Transform
pos: 18.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5829
components:
- type: Transform
@@ -94881,7 +94583,7 @@ entities:
pos: 34.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5847
components:
- type: Transform
@@ -94889,7 +94591,7 @@ entities:
pos: 1.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5865
components:
- type: Transform
@@ -94897,21 +94599,21 @@ entities:
pos: -36.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5890
components:
- type: Transform
pos: 12.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5891
components:
- type: Transform
pos: -36.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5892
components:
- type: Transform
@@ -94919,7 +94621,7 @@ entities:
pos: -28.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5921
components:
- type: Transform
@@ -94927,7 +94629,7 @@ entities:
pos: 30.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5922
components:
- type: Transform
@@ -94935,29 +94637,29 @@ entities:
pos: 32.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5942
components:
- type: Transform
pos: -37.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5947
+ color: '#0335FCFF'
+ - uid: 5953
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,4.5
+ pos: -37.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5953
+ color: '#0335FCFF'
+ - uid: 5971
components:
- type: Transform
- pos: -37.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -30.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6005
components:
- type: Transform
@@ -94965,7 +94667,7 @@ entities:
pos: -41.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6008
components:
- type: Transform
@@ -94973,7 +94675,7 @@ entities:
pos: -38.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6012
components:
- type: Transform
@@ -94981,14 +94683,14 @@ entities:
pos: -36.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6020
components:
- type: Transform
pos: -49.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6024
components:
- type: Transform
@@ -94996,7 +94698,7 @@ entities:
pos: -44.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6026
components:
- type: Transform
@@ -95004,14 +94706,14 @@ entities:
pos: -42.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6037
components:
- type: Transform
pos: -42.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6109
components:
- type: Transform
@@ -95019,7 +94721,7 @@ entities:
pos: -49.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6120
components:
- type: Transform
@@ -95027,14 +94729,14 @@ entities:
pos: -49.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6214
components:
- type: Transform
pos: 0.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6278
components:
- type: Transform
@@ -95042,7 +94744,7 @@ entities:
pos: 15.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6280
components:
- type: Transform
@@ -95050,7 +94752,7 @@ entities:
pos: 15.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6282
components:
- type: Transform
@@ -95058,42 +94760,43 @@ entities:
pos: 15.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6365
+ color: '#0335FCFF'
+ - uid: 6333
components:
- type: Transform
- pos: -31.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: -18.5,-24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#FF1212FF'
- uid: 6380
components:
- type: Transform
pos: -41.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6426
components:
- type: Transform
pos: 0.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6660
components:
- type: Transform
pos: -42.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6662
components:
- type: Transform
pos: -42.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6810
components:
- type: Transform
@@ -95101,15 +94804,31 @@ entities:
pos: 17.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6825
+ color: '#FF1212FF'
+ - uid: 7285
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-18.5
+ rot: 1.5707963267948966 rad
+ pos: -36.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 7464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -38.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 7603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 7682
components:
- type: Transform
@@ -95117,7 +94836,7 @@ entities:
pos: -38.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7683
components:
- type: Transform
@@ -95125,7 +94844,23 @@ entities:
pos: -38.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 7902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-3.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 8030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 8079
components:
- type: Transform
@@ -95148,109 +94883,108 @@ entities:
pos: -36.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8224
components:
- type: Transform
pos: -31.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8226
+ color: '#FF1212FF'
+ - uid: 8228
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-20.5
+ pos: -21.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8227
+ color: '#FF1212FF'
+ - uid: 8241
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -36.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8233
+ color: '#0335FCFF'
+ - uid: 8245
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-8.5
+ pos: -24.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8241
+ color: '#FF1212FF'
+ - uid: 8248
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8537
+ color: '#0335FCFF'
+ - uid: 8260
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,19.5
+ rot: 3.141592653589793 rad
+ pos: -37.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8548
+ color: '#0335FCFF'
+ - uid: 8353
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,24.5
+ rot: -1.5707963267948966 rad
+ pos: -44.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8580
+ color: '#0335FCFF'
+ - uid: 8537
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,-15.5
+ pos: 15.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8715
+ color: '#0335FCFF'
+ - uid: 8548
components:
- type: Transform
- pos: -27.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 15.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8722
+ color: '#0335FCFF'
+ - uid: 8570
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -45.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8735
+ color: '#0335FCFF'
+ - uid: 8884
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -30.5,-6.5
+ pos: 23.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8790
+ color: '#FF1212FF'
+ - uid: 8941
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-5.5
+ pos: -42.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8884
+ color: '#FF1212FF'
+ - uid: 9148
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9233
components:
- type: Transform
@@ -95258,7 +94992,7 @@ entities:
pos: 17.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9455
components:
- type: Transform
@@ -95266,21 +95000,21 @@ entities:
pos: -55.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9458
components:
- type: Transform
pos: -52.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9637
components:
- type: Transform
pos: -55.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11153
components:
- type: Transform
@@ -95288,14 +95022,14 @@ entities:
pos: 41.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 11722
components:
- type: Transform
pos: 42.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 11734
components:
- type: Transform
@@ -95303,7 +95037,7 @@ entities:
pos: 15.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 11761
components:
- type: Transform
@@ -95311,7 +95045,7 @@ entities:
pos: 17.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12196
components:
- type: Transform
@@ -95335,7 +95069,7 @@ entities:
pos: 39.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12626
components:
- type: Transform
@@ -95343,7 +95077,7 @@ entities:
pos: 38.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12744
components:
- type: Transform
@@ -95351,28 +95085,28 @@ entities:
pos: 49.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13113
components:
- type: Transform
pos: 48.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13245
components:
- type: Transform
pos: 23.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13443
components:
- type: Transform
pos: -21.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13447
components:
- type: Transform
@@ -95380,7 +95114,7 @@ entities:
pos: -21.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13448
components:
- type: Transform
@@ -95388,14 +95122,14 @@ entities:
pos: -21.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13504
components:
- type: Transform
pos: 47.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13534
components:
- type: Transform
@@ -95403,14 +95137,14 @@ entities:
pos: 43.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13546
components:
- type: Transform
pos: 21.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13612
components:
- type: Transform
@@ -95418,7 +95152,7 @@ entities:
pos: 31.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13673
components:
- type: Transform
@@ -95426,7 +95160,7 @@ entities:
pos: -8.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13808
components:
- type: Transform
@@ -95434,56 +95168,56 @@ entities:
pos: 38.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13914
components:
- type: Transform
pos: 49.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14015
components:
- type: Transform
pos: 32.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14021
components:
- type: Transform
pos: 38.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14022
components:
- type: Transform
pos: 17.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14029
components:
- type: Transform
pos: 36.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14044
components:
- type: Transform
pos: 22.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14047
components:
- type: Transform
pos: 39.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14237
components:
- type: Transform
@@ -95491,7 +95225,7 @@ entities:
pos: -16.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14251
components:
- type: Transform
@@ -95499,7 +95233,7 @@ entities:
pos: -16.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14259
components:
- type: Transform
@@ -95507,21 +95241,21 @@ entities:
pos: -16.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14270
components:
- type: Transform
pos: -26.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14274
components:
- type: Transform
pos: -36.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14280
components:
- type: Transform
@@ -95529,30 +95263,30 @@ entities:
pos: -22.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14293
+ color: '#FF1212FF'
+ - uid: 14295
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,17.5
+ pos: -9.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14295
+ color: '#0335FCFF'
+ - uid: 14308
components:
- type: Transform
- pos: -9.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14308
+ color: '#0335FCFF'
+ - uid: 14312
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -11.5,15.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14313
components:
- type: Transform
@@ -95560,7 +95294,7 @@ entities:
pos: -8.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14468
components:
- type: Transform
@@ -95568,7 +95302,7 @@ entities:
pos: -23.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14478
components:
- type: Transform
@@ -95576,7 +95310,7 @@ entities:
pos: -24.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14490
components:
- type: Transform
@@ -95584,7 +95318,7 @@ entities:
pos: -26.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14491
components:
- type: Transform
@@ -95592,7 +95326,7 @@ entities:
pos: -27.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14492
components:
- type: Transform
@@ -95600,7 +95334,7 @@ entities:
pos: -24.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14496
components:
- type: Transform
@@ -95608,7 +95342,7 @@ entities:
pos: -23.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14735
components:
- type: Transform
@@ -95616,7 +95350,7 @@ entities:
pos: -22.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14736
components:
- type: Transform
@@ -95629,7 +95363,7 @@ entities:
pos: -29.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14746
components:
- type: Transform
@@ -95637,7 +95371,7 @@ entities:
pos: -25.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14750
components:
- type: Transform
@@ -95645,7 +95379,7 @@ entities:
pos: -22.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14751
components:
- type: Transform
@@ -95653,7 +95387,7 @@ entities:
pos: -16.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14753
components:
- type: Transform
@@ -95661,7 +95395,7 @@ entities:
pos: -20.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14763
components:
- type: Transform
@@ -95669,28 +95403,28 @@ entities:
pos: -20.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14800
components:
- type: Transform
pos: -34.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14827
components:
- type: Transform
pos: -20.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14866
components:
- type: Transform
pos: -24.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14880
components:
- type: Transform
@@ -95720,7 +95454,7 @@ entities:
pos: -16.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15138
components:
- type: Transform
@@ -95736,7 +95470,7 @@ entities:
pos: -32.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15164
components:
- type: Transform
@@ -95870,14 +95604,14 @@ entities:
pos: -11.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15605
components:
- type: Transform
pos: -21.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15617
components:
- type: Transform
@@ -95885,7 +95619,7 @@ entities:
pos: -18.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15621
components:
- type: Transform
@@ -95893,7 +95627,7 @@ entities:
pos: -14.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15626
components:
- type: Transform
@@ -95901,7 +95635,7 @@ entities:
pos: -10.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15635
components:
- type: Transform
@@ -95909,7 +95643,7 @@ entities:
pos: -12.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15637
components:
- type: Transform
@@ -95917,7 +95651,7 @@ entities:
pos: -10.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15647
components:
- type: Transform
@@ -95925,7 +95659,7 @@ entities:
pos: -12.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15661
components:
- type: Transform
@@ -95933,7 +95667,7 @@ entities:
pos: -0.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15664
components:
- type: Transform
@@ -95941,14 +95675,14 @@ entities:
pos: -3.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16563
components:
- type: Transform
pos: -2.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16571
components:
- type: Transform
@@ -95956,7 +95690,7 @@ entities:
pos: -2.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16576
components:
- type: Transform
@@ -95964,14 +95698,14 @@ entities:
pos: -3.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16580
components:
- type: Transform
pos: -0.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16581
components:
- type: Transform
@@ -95979,14 +95713,14 @@ entities:
pos: -2.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16582
components:
- type: Transform
pos: -3.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16594
components:
- type: Transform
@@ -95994,7 +95728,7 @@ entities:
pos: -3.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16599
components:
- type: Transform
@@ -96002,7 +95736,7 @@ entities:
pos: -2.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16608
components:
- type: Transform
@@ -96010,7 +95744,7 @@ entities:
pos: -0.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16612
components:
- type: Transform
@@ -96018,7 +95752,7 @@ entities:
pos: -1.5,27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16632
components:
- type: Transform
@@ -96026,28 +95760,28 @@ entities:
pos: 1.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16645
components:
- type: Transform
pos: 1.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16647
components:
- type: Transform
pos: 5.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16648
components:
- type: Transform
pos: 4.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16654
components:
- type: Transform
@@ -96055,14 +95789,14 @@ entities:
pos: 10.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16656
components:
- type: Transform
pos: 2.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16659
components:
- type: Transform
@@ -96070,7 +95804,7 @@ entities:
pos: 3.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16664
components:
- type: Transform
@@ -96078,7 +95812,7 @@ entities:
pos: 10.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16971
components:
- type: Transform
@@ -96094,7 +95828,7 @@ entities:
pos: 37.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17525
components:
- type: Transform
@@ -96102,14 +95836,14 @@ entities:
pos: 21.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17529
components:
- type: Transform
pos: 41.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17538
components:
- type: Transform
@@ -96117,28 +95851,28 @@ entities:
pos: 39.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17570
components:
- type: Transform
pos: -38.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17580
components:
- type: Transform
pos: -43.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17583
components:
- type: Transform
pos: -30.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17585
components:
- type: Transform
@@ -96146,7 +95880,7 @@ entities:
pos: -31.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17629
components:
- type: Transform
@@ -96154,7 +95888,7 @@ entities:
pos: 22.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17841
components:
- type: Transform
@@ -96162,7 +95896,7 @@ entities:
pos: 41.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18067
components:
- type: Transform
@@ -96176,7 +95910,7 @@ entities:
pos: -0.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18223
components:
- type: Transform
@@ -96184,28 +95918,28 @@ entities:
pos: -0.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18242
components:
- type: Transform
pos: 1.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18243
components:
- type: Transform
pos: -0.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18255
components:
- type: Transform
pos: -3.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18256
components:
- type: Transform
@@ -96213,7 +95947,7 @@ entities:
pos: -3.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18424
components:
- type: Transform
@@ -96221,7 +95955,7 @@ entities:
pos: -0.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18440
components:
- type: Transform
@@ -96229,7 +95963,15 @@ entities:
pos: 44.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 18504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -43.5,-18.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 18531
components:
- type: Transform
@@ -96237,7 +95979,7 @@ entities:
pos: 2.5,0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18649
components:
- type: Transform
@@ -96245,7 +95987,7 @@ entities:
pos: 51.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18659
components:
- type: Transform
@@ -96253,21 +95995,21 @@ entities:
pos: 52.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18662
components:
- type: Transform
pos: 52.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18669
components:
- type: Transform
pos: 51.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18717
components:
- type: Transform
@@ -96275,7 +96017,7 @@ entities:
pos: 37.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21168
components:
- type: Transform
@@ -96283,7 +96025,7 @@ entities:
pos: -16.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21318
components:
- type: Transform
@@ -96291,7 +96033,15 @@ entities:
pos: -72.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 21408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 21416
components:
- type: Transform
@@ -96331,7 +96081,7 @@ entities:
pos: -29.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 22810
components:
- type: Transform
@@ -96339,28 +96089,28 @@ entities:
pos: -99.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22814
components:
- type: Transform
pos: -103.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22823
components:
- type: Transform
pos: -112.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22828
components:
- type: Transform
pos: -117.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22839
components:
- type: Transform
@@ -96368,7 +96118,7 @@ entities:
pos: -111.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22847
components:
- type: Transform
@@ -96376,7 +96126,7 @@ entities:
pos: -99.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22883
components:
- type: Transform
@@ -96384,7 +96134,7 @@ entities:
pos: -118.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22892
components:
- type: Transform
@@ -96392,7 +96142,7 @@ entities:
pos: -111.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22930
components:
- type: Transform
@@ -96485,7 +96235,7 @@ entities:
pos: -6.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24658
components:
- type: Transform
@@ -96493,7 +96243,7 @@ entities:
pos: -1.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24748
components:
- type: Transform
@@ -96501,7 +96251,7 @@ entities:
pos: 55.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24749
components:
- type: Transform
@@ -96509,14 +96259,14 @@ entities:
pos: 53.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24845
components:
- type: Transform
pos: 43.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24871
components:
- type: Transform
@@ -96524,7 +96274,7 @@ entities:
pos: 55.5,39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24916
components:
- type: Transform
@@ -96532,7 +96282,7 @@ entities:
pos: 35.5,39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25168
components:
- type: Transform
@@ -96540,7 +96290,7 @@ entities:
pos: 33.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25172
components:
- type: Transform
@@ -96548,7 +96298,7 @@ entities:
pos: 53.5,37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25182
components:
- type: Transform
@@ -96556,7 +96306,7 @@ entities:
pos: 45.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- proto: GasPort
entities:
- uid: 111
@@ -96633,14 +96383,14 @@ entities:
pos: -16.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14721
components:
- type: Transform
pos: -15.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15005
components:
- type: Transform
@@ -96689,7 +96439,7 @@ entities:
pos: -8.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21667
components:
- type: Transform
@@ -96697,7 +96447,7 @@ entities:
pos: -30.5,34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21668
components:
- type: Transform
@@ -96705,7 +96455,7 @@ entities:
pos: -30.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21673
components:
- type: Transform
@@ -96772,7 +96522,7 @@ entities:
pos: 48.5,-22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8074
components:
- type: Transform
@@ -96823,7 +96573,7 @@ entities:
pos: -33.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 14774
components:
- type: Transform
@@ -96895,7 +96645,7 @@ entities:
pos: -34.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15143
components:
- type: Transform
@@ -96903,7 +96653,7 @@ entities:
pos: -34.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15281
components:
- type: Transform
@@ -96935,21 +96685,21 @@ entities:
pos: -20.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22884
components:
- type: Transform
pos: -119.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22885
components:
- type: Transform
pos: -118.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 23049
components:
- type: Transform
@@ -97140,7 +96890,7 @@ entities:
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14837
components:
- type: Transform
@@ -97183,7 +96933,7 @@ entities:
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15345
components:
- type: Transform
@@ -97245,21 +96995,32 @@ entities:
pos: -9.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 114
components:
- type: Transform
pos: 49.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 8483
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 127
components:
- type: Transform
pos: 20.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 179
components:
- type: Transform
@@ -97267,7 +97028,7 @@ entities:
pos: 20.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 275
components:
- type: Transform
@@ -97275,7 +97036,7 @@ entities:
pos: 21.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 426
components:
- type: Transform
@@ -97283,7 +97044,7 @@ entities:
pos: 0.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 482
components:
- type: Transform
@@ -97291,23 +97052,41 @@ entities:
pos: 0.5,-25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 792
+ color: '#0335FCFF'
+ - uid: 777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 148
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 778
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -15.5,-5.5
+ pos: -33.5,-18.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 231
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 856
+ color: '#0335FCFF'
+ - uid: 792
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -33.5,-16.5
+ pos: -15.5,-5.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1960
+ - 4709
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 910
components:
- type: Transform
@@ -97315,15 +97094,18 @@ entities:
pos: -3.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 928
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -8.5,-23.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 57
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 946
components:
- type: Transform
@@ -97331,15 +97113,18 @@ entities:
pos: -48.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1133
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -15.5,-13.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4709
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1385
components:
- type: Transform
@@ -97355,7 +97140,7 @@ entities:
pos: 5.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1429
components:
- type: Transform
@@ -97363,7 +97148,7 @@ entities:
pos: 0.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1455
components:
- type: Transform
@@ -97371,103 +97156,115 @@ entities:
pos: 11.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1511
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -20.5,-23.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 57
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1651
+ color: '#0335FCFF'
+ - uid: 1660
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-7.5
+ pos: -37.5,-20.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 21507
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1652
+ color: '#0335FCFF'
+ - uid: 1682
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-10.5
+ pos: -44.5,-18.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 8516
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1665
+ color: '#0335FCFF'
+ - uid: 1731
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-13.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-5.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1669
+ color: '#0335FCFF'
+ - uid: 1780
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-7.5
+ pos: -20.5,8.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 1787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -37.5,-13.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1682
+ color: '#0335FCFF'
+ - uid: 1845
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-10.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 5933
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1780
+ color: '#0335FCFF'
+ - uid: 1966
components:
- type: Transform
- pos: -20.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-14.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 148
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1787
+ color: '#0335FCFF'
+ - uid: 1971
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-13.5
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-14.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 231
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 1838
+ color: '#0335FCFF'
+ - uid: 1983
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-13.5
+ pos: -28.5,-4.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 178
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 1996
components:
- type: Transform
pos: -33.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2027
components:
- type: Transform
@@ -97475,7 +97272,7 @@ entities:
pos: -22.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2208
components:
- type: Transform
@@ -97483,7 +97280,7 @@ entities:
pos: 34.5,-36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2215
components:
- type: Transform
@@ -97491,7 +97288,7 @@ entities:
pos: 34.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2370
components:
- type: Transform
@@ -97499,7 +97296,7 @@ entities:
pos: 24.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2371
components:
- type: Transform
@@ -97507,7 +97304,7 @@ entities:
pos: 25.5,-26.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2560
components:
- type: Transform
@@ -97515,7 +97312,7 @@ entities:
pos: 31.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2706
components:
- type: Transform
@@ -97523,18 +97320,7 @@ entities:
pos: 18.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-2.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8791
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2826
components:
- type: Transform
@@ -97542,18 +97328,7 @@ entities:
pos: 44.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2861
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -33.5,4.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8669
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 2984
components:
- type: Transform
@@ -97561,7 +97336,7 @@ entities:
pos: 47.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3002
components:
- type: Transform
@@ -97577,16 +97352,6 @@ entities:
parent: 60
- type: AtmosPipeColor
color: '#D3FC03FF'
- - uid: 3197
- components:
- - type: Transform
- pos: -27.5,0.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8271
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 3567
components:
- type: Transform
@@ -97594,7 +97359,7 @@ entities:
pos: 45.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3692
components:
- type: Transform
@@ -97602,21 +97367,21 @@ entities:
pos: 16.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3964
components:
- type: Transform
pos: -13.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3965
components:
- type: Transform
pos: -8.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 3986
components:
- type: Transform
@@ -97624,7 +97389,7 @@ entities:
pos: 0.5,-40.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4537
components:
- type: Transform
@@ -97632,7 +97397,7 @@ entities:
pos: -2.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 4953
components:
- type: Transform
@@ -97640,25 +97405,25 @@ entities:
pos: 0.5,-48.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5412
+ color: '#0335FCFF'
+ - uid: 5364
components:
- type: Transform
- pos: 12.5,8.5
+ rot: -1.5707963267948966 rad
+ pos: -26.5,-16.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 3204
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5425
+ color: '#0335FCFF'
+ - uid: 5412
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,1.5
+ pos: 12.5,8.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8260
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5439
components:
- type: Transform
@@ -97666,7 +97431,7 @@ entities:
pos: 43.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5445
components:
- type: Transform
@@ -97674,22 +97439,14 @@ entities:
pos: 29.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5446
components:
- type: Transform
pos: 33.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 5472
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5518
components:
- type: Transform
@@ -97697,14 +97454,14 @@ entities:
pos: 39.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5585
components:
- type: Transform
pos: -44.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5739
components:
- type: Transform
@@ -97712,7 +97469,7 @@ entities:
pos: 2.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5822
components:
- type: Transform
@@ -97720,7 +97477,7 @@ entities:
pos: 17.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5824
components:
- type: Transform
@@ -97728,7 +97485,7 @@ entities:
pos: 34.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5843
components:
- type: Transform
@@ -97736,7 +97493,7 @@ entities:
pos: 0.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5929
components:
- type: Transform
@@ -97744,7 +97501,7 @@ entities:
pos: -28.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5938
components:
- type: Transform
@@ -97752,7 +97509,7 @@ entities:
pos: -52.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5951
components:
- type: Transform
@@ -97760,15 +97517,19 @@ entities:
pos: -41.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5952
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -37.5,-6.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5954
components:
- type: Transform
@@ -97776,7 +97537,7 @@ entities:
pos: 10.5,-16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5955
components:
- type: Transform
@@ -97784,7 +97545,7 @@ entities:
pos: 12.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5956
components:
- type: Transform
@@ -97792,7 +97553,7 @@ entities:
pos: 11.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5980
components:
- type: Transform
@@ -97800,14 +97561,14 @@ entities:
pos: -43.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5987
components:
- type: Transform
pos: -43.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 5990
components:
- type: Transform
@@ -97815,7 +97576,7 @@ entities:
pos: -34.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6002
components:
- type: Transform
@@ -97823,29 +97584,21 @@ entities:
pos: -29.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6032
components:
- type: Transform
pos: -52.5,4.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6087
- components:
- - type: Transform
- pos: -19.5,-19.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6093
+ color: '#0335FCFF'
+ - uid: 6203
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-21.5
+ pos: -22.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6300
components:
- type: Transform
@@ -97853,18 +97606,7 @@ entities:
pos: 11.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6307
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6417
components:
- type: Transform
@@ -97872,7 +97614,7 @@ entities:
pos: 2.5,-61.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6418
components:
- type: Transform
@@ -97880,29 +97622,7 @@ entities:
pos: 2.5,-72.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6648
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-19.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 2103
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 6759
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -26.5,-16.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6770
components:
- type: Transform
@@ -97910,7 +97630,7 @@ entities:
pos: 9.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6789
components:
- type: Transform
@@ -97918,7 +97638,7 @@ entities:
pos: -42.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 6835
components:
- type: Transform
@@ -97926,7 +97646,7 @@ entities:
pos: 40.5,-13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7387
components:
- type: Transform
@@ -97934,7 +97654,7 @@ entities:
pos: 1.5,-76.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7476
components:
- type: Transform
@@ -97945,7 +97665,7 @@ entities:
deviceLists:
- 24769
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7484
components:
- type: Transform
@@ -97953,7 +97673,7 @@ entities:
pos: 0.5,-56.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 7485
components:
- type: Transform
@@ -97961,7 +97681,15 @@ entities:
pos: -9.5,-55.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 7916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-9.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 8087
components:
- type: Transform
@@ -97993,34 +97721,27 @@ entities:
pos: -3.5,-46.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8259
+ color: '#0335FCFF'
+ - uid: 8267
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-15.5
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-5.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8265
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8388
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -37.5,8.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 8413
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-3.5
- parent: 60
- - type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8619
components:
- type: Transform
@@ -98028,7 +97749,7 @@ entities:
pos: 16.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 8962
components:
- type: Transform
@@ -98036,7 +97757,7 @@ entities:
pos: 32.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9016
components:
- type: Transform
@@ -98044,7 +97765,7 @@ entities:
pos: 47.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9046
components:
- type: Transform
@@ -98052,7 +97773,7 @@ entities:
pos: 40.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9063
components:
- type: Transform
@@ -98060,7 +97781,29 @@ entities:
pos: 29.5,-20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 9150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-20.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 8516
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 9157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -8.5,2.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 105
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 9471
components:
- type: Transform
@@ -98071,7 +97814,7 @@ entities:
deviceLists:
- 7065
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9472
components:
- type: Transform
@@ -98082,7 +97825,7 @@ entities:
deviceLists:
- 11464
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9607
components:
- type: Transform
@@ -98090,7 +97833,7 @@ entities:
pos: -42.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9651
components:
- type: Transform
@@ -98101,7 +97844,7 @@ entities:
deviceLists:
- 11464
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 9678
components:
- type: Transform
@@ -98109,18 +97852,22 @@ entities:
pos: -37.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 11978
+ color: '#0335FCFF'
+ - uid: 10586
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-3.5
+ pos: -27.5,-0.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
+ - uid: 10678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-9.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8714
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12589
components:
- type: Transform
@@ -98128,7 +97875,7 @@ entities:
pos: 16.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12592
components:
- type: Transform
@@ -98136,7 +97883,7 @@ entities:
pos: 16.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12623
components:
- type: Transform
@@ -98144,7 +97891,7 @@ entities:
pos: 43.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12624
components:
- type: Transform
@@ -98152,7 +97899,7 @@ entities:
pos: 41.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12839
components:
- type: Transform
@@ -98160,21 +97907,21 @@ entities:
pos: -48.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 12868
components:
- type: Transform
pos: 40.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13074
components:
- type: Transform
pos: 38.5,10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13241
components:
- type: Transform
@@ -98182,7 +97929,7 @@ entities:
pos: 19.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13242
components:
- type: Transform
@@ -98190,14 +97937,24 @@ entities:
pos: 16.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 13248
+ components:
+ - type: Transform
+ pos: -11.5,15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1229
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 13536
components:
- type: Transform
pos: 16.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13548
components:
- type: Transform
@@ -98205,7 +97962,7 @@ entities:
pos: 21.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 13589
components:
- type: Transform
@@ -98213,21 +97970,21 @@ entities:
pos: 4.5,-37.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14302
+ color: '#0335FCFF'
+ - uid: 13800
components:
- type: Transform
- pos: -7.5,22.5
+ pos: -30.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14303
+ color: '#0335FCFF'
+ - uid: 14302
components:
- type: Transform
- pos: -11.5,18.5
+ pos: -7.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14325
components:
- type: Transform
@@ -98235,7 +97992,7 @@ entities:
pos: -8.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14501
components:
- type: Transform
@@ -98243,14 +98000,14 @@ entities:
pos: -23.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14502
components:
- type: Transform
pos: -23.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14642
components:
- type: Transform
@@ -98258,7 +98015,7 @@ entities:
pos: -19.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14752
components:
- type: Transform
@@ -98266,7 +98023,7 @@ entities:
pos: -21.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 14770
components:
- type: Transform
@@ -98276,21 +98033,21 @@ entities:
deviceLists:
- 23956
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15651
components:
- type: Transform
pos: -18.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 15652
components:
- type: Transform
pos: -14.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16559
components:
- type: Transform
@@ -98298,7 +98055,7 @@ entities:
pos: -29.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16604
components:
- type: Transform
@@ -98306,14 +98063,14 @@ entities:
pos: -11.5,30.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16619
components:
- type: Transform
pos: -0.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16620
components:
- type: Transform
@@ -98321,7 +98078,7 @@ entities:
pos: 0.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16635
components:
- type: Transform
@@ -98332,7 +98089,7 @@ entities:
deviceLists:
- 15745
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16643
components:
- type: Transform
@@ -98340,7 +98097,7 @@ entities:
pos: -2.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16666
components:
- type: Transform
@@ -98348,14 +98105,14 @@ entities:
pos: 12.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16669
components:
- type: Transform
pos: 10.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16670
components:
- type: Transform
@@ -98363,7 +98120,7 @@ entities:
pos: -2.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16682
components:
- type: Transform
@@ -98371,7 +98128,7 @@ entities:
pos: 5.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16683
components:
- type: Transform
@@ -98379,14 +98136,14 @@ entities:
pos: 2.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16684
components:
- type: Transform
pos: -32.5,32.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 16718
components:
- type: Transform
@@ -98396,7 +98153,7 @@ entities:
deviceLists:
- 21710
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17601
components:
- type: Transform
@@ -98404,7 +98161,7 @@ entities:
pos: -46.5,25.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17602
components:
- type: Transform
@@ -98412,7 +98169,7 @@ entities:
pos: -46.5,21.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17624
components:
- type: Transform
@@ -98420,7 +98177,7 @@ entities:
pos: -36.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17625
components:
- type: Transform
@@ -98428,7 +98185,7 @@ entities:
pos: -38.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17627
components:
- type: Transform
@@ -98436,7 +98193,7 @@ entities:
pos: -15.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 17628
components:
- type: Transform
@@ -98444,7 +98201,7 @@ entities:
pos: -30.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18139
components:
- type: Transform
@@ -98452,7 +98209,7 @@ entities:
pos: -2.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18270
components:
- type: Transform
@@ -98460,7 +98217,7 @@ entities:
pos: -7.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18426
components:
- type: Transform
@@ -98468,7 +98225,7 @@ entities:
pos: 0.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18427
components:
- type: Transform
@@ -98476,7 +98233,7 @@ entities:
pos: 5.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18429
components:
- type: Transform
@@ -98484,7 +98241,7 @@ entities:
pos: 0.5,-11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18539
components:
- type: Transform
@@ -98492,7 +98249,7 @@ entities:
pos: 0.5,1.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18540
components:
- type: Transform
@@ -98500,7 +98257,7 @@ entities:
pos: 4.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18560
components:
- type: Transform
@@ -98513,7 +98270,7 @@ entities:
pos: 45.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18653
components:
- type: Transform
@@ -98521,7 +98278,7 @@ entities:
pos: 45.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18663
components:
- type: Transform
@@ -98529,7 +98286,7 @@ entities:
pos: 53.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18664
components:
- type: Transform
@@ -98537,7 +98294,7 @@ entities:
pos: 53.5,9.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18668
components:
- type: Transform
@@ -98545,7 +98302,7 @@ entities:
pos: 48.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18906
components:
- type: Transform
@@ -98556,7 +98313,7 @@ entities:
deviceLists:
- 24792
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 18937
components:
- type: Transform
@@ -98572,7 +98329,7 @@ entities:
pos: 36.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19054
components:
- type: Transform
@@ -98580,7 +98337,7 @@ entities:
pos: 32.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19056
components:
- type: Transform
@@ -98591,7 +98348,7 @@ entities:
deviceLists:
- 25155
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19057
components:
- type: Transform
@@ -98602,7 +98359,7 @@ entities:
deviceLists:
- 25155
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19179
components:
- type: Transform
@@ -98610,7 +98367,7 @@ entities:
pos: 21.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 19403
components:
- type: Transform
@@ -98618,21 +98375,32 @@ entities:
pos: 40.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 21327
components:
- type: Transform
pos: -72.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
+ - uid: 21407
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -15.5,0.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1960
+ - type: AtmosPipeColor
+ color: '#0335FCFF'
- uid: 22876
components:
- type: Transform
pos: -110.5,36.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22878
components:
- type: Transform
@@ -98640,7 +98408,7 @@ entities:
pos: -110.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22879
components:
- type: Transform
@@ -98648,7 +98416,7 @@ entities:
pos: -103.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22881
components:
- type: Transform
@@ -98656,7 +98424,7 @@ entities:
pos: -98.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22882
components:
- type: Transform
@@ -98664,7 +98432,7 @@ entities:
pos: -112.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22886
components:
- type: Transform
@@ -98672,7 +98440,7 @@ entities:
pos: -117.5,16.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22891
components:
- type: Transform
@@ -98680,7 +98448,7 @@ entities:
pos: -112.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22893
components:
- type: Transform
@@ -98688,7 +98456,7 @@ entities:
pos: -112.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 22894
components:
- type: Transform
@@ -98696,7 +98464,7 @@ entities:
pos: -110.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 23505
components:
- type: Transform
@@ -98712,7 +98480,7 @@ entities:
pos: -5.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24136
components:
- type: Transform
@@ -98720,7 +98488,7 @@ entities:
pos: -9.5,-15.5
parent: 60
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 24834
components:
- type: Transform
@@ -98731,7 +98499,7 @@ entities:
deviceLists:
- 25157
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25173
components:
- type: Transform
@@ -98742,7 +98510,7 @@ entities:
deviceLists:
- 25162
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25174
components:
- type: Transform
@@ -98753,7 +98521,7 @@ entities:
deviceLists:
- 25162
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25179
components:
- type: Transform
@@ -98764,7 +98532,7 @@ entities:
deviceLists:
- 25163
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25180
components:
- type: Transform
@@ -98775,7 +98543,7 @@ entities:
deviceLists:
- 25163
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- uid: 25185
components:
- type: Transform
@@ -98786,7 +98554,7 @@ entities:
deviceLists:
- 25157
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#0335FCFF'
- proto: GasVentScrubber
entities:
- uid: 61
@@ -98796,7 +98564,17 @@ entities:
pos: 35.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 157
+ components:
+ - type: Transform
+ pos: -33.5,-14.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 231
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 223
components:
- type: Transform
@@ -98804,7 +98582,7 @@ entities:
pos: 26.5,-12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 263
components:
- type: Transform
@@ -98812,7 +98590,7 @@ entities:
pos: 22.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 337
components:
- type: Transform
@@ -98820,7 +98598,7 @@ entities:
pos: 47.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 428
components:
- type: Transform
@@ -98828,7 +98606,7 @@ entities:
pos: 0.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 473
components:
- type: Transform
@@ -98836,14 +98614,17 @@ entities:
pos: 0.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 516
components:
- type: Transform
pos: -19.5,-23.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 57
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 629
components:
- type: Transform
@@ -98851,7 +98632,7 @@ entities:
pos: 19.5,-35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 719
components:
- type: Transform
@@ -98859,15 +98640,41 @@ entities:
pos: -22.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-19.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 231
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 788
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -15.5,-6.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1960
+ - 4709
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-10.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 5933
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 871
components:
- type: Transform
@@ -98875,14 +98682,17 @@ entities:
pos: 41.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 904
components:
- type: Transform
pos: -10.5,-23.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 57
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 912
components:
- type: Transform
@@ -98890,7 +98700,7 @@ entities:
pos: -8.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 913
components:
- type: Transform
@@ -98898,15 +98708,18 @@ entities:
pos: -4.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1136
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -15.5,-14.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 4709
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1246
components:
- type: Transform
@@ -98914,7 +98727,7 @@ entities:
pos: 37.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1397
components:
- type: Transform
@@ -98922,7 +98735,7 @@ entities:
pos: 4.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1398
components:
- type: Transform
@@ -98930,7 +98743,7 @@ entities:
pos: 3.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1430
components:
- type: Transform
@@ -98938,77 +98751,93 @@ entities:
pos: 0.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 1456
components:
- type: Transform
pos: 12.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1564
+ color: '#FF1212FF'
+ - uid: 1581
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-12.5
+ pos: -37.5,-19.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 21507
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1771
+ color: '#FF1212FF'
+ - uid: 1659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-18.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 148
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1739
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -37.5,-14.5
+ pos: -19.5,-7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1846
+ color: '#0335FCFF'
+ - uid: 1750
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-9.5
+ pos: -19.5,-11.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1850
+ color: '#FF1212FF'
+ - uid: 1768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-11.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 1771
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -19.5,-6.5
+ pos: -37.5,-14.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1893
+ color: '#FF1212FF'
+ - uid: 1974
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-9.5
+ pos: -19.5,-14.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 148
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 1902
+ color: '#FF1212FF'
+ - uid: 2009
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-4.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 249
+ - 178
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2026
components:
- type: Transform
@@ -99016,7 +98845,7 @@ entities:
pos: -22.5,-29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2205
components:
- type: Transform
@@ -99024,7 +98853,7 @@ entities:
pos: 29.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2360
components:
- type: Transform
@@ -99032,36 +98861,40 @@ entities:
pos: 23.5,-34.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2374
components:
- type: Transform
pos: 23.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2563
components:
- type: Transform
pos: 29.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2704
components:
- type: Transform
pos: 39.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2772
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -37.5,-4.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2821
components:
- type: Transform
@@ -99069,7 +98902,7 @@ entities:
pos: 44.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 2983
components:
- type: Transform
@@ -99101,7 +98934,7 @@ entities:
pos: 44.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3693
components:
- type: Transform
@@ -99109,7 +98942,7 @@ entities:
pos: 16.5,-18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3962
components:
- type: Transform
@@ -99117,14 +98950,14 @@ entities:
pos: -7.5,-41.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3963
components:
- type: Transform
pos: -13.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 3985
components:
- type: Transform
@@ -99132,14 +98965,22 @@ entities:
pos: 0.5,-39.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 4218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -33.5,-7.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 4502
components:
- type: Transform
pos: 39.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4944
components:
- type: Transform
@@ -99147,7 +98988,7 @@ entities:
pos: 0.5,-47.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 4971
components:
- type: Transform
@@ -99155,7 +98996,7 @@ entities:
pos: 0.5,-54.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5404
components:
- type: Transform
@@ -99163,7 +99004,7 @@ entities:
pos: 43.5,-8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5411
components:
- type: Transform
@@ -99171,32 +99012,32 @@ entities:
pos: 10.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5440
components:
- type: Transform
pos: 34.5,-14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5454
+ color: '#FF1212FF'
+ - uid: 5581
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-12.5
+ pos: -42.5,8.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5581
+ color: '#FF1212FF'
+ - uid: 5688
components:
- type: Transform
- pos: -42.5,8.5
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-18.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 3204
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5738
components:
- type: Transform
@@ -99204,7 +99045,7 @@ entities:
pos: -1.5,11.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5745
components:
- type: Transform
@@ -99212,7 +99053,7 @@ entities:
pos: -10.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5766
components:
- type: Transform
@@ -99220,7 +99061,7 @@ entities:
pos: 16.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5820
components:
- type: Transform
@@ -99228,7 +99069,7 @@ entities:
pos: 18.5,-28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5823
components:
- type: Transform
@@ -99236,7 +99077,7 @@ entities:
pos: 29.5,-32.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5831
components:
- type: Transform
@@ -99244,7 +99085,7 @@ entities:
pos: 43.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5930
components:
- type: Transform
@@ -99252,22 +99093,14 @@ entities:
pos: -29.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5961
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -37.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 5962
components:
- type: Transform
pos: -30.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6015
components:
- type: Transform
@@ -99275,15 +99108,19 @@ entities:
pos: -34.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6018
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -37.5,6.5
parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 21612
+ - 12
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6028
components:
- type: Transform
@@ -99291,7 +99128,7 @@ entities:
pos: -41.5,2.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6058
components:
- type: Transform
@@ -99299,15 +99136,7 @@ entities:
pos: -43.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6065
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-20.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6290
components:
- type: Transform
@@ -99315,7 +99144,7 @@ entities:
pos: 16.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6299
components:
- type: Transform
@@ -99323,18 +99152,7 @@ entities:
pos: 11.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6308
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-9.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6474
components:
- type: Transform
@@ -99342,7 +99160,7 @@ entities:
pos: -1.5,-72.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 6475
components:
- type: Transform
@@ -99350,18 +99168,18 @@ entities:
pos: -1.5,-61.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 6762
+ color: '#FF1212FF'
+ - uid: 7099
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: -49.5,-16.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 8260
+ - 8483
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7177
components:
- type: Transform
@@ -99369,7 +99187,7 @@ entities:
pos: -27.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7343
components:
- type: Transform
@@ -99377,7 +99195,7 @@ entities:
pos: -42.5,22.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7368
components:
- type: Transform
@@ -99385,7 +99203,7 @@ entities:
pos: -0.5,-76.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7463
components:
- type: Transform
@@ -99393,7 +99211,7 @@ entities:
pos: -10.5,-53.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7488
components:
- type: Transform
@@ -99404,7 +99222,7 @@ entities:
deviceLists:
- 24769
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 7686
components:
- type: Transform
@@ -99412,18 +99230,22 @@ entities:
pos: -31.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7790
+ color: '#FF1212FF'
+ - uid: 7811
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
+ - uid: 7901
+ components:
+ - type: Transform
+ pos: -25.5,-0.5
parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 249
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8137
components:
- type: Transform
@@ -99431,36 +99253,29 @@ entities:
pos: -3.5,-45.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8230
+ color: '#FF1212FF'
+ - uid: 8416
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,2.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 2103
+ - 105
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8269
+ color: '#FF1212FF'
+ - uid: 8439
components:
- type: Transform
- pos: -18.5,-15.5
+ rot: 3.141592653589793 rad
+ pos: -42.5,-20.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 8265
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8578
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,-19.5
- parent: 60
+ - 8516
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8620
components:
- type: Transform
@@ -99468,28 +99283,18 @@ entities:
pos: 16.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -33.5,0.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8669
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 8898
+ color: '#FF1212FF'
+ - uid: 8942
components:
- type: Transform
- pos: -25.5,0.5
+ rot: -1.5707963267948966 rad
+ pos: -42.5,-18.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 8271
+ - 8516
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 8960
components:
- type: Transform
@@ -99497,25 +99302,14 @@ entities:
pos: -48.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9017
components:
- type: Transform
pos: -47.5,3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9034
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-4.5
- parent: 60
- - type: DeviceNetwork
- deviceLists:
- - 8791
- - type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9061
components:
- type: Transform
@@ -99523,7 +99317,7 @@ entities:
pos: 29.5,-17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9062
components:
- type: Transform
@@ -99531,25 +99325,18 @@ entities:
pos: 29.5,-19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9154
- components:
- - type: Transform
- pos: -26.5,-4.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 9156
+ color: '#FF1212FF'
+ - uid: 9155
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: -15.5,2.5
parent: 60
- type: DeviceNetwork
deviceLists:
- - 8714
+ - 1960
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9160
components:
- type: Transform
@@ -99557,7 +99344,7 @@ entities:
pos: 22.5,-23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9428
components:
- type: Transform
@@ -99567,14 +99354,14 @@ entities:
deviceLists:
- 11464
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9608
components:
- type: Transform
pos: -41.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9631
components:
- type: Transform
@@ -99585,7 +99372,7 @@ entities:
deviceLists:
- 11464
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9641
components:
- type: Transform
@@ -99593,7 +99380,7 @@ entities:
pos: -41.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9674
components:
- type: Transform
@@ -99604,14 +99391,24 @@ entities:
deviceLists:
- 7065
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 9677
components:
- type: Transform
pos: -38.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
+ - uid: 11525
+ components:
+ - type: Transform
+ pos: -7.5,15.5
+ parent: 60
+ - type: DeviceNetwork
+ deviceLists:
+ - 1229
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 12001
components:
- type: Transform
@@ -99619,7 +99416,7 @@ entities:
pos: 16.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12591
components:
- type: Transform
@@ -99627,7 +99424,7 @@ entities:
pos: 16.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12594
components:
- type: Transform
@@ -99642,7 +99439,7 @@ entities:
pos: 38.5,-31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12632
components:
- type: Transform
@@ -99650,14 +99447,14 @@ entities:
pos: 41.5,-30.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12633
components:
- type: Transform
pos: 38.5,-27.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 12897
components:
- type: Transform
@@ -99665,7 +99462,7 @@ entities:
pos: 13.5,5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13073
components:
- type: Transform
@@ -99673,7 +99470,7 @@ entities:
pos: 40.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13075
components:
- type: Transform
@@ -99681,7 +99478,7 @@ entities:
pos: 38.5,6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13238
components:
- type: Transform
@@ -99689,7 +99486,7 @@ entities:
pos: 19.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13444
components:
- type: Transform
@@ -99702,50 +99499,27 @@ entities:
pos: 36.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13563
components:
- type: Transform
pos: 22.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 13754
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -9.5,-13.5
parent: 60
- - uid: 13971
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -14.5,8.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14312
- components:
- - type: Transform
- pos: -11.5,16.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 14318
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,14.5
- parent: 60
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 14503
components:
- type: Transform
pos: -27.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15648
components:
- type: Transform
@@ -99753,7 +99527,7 @@ entities:
pos: -21.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15649
components:
- type: Transform
@@ -99761,7 +99535,7 @@ entities:
pos: -16.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 15650
components:
- type: Transform
@@ -99769,14 +99543,14 @@ entities:
pos: -11.5,35.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16560
components:
- type: Transform
pos: -25.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16605
components:
- type: Transform
@@ -99784,21 +99558,21 @@ entities:
pos: -11.5,29.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16615
components:
- type: Transform
pos: 1.5,31.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16621
components:
- type: Transform
pos: -1.5,28.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16633
components:
- type: Transform
@@ -99809,7 +99583,7 @@ entities:
deviceLists:
- 21710
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16634
components:
- type: Transform
@@ -99820,7 +99594,7 @@ entities:
deviceLists:
- 15745
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16642
components:
- type: Transform
@@ -99828,7 +99602,7 @@ entities:
pos: -2.5,15.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16667
components:
- type: Transform
@@ -99836,21 +99610,21 @@ entities:
pos: 12.5,17.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16668
components:
- type: Transform
pos: 10.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16672
components:
- type: Transform
pos: 3.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16673
components:
- type: Transform
@@ -99858,7 +99632,7 @@ entities:
pos: -3.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16675
components:
- type: Transform
@@ -99866,7 +99640,7 @@ entities:
pos: 0.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 16681
components:
- type: Transform
@@ -99874,7 +99648,7 @@ entities:
pos: 4.5,14.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17603
components:
- type: Transform
@@ -99882,7 +99656,7 @@ entities:
pos: -46.5,23.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17604
components:
- type: Transform
@@ -99890,7 +99664,7 @@ entities:
pos: -46.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17621
components:
- type: Transform
@@ -99898,7 +99672,7 @@ entities:
pos: -34.5,20.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17626
components:
- type: Transform
@@ -99910,7 +99684,7 @@ entities:
pos: -31.5,24.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 17632
components:
- type: Transform
@@ -99918,7 +99692,7 @@ entities:
pos: -15.5,19.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18257
components:
- type: Transform
@@ -99926,7 +99700,7 @@ entities:
pos: -4.5,-5.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18258
components:
- type: Transform
@@ -99934,7 +99708,7 @@ entities:
pos: -7.5,-4.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18260
components:
- type: Transform
@@ -99942,7 +99716,7 @@ entities:
pos: 0.5,-0.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18425
components:
- type: Transform
@@ -99950,7 +99724,7 @@ entities:
pos: 0.5,-3.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18428
components:
- type: Transform
@@ -99958,7 +99732,7 @@ entities:
pos: 4.5,-6.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18430
components:
- type: Transform
@@ -99966,7 +99740,7 @@ entities:
pos: 0.5,-10.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18434
components:
- type: Transform
@@ -99974,21 +99748,21 @@ entities:
pos: -2.5,-9.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18657
components:
- type: Transform
pos: 43.5,12.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18658
components:
- type: Transform
pos: 44.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18685
components:
- type: Transform
@@ -99996,7 +99770,7 @@ entities:
pos: 48.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18686
components:
- type: Transform
@@ -100004,7 +99778,7 @@ entities:
pos: 53.5,13.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18687
components:
- type: Transform
@@ -100012,7 +99786,7 @@ entities:
pos: 53.5,7.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18884
components:
- type: Transform
@@ -100023,7 +99797,7 @@ entities:
deviceLists:
- 24792
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18915
components:
- type: Transform
@@ -100031,7 +99805,7 @@ entities:
pos: 48.5,-1.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 18938
components:
- type: Transform
@@ -100046,7 +99820,7 @@ entities:
pos: 31.5,8.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19058
components:
- type: Transform
@@ -100056,7 +99830,7 @@ entities:
deviceLists:
- 25155
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19059
components:
- type: Transform
@@ -100066,7 +99840,7 @@ entities:
deviceLists:
- 25155
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 19180
components:
- type: Transform
@@ -100074,13 +99848,21 @@ entities:
pos: 21.5,18.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 21328
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -73.5,18.5
parent: 60
+ - uid: 21411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -34.5,-1.5
+ parent: 60
+ - type: AtmosPipeColor
+ color: '#FF1212FF'
- uid: 22906
components:
- type: Transform
@@ -100168,7 +99950,7 @@ entities:
deviceLists:
- 23956
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 24358
components:
- type: Transform
@@ -100176,7 +99958,7 @@ entities:
pos: 47.5,-21.5
parent: 60
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25175
components:
- type: Transform
@@ -100187,7 +99969,7 @@ entities:
deviceLists:
- 25162
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25176
components:
- type: Transform
@@ -100198,7 +99980,7 @@ entities:
deviceLists:
- 25162
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25177
components:
- type: Transform
@@ -100209,7 +99991,7 @@ entities:
deviceLists:
- 25163
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25178
components:
- type: Transform
@@ -100220,7 +100002,7 @@ entities:
deviceLists:
- 25163
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25183
components:
- type: Transform
@@ -100230,7 +100012,7 @@ entities:
deviceLists:
- 25157
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- uid: 25186
components:
- type: Transform
@@ -100241,7 +100023,7 @@ entities:
deviceLists:
- 25157
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#FF1212FF'
- proto: GasVolumePump
entities:
- uid: 14850
@@ -100304,6 +100086,12 @@ entities:
- type: Transform
pos: -60.5,-9.5
parent: 60
+ - uid: 11368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,2.5
+ parent: 60
- uid: 19105
components:
- type: Transform
@@ -100368,17 +100156,16 @@ entities:
radius: 175.75
- proto: Grille
entities:
- - uid: 17
+ - uid: 8
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 54.5,-6.5
+ pos: -24.5,-7.5
parent: 60
- - uid: 24
+ - uid: 17
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -25.5,-12.5
+ pos: 54.5,-6.5
parent: 60
- uid: 34
components:
@@ -100390,41 +100177,20 @@ entities:
- type: Transform
pos: -55.5,-24.5
parent: 60
- - uid: 67
- components:
- - type: Transform
- pos: -21.5,-16.5
- parent: 60
- uid: 71
components:
- type: Transform
pos: 50.5,55.5
parent: 60
- - uid: 79
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-15.5
- parent: 60
- uid: 103
components:
- type: Transform
pos: 50.5,19.5
parent: 60
- - uid: 113
- components:
- - type: Transform
- pos: -18.5,-17.5
- parent: 60
- - uid: 132
- components:
- - type: Transform
- pos: -28.5,-7.5
- parent: 60
- - uid: 155
+ - uid: 137
components:
- type: Transform
- pos: -20.5,-17.5
+ pos: -24.5,-8.5
parent: 60
- uid: 200
components:
@@ -100443,31 +100209,30 @@ entities:
rot: -1.5707963267948966 rad
pos: 46.5,-8.5
parent: 60
- - uid: 232
+ - uid: 235
components:
- type: Transform
- pos: -23.5,-17.5
+ pos: -23.5,-12.5
parent: 60
- - uid: 233
+ - uid: 244
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-10.5
+ pos: -32.5,-17.5
parent: 60
- - uid: 238
+ - uid: 258
components:
- type: Transform
- pos: -20.5,-13.5
+ pos: -25.5,-7.5
parent: 60
- - uid: 245
+ - uid: 270
components:
- type: Transform
- pos: -20.5,-10.5
+ pos: -29.5,-16.5
parent: 60
- uid: 284
components:
- type: Transform
- pos: -28.5,-8.5
+ pos: -17.5,-9.5
parent: 60
- uid: 369
components:
@@ -100607,36 +100372,35 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,-18.5
parent: 60
- - uid: 667
+ - uid: 808
components:
- type: Transform
- pos: -33.5,-21.5
+ pos: -1.5,8.5
parent: 60
- - uid: 721
+ - uid: 816
components:
- type: Transform
- pos: -35.5,-10.5
+ pos: -2.5,8.5
parent: 60
- - uid: 808
+ - uid: 836
components:
- type: Transform
- pos: -1.5,8.5
+ pos: -17.5,-7.5
parent: 60
- - uid: 816
+ - uid: 837
components:
- type: Transform
- pos: -2.5,8.5
+ pos: -17.5,-16.5
parent: 60
- - uid: 837
+ - uid: 842
components:
- type: Transform
- pos: -26.5,-17.5
+ pos: -20.5,-10.5
parent: 60
- - uid: 844
+ - uid: 843
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-12.5
+ pos: -20.5,-6.5
parent: 60
- uid: 895
components:
@@ -100656,7 +100420,12 @@ entities:
- uid: 963
components:
- type: Transform
- pos: -20.5,-7.5
+ pos: -35.5,-10.5
+ parent: 60
+ - uid: 979
+ components:
+ - type: Transform
+ pos: -32.5,-10.5
parent: 60
- uid: 1072
components:
@@ -100673,6 +100442,21 @@ entities:
- type: Transform
pos: -67.5,0.5
parent: 60
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: -28.5,-7.5
+ parent: 60
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: -35.5,-11.5
+ parent: 60
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: -28.5,-8.5
+ parent: 60
- uid: 1184
components:
- type: Transform
@@ -100683,6 +100467,16 @@ entities:
- type: Transform
pos: 38.5,57.5
parent: 60
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: -26.5,-7.5
+ parent: 60
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: -27.5,-7.5
+ parent: 60
- uid: 1233
components:
- type: Transform
@@ -100753,76 +100547,80 @@ entities:
- type: Transform
pos: 6.5,-26.5
parent: 60
- - uid: 1384
+ - uid: 1431
components:
- type: Transform
- pos: -17.5,-13.5
+ pos: 9.5,-17.5
parent: 60
- - uid: 1386
+ - uid: 1432
components:
- type: Transform
- pos: -17.5,-12.5
+ pos: 9.5,-15.5
parent: 60
- - uid: 1431
+ - uid: 1477
components:
- type: Transform
- pos: 9.5,-17.5
+ pos: -23.5,-16.5
parent: 60
- - uid: 1432
+ - uid: 1480
components:
- type: Transform
- pos: 9.5,-15.5
+ pos: -23.5,-14.5
parent: 60
- - uid: 1459
+ - uid: 1528
components:
- type: Transform
- pos: -29.5,-8.5
+ pos: -32.5,-6.5
parent: 60
- - uid: 1464
+ - uid: 1529
components:
- type: Transform
- pos: -29.5,-10.5
+ pos: -35.5,-9.5
parent: 60
- - uid: 1465
+ - uid: 1532
components:
- type: Transform
- pos: -24.5,-11.5
+ pos: -35.5,-5.5
parent: 60
- - uid: 1473
+ - uid: 1536
components:
- type: Transform
- pos: -28.5,-11.5
+ pos: -29.5,-11.5
parent: 60
- - uid: 1474
+ - uid: 1537
components:
- type: Transform
- pos: -24.5,-7.5
+ pos: -35.5,-6.5
parent: 60
- - uid: 1477
+ - uid: 1540
components:
- type: Transform
- pos: -23.5,-10.5
+ pos: -29.5,-9.5
parent: 60
- - uid: 1483
+ - uid: 1541
components:
- type: Transform
- pos: -23.5,-8.5
+ pos: -17.5,-11.5
parent: 60
- - uid: 1484
+ - uid: 1542
components:
- type: Transform
- pos: -24.5,-8.5
+ pos: -35.5,-7.5
parent: 60
- - uid: 1491
+ - uid: 1545
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-12.5
+ pos: -17.5,-10.5
parent: 60
- - uid: 1650
+ - uid: 1562
components:
- type: Transform
- pos: -31.5,-2.5
+ pos: -24.5,-9.5
+ parent: 60
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: -29.5,-14.5
parent: 60
- uid: 1683
components:
@@ -100869,55 +100667,50 @@ entities:
- type: Transform
pos: 73.5,-32.5
parent: 60
- - uid: 1790
- components:
- - type: Transform
- pos: -27.5,-1.5
- parent: 60
- - uid: 1804
+ - uid: 1911
components:
- type: Transform
- pos: -17.5,-9.5
+ pos: 30.5,31.5
parent: 60
- - uid: 1811
+ - uid: 1927
components:
- type: Transform
- pos: -25.5,-1.5
+ pos: -17.5,-19.5
parent: 60
- - uid: 1812
+ - uid: 1928
components:
- type: Transform
- pos: -20.5,-2.5
+ pos: -33.5,-21.5
parent: 60
- - uid: 1911
+ - uid: 1929
components:
- type: Transform
- pos: 30.5,31.5
+ pos: -34.5,-21.5
parent: 60
- - uid: 1984
+ - uid: 1930
components:
- type: Transform
- pos: 68.5,-32.5
+ pos: -35.5,-20.5
parent: 60
- - uid: 1987
+ - uid: 1931
components:
- type: Transform
- pos: -31.5,-4.5
+ pos: -17.5,-18.5
parent: 60
- - uid: 1989
+ - uid: 1932
components:
- type: Transform
- pos: -32.5,-7.5
+ pos: -19.5,-21.5
parent: 60
- - uid: 2012
+ - uid: 1933
components:
- type: Transform
- pos: -32.5,-10.5
+ pos: -32.5,-21.5
parent: 60
- - uid: 2015
+ - uid: 1984
components:
- type: Transform
- pos: -22.5,-1.5
+ pos: 68.5,-32.5
parent: 60
- uid: 2030
components:
@@ -100929,21 +100722,6 @@ entities:
- type: Transform
pos: -56.5,17.5
parent: 60
- - uid: 2099
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 60
- - uid: 2100
- components:
- - type: Transform
- pos: -25.5,-21.5
- parent: 60
- - uid: 2113
- components:
- - type: Transform
- pos: -27.5,-21.5
- parent: 60
- uid: 2135
components:
- type: Transform
@@ -101012,11 +100790,6 @@ entities:
- type: Transform
pos: 21.5,-25.5
parent: 60
- - uid: 2579
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 60
- uid: 2588
components:
- type: Transform
@@ -101107,6 +100880,11 @@ entities:
- type: Transform
pos: 60.5,-35.5
parent: 60
+ - uid: 2861
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 60
- uid: 2877
components:
- type: Transform
@@ -101369,11 +101147,6 @@ entities:
- type: Transform
pos: 57.5,-12.5
parent: 60
- - uid: 3742
- components:
- - type: Transform
- pos: -18.5,1.5
- parent: 60
- uid: 3770
components:
- type: Transform
@@ -101551,6 +101324,11 @@ entities:
- type: Transform
pos: -36.5,-25.5
parent: 60
+ - uid: 4078
+ components:
+ - type: Transform
+ pos: -34.5,-17.5
+ parent: 60
- uid: 4089
components:
- type: Transform
@@ -101754,11 +101532,6 @@ entities:
- type: Transform
pos: -19.5,-52.5
parent: 60
- - uid: 4794
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 60
- uid: 4860
components:
- type: Transform
@@ -101920,6 +101693,11 @@ entities:
- type: Transform
pos: -3.5,-73.5
parent: 60
+ - uid: 5235
+ components:
+ - type: Transform
+ pos: -27.5,-2.5
+ parent: 60
- uid: 5245
components:
- type: Transform
@@ -101935,11 +101713,6 @@ entities:
- type: Transform
pos: 25.5,-78.5
parent: 60
- - uid: 5432
- components:
- - type: Transform
- pos: -17.5,-10.5
- parent: 60
- uid: 5484
components:
- type: Transform
@@ -102043,6 +101816,11 @@ entities:
- type: Transform
pos: -66.5,4.5
parent: 60
+ - uid: 5799
+ components:
+ - type: Transform
+ pos: -18.5,-1.5
+ parent: 60
- uid: 5816
components:
- type: Transform
@@ -102073,16 +101851,10 @@ entities:
- type: Transform
pos: 54.5,-33.5
parent: 60
- - uid: 6043
- components:
- - type: Transform
- pos: -35.5,-13.5
- parent: 60
- - uid: 6149
+ - uid: 6147
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-12.5
+ pos: -18.5,-0.5
parent: 60
- uid: 6151
components:
@@ -102284,16 +102056,6 @@ entities:
- type: Transform
pos: 30.5,-59.5
parent: 60
- - uid: 6651
- components:
- - type: Transform
- pos: -20.5,-4.5
- parent: 60
- - uid: 6683
- components:
- - type: Transform
- pos: -35.5,-6.5
- parent: 60
- uid: 6688
components:
- type: Transform
@@ -102320,15 +102082,20 @@ entities:
rot: 3.141592653589793 rad
pos: 46.5,-43.5
parent: 60
+ - uid: 6803
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 60
- uid: 6812
components:
- type: Transform
pos: 17.5,29.5
parent: 60
- - uid: 6820
+ - uid: 6824
components:
- type: Transform
- pos: -17.5,-7.5
+ pos: -23.5,-11.5
parent: 60
- uid: 6831
components:
@@ -102350,11 +102117,6 @@ entities:
- type: Transform
pos: 3.5,-74.5
parent: 60
- - uid: 6983
- components:
- - type: Transform
- pos: -35.5,-12.5
- parent: 60
- uid: 7067
components:
- type: Transform
@@ -102390,12 +102152,6 @@ entities:
- type: Transform
pos: 30.5,52.5
parent: 60
- - uid: 7231
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-10.5
- parent: 60
- uid: 7256
components:
- type: Transform
@@ -102642,17 +102398,6 @@ entities:
- type: Transform
pos: -66.5,-19.5
parent: 60
- - uid: 7650
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- - uid: 7657
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-12.5
- parent: 60
- uid: 7669
components:
- type: Transform
@@ -102883,6 +102628,21 @@ entities:
- type: Transform
pos: -46.5,-4.5
parent: 60
+ - uid: 8251
+ components:
+ - type: Transform
+ pos: -25.5,-2.5
+ parent: 60
+ - uid: 8337
+ components:
+ - type: Transform
+ pos: -29.5,-12.5
+ parent: 60
+ - uid: 8339
+ components:
+ - type: Transform
+ pos: -30.5,-2.5
+ parent: 60
- uid: 8367
components:
- type: Transform
@@ -102908,10 +102668,15 @@ entities:
- type: Transform
pos: -81.5,-26.5
parent: 60
- - uid: 8528
+ - uid: 8437
components:
- type: Transform
- pos: -17.5,-6.5
+ pos: -17.5,-20.5
+ parent: 60
+ - uid: 8442
+ components:
+ - type: Transform
+ pos: -35.5,-18.5
parent: 60
- uid: 8561
components:
@@ -102958,11 +102723,6 @@ entities:
- type: Transform
pos: -87.5,-26.5
parent: 60
- - uid: 8602
- components:
- - type: Transform
- pos: -35.5,-9.5
- parent: 60
- uid: 8663
components:
- type: Transform
@@ -102998,11 +102758,6 @@ entities:
- type: Transform
pos: -88.5,-26.5
parent: 60
- - uid: 8694
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 60
- uid: 8740
components:
- type: Transform
@@ -103058,11 +102813,6 @@ entities:
- type: Transform
pos: 50.5,-18.5
parent: 60
- - uid: 9052
- components:
- - type: Transform
- pos: -29.5,-17.5
- parent: 60
- uid: 9281
components:
- type: Transform
@@ -103258,6 +103008,11 @@ entities:
- type: Transform
pos: 24.5,3.5
parent: 60
+ - uid: 10621
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 60
- uid: 10702
components:
- type: Transform
@@ -103268,11 +103023,26 @@ entities:
- type: Transform
pos: 42.5,-20.5
parent: 60
+ - uid: 11127
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 60
- uid: 11150
components:
- type: Transform
pos: -25.5,27.5
parent: 60
+ - uid: 11282
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
+ - uid: 11336
+ components:
+ - type: Transform
+ pos: -17.5,-6.5
+ parent: 60
- uid: 11341
components:
- type: Transform
@@ -103293,11 +103063,6 @@ entities:
- type: Transform
pos: -6.5,3.5
parent: 60
- - uid: 11522
- components:
- - type: Transform
- pos: -1.5,37.5
- parent: 60
- uid: 11699
components:
- type: Transform
@@ -103988,6 +103753,21 @@ entities:
- type: Transform
pos: -13.5,17.5
parent: 60
+ - uid: 14117
+ components:
+ - type: Transform
+ pos: -5.5,35.5
+ parent: 60
+ - uid: 14433
+ components:
+ - type: Transform
+ pos: 2.5,38.5
+ parent: 60
+ - uid: 14434
+ components:
+ - type: Transform
+ pos: 0.5,38.5
+ parent: 60
- uid: 14442
components:
- type: Transform
@@ -104471,6 +104251,11 @@ entities:
- type: Transform
pos: -51.5,15.5
parent: 60
+ - uid: 15900
+ components:
+ - type: Transform
+ pos: -28.5,-9.5
+ parent: 60
- uid: 15993
components:
- type: Transform
@@ -104548,30 +104333,35 @@ entities:
rot: 1.5707963267948966 rad
pos: 1.5,30.5
parent: 60
- - uid: 16377
+ - uid: 16356
+ components:
+ - type: Transform
+ pos: 7.5,34.5
+ parent: 60
+ - uid: 16362
components:
- type: Transform
- pos: -0.5,37.5
+ pos: 1.5,38.5
parent: 60
- - uid: 16378
+ - uid: 16370
components:
- type: Transform
- pos: 38.5,17.5
+ pos: -0.5,38.5
parent: 60
- - uid: 16397
+ - uid: 16378
components:
- type: Transform
- pos: -19.5,35.5
+ pos: 38.5,17.5
parent: 60
- - uid: 16433
+ - uid: 16392
components:
- type: Transform
- pos: 0.5,37.5
+ pos: -1.5,38.5
parent: 60
- - uid: 16434
+ - uid: 16397
components:
- type: Transform
- pos: 1.5,37.5
+ pos: -19.5,35.5
parent: 60
- uid: 16623
components:
@@ -105139,6 +104929,11 @@ entities:
- type: Transform
pos: 28.5,1.5
parent: 60
+ - uid: 17961
+ components:
+ - type: Transform
+ pos: -25.5,-25.5
+ parent: 60
- uid: 17991
components:
- type: Transform
@@ -105249,6 +105044,11 @@ entities:
- type: Transform
pos: 15.5,-80.5
parent: 60
+ - uid: 18496
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 60
- uid: 18512
components:
- type: Transform
@@ -106684,6 +106484,11 @@ entities:
- type: Transform
pos: 37.5,51.5
parent: 60
+ - uid: 21200
+ components:
+ - type: Transform
+ pos: -17.5,-14.5
+ parent: 60
- uid: 21218
components:
- type: Transform
@@ -107031,6 +106836,11 @@ entities:
- type: Transform
pos: -15.5,-80.5
parent: 60
+ - uid: 21736
+ components:
+ - type: Transform
+ pos: -39.5,-19.5
+ parent: 60
- uid: 21761
components:
- type: Transform
@@ -108084,6 +107894,11 @@ entities:
- type: Transform
pos: 57.5,49.5
parent: 60
+ - uid: 23825
+ components:
+ - type: Transform
+ pos: -39.5,-21.5
+ parent: 60
- uid: 23856
components:
- type: Transform
@@ -108104,6 +107919,11 @@ entities:
- type: Transform
pos: 37.5,30.5
parent: 60
+ - uid: 23905
+ components:
+ - type: Transform
+ pos: -3.5,35.5
+ parent: 60
- uid: 23944
components:
- type: Transform
@@ -109412,31 +109232,38 @@ entities:
parent: 60
- proto: GunSafeDisabler
entities:
- - uid: 1732
+ - uid: 1558
components:
- type: Transform
- pos: -25.5,-8.5
+ pos: -28.5,-12.5
+ parent: 60
+- proto: GunSafeLaserCarbine
+ entities:
+ - uid: 1861
+ components:
+ - type: Transform
+ pos: -24.5,-0.5
parent: 60
- proto: GunSafeRifleLecter
entities:
- - uid: 2183
+ - uid: 10682
components:
- type: Transform
- pos: -28.5,1.5
+ pos: -28.5,0.5
parent: 60
- proto: GunSafeShotgunKammerer
entities:
- - uid: 1821
+ - uid: 1749
components:
- type: Transform
- pos: -28.5,0.5
+ pos: -28.5,-0.5
parent: 60
- proto: GunSafeSubMachineGunDrozd
entities:
- - uid: 14212
+ - uid: 7649
components:
- type: Transform
- pos: -28.5,-0.5
+ pos: -28.5,-1.5
parent: 60
- proto: HandheldGPSBasic
entities:
@@ -109676,13 +109503,6 @@ entities:
- type: Transform
pos: 5.5,-29.5
parent: 60
-- proto: HolopadCommandHos
- entities:
- - uid: 24033
- components:
- - type: Transform
- pos: -20.5,1.5
- parent: 60
- proto: HolopadCommandQm
entities:
- uid: 24063
@@ -109879,12 +109699,19 @@ entities:
- type: Transform
pos: -32.5,13.5
parent: 60
+- proto: HolopadSecurityArmory
+ entities:
+ - uid: 23653
+ components:
+ - type: Transform
+ pos: -26.5,0.5
+ parent: 60
- proto: HolopadSecurityBrig
entities:
- - uid: 24037
+ - uid: 13584
components:
- type: Transform
- pos: -26.5,-14.5
+ pos: -26.5,-5.5
parent: 60
- proto: HolopadSecurityCourtroom
entities:
@@ -109902,17 +109729,17 @@ entities:
parent: 60
- proto: HolopadSecurityFront
entities:
- - uid: 24036
+ - uid: 17958
components:
- type: Transform
- pos: -19.5,-15.5
+ pos: -25.5,-19.5
parent: 60
- proto: HolopadSecurityInterrogation
entities:
- - uid: 24038
+ - uid: 13966
components:
- type: Transform
- pos: -32.5,-3.5
+ pos: -32.5,-1.5
parent: 60
- proto: HolopadSecurityLawyer
entities:
@@ -109930,10 +109757,10 @@ entities:
parent: 60
- proto: HolopadSecurityWarden
entities:
- - uid: 24034
+ - uid: 13971
components:
- type: Transform
- pos: -26.5,-9.5
+ pos: -26.5,-10.5
parent: 60
- proto: HolopadServiceBar
entities:
@@ -109979,10 +109806,10 @@ entities:
parent: 60
- proto: HolopadServiceLibrary
entities:
- - uid: 24049
+ - uid: 14151
components:
- type: Transform
- pos: -8.5,18.5
+ pos: -9.5,19.5
parent: 60
- proto: HolopadServiceNewsroom
entities:
@@ -110214,6 +110041,13 @@ entities:
- type: Transform
pos: -63.49233,41.553234
parent: 60
+- proto: InflatableWallStack5
+ entities:
+ - uid: 8575
+ components:
+ - type: Transform
+ pos: -48.473454,11.5625925
+ parent: 60
- proto: IngotGold
entities:
- uid: 18455
@@ -110255,11 +110089,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -110.5,25.5
parent: 60
- - uid: 5313
+ - uid: 8431
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -1.5,-7.5
+ pos: -3.5,-6.5
parent: 60
- uid: 13568
components:
@@ -110267,12 +110101,6 @@ entities:
rot: 3.141592653589793 rad
pos: -111.5,24.5
parent: 60
- - uid: 14055
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-0.5
- parent: 60
- uid: 24324
components:
- type: Transform
@@ -110292,12 +110120,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,18.5
parent: 60
- - uid: 23836
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-0.5
- parent: 60
- uid: 23837
components:
- type: Transform
@@ -110318,11 +110140,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -29.5,16.5
parent: 60
- - uid: 15845
- components:
- - type: Transform
- pos: -34.5,-21.5
- parent: 60
- uid: 23831
components:
- type: Transform
@@ -110353,16 +110170,16 @@ entities:
parent: 60
- proto: IntercomEngineering
entities:
- - uid: 6286
+ - uid: 9473
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,18.5
+ pos: 2.5,12.5
parent: 60
- - uid: 9473
+ - uid: 14440
components:
- type: Transform
- pos: 2.5,12.5
+ rot: 3.141592653589793 rad
+ pos: -1.5,16.5
parent: 60
- uid: 23847
components:
@@ -110432,29 +110249,12 @@ entities:
parent: 60
- proto: IntercomSecurity
entities:
- - uid: 11129
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,3.5
- parent: 60
- uid: 13118
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -27.5,-27.5
parent: 60
- - uid: 13296
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -28.5,-6.5
- parent: 60
- - uid: 23830
- components:
- - type: Transform
- pos: -17.5,-17.5
- parent: 60
- proto: IntercomService
entities:
- uid: 2754
@@ -110522,11 +110322,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -38.5,-2.5
parent: 60
- - uid: 24335
- components:
- - type: Transform
- pos: -17.5,-18.5
- parent: 60
- uid: 24337
components:
- type: Transform
@@ -110576,15 +110371,15 @@ entities:
parent: 60
- proto: KitchenMicrowave
entities:
- - uid: 367
+ - uid: 356
components:
- type: Transform
- pos: -12.5,-13.5
+ pos: -25.5,-14.5
parent: 60
- - uid: 1530
+ - uid: 367
components:
- type: Transform
- pos: -34.5,2.5
+ pos: -12.5,-13.5
parent: 60
- uid: 2048
components:
@@ -110643,6 +110438,11 @@ entities:
- type: Transform
pos: 37.5,-31.5
parent: 60
+ - uid: 23861
+ components:
+ - type: Transform
+ pos: 25.5,-34.5
+ parent: 60
- uid: 24085
components:
- type: Transform
@@ -110662,11 +110462,6 @@ entities:
- type: Transform
pos: -11.4531975,-27.495203
parent: 60
- - uid: 2042
- components:
- - type: Transform
- pos: -22.39201,0.9298079
- parent: 60
- uid: 2145
components:
- type: Transform
@@ -110689,6 +110484,11 @@ entities:
parent: 60
- type: Physics
canCollide: True
+ - uid: 7033
+ components:
+ - type: Transform
+ pos: -22.385181,-0.05140546
+ parent: 60
- uid: 7638
components:
- type: Transform
@@ -110749,16 +110549,6 @@ entities:
- type: Transform
pos: 25.565468,-15.324441
parent: 60
- - uid: 4234
- components:
- - type: Transform
- pos: -46.455166,-17.122845
- parent: 60
- - uid: 4235
- components:
- - type: Transform
- pos: -41.508133,-17.091595
- parent: 60
- uid: 4717
components:
- type: Transform
@@ -110784,10 +110574,15 @@ entities:
- type: Transform
pos: -8.397732,20.931147
parent: 60
- - uid: 14437
+ - uid: 14163
+ components:
+ - type: Transform
+ pos: -8.599271,11.8332615
+ parent: 60
+ - uid: 14215
components:
- type: Transform
- pos: -10.617271,13.996219
+ pos: -12.5790205,21.938902
parent: 60
- uid: 17683
components:
@@ -110816,10 +110611,10 @@ entities:
parent: 60
- proto: LampInterrogator
entities:
- - uid: 1700
+ - uid: 9051
components:
- type: Transform
- pos: -34.433372,-3.1512034
+ pos: -32.48209,0.70187116
parent: 60
- proto: Lantern
entities:
@@ -110943,6 +110738,8 @@ entities:
linkedPorts:
25409:
- Pressed: Toggle
+ 6207:
+ - Pressed: Toggle
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 15401
@@ -111195,75 +110992,26 @@ entities:
parent: 60
- proto: LockerEvidence
entities:
- - uid: 1725
+ - uid: 1534
components:
- type: Transform
- pos: -29.5,-12.5
+ pos: -23.5,-8.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 5936
+ - uid: 1564
components:
- type: Transform
- pos: -23.5,-11.5
+ pos: -23.5,-7.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 6136
+ - uid: 1568
components:
- type: Transform
- pos: -29.5,-11.5
+ pos: -29.5,-8.5
+ parent: 60
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: -29.5,-7.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- uid: 13610
components:
- type: Transform
@@ -111310,29 +111058,6 @@ entities:
- 0
- 0
- 0
- - uid: 24157
- components:
- - type: Transform
- pos: -23.5,-12.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: LockerFreezer
entities:
- uid: 2623
@@ -111415,42 +111140,13 @@ entities:
showEnts: False
occludes: True
ent: null
-- proto: LockerHeadOfSecurityFilledHardsuit
+- proto: LockerHeadOfSecurityFilled
entities:
- - uid: 5933
+ - uid: 5456
components:
- type: Transform
- pos: -19.5,2.5
+ pos: -20.5,1.5
parent: 60
- - 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:
- - 17672
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: LockerMedicalFilled
entities:
- uid: 2900
@@ -111578,94 +111274,35 @@ entities:
parent: 60
- proto: LockerSecurityFilled
entities:
- - uid: 191
- components:
- - type: Transform
- pos: -34.5,-17.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 1640
+ - uid: 357
components:
- type: Transform
- pos: -34.5,-16.5
+ pos: -24.5,-17.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 1870
+ - uid: 364
components:
- type: Transform
- pos: -30.5,2.5
+ pos: -24.5,-18.5
parent: 60
- - uid: 3072
+ - uid: 491
components:
- type: Transform
- pos: -18.5,-15.5
+ pos: -24.5,-16.5
parent: 60
- - uid: 5661
+ - uid: 541
components:
- type: Transform
- pos: -31.5,2.5
+ pos: -28.5,-16.5
parent: 60
- - uid: 7041
+ - uid: 552
components:
- type: Transform
- pos: -34.5,-18.5
+ pos: -28.5,-17.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 10368
+ - uid: 562
components:
- type: Transform
- pos: -34.5,-19.5
+ pos: -28.5,-18.5
parent: 60
- proto: LockerSyndicatePersonal
entities:
@@ -111716,10 +111353,10 @@ entities:
parent: 60
- proto: LockerWardenFilledHardsuit
entities:
- - uid: 6546
+ - uid: 1560
components:
- type: Transform
- pos: -25.5,-7.5
+ pos: -28.5,-11.5
parent: 60
- proto: LockerWeldingSuppliesFilled
entities:
@@ -111903,27 +111540,32 @@ entities:
parent: 60
- proto: MagazineLightRifle
entities:
- - uid: 11282
+ - uid: 1863
components:
- type: Transform
- pos: -24.328882,2.6569912
+ pos: -24.619633,1.6028056
parent: 60
- - uid: 13667
+ - uid: 5840
+ components:
+ - type: Transform
+ pos: -24.260258,1.5715555
+ parent: 60
+ - uid: 6972
components:
- type: Transform
- pos: -24.563257,2.6569912
+ pos: -24.416508,1.5715555
parent: 60
- proto: MagazinePistolSubMachineGunTopMounted
entities:
- - uid: 13800
+ - uid: 1902
components:
- type: Transform
- pos: -21.437603,0.8355694
+ pos: -21.416431,-0.15709138
parent: 60
- - uid: 16678
+ - uid: 8002
components:
- type: Transform
- pos: -21.437603,0.8355694
+ pos: -21.416431,-0.15709138
parent: 60
- proto: MaintenanceFluffSpawner
entities:
@@ -111957,6 +111599,11 @@ entities:
- type: Transform
pos: -64.5,2.5
parent: 60
+ - uid: 8448
+ components:
+ - type: Transform
+ pos: -20.5,5.5
+ parent: 60
- uid: 8999
components:
- type: Transform
@@ -111982,11 +111629,6 @@ entities:
- type: Transform
pos: -36.5,20.5
parent: 60
- - uid: 18605
- components:
- - type: Transform
- pos: -20.5,5.5
- parent: 60
- uid: 20076
components:
- type: Transform
@@ -112164,16 +111806,6 @@ entities:
- type: Transform
pos: 30.5,-16.5
parent: 60
- - uid: 796
- components:
- - type: Transform
- pos: -18.5,-7.5
- parent: 60
- - uid: 4746
- components:
- - type: Transform
- pos: -18.5,-2.5
- parent: 60
- uid: 8750
components:
- type: Transform
@@ -112246,11 +111878,6 @@ entities:
parent: 60
- proto: MedkitFilled
entities:
- - uid: 3493
- components:
- - type: Transform
- pos: -19.525343,-2.3159127
- parent: 60
- uid: 5914
components:
- type: Transform
@@ -112261,6 +111888,11 @@ entities:
- type: Transform
pos: 29.57766,-48.642044
parent: 60
+ - uid: 8710
+ components:
+ - type: Transform
+ pos: -20.43703,-13.469859
+ parent: 60
- uid: 12332
components:
- type: Transform
@@ -112288,10 +111920,10 @@ entities:
- type: Transform
pos: 24.473473,-44.545494
parent: 60
- - uid: 9681
+ - uid: 11551
components:
- type: Transform
- pos: -19.322544,-2.322325
+ pos: -20.327656,-13.344859
parent: 60
- uid: 21361
components:
@@ -112449,12 +112081,6 @@ entities:
- 0
- 0
- 0
- - uid: 315
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -19.5,-5.5
- parent: 60
- uid: 319
components:
- type: Transform
@@ -113135,10 +112761,10 @@ entities:
parent: 60
- proto: PaintingPersistenceOfMemory
entities:
- - uid: 18852
+ - uid: 14162
components:
- type: Transform
- pos: -11.5,14.5
+ pos: -5.5,17.5
parent: 60
- proto: PaintingPrayerHands
entities:
@@ -113198,15 +112824,70 @@ entities:
parent: 60
- proto: Paper
entities:
+ - uid: 307
+ components:
+ - type: Transform
+ pos: -34.514378,-11.291034
+ parent: 60
- uid: 934
components:
- type: Transform
pos: -10.55104,-28.480585
parent: 60
- - uid: 4516
+ - uid: 1908
+ components:
+ - type: Transform
+ pos: -34.514378,-11.291034
+ parent: 60
+ - uid: 1913
components:
- type: Transform
- pos: -33.489323,-3.402731
+ pos: -34.514378,-11.291034
+ parent: 60
+ - uid: 2098
+ components:
+ - type: Transform
+ pos: -34.514378,-7.2774615
+ parent: 60
+ - uid: 5368
+ components:
+ - type: Transform
+ pos: -18.493418,-11.280288
+ parent: 60
+ - uid: 5424
+ components:
+ - type: Transform
+ pos: -18.493418,-11.280288
+ parent: 60
+ - uid: 6648
+ components:
+ - type: Transform
+ pos: -18.483002,-7.265358
+ parent: 60
+ - uid: 6683
+ components:
+ - type: Transform
+ pos: -34.514378,-7.2774615
+ parent: 60
+ - uid: 6819
+ components:
+ - type: Transform
+ pos: -18.493418,-11.280288
+ parent: 60
+ - uid: 7166
+ components:
+ - type: Transform
+ pos: -18.483002,-7.265358
+ parent: 60
+ - uid: 8264
+ components:
+ - type: Transform
+ pos: -34.514378,-7.2774615
+ parent: 60
+ - uid: 8278
+ components:
+ - type: Transform
+ pos: -18.483002,-7.265358
parent: 60
- uid: 8760
components:
@@ -113353,16 +113034,6 @@ entities:
- type: Transform
pos: -6.5813313,20.579428
parent: 60
- - uid: 14215
- components:
- - type: Transform
- pos: -8.515039,16.595964
- parent: 60
- - uid: 14216
- components:
- - type: Transform
- pos: -9.030664,17.502214
- parent: 60
- uid: 17389
components:
- type: Transform
@@ -113490,13 +113161,6 @@ entities:
- type: Transform
pos: 4.5,-31.5
parent: 60
-- proto: PaperBin20
- entities:
- - uid: 23942
- components:
- - type: Transform
- pos: -33.5,-3.5
- parent: 60
- proto: PaperBin5
entities:
- uid: 4255
@@ -113504,11 +113168,26 @@ entities:
- type: Transform
pos: -48.5,-19.5
parent: 60
+ - uid: 8443
+ components:
+ - type: Transform
+ pos: -40.5,-17.5
+ parent: 60
+ - uid: 8444
+ components:
+ - type: Transform
+ pos: -46.5,-17.5
+ parent: 60
- uid: 9478
components:
- type: Transform
pos: -44.5,-7.5
parent: 60
+ - uid: 11372
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 60
- uid: 16451
components:
- type: Transform
@@ -113540,59 +113219,59 @@ entities:
parent: 60
- proto: ParticleAcceleratorControlBox
entities:
- - uid: 5542
+ - uid: 16390
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,33.5
+ pos: 1.5,34.5
parent: 60
- proto: ParticleAcceleratorEmitterForeUnfinished
entities:
- - uid: 16403
+ - uid: 15521
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,35.5
+ pos: 0.5,36.5
parent: 60
- proto: ParticleAcceleratorEmitterPortUnfinished
entities:
- - uid: 16349
+ - uid: 15522
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -0.5,35.5
+ pos: -0.5,36.5
parent: 60
- proto: ParticleAcceleratorEmitterStarboardUnfinished
entities:
- - uid: 16402
+ - uid: 14514
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 1.5,35.5
+ pos: 1.5,36.5
parent: 60
- proto: ParticleAcceleratorEndCapUnfinished
entities:
- - uid: 16405
+ - uid: 15520
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,32.5
+ pos: 0.5,33.5
parent: 60
- proto: ParticleAcceleratorFuelChamberUnfinished
entities:
- - uid: 15520
+ - uid: 16420
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,33.5
+ pos: 0.5,34.5
parent: 60
- proto: ParticleAcceleratorPowerBoxUnfinished
entities:
- - uid: 16404
+ - uid: 15523
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,34.5
+ pos: 0.5,35.5
parent: 60
- proto: PartRodMetal
entities:
@@ -113651,6 +113330,11 @@ entities:
- type: Transform
pos: 68.478806,-13.493814
parent: 60
+ - uid: 23913
+ components:
+ - type: Transform
+ pos: -8.4650955,36.5825
+ parent: 60
- uid: 24781
components:
- type: Transform
@@ -113670,21 +113354,36 @@ entities:
parent: 60
- proto: Pen
entities:
- - uid: 307
+ - uid: 935
components:
- type: Transform
- pos: -33.739323,-3.465231
+ pos: -10.316665,-28.324335
parent: 60
- - uid: 935
+ - uid: 1856
components:
- type: Transform
- pos: -10.316665,-28.324335
+ pos: -34.5,-7.5
+ parent: 60
+ - uid: 1903
+ components:
+ - type: Transform
+ pos: -34.5,-11.5
parent: 60
- uid: 4668
components:
- type: Transform
pos: 6.7427726,-42.739647
parent: 60
+ - uid: 5428
+ components:
+ - type: Transform
+ pos: -18.5,-11.5
+ parent: 60
+ - uid: 6041
+ components:
+ - type: Transform
+ pos: -18.5,-7.5
+ parent: 60
- uid: 9088
components:
- type: Transform
@@ -113715,6 +113414,16 @@ entities:
- type: Transform
pos: -35.320312,19.746838
parent: 60
+ - uid: 18215
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 60
+ - uid: 18462
+ components:
+ - type: Transform
+ pos: -31.435102,-20.467825
+ parent: 60
- uid: 23152
components:
- type: Transform
@@ -113742,10 +113451,10 @@ entities:
- type: Transform
pos: -113.45662,13.529887
parent: 60
- - uid: 14211
+ - uid: 14165
components:
- type: Transform
- pos: -10.48097,11.426869
+ pos: -11.458646,12.4738865
parent: 60
- uid: 18573
components:
@@ -113769,7 +113478,7 @@ entities:
- uid: 21040
components:
- type: Transform
- pos: -3.519828,-6.376233
+ pos: -3.2859347,-6.2203565
parent: 60
- proto: PianoInstrument
entities:
@@ -113837,10 +113546,10 @@ entities:
- type: Transform
pos: -25.5,35.5
parent: 60
- - uid: 16418
+ - uid: 21644
components:
- type: Transform
- pos: -6.5,33.5
+ pos: -5.5,34.5
parent: 60
- proto: PlasmaOre1
entities:
@@ -113951,6 +113660,26 @@ entities:
- type: Transform
pos: -17.5,26.5
parent: 60
+ - uid: 14152
+ components:
+ - type: Transform
+ pos: 55.5,4.5
+ parent: 60
+ - uid: 14160
+ components:
+ - type: Transform
+ pos: 51.5,4.5
+ parent: 60
+ - uid: 14166
+ components:
+ - type: Transform
+ pos: 46.5,4.5
+ parent: 60
+ - uid: 14437
+ components:
+ - type: Transform
+ pos: 52.5,4.5
+ parent: 60
- uid: 18799
components:
- type: Transform
@@ -114066,10 +113795,10 @@ entities:
parent: 60
- proto: PortableFlasher
entities:
- - uid: 5842
+ - uid: 10680
components:
- type: Transform
- pos: -26.5,0.5
+ pos: -26.5,-0.5
parent: 60
- proto: PortableGeneratorJrPacman
entities:
@@ -114078,11 +113807,6 @@ entities:
- type: Transform
pos: 40.5,-48.5
parent: 60
- - uid: 4004
- components:
- - type: Transform
- pos: -31.5,4.50001
- parent: 60
- uid: 5402
components:
- type: Transform
@@ -114113,6 +113837,11 @@ entities:
- type: Transform
pos: 24.5,19.5
parent: 60
+ - uid: 21392
+ components:
+ - type: Transform
+ pos: -32.5,3.5
+ parent: 60
- uid: 21677
components:
- type: Transform
@@ -114249,13 +113978,6 @@ entities:
- type: Transform
pos: -107.5,12.5
parent: 60
-- proto: PosterContrabandBountyHunters
- entities:
- - uid: 13582
- components:
- - type: Transform
- pos: -29.5,1.5
- parent: 60
- proto: PosterContrabandC20r
entities:
- uid: 9128
@@ -114440,10 +114162,10 @@ entities:
parent: 60
- proto: PosterContrabandRevolver
entities:
- - uid: 13585
+ - uid: 4754
components:
- type: Transform
- pos: -24.5,3.5
+ pos: -24.5,2.5
parent: 60
- proto: PosterContrabandRIPBadger
entities:
@@ -114518,15 +114240,15 @@ entities:
parent: 60
- proto: PosterContrabandUnreadableAnnouncement
entities:
- - uid: 1548
+ - uid: 5663
components:
- type: Transform
- pos: -33.512638,-14.264637
+ pos: 35.5,-9.5
parent: 60
- - uid: 5663
+ - uid: 8419
components:
- type: Transform
- pos: 35.5,-9.5
+ pos: -33.49567,-12.27123
parent: 60
- proto: PosterContrabandVoteWeh
entities:
@@ -114535,13 +114257,6 @@ entities:
- type: Transform
pos: 56.5,-9.5
parent: 60
-- proto: PosterContrabandWaffleCorp
- entities:
- - uid: 17467
- components:
- - type: Transform
- pos: -23.5,2.5
- parent: 60
- proto: PosterContrabandWehWatches
entities:
- uid: 154
@@ -114556,11 +114271,6 @@ entities:
- type: Transform
pos: 8.5,-35.5
parent: 60
- - uid: 9111
- components:
- - type: Transform
- pos: -23.5,1.5
- parent: 60
- proto: PosterLegit50thAnniversaryVintageReprint
entities:
- uid: 9565
@@ -114649,10 +114359,10 @@ entities:
parent: 60
- proto: PosterLegitEnlist
entities:
- - uid: 1697
+ - uid: 8452
components:
- type: Transform
- pos: -29.5,-0.5
+ pos: -23.5,-17.5
parent: 60
- proto: PosterLegitFoamForceAd
entities:
@@ -114723,10 +114433,10 @@ entities:
parent: 60
- proto: PosterLegitIonRifle
entities:
- - uid: 13583
+ - uid: 8453
components:
- type: Transform
- pos: -28.5,3.5
+ pos: -28.5,2.5
parent: 60
- proto: PosterLegitJustAWeekAway
entities:
@@ -114850,10 +114560,10 @@ entities:
parent: 60
- proto: PosterLegitNTTGC
entities:
- - uid: 17250
+ - uid: 14157
components:
- type: Transform
- pos: -11.5,13.5
+ pos: -12.5,14.5
parent: 60
- proto: PosterLegitPDAAd
entities:
@@ -114883,15 +114593,15 @@ entities:
parent: 60
- proto: PosterLegitReportCrimes
entities:
- - uid: 1635
+ - uid: 4697
components:
- type: Transform
- pos: -29.5,-21.5
+ pos: -2.5,-43.5
parent: 60
- - uid: 4697
+ - uid: 8420
components:
- type: Transform
- pos: -2.5,-43.5
+ pos: -22.5,-21.5
parent: 60
- uid: 16151
components:
@@ -115012,15 +114722,10 @@ entities:
- type: Transform
pos: 14.5,-18.5
parent: 60
- - uid: 13584
- components:
- - type: Transform
- pos: -21.5,3.5
- parent: 60
- - uid: 24184
+ - uid: 8506
components:
- type: Transform
- pos: -33.5,-1.5
+ pos: -33.5,1.5
parent: 60
- proto: PosterLegitTheOwl
entities:
@@ -115092,6 +114797,11 @@ entities:
- type: Transform
pos: -1.5,-2.5
parent: 60
+ - uid: 8434
+ components:
+ - type: Transform
+ pos: -23.5,-21.5
+ parent: 60
- uid: 9006
components:
- type: Transform
@@ -115102,11 +114812,6 @@ entities:
- type: Transform
pos: 10.5,16.5
parent: 60
- - uid: 11336
- components:
- - type: Transform
- pos: -23.5,-21.5
- parent: 60
- uid: 11337
components:
- type: Transform
@@ -115208,32 +114913,32 @@ entities:
parent: 60
- proto: PottedPlant22
entities:
- - uid: 3843
+ - uid: 8476
components:
- type: Transform
- pos: -6.5,-44.5
+ pos: -6.5129194,-44.833622
parent: 60
- - uid: 17295
+ - uid: 18487
components:
- type: Transform
- pos: -0.5,-2.5
+ pos: 1.5,-7.5
parent: 60
- - uid: 17330
+ - uid: 23896
components:
- type: Transform
- pos: -0.5,-7.5
+ pos: 1.5,-2.5
parent: 60
- proto: PottedPlant24
entities:
- - uid: 19961
+ - uid: 14156
components:
- type: Transform
- pos: -20.580471,15.2164345
+ pos: -6.5,15.5
parent: 60
- - uid: 21362
+ - uid: 19961
components:
- type: Transform
- pos: -11.5,15.5
+ pos: -20.580471,15.2164345
parent: 60
- proto: PottedPlant26
entities:
@@ -115260,11 +114965,6 @@ entities:
- type: Transform
pos: -1.5,21.5
parent: 60
- - uid: 24102
- components:
- - type: Transform
- pos: -30.486118,-20.71535
- parent: 60
- proto: PottedPlant4
entities:
- uid: 15519
@@ -115342,24 +115042,6 @@ entities:
parent: 60
- proto: PottedPlantRandom
entities:
- - uid: 1238
- components:
- - type: Transform
- pos: -17.5,2.5
- parent: 60
- - uid: 1638
- components:
- - type: Transform
- pos: -26.5,-18.5
- parent: 60
- - type: ContainerContainer
- containers:
- stash: !type:ContainerSlot {}
- - uid: 1938
- components:
- - type: Transform
- pos: -28.5,-5.5
- parent: 60
- uid: 2774
components:
- type: Transform
@@ -115445,11 +115127,6 @@ entities:
- type: ContainerContainer
containers:
stash: !type:ContainerSlot {}
- - uid: 9549
- components:
- - type: Transform
- pos: -36.5,-4.5
- parent: 60
- uid: 11530
components:
- type: Transform
@@ -115562,6 +115239,11 @@ entities:
- type: Transform
pos: -109.5,2.5
parent: 60
+ - uid: 23892
+ components:
+ - type: Transform
+ pos: -17.5,0.5
+ parent: 60
- uid: 24018
components:
- type: Transform
@@ -115603,11 +115285,10 @@ entities:
- type: Transform
pos: 36.5,-13.5
parent: 60
- - uid: 1620
+ - uid: 1650
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,3.5
+ pos: -28.5,-20.5
parent: 60
- uid: 4698
components:
@@ -115710,6 +115391,11 @@ entities:
parent: 60
- type: Physics
canCollide: False
+ - uid: 21154
+ components:
+ - type: Transform
+ pos: -18.5,-13.5
+ parent: 60
- uid: 23114
components:
- type: Transform
@@ -115729,6 +115415,29 @@ entities:
parent: 60
- proto: PoweredDimSmallLight
entities:
+ - uid: 8504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-16.5
+ parent: 60
+ - uid: 8601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -12.5,-10.5
+ parent: 60
+ - uid: 11366
+ components:
+ - type: Transform
+ pos: -21.5,5.5
+ parent: 60
+ - uid: 11945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,2.5
+ parent: 60
- uid: 18490
components:
- type: Transform
@@ -115827,11 +115536,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -61.5,29.5
parent: 60
- - uid: 19620
- components:
- - type: Transform
- pos: -22.5,5.5
- parent: 60
- uid: 19621
components:
- type: Transform
@@ -115986,14 +115690,12 @@ entities:
parent: 60
- proto: Poweredlight
entities:
- - uid: 96
+ - uid: 6
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 41.5,-7.5
+ pos: -14.5,-17.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 126
components:
- type: Transform
@@ -116044,22 +115746,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 1209
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-15.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1210
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-20.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 1295
components:
- type: Transform
@@ -116075,52 +115761,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 1536
- components:
- - type: Transform
- pos: -25.5,-7.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1537
- components:
- - type: Transform
- pos: -27.5,-7.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1663
- components:
- - type: Transform
- pos: -24.5,2.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1831
- components:
- - type: Transform
- pos: -28.5,2.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1881
- components:
- - type: Transform
- pos: -19.5,-15.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 1939
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,0.5
- parent: 60
- - uid: 1978
+ - uid: 1584
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -23.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-15.5
parent: 60
- uid: 2106
components:
@@ -116128,14 +115773,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -6.5,15.5
parent: 60
- - uid: 2115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-5.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 2117
components:
- type: Transform
@@ -116144,30 +115781,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 2118
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-5.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2120
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-14.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2121
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-14.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 2141
components:
- type: Transform
@@ -116304,6 +115917,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -2.5,-4.5
parent: 60
+ - uid: 3224
+ components:
+ - type: Transform
+ pos: -28.5,1.5
+ parent: 60
- uid: 3691
components:
- type: Transform
@@ -116319,6 +115937,17 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 4234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -24.5,-17.5
+ parent: 60
+ - uid: 4281
+ components:
+ - type: Transform
+ pos: -23.5,-3.5
+ parent: 60
- uid: 4358
components:
- type: Transform
@@ -116428,12 +116057,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,1.5
- parent: 60
- uid: 5826
components:
- type: Transform
@@ -116487,13 +116110,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5925
- components:
- - type: Transform
- pos: -7.5,-26.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 5928
components:
- type: Transform
@@ -116552,14 +116168,17 @@ entities:
- type: Transform
pos: 9.5,-19.5
parent: 60
- - uid: 6714
+ - uid: 6708
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-26.5
+ rot: 3.141592653589793 rad
+ pos: -33.5,-20.5
+ parent: 60
+ - uid: 6797
+ components:
+ - type: Transform
+ pos: -29.5,-3.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 6915
components:
- type: Transform
@@ -116585,6 +116204,12 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 7232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -27.5,-12.5
+ parent: 60
- uid: 7632
components:
- type: Transform
@@ -116605,6 +116230,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 47.5,-13.5
parent: 60
+ - uid: 7906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-19.5
+ parent: 60
- uid: 8041
components:
- type: Transform
@@ -116626,6 +116257,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 8352
+ components:
+ - type: Transform
+ pos: -24.5,1.5
+ parent: 60
- uid: 8390
components:
- type: Transform
@@ -116637,14 +116273,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -28.5,14.5
parent: 60
- - uid: 8401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-10.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 8404
components:
- type: Transform
@@ -116657,32 +116285,48 @@ entities:
rot: -1.5707963267948966 rad
pos: -22.5,19.5
parent: 60
- - uid: 9163
+ - uid: 8525
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -22.5,14.5
+ pos: -36.5,-16.5
parent: 60
- - uid: 9165
+ - uid: 8526
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,-38.5
+ pos: -38.5,-8.5
parent: 60
- - uid: 9176
+ - uid: 8571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -36.5,-2.5
+ parent: 60
+ - uid: 8572
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -34.5,-19.5
+ pos: -28.5,-17.5
parent: 60
- - uid: 9223
+ - uid: 8576
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 36.5,-7.5
+ pos: -16.5,4.5
+ parent: 60
+ - uid: 9163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,14.5
+ parent: 60
+ - uid: 9165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-38.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 9427
components:
- type: Transform
@@ -116711,12 +116355,6 @@ entities:
rot: 3.141592653589793 rad
pos: -56.5,11.5
parent: 60
- - uid: 9679
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -30.5,1.5
- parent: 60
- uid: 10202
components:
- type: Transform
@@ -116753,14 +116391,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 10671
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-15.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 10672
components:
- type: Transform
@@ -116768,14 +116398,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 10673
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-21.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 10674
components:
- type: Transform
@@ -116783,61 +116405,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 10676
- components:
- - type: Transform
- pos: -17.5,-22.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10677
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-21.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10678
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-8.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10680
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-8.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10682
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,-3.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10684
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,2.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 10685
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -36.5,6.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 10687
components:
- type: Transform
@@ -116996,12 +116563,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 11128
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-16.5
- parent: 60
- uid: 11726
components:
- type: Transform
@@ -117057,12 +116618,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 13478
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-16.5
- parent: 60
- uid: 13480
components:
- type: Transform
@@ -117101,22 +116656,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 13972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,5.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 14228
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -10.5,13.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 14734
components:
- type: Transform
@@ -117360,22 +116899,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 16537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,33.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 16538
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,33.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 17018
components:
- type: Transform
@@ -117500,14 +117023,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 17987
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -16.5,-1.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 18095
components:
- type: Transform
@@ -117679,13 +117194,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 45.5,5.5
parent: 60
- - uid: 19879
- components:
- - type: Transform
- pos: -28.5,-2.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 20985
components:
- type: Transform
@@ -117718,11 +117226,22 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 21504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -16.5,-2.5
+ parent: 60
- uid: 21703
components:
- type: Transform
pos: -46.5,-15.5
parent: 60
+ - uid: 21764
+ components:
+ - type: Transform
+ pos: -33.5,-13.5
+ parent: 60
- uid: 23116
components:
- type: Transform
@@ -117932,16 +117451,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 55.5,46.5
parent: 60
- - uid: 23923
- components:
- - type: Transform
- pos: -24.5,-2.5
- parent: 60
- - uid: 23941
+ - uid: 23836
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -29.5,-20.5
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-8.5
parent: 60
- uid: 24109
components:
@@ -117988,6 +117502,18 @@ entities:
- type: Transform
pos: 34.5,51.5
parent: 60
+- proto: PoweredlightExterior
+ entities:
+ - uid: 8581
+ components:
+ - type: Transform
+ pos: -31.5,-26.5
+ parent: 60
+ - uid: 8582
+ components:
+ - type: Transform
+ pos: -39.5,-26.5
+ parent: 60
- proto: PoweredlightLED
entities:
- uid: 3166
@@ -118026,20 +117552,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5294
- components:
- - type: Transform
- pos: -31.5,-26.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 5810
- components:
- - type: Transform
- pos: -39.5,-26.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 23131
components:
- type: Transform
@@ -118152,6 +117664,12 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 16357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,40.5
+ parent: 60
- uid: 20978
components:
- type: Transform
@@ -118168,52 +117686,22 @@ entities:
parent: 60
- proto: PoweredSmallLight
entities:
- - uid: 109
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-17.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 176
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-19.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 180
+ - uid: 313
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-16.5
+ pos: -20.5,-9.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 234
+ - uid: 314
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-18.5
+ pos: -20.5,-5.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 769
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -12.5,-20.5
parent: 60
- - uid: 937
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-27.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 1211
components:
- type: Transform
@@ -118229,56 +117717,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 1534
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -12.5,-10.5
- parent: 60
- - uid: 2091
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-3.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2094
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2095
- components:
- - type: Transform
- pos: -19.5,-9.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2096
- components:
- - type: Transform
- pos: -33.5,-6.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2097
- components:
- - type: Transform
- pos: -33.5,-9.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 2182
+ - uid: 1657
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-35.5
+ pos: -32.5,-5.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 2819
components:
- type: Transform
@@ -118307,13 +117750,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 4014
- components:
- - type: Transform
- pos: -16.5,-28.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 4293
components:
- type: Transform
@@ -118349,13 +117785,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 4554
- components:
- - type: Transform
- pos: -33.5,-12.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 4572
components:
- type: Transform
@@ -118386,14 +117815,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 7014
+ - uid: 7139
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-28.5
+ pos: -32.5,-9.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 7186
components:
- type: Transform
@@ -118432,13 +117858,36 @@ entities:
- type: Transform
pos: -46.5,21.5
parent: 60
- - uid: 8403
+ - uid: 8484
components:
- type: Transform
- pos: -13.5,-50.5
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-10.5
+ parent: 60
+ - uid: 8503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-5.5
+ parent: 60
+ - uid: 8518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -11.5,-28.5
+ parent: 60
+ - uid: 8519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-10.5
+ parent: 60
+ - uid: 8598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-26.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 8765
components:
- type: Transform
@@ -118600,51 +118049,48 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,33.5
parent: 60
- - uid: 16344
+ - uid: 16348
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 6.5,34.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,36.5
parent: 60
- - uid: 16679
+ - uid: 16349
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -39.5,11.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,33.5
parent: 60
- - uid: 17158
+ - uid: 16359
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,14.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,36.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 17466
+ - uid: 16423
components:
- type: Transform
- pos: -34.5,21.5
+ rot: 1.5707963267948966 rad
+ pos: 8.5,36.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 17469
+ - uid: 16679
components:
- type: Transform
- pos: -46.5,25.5
+ rot: 3.141592653589793 rad
+ pos: -39.5,11.5
parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 17470
+ - uid: 17158
components:
- type: Transform
- pos: -54.5,25.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,14.5
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 17471
+ - uid: 17470
components:
- type: Transform
- pos: -54.5,21.5
+ pos: -54.5,25.5
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
@@ -118671,6 +118117,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 17960
+ components:
+ - type: Transform
+ pos: -32.5,0.5
+ parent: 60
- uid: 18629
components:
- type: Transform
@@ -118685,14 +118136,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 18822
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-28.5
- parent: 60
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 18853
components:
- type: Transform
@@ -118708,17 +118151,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 18997
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-3.5
- parent: 60
- - uid: 19130
- components:
- - type: Transform
- pos: -6.5,-44.5
- parent: 60
- uid: 19194
components:
- type: Transform
@@ -118806,11 +118238,6 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 21067
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 60
- uid: 21246
components:
- type: Transform
@@ -118830,18 +118257,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -55.5,17.5
parent: 60
- - uid: 22450
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,35.5
- parent: 60
- - uid: 22453
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,38.5
- parent: 60
- uid: 22466
components:
- type: Transform
@@ -118910,10 +118325,11 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 23943
+ - uid: 23901
components:
- type: Transform
- pos: -31.5,5.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,36.5
parent: 60
- uid: 24138
components:
@@ -118966,6 +118382,97 @@ entities:
parent: 60
- type: ApcPowerReceiver
powerLoad: 0
+- proto: PoweredWarmSmallLight
+ entities:
+ - uid: 1728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-3.5
+ parent: 60
+ - uid: 7031
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-0.5
+ parent: 60
+ - uid: 8523
+ components:
+ - type: Transform
+ pos: -46.5,25.5
+ parent: 60
+ - uid: 8590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-17.5
+ parent: 60
+ - uid: 8595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-19.5
+ parent: 60
+ - uid: 8596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-18.5
+ parent: 60
+ - uid: 8597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-16.5
+ parent: 60
+ - uid: 8654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-35.5
+ parent: 60
+ - uid: 8655
+ components:
+ - type: Transform
+ pos: -16.5,-28.5
+ parent: 60
+ - uid: 8662
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-29.5
+ parent: 60
+ - uid: 8664
+ components:
+ - type: Transform
+ pos: -13.5,-50.5
+ parent: 60
+ - uid: 8665
+ components:
+ - type: Transform
+ pos: -34.5,21.5
+ parent: 60
+ - uid: 8667
+ components:
+ - type: Transform
+ pos: -54.5,21.5
+ parent: 60
+ - uid: 8668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-27.5
+ parent: 60
+ - uid: 8671
+ components:
+ - type: Transform
+ pos: -6.5,-44.5
+ parent: 60
+ - uid: 8946
+ components:
+ - type: Transform
+ pos: -12.5,-50.5
+ parent: 60
- proto: Protolathe
entities:
- uid: 7081
@@ -118987,11 +118494,6 @@ entities:
- type: Transform
pos: 29.5,-10.5
parent: 60
- - uid: 1293
- components:
- - type: Transform
- pos: -28.5,2.5
- parent: 60
- uid: 1372
components:
- type: Transform
@@ -119007,10 +118509,10 @@ entities:
- type: Transform
pos: -31.5,-30.5
parent: 60
- - uid: 1819
+ - uid: 1907
components:
- type: Transform
- pos: -24.5,1.5
+ pos: -22.5,-20.5
parent: 60
- uid: 2174
components:
@@ -119047,6 +118549,11 @@ entities:
- type: Transform
pos: 44.5,-42.5
parent: 60
+ - uid: 3843
+ components:
+ - type: Transform
+ pos: -20.5,5.5
+ parent: 60
- uid: 3970
components:
- type: Transform
@@ -119112,6 +118619,11 @@ entities:
- type: Transform
pos: -55.5,-16.5
parent: 60
+ - uid: 5430
+ components:
+ - type: Transform
+ pos: -24.5,-20.5
+ parent: 60
- uid: 5777
components:
- type: Transform
@@ -119122,6 +118634,11 @@ entities:
- type: Transform
pos: -67.5,11.5
parent: 60
+ - uid: 6206
+ components:
+ - type: Transform
+ pos: -24.5,0.5
+ parent: 60
- uid: 6240
components:
- type: Transform
@@ -119152,6 +118669,11 @@ entities:
- type: Transform
pos: -0.5,15.5
parent: 60
+ - uid: 6734
+ components:
+ - type: Transform
+ pos: -28.5,1.5
+ parent: 60
- uid: 7035
components:
- type: Transform
@@ -119162,6 +118684,11 @@ entities:
- type: Transform
pos: 13.5,-15.5
parent: 60
+ - uid: 7650
+ components:
+ - type: Transform
+ pos: -24.5,-12.5
+ parent: 60
- uid: 7703
components:
- type: Transform
@@ -119247,6 +118774,11 @@ entities:
- type: Transform
pos: 45.5,-1.5
parent: 60
+ - uid: 14119
+ components:
+ - type: Transform
+ pos: -14.5,32.5
+ parent: 60
- uid: 15158
components:
- type: Transform
@@ -119262,6 +118794,16 @@ entities:
- type: Transform
pos: 4.5,23.5
parent: 60
+ - uid: 16528
+ components:
+ - type: Transform
+ pos: 10.5,34.5
+ parent: 60
+ - uid: 16538
+ components:
+ - type: Transform
+ pos: 10.5,35.5
+ parent: 60
- uid: 17155
components:
- type: Transform
@@ -119272,11 +118814,6 @@ entities:
- type: Transform
pos: 6.5,-48.5
parent: 60
- - uid: 18604
- components:
- - type: Transform
- pos: -20.5,5.5
- parent: 60
- uid: 19043
components:
- type: Transform
@@ -119337,6 +118874,11 @@ entities:
- type: Transform
pos: 28.5,-7.5
parent: 60
+ - uid: 21162
+ components:
+ - type: Transform
+ pos: -27.5,-12.5
+ parent: 60
- uid: 21610
components:
- type: Transform
@@ -119347,6 +118889,11 @@ entities:
- type: Transform
pos: -32.5,38.5
parent: 60
+ - uid: 23912
+ components:
+ - type: Transform
+ pos: -8.5,36.5
+ parent: 60
- uid: 24161
components:
- type: Transform
@@ -119507,12 +119054,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.5,35.5
parent: 60
- - uid: 10585
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-6.5
- parent: 60
- uid: 16130
components:
- type: Transform
@@ -119663,18 +119204,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -11.5,57.5
parent: 60
- - uid: 24374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-5.5
- parent: 60
- - uid: 24375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,-4.5
- parent: 60
- proto: RailingCorner
entities:
- uid: 24199
@@ -120055,11 +119584,6 @@ entities:
- type: Transform
pos: -60.5,14.5
parent: 60
- - uid: 18092
- components:
- - type: Transform
- pos: -35.5,0.5
- parent: 60
- uid: 18093
components:
- type: Transform
@@ -120128,47 +119652,11 @@ entities:
parent: 60
- proto: RandomSpawner
entities:
- - uid: 258
- components:
- - type: Transform
- pos: -16.5,21.5
- parent: 60
- - uid: 295
- components:
- - type: Transform
- pos: -35.5,25.5
- parent: 60
- - uid: 323
- components:
- - type: Transform
- pos: -16.5,-3.5
- parent: 60
- - uid: 352
- components:
- - type: Transform
- pos: -22.5,9.5
- parent: 60
- - uid: 584
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 60
- - uid: 707
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-20.5
- parent: 60
- uid: 817
components:
- type: Transform
pos: 47.5,0.5
parent: 60
- - uid: 2162
- components:
- - type: Transform
- pos: -27.5,-22.5
- parent: 60
- uid: 2163
components:
- type: Transform
@@ -120204,11 +119692,6 @@ entities:
- type: Transform
pos: 8.5,-41.5
parent: 60
- - uid: 3590
- components:
- - type: Transform
- pos: 23.5,-24.5
- parent: 60
- uid: 3621
components:
- type: Transform
@@ -120279,16 +119762,6 @@ entities:
- type: Transform
pos: -7.5,-54.5
parent: 60
- - uid: 5246
- components:
- - type: Transform
- pos: 34.5,-22.5
- parent: 60
- - uid: 5247
- components:
- - type: Transform
- pos: 15.5,-16.5
- parent: 60
- uid: 5329
components:
- type: Transform
@@ -120304,11 +119777,6 @@ entities:
- type: Transform
pos: -41.5,-28.5
parent: 60
- - uid: 5688
- components:
- - type: Transform
- pos: -35.5,-24.5
- parent: 60
- uid: 6237
components:
- type: Transform
@@ -120319,11 +119787,6 @@ entities:
- type: Transform
pos: 9.5,12.5
parent: 60
- - uid: 6333
- components:
- - type: Transform
- pos: 13.5,14.5
- parent: 60
- uid: 6443
components:
- type: Transform
@@ -120360,11 +119823,6 @@ entities:
- type: Transform
pos: -58.5,-13.5
parent: 60
- - uid: 8744
- components:
- - type: Transform
- pos: 15.5,20.5
- parent: 60
- uid: 10809
components:
- type: Transform
@@ -120375,11 +119833,6 @@ entities:
- type: Transform
pos: -4.5,-30.5
parent: 60
- - uid: 13139
- components:
- - type: Transform
- pos: 29.5,8.5
- parent: 60
- uid: 18720
components:
- type: Transform
@@ -120405,11 +119858,6 @@ entities:
- type: Transform
pos: -43.5,-13.5
parent: 60
- - uid: 19514
- components:
- - type: Transform
- pos: 24.5,23.5
- parent: 60
- uid: 19722
components:
- type: Transform
@@ -120425,11 +119873,6 @@ entities:
- type: Transform
pos: 37.5,20.5
parent: 60
- - uid: 19887
- components:
- - type: Transform
- pos: 15.5,-24.5
- parent: 60
- uid: 19922
components:
- type: Transform
@@ -120440,56 +119883,6 @@ entities:
- type: Transform
pos: 31.5,0.5
parent: 60
- - uid: 21407
- components:
- - type: Transform
- pos: 15.5,-9.5
- parent: 60
- - uid: 21408
- components:
- - type: Transform
- pos: -6.5,10.5
- parent: 60
- - uid: 21409
- components:
- - type: Transform
- pos: -43.5,19.5
- parent: 60
- - uid: 21410
- components:
- - type: Transform
- pos: -36.5,0.5
- parent: 60
- - uid: 21411
- components:
- - type: Transform
- pos: -38.5,-21.5
- parent: 60
- - uid: 23644
- components:
- - type: Transform
- pos: -28.5,23.5
- parent: 60
- - uid: 23645
- components:
- - type: Transform
- pos: -20.5,25.5
- parent: 60
- - uid: 23646
- components:
- - type: Transform
- pos: -14.5,12.5
- parent: 60
- - uid: 23647
- components:
- - type: Transform
- pos: -14.5,1.5
- parent: 60
- - uid: 23648
- components:
- - type: Transform
- pos: -14.5,-18.5
- parent: 60
- uid: 23651
components:
- type: Transform
@@ -120500,11 +119893,6 @@ entities:
- type: Transform
pos: -0.5,-36.5
parent: 60
- - uid: 23656
- components:
- - type: Transform
- pos: 17.5,0.5
- parent: 60
- proto: RandomVending
entities:
- uid: 10380
@@ -120512,10 +119900,12 @@ entities:
- type: Transform
pos: 10.5,-26.5
parent: 60
- - uid: 14002
+- proto: RandomVendingClothing
+ entities:
+ - uid: 17141
components:
- type: Transform
- pos: -12.5,12.5
+ pos: -39.5,19.5
parent: 60
- proto: RandomVendingDrinks
entities:
@@ -120544,6 +119934,11 @@ entities:
- type: Transform
pos: -37.5,26.5
parent: 60
+ - uid: 21066
+ components:
+ - type: Transform
+ pos: -13.5,13.5
+ parent: 60
- uid: 23916
components:
- type: Transform
@@ -120660,15 +120055,15 @@ entities:
parent: 60
- proto: ReinforcedPlasmaWindow
entities:
- - uid: 2004
+ - uid: 1574
components:
- type: Transform
- pos: -27.5,-1.5
+ pos: -27.5,-2.5
parent: 60
- - uid: 2009
+ - uid: 1575
components:
- type: Transform
- pos: -25.5,-1.5
+ pos: -25.5,-2.5
parent: 60
- uid: 6985
components:
@@ -120914,106 +120309,68 @@ entities:
- type: Transform
pos: -19.5,47.5
parent: 60
- - uid: 23455
+ - uid: 18644
components:
- type: Transform
- pos: -60.5,41.5
+ pos: -5.5,35.5
parent: 60
-- proto: ReinforcedWindow
- entities:
- - uid: 8
+ - uid: 21013
components:
- type: Transform
- pos: -26.5,-17.5
+ pos: -3.5,35.5
parent: 60
- - uid: 10
+ - uid: 23455
components:
- type: Transform
- pos: -28.5,-8.5
+ pos: -60.5,41.5
parent: 60
- - uid: 22
+- proto: ReinforcedWindow
+ entities:
+ - uid: 13
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-10.5
+ pos: -23.5,-12.5
parent: 60
- uid: 25
components:
- type: Transform
- pos: -32.5,-7.5
- parent: 60
- - uid: 57
- components:
- - type: Transform
- pos: -21.5,-16.5
- parent: 60
- - uid: 76
- components:
- - type: Transform
- pos: -23.5,-8.5
- parent: 60
- - uid: 97
- components:
- - type: Transform
- pos: -28.5,-7.5
- parent: 60
- - uid: 105
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 60
- - uid: 115
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,-12.5
- parent: 60
- - uid: 124
- components:
- - type: Transform
- pos: -23.5,-10.5
+ pos: -32.5,-21.5
parent: 60
- uid: 130
components:
- type: Transform
- pos: -32.5,-10.5
- parent: 60
- - uid: 149
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -24.5,-12.5
+ pos: -34.5,-17.5
parent: 60
- - uid: 156
+ - uid: 143
components:
- type: Transform
- pos: -28.5,-11.5
+ pos: -33.5,-21.5
parent: 60
- - uid: 157
+ - uid: 209
components:
- type: Transform
- pos: -29.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-18.5
parent: 60
- - uid: 182
+ - uid: 236
components:
- type: Transform
- pos: -17.5,-13.5
+ pos: -29.5,-12.5
parent: 60
- - uid: 209
+ - uid: 239
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-18.5
+ pos: -35.5,-18.5
parent: 60
- - uid: 210
+ - uid: 240
components:
- type: Transform
- pos: -24.5,-11.5
+ pos: -19.5,-21.5
parent: 60
- - uid: 231
+ - uid: 249
components:
- type: Transform
- pos: -20.5,-10.5
+ pos: -29.5,-11.5
parent: 60
- uid: 256
components:
@@ -121025,32 +120382,21 @@ entities:
- type: Transform
pos: 57.5,-6.5
parent: 60
- - uid: 269
+ - uid: 267
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-12.5
+ pos: -17.5,-20.5
parent: 60
- - uid: 313
+ - uid: 295
components:
- type: Transform
- pos: -29.5,-10.5
+ pos: -17.5,-7.5
parent: 60
- uid: 320
components:
- type: Transform
pos: 57.5,-7.5
parent: 60
- - uid: 356
- components:
- - type: Transform
- pos: -20.5,-13.5
- parent: 60
- - uid: 357
- components:
- - type: Transform
- pos: -32.5,-13.5
- parent: 60
- uid: 385
components:
- type: Transform
@@ -121121,11 +120467,6 @@ entities:
- type: Transform
pos: 20.5,1.5
parent: 60
- - uid: 493
- components:
- - type: Transform
- pos: -24.5,-8.5
- parent: 60
- uid: 501
components:
- type: Transform
@@ -121161,11 +120502,6 @@ entities:
- type: Transform
pos: -13.5,-5.5
parent: 60
- - uid: 562
- components:
- - type: Transform
- pos: -17.5,-10.5
- parent: 60
- uid: 563
components:
- type: Transform
@@ -121242,6 +120578,11 @@ entities:
- type: Transform
pos: -12.5,-0.5
parent: 60
+ - uid: 796
+ components:
+ - type: Transform
+ pos: -17.5,-5.5
+ parent: 60
- uid: 797
components:
- type: Transform
@@ -121252,15 +120593,25 @@ entities:
- type: Transform
pos: -17.5,11.5
parent: 60
- - uid: 840
+ - uid: 844
components:
- type: Transform
- pos: -20.5,-7.5
+ pos: -17.5,-6.5
parent: 60
- - uid: 845
+ - uid: 986
components:
- type: Transform
- pos: -29.5,-8.5
+ pos: -28.5,-7.5
+ parent: 60
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: -27.5,-7.5
+ parent: 60
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: -26.5,-7.5
parent: 60
- uid: 1192
components:
@@ -121277,6 +120628,11 @@ entities:
- type: Transform
pos: -8.5,-32.5
parent: 60
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 60
- uid: 1337
components:
- type: Transform
@@ -121302,82 +120658,90 @@ entities:
- type: Transform
pos: 2.5,-36.5
parent: 60
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: -23.5,-14.5
+ parent: 60
+ - uid: 1464
+ components:
+ - type: Transform
+ pos: -29.5,-16.5
+ parent: 60
- uid: 1469
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -26.5,-12.5
+ pos: -29.5,-14.5
parent: 60
- - uid: 1476
+ - uid: 1478
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -28.5,-10.5
+ pos: -23.5,-16.5
parent: 60
- - uid: 1587
+ - uid: 1488
components:
- type: Transform
- pos: -35.5,-13.5
+ pos: -24.5,-7.5
parent: 60
- - uid: 1676
+ - uid: 1527
components:
- type: Transform
- pos: -23.5,-25.5
+ pos: -17.5,-10.5
parent: 60
- - uid: 1684
+ - uid: 1547
components:
- type: Transform
- pos: -27.5,-21.5
+ pos: -28.5,-8.5
parent: 60
- - uid: 1706
+ - uid: 1553
components:
- type: Transform
- pos: -33.5,-21.5
+ pos: -25.5,-7.5
parent: 60
- - uid: 1744
+ - uid: 1676
components:
- type: Transform
- pos: -17.5,-6.5
+ pos: -23.5,-25.5
parent: 60
- - uid: 1745
+ - uid: 1723
components:
- type: Transform
- pos: -17.5,-7.5
+ pos: -25.5,-25.5
parent: 60
- - uid: 1765
+ - uid: 1846
components:
- type: Transform
- pos: -35.5,-9.5
+ pos: -22.5,-2.5
parent: 60
- - uid: 1805
+ - uid: 1857
components:
- type: Transform
- pos: -17.5,-9.5
+ pos: -24.5,-8.5
parent: 60
- - uid: 1830
+ - uid: 1918
components:
- type: Transform
- pos: -22.5,-1.5
+ pos: -23.5,-11.5
parent: 60
- - uid: 1853
+ - uid: 1925
components:
- type: Transform
- pos: -35.5,-7.5
+ pos: -35.5,-5.5
parent: 60
- - uid: 1854
+ - uid: 1926
components:
- type: Transform
- pos: -35.5,-6.5
+ pos: -35.5,-11.5
parent: 60
- - uid: 1856
+ - uid: 1934
components:
- type: Transform
- pos: -35.5,-10.5
+ pos: -17.5,-19.5
parent: 60
- - uid: 1859
+ - uid: 2004
components:
- type: Transform
- pos: -35.5,-12.5
+ pos: -17.5,-14.5
parent: 60
- uid: 2057
components:
@@ -121651,21 +121015,11 @@ entities:
- type: Transform
pos: 57.5,-11.5
parent: 60
- - uid: 3722
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 60
- uid: 3739
components:
- type: Transform
pos: 54.5,19.5
parent: 60
- - uid: 3773
- components:
- - type: Transform
- pos: -25.5,-21.5
- parent: 60
- uid: 3796
components:
- type: Transform
@@ -121790,11 +121144,6 @@ entities:
- type: Transform
pos: 29.5,-56.5
parent: 60
- - uid: 4080
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- uid: 4084
components:
- type: Transform
@@ -121811,6 +121160,11 @@ entities:
- type: Transform
pos: 39.5,-21.5
parent: 60
+ - uid: 4200
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 60
- uid: 4301
components:
- type: Transform
@@ -121973,6 +121327,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -21.5,-53.5
parent: 60
+ - uid: 5020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-9.5
+ parent: 60
- uid: 5035
components:
- type: Transform
@@ -122165,11 +121525,6 @@ entities:
- type: Transform
pos: 13.5,6.5
parent: 60
- - uid: 5368
- components:
- - type: Transform
- pos: 14.5,4.5
- parent: 60
- uid: 5371
components:
- type: Transform
@@ -122285,11 +121640,6 @@ entities:
rot: 3.141592653589793 rad
pos: -19.5,14.5
parent: 60
- - uid: 5754
- components:
- - type: Transform
- pos: -23.5,-17.5
- parent: 60
- uid: 5793
components:
- type: Transform
@@ -122493,11 +121843,10 @@ entities:
- type: Transform
pos: 45.5,-25.5
parent: 60
- - uid: 7048
+ - uid: 7043
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-15.5
+ pos: -18.5,-0.5
parent: 60
- uid: 7068
components:
@@ -122878,11 +122227,6 @@ entities:
- type: Transform
pos: 48.5,-48.5
parent: 60
- - uid: 7812
- components:
- - type: Transform
- pos: -18.5,1.5
- parent: 60
- uid: 7816
components:
- type: Transform
@@ -122896,18 +122240,12 @@ entities:
- uid: 7900
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,-12.5
- parent: 60
- - uid: 7902
- components:
- - type: Transform
- pos: -20.5,-17.5
+ pos: -18.5,-1.5
parent: 60
- - uid: 7903
+ - uid: 7909
components:
- type: Transform
- pos: -18.5,-17.5
+ pos: -20.5,-6.5
parent: 60
- uid: 8039
components:
@@ -122919,6 +122257,11 @@ entities:
- type: Transform
pos: 30.5,-25.5
parent: 60
+ - uid: 8261
+ components:
+ - type: Transform
+ pos: -20.5,-10.5
+ parent: 60
- uid: 8268
components:
- type: Transform
@@ -122939,6 +122282,27 @@ entities:
- type: Transform
pos: 52.5,18.5
parent: 60
+ - uid: 8445
+ components:
+ - type: Transform
+ pos: -35.5,-7.5
+ parent: 60
+ - uid: 8479
+ components:
+ - type: Transform
+ pos: -35.5,-10.5
+ parent: 60
+ - uid: 8520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-9.5
+ parent: 60
+ - uid: 8577
+ components:
+ - type: Transform
+ pos: -18.5,0.5
+ parent: 60
- uid: 8780
components:
- type: Transform
@@ -122984,6 +122348,11 @@ entities:
- type: Transform
pos: 23.5,-3.5
parent: 60
+ - uid: 8947
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 60
- uid: 8953
components:
- type: Transform
@@ -122994,10 +122363,10 @@ entities:
- type: Transform
pos: -66.5,-19.5
parent: 60
- - uid: 9011
+ - uid: 9034
components:
- type: Transform
- pos: -24.5,-7.5
+ pos: -32.5,-10.5
parent: 60
- uid: 9041
components:
@@ -123133,6 +122502,46 @@ entities:
- type: Transform
pos: 22.5,3.5
parent: 60
+ - uid: 10685
+ components:
+ - type: Transform
+ pos: -17.5,-9.5
+ parent: 60
+ - uid: 10686
+ components:
+ - type: Transform
+ pos: -19.5,-17.5
+ parent: 60
+ - uid: 10828
+ components:
+ - type: Transform
+ pos: -17.5,-18.5
+ parent: 60
+ - uid: 11097
+ components:
+ - type: Transform
+ pos: -34.5,-21.5
+ parent: 60
+ - uid: 11098
+ components:
+ - type: Transform
+ pos: -35.5,-20.5
+ parent: 60
+ - uid: 11128
+ components:
+ - type: Transform
+ pos: -35.5,-6.5
+ parent: 60
+ - uid: 11129
+ components:
+ - type: Transform
+ pos: -32.5,-6.5
+ parent: 60
+ - uid: 11338
+ components:
+ - type: Transform
+ pos: -35.5,-9.5
+ parent: 60
- uid: 11438
components:
- type: Transform
@@ -123148,11 +122557,6 @@ entities:
- type: Transform
pos: -6.5,4.5
parent: 60
- - uid: 11687
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 60
- uid: 11701
components:
- type: Transform
@@ -123924,6 +123328,16 @@ entities:
- type: Transform
pos: 1.5,12.5
parent: 60
+ - uid: 14228
+ components:
+ - type: Transform
+ pos: 7.5,35.5
+ parent: 60
+ - uid: 14435
+ components:
+ - type: Transform
+ pos: 1.5,38.5
+ parent: 60
- uid: 14524
components:
- type: Transform
@@ -124345,10 +123759,10 @@ entities:
- type: Transform
pos: 6.5,39.5
parent: 60
- - uid: 16174
+ - uid: 16369
components:
- type: Transform
- pos: -1.5,37.5
+ pos: 0.5,38.5
parent: 60
- uid: 16371
components:
@@ -124370,35 +123784,30 @@ entities:
- type: Transform
pos: -2.5,39.5
parent: 60
- - uid: 16426
- components:
- - type: Transform
- pos: -3.5,39.5
- parent: 60
- - uid: 16427
+ - uid: 16394
components:
- type: Transform
- pos: -4.5,39.5
+ pos: -0.5,38.5
parent: 60
- - uid: 16431
+ - uid: 16395
components:
- type: Transform
- pos: -5.5,39.5
+ pos: -1.5,38.5
parent: 60
- - uid: 16437
+ - uid: 16426
components:
- type: Transform
- pos: -0.5,37.5
+ pos: -3.5,39.5
parent: 60
- - uid: 16438
+ - uid: 16427
components:
- type: Transform
- pos: 0.5,37.5
+ pos: -4.5,39.5
parent: 60
- - uid: 16439
+ - uid: 16431
components:
- type: Transform
- pos: 1.5,37.5
+ pos: -5.5,39.5
parent: 60
- uid: 16509
components:
@@ -124420,6 +123829,11 @@ entities:
- type: Transform
pos: -56.5,17.5
parent: 60
+ - uid: 17108
+ components:
+ - type: Transform
+ pos: 7.5,34.5
+ parent: 60
- uid: 17145
components:
- type: Transform
@@ -124691,11 +124105,6 @@ entities:
- type: Transform
pos: -9.5,-4.5
parent: 60
- - uid: 18215
- components:
- - type: Transform
- pos: -20.5,-2.5
- parent: 60
- uid: 18413
components:
- type: Transform
@@ -124726,6 +124135,11 @@ entities:
- type: Transform
pos: -9.5,-5.5
parent: 60
+ - uid: 18643
+ components:
+ - type: Transform
+ pos: 2.5,38.5
+ parent: 60
- uid: 18679
components:
- type: Transform
@@ -124736,6 +124150,17 @@ entities:
- type: Transform
pos: 39.5,-15.5
parent: 60
+ - uid: 18822
+ components:
+ - type: Transform
+ pos: -17.5,-16.5
+ parent: 60
+ - uid: 18857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-9.5
+ parent: 60
- uid: 18901
components:
- type: Transform
@@ -125297,11 +124722,6 @@ entities:
- type: Transform
pos: 57.5,32.5
parent: 60
- - uid: 24084
- components:
- - type: Transform
- pos: -20.5,-4.5
- parent: 60
- uid: 24087
components:
- type: Transform
@@ -125364,84 +124784,6 @@ entities:
- Pressed: Toggle
920:
- Pressed: Toggle
- - uid: 4898
- components:
- - type: MetaData
- name: Cell 5 Shutters
- - type: Transform
- pos: -27.257097,-7.6439037
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 6733:
- - Pressed: Toggle
- 6206:
- - Pressed: Toggle
- - uid: 10621
- components:
- - type: MetaData
- name: Cell 4 Shutters
- - type: Transform
- pos: -27.504074,-7.661018
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 7045:
- - Pressed: Toggle
- 6796:
- - Pressed: Toggle
- - uid: 10622
- components:
- - type: MetaData
- name: Medical Cell Shutters
- - type: Transform
- pos: -27.778229,-7.254768
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 188:
- - Pressed: Toggle
- 148:
- - Pressed: Toggle
- - uid: 11098
- components:
- - type: MetaData
- name: Cell 1 Shutters
- - type: Transform
- pos: -27.516373,-7.2643003
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 6467:
- - Pressed: Toggle
- 7032:
- - Pressed: Toggle
- - uid: 11555
- components:
- - type: MetaData
- name: Cell 2 Shutters
- - type: Transform
- pos: -27.266254,-7.242599
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 552:
- - Pressed: Toggle
- 8002:
- - Pressed: Toggle
- - uid: 19870
- components:
- - type: MetaData
- name: Cell 3 Shutters
- - type: Transform
- pos: -27.761703,-7.6384225
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 6746:
- - Pressed: Toggle
- 6203:
- - Pressed: Toggle
- uid: 23871
components:
- type: MetaData
@@ -125471,18 +124813,6 @@ entities:
- type: Transform
pos: -40.494568,11.691846
parent: 60
-- proto: RiotShield
- entities:
- - uid: 1883
- components:
- - type: Transform
- pos: -24.660069,1.386905
- parent: 60
- - uid: 1887
- components:
- - type: Transform
- pos: -24.660069,1.386905
- parent: 60
- proto: RobocopCircuitBoard
entities:
- uid: 24823
@@ -125504,11 +124834,6 @@ entities:
- type: Transform
pos: 41.440662,-10.344523
parent: 60
- - uid: 2017
- components:
- - type: Transform
- pos: -19.510386,-4.290659
- parent: 60
- proto: RubberStampMime
entities:
- uid: 7243
@@ -125567,6 +124892,21 @@ entities:
rot: 3.141592653589793 rad
pos: 13.5,-14.5
parent: 60
+ - uid: 8291
+ components:
+ - type: Transform
+ pos: -35.5,-8.5
+ parent: 60
+ - uid: 9043
+ components:
+ - type: Transform
+ pos: -17.5,-8.5
+ parent: 60
+ - uid: 9048
+ components:
+ - type: Transform
+ pos: -27.5,-21.5
+ parent: 60
- uid: 15599
components:
- type: Transform
@@ -125602,16 +124942,6 @@ entities:
- type: Transform
pos: 56.5,28.5
parent: 60
- - uid: 23851
- components:
- - type: Transform
- pos: -30.5,-17.5
- parent: 60
- - uid: 23852
- components:
- - type: Transform
- pos: -17.5,-14.5
- parent: 60
- uid: 23853
components:
- type: Transform
@@ -125647,11 +124977,6 @@ entities:
- type: Transform
pos: -32.5,6.5
parent: 60
- - uid: 23861
- components:
- - type: Transform
- pos: -35.5,-3.5
- parent: 60
- uid: 23862
components:
- type: Transform
@@ -125672,11 +124997,6 @@ entities:
- type: Transform
pos: -11.5,-21.5
parent: 60
- - uid: 24434
- components:
- - type: Transform
- pos: -26.5,-21.5
- parent: 60
- uid: 24436
components:
- type: Transform
@@ -125765,18 +125085,18 @@ entities:
- type: Transform
pos: 20.606422,21.831692
parent: 60
+ - uid: 23904
+ components:
+ - type: Transform
+ pos: 2.4679193,31.291115
+ parent: 60
- proto: SecurityTechFab
entities:
- - uid: 1907
+ - uid: 5836
components:
- type: Transform
- pos: -26.5,2.5
+ pos: -26.5,1.5
parent: 60
- - type: MaterialStorage
- materialWhiteList:
- - Glass
- - Plastic
- - Steel
- proto: SeedExtractor
entities:
- uid: 5380
@@ -125988,11 +125308,6 @@ entities:
- type: Transform
pos: -53.48943,7.209055
parent: 60
- - uid: 16456
- components:
- - type: Transform
- pos: -24.476772,1.5819757
- parent: 60
- proto: SheetSteel
entities:
- uid: 2314
@@ -126006,6 +125321,11 @@ entities:
- type: Transform
pos: 50.57873,-36.45204
parent: 60
+ - uid: 6149
+ components:
+ - type: Transform
+ pos: -24.474873,0.5569985
+ parent: 60
- uid: 6590
components:
- type: Transform
@@ -126026,12 +125346,6 @@ entities:
- type: Transform
pos: -53.494404,7.5158625
parent: 60
- - uid: 10586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.486025,1.614541
- parent: 60
- uid: 11799
components:
- type: Transform
@@ -126108,6 +125422,13 @@ entities:
parent: 60
- proto: ShuttersNormal
entities:
+ - uid: 186
+ components:
+ - type: Transform
+ pos: -55.5,0.5
+ parent: 60
+ - type: DeviceLinkSink
+ invokeCounter: 2
- uid: 914
components:
- type: Transform
@@ -126146,30 +125467,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,-32.5
parent: 60
- - uid: 148
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-6.5
- parent: 60
- - uid: 188
- components:
- - type: Transform
- pos: -17.5,-7.5
- parent: 60
- - uid: 552
- components:
- - type: Transform
- pos: -17.5,-13.5
- parent: 60
- - uid: 1022
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,1.5
- parent: 60
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 1454
components:
- type: Transform
@@ -126181,16 +125478,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,-26.5
parent: 60
- - uid: 1932
- components:
- - type: Transform
- pos: -27.5,-21.5
- parent: 60
- - uid: 1942
- components:
- - type: Transform
- pos: -21.5,-19.5
- parent: 60
- uid: 2250
components:
- type: Transform
@@ -126218,13 +125505,6 @@ entities:
- type: Transform
pos: 38.5,-15.5
parent: 60
- - uid: 3737
- components:
- - type: Transform
- pos: -18.5,0.5
- parent: 60
- - type: DeviceLinkSink
- invokeCounter: 2
- uid: 3844
components:
- type: Transform
@@ -126293,21 +125573,10 @@ entities:
rot: 1.5707963267948966 rad
pos: -40.5,-6.5
parent: 60
- - uid: 6203
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 60
- - uid: 6206
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-12.5
- parent: 60
- - uid: 6467
+ - uid: 6207
components:
- type: Transform
- pos: -17.5,-10.5
+ pos: -25.5,-25.5
parent: 60
- uid: 6522
components:
@@ -126327,17 +125596,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 7.5,18.5
parent: 60
- - uid: 6733
- components:
- - type: Transform
- pos: -35.5,-13.5
- parent: 60
- - uid: 6746
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-6.5
- parent: 60
- uid: 6772
components:
- type: Transform
@@ -126362,23 +125620,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 22.5,-34.5
parent: 60
- - uid: 6796
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-9.5
- parent: 60
- - uid: 7032
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-9.5
- parent: 60
- - uid: 7045
- components:
- - type: Transform
- pos: -35.5,-10.5
- parent: 60
- uid: 7131
components:
- type: Transform
@@ -126396,17 +125637,6 @@ entities:
- type: Transform
pos: 39.5,-15.5
parent: 60
- - uid: 7685
- components:
- - type: Transform
- pos: -25.5,-21.5
- parent: 60
- - uid: 8002
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-12.5
- parent: 60
- uid: 8381
components:
- type: Transform
@@ -126417,15 +125647,10 @@ entities:
- type: Transform
pos: -12.5,-52.5
parent: 60
- - uid: 8716
- components:
- - type: Transform
- pos: -21.5,-20.5
- parent: 60
- - uid: 8892
+ - uid: 8678
components:
- type: Transform
- pos: -21.5,-18.5
+ pos: -13.5,-19.5
parent: 60
- uid: 9167
components:
@@ -126506,11 +125731,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,-3.5
parent: 60
- - uid: 19155
- components:
- - type: Transform
- pos: -33.5,-21.5
- parent: 60
- uid: 21085
components:
- type: Transform
@@ -126600,40 +125820,15 @@ entities:
parent: 60
- proto: ShuttersRadiationOpen
entities:
- - uid: 16369
- components:
- - type: Transform
- pos: -0.5,30.5
- parent: 60
- - uid: 16398
+ - uid: 16388
components:
- type: Transform
pos: 1.5,30.5
parent: 60
- - uid: 18610
- components:
- - type: Transform
- pos: 1.5,37.5
- parent: 60
- - uid: 18611
- components:
- - type: Transform
- pos: 2.5,37.5
- parent: 60
- - uid: 18643
- components:
- - type: Transform
- pos: 0.5,37.5
- parent: 60
- - uid: 18644
- components:
- - type: Transform
- pos: -0.5,37.5
- parent: 60
- - uid: 18706
+ - uid: 16389
components:
- type: Transform
- pos: -1.5,37.5
+ pos: -0.5,30.5
parent: 60
- proto: ShuttersWindow
entities:
@@ -126851,15 +126046,6 @@ entities:
linkedPorts:
7728:
- Pressed: Toggle
- - uid: 12596
- components:
- - type: Transform
- pos: -54.5,0.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 12598:
- - Pressed: Toggle
- uid: 14913
components:
- type: Transform
@@ -126908,19 +126094,6 @@ entities:
- Pressed: Toggle
16973:
- Pressed: Toggle
- - uid: 18438
- components:
- - type: Transform
- pos: -8.5,-2.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 18519:
- - Pressed: Toggle
- 18518:
- - Pressed: Toggle
- 18517:
- - Pressed: Toggle
- proto: SignalButtonDirectional
entities:
- uid: 1240
@@ -126952,37 +126125,6 @@ entities:
- Pressed: Toggle
4355:
- Pressed: Toggle
- - uid: 1931
- components:
- - type: MetaData
- name: Lobby Shutdown
- - type: Transform
- pos: -20.5,-14.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 8892:
- - Pressed: Toggle
- 1942:
- - Pressed: Toggle
- 8716:
- - Pressed: Toggle
- 7685:
- - Pressed: Toggle
- 1932:
- - Pressed: Toggle
- - uid: 1941
- components:
- - type: MetaData
- name: Privacy Shutter Button
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,-18.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 19155:
- - Pressed: Toggle
- uid: 2287
components:
- type: Transform
@@ -127062,32 +126204,6 @@ entities:
- Pressed: Toggle
21334:
- Pressed: Toggle
- - uid: 4260
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,30.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 16542:
- - Pressed: Toggle
- 16541:
- - Pressed: Toggle
- - uid: 4522
- components:
- - type: MetaData
- name: Privacy Shutter Button
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-1.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 3737:
- - Pressed: Toggle
- 1022:
- - Pressed: Toggle
- uid: 9571
components:
- type: Transform
@@ -127125,19 +126241,6 @@ entities:
- Pressed: Toggle
4679:
- Pressed: Toggle
- - uid: 11477
- components:
- - type: Transform
- pos: 9.5,22.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 6524:
- - Pressed: Toggle
- 6526:
- - Pressed: Toggle
- 6522:
- - Pressed: Toggle
- uid: 11678
components:
- type: Transform
@@ -127150,18 +126253,6 @@ entities:
- Pressed: Toggle
19158:
- Pressed: Toggle
- - uid: 13095
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,20.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 16058:
- - Pressed: Toggle
- 15575:
- - Pressed: Toggle
- uid: 13575
components:
- type: Transform
@@ -127186,44 +126277,6 @@ entities:
- Pressed: Toggle
17379:
- Pressed: Toggle
- - uid: 13624
- components:
- - type: Transform
- pos: -52.5,28.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 11628:
- - Pressed: Toggle
- 13618:
- - Pressed: Toggle
- 11629:
- - Pressed: Toggle
- 11583:
- - Pressed: Toggle
- 13616:
- - Pressed: Toggle
- 12021:
- - Pressed: Toggle
- - uid: 13662
- components:
- - type: Transform
- pos: -48.5,28.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 11629:
- - Pressed: Toggle
- 13618:
- - Pressed: Toggle
- 11628:
- - Pressed: Toggle
- 11583:
- - Pressed: Toggle
- 13616:
- - Pressed: Toggle
- 12021:
- - Pressed: Toggle
- uid: 13899
components:
- type: MetaData
@@ -127235,7 +126288,7 @@ entities:
- type: DeviceLinkSource
linkedPorts:
14444:
- - Pressed: Toggle
+ - Pressed: DoorBolt
- uid: 14549
components:
- type: Transform
@@ -127289,22 +126342,6 @@ entities:
linkedPorts:
13901:
- Pressed: Toggle
- - uid: 14726
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-1.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 21763:
- - Pressed: Toggle
- 21764:
- - Pressed: Toggle
- 21765:
- - Pressed: Toggle
- 21766:
- - Pressed: Toggle
- uid: 14910
components:
- type: Transform
@@ -127319,18 +126356,6 @@ entities:
- Pressed: Toggle
2506:
- Pressed: Toggle
- - uid: 16370
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,31.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 16369:
- - Pressed: Toggle
- 16398:
- - Pressed: Toggle
- uid: 16396
components:
- type: Transform
@@ -127345,32 +126370,6 @@ entities:
- Pressed: Toggle
327:
- Pressed: Toggle
- - uid: 18295
- components:
- - type: Transform
- pos: -4.5,30.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 16541:
- - Pressed: Toggle
- 16542:
- - Pressed: Toggle
- - uid: 19170
- components:
- - type: Transform
- pos: -3.5,2.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 21770:
- - Pressed: Toggle
- 21769:
- - Pressed: Toggle
- 21768:
- - Pressed: Toggle
- 21767:
- - Pressed: Toggle
- uid: 20425
components:
- type: MetaData
@@ -127394,23 +126393,6 @@ entities:
linkedPorts:
17460:
- Pressed: DoorBolt
- - uid: 20989
- components:
- - type: Transform
- pos: 3.2670698,37.543144
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 18611:
- - Pressed: Toggle
- 18610:
- - Pressed: Toggle
- 18643:
- - Pressed: Toggle
- 18644:
- - Pressed: Toggle
- 18706:
- - Pressed: Toggle
- uid: 21386
components:
- type: MetaData
@@ -127447,18 +126429,6 @@ entities:
linkedPorts:
24333:
- Pressed: Toggle
- - uid: 24336
- components:
- - type: MetaData
- name: Janitorial Service Button
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-14.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 24335:
- - Pressed: Toggle
- uid: 24347
components:
- type: MetaData
@@ -127471,18 +126441,6 @@ entities:
linkedPorts:
11167:
- Pressed: Toggle
- - uid: 24351
- components:
- - type: MetaData
- name: Janitorial Service Light
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-0.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 24350:
- - Pressed: Toggle
- uid: 24365
components:
- type: MetaData
@@ -127537,6 +126495,157 @@ entities:
- Pressed: Toggle
- proto: SignalSwitchDirectional
entities:
+ - uid: 1580
+ components:
+ - type: MetaData
+ name: Cell 2 Blast Door Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.502918,-9.625589
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1638:
+ - On: Open
+ - Off: Close
+ 1639:
+ - Off: Close
+ - On: Open
+ 1640:
+ - On: Open
+ - Off: Close
+ - uid: 1583
+ components:
+ - type: MetaData
+ name: Cell 4 Blast Door Switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.502918,-9.625589
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1293:
+ - On: Open
+ - Off: Close
+ 1238:
+ - Off: Close
+ - On: Open
+ 1257:
+ - On: Open
+ - Off: Close
+ - uid: 1624
+ components:
+ - type: MetaData
+ name: Cell 3 Blast Door Switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -25.502918,-9.222812
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1354:
+ - On: Open
+ - Off: Close
+ 1384:
+ - On: Open
+ - Off: Close
+ 1652:
+ - On: Open
+ - Off: Close
+ - uid: 1699
+ components:
+ - type: MetaData
+ name: Cell 1 Blast Door Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.502918,-9.222812
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1653:
+ - On: Open
+ - Off: Close
+ 1655:
+ - On: Open
+ - Off: Close
+ 1656:
+ - On: Open
+ - Off: Close
+ - uid: 2103
+ components:
+ - type: MetaData
+ name: Interior Door Open/Close
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.496037,-18.715696
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1919:
+ - On: Open
+ - Off: Close
+ - uid: 4506
+ components:
+ - type: MetaData
+ name: Inner Windoor Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-6.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5825:
+ - On: Open
+ - Off: Close
+ - uid: 5758
+ components:
+ - type: MetaData
+ name: Inner Windoor Switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-10.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1530:
+ - On: Open
+ - Off: Close
+ - uid: 5835
+ components:
+ - type: MetaData
+ name: Inner Windoor Switch
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-6.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4201:
+ - On: Open
+ - Off: Close
+ - uid: 6307
+ components:
+ - type: MetaData
+ name: Inner Windoor Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-10.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1485:
+ - On: Open
+ - Off: Close
+ - uid: 7563
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -56.5,1.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 186:
+ - Status: Toggle
- uid: 8127
components:
- type: MetaData
@@ -127550,6 +126659,339 @@ entities:
24352:
- On: On
- Off: Off
+ - uid: 8221
+ components:
+ - type: MetaData
+ name: Window Blast Doors
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-2.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1681:
+ - On: Open
+ - Off: Close
+ 10622:
+ - On: Open
+ - Off: Close
+ 5432:
+ - On: Open
+ - Off: Close
+ - uid: 8349
+ components:
+ - type: MetaData
+ name: Exterior Door Open/Close
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.502981,-20.229586
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8297:
+ - On: Open
+ - Off: Close
+ - uid: 8433
+ components:
+ - type: MetaData
+ name: Exterior Window Blast Doors Open/Close
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-0.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 188:
+ - On: Open
+ - Off: Close
+ 187:
+ - On: Open
+ - Off: Close
+ 9680:
+ - On: Open
+ - Off: Close
+ 4564:
+ - On: Open
+ - Off: Close
+ 4563:
+ - On: Open
+ - Off: Close
+ 4552:
+ - On: Open
+ - Off: Close
+ 4542:
+ - On: Open
+ - Off: Close
+ 4505:
+ - On: Open
+ - Off: Close
+ 4457:
+ - On: Open
+ - Off: Close
+ 13978:
+ - On: Open
+ - Off: Close
+ 8721:
+ - On: Open
+ - Off: Close
+ 4565:
+ - On: Open
+ - Off: Close
+ 207:
+ - On: Open
+ - Off: Close
+ 208:
+ - On: Open
+ - Off: Close
+ 9679:
+ - On: Open
+ - Off: Close
+ - uid: 8670
+ components:
+ - type: MetaData
+ name: Exterior Door Open/Close
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.498095,-20.215696
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 242:
+ - On: Open
+ - Off: Close
+ 8454:
+ - On: Open
+ - Off: Close
+ - uid: 8677
+ components:
+ - type: MetaData
+ name: Bathroom Privacy Shutter
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-18.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8678:
+ - On: Open
+ - Off: Close
+ - uid: 8908
+ components:
+ - type: MetaData
+ name: Interior Door Open/Close
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.498095,-18.722641
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 243:
+ - On: Open
+ - Off: Close
+ 245:
+ - On: Open
+ - Off: Close
+ - uid: 9309
+ components:
+ - type: Transform
+ pos: -54.5,0.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 186:
+ - Status: Toggle
+ - uid: 9397
+ components:
+ - type: MetaData
+ name: Window Switch
+ - type: Transform
+ pos: -8.5,-2.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 18519:
+ - On: Open
+ - Off: Close
+ 18518:
+ - On: Open
+ - Off: Close
+ 18517:
+ - On: Open
+ - Off: Close
+ - uid: 9549
+ components:
+ - type: MetaData
+ name: Shutter Switch
+ - type: Transform
+ pos: -48.5,28.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11628:
+ - On: Open
+ - Off: Close
+ 11629:
+ - On: Open
+ - Off: Close
+ 13618:
+ - On: Open
+ - Off: Close
+ 11583:
+ - On: Open
+ - Off: Close
+ 13616:
+ - On: Open
+ - Off: Close
+ 12021:
+ - On: Open
+ - Off: Close
+ - uid: 9550
+ components:
+ - type: MetaData
+ name: Shutter Switch
+ - type: Transform
+ pos: -52.5,28.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11628:
+ - On: Open
+ - Off: Close
+ 13618:
+ - On: Open
+ - Off: Close
+ 11629:
+ - On: Open
+ - Off: Close
+ 11583:
+ - On: Open
+ - Off: Close
+ 13616:
+ - On: Open
+ - Off: Close
+ 12021:
+ - On: Open
+ - Off: Close
+ - uid: 13256
+ components:
+ - type: MetaData
+ name: Radiation Shutters
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,31.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16389:
+ - On: Open
+ - Off: Close
+ 16388:
+ - On: Open
+ - Off: Close
+ - uid: 16398
+ components:
+ - type: MetaData
+ name: Secure Storage Blast Doors
+ - type: Transform
+ pos: -4.5,30.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16541:
+ - On: Open
+ - Off: Close
+ 16542:
+ - On: Open
+ - Off: Close
+ - uid: 16399
+ components:
+ - type: MetaData
+ name: CE Office Window Shutters
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,20.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 6524:
+ - On: Open
+ - Off: Close
+ 6526:
+ - On: Open
+ - Off: Close
+ 6522:
+ - On: Open
+ - Off: Close
+ - uid: 16402
+ components:
+ - type: MetaData
+ name: CE Bedroom Window Shutters
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,20.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16058:
+ - On: Open
+ - Off: Close
+ 15575:
+ - On: Open
+ - Off: Close
+ - uid: 16404
+ components:
+ - type: MetaData
+ name: Secure Storage Blast Doors
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,30.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16542:
+ - On: Open
+ - Off: Close
+ 16541:
+ - On: Open
+ - Off: Close
+ - uid: 16433
+ components:
+ - type: MetaData
+ name: Window Blast Doors
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-15.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16425:
+ - On: Open
+ - Off: Close
+ 14167:
+ - On: Open
+ - Off: Close
+ - uid: 17957
+ components:
+ - type: MetaData
+ name: Bridge Entrance Blast Doors Open/Close
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-1.5
+ parent: 60
+ - type: DeviceLinkSource
+ linkedPorts:
+ 190:
+ - On: Open
+ - Off: Close
+ 189:
+ - On: Open
+ - Off: Close
+ 191:
+ - On: Open
+ - Off: Close
+ 206:
+ - On: Open
+ - Off: Close
- uid: 18802
components:
- type: MetaData
@@ -127603,6 +127045,14 @@ entities:
397:
- On: Reverse
- Off: Forward
+ - uid: 18859
+ components:
+ - type: MetaData
+ name: Janitor Light Switch
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 60
- uid: 19837
components:
- type: MetaData
@@ -127646,21 +127096,6 @@ entities:
21755:
- On: Open
- Off: Close
- - uid: 24818
- components:
- - type: MetaData
- name: light switch
- - type: Transform
- pos: 21.5,-14.5
- parent: 60
- - type: DeviceLinkSource
- linkedPorts:
- 1209:
- - On: On
- - Off: Off
- 1210:
- - On: On
- - Off: Off
- proto: SignAnomaly
entities:
- uid: 9496
@@ -127682,10 +127117,10 @@ entities:
parent: 60
- proto: SignArmory
entities:
- - uid: 1814
+ - uid: 7684
components:
- type: Transform
- pos: -28.5,-1.5
+ pos: -28.5,-2.5
parent: 60
- proto: SignAtmos
entities:
@@ -128526,6 +127961,11 @@ entities:
- type: Transform
pos: -58.5,10.5
parent: 60
+ - uid: 13975
+ components:
+ - type: Transform
+ pos: -31.5,1.5
+ parent: 60
- uid: 16067
components:
- type: Transform
@@ -128723,11 +128163,6 @@ entities:
- type: Transform
pos: 2.5,-25.5
parent: 60
- - uid: 4299
- components:
- - type: Transform
- pos: -39.5,-17.5
- parent: 60
- proto: SignHydro1
entities:
- uid: 3840
@@ -128737,10 +128172,10 @@ entities:
parent: 60
- proto: SignInterrogation
entities:
- - uid: 1639
+ - uid: 8957
components:
- type: Transform
- pos: -31.5,-5.5
+ pos: -32.5,-2.5
parent: 60
- proto: SignJanitor
entities:
@@ -128764,13 +128199,6 @@ entities:
rot: 3.141592653589793 rad
pos: 24.5,-25.5
parent: 60
-- proto: SignLaserMed
- entities:
- - uid: 14624
- components:
- - type: Transform
- pos: -29.5,2.5
- parent: 60
- proto: SignLawyer
entities:
- uid: 18024
@@ -128856,6 +128284,11 @@ entities:
- type: Transform
pos: -60.5,39.5
parent: 60
+ - uid: 23906
+ components:
+ - type: Transform
+ pos: -2.5,34.5
+ parent: 60
- proto: SignPlaque
entities:
- uid: 2894
@@ -128870,11 +128303,6 @@ entities:
parent: 60
- proto: SignPrison
entities:
- - uid: 1699
- components:
- - type: Transform
- pos: -27.5,-6.5
- parent: 60
- uid: 13670
components:
- type: Transform
@@ -128939,30 +128367,25 @@ entities:
- type: Transform
pos: -56.5,25.5
parent: 60
- - uid: 24156
+- proto: SignRedFour
+ entities:
+ - uid: 1642
components:
- type: Transform
- pos: -33.5,-11.5
+ pos: -20.5,-10.5
parent: 60
-- proto: SignRedFour
- entities:
- uid: 13856
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -44.5,21.5
parent: 60
- - uid: 24155
- components:
- - type: Transform
- pos: -33.5,-8.5
- parent: 60
- proto: SignRedOne
entities:
- - uid: 24152
+ - uid: 1817
components:
- type: Transform
- pos: -19.5,-8.5
+ pos: -32.5,-6.5
parent: 60
- proto: SignRedSix
entities:
@@ -128973,27 +128396,27 @@ entities:
parent: 60
- proto: SignRedThree
entities:
- - uid: 7514
+ - uid: 1773
components:
- type: Transform
- pos: -44.5,25.5
+ pos: -20.5,-6.5
parent: 60
- - uid: 24154
+ - uid: 7514
components:
- type: Transform
- pos: -33.5,-5.5
+ pos: -44.5,25.5
parent: 60
- proto: SignRedTwo
entities:
- - uid: 8156
+ - uid: 1634
components:
- type: Transform
- pos: -34.5,22.5
+ pos: -32.5,-10.5
parent: 60
- - uid: 24153
+ - uid: 8156
components:
- type: Transform
- pos: -19.5,-11.5
+ pos: -34.5,22.5
parent: 60
- proto: SignRestroom
entities:
@@ -129044,11 +128467,6 @@ entities:
- type: Transform
pos: -40.5,-1.5
parent: 60
- - uid: 11945
- components:
- - type: Transform
- pos: -22.5,-17.5
- parent: 60
- uid: 14664
components:
- type: Transform
@@ -129106,10 +128524,10 @@ entities:
parent: 60
- proto: SignSecureMedRed
entities:
- - uid: 6117
+ - uid: 3505
components:
- type: Transform
- pos: -26.5,3.5
+ pos: -26.5,2.5
parent: 60
- uid: 8174
components:
@@ -129140,19 +128558,14 @@ entities:
- type: Transform
pos: -2.5,-2.5
parent: 7536
- - uid: 9149
- components:
- - type: Transform
- pos: -21.5,-14.5
- parent: 60
- - uid: 9150
+- proto: SignSecurity
+ entities:
+ - uid: 835
components:
- type: Transform
- pos: -31.5,-14.5
+ pos: -35.5,-17.5
parent: 60
-- proto: SignSecurity
- entities:
- - uid: 16164
+ - uid: 8527
components:
- type: Transform
pos: -17.5,-21.5
@@ -129347,10 +128760,10 @@ entities:
parent: 60
- proto: SingularityGenerator
entities:
- - uid: 16399
+ - uid: 18611
components:
- type: Transform
- pos: -6.5,35.5
+ pos: -6.5,34.5
parent: 60
- proto: Sink
entities:
@@ -129511,11 +128924,6 @@ entities:
parent: 60
- proto: SMESBasic
entities:
- - uid: 5409
- components:
- - type: Transform
- pos: -4.5,33.5
- parent: 60
- uid: 6999
components:
- type: Transform
@@ -129544,9 +128952,16 @@ entities:
parent: 60
- uid: 16153
components:
+ - type: MetaData
+ name: Particle Accelerator SMES
- type: Transform
pos: 4.5,34.5
parent: 60
+ - uid: 16407
+ components:
+ - type: Transform
+ pos: -3.5,34.5
+ parent: 60
- uid: 17674
components:
- type: Transform
@@ -131753,23 +131168,6 @@ entities:
- type: Transform
pos: 5.5,-46.5
parent: 60
-- proto: SpacemenFigureSpawner
- entities:
- - uid: 14510
- components:
- - type: Transform
- pos: -9.5,17.5
- parent: 60
- - uid: 14514
- components:
- - type: Transform
- pos: -8.5,17.5
- parent: 60
- - uid: 14523
- components:
- - type: Transform
- pos: -9.5,16.5
- parent: 60
- proto: SpaceVillainArcadeFilled
entities:
- uid: 5301
@@ -131845,10 +131243,10 @@ entities:
parent: 60
- proto: SpawnMobMcGriff
entities:
- - uid: 4710
+ - uid: 2806
components:
- type: Transform
- pos: -27.5,-9.5
+ pos: -25.5,-11.5
parent: 60
- proto: SpawnMobMonkeyPunpun
entities:
@@ -131879,10 +131277,10 @@ entities:
- type: Transform
pos: 29.5,-40.5
parent: 60
- - uid: 13987
+ - uid: 14169
components:
- type: Transform
- pos: -9.5,13.5
+ pos: -11.5,19.5
parent: 60
- uid: 19721
components:
@@ -131905,17 +131303,17 @@ entities:
parent: 60
- proto: SpawnMobShiva
entities:
- - uid: 19794
+ - uid: 1989
components:
- type: Transform
pos: -20.5,0.5
parent: 60
- proto: SpawnMobSlothPaperwork
entities:
- - uid: 14210
+ - uid: 14150
components:
- type: Transform
- pos: -10.5,19.5
+ pos: -9.5,21.5
parent: 60
- proto: SpawnMobSmile
entities:
@@ -132083,10 +131481,10 @@ entities:
parent: 60
- proto: SpawnPointHeadOfSecurity
entities:
- - uid: 1731
+ - uid: 2095
components:
- type: Transform
- pos: -20.5,1.5
+ pos: -21.5,0.5
parent: 60
- proto: SpawnPointJanitor
entities:
@@ -132344,47 +131742,57 @@ entities:
parent: 60
- proto: SpawnPointSecurityCadet
entities:
- - uid: 21069
+ - uid: 1981
components:
- type: Transform
- pos: -31.5,1.5
+ pos: -30.5,-19.5
parent: 60
- - uid: 21162
+ - uid: 1990
components:
- type: Transform
- pos: -32.5,2.5
+ pos: -25.5,-20.5
parent: 60
- - uid: 21200
+ - uid: 2007
components:
- type: Transform
- pos: -32.5,4.5
+ pos: -27.5,-20.5
parent: 60
- - uid: 21217
+ - uid: 2008
components:
- type: Transform
- pos: -30.5,1.5
+ pos: -22.5,-19.5
parent: 60
- proto: SpawnPointSecurityOfficer
entities:
- - uid: 137
+ - uid: 1987
components:
- type: Transform
- pos: -33.5,-17.5
+ pos: -27.5,-18.5
parent: 60
- - uid: 270
+ - uid: 2011
components:
- type: Transform
- pos: -33.5,-18.5
+ pos: -27.5,-17.5
parent: 60
- - uid: 7904
+ - uid: 2012
components:
- type: Transform
- pos: -33.5,-19.5
+ pos: -25.5,-18.5
parent: 60
- - uid: 7905
+ - uid: 2015
components:
- type: Transform
- pos: -33.5,-16.5
+ pos: -27.5,-16.5
+ parent: 60
+ - uid: 3773
+ components:
+ - type: Transform
+ pos: -25.5,-16.5
+ parent: 60
+ - uid: 8449
+ components:
+ - type: Transform
+ pos: -25.5,-17.5
parent: 60
- proto: SpawnPointServiceWorker
entities:
@@ -132444,10 +131852,10 @@ entities:
parent: 60
- proto: SpawnPointWarden
entities:
- - uid: 1461
+ - uid: 1980
components:
- type: Transform
- pos: -26.5,-9.5
+ pos: -26.5,-11.5
parent: 60
- proto: SpawnVendingMachineRestockFoodDrink
entities:
@@ -132502,11 +131910,6 @@ entities:
- type: Transform
pos: -6.7018414,-28.567108
parent: 60
- - uid: 6034
- components:
- - type: Transform
- pos: -33.1201,-0.48510244
- parent: 60
- proto: StairDark
entities:
- uid: 2908
@@ -132523,6 +131926,11 @@ entities:
parent: 60
- proto: Stairs
entities:
+ - uid: 11340
+ components:
+ - type: Transform
+ pos: 15.5,5.5
+ parent: 60
- uid: 23769
components:
- type: Transform
@@ -132533,11 +131941,6 @@ entities:
- type: Transform
pos: 16.5,5.5
parent: 60
- - uid: 23839
- components:
- - type: Transform
- pos: 15.5,5.5
- parent: 60
- uid: 24057
components:
- type: Transform
@@ -132556,6 +131959,14 @@ entities:
rot: 3.141592653589793 rad
pos: 17.5,-7.5
parent: 60
+- proto: StairStageDark
+ entities:
+ - uid: 8949
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,4.5
+ parent: 60
- proto: StairStageWood
entities:
- uid: 5021
@@ -132613,10 +132024,10 @@ entities:
- type: Transform
pos: 12.5,-21.5
parent: 60
- - uid: 18695
+ - uid: 10829
components:
- type: Transform
- pos: -32.5,-21.5
+ pos: -29.5,-21.5
parent: 60
- uid: 18699
components:
@@ -132638,11 +132049,6 @@ entities:
- type: Transform
pos: -39.5,26.5
parent: 60
- - uid: 23717
- components:
- - type: Transform
- pos: -35.5,-14.5
- parent: 60
- uid: 23729
components:
- type: Transform
@@ -132675,18 +132081,6 @@ entities:
- type: Transform
pos: 10.5,5.5
parent: 60
- - uid: 2714
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-8.5
- parent: 60
- - uid: 3168
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -14.5,-7.5
- parent: 60
- uid: 24012
components:
- type: Transform
@@ -132730,23 +132124,51 @@ entities:
rot: 3.141592653589793 rad
pos: 26.5,-16.5
parent: 60
- - uid: 1696
+ - uid: 341
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,1.5
+ pos: -27.5,-5.5
parent: 60
- - uid: 1823
+ - uid: 352
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -25.531624,-14.186428
+ pos: -25.5,-5.5
parent: 60
- - uid: 1852
+ - uid: 363
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -27.484749,-14.202053
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-18.5
+ parent: 60
+ - uid: 492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-16.5
+ parent: 60
+ - uid: 707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-18.5
+ parent: 60
+ - uid: 1633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-16.5
+ parent: 60
+ - uid: 1868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -27.5,-17.5
+ parent: 60
+ - uid: 1869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-17.5
parent: 60
- uid: 3165
components:
@@ -132765,12 +132187,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 20.5,-35.5
parent: 60
- - uid: 4542
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,1.5
- parent: 60
- uid: 4803
components:
- type: Transform
@@ -132782,10 +132198,21 @@ entities:
- type: Transform
pos: -44.5,-6.5
parent: 60
- - uid: 9682
+ - uid: 9015
+ components:
+ - type: Transform
+ pos: -34.5,-14.5
+ parent: 60
+ - uid: 11384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-16.5
+ parent: 60
+ - uid: 14432
components:
- type: Transform
- pos: -29.51366,-6.3277454
+ pos: 1.5,35.5
parent: 60
- uid: 14541
components:
@@ -132827,31 +132254,32 @@ entities:
rot: 3.141592653589793 rad
pos: -45.5,-8.5
parent: 60
- - uid: 22452
+ - uid: 25283
components:
- type: Transform
- pos: 1.482888,34.64684
+ rot: 3.141592653589793 rad
+ pos: 52.5,49.5
parent: 60
- - uid: 24150
+- proto: StoolBar
+ entities:
+ - uid: 1921
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-27.5
parent: 60
- - uid: 24151
+ - uid: 1922
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -27.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,-27.5
parent: 60
- - uid: 25283
+ - uid: 1923
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 52.5,49.5
+ pos: 19.5,-27.5
parent: 60
-- proto: StoolBar
- entities:
- uid: 2224
components:
- type: Transform
@@ -133036,10 +132464,10 @@ entities:
parent: 60
- proto: Stunbaton
entities:
- - uid: 1653
+ - uid: 5429
components:
- type: Transform
- pos: -34.412434,3.3669972
+ pos: -28.512793,-20.483536
parent: 60
- proto: SubstationBasic
entities:
@@ -133111,12 +132539,12 @@ entities:
- type: Transform
pos: -5.5,-1.5
parent: 7536
- - uid: 8696
+ - uid: 8342
components:
- type: MetaData
- name: Security Sub North
+ name: Security Substation
- type: Transform
- pos: -30.5,4.5
+ pos: -34.5,2.5
parent: 60
- uid: 8940
components:
@@ -133176,6 +132604,8 @@ entities:
parent: 60
- uid: 16374
components:
+ - type: MetaData
+ name: Particle Accelerator Substation
- type: Transform
pos: 5.5,34.5
parent: 60
@@ -133244,10 +132674,10 @@ entities:
parent: 60
- proto: SuitStorageEngi
entities:
- - uid: 16420
+ - uid: 16421
components:
- type: Transform
- pos: -8.5,35.5
+ pos: -7.5,34.5
parent: 60
- uid: 19452
components:
@@ -133304,10 +132734,20 @@ entities:
parent: 7536
- proto: SuitStorageSec
entities:
- - uid: 21214
+ - uid: 1740
components:
- type: Transform
- pos: -27.5,2.5
+ pos: -27.5,1.5
+ parent: 60
+ - uid: 1904
+ components:
+ - type: Transform
+ pos: -25.5,1.5
+ parent: 60
+ - uid: 1906
+ components:
+ - type: Transform
+ pos: -24.5,-1.5
parent: 60
- proto: SurveillanceCameraCommand
entities:
@@ -133722,6 +133162,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Anchor Room
+ - uid: 14220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -8.5,38.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment Airlock Left
- uid: 15449
components:
- type: Transform
@@ -133787,11 +133238,11 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: TEG
- - uid: 16423
+ - uid: 16422
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 2.5,36.5
+ pos: 2.5,37.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
@@ -133928,6 +133379,17 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Circuitry
+ - uid: 23703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,36.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment Airlock Right
- uid: 24273
components:
- type: Transform
@@ -134152,6 +133614,38 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Smoking Area
+ - uid: 8424
+ components:
+ - type: Transform
+ pos: -27.5,7.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: North Security Hall
+ - uid: 8676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -25.5,-22.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: South Security Hall
+ - uid: 13967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,4.5
+ parent: 60
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Ext Grav Gen
- uid: 17468
components:
- type: Transform
@@ -134316,17 +133810,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Theatre Backroom
- - uid: 24290
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-20.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Court Main Hall
- uid: 24293
components:
- type: Transform
@@ -134468,28 +133951,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hall Toolroom
- - uid: 24321
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -14.5,4.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Grav Gen
- - uid: 24322
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-22.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Detective Office
- uid: 24711
components:
- type: Transform
@@ -134610,17 +134071,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hallway Cargo
- - uid: 24764
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,38.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Singulo Cage Airlock
- uid: 24765
components:
- type: Transform
@@ -134786,17 +134236,6 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Morgue
- - uid: 23825
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-4.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: BrigMed
- uid: 24280
components:
- type: Transform
@@ -134938,10 +134377,10 @@ entities:
parent: 60
- proto: SurveillanceCameraRouterSecurity
entities:
- - uid: 18781
+ - uid: 5848
components:
- type: Transform
- pos: -22.5,2.5
+ pos: -22.5,1.5
parent: 60
- proto: SurveillanceCameraRouterService
entities:
@@ -135066,28 +134505,6 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Sci RND Hall
- - uid: 24265
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -38.5,1.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Sci Hall
- - uid: 24266
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -30.5,9.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: Robotics Hall
- uid: 24267
components:
- type: Transform
@@ -135134,17 +134551,6 @@ entities:
id: RD Room
- proto: SurveillanceCameraSecurity
entities:
- - uid: 1904
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-18.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Security Entrance
- uid: 4274
components:
- type: Transform
@@ -135156,147 +134562,146 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Lawyer Office
- - uid: 7811
+ - uid: 6705
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-0.5
+ pos: -21.5,-20.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: HoS Office
- - uid: 8380
+ id: Security East Entrance
+ - uid: 6779
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,2.5
+ rot: 3.141592653589793 rad
+ pos: -31.5,-18.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Security Break Room
- - uid: 9507
+ id: Security West Entrance
+ - uid: 8428
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -44.5,-15.5
+ pos: -33.5,-5.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Courthouse
- - uid: 13658
+ id: Cell 1
+ - uid: 8717
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -11.5,-13.5
+ pos: -19.5,-9.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Perma Brig
- - uid: 21042
+ id: Cell 4
+ - uid: 8956
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-22.5
+ pos: -33.5,-9.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Perma Entrance
- - uid: 21043
+ id: Cell 2
+ - uid: 9011
components:
- type: Transform
- pos: -25.5,-5.5
+ pos: -20.5,-1.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Sec North
- - uid: 21044
+ id: HoS Office
+ - uid: 9507
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -26.5,2.5
+ pos: -44.5,-15.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Armory
- - uid: 21046
+ id: Courthouse
+ - uid: 11339
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -36.5,-11.5
+ pos: -25.5,-12.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Sec Exterior West
- - uid: 21047
+ id: Warden's Office
+ - uid: 11663
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -16.5,-11.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-5.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Sec Exterior East
- - uid: 21048
+ id: Cell 3
+ - uid: 13098
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,1.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Sec East
- - uid: 21049
+ id: Armory
+ - uid: 13658
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -30.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -11.5,-13.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Sec West
- - uid: 21050
+ id: Perma Brig
+ - uid: 14229
components:
- type: Transform
- pos: -25.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: -34.5,0.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Sec Entrance
- - uid: 21154
+ id: Interrogation
+ - uid: 21042
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -34.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-22.5
parent: 60
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraSecurity
nameSet: True
- id: Interrogation
+ id: Perma Entrance
- uid: 21180
components:
- type: Transform
@@ -135308,27 +134713,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Detective Office
- - uid: 24287
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-18.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Security Locker Room
- - uid: 24288
- components:
- - type: Transform
- pos: -24.5,-16.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Security South
- uid: 24294
components:
- type: Transform
@@ -135339,72 +134723,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Perma Brig Locker Room
- - uid: 24314
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-7.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Warden's Office
- - uid: 24315
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-9.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 1
- - uid: 24316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -18.5,-12.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 2
- - uid: 24317
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-6.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 3
- - uid: 24318
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-9.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 4
- - uid: 24319
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -33.5,-12.5
- parent: 60
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Cell 5
- proto: SurveillanceCameraService
entities:
- uid: 21079
@@ -135679,8 +134997,25 @@ entities:
parent: 60
- type: Tag
tags: []
+- proto: SyringeInaprovaline
+ entities:
+ - uid: 14618
+ components:
+ - type: Transform
+ pos: -19.265156,-13.438609
+ parent: 60
- proto: Table
entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: -32.5,-7.5
+ parent: 60
+ - uid: 20
+ components:
+ - type: Transform
+ pos: -31.5,-20.5
+ parent: 60
- uid: 78
components:
- type: Transform
@@ -135696,6 +135031,16 @@ entities:
- type: Transform
pos: -12.5,-14.5
parent: 60
+ - uid: 233
+ components:
+ - type: Transform
+ pos: -21.5,-18.5
+ parent: 60
+ - uid: 246
+ components:
+ - type: Transform
+ pos: -20.5,-7.5
+ parent: 60
- uid: 328
components:
- type: Transform
@@ -135711,6 +135056,11 @@ entities:
- type: Transform
pos: 0.5,17.5
parent: 60
+ - uid: 721
+ components:
+ - type: Transform
+ pos: -27.5,-9.5
+ parent: 60
- uid: 730
components:
- type: Transform
@@ -135721,6 +135071,11 @@ entities:
- type: Transform
pos: -5.5,-28.5
parent: 60
+ - uid: 764
+ components:
+ - type: Transform
+ pos: -25.5,-9.5
+ parent: 60
- uid: 825
components:
- type: Transform
@@ -135736,30 +135091,60 @@ entities:
- type: Transform
pos: -66.5,6.5
parent: 60
- - uid: 1478
+ - uid: 1549
components:
- type: Transform
- pos: -32.5,-15.5
+ pos: -26.5,-6.5
parent: 60
- - uid: 1644
+ - uid: 1550
components:
- type: Transform
- pos: -34.5,-3.5
+ pos: -27.5,-6.5
parent: 60
- - uid: 1646
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: -25.5,-6.5
+ parent: 60
+ - uid: 1635
components:
- type: Transform
- pos: -33.5,-3.5
+ pos: -26.5,-20.5
parent: 60
- uid: 1678
components:
- type: Transform
pos: 9.5,-51.5
parent: 60
- - uid: 1908
+ - uid: 1822
components:
- type: Transform
- pos: -25.5,-13.5
+ pos: -32.5,-11.5
+ parent: 60
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: -23.5,-10.5
+ parent: 60
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: -28.5,-20.5
+ parent: 60
+ - uid: 1917
+ components:
+ - type: Transform
+ pos: -21.5,-20.5
+ parent: 60
+ - uid: 1920
+ components:
+ - type: Transform
+ pos: 19.5,-26.5
+ parent: 60
+ - uid: 1924
+ components:
+ - type: Transform
+ pos: 20.5,-26.5
parent: 60
- uid: 2076
components:
@@ -135893,12 +135278,6 @@ entities:
- type: Transform
pos: 3.5,-38.5
parent: 60
- - uid: 4754
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-2.5
- parent: 60
- uid: 4818
components:
- type: Transform
@@ -135934,11 +135313,6 @@ entities:
- type: Transform
pos: 0.5,15.5
parent: 60
- - uid: 5756
- components:
- - type: Transform
- pos: -19.5,-17.5
- parent: 60
- uid: 5771
components:
- type: Transform
@@ -135959,16 +135333,6 @@ entities:
- type: Transform
pos: 17.5,-45.5
parent: 60
- - uid: 5935
- components:
- - type: Transform
- pos: -27.5,-13.5
- parent: 60
- - uid: 5983
- components:
- - type: Transform
- pos: -26.5,-13.5
- parent: 60
- uid: 6313
components:
- type: Transform
@@ -136072,11 +135436,6 @@ entities:
- type: Transform
pos: 43.5,0.5
parent: 60
- - uid: 7787
- components:
- - type: Transform
- pos: -32.5,3.5
- parent: 60
- uid: 7788
components:
- type: Transform
@@ -136097,11 +135456,47 @@ entities:
- type: Transform
pos: -58.5,-17.5
parent: 60
+ - uid: 8438
+ components:
+ - type: Transform
+ pos: -20.5,-11.5
+ parent: 60
+ - uid: 8466
+ components:
+ - type: Transform
+ pos: -30.5,-20.5
+ parent: 60
+ - uid: 8607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-2.5
+ parent: 60
+ - uid: 8712
+ components:
+ - type: Transform
+ pos: -32.5,-0.5
+ parent: 60
+ - uid: 8713
+ components:
+ - type: Transform
+ pos: -31.5,-19.5
+ parent: 60
+ - uid: 8720
+ components:
+ - type: Transform
+ pos: -21.5,-19.5
+ parent: 60
- uid: 8756
components:
- type: Transform
pos: -64.5,0.5
parent: 60
+ - uid: 8898
+ components:
+ - type: Transform
+ pos: -29.5,-10.5
+ parent: 60
- uid: 8909
components:
- type: Transform
@@ -136127,6 +135522,11 @@ entities:
- type: Transform
pos: -44.5,-10.5
parent: 60
+ - uid: 9159
+ components:
+ - type: Transform
+ pos: -31.5,-18.5
+ parent: 60
- uid: 9171
components:
- type: Transform
@@ -136204,6 +135604,11 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,32.5
parent: 60
+ - uid: 10369
+ components:
+ - type: Transform
+ pos: 21.5,-26.5
+ parent: 60
- uid: 10620
components:
- type: Transform
@@ -136309,6 +135714,11 @@ entities:
- type: Transform
pos: 24.5,-0.5
parent: 60
+ - uid: 13296
+ components:
+ - type: Transform
+ pos: -18.5,-13.5
+ parent: 60
- uid: 13498
components:
- type: Transform
@@ -136319,12 +135729,6 @@ entities:
- type: Transform
pos: -12.5,-13.5
parent: 60
- - uid: 13623
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -18.5,-16.5
- parent: 60
- uid: 13649
components:
- type: Transform
@@ -136347,6 +135751,11 @@ entities:
- type: Transform
pos: -7.5,-11.5
parent: 60
+ - uid: 13767
+ components:
+ - type: Transform
+ pos: -32.5,0.5
+ parent: 60
- uid: 13874
components:
- type: Transform
@@ -136452,6 +135861,11 @@ entities:
- type: Transform
pos: -38.5,19.5
parent: 60
+ - uid: 17474
+ components:
+ - type: Transform
+ pos: -34.5,-15.5
+ parent: 60
- uid: 17656
components:
- type: Transform
@@ -136695,6 +136109,22 @@ entities:
- type: Transform
pos: 47.5,12.5
parent: 60
+ - uid: 23645
+ components:
+ - type: Transform
+ pos: -19.5,-13.5
+ parent: 60
+ - uid: 23648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-2.5
+ parent: 60
+ - uid: 23656
+ components:
+ - type: Transform
+ pos: -20.5,-13.5
+ parent: 60
- uid: 23665
components:
- type: Transform
@@ -136710,6 +136140,12 @@ entities:
- type: Transform
pos: 26.5,-11.5
parent: 60
+ - uid: 23902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 6.5,34.5
+ parent: 60
- uid: 24017
components:
- type: Transform
@@ -136720,11 +136156,6 @@ entities:
- type: Transform
pos: -41.5,-6.5
parent: 60
- - uid: 24101
- components:
- - type: Transform
- pos: -28.5,-20.5
- parent: 60
- uid: 24231
components:
- type: Transform
@@ -136787,36 +136218,64 @@ entities:
- type: Transform
pos: 20.5,-37.5
parent: 60
+ - uid: 6286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,17.5
+ parent: 60
+ - uid: 7174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,18.5
+ parent: 60
+ - uid: 7229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -10.5,16.5
+ parent: 60
- uid: 7493
components:
- type: Transform
pos: 19.5,-29.5
parent: 60
- - uid: 14120
+ - uid: 14139
components:
- type: Transform
- pos: -8.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,18.5
parent: 60
- - uid: 14122
+ - uid: 14142
components:
- type: Transform
- pos: -9.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,17.5
parent: 60
- - uid: 14133
+ - uid: 14146
components:
- type: Transform
- pos: -8.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: -9.5,16.5
parent: 60
- - uid: 14327
+ - uid: 14148
components:
- type: Transform
- pos: -9.5,17.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,17.5
parent: 60
- uid: 15673
components:
- type: Transform
pos: 19.5,-30.5
parent: 60
+ - uid: 16344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,16.5
+ parent: 60
- uid: 17818
components:
- type: Transform
@@ -136845,6 +136304,39 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,21.5
parent: 60
+- proto: TableFancyBlue
+ entities:
+ - uid: 5757
+ components:
+ - type: Transform
+ pos: -34.5,-11.5
+ parent: 60
+- proto: TableFancyGreen
+ entities:
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: -34.5,-7.5
+ parent: 60
+ - uid: 14211
+ components:
+ - type: Transform
+ pos: -12.5,21.5
+ parent: 60
+- proto: TableFancyOrange
+ entities:
+ - uid: 8682
+ components:
+ - type: Transform
+ pos: -18.5,-7.5
+ parent: 60
+- proto: TableFancyPurple
+ entities:
+ - uid: 2579
+ components:
+ - type: Transform
+ pos: -18.5,-11.5
+ parent: 60
- proto: TableGlass
entities:
- uid: 123
@@ -137023,30 +136515,20 @@ entities:
- type: Transform
pos: -65.5,9.5
parent: 60
- - uid: 1175
- components:
- - type: Transform
- pos: -33.5,-0.5
- parent: 60
- uid: 1339
components:
- type: Transform
pos: 7.5,-26.5
parent: 60
- - uid: 1472
- components:
- - type: Transform
- pos: -23.5,-9.5
- parent: 60
- - uid: 1666
+ - uid: 1647
components:
- type: Transform
- pos: -34.5,2.5
+ pos: -24.5,-14.5
parent: 60
- - uid: 1793
+ - uid: 1870
components:
- type: Transform
- pos: -24.5,2.5
+ pos: -25.5,-14.5
parent: 60
- uid: 2212
components:
@@ -137158,21 +136640,16 @@ entities:
- type: Transform
pos: 15.5,-33.5
parent: 60
- - uid: 5972
+ - uid: 5983
components:
- type: Transform
- pos: -34.5,3.5
+ pos: -24.5,1.5
parent: 60
- uid: 6158
components:
- type: Transform
pos: -113.5,8.5
parent: 60
- - uid: 6541
- components:
- - type: Transform
- pos: -29.5,-9.5
- parent: 60
- uid: 6544
components:
- type: Transform
@@ -137256,21 +136733,6 @@ entities:
- type: Transform
pos: -67.5,9.5
parent: 60
- - uid: 8667
- components:
- - type: Transform
- pos: -34.5,-0.5
- parent: 60
- - uid: 9015
- components:
- - type: Transform
- pos: -25.5,-11.5
- parent: 60
- - uid: 9089
- components:
- - type: Transform
- pos: -27.5,-11.5
- parent: 60
- uid: 9132
components:
- type: Transform
@@ -137296,11 +136758,6 @@ entities:
- type: Transform
pos: 13.5,-3.5
parent: 7536
- - uid: 9152
- components:
- - type: Transform
- pos: -34.5,1.5
- parent: 60
- uid: 9164
components:
- type: Transform
@@ -137321,16 +136778,6 @@ entities:
- type: Transform
pos: -40.5,5.5
parent: 60
- - uid: 10369
- components:
- - type: Transform
- pos: -32.5,-0.5
- parent: 60
- - uid: 11127
- components:
- - type: Transform
- pos: -27.5,-7.5
- parent: 60
- uid: 12349
components:
- type: Transform
@@ -137417,16 +136864,6 @@ entities:
- type: Transform
pos: 36.5,17.5
parent: 60
- - uid: 18767
- components:
- - type: Transform
- pos: -24.5,-0.5
- parent: 60
- - uid: 18771
- components:
- - type: Transform
- pos: -24.5,0.5
- parent: 60
- uid: 18824
components:
- type: Transform
@@ -137571,15 +137008,20 @@ entities:
- type: Transform
pos: 25.5,-15.5
parent: 60
- - uid: 1871
+ - uid: 1733
components:
- type: Transform
- pos: -21.5,0.5
+ pos: -20.5,-0.5
parent: 60
- - uid: 1956
+ - uid: 1745
components:
- type: Transform
- pos: -22.5,0.5
+ pos: -21.5,-0.5
+ parent: 60
+ - uid: 1847
+ components:
+ - type: Transform
+ pos: -22.5,-0.5
parent: 60
- uid: 2022
components:
@@ -137801,11 +137243,6 @@ entities:
- type: Transform
pos: -10.5,-28.5
parent: 60
- - uid: 9040
- components:
- - type: Transform
- pos: -12.5,19.5
- parent: 60
- uid: 11692
components:
- type: Transform
@@ -137846,15 +137283,10 @@ entities:
- type: Transform
pos: -8.5,20.5
parent: 60
- - uid: 14125
- components:
- - type: Transform
- pos: -6.5,15.5
- parent: 60
- - uid: 14142
+ - uid: 14164
components:
- type: Transform
- pos: -11.5,22.5
+ pos: -8.5,11.5
parent: 60
- uid: 14177
components:
@@ -137871,11 +137303,6 @@ entities:
- type: Transform
pos: -8.5,25.5
parent: 60
- - uid: 14436
- components:
- - type: Transform
- pos: -10.5,13.5
- parent: 60
- uid: 17372
components:
- type: Transform
@@ -138192,82 +137619,66 @@ entities:
- type: Transform
pos: 21.522934,4.467383
parent: 60
-- proto: TeslaCoil
+- proto: TeslaCoilFlatpack
entities:
- - uid: 13248
+ - uid: 14097
components:
- type: Transform
- pos: -6.5,46.5
+ pos: 10.348119,34.754375
parent: 60
- - uid: 13256
+ - uid: 23907
components:
- type: Transform
- pos: 7.5,46.5
+ pos: 10.660619,34.754375
parent: 60
- - uid: 13266
+ - uid: 23908
components:
- type: Transform
- pos: 7.5,47.5
+ pos: 10.348119,34.566875
parent: 60
- - uid: 13269
+ - uid: 23909
components:
- type: Transform
- pos: 7.5,48.5
+ pos: 10.644994,34.566875
parent: 60
- - uid: 16406
+ - uid: 23910
components:
- type: Transform
- pos: -6.5,47.5
+ pos: 10.363744,34.379375
parent: 60
- - uid: 16421
+ - uid: 23911
components:
- type: Transform
- pos: -6.5,48.5
+ pos: 10.629369,34.379375
parent: 60
- proto: TeslaGenerator
entities:
- - uid: 24770
+ - uid: 16391
components:
- type: Transform
- pos: -6.5,34.5
+ pos: -4.5,33.5
parent: 60
-- proto: TeslaGroundingRod
+- proto: TeslaGroundingRodFlatpack
entities:
- - uid: 21013
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,36.5
- parent: 60
- - uid: 21021
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,35.5
- parent: 60
- - uid: 21026
+ - uid: 16529
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,34.5
+ pos: 10.346966,35.715775
parent: 60
- - uid: 21066
+ - uid: 16536
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,34.5
+ pos: 10.721966,35.340775
parent: 60
- - uid: 21339
+ - uid: 16537
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,35.5
+ pos: 10.362591,35.340775
parent: 60
- - uid: 21343
+ - uid: 17109
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,36.5
+ pos: 10.714586,35.715775
parent: 60
- proto: Thruster
entities:
@@ -138284,11 +137695,6 @@ entities:
- type: Transform
pos: 31.5,-16.5
parent: 60
- - uid: 1503
- components:
- - type: Transform
- pos: -31.5,-2.5
- parent: 60
- uid: 3223
components:
- type: Transform
@@ -138329,6 +137735,11 @@ entities:
- type: Transform
pos: -55.5,-12.5
parent: 60
+ - uid: 8749
+ components:
+ - type: Transform
+ pos: -30.5,-2.5
+ parent: 60
- uid: 9492
components:
- type: Transform
@@ -138369,11 +137780,6 @@ entities:
- type: Transform
pos: -19.5,20.5
parent: 60
- - uid: 14631
- components:
- - type: Transform
- pos: -31.5,-4.5
- parent: 60
- uid: 16411
components:
- type: Transform
@@ -139063,6 +138469,11 @@ entities:
- type: Transform
pos: -4.5,-44.5
parent: 60
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: -24.5,-6.5
+ parent: 60
- uid: 3408
components:
- type: Transform
@@ -139078,11 +138489,6 @@ entities:
- type: Transform
pos: 29.5,-22.5
parent: 60
- - uid: 6039
- components:
- - type: Transform
- pos: -24.5,-13.5
- parent: 60
- uid: 6321
components:
- type: Transform
@@ -139132,11 +138538,6 @@ entities:
parent: 60
- proto: VendingMachineCoffee
entities:
- - uid: 1549
- components:
- - type: Transform
- pos: -28.5,-18.5
- parent: 60
- uid: 6139
components:
- type: Transform
@@ -139167,6 +138568,11 @@ entities:
- type: Transform
pos: 3.5,21.5
parent: 60
+ - uid: 17295
+ components:
+ - type: Transform
+ pos: -0.5,-2.5
+ parent: 60
- uid: 24356
components:
- type: Transform
@@ -139207,13 +138613,6 @@ entities:
- type: Transform
pos: 21.5,-40.5
parent: 60
-- proto: VendingMachineDonut
- entities:
- - uid: 1766
- components:
- - type: Transform
- pos: -29.5,-18.5
- parent: 60
- proto: VendingMachineEngiDrobe
entities:
- uid: 7637
@@ -139230,10 +138629,10 @@ entities:
parent: 60
- proto: VendingMachineGames
entities:
- - uid: 14001
+ - uid: 14168
components:
- type: Transform
- pos: -12.5,13.5
+ pos: -6.5,19.5
parent: 60
- proto: VendingMachineGeneDrobe
entities:
@@ -139298,10 +138697,10 @@ entities:
parent: 60
- proto: VendingMachineRestockDonut
entities:
- - uid: 5660
+ - uid: 11369
components:
- type: Transform
- pos: -21.517738,5.3513722
+ pos: -22.478699,3.461222
parent: 60
- proto: VendingMachineRoboDrobe
entities:
@@ -139333,22 +138732,17 @@ entities:
parent: 60
- proto: VendingMachineSec
entities:
- - uid: 1634
- components:
- - type: Transform
- pos: -34.5,-15.5
- parent: 60
- - uid: 9683
+ - uid: 634
components:
- type: Transform
- pos: -31.5,-0.5
+ pos: -28.5,-14.5
parent: 60
- proto: VendingMachineSecDrobe
entities:
- - uid: 1482
+ - uid: 635
components:
- type: Transform
- pos: -34.5,-20.5
+ pos: -27.5,-14.5
parent: 60
- proto: VendingMachineSeeds
entities:
@@ -139436,13 +138830,6 @@ entities:
- type: Transform
pos: 52.5,-31.5
parent: 60
-- proto: VendingMachineWinter
- entities:
- - uid: 9009
- components:
- - type: Transform
- pos: -39.5,19.5
- parent: 60
- proto: VendingMachineYouTool
entities:
- uid: 6624
@@ -139464,6 +138851,12 @@ entities:
parent: 60
- proto: WallmountTelescreen
entities:
+ - uid: 1910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-19.5
+ parent: 60
- uid: 2611
components:
- type: Transform
@@ -139479,29 +138872,12 @@ entities:
- type: Transform
pos: -25.5,-28.5
parent: 60
- - uid: 5743
- components:
- - type: Transform
- pos: -18.5,-14.5
- parent: 60
- uid: 7582
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 14.5,19.5
parent: 60
- - uid: 13158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -27.5,-11.5
- parent: 60
- - uid: 13718
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -25.5,-11.5
- parent: 60
- proto: WallmountTelevision
entities:
- uid: 8148
@@ -139930,32 +139306,11 @@ entities:
parent: 7536
- proto: WallReinforced
entities:
- - uid: 6
- components:
- - type: Transform
- pos: -32.5,-5.5
- parent: 60
- uid: 11
components:
- type: Transform
pos: 56.5,-4.5
parent: 60
- - uid: 12
- components:
- - type: Transform
- pos: -24.5,-6.5
- parent: 60
- - uid: 13
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-5.5
- parent: 60
- - uid: 20
- components:
- - type: Transform
- pos: -20.5,-8.5
- parent: 60
- uid: 38
components:
- type: Transform
@@ -139971,138 +139326,45 @@ entities:
- type: Transform
pos: -62.5,-17.5
parent: 60
- - uid: 62
- components:
- - type: Transform
- pos: 46.5,19.5
- parent: 60
- - uid: 90
- components:
- - type: Transform
- pos: 8.5,-44.5
- parent: 60
- - uid: 91
- components:
- - type: Transform
- pos: -29.5,15.5
- parent: 60
- - uid: 116
+ - uid: 51
components:
- type: Transform
- pos: -32.5,-11.5
+ pos: -29.5,-17.5
parent: 60
- - uid: 119
+ - uid: 62
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-4.5
+ pos: 46.5,19.5
parent: 60
- - uid: 122
+ - uid: 67
components:
- type: Transform
- pos: -32.5,-8.5
+ pos: -35.5,-15.5
parent: 60
- - uid: 143
+ - uid: 77
components:
- type: Transform
- pos: -27.5,-6.5
+ pos: -35.5,2.5
parent: 60
- - uid: 150
+ - uid: 90
components:
- type: Transform
- pos: -33.5,-5.5
+ pos: 8.5,-44.5
parent: 60
- - uid: 152
+ - uid: 91
components:
- type: Transform
- pos: -31.5,-18.5
+ pos: -29.5,15.5
parent: 60
- uid: 165
components:
- type: Transform
pos: 57.5,-8.5
parent: 60
- - uid: 184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-16.5
- parent: 60
- - uid: 186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-14.5
- parent: 60
- - uid: 187
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-15.5
- parent: 60
- - uid: 189
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-17.5
- parent: 60
- - uid: 190
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-11.5
- parent: 60
- - uid: 206
- components:
- - type: Transform
- pos: -35.5,-21.5
- parent: 60
- - uid: 207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,2.5
- parent: 60
- - uid: 208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,3.5
- parent: 60
- - uid: 213
- components:
- - type: Transform
- pos: -20.5,-14.5
- parent: 60
- uid: 237
components:
- type: Transform
- pos: -28.5,-6.5
- parent: 60
- - uid: 239
- components:
- - type: Transform
- pos: -34.5,-5.5
- parent: 60
- - uid: 242
- components:
- - type: Transform
- pos: -18.5,-14.5
- parent: 60
- - uid: 246
- components:
- - type: Transform
- pos: -33.5,-14.5
- parent: 60
- - uid: 267
- components:
- - type: Transform
- pos: -34.5,-14.5
- parent: 60
- - uid: 278
- components:
- - type: Transform
- pos: -21.5,-14.5
+ pos: -34.5,-4.5
parent: 60
- uid: 290
components:
@@ -140114,38 +139376,11 @@ entities:
- type: Transform
pos: 57.5,-4.5
parent: 60
- - uid: 309
- components:
- - type: Transform
- pos: -32.5,-14.5
- parent: 60
- - uid: 314
- components:
- - type: Transform
- pos: -17.5,-3.5
- parent: 60
- uid: 324
components:
- type: Transform
pos: 51.5,-7.5
parent: 60
- - uid: 336
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-1.5
- parent: 60
- - uid: 341
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-0.5
- parent: 60
- - uid: 342
- components:
- - type: Transform
- pos: -19.5,-14.5
- parent: 60
- uid: 343
components:
- type: Transform
@@ -140156,12 +139391,6 @@ entities:
- type: Transform
pos: 35.5,-4.5
parent: 60
- - uid: 364
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-2.5
- parent: 60
- uid: 366
components:
- type: Transform
@@ -140247,11 +139476,6 @@ entities:
- type: Transform
pos: 3.5,-4.5
parent: 60
- - uid: 492
- components:
- - type: Transform
- pos: -24.5,-21.5
- parent: 60
- uid: 498
components:
- type: Transform
@@ -140631,10 +139855,15 @@ entities:
- type: Transform
pos: -21.5,-27.5
parent: 60
- - uid: 784
+ - uid: 774
components:
- type: Transform
- pos: -20.5,-5.5
+ pos: -23.5,1.5
+ parent: 60
+ - uid: 776
+ components:
+ - type: Transform
+ pos: -23.5,2.5
parent: 60
- uid: 809
components:
@@ -140647,26 +139876,41 @@ entities:
- type: Transform
pos: -67.5,-2.5
parent: 60
- - uid: 838
+ - uid: 845
components:
- type: Transform
- pos: -22.5,-21.5
+ pos: -29.5,-2.5
parent: 60
- - uid: 839
+ - uid: 856
components:
- type: Transform
- pos: -20.5,-11.5
+ pos: -29.5,-1.5
parent: 60
- uid: 866
components:
- type: Transform
pos: 8.5,-26.5
parent: 60
+ - uid: 937
+ components:
+ - type: Transform
+ pos: -17.5,-13.5
+ parent: 60
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: -20.5,-8.5
+ parent: 60
- uid: 1207
components:
- type: Transform
pos: 2.5,-26.5
parent: 60
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: -19.5,-8.5
+ parent: 60
- uid: 1232
components:
- type: Transform
@@ -140806,6 +140050,11 @@ entities:
- type: Transform
pos: 3.5,-26.5
parent: 60
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: -26.5,2.5
+ parent: 60
- uid: 1387
components:
- type: Transform
@@ -140841,235 +140090,210 @@ entities:
- type: Transform
pos: 11.5,-15.5
parent: 60
- - uid: 1470
- components:
- - type: Transform
- pos: 7.5,-43.5
- parent: 60
- - uid: 1475
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-14.5
- parent: 60
- - uid: 1495
- components:
- - type: Transform
- pos: -21.5,-25.5
- parent: 60
- - uid: 1496
- components:
- - type: Transform
- pos: -22.5,-25.5
- parent: 60
- - uid: 1512
+ - uid: 1448
components:
- type: Transform
- pos: -3.5,8.5
+ pos: -27.5,2.5
parent: 60
- - uid: 1513
+ - uid: 1459
components:
- type: Transform
- pos: 4.5,8.5
+ pos: -28.5,2.5
parent: 60
- - uid: 1515
+ - uid: 1461
components:
- type: Transform
- pos: -4.5,12.5
+ pos: -29.5,2.5
parent: 60
- - uid: 1516
+ - uid: 1465
components:
- type: Transform
- pos: 5.5,12.5
+ pos: -24.5,2.5
parent: 60
- - uid: 1517
+ - uid: 1466
components:
- type: Transform
- pos: 8.5,11.5
+ pos: -25.5,2.5
parent: 60
- - uid: 1528
+ - uid: 1467
components:
- type: Transform
- pos: -22.5,-17.5
+ pos: -26.5,3.5
parent: 60
- - uid: 1535
+ - uid: 1468
components:
- type: Transform
- pos: -29.5,-0.5
+ pos: -27.5,3.5
parent: 60
- - uid: 1547
+ - uid: 1470
components:
- type: Transform
- pos: -27.5,3.5
+ pos: 7.5,-43.5
parent: 60
- - uid: 1550
+ - uid: 1472
components:
- type: Transform
- pos: -24.5,-1.5
+ pos: -23.5,3.5
parent: 60
- - uid: 1562
+ - uid: 1473
components:
- type: Transform
- pos: -25.5,-25.5
+ pos: -29.5,0.5
parent: 60
- - uid: 1563
+ - uid: 1474
components:
- type: Transform
- pos: -26.5,-25.5
+ pos: -29.5,1.5
parent: 60
- - uid: 1594
+ - uid: 1475
components:
- type: Transform
- pos: -29.5,1.5
+ pos: -29.5,-0.5
parent: 60
- - uid: 1596
+ - uid: 1476
components:
- type: Transform
- pos: -29.5,0.5
+ pos: -29.5,3.5
parent: 60
- - uid: 1604
+ - uid: 1481
components:
- type: Transform
- pos: -30.5,-25.5
+ pos: -24.5,3.5
parent: 60
- - uid: 1625
+ - uid: 1482
components:
- type: Transform
- pos: -30.5,3.5
+ pos: -28.5,3.5
parent: 60
- - uid: 1645
+ - uid: 1484
components:
- type: Transform
- pos: -26.5,3.5
+ pos: -27.5,-13.5
parent: 60
- - uid: 1648
+ - uid: 1486
components:
- type: Transform
- pos: -29.5,3.5
+ pos: -18.5,-8.5
parent: 60
- - uid: 1655
+ - uid: 1492
components:
- type: Transform
- pos: -18.5,-0.5
+ pos: -25.5,-13.5
parent: 60
- - uid: 1660
+ - uid: 1495
components:
- type: Transform
- pos: -24.5,3.5
+ pos: -21.5,-25.5
parent: 60
- - uid: 1664
+ - uid: 1496
components:
- type: Transform
- pos: -31.5,3.5
+ pos: -22.5,-25.5
parent: 60
- - uid: 1667
+ - uid: 1502
components:
- type: Transform
- pos: -27.5,-25.5
+ pos: -23.5,-0.5
parent: 60
- - uid: 1680
+ - uid: 1503
components:
- type: Transform
- pos: -21.5,-28.5
+ pos: -23.5,-2.5
parent: 60
- - uid: 1681
+ - uid: 1504
components:
- type: Transform
- pos: -21.5,3.5
+ pos: -23.5,-1.5
parent: 60
- - uid: 1724
+ - uid: 1510
components:
- type: Transform
- pos: -23.5,-0.5
+ pos: -23.5,0.5
parent: 60
- - uid: 1727
+ - uid: 1512
components:
- type: Transform
- pos: -20.5,3.5
+ pos: -3.5,8.5
parent: 60
- - uid: 1735
+ - uid: 1513
components:
- type: Transform
- pos: -19.5,3.5
+ pos: 4.5,8.5
parent: 60
- - uid: 1737
+ - uid: 1515
components:
- type: Transform
- pos: -23.5,3.5
+ pos: -4.5,12.5
parent: 60
- - uid: 1748
+ - uid: 1516
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -32.5,-21.5
+ pos: 5.5,12.5
parent: 60
- - uid: 1758
+ - uid: 1517
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -34.5,-21.5
+ pos: 8.5,11.5
parent: 60
- - uid: 1794
+ - uid: 1535
components:
- type: Transform
- pos: -28.5,4.5
+ pos: -24.5,-13.5
parent: 60
- - uid: 1798
+ - uid: 1551
components:
- type: Transform
- pos: -23.5,4.5
+ pos: -25.5,3.5
parent: 60
- - uid: 1799
+ - uid: 1556
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,1.5
+ pos: -23.5,-13.5
parent: 60
- - uid: 1800
+ - uid: 1557
components:
- type: Transform
- pos: -18.5,3.5
+ pos: -23.5,-17.5
parent: 60
- - uid: 1824
+ - uid: 1563
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-5.5
+ pos: -26.5,-25.5
parent: 60
- - uid: 1833
+ - uid: 1576
components:
- type: Transform
- pos: -20.5,-1.5
+ pos: -24.5,-2.5
parent: 60
- - uid: 1863
+ - uid: 1577
components:
- type: Transform
- pos: -23.5,2.5
+ pos: -28.5,-2.5
parent: 60
- - uid: 1864
+ - uid: 1604
components:
- type: Transform
- pos: -28.5,3.5
+ pos: -30.5,-25.5
parent: 60
- - uid: 1869
+ - uid: 1667
components:
- type: Transform
- pos: -22.5,3.5
+ pos: -27.5,-25.5
parent: 60
- - uid: 1951
+ - uid: 1680
components:
- type: Transform
- pos: -27.5,4.5
+ pos: -21.5,-28.5
parent: 60
- - uid: 1953
+ - uid: 1809
components:
- type: Transform
- pos: -23.5,0.5
+ pos: -20.5,-2.5
parent: 60
- - uid: 1955
+ - uid: 1866
components:
- type: Transform
- pos: -25.5,4.5
+ pos: -19.5,2.5
parent: 60
- uid: 2014
components:
@@ -141096,20 +140320,10 @@ entities:
- type: Transform
pos: -30.5,-26.5
parent: 60
- - uid: 2087
- components:
- - type: Transform
- pos: -23.5,-1.5
- parent: 60
- - uid: 2088
- components:
- - type: Transform
- pos: -29.5,-1.5
- parent: 60
- uid: 2104
components:
- type: Transform
- pos: -19.5,-1.5
+ pos: -33.5,-12.5
parent: 60
- uid: 2134
components:
@@ -142457,6 +141671,11 @@ entities:
- type: Transform
pos: -33.5,-25.5
parent: 60
+ - uid: 4043
+ components:
+ - type: Transform
+ pos: -33.5,1.5
+ parent: 60
- uid: 4050
components:
- type: Transform
@@ -142512,6 +141731,11 @@ entities:
- type: Transform
pos: 37.5,-13.5
parent: 60
+ - uid: 4147
+ components:
+ - type: Transform
+ pos: -35.5,-12.5
+ parent: 60
- uid: 4153
components:
- type: Transform
@@ -142532,6 +141756,26 @@ entities:
- type: Transform
pos: -9.5,-21.5
parent: 60
+ - uid: 4202
+ components:
+ - type: Transform
+ pos: -35.5,-13.5
+ parent: 60
+ - uid: 4203
+ components:
+ - type: Transform
+ pos: -22.5,-17.5
+ parent: 60
+ - uid: 4209
+ components:
+ - type: Transform
+ pos: -17.5,-21.5
+ parent: 60
+ - uid: 4216
+ components:
+ - type: Transform
+ pos: -30.5,-17.5
+ parent: 60
- uid: 4238
components:
- type: Transform
@@ -142703,35 +141947,30 @@ entities:
- type: Transform
pos: 31.5,-14.5
parent: 60
- - uid: 4523
- components:
- - type: Transform
- pos: 23.5,-45.5
- parent: 60
- - uid: 4524
+ - uid: 4519
components:
- type: Transform
- pos: 23.5,-44.5
+ pos: -29.5,-13.5
parent: 60
- - uid: 4539
+ - uid: 4522
components:
- type: Transform
- pos: -29.5,16.5
+ pos: -28.5,-13.5
parent: 60
- - uid: 4552
+ - uid: 4523
components:
- type: Transform
- pos: -29.5,2.5
+ pos: 23.5,-45.5
parent: 60
- - uid: 4553
+ - uid: 4524
components:
- type: Transform
- pos: -25.5,3.5
+ pos: 23.5,-44.5
parent: 60
- - uid: 4555
+ - uid: 4539
components:
- type: Transform
- pos: -28.5,-1.5
+ pos: -29.5,16.5
parent: 60
- uid: 4558
components:
@@ -142748,16 +141987,6 @@ entities:
- type: Transform
pos: -32.5,16.5
parent: 60
- - uid: 4568
- components:
- - type: Transform
- pos: -24.5,4.5
- parent: 60
- - uid: 4580
- components:
- - type: Transform
- pos: -25.5,-6.5
- parent: 60
- uid: 4584
components:
- type: Transform
@@ -142809,11 +142038,6 @@ entities:
- type: Transform
pos: -60.5,-25.5
parent: 60
- - uid: 4709
- components:
- - type: Transform
- pos: -17.5,-4.5
- parent: 60
- uid: 4712
components:
- type: Transform
@@ -143037,15 +142261,15 @@ entities:
rot: 3.141592653589793 rad
pos: 6.5,-62.5
parent: 60
- - uid: 5201
+ - uid: 5213
components:
- type: Transform
- pos: -26.5,-21.5
+ pos: 3.5,-78.5
parent: 60
- - uid: 5213
+ - uid: 5219
components:
- type: Transform
- pos: 3.5,-78.5
+ pos: -22.5,2.5
parent: 60
- uid: 5222
components:
@@ -143057,6 +142281,11 @@ entities:
- type: Transform
pos: 56.5,3.5
parent: 60
+ - uid: 5234
+ components:
+ - type: Transform
+ pos: -17.5,1.5
+ parent: 60
- uid: 5248
components:
- type: Transform
@@ -143254,6 +142483,11 @@ entities:
- type: Transform
pos: -12.5,-1.5
parent: 60
+ - uid: 5454
+ components:
+ - type: Transform
+ pos: -19.5,1.5
+ parent: 60
- uid: 5483
components:
- type: Transform
@@ -143472,11 +142706,6 @@ entities:
- type: Transform
pos: -44.5,28.5
parent: 60
- - uid: 5753
- components:
- - type: Transform
- pos: -29.5,-21.5
- parent: 60
- uid: 5767
components:
- type: Transform
@@ -143509,28 +142738,10 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,16.5
parent: 60
- - uid: 5836
- components:
- - type: Transform
- pos: -26.5,4.5
- parent: 60
- - uid: 5840
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -31.5,-21.5
- parent: 60
- - uid: 5848
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-8.5
- parent: 60
- - uid: 5849
+ - uid: 5800
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,-3.5
+ pos: -34.5,-8.5
parent: 60
- uid: 5864
components:
@@ -143585,6 +142796,11 @@ entities:
- type: Transform
pos: 14.5,27.5
parent: 60
+ - uid: 6094
+ components:
+ - type: Transform
+ pos: -20.5,-3.5
+ parent: 60
- uid: 6160
components:
- type: Transform
@@ -143624,18 +142840,6 @@ entities:
- type: Transform
pos: -49.5,51.5
parent: 60
- - uid: 6207
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-14.5
- parent: 60
- - uid: 6208
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-15.5
- parent: 60
- uid: 6209
components:
- type: Transform
@@ -143909,6 +143113,12 @@ entities:
- type: Transform
pos: 9.5,31.5
parent: 60
+ - uid: 6582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-2.5
+ parent: 60
- uid: 6608
components:
- type: Transform
@@ -143945,23 +143155,26 @@ entities:
- type: Transform
pos: -40.5,-29.5
parent: 60
- - uid: 6797
+ - uid: 6762
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-16.5
+ pos: -18.5,1.5
parent: 60
- - uid: 6798
+ - uid: 6804
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-17.5
+ pos: -35.5,-8.5
parent: 60
- uid: 6806
components:
- type: Transform
pos: 26.5,3.5
parent: 60
+ - uid: 6820
+ components:
+ - type: Transform
+ pos: -32.5,-4.5
+ parent: 60
- uid: 6826
components:
- type: Transform
@@ -144022,17 +143235,6 @@ entities:
- type: Transform
pos: -1.5,-74.5
parent: 60
- - uid: 6993
- components:
- - type: Transform
- pos: -18.5,2.5
- parent: 60
- - uid: 7006
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-11.5
- parent: 60
- uid: 7021
components:
- type: Transform
@@ -144068,12 +143270,6 @@ entities:
- type: Transform
pos: -40.5,15.5
parent: 60
- - uid: 7043
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-8.5
- parent: 60
- uid: 7046
components:
- type: Transform
@@ -144237,11 +143433,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 13.5,-51.5
parent: 60
- - uid: 7229
- components:
- - type: Transform
- pos: 9.5,35.5
- parent: 60
- uid: 7254
components:
- type: Transform
@@ -144318,32 +143509,11 @@ entities:
- type: Transform
pos: 47.5,26.5
parent: 60
- - uid: 7603
- components:
- - type: Transform
- pos: -24.5,-17.5
- parent: 60
- - uid: 7604
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -35.5,0.5
- parent: 60
- uid: 7642
components:
- type: Transform
pos: -62.5,-16.5
parent: 60
- - uid: 7656
- components:
- - type: Transform
- pos: -30.5,-21.5
- parent: 60
- - uid: 7684
- components:
- - type: Transform
- pos: -23.5,1.5
- parent: 60
- uid: 7722
components:
- type: Transform
@@ -144380,11 +143550,6 @@ entities:
- type: Transform
pos: -17.5,-38.5
parent: 60
- - uid: 7747
- components:
- - type: Transform
- pos: -18.5,-1.5
- parent: 60
- uid: 7757
components:
- type: Transform
@@ -144539,23 +143704,10 @@ entities:
- type: Transform
pos: 49.5,-48.5
parent: 60
- - uid: 7916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-1.5
- parent: 60
- - uid: 7917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-2.5
- parent: 60
- - uid: 7920
+ - uid: 7813
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -17.5,-5.5
+ pos: -20.5,2.5
parent: 60
- uid: 7989
components:
@@ -144662,11 +143814,6 @@ entities:
- type: Transform
pos: -9.5,-78.5
parent: 60
- - uid: 8213
- components:
- - type: Transform
- pos: -21.5,-17.5
- parent: 60
- uid: 8216
components:
- type: Transform
@@ -144677,15 +143824,15 @@ entities:
- type: Transform
pos: -56.5,-4.5
parent: 60
- - uid: 8235
+ - uid: 8231
components:
- type: Transform
- pos: 9.5,30.5
+ pos: -18.5,-2.5
parent: 60
- - uid: 8243
+ - uid: 8235
components:
- type: Transform
- pos: -31.5,-20.5
+ pos: 9.5,30.5
parent: 60
- uid: 8254
components:
@@ -144697,17 +143844,33 @@ entities:
- type: Transform
pos: -7.5,-21.5
parent: 60
+ - uid: 8346
+ components:
+ - type: Transform
+ pos: -34.5,1.5
+ parent: 60
- uid: 8359
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 52.5,-2.5
parent: 60
+ - uid: 8380
+ components:
+ - type: Transform
+ pos: -34.5,-12.5
+ parent: 60
- uid: 8432
components:
- type: Transform
pos: -58.5,-1.5
parent: 60
+ - uid: 8440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-17.5
+ parent: 60
- uid: 8459
components:
- type: Transform
@@ -144718,6 +143881,23 @@ entities:
- type: Transform
pos: -51.5,10.5
parent: 60
+ - uid: 8477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-21.5
+ parent: 60
+ - uid: 8480
+ components:
+ - type: Transform
+ pos: -35.5,-4.5
+ parent: 60
+ - uid: 8481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -17.5,-3.5
+ parent: 60
- uid: 8490
components:
- type: Transform
@@ -144739,40 +143919,36 @@ entities:
- type: Transform
pos: -58.5,-3.5
parent: 60
- - uid: 8524
+ - uid: 8528
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-19.5
+ pos: -17.5,-8.5
parent: 60
- - uid: 8525
+ - uid: 8573
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-20.5
+ pos: -34.5,4.5
parent: 60
- - uid: 8526
+ - uid: 8602
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -30.5,-17.5
+ pos: -25.5,-21.5
parent: 60
- - uid: 8527
+ - uid: 8656
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -31.5,-17.5
+ pos: -31.5,4.5
parent: 60
- - uid: 8607
+ - uid: 8661
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -35.5,-18.5
+ pos: 20.5,4.5
parent: 60
- - uid: 8661
+ - uid: 8716
components:
- type: Transform
- pos: 20.5,4.5
+ pos: -35.5,3.5
parent: 60
- uid: 8751
components:
@@ -144784,26 +143960,20 @@ entities:
- type: Transform
pos: 28.5,-13.5
parent: 60
- - uid: 8777
- components:
- - type: Transform
- pos: 62.5,-25.5
- parent: 60
- - uid: 8883
+ - uid: 8771
components:
- type: Transform
- pos: -28.5,-17.5
+ pos: -32.5,-8.5
parent: 60
- - uid: 8920
+ - uid: 8777
components:
- type: Transform
- pos: -23.5,-21.5
+ pos: 62.5,-25.5
parent: 60
- - uid: 8922
+ - uid: 8892
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -21.5,-21.5
+ pos: -19.5,-12.5
parent: 60
- uid: 8936
components:
@@ -144821,11 +143991,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,13.5
parent: 60
- - uid: 8956
- components:
- - type: Transform
- pos: -28.5,-21.5
- parent: 60
- uid: 8977
components:
- type: Transform
@@ -144854,11 +144019,6 @@ entities:
- type: Transform
pos: -43.5,15.5
parent: 60
- - uid: 9051
- components:
- - type: Transform
- pos: -29.5,4.5
- parent: 60
- uid: 9057
components:
- type: Transform
@@ -144874,15 +144034,25 @@ entities:
- type: Transform
pos: -45.5,-11.5
parent: 60
- - uid: 9142
+ - uid: 9143
components:
- type: Transform
- pos: -5.5,34.5
+ pos: -39.5,-8.5
parent: 60
- - uid: 9143
+ - uid: 9147
components:
- type: Transform
- pos: -39.5,-8.5
+ pos: -20.5,-12.5
+ parent: 60
+ - uid: 9152
+ components:
+ - type: Transform
+ pos: -33.5,-8.5
+ parent: 60
+ - uid: 9156
+ components:
+ - type: Transform
+ pos: -33.5,-4.5
parent: 60
- uid: 9183
components:
@@ -145171,6 +144341,11 @@ entities:
- type: Transform
pos: -60.5,5.5
parent: 60
+ - uid: 10681
+ components:
+ - type: Transform
+ pos: -21.5,2.5
+ parent: 60
- uid: 10849
components:
- type: Transform
@@ -145198,20 +144373,21 @@ entities:
- type: Transform
pos: 52.5,19.5
parent: 60
- - uid: 11471
+ - uid: 11362
components:
- type: Transform
- pos: -64.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-17.5
parent: 60
- - uid: 11525
+ - uid: 11382
components:
- type: Transform
- pos: 9.5,34.5
+ pos: -32.5,1.5
parent: 60
- - uid: 11529
+ - uid: 11471
components:
- type: Transform
- pos: 9.5,36.5
+ pos: -64.5,-4.5
parent: 60
- uid: 11535
components:
@@ -146067,26 +145243,6 @@ entities:
- type: Transform
pos: -11.5,23.5
parent: 60
- - uid: 14224
- components:
- - type: Transform
- pos: -33.5,6.5
- parent: 60
- - uid: 14225
- components:
- - type: Transform
- pos: -29.5,6.5
- parent: 60
- - uid: 14226
- components:
- - type: Transform
- pos: -32.5,6.5
- parent: 60
- - uid: 14227
- components:
- - type: Transform
- pos: -35.5,6.5
- parent: 60
- uid: 14285
components:
- type: Transform
@@ -146127,11 +145283,21 @@ entities:
- type: Transform
pos: -17.5,15.5
parent: 60
+ - uid: 14454
+ components:
+ - type: Transform
+ pos: -18.5,-12.5
+ parent: 60
- uid: 14477
components:
- type: Transform
pos: -28.5,27.5
parent: 60
+ - uid: 14625
+ components:
+ - type: Transform
+ pos: -17.5,-12.5
+ parent: 60
- uid: 14627
components:
- type: Transform
@@ -146819,6 +145985,11 @@ entities:
- type: Transform
pos: -16.5,50.5
parent: 60
+ - uid: 15403
+ components:
+ - type: Transform
+ pos: -31.5,1.5
+ parent: 60
- uid: 15417
components:
- type: Transform
@@ -146851,16 +146022,6 @@ entities:
- type: Transform
pos: -17.5,49.5
parent: 60
- - uid: 15521
- components:
- - type: Transform
- pos: 8.5,37.5
- parent: 60
- - uid: 15522
- components:
- - type: Transform
- pos: 7.5,37.5
- parent: 60
- uid: 15538
components:
- type: Transform
@@ -146921,6 +146082,21 @@ entities:
- type: Transform
pos: 3.5,22.5
parent: 60
+ - uid: 15845
+ components:
+ - type: Transform
+ pos: -35.5,-16.5
+ parent: 60
+ - uid: 15899
+ components:
+ - type: Transform
+ pos: -35.5,-17.5
+ parent: 60
+ - uid: 15901
+ components:
+ - type: Transform
+ pos: -35.5,-21.5
+ parent: 60
- uid: 16010
components:
- type: Transform
@@ -146991,15 +146167,11 @@ entities:
- type: Transform
pos: 9.5,23.5
parent: 60
- - uid: 16091
- components:
- - type: Transform
- pos: -3.5,34.5
- parent: 60
- uid: 16110
components:
- type: Transform
- pos: -30.5,6.5
+ rot: 1.5707963267948966 rad
+ pos: -31.5,3.5
parent: 60
- uid: 16115
components:
@@ -147041,6 +146213,11 @@ entities:
- type: Transform
pos: -8.5,30.5
parent: 60
+ - uid: 16145
+ components:
+ - type: Transform
+ pos: -35.5,-3.5
+ parent: 60
- uid: 16155
components:
- type: Transform
@@ -147051,20 +146228,21 @@ entities:
- type: Transform
pos: -40.5,22.5
parent: 60
- - uid: 16307
+ - uid: 16368
components:
- type: Transform
- pos: -5.5,35.5
+ pos: -8.5,39.5
parent: 60
- - uid: 16368
+ - uid: 16405
components:
- type: Transform
- pos: -8.5,39.5
+ pos: 7.5,38.5
parent: 60
- - uid: 16392
+ - uid: 16406
components:
- type: Transform
- pos: -5.5,36.5
+ rot: 3.141592653589793 rad
+ pos: -6.5,35.5
parent: 60
- uid: 16413
components:
@@ -147084,33 +146262,17 @@ entities:
rot: 3.141592653589793 rad
pos: -2.5,33.5
parent: 60
- - uid: 16419
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,37.5
- parent: 60
- uid: 16424
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -4.5,-62.5
parent: 60
- - uid: 16425
- components:
- - type: Transform
- pos: -4.5,34.5
- parent: 60
- uid: 16432
components:
- type: Transform
pos: -6.5,39.5
parent: 60
- - uid: 16436
- components:
- - type: Transform
- pos: -8.5,36.5
- parent: 60
- uid: 16457
components:
- type: Transform
@@ -147326,36 +146488,16 @@ entities:
- type: Transform
pos: 10.5,37.5
parent: 60
- - uid: 16500
- components:
- - type: Transform
- pos: 9.5,37.5
- parent: 60
- uid: 16501
components:
- type: Transform
pos: 7.5,39.5
parent: 60
- - uid: 16505
- components:
- - type: Transform
- pos: 3.5,37.5
- parent: 60
- uid: 16507
components:
- type: Transform
pos: -6.5,36.5
parent: 60
- - uid: 16508
- components:
- - type: Transform
- pos: -7.5,36.5
- parent: 60
- - uid: 16536
- components:
- - type: Transform
- pos: 7.5,38.5
- parent: 60
- uid: 16981
components:
- type: Transform
@@ -147421,11 +146563,6 @@ entities:
- type: Transform
pos: -10.5,56.5
parent: 60
- - uid: 17141
- components:
- - type: Transform
- pos: 9.5,40.5
- parent: 60
- uid: 17142
components:
- type: Transform
@@ -147456,6 +146593,11 @@ entities:
- type: Transform
pos: -8.5,44.5
parent: 60
+ - uid: 17153
+ components:
+ - type: Transform
+ pos: 11.5,34.5
+ parent: 60
- uid: 17170
components:
- type: Transform
@@ -147471,6 +146613,21 @@ entities:
- type: Transform
pos: -27.5,58.5
parent: 60
+ - uid: 17250
+ components:
+ - type: Transform
+ pos: -8.5,35.5
+ parent: 60
+ - uid: 17258
+ components:
+ - type: Transform
+ pos: 11.5,33.5
+ parent: 60
+ - uid: 17271
+ components:
+ - type: Transform
+ pos: 7.5,36.5
+ parent: 60
- uid: 17291
components:
- type: Transform
@@ -147587,6 +146744,16 @@ entities:
- type: Transform
pos: -54.5,18.5
parent: 60
+ - uid: 17471
+ components:
+ - type: Transform
+ pos: -35.5,-1.5
+ parent: 60
+ - uid: 17473
+ components:
+ - type: Transform
+ pos: -35.5,-0.5
+ parent: 60
- uid: 17475
components:
- type: Transform
@@ -147637,6 +146804,11 @@ entities:
- type: Transform
pos: 31.5,33.5
parent: 60
+ - uid: 17672
+ components:
+ - type: Transform
+ pos: -35.5,-2.5
+ parent: 60
- uid: 17676
components:
- type: Transform
@@ -147796,6 +146968,18 @@ entities:
- type: Transform
pos: 10.5,-4.5
parent: 60
+ - uid: 17952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-21.5
+ parent: 60
+ - uid: 17954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-21.5
+ parent: 60
- uid: 17977
components:
- type: Transform
@@ -148172,6 +147356,12 @@ entities:
- type: Transform
pos: -3.5,-8.5
parent: 60
+ - uid: 18295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,33.5
+ parent: 60
- uid: 18371
components:
- type: Transform
@@ -148207,20 +147397,15 @@ entities:
- type: Transform
pos: 5.5,-10.5
parent: 60
- - uid: 18504
- components:
- - type: Transform
- pos: -31.5,6.5
- parent: 60
- - uid: 18509
+ - uid: 18521
components:
- type: Transform
- pos: -35.5,5.5
+ pos: -35.5,1.5
parent: 60
- - uid: 18510
+ - uid: 18549
components:
- type: Transform
- pos: -34.5,6.5
+ pos: -4.5,35.5
parent: 60
- uid: 18552
components:
@@ -148232,26 +147417,90 @@ entities:
- type: Transform
pos: 32.5,26.5
parent: 60
+ - uid: 18610
+ components:
+ - type: Transform
+ pos: -2.5,35.5
+ parent: 60
+ - uid: 18642
+ components:
+ - type: Transform
+ pos: -20.5,-4.5
+ parent: 60
- uid: 18677
components:
- type: Transform
pos: 18.5,-2.5
parent: 60
+ - uid: 18693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-21.5
+ parent: 60
+ - uid: 18695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-21.5
+ parent: 60
+ - uid: 18706
+ components:
+ - type: Transform
+ pos: -7.5,35.5
+ parent: 60
+ - uid: 18767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -31.5,-21.5
+ parent: 60
+ - uid: 18771
+ components:
+ - type: Transform
+ pos: -32.5,-12.5
+ parent: 60
+ - uid: 18790
+ components:
+ - type: Transform
+ pos: -35.5,-14.5
+ parent: 60
+ - uid: 18791
+ components:
+ - type: Transform
+ pos: -17.5,-15.5
+ parent: 60
- uid: 18804
components:
- type: Transform
pos: -24.5,58.5
parent: 60
+ - uid: 18826
+ components:
+ - type: Transform
+ pos: -17.5,-17.5
+ parent: 60
- uid: 18829
components:
- type: Transform
pos: 28.5,4.5
parent: 60
+ - uid: 18852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 10.5,36.5
+ parent: 60
- uid: 18856
components:
- type: Transform
pos: -12.5,0.5
parent: 60
+ - uid: 18858
+ components:
+ - type: Transform
+ pos: -17.5,-4.5
+ parent: 60
- uid: 18862
components:
- type: Transform
@@ -148293,6 +147542,17 @@ entities:
- type: Transform
pos: 22.5,26.5
parent: 60
+ - uid: 18968
+ components:
+ - type: Transform
+ pos: -35.5,0.5
+ parent: 60
+ - uid: 18997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -30.5,-21.5
+ parent: 60
- uid: 19003
components:
- type: Transform
@@ -148338,6 +147598,11 @@ entities:
- type: Transform
pos: 52.5,16.5
parent: 60
+ - uid: 19450
+ components:
+ - type: Transform
+ pos: -19.5,-4.5
+ parent: 60
- uid: 19740
components:
- type: Transform
@@ -148452,6 +147717,11 @@ entities:
rot: 3.141592653589793 rad
pos: 25.5,6.5
parent: 60
+ - uid: 19870
+ components:
+ - type: Transform
+ pos: -32.5,4.5
+ parent: 60
- uid: 19881
components:
- type: Transform
@@ -148462,6 +147732,18 @@ entities:
- type: Transform
pos: 12.5,-78.5
parent: 60
+ - uid: 19887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-21.5
+ parent: 60
+ - uid: 20003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-21.5
+ parent: 60
- uid: 20078
components:
- type: Transform
@@ -148507,11 +147789,39 @@ entities:
- type: Transform
pos: -27.5,59.5
parent: 60
+ - uid: 20989
+ components:
+ - type: Transform
+ pos: 11.5,35.5
+ parent: 60
+ - uid: 21011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -28.5,-21.5
+ parent: 60
+ - uid: 21021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,36.5
+ parent: 60
+ - uid: 21026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,39.5
+ parent: 60
- uid: 21041
components:
- type: Transform
pos: -6.5,-78.5
parent: 60
+ - uid: 21048
+ components:
+ - type: Transform
+ pos: -35.5,4.5
+ parent: 60
- uid: 21077
components:
- type: Transform
@@ -148657,6 +147967,11 @@ entities:
- type: Transform
pos: -13.5,-78.5
parent: 60
+ - uid: 21381
+ components:
+ - type: Transform
+ pos: -18.5,-4.5
+ parent: 60
- uid: 21425
components:
- type: Transform
@@ -148668,6 +147983,11 @@ entities:
- type: Transform
pos: -69.5,15.5
parent: 60
+ - uid: 21722
+ components:
+ - type: Transform
+ pos: -32.5,-2.5
+ parent: 60
- uid: 21797
components:
- type: Transform
@@ -149782,21 +149102,6 @@ entities:
- type: Transform
pos: 32.5,21.5
parent: 60
- - uid: 235
- components:
- - type: Transform
- pos: -33.5,-11.5
- parent: 60
- - uid: 236
- components:
- - type: Transform
- pos: -18.5,-8.5
- parent: 60
- - uid: 240
- components:
- - type: Transform
- pos: -34.5,-11.5
- parent: 60
- uid: 247
components:
- type: Transform
@@ -149812,11 +149117,6 @@ entities:
- type: Transform
pos: 56.5,-9.5
parent: 60
- - uid: 255
- components:
- - type: Transform
- pos: -33.5,-8.5
- parent: 60
- uid: 259
components:
- type: Transform
@@ -149832,15 +149132,15 @@ entities:
- type: Transform
pos: -22.5,6.5
parent: 60
- - uid: 282
+ - uid: 268
components:
- type: Transform
- pos: 38.5,-37.5
+ pos: -17.5,4.5
parent: 60
- - uid: 291
+ - uid: 282
components:
- type: Transform
- pos: -19.5,-8.5
+ pos: 38.5,-37.5
parent: 60
- uid: 317
components:
@@ -150133,16 +149433,6 @@ entities:
- type: Transform
pos: 31.5,-10.5
parent: 60
- - uid: 841
- components:
- - type: Transform
- pos: -34.5,-8.5
- parent: 60
- - uid: 842
- components:
- - type: Transform
- pos: -18.5,-11.5
- parent: 60
- uid: 847
components:
- type: Transform
@@ -150306,16 +149596,6 @@ entities:
- type: Transform
pos: -16.5,-27.5
parent: 60
- - uid: 1492
- components:
- - type: Transform
- pos: -19.5,-11.5
- parent: 60
- - uid: 1545
- components:
- - type: Transform
- pos: -32.5,-1.5
- parent: 60
- uid: 1593
components:
- type: Transform
@@ -150331,11 +149611,6 @@ entities:
- type: Transform
pos: 7.5,-33.5
parent: 60
- - uid: 1740
- components:
- - type: Transform
- pos: -33.5,-1.5
- parent: 60
- uid: 1795
components:
- type: Transform
@@ -150346,11 +149621,6 @@ entities:
- type: Transform
pos: 3.5,-33.5
parent: 60
- - uid: 2005
- components:
- - type: Transform
- pos: -31.5,-1.5
- parent: 60
- uid: 2037
components:
- type: Transform
@@ -151902,11 +151172,6 @@ entities:
- type: Transform
pos: -61.5,-7.5
parent: 60
- - uid: 5757
- components:
- - type: Transform
- pos: -17.5,-21.5
- parent: 60
- uid: 5783
components:
- type: Transform
@@ -151922,11 +151187,6 @@ entities:
- type: Transform
pos: 42.5,-19.5
parent: 60
- - uid: 5837
- components:
- - type: Transform
- pos: -34.5,-1.5
- parent: 60
- uid: 5874
components:
- type: Transform
@@ -152172,11 +151432,6 @@ entities:
- type: Transform
pos: 31.5,-36.5
parent: 60
- - uid: 7220
- components:
- - type: Transform
- pos: -17.5,3.5
- parent: 60
- uid: 7274
components:
- type: Transform
@@ -152491,6 +151746,16 @@ entities:
- type: Transform
pos: 29.5,-18.5
parent: 60
+ - uid: 8774
+ components:
+ - type: Transform
+ pos: -25.5,5.5
+ parent: 60
+ - uid: 8896
+ components:
+ - type: Transform
+ pos: -17.5,2.5
+ parent: 60
- uid: 8965
components:
- type: Transform
@@ -153215,26 +152480,11 @@ entities:
rot: 3.141592653589793 rad
pos: 2.5,13.5
parent: 60
- - uid: 13828
- components:
- - type: Transform
- pos: -11.5,13.5
- parent: 60
- - uid: 13829
- components:
- - type: Transform
- pos: -11.5,12.5
- parent: 60
- uid: 13830
components:
- type: Transform
pos: -13.5,10.5
parent: 60
- - uid: 13831
- components:
- - type: Transform
- pos: -11.5,11.5
- parent: 60
- uid: 13832
components:
- type: Transform
@@ -153375,11 +152625,6 @@ entities:
- type: Transform
pos: -12.5,14.5
parent: 60
- - uid: 13958
- components:
- - type: Transform
- pos: -11.5,14.5
- parent: 60
- uid: 14006
components:
- type: Transform
@@ -153415,6 +152660,11 @@ entities:
- type: Transform
pos: 39.5,1.5
parent: 60
+ - uid: 14293
+ components:
+ - type: Transform
+ pos: -12.5,13.5
+ parent: 60
- uid: 14451
components:
- type: Transform
@@ -153524,6 +152774,11 @@ entities:
- type: Transform
pos: -19.5,31.5
parent: 60
+ - uid: 16347
+ components:
+ - type: Transform
+ pos: -12.5,12.5
+ parent: 60
- uid: 16363
components:
- type: Transform
@@ -153954,11 +153209,51 @@ entities:
- type: Transform
pos: 33.5,1.5
parent: 60
+ - uid: 21016
+ components:
+ - type: Transform
+ pos: -33.5,6.5
+ parent: 60
+ - uid: 21030
+ components:
+ - type: Transform
+ pos: -29.5,6.5
+ parent: 60
+ - uid: 21043
+ components:
+ - type: Transform
+ pos: -32.5,6.5
+ parent: 60
+ - uid: 21044
+ components:
+ - type: Transform
+ pos: -35.5,6.5
+ parent: 60
+ - uid: 21046
+ components:
+ - type: Transform
+ pos: -30.5,6.5
+ parent: 60
+ - uid: 21047
+ components:
+ - type: Transform
+ pos: -31.5,6.5
+ parent: 60
+ - uid: 21049
+ components:
+ - type: Transform
+ pos: -34.5,6.5
+ parent: 60
- uid: 21060
components:
- type: Transform
pos: 46.5,-15.5
parent: 60
+ - uid: 21343
+ components:
+ - type: Transform
+ pos: -12.5,11.5
+ parent: 60
- uid: 21447
components:
- type: Transform
@@ -154558,34 +153853,6 @@ entities:
- type: Transform
pos: 32.5,-3.5
parent: 60
-- proto: WallWeaponCapacitorRecharger
- entities:
- - uid: 1481
- components:
- - type: Transform
- pos: -25.5,-6.5
- parent: 60
- - type: Physics
- canCollide: False
- - uid: 7225
- components:
- - type: Transform
- pos: -23.5,-1.5
- parent: 60
- - type: Physics
- canCollide: False
- - uid: 12685
- components:
- - type: Transform
- pos: -28.5,-17.5
- parent: 60
- - type: Physics
- canCollide: False
- - uid: 18642
- components:
- - type: Transform
- pos: -31.5,-1.5
- parent: 60
- proto: WardrobeBlackFilled
entities:
- uid: 3368
@@ -154663,144 +153930,26 @@ entities:
- 0
- proto: WardrobePrisonFilled
entities:
- - uid: 1643
- components:
- - type: Transform
- pos: -19.5,-13.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 1647
- components:
- - type: Transform
- pos: -34.5,-7.5
- parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 1702
+ - uid: 291
components:
- type: Transform
- pos: -19.5,-10.5
+ pos: -34.5,-5.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 2008
+ - uid: 8240
components:
- type: Transform
- pos: -34.5,-10.5
+ pos: -18.5,-9.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 2092
+ - uid: 8473
components:
- type: Transform
- pos: -19.5,-7.5
+ pos: -34.5,-9.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 8896
+ - uid: 8681
components:
- type: Transform
- pos: -34.5,-13.5
+ pos: -18.5,-5.5
parent: 60
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 1.6495836
- - 6.2055764
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- proto: WardrobeSalvageFilled
entities:
- uid: 13247
@@ -154919,6 +154068,11 @@ entities:
parent: 60
- proto: WaterCooler
entities:
+ - uid: 278
+ components:
+ - type: Transform
+ pos: -28.5,-6.5
+ parent: 60
- uid: 1382
components:
- type: Transform
@@ -154949,11 +154103,6 @@ entities:
- type: Transform
pos: 55.5,-10.5
parent: 60
- - uid: 11536
- components:
- - type: Transform
- pos: -28.5,-13.5
- parent: 60
- uid: 12272
components:
- type: Transform
@@ -154969,11 +154118,6 @@ entities:
- type: Transform
pos: -36.5,21.5
parent: 60
- - uid: 18827
- components:
- - type: Transform
- pos: -34.5,0.5
- parent: 60
- proto: WaterTankFull
entities:
- uid: 2329
@@ -155001,11 +154145,6 @@ entities:
- type: Transform
pos: -42.5,-26.5
parent: 60
- - uid: 5364
- components:
- - type: Transform
- pos: 13.5,4.5
- parent: 60
- uid: 6452
components:
- type: Transform
@@ -155021,6 +154160,11 @@ entities:
- type: Transform
pos: 41.5,-37.5
parent: 60
+ - uid: 21511
+ components:
+ - type: Transform
+ pos: 12.5,5.5
+ parent: 60
- proto: WaterTankHighCapacity
entities:
- uid: 1195
@@ -155047,22 +154191,20 @@ entities:
parent: 60
- proto: WeaponCapacitorRecharger
entities:
- - uid: 1734
+ - uid: 720
components:
- type: Transform
- pos: -34.5,3.5
+ pos: -25.5,-9.5
parent: 60
- - uid: 1944
+ - uid: 1570
components:
- type: Transform
- pos: -27.5,-13.5
+ pos: -27.5,-6.5
parent: 60
- - type: Physics
- canCollide: False
- - uid: 2132
+ - uid: 8468
components:
- type: Transform
- pos: -32.5,-15.5
+ pos: -31.5,-18.5
parent: 60
- uid: 9536
components:
@@ -155081,58 +154223,41 @@ entities:
parent: 60
- type: Physics
canCollide: False
- - uid: 18998
+ - uid: 19155
components:
- type: Transform
- pos: -18.5,-16.5
+ pos: -21.5,-18.5
parent: 60
-- proto: WeaponLaserCarbine
+- proto: WeaponDisabler
entities:
- - uid: 16447
- components:
- - type: Transform
- pos: -24.492538,-0.024230868
- parent: 60
- - uid: 17473
- components:
- - type: Transform
- pos: -24.492538,-0.21173087
- parent: 60
- - uid: 17474
- components:
- - type: Transform
- pos: -24.492538,0.21014413
- parent: 60
- - uid: 18008
+ - uid: 7014
components:
- type: Transform
- pos: -24.508163,0.66326916
+ pos: -24.520348,-20.458258
parent: 60
- - uid: 18693
+ - uid: 7045
components:
- type: Transform
- pos: -24.508163,0.41326913
+ pos: -24.442223,-20.567633
parent: 60
- - uid: 18766
+ - uid: 7048
components:
- type: Transform
- pos: -24.492538,-0.47735587
+ pos: -24.614098,-20.348883
parent: 60
- proto: WeaponRifleAk
entities:
- - uid: 24110
+ - uid: 6136
components:
- - type: MetaData
- name: Old War AKMS
- type: Transform
- pos: -24.45179,2.5628066
+ pos: -24.5,1.5
parent: 60
- proto: WeaponSubMachineGunWt550
entities:
- - uid: 21074
+ - uid: 8243
components:
- type: Transform
- pos: -21.459091,0.5840763
+ pos: -21.478931,-0.37953046
parent: 60
- proto: WeaponTurretSyndicateBroken
entities:
@@ -155228,6 +154353,11 @@ entities:
- type: Transform
pos: 56.5,-40.5
parent: 60
+ - uid: 4004
+ components:
+ - type: Transform
+ pos: -34.5,3.5
+ parent: 60
- uid: 6242
components:
- type: Transform
@@ -155253,10 +154383,10 @@ entities:
- type: Transform
pos: -32.5,32.5
parent: 60
- - uid: 17271
+ - uid: 16174
components:
- type: Transform
- pos: -5.5,33.5
+ pos: -4.5,34.5
parent: 60
- uid: 19720
components:
@@ -155298,13 +154428,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 42.5,-27.5
parent: 60
- - uid: 4077
- components:
- - type: MetaData
- name: Security Desk
- - type: Transform
- pos: -19.5,-17.5
- parent: 60
- uid: 6821
components:
- type: Transform
@@ -155339,6 +154462,12 @@ entities:
rot: 3.141592653589793 rad
pos: 34.5,15.5
parent: 60
+ - uid: 19886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,4.5
+ parent: 60
- uid: 19910
components:
- type: Transform
@@ -155437,12 +154566,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,-41.5
parent: 60
- - uid: 4191
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-20.5
- parent: 60
- uid: 6181
components:
- type: Transform
@@ -155480,26 +154603,30 @@ entities:
parent: 60
- proto: WindoorSecureArmoryLocked
entities:
- - uid: 1466
+ - uid: 1625
components:
- type: MetaData
- name: Warden Desk
+ name: Riot Gear
- type: Transform
rot: -1.5707963267948966 rad
- pos: -23.5,-9.5
+ pos: -24.5,-12.5
parent: 60
- - uid: 12188
+ - uid: 4898
components:
- - type: MetaData
- name: Warden Desk
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,-9.5
+ pos: -24.5,1.5
parent: 60
- - uid: 24115
+ - uid: 8413
components:
- type: Transform
- pos: -24.5,2.5
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-10.5
+ parent: 60
+ - uid: 15897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-10.5
parent: 60
- proto: WindoorSecureAtmosphericsLocked
entities:
@@ -155516,11 +154643,62 @@ entities:
parent: 60
- proto: WindoorSecureBrigLocked
entities:
+ - uid: 234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-10.5
+ parent: 60
+ - uid: 2584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-7.5
+ parent: 60
+ - uid: 2602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-7.5
+ parent: 60
- uid: 4198
components:
- type: Transform
pos: -43.5,-18.5
parent: 60
+ - uid: 6709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-11.5
+ parent: 60
+ - uid: 8514
+ components:
+ - type: Transform
+ pos: -18.5,-13.5
+ parent: 60
+ - uid: 8748
+ components:
+ - type: Transform
+ pos: -19.5,-13.5
+ parent: 60
+ - uid: 8920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -29.5,-10.5
+ parent: 60
+ - uid: 9176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-11.5
+ parent: 60
+ - uid: 17466
+ components:
+ - type: Transform
+ pos: -20.5,-13.5
+ parent: 60
- proto: WindoorSecureCargoLocked
entities:
- uid: 13104
@@ -155673,20 +154851,22 @@ entities:
parent: 60
- proto: WindoorSecureEngineeringLocked
entities:
- - uid: 541
+ - uid: 13804
components:
- type: Transform
- pos: 4.5,12.5
+ pos: -3.5,17.5
parent: 60
- - uid: 13660
+ - uid: 21766
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 3.5,12.5
parent: 60
- - uid: 13804
+ - uid: 21767
components:
- type: Transform
- pos: -3.5,17.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,12.5
parent: 60
- proto: WindoorSecureHeadOfPersonnelLocked
entities:
@@ -155779,61 +154959,67 @@ entities:
parent: 60
- proto: WindoorSecureSecurityLocked
entities:
- - uid: 72
+ - uid: 1483
components:
- type: MetaData
- name: Cell 2
+ name: Cell 1
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-5.5
parent: 60
- - uid: 151
+ - uid: 1485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -32.5,-11.5
+ parent: 60
+ - uid: 1487
components:
- type: MetaData
- name: Cell 1
+ name: Cell 4
- type: Transform
rot: 1.5707963267948966 rad
pos: -20.5,-9.5
parent: 60
- - uid: 230
+ - uid: 1530
components:
- - type: MetaData
- name: Cell 3
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-11.5
parent: 60
- - uid: 243
+ - uid: 1548
components:
- type: MetaData
- name: Cell 5
+ name: Cell 3
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -32.5,-12.5
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-5.5
parent: 60
- - uid: 268
+ - uid: 1555
components:
- type: MetaData
- name: Cell 4
+ name: Cell 2
- type: Transform
rot: -1.5707963267948966 rad
pos: -32.5,-9.5
parent: 60
- - uid: 843
+ - uid: 1821
components:
- - type: MetaData
- name: Medical Cell
- type: Transform
rot: 1.5707963267948966 rad
- pos: -20.5,-6.5
+ pos: -21.5,-19.5
parent: 60
- - uid: 4078
+ - uid: 2100
components:
- - type: MetaData
- name: Security Desk
- type: Transform
- rot: 3.141592653589793 rad
- pos: -19.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-19.5
+ parent: 60
+ - uid: 4201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-7.5
parent: 60
- uid: 4298
components:
@@ -155841,20 +155027,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -42.5,-15.5
parent: 60
- - uid: 12684
+ - uid: 5825
components:
- - type: MetaData
- name: Security Substation
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,5.5
+ pos: -32.5,-7.5
parent: 60
- - uid: 24149
+ - uid: 12596
components:
- - type: MetaData
- name: Brig Medbay
- type: Transform
- pos: -18.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: -31.5,2.5
parent: 60
- proto: Window
entities:
@@ -155868,6 +155051,11 @@ entities:
- type: Transform
pos: -60.5,-8.5
parent: 60
+ - uid: 2132
+ components:
+ - type: Transform
+ pos: -39.5,-19.5
+ parent: 60
- uid: 2386
components:
- type: Transform
@@ -156108,6 +155296,11 @@ entities:
- type: Transform
pos: -56.5,37.5
parent: 60
+ - uid: 23717
+ components:
+ - type: Transform
+ pos: -39.5,-21.5
+ parent: 60
- proto: WindowDirectional
entities:
- uid: 3146
@@ -156168,12 +155361,6 @@ entities:
parent: 60
- proto: WindowFrostedDirectional
entities:
- - uid: 1986
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -31.5,4.5
- parent: 60
- uid: 2394
components:
- type: Transform
@@ -156359,11 +155546,29 @@ entities:
parent: 60
- proto: WindowReinforcedDirectional
entities:
+ - uid: 132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-18.5
+ parent: 60
+ - uid: 493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -23.5,-18.5
+ parent: 60
- uid: 521
components:
- type: Transform
pos: 10.5,-9.5
parent: 60
+ - uid: 630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-18.5
+ parent: 60
- uid: 1345
components:
- type: Transform
@@ -156384,16 +155589,35 @@ entities:
- type: Transform
pos: 7.5,-24.5
parent: 60
- - uid: 1615
+ - uid: 1561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,-12.5
+ parent: 60
+ - uid: 1646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-20.5
+ parent: 60
+ - uid: 1651
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -31.5,2.5
+ pos: -23.5,-20.5
parent: 60
- - uid: 2093
+ - uid: 1864
components:
- type: Transform
- pos: -19.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -25.5,1.5
+ parent: 60
+ - uid: 1916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -31.5,-20.5
parent: 60
- uid: 2417
components:
@@ -156458,18 +155682,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,-42.5
parent: 60
- - uid: 4043
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-21.5
- parent: 60
- - uid: 4190
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -39.5,-19.5
- parent: 60
- uid: 4192
components:
- type: Transform
@@ -156835,6 +156047,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,-10.5
parent: 60
+ - uid: 8296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-18.5
+ parent: 60
- uid: 8385
components:
- type: Transform
@@ -156847,6 +156065,12 @@ entities:
rot: 3.141592653589793 rad
pos: -9.5,-10.5
parent: 60
+ - uid: 8457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-13.5
+ parent: 60
- uid: 8493
components:
- type: Transform
@@ -156858,6 +156082,12 @@ entities:
- type: Transform
pos: -9.5,-10.5
parent: 60
+ - uid: 8509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -33.5,-2.5
+ parent: 60
- uid: 8565
components:
- type: Transform
@@ -156870,6 +156100,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 46.5,-16.5
parent: 60
+ - uid: 9089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-20.5
+ parent: 60
- uid: 10850
components:
- type: Transform
@@ -157081,6 +156317,12 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,22.5
parent: 60
+ - uid: 16450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,-2.5
+ parent: 60
- uid: 16616
components:
- type: Transform
@@ -159919,12 +159161,6 @@ entities:
rot: 3.141592653589793 rad
pos: -8.5,-16.5
parent: 60
- - uid: 24112
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -25.5,2.5
- parent: 60
- uid: 24512
components:
- type: Transform
@@ -160138,6 +159374,11 @@ entities:
- type: Transform
pos: 48.5,-39.5
parent: 60
+ - uid: 6746
+ components:
+ - type: Transform
+ pos: -19.5,-2.5
+ parent: 60
- uid: 13851
components:
- type: MetaData
@@ -160157,12 +159398,74 @@ entities:
- type: Transform
pos: 18.5,-17.5
parent: 60
+- proto: WoodenBench
+ entities:
+ - uid: 1936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -46.5,-19.5
+ parent: 60
+ - uid: 1937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-21.5
+ parent: 60
+ - uid: 1939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-19.5
+ parent: 60
+ - uid: 1940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -44.5,-19.5
+ parent: 60
+ - uid: 1941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-21.5
+ parent: 60
+ - uid: 1943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,-21.5
+ parent: 60
+ - uid: 1944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -40.5,-19.5
+ parent: 60
+ - uid: 1945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -41.5,-19.5
+ parent: 60
+ - uid: 1946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-19.5
+ parent: 60
+ - uid: 8680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -45.5,-21.5
+ parent: 60
- proto: Wrench
entities:
- - uid: 1556
+ - uid: 1968
components:
- type: Transform
- pos: -27.517454,-11.308732
+ pos: -27.476547,-12.50911
parent: 60
- uid: 9120
components:
diff --git a/Resources/Maps/box.yml b/Resources/Maps/box.yml
index df14ec9cd9fd..1df2136e4045 100644
--- a/Resources/Maps/box.yml
+++ b/Resources/Maps/box.yml
@@ -84,119 +84,119 @@ entities:
chunks:
-1,-1:
ind: -1,-1
- tiles: WQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADIQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAEQAAAAAAWQAAAAABEQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAACeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAABHQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAD
+ tiles: WQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAIQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAABeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAA
version: 6
0,0:
ind: 0,0
- tiles: WQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAFAAAAAAA
+ tiles: WQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAABWQAAAAACWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAABeQAAAAAAFAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADeQAAAAAAFAAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAACdgAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAACEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADEQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAABEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAD
+ tiles: eQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAAHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAEQAAAAAAHQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACHQAAAAADHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAAAHQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAD
version: 6
-1,0:
ind: -1,0
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAACWQAAAAAD
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAACWQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAWQAAAAADWQAAAAAD
version: 6
1,-1:
ind: 1,-1
- tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAWQAAAAABeQAAAAAAdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAACdgAAAAACBQAAAAACBQAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAADWQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACBQAAAAACBQAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAABWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAACdgAAAAADdgAAAAADdgAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAABWQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAWQAAAAACeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAdgAAAAAAdgAAAAABdgAAAAADWQAAAAAAeQAAAAAAdgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAADdgAAAAABeQAAAAAAdgAAAAADdgAAAAACdgAAAAAB
+ tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAADdgAAAAABdgAAAAADdgAAAAACWQAAAAADeQAAAAAAdgAAAAABdgAAAAACdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAWQAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAACdgAAAAADBQAAAAADBQAAAAACdgAAAAACdgAAAAABdgAAAAACeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAWQAAAAADeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACdgAAAAAABQAAAAACBQAAAAACdgAAAAACdgAAAAABdgAAAAADeQAAAAAAHQAAAAABHQAAAAACHQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADWQAAAAADeQAAAAAAdgAAAAACdgAAAAABdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABeQAAAAAAdgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAWQAAAAADeQAAAAAAdgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAAAeQAAAAAAdgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAdgAAAAABdgAAAAABdgAAAAACeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: WQAAAAABWQAAAAACWQAAAAABeQAAAAAAaQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAB
+ tiles: WQAAAAACWQAAAAADWQAAAAABeQAAAAAAaQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAADHQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAB
version: 6
-2,-2:
ind: -2,-2
- tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAAAdgAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAABdgAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABdgAAAAABdgAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAB
+ tiles: WQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABdgAAAAADdgAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADdgAAAAADdgAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAAD
version: 6
1,-2:
ind: 1,-2
- tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAWQAAAAADeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAADWQAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAABbAAAAAADbAAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABWQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABbAAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAADWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAHQAAAAADHQAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABbAAAAAABHQAAAAACHQAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAABbAAAAAADHQAAAAADHQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAbAAAAAABHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAAB
+ tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAADWQAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAABWQAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAADWQAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACWQAAAAACeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACbAAAAAACHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABHQAAAAABHQAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAAAbAAAAAADHQAAAAACHQAAAAADeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAbAAAAAACHQAAAAAAHQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAADbAAAAAACWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADbAAAAAADHQAAAAABHQAAAAADeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAB
version: 6
0,-2:
ind: 0,-2
- tiles: WQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAdgAAAAABHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADdgAAAAABHQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAACdgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAABHQAAAAACHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACLAAAAAAALAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACHQAAAAADLQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAD
+ tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAACdgAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAWQAAAAACWQAAAAABHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACHQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAdgAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAADWQAAAAACEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAMQAAAAAAMQAAAAAAMQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAACHQAAAAACEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAeQAAAAAALAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAADLAAAAAAALAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAADHQAAAAACHQAAAAADEQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAWQAAAAADWQAAAAAC
version: 6
-1,-2:
ind: -1,-2
- tiles: WQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAHQAAAAACdgAAAAACdgAAAAABdgAAAAADHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADBgAAAAAAWQAAAAADeQAAAAAAHQAAAAAAdgAAAAACdgAAAAADdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABBgAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAABdgAAAAABdgAAAAABHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAABgAAAAAAWQAAAAADeQAAAAAAHQAAAAAAdgAAAAADdgAAAAAAdgAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACBgAAAAAAWQAAAAADeQAAAAAAHQAAAAACdgAAAAADdgAAAAADdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAABdgAAAAADdgAAAAADdgAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAHQAAAAABdgAAAAADdgAAAAABdgAAAAACHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACeQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABLQAAAAABHQAAAAAALQAAAAAC
+ tiles: WQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAABeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAACHQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADWQAAAAABBgAAAAAAWQAAAAAAeQAAAAAAHQAAAAABdgAAAAABdgAAAAADdgAAAAACHQAAAAABeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAWQAAAAACBgAAAAAAWQAAAAADeQAAAAAAHQAAAAADdgAAAAACdgAAAAADdgAAAAADHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACBgAAAAAAWQAAAAABeQAAAAAAHQAAAAADdgAAAAADdgAAAAABdgAAAAABHQAAAAABeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADWQAAAAADBgAAAAAAWQAAAAACeQAAAAAAHQAAAAADdgAAAAACdgAAAAACdgAAAAADHQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABHQAAAAACdgAAAAABdgAAAAAAdgAAAAABHQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAACWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADdgAAAAAAdgAAAAABdgAAAAABHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADEQAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAABCQAAAAADCQAAAAABCQAAAAACeQAAAAAAaAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: HQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABCQAAAAABCQAAAAABeQAAAAAAaAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAAAWQAAAAABaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAACWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAWQAAAAADWQAAAAACaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAADAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAACWQAAAAABAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABWQAAAAABAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAB
version: 6
0,-3:
ind: 0,-3
- tiles: WQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAdwAAAAADdgAAAAADdgAAAAACdgAAAAACdwAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAdwAAAAAAdgAAAAABdgAAAAAAdgAAAAACdwAAAAABaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAABHQAAAAAA
+ tiles: WQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAdwAAAAACdgAAAAACdgAAAAABdgAAAAADdwAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABeQAAAAAAdwAAAAACdgAAAAACdgAAAAACdgAAAAACdwAAAAAAaQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAAB
version: 6
1,-3:
ind: 1,-3
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAACbAAAAAACWQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAaQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAADWQAAAAADWQAAAAABaQAAAAAAeQAAAAAAHQAAAAADHQAAAAABbAAAAAAAHQAAAAACHQAAAAADeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAAAbAAAAAACWQAAAAACWQAAAAAAWQAAAAABHQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABbAAAAAADHQAAAAABHQAAAAACeQAAAAAAUgAAAAADLAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAWQAAAAAAWQAAAAACWQAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACbAAAAAAAbAAAAAABWQAAAAACLAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADeQAAAAAAaQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAALAAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAAAWQAAAAACWQAAAAACaQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAbAAAAAACHQAAAAACHQAAAAAAeQAAAAAALAAAAAAALAAAAAAALAAAAAAAbAAAAAADbAAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAACbAAAAAADHQAAAAAAHQAAAAACeQAAAAAAUgAAAAAALAAAAAAALAAAAAAAeQAAAAAAbAAAAAACWQAAAAABWQAAAAAAWQAAAAAB
version: 6
1,0:
ind: 1,0
- tiles: eQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAABEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAABDgAAAAADDgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAACDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAADgAAAAABDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAABDgAAAAABDgAAAAABDgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAACDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAACAQAAAAAAAQAAAAADeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAAQAAAAAAAQAAAAACAQAAAAAEWQAAAAACWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACeQAAAAAAAQAAAAAEAQAAAAABAQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABAQAAAAAAAQAAAAADAQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABHQAAAAABHQAAAAACHQAAAAACHQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAQAAAAABAQAAAAADAQAAAAAFWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAQAAAAACAQAAAAAAAQAAAAABFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABAQAAAAADAQAAAAAFAQAAAAADFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAE
+ tiles: eQAAAAAAeQAAAAAADgAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAdgAAAAAAdgAAAAADdgAAAAABUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAGQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAADgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAABEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAACDgAAAAADDgAAAAADDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAEAAAAAAAeQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeQAAAAAADgAAAAAADgAAAAADDgAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAADgAAAAABDgAAAAABDgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAWQAAAAAADgAAAAABDgAAAAAADgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAeQAAAAAADgAAAAADDgAAAAACDgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAABAQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAQAAAAAFAQAAAAAEAQAAAAAFWQAAAAACWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAAQAAAAADAQAAAAAAAQAAAAAFWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAACHQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADAQAAAAADAQAAAAAEAQAAAAAFWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAADHQAAAAACHQAAAAABHQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEWQAAAAABWQAAAAACeQAAAAAAWQAAAAABWQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAAQAAAAABAQAAAAAEAQAAAAAEFAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABAQAAAAAAAQAAAAADAQAAAAAAFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAAQAAAAACAQAAAAAEAQAAAAAFFAAAAAAAFAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAAQAAAAAEAQAAAAAEAQAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: WQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADWQAAAAACWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABdgAAAAABeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAACdgAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAADdgAAAAADdgAAAAADdgAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAC
+ tiles: WQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACHQAAAAACHQAAAAABHQAAAAABHQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACdgAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACdgAAAAAAdgAAAAAAdgAAAAABdgAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAAA
version: 6
-1,1:
ind: -1,1
- tiles: eQAAAAAAdgAAAAABdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAACHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAHQAAAAACUAAAAAAAUAAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
+ tiles: eQAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAABdgAAAAACeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAAAdgAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAADeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADUAAAAAAAUAAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAAAUAAAAAAAUAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAWQAAAAACUAAAAAAAUAAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAEAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAABAQAAAAAAAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAACHQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAABdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADdgAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAAAdgAAAAAAHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAdgAAAAACdgAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-1,2:
ind: -1,2
- tiles: HQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAWQAAAAABLAAAAAAALAAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAHQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABdgAAAAABdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAADeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAABdgAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAACQAAAAABHQAAAAABCQAAAAAB
+ tiles: HQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABeQAAAAAAWQAAAAACLAAAAAAALAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACLAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABHQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADHQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAHQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACTQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAdgAAAAABdgAAAAACdgAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAACQAAAAAAHQAAAAADCQAAAAAB
version: 6
0,2:
ind: 0,2
- tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABHQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAADWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAABeQAAAAAAdgAAAAAAdgAAAAAAdgAAAAABdgAAAAABHQAAAAACHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAABHQAAAAADeQAAAAAAdgAAAAADdgAAAAABdgAAAAACdgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAABHQAAAAADCQAAAAACHQAAAAAACQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: UAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAACHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAADeQAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACeQAAAAAAdgAAAAAAdgAAAAADdgAAAAADdgAAAAACeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAACHQAAAAAACQAAAAADHQAAAAABCQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,2:
ind: 1,2
- tiles: WQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: WQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,1:
ind: 2,1
- tiles: AQAAAAABAQAAAAACAQAAAAABAQAAAAAAAQAAAAABAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
+ tiles: AQAAAAAAAQAAAAAFAQAAAAAFAQAAAAAFAQAAAAABAQAAAAAFeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAABOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAFAQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAADAQAAAAAFAQAAAAAFAQAAAAADAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAACAQAAAAAAAQAAAAAAAQAAAAADAQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAADAQAAAAACAQAAAAADAQAAAAAAAQAAAAAFWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFAQAAAAAEAQAAAAAAAQAAAAACeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAAFAQAAAAACAQAAAAAAAQAAAAADAQAAAAADAQAAAAABeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAACAQAAAAAFAQAAAAACAQAAAAAEAQAAAAABWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAAAAQAAAAADAQAAAAABAQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAABAQAAAAACAQAAAAAFAQAAAAACAQAAAAAFAQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
+ tiles: PgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAACQAAAAAACQAAAAABCQAAAAADOgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAACAQAAAAAAAQAAAAAFAQAAAAAFAQAAAAAAAQAAAAAFeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAABAQAAAAACAQAAAAADAQAAAAACAQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAAAQAAAAAAAQAAAAABAQAAAAAFAQAAAAAEAQAAAAAFeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAAAQAAAAAEAQAAAAADAQAAAAABAQAAAAAAAQAAAAAEWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAABAQAAAAABAQAAAAAAAQAAAAAAAQAAAAAEeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAAQAAAAABAQAAAAADAQAAAAADAQAAAAADAQAAAAAEAQAAAAACeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAQAAAAAFAQAAAAADAQAAAAACAQAAAAADAQAAAAAFAQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAAEAQAAAAAEAQAAAAABAQAAAAAAAQAAAAACAQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAQAAAAADAQAAAAADAQAAAAACAQAAAAAFAQAAAAABAQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACdgAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACdgAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAdgAAAAABdgAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADdgAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAALAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: HQAAAAADHQAAAAACCQAAAAACHQAAAAAACQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAACHQAAAAADCQAAAAADHQAAAAADCQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-3,0:
ind: -3,0
- tiles: eQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACHQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAABEQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACEQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAADEQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADdgAAAAACeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAACdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: aAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAdgAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACeQAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAdgAAAAADeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAABeQAAAAAAdgAAAAACeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-4,1:
ind: -4,1
@@ -204,15 +204,15 @@ entities:
version: 6
-4,0:
ind: -4,0
- tiles: WQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAA
version: 6
-5,0:
ind: -5,0
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAA
version: 6
-5,1:
ind: -5,1
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-6,0:
ind: -6,0
@@ -220,23 +220,23 @@ entities:
version: 6
-5,-1:
ind: -5,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAAB
version: 6
-4,-1:
ind: -4,-1
- tiles: WQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAAAWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAD
+ tiles: WQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAADeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAADeQAAAAAATwAAAAAATwAAAAAATwAAAAAAeQAAAAAAWQAAAAABeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAATwAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAAB
version: 6
-3,-1:
ind: -3,-1
- tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAHQAAAAADeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABHQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAADHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAAD
+ tiles: eQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAUAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABHQAAAAABeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADHQAAAAACeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAAeQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAFQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAD
version: 6
3,0:
ind: 3,0
- tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAACdgAAAAABdgAAAAADeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAACUgAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: OgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAACdgAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADPgAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAAAdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACeQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAUgAAAAAAUgAAAAABeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAUgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: eQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAADXAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADHQAAAAAAHQAAAAACWQAAAAADeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAACeQAAAAAAHQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAdgAAAAADXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABeQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAACWQAAAAACHQAAAAACWQAAAAADWQAAAAACHQAAAAABHQAAAAACWQAAAAACHQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACWQAAAAACHQAAAAACWQAAAAAAWQAAAAACHQAAAAAAHQAAAAAAWQAAAAADeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAXAAAAAADWQAAAAADHQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACCQAAAAAACQAAAAACCQAAAAADOgAAAAAAOgAAAAAAOgAAAAAA
+ tiles: eQAAAAAAbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAHQAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAACHQAAAAADHQAAAAACWQAAAAAAeQAAAAAAXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAACdgAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAACWQAAAAAAHQAAAAACWQAAAAADWQAAAAADHQAAAAABHQAAAAAAWQAAAAADHQAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAABXAAAAAADWQAAAAABHQAAAAADWQAAAAAAWQAAAAACHQAAAAACHQAAAAACWQAAAAADeQAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAAAWQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAWQAAAAACCQAAAAADCQAAAAAACQAAAAABOgAAAAAAOgAAAAAAOgAAAAAA
version: 6
3,1:
ind: 3,1
@@ -244,11 +244,11 @@ entities:
version: 6
4,1:
ind: 4,1
- tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: HQAAAAADeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAACCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: PgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAADCAAAAAAACAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAABCAAAAAAACAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAACHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
5,0:
ind: 5,0
@@ -256,11 +256,11 @@ entities:
version: 6
3,-1:
ind: 3,-1
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAABdgAAAAABdgAAAAADdgAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAABWQAAAAADWQAAAAABdgAAAAAAdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACWQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABHQAAAAACeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAWQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAACdgAAAAADdgAAAAABdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAACWQAAAAABHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAADdgAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAABeQAAAAAAdgAAAAACdgAAAAABdgAAAAACHQAAAAADHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAABdgAAAAACdgAAAAAAdgAAAAADdgAAAAACdgAAAAABeQAAAAAAdgAAAAADdgAAAAADdgAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAABdgAAAAABdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAPgAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAABdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACdgAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAACdgAAAAADWQAAAAABHQAAAAACeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAABdgAAAAACdgAAAAADdgAAAAABdgAAAAABWQAAAAACHQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAABdgAAAAACdgAAAAADWQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAABdgAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAADdgAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAADdgAAAAADdgAAAAABdgAAAAACdgAAAAAAdgAAAAACdgAAAAACdgAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABdgAAAAABdgAAAAADdgAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAABdgAAAAAAdgAAAAABdgAAAAADdgAAAAADdgAAAAADeQAAAAAAdgAAAAACdgAAAAAAdgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACeQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAAAdgAAAAACdgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAOgAAAAAAOgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAABdgAAAAABdgAAAAACeQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAPgAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-4,-2:
ind: -4,-2
@@ -268,7 +268,7 @@ entities:
version: 6
-3,-2:
ind: -3,-2
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAACdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAABeQAAAAAAdgAAAAABdgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAB
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAdgAAAAADdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAdgAAAAAAdgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAdgAAAAAAdgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAdgAAAAADdgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEAAAAAAAUAAAAAAAUAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAA
version: 6
-3,-3:
ind: -3,-3
@@ -276,75 +276,75 @@ entities:
version: 6
-2,-4:
ind: -2,-4
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAQAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAACHQAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAACHQAAAAABHQAAAAABEQAAAAAAHQAAAAACHQAAAAABEQAAAAAAeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABHQAAAAABHQAAAAACEQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACHQAAAAACHQAAAAADWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABHQAAAAAAHQAAAAACEQAAAAAAHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAHQAAAAABWQAAAAADWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAADHQAAAAABHQAAAAADEQAAAAAAHQAAAAABHQAAAAABEQAAAAAAeQAAAAAAHQAAAAABWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADHQAAAAADHQAAAAACEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAAAWQAAAAAC
+ tiles: eQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAagAAAAAAHQAAAAACHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAABHQAAAAABEQAAAAAAHQAAAAACHQAAAAACEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAADEQAAAAAAHQAAAAADHQAAAAADEQAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADHQAAAAAAHQAAAAACEQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACHQAAAAACEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAHQAAAAAAHQAAAAAAEQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADWQAAAAADWQAAAAACWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAHQAAAAAAHQAAAAABEQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADHQAAAAADHQAAAAAAEQAAAAAAHQAAAAADHQAAAAACEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAAB
version: 6
0,-4:
ind: 0,-4
- tiles: eQAAAAAAYgAAAAADYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABYgAAAAADYgAAAAABYgAAAAADYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAADYgAAAAADYgAAAAABYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAACYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAABYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACYgAAAAABYgAAAAADYgAAAAADYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADYgAAAAABYgAAAAABYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAACeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAYgAAAAABYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAACYgAAAAADYgAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAAAYgAAAAACYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAYgAAAAACYgAAAAAAYgAAAAAAYgAAAAADYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADYgAAAAABYgAAAAADYgAAAAACYgAAAAADYgAAAAADYgAAAAAAYgAAAAADYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAABYgAAAAACYgAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAAAYgAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAWQAAAAACeQAAAAAAYgAAAAADYgAAAAABYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAABYgAAAAADYgAAAAACYgAAAAACYgAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAABYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADeQAAAAAAWQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
2,-3:
ind: 2,-3
- tiles: eQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAADbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAADeQAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAACbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABXAAAAAADXAAAAAADXAAAAAACXAAAAAABWQAAAAADWQAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAAAWQAAAAAAWQAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAAD
+ tiles: eQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAABHQAAAAACbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAACHQAAAAACeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAABbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAABWQAAAAABWQAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACeQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACWQAAAAABWQAAAAABeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAXAAAAAABXAAAAAABXAAAAAAAXAAAAAADWQAAAAAAWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACeQAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAXAAAAAADXAAAAAAAXAAAAAACXAAAAAADbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAAAWQAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAADeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAACaQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAACeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAADaQAAAAAAHQAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAHQAAAAACHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAAAHQAAAAAAaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAC
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAACbAAAAAACbAAAAAADeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAADeQAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAADeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAHQAAAAAAaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACaQAAAAAAHQAAAAABaQAAAAAAHQAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAABaQAAAAAAHQAAAAADaQAAAAAAHQAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADdgAAAAAAdgAAAAACeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAACdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAADbAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAACWQAAAAACWQAAAAABCQAAAAAACQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAACQAAAAADCQAAAAADCQAAAAADCQAAAAACCQAAAAADeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAACQAAAAABCQAAAAACCQAAAAAACQAAAAAACQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: aAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAACdgAAAAABdgAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAdgAAAAADdgAAAAADdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACeQAAAAAAbAAAAAADbAAAAAADeQAAAAAAbAAAAAACbAAAAAACaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABeQAAAAAAbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAbAAAAAACbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABCQAAAAACCQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAACQAAAAAACQAAAAABCQAAAAADCQAAAAAACQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACeQAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAACQAAAAADCQAAAAAACQAAAAADCQAAAAACCQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAABHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAAAHQAAAAABHQAAAAABHQAAAAABaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACHQAAAAADHQAAAAABHQAAAAADbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAWQAAAAAAWQAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAABeQAAAAAAWQAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAABHQAAAAADaQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAADbAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAAAHQAAAAACHQAAAAACaQAAAAAAbAAAAAACbAAAAAABbAAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAACbAAAAAABbAAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAADbAAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAWQAAAAAAbAAAAAACbAAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACWQAAAAADbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAWQAAAAABEQAAAAAAHQAAAAADWQAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACHQAAAAABHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAADHQAAAAACaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACHQAAAAADHQAAAAABeQAAAAAAWQAAAAABWQAAAAACHQAAAAACHQAAAAACHQAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAWQAAAAAAWQAAAAACbAAAAAACbAAAAAABbAAAAAABbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACeQAAAAAAWQAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAABHQAAAAABaQAAAAAAbAAAAAACbAAAAAADbAAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAABbAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAHQAAAAADHQAAAAACHQAAAAAAaQAAAAAAbAAAAAADbAAAAAABbAAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAbAAAAAAAbAAAAAACbAAAAAACWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAABeQAAAAAAbAAAAAABbAAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAADEQAAAAAAHQAAAAAAWQAAAAADbAAAAAACbAAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAADWQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAWQAAAAACEQAAAAAAHQAAAAACWQAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACeQAAAAAAbAAAAAADbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAADeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAHQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAABeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAABHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAeQAAAAAAHQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAADHQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAbAAAAAAAbAAAAAACbAAAAAADbAAAAAACWQAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAADeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAADbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABbAAAAAACbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAACaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAbAAAAAACbAAAAAAAbAAAAAACeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAABeQAAAAAAHQAAAAACWQAAAAADWQAAAAABWQAAAAACWQAAAAACHQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAADHQAAAAACeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAHQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACeQAAAAAAHQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAABbAAAAAAAbAAAAAABbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADWQAAAAACbAAAAAAAbAAAAAABbAAAAAABbAAAAAABbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAACbAAAAAABbAAAAAACeQAAAAAAbAAAAAADbAAAAAABbAAAAAAAbAAAAAAAbAAAAAABbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAACbAAAAAABbAAAAAACbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAABaAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAAAaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAADbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAHQAAAAADaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
5,-2:
ind: 5,-2
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAADbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAWQAAAAABeQAAAAAAWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAAAAAAAAAAAAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAbAAAAAADbAAAAAAAbAAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: eQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAABaAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAACbAAAAAABeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAABaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACbAAAAAADbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAAAaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAbAAAAAAAbAAAAAACbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAADWQAAAAACeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAAAeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAWQAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAbAAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAbAAAAAABbAAAAAACbAAAAAABbAAAAAABbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABbAAAAAADbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAABbAAAAAADbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAADeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAABbAAAAAAAbAAAAAACeQAAAAAAWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAADbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAADbAAAAAABeQAAAAAAWQAAAAACWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAbAAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAADaAAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAACbAAAAAAAbAAAAAAAbAAAAAADbAAAAAACbAAAAAADbAAAAAACbAAAAAADbAAAAAAAbAAAAAAAbAAAAAACaAAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAABbAAAAAACeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAAAbAAAAAACbAAAAAACbAAAAAACaAAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAADeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAADbAAAAAAAbAAAAAACbAAAAAADaAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAACbAAAAAAAWQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAACbAAAAAACeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAbAAAAAABbAAAAAACWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADeQAAAAAAeAAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAAeQAAAAAAbAAAAAADbAAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAADeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAADbAAAAAABbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAbAAAAAACbAAAAAADbAAAAAABbAAAAAAAeQAAAAAAbAAAAAAAbAAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAAAeQAAAAAAbAAAAAABbAAAAAABbAAAAAADbAAAAAAAbAAAAAADbAAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAbAAAAAADbAAAAAAAbAAAAAADeQAAAAAAbAAAAAACbAAAAAACbAAAAAABbAAAAAAAbAAAAAAAbAAAAAADeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAACeQAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABEwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAADbAAAAAACbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAAAbAAAAAADbAAAAAACbAAAAAAAbAAAAAACbAAAAAACeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAABWQAAAAAAbAAAAAACWQAAAAABbAAAAAACWQAAAAADbAAAAAAAWQAAAAACbAAAAAABWQAAAAACbAAAAAAAWQAAAAABbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADbAAAAAADbAAAAAACbAAAAAAAbAAAAAABbAAAAAADbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAACdgAAAAADdgAAAAABdgAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAABHQAAAAAAWQAAAAAAHQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAABdgAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAAAbAAAAAACbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAADdgAAAAADdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAADbAAAAAACbAAAAAACbAAAAAADbAAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAADdgAAAAADdgAAAAACdgAAAAADdgAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAEeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAdgAAAAADEwAAAAAEeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAACbAAAAAABbAAAAAADbAAAAAAAbAAAAAABbAAAAAAAbAAAAAABbAAAAAABeQAAAAAAeQAAAAAAaAAAAAAAbAAAAAAAWQAAAAABbAAAAAAAWQAAAAABbAAAAAABWQAAAAAAbAAAAAADWQAAAAADbAAAAAAAWQAAAAACbAAAAAACWQAAAAACbAAAAAACeQAAAAAAeQAAAAAAeQAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAABbAAAAAACbAAAAAACbAAAAAAAbAAAAAAAbAAAAAACbAAAAAAAbAAAAAABbAAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAACeQAAAAAAdgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAABdgAAAAABeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAHQAAAAABWQAAAAAAHQAAAAADdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADdgAAAAADdgAAAAADdgAAAAAAeQAAAAAAbAAAAAADbAAAAAABbAAAAAACbAAAAAABbAAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAdgAAAAABdgAAAAABdgAAAAAAdgAAAAABdgAAAAAAdgAAAAADdgAAAAABeQAAAAAAbAAAAAACbAAAAAABbAAAAAACbAAAAAACbAAAAAAAeQAAAAAAWQAAAAACeQAAAAAAdgAAAAAAdgAAAAACdgAAAAACdgAAAAADdgAAAAAAdgAAAAABdgAAAAACeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAAAHQAAAAACHQAAAAADeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAADHQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAACHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABHQAAAAACHQAAAAACHQAAAAAAHQAAAAABaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAACbAAAAAACbAAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAPAAAAAAAYAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAADWQAAAAACeQAAAAAAHQAAAAAAHQAAAAABHQAAAAABHQAAAAABHQAAAAACHQAAAAAAHQAAAAAAHQAAAAACeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAADHQAAAAADHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAHQAAAAABHQAAAAABeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAeQAAAAAAbAAAAAADbAAAAAADbAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
5,-3:
ind: 5,-3
- tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: aAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAA
version: 6
5,-4:
ind: 5,-4
- tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAC
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEwAAAAAG
version: 6
4,-1:
ind: 4,-1
- tiles: WQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAABHQAAAAABHQAAAAADeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACHQAAAAADHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAABHQAAAAAAHQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAADHQAAAAAAHQAAAAABHQAAAAACHQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABWQAAAAACWQAAAAAAHQAAAAABHQAAAAABHQAAAAAAWQAAAAABWQAAAAACHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAADHQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAACeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAACHQAAAAABHQAAAAABHQAAAAADWQAAAAABWQAAAAACHQAAAAABeQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAACWQAAAAACeQAAAAAAHQAAAAAAWQAAAAACWQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAABHQAAAAAAHQAAAAADHQAAAAABWQAAAAABWQAAAAACHQAAAAABHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAHQAAAAADWQAAAAAAWQAAAAABHQAAAAABHQAAAAACHQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: WQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAHQAAAAADHQAAAAACHQAAAAACHQAAAAAAHQAAAAACHQAAAAADHQAAAAACHQAAAAAAHQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAHQAAAAAAHQAAAAADHQAAAAABHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAAAHQAAAAACHQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAABeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAABHQAAAAADHQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAHQAAAAACWQAAAAABWQAAAAAAHQAAAAADHQAAAAADHQAAAAADWQAAAAABWQAAAAABHQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAACWQAAAAACHQAAAAAAHQAAAAADHQAAAAAAWQAAAAAAWQAAAAACHQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAADeQAAAAAAHQAAAAADWQAAAAACWQAAAAACHQAAAAAAHQAAAAABHQAAAAAAWQAAAAACWQAAAAABHQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAHQAAAAAAWQAAAAABWQAAAAABHQAAAAABHQAAAAADHQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAWQAAAAADWQAAAAADHQAAAAADHQAAAAACHQAAAAACWQAAAAABWQAAAAADHQAAAAABHQAAAAADeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAHQAAAAABWQAAAAADWQAAAAAAHQAAAAACHQAAAAADHQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAADHQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
5,-1:
ind: 5,-1
- tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAABeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAACWQAAAAABeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: eQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAADWQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAACWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
4,-5:
ind: 4,-5
- tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
+ tiles: AAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAA
version: 6
5,-5:
ind: 5,-5
@@ -352,15 +352,15 @@ entities:
version: 6
3,-5:
ind: 3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAABwAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAA
version: 6
2,-5:
ind: 2,-5
- tiles: eQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: eAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAeQAAAAAAPgAAAAAAAAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAdgAAAAABeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,-5:
ind: 1,-5
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAA
version: 6
1,-4:
ind: 1,-4
@@ -368,11 +368,11 @@ entities:
version: 6
-1,-5:
ind: -1,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAADeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAADaQAAAAAAeQAAAAAAeQAAAAAAagAAAAACagAAAAADagAAAAABeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAACHQAAAAABHQAAAAAAHQAAAAACHQAAAAADHQAAAAADHQAAAAADHQAAAAAC
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAACeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACeQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAACWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAADWQAAAAADWQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAADWQAAAAADWQAAAAACWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAADWQAAAAABWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAACaQAAAAAAeQAAAAAAeQAAAAAAagAAAAAAagAAAAADagAAAAADeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAHQAAAAAAHQAAAAADHQAAAAADHQAAAAAAHQAAAAACHQAAAAACHQAAAAACHQAAAAAD
version: 6
-2,-5:
ind: -2,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAAAAwAAAAACAwAAAAABeQAAAAAAWQAAAAAAWQAAAAAADgAAAAAADgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAwAAAAAAAwAAAAADAwAAAAABeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAwAAAAADAwAAAAADAwAAAAABeQAAAAAAWQAAAAACWQAAAAACeQAAAAAADgAAAAADeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAADeQAAAAAAWQAAAAAAWQAAAAACeQAAAAAAWQAAAAABWQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAADHQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABeQAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAACHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAADHQAAAAADeQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAACWQAAAAACWQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABDgAAAAABDgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADHQAAAAABHQAAAAABeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADHQAAAAAAHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADeQAAAAAADgAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAWQAAAAABWQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAABWQAAAAACWQAAAAABHQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAADHQAAAAAAeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAWQAAAAAAWQAAAAABeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACHQAAAAACeQAAAAAAHQAAAAACHQAAAAABeQAAAAAAaQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-3,-4:
ind: -3,-4
@@ -380,47 +380,31 @@ entities:
version: 6
-3,-5:
ind: -3,-5
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAA
version: 6
0,-5:
ind: 0,-5
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAWQAAAAACWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAADWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAABaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAACeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAABWQAAAAADeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAADWQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAAAWQAAAAABHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAABWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAADWQAAAAAAWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAACWQAAAAACWQAAAAACeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA
+ tiles: eQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABeQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAADeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAADWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAACWQAAAAADaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAWQAAAAAAWQAAAAADWQAAAAAAWQAAAAADWQAAAAABeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAeQAAAAAAWQAAAAACWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAABWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAACWQAAAAAAWQAAAAACeQAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAWQAAAAABWQAAAAACWQAAAAABWQAAAAACWQAAAAADWQAAAAACWQAAAAABWQAAAAADWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAWQAAAAACWQAAAAACWQAAAAADWQAAAAADWQAAAAABWQAAAAABWQAAAAADWQAAAAABWQAAAAADWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAWQAAAAACWQAAAAAAWQAAAAADWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAABWQAAAAACWQAAAAABeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAACWQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAYgAAAAABeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAA
version: 6
0,-6:
ind: 0,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
-1,-6:
ind: -1,-6
- tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
version: 6
1,-6:
ind: 1,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAaAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAADeQAAAAAAHQAAAAADeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAHQAAAAADeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAABHQAAAAACHQAAAAABHQAAAAADHQAAAAACHQAAAAABHQAAAAACAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAADeQAAAAAAHQAAAAADHQAAAAAAHQAAAAADeQAAAAAAHQAAAAABAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAADHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAABHQAAAAAAHQAAAAACeQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAACPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAHQAAAAABPgAAAAAAPgAAAAAAPgAAAAAAHQAAAAABHQAAAAACeQAAAAAAeQAAAAAAAgAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA
version: 6
2,-6:
ind: 2,-6
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 2,-7:
- ind: 2,-7
- tiles: eQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 2,-8:
- ind: 2,-8
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
- version: 6
- 1,-7:
- ind: 1,-7
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACHQAAAAAAHQAAAAAAHQAAAAADHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABHQAAAAAAHQAAAAACEQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAACHQAAAAAAHQAAAAACHQAAAAAAHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAABHQAAAAACHQAAAAACHQAAAAABHQAAAAADeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAADeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAAAeQAAAAAAEQAAAAAAeQAAAAAA
- version: 6
- 1,-8:
- ind: 1,-8
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAADHQAAAAABHQAAAAABHQAAAAABHQAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAEQAAAAAAEQAAAAAAHQAAAAABEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAACeQAAAAAAEQAAAAAAeQAAAAAAHQAAAAACEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAEQAAAAAAHQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAAD
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,-6:
ind: -2,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAADeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAACeQAAAAAAHQAAAAADeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeQAAAAAAHQAAAAABHQAAAAADHQAAAAAAeQAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAHQAAAAABeQAAAAAAeQAAAAAAeAAAAAAA
version: 6
-4,-4:
ind: -4,-4
@@ -444,7 +428,7 @@ entities:
version: 6
-1,3:
ind: -1,3
- tiles: dgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAWQAAAAACWQAAAAAAWQAAAAABWQAAAAABWQAAAAABWQAAAAACWQAAAAADeQAAAAAACQAAAAABHQAAAAABCQAAAAACdgAAAAACdgAAAAACdgAAAAADdgAAAAACdgAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAABWQAAAAACWQAAAAABWQAAAAADeQAAAAAAWQAAAAACWQAAAAABWQAAAAAAdgAAAAABdgAAAAAAdgAAAAAAdgAAAAACdgAAAAABeQAAAAAAWQAAAAABWQAAAAABWQAAAAADWQAAAAACWQAAAAAAWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAADdgAAAAACdgAAAAAAdgAAAAABdgAAAAACdgAAAAACeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAADWQAAAAACWQAAAAADWQAAAAAAeQAAAAAAWQAAAAACWQAAAAACWQAAAAAAdgAAAAAAdgAAAAADdgAAAAAAdgAAAAABdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAACWQAAAAAAWQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAACHQAAAAAAeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: dgAAAAACdgAAAAACdgAAAAAAdgAAAAABdgAAAAACWQAAAAABWQAAAAACWQAAAAAAWQAAAAABWQAAAAADWQAAAAACWQAAAAAAeQAAAAAACQAAAAABHQAAAAACCQAAAAACdgAAAAADdgAAAAAAdgAAAAADdgAAAAABdgAAAAADeQAAAAAAWQAAAAADWQAAAAABWQAAAAABWQAAAAAAWQAAAAABWQAAAAABeQAAAAAAWQAAAAADWQAAAAADWQAAAAAAdgAAAAACdgAAAAABdgAAAAABdgAAAAACdgAAAAADeQAAAAAAWQAAAAABWQAAAAACWQAAAAACWQAAAAABWQAAAAAAWQAAAAADWQAAAAABWQAAAAAAWQAAAAADWQAAAAABdgAAAAACdgAAAAABdgAAAAACdgAAAAAAdgAAAAABeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAABWQAAAAADWQAAAAADWQAAAAACeQAAAAAAWQAAAAADWQAAAAABWQAAAAADdgAAAAAAdgAAAAAAdgAAAAACdgAAAAAAdgAAAAADeQAAAAAAPQAAAAAAPQAAAAAAWQAAAAAAWQAAAAABWQAAAAABWQAAAAABeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAHQAAAAADHQAAAAABHQAAAAACHQAAAAAAHQAAAAACeQAAAAAAPQAAAAAAPQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
1,3:
ind: 1,3
@@ -480,7 +464,7 @@ entities:
version: 6
3,-6:
ind: 3,-6
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAeAAAAAAAAAAAAAAAeAAAAAAA
version: 6
-6,-1:
ind: -6,-1
@@ -529,6 +513,7 @@ entities:
3453: 2,-62
3454: 2,-61
3455: 2,-60
+ 6265: 74,-42
- node:
color: '#FFFFFFFF'
id: Arrows
@@ -538,7 +523,6 @@ entities:
2556: 6,-49
2557: 7,-49
2595: 3,-45
- 2625: -6,-76
2690: 4,-76
3014: 80,-54
3015: 79,-54
@@ -554,6 +538,7 @@ entities:
3249: -23,-27
3456: 8,-64
3457: 8,-63
+ 6264: 74,-40
- node:
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
@@ -664,7 +649,6 @@ entities:
3079: 34,-49
3080: 37,-50
3081: 37,-49
- 3082: 18,-84
3129: 34,-44
3130: 35,-44
3131: 34,-39
@@ -714,17 +698,27 @@ entities:
color: '#FFFFFFFF'
id: BotGreyscale
decals:
- 1060: -1,-22
- 1061: -2,-21
- 1062: -1,-20
- 1063: 0,-21
- 1079: -2,-14
- 1080: 0,-14
3570: -16,36
3571: -15,36
3572: -14,36
3573: -13,36
3574: -12,36
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: BotGreyscale
+ decals:
+ 6021: 0,-12
+ 6022: -2,-12
+ 6072: 15,-77
+ 6073: 21,-77
+ 6074: 20,-79
+ 6075: 16,-79
+ 6219: -25,-76
+ 6230: -26,-76
+ 6231: -25,-75
+ 6232: -24,-76
+ 6233: -25,-77
- node:
color: '#FFFFFFFF'
id: BotLeft
@@ -742,11 +736,13 @@ entities:
3591: 1,37
3592: 2,37
- node:
+ zIndex: 1
color: '#FFFFFFFF'
id: BotLeftGreyscale
decals:
- 1058: 0,-20
- 1059: -2,-22
+ 6020: 0,-22
+ 6228: -24,-75
+ 6229: -26,-77
- node:
color: '#DE3A3A96'
id: BotRight
@@ -761,11 +757,13 @@ entities:
2455: 10,-42
2456: 10,-41
- node:
+ zIndex: 1
color: '#FFFFFFFF'
id: BotRightGreyscale
decals:
- 1056: 0,-22
- 1057: -2,-20
+ 6019: -2,-22
+ 6226: -26,-75
+ 6227: -24,-77
- node:
color: '#FFFFFFFF'
id: Box
@@ -777,23 +775,12 @@ entities:
decals:
2460: 14,-42
2461: 14,-41
- - node:
- color: '#334E6DC8'
- id: BrickBoxOverlay
- decals:
- 3685: 11,-69
- - node:
- color: '#FFFFFFFF'
- id: BrickTileDarkBox
- decals:
- 2062: -3,-17
- 2063: -1,-17
- 2064: 1,-17
- node:
color: '#FFFFFFFF'
id: BrickTileDarkCornerSe
decals:
2963: 11,-35
+ 5987: -24,-12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkInnerNe
@@ -820,6 +807,8 @@ entities:
decals:
2964: 11,-34
3576: -2,37
+ 5988: -24,-11
+ 5989: -24,-10
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineN
@@ -858,6 +847,7 @@ entities:
3578: 0,38
3579: 1,38
3580: 2,38
+ 5990: -25,-12
- node:
color: '#FFFFFFFF'
id: BrickTileDarkLineW
@@ -1132,6 +1122,12 @@ entities:
2573: 7,-41
2635: -10,-73
2853: 9,-66
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerNe
+ decals:
+ 6238: -20,-73
- node:
color: '#FFEBAE96'
id: BrickTileWhiteCornerNe
@@ -1215,8 +1211,13 @@ entities:
decals:
2267: -6,-58
2580: 7,-45
- 2617: -5,-76
2650: -10,-77
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: BrickTileWhiteCornerSe
+ decals:
+ 6239: -20,-78
- node:
color: '#334E6DC8'
id: BrickTileWhiteCornerSw
@@ -1305,6 +1306,12 @@ entities:
1529: -11,3
2122: -10,-15
2274: -6,-52
+ - node:
+ zIndex: 1
+ color: '#334E6DC8'
+ id: BrickTileWhiteLineE
+ decals:
+ 6018: -7,-17
- node:
color: '#5299B43A'
id: BrickTileWhiteLineE
@@ -1369,6 +1376,15 @@ entities:
2877: 9,-69
2878: 9,-68
2879: 9,-67
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: BrickTileWhiteLineE
+ decals:
+ 6234: -20,-74
+ 6235: -20,-75
+ 6236: -20,-76
+ 6237: -20,-77
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineN
@@ -1574,8 +1590,6 @@ entities:
2608: 8,-76
2609: 6,-76
2610: 7,-76
- 2623: -6,-76
- 2624: -7,-76
2633: -20,-71
2634: -21,-71
2651: -11,-77
@@ -1595,6 +1609,12 @@ entities:
2873: 5,-71
2874: 6,-71
2875: 7,-71
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: BrickTileWhiteLineS
+ decals:
+ 6240: -21,-78
- node:
color: '#334E6DC8'
id: BrickTileWhiteLineW
@@ -1610,12 +1630,7 @@ entities:
1525: -14,7
1526: -13,2
1527: -13,3
- 1826: -19,-13
- 1827: -19,-12
- 1828: -19,-11
- 1829: -19,-10
2275: -8,-52
- 2327: -19,-14
- node:
color: '#5299B43A'
id: BrickTileWhiteLineW
@@ -1898,34 +1913,21 @@ entities:
3362: 49,1
3363: 48,1
- node:
+ zIndex: 1
color: '#334E6DC8'
id: CheckerNWSE
decals:
- 505: -25,-14
- 506: -25,-13
- 507: -25,-12
- 508: -25,-11
- 509: -25,-10
- 510: -24,-10
- 511: -23,-10
- 512: -22,-10
- 513: -21,-10
- 514: -21,-11
- 515: -21,-12
- 516: -21,-13
- 517: -21,-14
- 518: -22,-14
- 519: -23,-14
- 520: -24,-14
- 521: -24,-13
- 522: -24,-12
- 523: -24,-11
- 524: -23,-11
- 525: -22,-11
- 526: -22,-12
- 527: -22,-13
- 528: -23,-13
- 529: -23,-12
+ 6049: -2,-27
+ 6050: -2,-28
+ 6051: 0,-28
+ 6052: 0,-27
+ 6053: -1,-27
+ 6054: -1,-28
+ 6055: -3,-25
+ 6056: -2,-25
+ 6057: -1,-25
+ 6058: 0,-25
+ 6059: 1,-25
- node:
color: '#474F52FF'
id: CheckerNWSE
@@ -2258,9 +2260,6 @@ entities:
226: -31,-16
227: -32,-16
228: -33,-16
- 229: -33,-17
- 230: -32,-17
- 231: -31,-17
232: -30,-17
242: -32,-18
258: -6,-46
@@ -2344,6 +2343,8 @@ entities:
5755: -59,-18
5756: -60,-18
5757: -60,-19
+ 6252: -33,-17
+ 6253: -31,-18
- node:
cleanable: True
zIndex: 5
@@ -2827,6 +2828,19 @@ entities:
5948: -27,-69
5949: -25,-66
5950: -23,-67
+ 5991: -22,-11
+ 6076: 21,-76
+ 6077: 18,-74
+ 6078: 14,-76
+ 6079: 15,-80
+ 6080: 22,-80
+ 6136: 13,-57
+ 6137: 14,-57
+ 6138: 12,-54
+ 6254: -32,-16
+ 6255: -32,-17
+ 6256: -33,-14
+ 6257: -36,-19
- node:
cleanable: True
zIndex: 5
@@ -2843,6 +2857,10 @@ entities:
4905: 68,-16
5235: 18,-34
5820: -2,-36
+ 6258: -34,-22
+ 6259: -25,-26
+ 6260: -27,-26
+ 6261: -28,-24
- node:
cleanable: True
zIndex: 5
@@ -2853,7 +2871,6 @@ entities:
244: -32,-15
245: -33,-15
246: -33,-16
- 247: -33,-17
248: -33,-14
249: -33,-13
250: -32,-13
@@ -3214,10 +3231,8 @@ entities:
4860: 80,-53
4861: 73,-57
4862: 74,-58
- 4863: 78,-47
4864: 74,-47
4865: 77,-46
- 4866: 78,-45
4867: 76,-45
4868: 72,-45
4924: 78,-14
@@ -3595,17 +3610,9 @@ entities:
5790: -21,-7
5791: -18,-11
5792: -18,-12
- 5793: -19,-14
5794: -21,-17
5795: -23,-17
5796: -22,-19
- 5797: -22,-14
- 5798: -25,-13
- 5799: -25,-12
- 5800: -24,-10
- 5801: -21,-11
- 5802: -22,-11
- 5803: -24,-13
5804: -24,-19
5805: -26,-20
5806: -21,-26
@@ -3635,6 +3642,51 @@ entities:
5954: -25,-71
5955: -27,-67
5956: -33,-66
+ 5992: -23,-11
+ 5993: -21,-11
+ 5994: -21,-12
+ 5995: -22,-12
+ 5996: -24,-12
+ 5997: -24,-13
+ 5998: -18,-13
+ 5999: -19,-13
+ 6000: -19,-12
+ 6001: -17,-11
+ 6002: -18,-10
+ 6081: 20,-77
+ 6082: 20,-79
+ 6083: 15,-79
+ 6084: 13,-76
+ 6085: 13,-75
+ 6086: 13,-74
+ 6087: 14,-74
+ 6088: 15,-74
+ 6089: 15,-75
+ 6090: 21,-75
+ 6091: 21,-74
+ 6092: 20,-74
+ 6093: 19,-74
+ 6094: 19,-75
+ 6095: 24,-75
+ 6096: 25,-77
+ 6097: 25,-78
+ 6098: 25,-79
+ 6120: 16,-84
+ 6121: 16,-86
+ 6122: 20,-86
+ 6123: 20,-85
+ 6124: 25,-84
+ 6125: 26,-85
+ 6126: 26,-81
+ 6127: 26,-80
+ 6128: 25,-79
+ 6129: 26,-73
+ 6130: 26,-68
+ 6131: 26,-65
+ 6132: 21,-61
+ 6133: 15,-58
+ 6134: 17,-57
+ 6135: 19,-57
- node:
cleanable: True
zIndex: 5
@@ -3648,7 +3700,6 @@ entities:
237: -31,-14
238: -30,-15
239: -31,-16
- 240: -32,-17
241: -32,-18
453: -22,-25
454: -26,-31
@@ -4120,9 +4171,7 @@ entities:
5909: 19,-79
5910: 19,-75
5911: 16,-73
- 5912: 14,-75
5913: 15,-79
- 5914: 17,-75
5915: 16,-74
5916: 20,-75
5917: 25,-75
@@ -4155,6 +4204,53 @@ entities:
5944: 40,-60
5945: 35,-67
5946: 5,-67
+ 6003: -23,-12
+ 6004: -28,-12
+ 6005: -28,-11
+ 6006: -24,-20
+ 6007: -22,-17
+ 6008: -22,-26
+ 6009: -22,-25
+ 6010: -20,-25
+ 6011: -16,-27
+ 6012: -16,-25
+ 6099: 8,-76
+ 6100: 4,-74
+ 6101: -3,-71
+ 6102: -2,-71
+ 6103: 16,-78
+ 6104: 12,-79
+ 6105: 12,-80
+ 6106: 22,-79
+ 6107: 23,-79
+ 6108: 23,-78
+ 6109: 22,-78
+ 6110: 22,-77
+ 6111: 23,-77
+ 6112: 22,-76
+ 6113: 20,-80
+ 6114: 19,-81
+ 6115: 20,-82
+ 6116: 20,-84
+ 6117: 18,-84
+ 6118: 18,-85
+ 6119: 18,-86
+ 6139: 17,-47
+ 6140: 18,-45
+ 6141: 19,-45
+ 6142: 19,-46
+ 6143: 18,-47
+ 6144: 13,-44
+ 6145: 12,-43
+ 6146: 12,-44
+ 6147: 0,-44
+ 6148: -3,-55
+ 6149: -5,-76
+ 6150: -6,-76
+ 6151: -7,-76
+ 6152: -2,-69
+ 6153: -3,-70
+ 6154: -14,-77
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -4268,6 +4364,13 @@ entities:
433: -30,-31
1147: -21,-31
1148: -22,-31
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: FullTileOverlayGreyscale
+ decals:
+ 6248: -32,-18
+ 6249: -31,-18
- node:
color: '#D381C934'
id: FullTileOverlayGreyscale
@@ -4315,6 +4418,14 @@ entities:
2882: -1,-72
2883: -2,-72
2884: -3,-72
+ - node:
+ zIndex: 2
+ color: '#EFB34196'
+ id: FullTileOverlayGreyscale
+ decals:
+ 6242: -20,-79
+ 6243: -20,-80
+ 6244: -20,-72
- node:
color: '#EFCF412B'
id: FullTileOverlayGreyscale
@@ -4632,6 +4743,13 @@ entities:
decals:
3171: -33,-32
3172: -32,-32
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 6250: -32,-17
+ 6251: -31,-17
- node:
color: '#D381C996'
id: HalfTileOverlayGreyscale180
@@ -4761,11 +4879,16 @@ entities:
980: 34,-55
981: 34,-54
982: 34,-53
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 6017: -19,-12
- node:
color: '#A4610696'
id: HalfTileOverlayGreyscale270
decals:
- 190: -33,-17
191: -33,-16
192: -33,-15
193: -33,-14
@@ -4821,13 +4944,6 @@ entities:
id: HalfTileOverlayGreyscale270
decals:
2223: -5,-6
- - node:
- color: '#EFB34196'
- id: HalfTileOverlayGreyscale270
- decals:
- 1064: -3,-25
- 1067: -2,-27
- 3688: 0,-69
- node:
color: '#334E6D5A'
id: HalfTileOverlayGreyscale90
@@ -4957,7 +5073,6 @@ entities:
color: '#EFB34196'
id: HalfTileOverlayGreyscale90
decals:
- 1068: 0,-27
2584: 4,-43
2585: 4,-42
2691: -3,-70
@@ -5005,9 +5120,6 @@ entities:
536: 11,-8
537: 12,-8
538: 13,-8
- 2017: 27,-90
- 2018: 27,-91
- 2023: 31,-91
- node:
zIndex: 1
color: '#334E6DC8'
@@ -5073,6 +5185,13 @@ entities:
id: QuarterTileOverlayGreyscale
decals:
818: 63,-27
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 6015: -19,-11
+ 6016: -19,-10
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale
@@ -5344,10 +5463,6 @@ entities:
553: -16,-14
554: -16,-13
555: -16,-12
- 2021: 29,-94
- 2022: 29,-93
- 2026: 25,-94
- 2027: 25,-93
2052: -9,-10
2053: -8,-10
2054: -7,-10
@@ -5452,7 +5567,6 @@ entities:
color: '#A4610696'
id: QuarterTileOverlayGreyscale180
decals:
- 188: -31,-17
428: -27,-28
3199: -36,-23
3200: -35,-23
@@ -5605,10 +5719,6 @@ entities:
561: 14,-18
562: 14,-17
563: 14,-16
- 2019: 27,-94
- 2020: 27,-93
- 2024: 31,-94
- 2025: 31,-93
2043: 7,-10
2044: 6,-10
2045: 5,-10
@@ -5716,6 +5826,13 @@ entities:
734: 38,-57
3135: 7,-32
3393: 8,-32
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 6013: -19,-14
+ 6014: -19,-13
- node:
color: '#A4610696'
id: QuarterTileOverlayGreyscale270
@@ -5929,9 +6046,6 @@ entities:
814: -9,-30
815: -8,-30
816: -7,-30
- 2015: 29,-90
- 2016: 29,-91
- 2028: 25,-91
- node:
zIndex: 1
color: '#334E6DC8'
@@ -6436,10 +6550,6 @@ entities:
id: ThreeQuarterTileOverlayGreyscale180
decals:
343: -1,23
- 1065: 0,-28
- 3412: 1,-26
- 3686: -2,-69
- 3694: 2,-70
- node:
color: '#5299B43A'
id: ThreeQuarterTileOverlayGreyscale270
@@ -6465,6 +6575,12 @@ entities:
decals:
429: -30,-39
3167: -34,-32
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 6245: -33,-17
- node:
color: '#D381C934'
id: ThreeQuarterTileOverlayGreyscale270
@@ -6493,9 +6609,6 @@ entities:
id: ThreeQuarterTileOverlayGreyscale270
decals:
344: -3,23
- 1066: -2,-28
- 3413: -3,-26
- 3690: 0,-70
- node:
color: '#334E6D5A'
id: ThreeQuarterTileOverlayGreyscale90
@@ -6585,7 +6698,6 @@ entities:
68: 87,-39
69: 87,-58
70: 81,-67
- 71: 62,-72
72: 49,-67
73: -43,-49
74: -43,-50
@@ -6606,6 +6718,18 @@ entities:
1014: -69,-17
1015: -76,-17
1016: -67,-10
+ 5980: 62,-71
+ 5981: 61,-73
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnBox
+ decals:
+ 6045: -2,-21
+ 6046: 0,-21
+ 6047: -1,-29
+ 6048: -1,-26
+ 6217: -21,-73
- node:
color: '#FFFFFFFF'
id: WarnCornerGreyscaleNE
@@ -6626,11 +6750,13 @@ entities:
id: WarnCornerNE
decals:
3515: 23,19
+ 6266: 78,-47
- node:
color: '#FFFFFFFF'
id: WarnCornerNW
decals:
3516: 25,19
+ 6267: 68,-45
- node:
color: '#FFFFFFFF'
id: WarnCornerSE
@@ -6643,6 +6769,7 @@ entities:
decals:
1615: 21,-21
3517: 25,17
+ 6268: 68,-47
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNE
@@ -6650,12 +6777,36 @@ entities:
1282: 44,-21
1283: 46,-21
2953: 42,-21
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleNE
+ decals:
+ 6024: -3,-17
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallGreyscaleNW
decals:
1280: 46,-21
1281: 44,-21
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleNW
+ decals:
+ 6023: 1,-17
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleSE
+ decals:
+ 6033: -3,-13
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallGreyscaleSW
+ decals:
+ 6034: 1,-13
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNE
@@ -6663,7 +6814,6 @@ entities:
1073: -3,-30
1665: 51,-21
2314: -73,-4
- 3093: 13,-77
3512: -13,-63
- node:
zIndex: 1
@@ -6671,6 +6821,8 @@ entities:
id: WarnCornerSmallNE
decals:
5975: -27,-70
+ 6071: 16,-78
+ 6177: -21,-84
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallNW
@@ -6683,7 +6835,6 @@ entities:
2291: -79,-6
2312: -69,-4
2313: -76,-4
- 3092: 17,-77
3511: -11,-63
- node:
zIndex: 1
@@ -6691,6 +6842,8 @@ entities:
id: WarnCornerSmallNW
decals:
5974: -23,-70
+ 6068: 20,-78
+ 6174: -19,-84
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSE
@@ -6698,15 +6851,15 @@ entities:
422: -41,-10
1536: -13,6
1663: 51,-17
- 2041: 22,-90
2317: -73,8
- 3091: 13,-75
- node:
zIndex: 1
color: '#FFFFFFFF'
id: WarnCornerSmallSE
decals:
5977: -27,-66
+ 6070: 16,-76
+ 6176: -21,-82
- node:
color: '#FFFFFFFF'
id: WarnCornerSmallSW
@@ -6716,12 +6869,10 @@ entities:
710: 72,-19
1535: -11,6
1662: 55,-17
- 2042: 34,-90
2287: -79,10
2290: -79,-4
2315: -69,8
2316: -76,8
- 3094: 17,-75
3699: -38,-10
- node:
zIndex: 1
@@ -6729,6 +6880,8 @@ entities:
id: WarnCornerSmallSW
decals:
5976: -23,-66
+ 6069: 20,-76
+ 6175: -19,-82
- node:
color: '#FFFFFFFF'
id: WarnEndGreyscaleN
@@ -6757,7 +6910,6 @@ entities:
661: 74,-36
662: 74,-35
663: 74,-34
- 725: 78,-47
726: 78,-48
762: 41,-54
763: 41,-53
@@ -6773,12 +6925,8 @@ entities:
1689: 60,-32
1690: 60,-31
1691: 60,-30
- 2038: 22,-93
- 2039: 22,-92
- 2040: 22,-91
2476: 8,-49
2477: 8,-48
- 3089: 13,-76
3510: -13,-62
3514: 23,18
- node:
@@ -6789,11 +6937,12 @@ entities:
5962: -27,-69
5963: -27,-68
5964: -27,-67
+ 6066: 16,-77
+ 6170: -21,-83
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleE
decals:
- 1332: -7,-17
1510: -9,8
- node:
color: '#52B4E996'
@@ -6814,6 +6963,16 @@ entities:
2659: -10,-75
2949: 42,-20
2950: 42,-19
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 6030: -3,-16
+ 6031: -3,-15
+ 6032: -3,-14
+ 6043: -4,-25
+ 6044: -4,-24
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleN
@@ -6881,6 +7040,15 @@ entities:
2889: 3,-66
2890: 8,-66
2952: 41,-18
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 6025: -2,-17
+ 6026: 0,-17
+ 6262: 8,1
+ 6263: 9,1
- node:
color: '#334E6DC8'
id: WarnLineGreyscaleS
@@ -6955,6 +7123,14 @@ entities:
3349: 44,-21
3350: 43,-21
3351: 42,-21
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 6155: -7,-76
+ 6156: -6,-76
+ 6157: -5,-76
- node:
color: '#EFB34196'
id: WarnLineGreyscaleW
@@ -6977,6 +7153,16 @@ entities:
2658: -8,-75
2896: -8,-69
2897: -8,-70
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 6027: 1,-16
+ 6028: 1,-15
+ 6029: 1,-14
+ 6040: 2,-25
+ 6041: 2,-24
- node:
color: '#FFFFFFFF'
id: WarnLineN
@@ -7007,7 +7193,6 @@ entities:
694: 59,-24
705: 70,-19
706: 71,-19
- 715: 68,-47
755: 39,-54
756: 41,-54
881: 69,-19
@@ -7026,12 +7211,6 @@ entities:
1659: 52,-17
1660: 53,-17
1661: 54,-17
- 2032: 33,-90
- 2033: 32,-90
- 2034: 31,-90
- 2035: 25,-90
- 2036: 24,-90
- 2037: 23,-90
2298: -70,8
2299: -71,8
2300: -72,8
@@ -7049,9 +7228,6 @@ entities:
2602: -1,-79
2603: -2,-79
2604: -3,-79
- 3086: 14,-75
- 3087: 15,-75
- 3088: 16,-75
- node:
zIndex: 1
color: '#FFFFFFFF'
@@ -7060,6 +7236,10 @@ entities:
5968: -26,-66
5969: -25,-66
5970: -24,-66
+ 6063: 17,-76
+ 6064: 18,-76
+ 6065: 19,-76
+ 6173: -20,-82
- node:
color: '#FFFFFFFF'
id: WarnLineS
@@ -7090,8 +7270,6 @@ entities:
707: 72,-20
708: 72,-21
711: 68,-46
- 712: 68,-47
- 713: 68,-45
759: 39,-54
760: 39,-53
761: 39,-52
@@ -7107,9 +7285,6 @@ entities:
1651: 55,-19
1652: 55,-18
1682: 53,-27
- 2029: 34,-93
- 2030: 34,-92
- 2031: 34,-91
2261: -8,-54
2286: -79,9
2289: -79,-5
@@ -7119,7 +7294,6 @@ entities:
2393: -30,-39
2474: 8,-49
2475: 8,-48
- 3090: 17,-76
3509: -11,-62
3518: 25,18
3567: -11,34
@@ -7134,6 +7308,18 @@ entities:
5965: -23,-69
5966: -23,-68
5967: -23,-67
+ 6067: 20,-77
+ 6172: -19,-83
+ 6213: -21,-77
+ 6214: -21,-76
+ 6215: -21,-75
+ 6216: -21,-74
+ - node:
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 6241: -21,-78
- node:
color: '#FFFFFFFF'
id: WarnLineW
@@ -7157,7 +7343,6 @@ entities:
703: 62,-20
704: 63,-20
709: 70,-22
- 714: 68,-45
716: 70,-47
717: 71,-47
718: 72,-47
@@ -7166,7 +7351,6 @@ entities:
721: 75,-47
722: 76,-47
723: 77,-47
- 724: 78,-47
757: 41,-52
758: 39,-52
880: 69,-22
@@ -7176,11 +7360,6 @@ entities:
1069: -1,-30
1070: 0,-30
1071: -2,-30
- 1074: 0,-25
- 1075: -1,-25
- 1076: -2,-25
- 1077: -3,-25
- 1078: 1,-25
1152: 76,-26
1153: 77,-26
1154: 78,-26
@@ -7204,15 +7383,6 @@ entities:
2471: 11,-46
2472: 10,-46
2473: 9,-46
- 2819: 13,-84
- 2820: 14,-84
- 2821: 15,-84
- 2822: 16,-84
- 2823: 17,-84
- 2824: 18,-84
- 3083: 14,-77
- 3084: 15,-77
- 3085: 16,-77
3508: -12,-63
- node:
zIndex: 1
@@ -7222,6 +7392,10 @@ entities:
5971: -26,-70
5972: -25,-70
5973: -24,-70
+ 6060: 17,-78
+ 6061: 18,-78
+ 6062: 19,-78
+ 6171: -20,-84
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
@@ -7414,32 +7588,32 @@ entities:
-3,0:
0: 48113
-2,-4:
- 0: 48051
+ 0: 13235
-2,-3:
- 0: 63259
+ 0: 63251
-2,-2:
0: 52479
-2,-1:
0: 65520
-2,-5:
- 0: 62259
- 1: 128
+ 0: 13107
+ 1: 8
-1,-4:
- 0: 65520
+ 0: 62395
-1,-3:
- 0: 61695
+ 0: 61455
-1,-2:
0: 65535
-1,-1:
0: 65520
-1,-5:
- 0: 61678
+ 0: 65294
-1,0:
0: 56831
0,-4:
- 0: 65520
+ 0: 30438
0,-3:
- 0: 61567
+ 0: 61447
0,-2:
0: 65535
0,-1:
@@ -7501,16 +7675,16 @@ entities:
4,3:
0: 48027
0,-5:
- 0: 61491
- 1: 136
+ 0: 30467
+ 1: 8
1,-3:
0: 65358
1,-2:
0: 4607
- 1,-5:
- 0: 65256
1,-4:
0: 61166
+ 1,-5:
+ 0: 61160
2,-4:
0: 65535
2,-3:
@@ -7763,22 +7937,23 @@ entities:
-1,-8:
0: 36863
0,-7:
- 0: 13073
- 1: 12
+ 0: 28689
+ 1: 128
-1,-7:
- 0: 61132
+ 0: 63692
+ 1: 16
0,-6:
- 0: 13104
- 1: 34816
+ 0: 13111
+ 1: 32768
-1,-6:
- 0: 61152
+ 0: 61167
1,-8:
0: 4095
1,-7:
- 1: 4369
+ 1: 4368
0: 52428
1,-6:
- 1: 1
+ 1: 17
0: 52416
1,-9:
0: 12287
@@ -7800,10 +7975,10 @@ entities:
0: 8191
-2,-7:
0: 4369
- 1: 17472
+ 1: 17536
-2,-6:
0: 4369
- 1: 1092
+ 1: 35840
-1,-9:
0: 52701
-8,1:
@@ -7824,8 +7999,9 @@ entities:
0: 4369
1: 4
-9,3:
- 0: 4623
+ 0: 15
1: 9472
+ 3: 4608
-8,4:
0: 13073
-7,1:
@@ -8182,7 +8358,7 @@ entities:
0: 61166
-1,10:
1: 60928
- 0: 192
+ 3: 192
-1,11:
1: 14
0: 57344
@@ -8191,7 +8367,7 @@ entities:
0,9:
0: 65535
0,10:
- 0: 240
+ 3: 240
1: 65280
0,11:
1: 15
@@ -8202,10 +8378,12 @@ entities:
0: 56829
1,10:
1: 53504
- 0: 8396
+ 3: 8192
+ 0: 204
1,11:
1: 19549
- 0: 4130
+ 0: 4096
+ 3: 34
1,12:
0: 4369
1: 17476
@@ -8273,7 +8451,7 @@ entities:
1: 34952
10,7:
1: 33249
- 0: 3598
+ 3: 3598
9,8:
1: 34952
10,3:
@@ -8285,10 +8463,10 @@ entities:
11,6:
1: 40844
11,7:
- 0: 771
+ 3: 771
1: 35064
10,8:
- 0: 3598
+ 3: 3598
1: 33249
11,5:
0: 34956
@@ -8304,10 +8482,10 @@ entities:
1: 20293
12,7:
1: 33008
- 0: 3598
+ 3: 3598
11,8:
1: 35064
- 0: 771
+ 3: 771
9,0:
2: 15
0: 65296
@@ -8452,7 +8630,8 @@ entities:
0: 65520
-10,4:
1: 3
- 0: 60936
+ 3: 8
+ 0: 60928
-13,4:
0: 61432
-12,5:
@@ -8462,24 +8641,24 @@ entities:
-12,6:
1: 44868
-12,7:
- 0: 3855
+ 3: 3855
1: 16624
-13,7:
1: 17652
- 0: 257
+ 3: 257
-12,8:
- 0: 3855
+ 3: 3855
1: 16624
-11,5:
0: 4095
-11,6:
1: 18210
-11,7:
- 0: 257
+ 3: 257
1: 18006
-11,8:
1: 18006
- 0: 257
+ 3: 257
-10,5:
0: 61182
-10,6:
@@ -8510,19 +8689,19 @@ entities:
-14,6:
1: 44953
-14,7:
- 0: 3855
+ 3: 3855
1: 16624
-14,3:
0: 65535
-14,8:
- 0: 3855
+ 3: 3855
1: 16624
-13,6:
1: 57600
0: 1092
-13,8:
1: 17652
- 0: 257
+ 3: 257
-16,0:
0: 55807
-16,-1:
@@ -8758,10 +8937,10 @@ entities:
13,6:
1: 40866
13,7:
- 0: 771
+ 3: 771
1: 36024
12,8:
- 0: 3598
+ 3: 3598
1: 33008
14,5:
0: 3
@@ -8770,7 +8949,7 @@ entities:
1: 310
13,8:
1: 36028
- 0: 771
+ 3: 771
15,5:
1: 304
16,4:
@@ -8807,18 +8986,19 @@ entities:
18,2:
0: 65327
18,3:
- 0: 4111
+ 0: 15
1: 3840
+ 3: 4096
19,0:
1: 61455
19,1:
1: 36608
19,2:
1: 742
- 0: 8192
+ 3: 8192
19,3:
1: 226
- 0: 32768
+ 3: 32768
20,0:
1: 61715
20,1:
@@ -9351,7 +9531,7 @@ entities:
20,-15:
0: 24020
20,-14:
- 0: 54612
+ 0: 56660
20,-13:
0: 17885
21,-12:
@@ -9362,7 +9542,7 @@ entities:
21,-10:
0: 29040
21,-13:
- 0: 28791
+ 0: 28774
22,-12:
1: 4096
22,-11:
@@ -9376,7 +9556,7 @@ entities:
21,-15:
0: 32631
21,-14:
- 0: 30471
+ 0: 30215
21,-16:
1: 236
22,-16:
@@ -9452,7 +9632,7 @@ entities:
0: 15
16,-20:
1: 16
- 0: 52454
+ 3: 52454
15,-20:
1: 44719
16,-19:
@@ -9464,63 +9644,63 @@ entities:
0: 40960
1: 954
15,-18:
- 0: 142
- 1: 21248
+ 0: 234
+ 1: 20480
16,-21:
- 0: 16384
+ 3: 16384
1: 15
17,-20:
1: 144
- 0: 14178
+ 3: 14178
17,-19:
- 0: 1
+ 3: 1
1: 63744
17,-18:
1: 153
0: 61440
17,-21:
1: 8207
- 0: 16384
+ 3: 16384
18,-20:
1: 9910
- 0: 2056
+ 3: 2056
18,-19:
1: 13990
- 0: 2056
+ 3: 2056
18,-18:
0: 4096
1: 17486
18,-21:
1: 9895
- 0: 2056
+ 3: 2056
19,-20:
- 0: 3855
+ 3: 3855
1: 8432
19,-19:
- 0: 3855
+ 3: 3855
1: 20720
19,-18:
1: 17487
19,-21:
1: 8432
- 0: 3855
+ 3: 3855
20,-20:
1: 8946
- 0: 2056
+ 3: 2056
20,-19:
1: 8946
- 0: 2056
+ 3: 2056
20,-18:
1: 1839
0: 8192
20,-21:
1: 8946
- 0: 2056
+ 3: 2056
21,-20:
- 0: 3855
+ 3: 3855
1: 8432
21,-19:
- 0: 3855
+ 3: 3855
1: 20720
21,-18:
1: 21855
@@ -9528,7 +9708,7 @@ entities:
1: 5621
21,-21:
1: 8432
- 0: 3855
+ 3: 3855
22,-20:
1: 8995
22,-19:
@@ -9538,9 +9718,9 @@ entities:
22,-21:
1: 8995
12,-20:
- 1: 12288
+ 1: 12847
11,-20:
- 1: 61440
+ 1: 61455
12,-19:
1: 12002
11,-19:
@@ -9550,56 +9730,51 @@ entities:
0: 8192
11,-18:
0: 61695
- 13,-19:
- 1: 18417
13,-20:
1: 4401
- 13,-21:
- 1: 4369
+ 13,-19:
+ 1: 18417
13,-18:
1: 17476
14,-20:
- 0: 16
+ 3: 16
14,-19:
1: 241
15,-21:
1: 43694
8,-20:
- 0: 3
- 1: 68
+ 1: 13119
+ 8,-21:
+ 1: 12561
7,-20:
- 0: 63
- 1: 28672
- 8,-19:
1: 65535
+ 8,-19:
+ 1: 16179
7,-19:
1: 65535
8,-18:
- 1: 15
0: 35840
- 7,-18:
- 1: 8751
- 8,-21:
- 1: 16632
+ 9,-20:
+ 1: 4383
9,-19:
1: 6033
9,-18:
- 1: 1
0: 62912
- 9,-20:
- 1: 34944
+ 1: 1
+ 9,-21:
+ 1: 4371
10,-20:
- 1: 45056
- 0: 16384
+ 1: 58447
10,-19:
0: 65024
- 1: 5
+ 1: 7
10,-18:
0: 63743
4,-20:
0: 65535
4,-21:
- 0: 65287
+ 0: 65348
+ 3: 1
3,-20:
0: 65535
4,-19:
@@ -9607,41 +9782,44 @@ entities:
3,-19:
0: 65535
4,-18:
- 0: 61695
+ 0: 255
+ 1: 53248
3,-18:
- 0: 57599
+ 0: 255
+ 1: 49152
4,-17:
6: 30576
+ 5,-20:
+ 0: 65535
5,-19:
- 0: 65520
+ 0: 65535
5,-18:
- 0: 61455
+ 0: 15
+ 1: 57344
5,-17:
0: 30576
- 5,-20:
- 1: 58444
5,-21:
- 3: 57344
- 1: 3780
+ 0: 65280
+ 3: 15
6,-20:
- 1: 28675
- 0: 32904
+ 0: 30583
6,-19:
- 0: 30576
+ 0: 30583
6,-18:
- 0: 21575
+ 0: 17479
+ 1: 4096
6,-21:
- 3: 12288
- 0: 34824
- 1: 768
+ 0: 30502
6,-17:
0: 17476
6,-16:
0: 62532
+ 7,-18:
+ 1: 12834
7,-17:
1: 29766
7,-21:
- 0: 13203
+ 1: 61440
7,-16:
1: 1
0: 4096
@@ -9669,8 +9847,7 @@ entities:
-4,-19:
0: 65535
-5,-20:
- 0: 49152
- 1: 273
+ 0: 53521
-5,-19:
0: 56797
-4,-18:
@@ -9678,40 +9855,44 @@ entities:
-5,-18:
0: 57297
-3,-20:
- 0: 28748
+ 0: 28672
+ 3: 76
-3,-19:
0: 30711
-3,-18:
0: 65520
-3,-21:
- 0: 52430
+ 3: 52428
+ 1: 4353
-2,-20:
- 0: 3855
+ 3: 15
+ 0: 3840
-2,-19:
0: 65535
-2,-18:
0: 65535
-2,-21:
- 0: 61696
+ 3: 61696
1: 248
-1,-18:
0: 65534
-1,-21:
- 0: 61440
+ 3: 61440
1: 2296
-1,-20:
0: 61152
-1,-19:
0: 36590
0,-20:
- 0: 15160
+ 0: 15152
+ 3: 8
0,-19:
0: 35771
0,-18:
0: 65531
-8,-19:
0: 13104
- 1: 34824
+ 1: 34952
-9,-19:
0: 34944
1: 8192
@@ -9720,42 +9901,47 @@ entities:
1: 3072
-9,-17:
0: 36608
+ -7,-20:
+ 1: 15
+ 0: 60928
+ -7,-21:
+ 1: 13107
+ -7,-19:
+ 0: 3822
-7,-18:
0: 61166
- -7,-19:
- 1: 1024
+ -6,-20:
+ 1: 7
+ 0: 47872
+ -6,-19:
+ 0: 35771
-6,-18:
0: 49075
- -6,-19:
- 0: 36044
- -6,-20:
- 1: 1092
- -6,-21:
- 1: 17476
-5,-21:
- 1: 4369
+ 0: 4915
+ 1: 34824
-12,-16:
1: 20292
- 0: 10
+ 3: 10
-13,-16:
1: 20292
- 0: 10
+ 3: 10
-12,-15:
1: 17732
- 0: 43690
+ 3: 43690
-13,-15:
- 0: 43690
+ 3: 43690
1: 17732
-12,-14:
1: 49060
- 0: 10
+ 3: 10
-13,-14:
1: 65444
- 0: 10
+ 3: 10
-12,-13:
1: 62
-12,-17:
- 0: 43690
+ 3: 43690
1: 17732
-11,-16:
1: 8994
@@ -9780,7 +9966,7 @@ entities:
-13,-18:
1: 44800
-13,-17:
- 0: 43690
+ 3: 43690
1: 17732
-11,-18:
1: 8960
@@ -9789,10 +9975,11 @@ entities:
-9,-18:
1: 1811
0,-21:
- 0: 61440
+ 3: 61440
1: 248
1,-20:
- 0: 1799
+ 3: 7
+ 0: 1792
1,-19:
0: 65535
1,-18:
@@ -9800,25 +9987,26 @@ entities:
1,-17:
0: 4095
1,-21:
- 0: 64648
+ 3: 64648
1: 112
2,-20:
0: 43962
2,-19:
0: 49147
2,-18:
- 0: 62395
+ 0: 46011
2,-21:
- 0: 48059
+ 3: 13107
+ 0: 34816
+ 1: 8
3,-21:
- 0: 65295
+ 0: 65280
+ 3: 14
0,-24:
- 3: 61440
- 0: 3072
+ 3: 64512
1: 136
-1,-24:
- 3: 61440
- 0: 256
+ 3: 61696
1: 136
0,-23:
1: 35064
@@ -9827,32 +10015,32 @@ entities:
0,-22:
1: 35064
-1,-22:
- 0: 128
+ 3: 128
1: 34936
0,-25:
1: 36744
1,-24:
- 0: 768
- 3: 61440
+ 3: 62208
1: 136
1,-23:
1: 112
- 0: 34956
+ 3: 34956
1,-22:
1: 112
- 0: 34952
+ 3: 34952
1,-25:
1: 36736
2,-23:
- 0: 13073
+ 3: 13073
1: 52224
2,-22:
- 0: 4369
- 1: 1092
+ 3: 4369
+ 1: 36044
3,-23:
1: 61440
3,-22:
- 0: 61424
+ 1: 15
+ 3: 60928
3,-24:
1: 35939
3,-25:
@@ -9860,9 +10048,11 @@ entities:
4,-24:
1: 4096
4,-23:
- 1: 62563
+ 1: 64739
4,-22:
- 0: 30576
+ 1: 15
+ 3: 4352
+ 0: 58368
-4,-24:
1: 310
-5,-24:
@@ -9872,29 +10062,31 @@ entities:
-5,-23:
1: 53558
-4,-22:
- 1: 240
+ 1: 61680
-5,-22:
- 1: 4593
+ 1: 33777
0: 4
+ -4,-21:
+ 1: 65295
+ 3: 112
-4,-25:
1: 51200
-3,-23:
1: 4352
- 0: 52462
+ 3: 52462
-3,-22:
- 1: 16
- 0: 61132
+ 1: 4112
+ 3: 61132
-3,-24:
3: 32768
1: 136
-3,-25:
1: 36342
-2,-24:
- 0: 1792
- 3: 61440
+ 3: 63232
1: 136
-2,-23:
- 0: 1
+ 3: 1
1: 35064
-2,-22:
1: 35064
@@ -9903,123 +10095,64 @@ entities:
-1,-25:
1: 36744
5,-23:
- 1: 4096
- 0: 36044
+ 1: 61459
5,-22:
- 3: 3
- 1: 17632
+ 1: 15
+ 3: 65280
5,-24:
- 1: 32
- 0: 51208
- 5,-25:
- 0: 32768
- 1: 8804
+ 1: 62432
6,-24:
- 0: 47893
+ 1: 61680
6,-23:
- 0: 7099
+ 1: 61986
6,-22:
- 1: 16
- 0: 52428
- 6,-25:
- 0: 21847
+ 1: 231
+ 0: 57344
7,-24:
- 0: 47893
+ 1: 61680
7,-23:
- 0: 7099
+ 1: 61440
7,-22:
- 0: 32631
- 7,-25:
- 0: 21853
+ 1: 61712
8,-24:
- 0: 29459
- 1: 128
+ 1: 61680
8,-23:
- 0: 14199
+ 1: 4369
8,-22:
- 0: 13104
- 1: 34952
- 8,-25:
- 0: 12561
- 1: 35012
- 9,-21:
- 1: 15
- 10,-21:
- 1: 15
- 11,-21:
- 1: 15
- 12,-21:
- 1: 15
- 8,-29:
- 0: 4096
- 1: 34816
- 7,-28:
- 0: 65533
- 8,-28:
- 0: 8192
- 1: 8
- 8,-27:
- 0: 8738
- 8,-26:
- 0: 4371
- 1: 19592
- 8,-30:
- 1: 33
- 7,-30:
- 1: 8
- 7,-29:
- 0: 52735
- 5,-28:
- 1: 2
- 0: 32768
- 5,-29:
- 1: 8704
- 5,-27:
- 1: 8192
- 0: 34952
- 5,-26:
- 1: 17954
- 0: 8
- 6,-26:
- 0: 21845
- 6,-29:
- 0: 30446
- 6,-28:
- 0: 61158
- 6,-27:
- 0: 3264
- 7,-27:
- 0: 1905
- 7,-26:
- 0: 21845
- 5,-30:
- 1: 128
- 6,-30:
- 1: 3
- -6,-23:
+ 1: 63761
+ 9,-24:
+ 1: 4368
+ 9,-22:
+ 1: 31190
+ -7,-22:
1: 27776
-6,-22:
- 1: 49346
+ 1: 2547
+ -6,-23:
+ 1: 27776
+ -6,-21:
+ 1: 546
+ 0: 2184
-15,-16:
1: 23391
- 0: 1024
+ 3: 1024
-15,-15:
1: 34959
-15,-17:
1: 34952
-14,-16:
1: 20292
- 0: 10
+ 3: 10
-14,-15:
1: 21588
- 0: 43690
+ 3: 43690
-15,-14:
1: 2184
-14,-14:
1: 36772
- 0: 10
+ 3: 10
-14,-17:
- 0: 43690
+ 3: 43690
1: 21588
-15,-18:
1: 34816
@@ -10030,23 +10163,23 @@ entities:
-15,10:
1: 12
-14,9:
- 0: 3855
+ 3: 3855
1: 41200
-14,10:
1: 15
-13,9:
- 0: 257
+ 3: 257
1: 17652
-13,10:
1: 62901
- 0: 64
+ 3: 64
-12,9:
1: 41200
- 0: 3855
+ 3: 3855
-12,10:
1: 4383
-11,9:
- 0: 257
+ 3: 257
1: 18006
-11,10:
1: 7
@@ -10072,24 +10205,24 @@ entities:
1: 34952
10,9:
1: 16865
- 0: 3598
+ 3: 3598
9,10:
1: 8
10,10:
1: 15
11,9:
- 0: 771
+ 3: 771
1: 39160
11,10:
1: 60011
- 0: 128
+ 3: 128
12,9:
1: 16624
- 0: 3598
+ 3: 3598
12,10:
1: 12862
13,9:
- 0: 771
+ 3: 771
1: 40124
13,10:
1: 15
@@ -10107,7 +10240,7 @@ entities:
1: 32768
20,-22:
1: 10970
- 0: 32
+ 3: 32
19,-22:
1: 24456
21,-22:
@@ -10246,8 +10379,8 @@ entities:
id: docking46345
localAnchorB: -0.5,-1
localAnchorA: -66.5,22
- damping: 42.400932
- stiffness: 380.5899
+ damping: 42.40074
+ stiffness: 380.58823
- type: OccluderTree
- type: Shuttle
- type: RadiationGridResistance
@@ -10325,6 +10458,31 @@ entities:
- type: Transform
pos: -1.4590547,-61.356407
parent: 8364
+- proto: ActionToggleInternals
+ entities:
+ - uid: 25167
+ components:
+ - type: Transform
+ parent: 21419
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 21419
+ - uid: 25181
+ components:
+ - type: Transform
+ parent: 20121
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 20121
+- proto: ActionToggleLight
+ entities:
+ - uid: 16587
+ components:
+ - type: Transform
+ parent: 11756
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 11756
- proto: AirAlarm
entities:
- uid: 256
@@ -10339,8 +10497,72 @@ entities:
- 22993
- 22800
- 23146
+ - uid: 291
+ components:
+ - type: MetaData
+ name: Triage Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-27.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 27961
+ - 24712
+ - 24787
+ - 6211
+ - 5879
+ - 9811
+ - 5548
+ - uid: 835
+ components:
+ - type: MetaData
+ name: Artifact Lab South Air Alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-40.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25054
+ - 25859
+ - 6529
+ - 23316
+ - 24092
+ - 226
+ - 6468
+ - 6473
+ - 6474
+ - 19883
+ - 6489
+ - 6488
+ - uid: 1860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-82.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 23910
+ - uid: 3087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,-21.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 24524
+ - 24893
+ - 24892
+ - 24572
+ - 24785
+ - 27963
- uid: 3263
components:
+ - type: MetaData
+ name: Cryopods Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: 27.5,-35.5
@@ -10348,8 +10570,82 @@ entities:
- type: DeviceList
devices:
- 19113
- - 19123
- 19114
+ - 24815
+ - uid: 3656
+ components:
+ - type: MetaData
+ name: AI Core Air Alarm
+ - type: Transform
+ pos: 0.5,-15.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 26959
+ - 26674
+ - 26999
+ - uid: 4328
+ components:
+ - type: MetaData
+ name: Sci - North Hall Air Alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,-26.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 13368
+ - 13367
+ - 13365
+ - 13369
+ - 13370
+ - 13371
+ - 21762
+ - 22713
+ - 25170
+ - 21228
+ - 23256
+ - 25168
+ - 6459
+ - 5519
+ - 5518
+ - uid: 4329
+ components:
+ - type: MetaData
+ name: Sci - South Hall Air Alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,-44.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 5518
+ - 5519
+ - 6459
+ - 15346
+ - 23255
+ - 11761
+ - 6467
+ - 6464
+ - 6463
+ - 26974
+ - 22728
+ - 26987
+ - 5513
+ - 5512
+ - 5511
+ - uid: 5769
+ components:
+ - type: MetaData
+ name: Newsroom Air Alarm
+ - type: Transform
+ pos: -20.5,-8.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 27019
+ - 5768
+ - 4565
- uid: 6646
components:
- type: Transform
@@ -10360,6 +10656,54 @@ entities:
- 22640
- 24368
- 24373
+ - 24369
+ - 24371
+ - 1411
+ - 28236
+ - 24370
+ - 24372
+ - 24293
+ - 15127
+ - 15450
+ - 24296
+ - 24295
+ - 24294
+ - 24297
+ - 24292
+ - 15126
+ - 25318
+ - 24291
+ - 24298
+ - 11963
+ - 13469
+ - 22631
+ - 22632
+ - uid: 8150
+ components:
+ - type: MetaData
+ name: Boxing Ring Air Alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,7.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 8149
+ - 24401
+ - 20066
+ - 20068
+ - 24376
+ - 24377
+ - 26685
+ - uid: 8249
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 22748
+ - 22747
- uid: 10705
components:
- type: Transform
@@ -10425,6 +10769,29 @@ entities:
- 25307
- 25304
- 25305
+ - uid: 17159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 10.5,-68.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 23151
+ - 16977
+ - 5278
+ - 16627
+ - 5264
+ - 27403
+ - 27404
+ - 27405
+ - 10877
+ - 14117
+ - 17048
+ - 14124
+ - 17043
+ - 17156
+ - 16626
- uid: 17778
components:
- type: Transform
@@ -10437,10 +10804,12 @@ entities:
- 16975
- 16976
- 23000
- - 23010
- - 23011
+ - 16880
+ - 16882
- uid: 18773
components:
+ - type: MetaData
+ name: Engineering Outside Comms Air Alarm
- type: Transform
pos: -3.5,-50.5
parent: 8364
@@ -10452,9 +10821,34 @@ entities:
- 17087
- 26635
- 16853
- - 14486
- - 23068
- - 23067
+ - 23774
+ - 781
+ - 14501
+ - uid: 19344
+ components:
+ - type: Transform
+ pos: -43.5,-3.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25364
+ - 25367
+ - 25366
+ - 25365
+ - 1311
+ - 14226
+ - 16155
+ - 15139
+ - uid: 19773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -55.5,4.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25325
+ - 25324
- uid: 20630
components:
- type: Transform
@@ -10469,28 +10863,6 @@ entities:
- type: Transform
pos: 63.5,-11.5
parent: 8364
- - type: DeviceList
- devices:
- - 19992
- - 19991
- - 19993
- - 26804
- - 26805
- - 26806
- - 24919
- - 24921
- - 13380
- - 13379
- - 13378
- - 13362
- - 13363
- - 22690
- - 13391
- - 13390
- - 13389
- - 10521
- - 10523
- - 22691
- uid: 22563
components:
- type: Transform
@@ -10554,9 +10926,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 23261
- - 22587
- - 16789
+ - 17208
+ - 25092
+ - 747
- uid: 22589
components:
- type: Transform
@@ -10564,12 +10936,21 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 22591
- 6917
- 9826
- 9825
- - 23948
- - 23947
+ - 23071
+ - 783
+ - 23218
+ - 17571
+ - 28206
+ - 28205
+ - 7277
+ - 8080
+ - 8110
+ - 1652
+ - 16943
+ - 1672
- uid: 22594
components:
- type: Transform
@@ -10616,19 +10997,10 @@ entities:
- 22598
- 24240
- 24239
- - uid: 22600
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -5.5,-13.5
- parent: 8364
- - type: DeviceList
- devices:
- - 22601
- - 24187
- - 24188
- uid: 22603
components:
+ - type: MetaData
+ name: Bridge Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: -2.5,-9.5
@@ -10654,9 +11026,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 24217
- - 24224
- 22613
+ - 23856
+ - 20029
- uid: 22614
components:
- type: Transform
@@ -10753,6 +11125,8 @@ entities:
- 24110
- uid: 22641
components:
+ - type: MetaData
+ name: Bar Air Alarm
- type: Transform
pos: 25.5,1.5
parent: 8364
@@ -10760,21 +11134,21 @@ entities:
devices:
- 22645
- 22646
- - 22647
- - 24436
- - uid: 22642
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-11.5
- parent: 8364
- - type: DeviceList
- devices:
- - 22645
- - 22646
- - 22647
- - 24436
- - 27233
+ - 25964
+ - 279
+ - 24444
+ - 24459
+ - 25959
+ - 25963
+ - 25958
+ - 25960
+ - 25961
+ - 25962
+ - 24441
+ - 27966
+ - 24435
+ - 24462
+ - 24471
- uid: 22649
components:
- type: Transform
@@ -10783,9 +11157,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 24494
- 24493
- 22648
+ - 24898
- uid: 22650
components:
- type: Transform
@@ -10816,8 +11190,10 @@ entities:
- 22657
- 10452
- 24916
- - 24914
- - 24917
+ - 27939
+ - 24638
+ - 27936
+ - 27941
- uid: 22659
components:
- type: Transform
@@ -10830,14 +11206,14 @@ entities:
- 13385
- 22645
- 22646
- - 2940
- - 14093
- - 14208
- 14220
- - 14094
- - 11725
- 11719
- - 22658
+ - 11725
+ - 14094
+ - 23086
+ - 22749
+ - 824
+ - 27992
- 13391
- 13390
- 13389
@@ -10845,8 +11221,13 @@ entities:
- 13381
- 13383
- 13384
- - 24586
- - 24585
+ - 27991
+ - 22758
+ - 23876
+ - 23251
+ - 23087
+ - 14208
+ - 14093
- uid: 22661
components:
- type: Transform
@@ -10860,8 +11241,8 @@ entities:
- 14149
- 22663
- 19972
- - 24599
- 24610
+ - 24644
- uid: 22665
components:
- type: Transform
@@ -10875,45 +11256,31 @@ entities:
- 14093
- 14208
- 14220
- - 22666
- 14094
- 11725
- 11719
- - 24584
- 24581
- 24583
- 24582
- - uid: 22667
- components:
- - type: Transform
- pos: 40.5,-21.5
- parent: 8364
- - type: DeviceList
- devices:
- - 21773
- - 21774
- - 5548
- - 9811
- - 18680
- - 18682
- - 22668
- - 24587
- - 24588
+ - 27962
+ - 24783
- uid: 22670
components:
+ - type: MetaData
+ name: Emergency Room Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: 33.5,-31.5
parent: 8364
- type: DeviceList
devices:
- - 8002
- - 5547
+ - 22672
+ - 27959
+ - 27960
- 6211
- 5879
- - 22672
- - 24712
- - 24705
+ - 5547
+ - 8002
- uid: 22673
components:
- type: Transform
@@ -10926,6 +11293,8 @@ entities:
- 24746
- uid: 22676
components:
+ - type: MetaData
+ name: Medical Staff Hallway Air Alarm
- type: Transform
pos: 37.5,-30.5
parent: 8364
@@ -10953,14 +11322,8 @@ entities:
- 5546
- 7993
- 22681
- - 24813
- - 24814
- - 24812
- - 24815
- 24811
- 24816
- - 24775
- - 24778
- 24776
- 24777
- uid: 22684
@@ -10988,12 +11351,9 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 13380
- - 13379
- - 13378
- - 13362
- - 13363
- - 22690
+ - 26804
+ - 26805
+ - 26806
- 13391
- 13390
- 13389
@@ -11002,8 +11362,8 @@ entities:
- 22691
- 24920
- 24918
- - 24921
- - 24919
+ - 26039
+ - 26038
- uid: 22694
components:
- type: Transform
@@ -11015,23 +11375,25 @@ entities:
- 13380
- 13379
- 13378
- - 22697
- - 22696
- - 22695
- - 24246
- - 24245
+ - 5927
+ - 827
+ - 5928
- 19992
- 19991
- 19993
+ - 23122
+ - 26036
+ - 26037
- uid: 22699
components:
+ - type: MetaData
+ name: Chapel Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: 64.5,-6.5
parent: 8364
- type: DeviceList
devices:
- - 22700
- 24930
- 24931
- 20899
@@ -11042,6 +11404,9 @@ entities:
- 21540
- 21542
- 21541
+ - 5730
+ - 5463
+ - 7176
- uid: 22701
components:
- type: Transform
@@ -11052,6 +11417,9 @@ entities:
- 24967
- 24968
- 22702
+ - 5748
+ - 5735
+ - 5740
- uid: 22703
components:
- type: Transform
@@ -11060,8 +11428,8 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 5382
- - 5383
+ - 7098
+ - 7133
- 22704
- 21543
- 21544
@@ -11071,8 +11439,15 @@ entities:
- 21542
- 21539
- 21540
+ - 4537
+ - 25986
+ - 26691
+ - 22731
+ - 8142
- uid: 22706
components:
+ - type: MetaData
+ name: Robotics Air Alarm
- type: Transform
pos: 56.5,-21.5
parent: 8364
@@ -11083,31 +11458,13 @@ entities:
- 13364
- 25116
- 25115
- - uid: 22714
- components:
- - type: Transform
- pos: 60.5,-25.5
- parent: 8364
- - type: DeviceList
- devices:
- - 13365
- - 13367
- - 13368
- - 13369
- - 13370
- - 13371
- - 22713
- - 5519
- - 5518
- - 6459
- - 25170
- - 25171
- - 25168
- - 25169
- - 25136
- - 25131
+ - 27880
+ - 27703
+ - 26973
- uid: 22715
components:
+ - type: MetaData
+ name: R&D Air Alarm
- type: Transform
rot: -1.5707963267948966 rad
pos: 75.5,-19.5
@@ -11117,12 +11474,17 @@ entities:
- 13371
- 13370
- 13369
- - 22717
+ - 27425
- 13362
- 25069
- - 25072
+ - 27204
+ - 20289
+ - 23885
+ - 27202
- uid: 22718
components:
+ - type: MetaData
+ name: Artifact Lab North Air Alarm
- type: Transform
pos: 79.5,-22.5
parent: 8364
@@ -11139,11 +11501,13 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 25167
- - 25165
- 22720
+ - 27311
+ - 25506
- uid: 22723
components:
+ - type: MetaData
+ name: Artifact Chamber Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: 75.5,-39.5
@@ -11151,35 +11515,6 @@ entities:
- type: DeviceList
devices:
- 22722
- - uid: 22726
- components:
- - type: Transform
- pos: 73.5,-42.5
- parent: 8364
- - type: DeviceList
- devices:
- - 6468
- - 6473
- - 6474
- - 6488
- - 6489
- - 19883
- - 22725
- - 25261
- - 25260
- - uid: 22732
- components:
- - type: Transform
- pos: 62.5,-38.5
- parent: 8364
- - type: DeviceList
- devices:
- - 25223
- - 25224
- - 25241
- - 25242
- - 22733
- - 22731
- uid: 22734
components:
- type: Transform
@@ -11218,9 +11553,12 @@ entities:
- 5511
- 5512
- 5513
- - 1479
- - 25206
- - 25207
+ - 4406
+ - 4461
+ - 746
+ - 4403
+ - 4404
+ - 4460
- uid: 22956
components:
- type: Transform
@@ -11254,21 +11592,23 @@ entities:
- 24010
- 24011
- 24012
- - uid: 22970
+ - uid: 23133
components:
+ - type: MetaData
+ name: PA West Air Alarm
- type: Transform
- pos: -37.5,-3.5
+ rot: 1.5707963267948966 rad
+ pos: -8.5,-75.5
parent: 8364
- type: DeviceList
devices:
- - 25364
- - 25367
- - 25366
- - 25365
- - 1311
- - 14226
- - 16155
- - 15139
+ - 23131
+ - 23259
+ - 22003
+ - 10877
+ - 27405
+ - 27404
+ - 27403
- uid: 23262
components:
- type: Transform
@@ -11359,6 +11699,18 @@ entities:
- 25420
- 25422
- 25421
+ - uid: 23899
+ components:
+ - type: MetaData
+ name: Toxins Room Air Alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-37.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25164
+ - 25166
- uid: 23938
components:
- type: Transform
@@ -11371,12 +11723,15 @@ entities:
- 11600
- 11377
- 11603
- - 23939
- 23940
- 25488
- 25487
- 25518
- 25519
+ - 26931
+ - 591
+ - 23258
+ - 21999
- uid: 23943
components:
- type: Transform
@@ -11413,6 +11768,15 @@ entities:
- 7357
- 25557
- 25560
+ - uid: 24632
+ components:
+ - type: Transform
+ pos: 35.5,-44.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 24634
+ - 24635
- uid: 24766
components:
- type: Transform
@@ -11423,6 +11787,17 @@ entities:
- 25800
- 24915
- 25804
+ - 27933
+ - uid: 24812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-39.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 24896
+ - 24790
- uid: 24987
components:
- type: Transform
@@ -11437,6 +11812,20 @@ entities:
- 8934
- 25762
- 25759
+ - uid: 25225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-75.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 27274
+ - 26051
+ - 738
+ - 27210
+ - 26034
+ - 27167
- uid: 25234
components:
- type: Transform
@@ -11504,8 +11893,8 @@ entities:
- type: DeviceList
devices:
- 25375
- - 25479
- - 25486
+ - 23905
+ - 21996
- uid: 25825
components:
- type: Transform
@@ -11513,20 +11902,19 @@ entities:
parent: 8364
- type: DeviceList
devices:
+ - 11722
+ - 22237
+ - 7043
+ - 7180
+ - 7078
- 14167
- 14343
- - 2944
- 14342
- - 7078
- - 7180
- - 7043
- - 25827
- - 25826
- - 25316
- - 25317
- - 25318
- - 25315
- - 11722
+ - 2944
+ - 1416
+ - 16625
+ - 19169
+ - 22690
- uid: 25833
components:
- type: Transform
@@ -11564,6 +11952,8 @@ entities:
- 25337
- uid: 25915
components:
+ - type: MetaData
+ name: Surgery Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: 20.5,-37.5
@@ -11571,10 +11961,12 @@ entities:
- type: DeviceList
devices:
- 25914
- - 24707
- - 24711
+ - 24599
+ - 24603
- uid: 26703
components:
+ - type: MetaData
+ name: PA Air Alarm
- type: Transform
rot: 1.5707963267948966 rad
pos: -3.5,-76.5
@@ -11582,10 +11974,12 @@ entities:
- type: DeviceList
devices:
- 26694
- - 26695
- 26702
+ - 23906
- uid: 26704
components:
+ - type: MetaData
+ name: AME Air Alarm
- type: Transform
pos: -17.5,-71.5
parent: 8364
@@ -11593,7 +11987,7 @@ entities:
devices:
- 26698
- 26693
- - 26697
+ - 662
- uid: 26707
components:
- type: Transform
@@ -11601,11 +11995,17 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 5463
- - 5462
- - 1860
+ - 23556
+ - 27531
+ - 26032
+ - 5264
+ - 16627
+ - 5278
+ - 5277
- uid: 26908
components:
+ - type: MetaData
+ name: PA East Air Alarm
- type: Transform
rot: 3.141592653589793 rad
pos: 7.5,-76.5
@@ -11613,8 +12013,111 @@ entities:
- type: DeviceList
devices:
- 26701
- - 23177
- - 23179
+ - 25231
+ - 14502
+ - uid: 26989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-82.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 23147
+ - uid: 27150
+ components:
+ - type: MetaData
+ name: Breakroom Air Alarm
+ - type: Transform
+ pos: 55.5,-38.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 27198
+ - 847
+ - 27197
+ - 27879
+ - 27878
+ - 27875
+ - uid: 27881
+ components:
+ - type: Transform
+ pos: 57.5,-25.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 25136
+ - 25131
+ - 5235
+ - 5236
+ - 151
+ - uid: 27964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-26.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 2782
+ - 19972
+ - 21773
+ - 21774
+ - 27944
+ - 27947
+ - 27945
+ - uid: 27965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-25.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 18680
+ - 18682
+ - 27948
+ - 27949
+ - 24729
+ - 24587
+ - 22668
+ - 24588
+ - 9811
+ - 5548
+ - 21773
+ - 21774
+ - uid: 28154
+ components:
+ - type: MetaData
+ name: AI Upload Air Alarm
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 3860
+ - 4557
+ - 28193
+ - 28194
+ - uid: 28227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-54.5
+ parent: 8364
+ - type: DeviceList
+ devices:
+ - 28234
+ - 28222
+ - 16918
+ - 23088
+ - 28235
+ - 23090
+ - 28224
+ - 28230
+ - 28231
+ - 28223
+ - 28233
- proto: AirCanister
entities:
- uid: 444
@@ -11722,16 +12225,6 @@ entities:
- type: Transform
pos: -21.5,51.5
parent: 8364
- - uid: 27150
- components:
- - type: Transform
- pos: 22.5,-89.5
- parent: 8364
- - uid: 27151
- components:
- - type: Transform
- pos: 24.5,-88.5
- parent: 8364
- uid: 27213
components:
- type: Transform
@@ -12022,11 +12515,6 @@ entities:
parent: 8364
- proto: AirlockCaptainLocked
entities:
- - uid: 1152
- components:
- - type: Transform
- pos: -50.5,-3.5
- parent: 8364
- uid: 5692
components:
- type: MetaData
@@ -12048,20 +12536,6 @@ entities:
- type: Transform
pos: 9.5,-20.5
parent: 8364
- - uid: 8143
- components:
- - type: MetaData
- name: Captain Chunnel
- - type: Transform
- pos: -5.5,-16.5
- parent: 8364
- - uid: 8144
- components:
- - type: MetaData
- name: Captain Chunnel
- - type: Transform
- pos: 4.5,-16.5
- parent: 8364
- uid: 10734
components:
- type: MetaData
@@ -12162,6 +12636,8 @@ entities:
entities:
- uid: 2216
components:
+ - type: MetaData
+ name: CE's Office
- type: Transform
pos: -6.5,-66.5
parent: 8364
@@ -12184,11 +12660,6 @@ entities:
parent: 8364
- proto: AirlockCommandGlassLocked
entities:
- - uid: 854
- components:
- - type: Transform
- pos: 28.5,-107.5
- parent: 8364
- uid: 5514
components:
- type: MetaData
@@ -12219,6 +12690,8 @@ entities:
parent: 8364
- uid: 5651
components:
+ - type: MetaData
+ name: EVA Entrance
- type: Transform
pos: -11.5,0.5
parent: 8364
@@ -12229,38 +12702,28 @@ entities:
parent: 8364
- proto: AirlockCommandLocked
entities:
- - uid: 5619
+ - uid: 647
components:
- type: MetaData
- name: Briefing
- - type: Transform
- pos: -7.5,-10.5
- parent: 8364
- - uid: 6597
- components:
- - type: Transform
- pos: 28.5,-88.5
- parent: 8364
- - uid: 6598
- components:
- - type: Transform
- pos: 28.5,-94.5
- parent: 8364
- - uid: 6599
- components:
+ name: AI Upload
- type: Transform
- pos: 28.5,-82.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-25.5
parent: 8364
- - uid: 16621
+ - uid: 5619
components:
+ - type: MetaData
+ name: Briefing
- type: Transform
- pos: 10.5,-68.5
+ pos: -7.5,-10.5
parent: 8364
- - uid: 16631
+ - uid: 27816
components:
+ - type: MetaData
+ name: AI Entrance
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,-85.5
+ pos: -0.5,-28.5
parent: 8364
- proto: AirlockDetectiveGlassLocked
entities:
@@ -12369,13 +12832,6 @@ entities:
parent: 8364
- proto: AirlockEngineeringLocked
entities:
- - uid: 576
- components:
- - type: MetaData
- name: Shuttle Construction
- - type: Transform
- pos: -66.5,11.5
- parent: 8364
- uid: 799
components:
- type: MetaData
@@ -12383,6 +12839,11 @@ entities:
- type: Transform
pos: 42.5,4.5
parent: 8364
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: -50.5,-3.5
+ parent: 8364
- uid: 1673
components:
- type: Transform
@@ -12402,6 +12863,8 @@ entities:
parent: 8364
- uid: 4683
components:
+ - type: MetaData
+ name: PA
- type: Transform
pos: -0.5,-72.5
parent: 8364
@@ -12450,11 +12913,6 @@ entities:
- type: Transform
pos: -30.5,-65.5
parent: 8364
- - uid: 15875
- components:
- - type: Transform
- pos: 12.5,-83.5
- parent: 8364
- uid: 16101
components:
- type: MetaData
@@ -12471,6 +12929,8 @@ entities:
parent: 8364
- uid: 16146
components:
+ - type: MetaData
+ name: Gravity & Anchor
- type: Transform
pos: -19.5,-71.5
parent: 8364
@@ -12505,11 +12965,6 @@ entities:
- type: Transform
pos: 10.5,-73.5
parent: 8364
- - uid: 17671
- components:
- - type: Transform
- pos: 11.5,-82.5
- parent: 8364
- uid: 18303
components:
- type: MetaData
@@ -12517,13 +12972,6 @@ entities:
- type: Transform
pos: 47.5,-40.5
parent: 8364
- - uid: 18681
- components:
- - type: MetaData
- name: Gravity Gen
- - type: Transform
- pos: -0.5,-28.5
- parent: 8364
- uid: 19984
components:
- type: MetaData
@@ -12536,6 +12984,13 @@ entities:
- type: Transform
pos: -20.5,-67.5
parent: 8364
+ - uid: 27794
+ components:
+ - type: MetaData
+ name: Station Anchor
+ - type: Transform
+ pos: -19.5,-79.5
+ parent: 8364
- proto: AirlockExternal
entities:
- uid: 431
@@ -12595,8 +13050,6 @@ entities:
- type: Transform
pos: 91.5,-29.5
parent: 8364
- - type: DeviceLinkSink
- invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
5209:
@@ -12649,10 +13102,14 @@ entities:
- type: Transform
pos: 23.5,-60.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
3852:
- DoorStatus: DoorBolt
+ 3707:
+ - DoorStatus: Close
- proto: AirlockExternalGlassCargoLocked
entities:
- uid: 7010
@@ -12685,16 +13142,86 @@ entities:
parent: 8364
- proto: AirlockExternalGlassEngineeringLocked
entities:
+ - uid: 2905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-82.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3601:
+ - DoorStatus: DoorBolt
+ 4365:
+ - DoorStatus: DoorBolt
+ - uid: 3601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-84.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4365:
+ - DoorStatus: DoorBolt
+ 2905:
+ - DoorStatus: DoorBolt
- uid: 3707
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 26.5,-61.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 3
- type: DeviceLinkSource
linkedPorts:
3852:
- DoorStatus: DoorBolt
+ 3858:
+ - DoorStatus: Close
+ - uid: 4365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 17.5,-84.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3601:
+ - DoorStatus: DoorBolt
+ 2905:
+ - DoorStatus: DoorBolt
+ - uid: 11754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-82.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14105:
+ - DoorStatus: DoorBolt
+ - uid: 14105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-84.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 11754:
+ - DoorStatus: DoorBolt
- uid: 14448
components:
- type: Transform
@@ -12739,8 +13266,17 @@ entities:
linkedPorts:
508:
- DoorStatus: DoorBolt
+ - uid: 594
+ components:
+ - type: MetaData
+ name: Shuttle Building Supplies
+ - type: Transform
+ pos: -66.5,11.5
+ parent: 8364
- uid: 1495
components:
+ - type: MetaData
+ name: Shuttle Airlock
- type: Transform
pos: -66.5,19.5
parent: 8364
@@ -12766,6 +13302,17 @@ entities:
linkedPorts:
9810:
- DoorStatus: DoorBolt
+ - uid: 11795
+ components:
+ - type: Transform
+ pos: 62.5,-70.5
+ parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19987:
+ - DoorStatus: DoorBolt
- uid: 12466
components:
- type: Transform
@@ -12820,15 +13367,6 @@ entities:
linkedPorts:
19366:
- DoorStatus: DoorBolt
- - uid: 19857
- components:
- - type: Transform
- pos: 62.5,-71.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 19987:
- - DoorStatus: DoorBolt
- uid: 19988
components:
- type: Transform
@@ -12947,11 +13485,6 @@ entities:
linkedPorts:
22633:
- DoorStatus: DoorBolt
- - uid: 6600
- components:
- - type: Transform
- pos: 30.5,-79.5
- parent: 8364
- uid: 9810
components:
- type: Transform
@@ -13020,9 +13553,11 @@ entities:
- type: Transform
pos: 61.5,-72.5
parent: 8364
+ - type: DeviceLinkSink
+ invokeCounter: 1
- type: DeviceLinkSource
linkedPorts:
- 19857:
+ 11795:
- DoorStatus: DoorBolt
- uid: 19989
components:
@@ -13042,11 +13577,6 @@ entities:
linkedPorts:
5626:
- DoorStatus: DoorBolt
- - uid: 27848
- components:
- - type: Transform
- pos: 33.5,-79.5
- parent: 8364
- proto: AirlockExternalShuttleLocked
entities:
- uid: 593
@@ -13160,7 +13690,7 @@ entities:
pos: 24.5,16.5
parent: 8364
- type: Door
- secondsUntilStateChange: -37852.17
+ secondsUntilStateChange: -78641.14
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -13333,11 +13863,6 @@ entities:
- type: Transform
pos: -31.5,13.5
parent: 8364
- - uid: 13474
- components:
- - type: Transform
- pos: -19.5,-11.5
- parent: 8364
- uid: 14311
components:
- type: MetaData
@@ -13559,6 +14084,8 @@ entities:
entities:
- uid: 12024
components:
+ - type: MetaData
+ name: EVA Gear
- type: Transform
pos: -11.5,5.5
parent: 8364
@@ -13689,11 +14216,6 @@ entities:
parent: 8364
- proto: AirlockMaintCaptainLocked
entities:
- - uid: 1154
- components:
- - type: Transform
- pos: -50.5,-9.5
- parent: 8364
- uid: 2380
components:
- type: Transform
@@ -13775,6 +14297,11 @@ entities:
parent: 8364
- proto: AirlockMaintEngiLocked
entities:
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: -50.5,-9.5
+ parent: 8364
- uid: 6310
components:
- type: Transform
@@ -13870,16 +14397,6 @@ entities:
- type: Transform
pos: 41.5,11.5
parent: 8364
- - uid: 783
- components:
- - type: Transform
- pos: 25.5,-99.5
- parent: 8364
- - uid: 784
- components:
- - type: Transform
- pos: 31.5,-99.5
- parent: 8364
- uid: 1518
components:
- type: Transform
@@ -13924,16 +14441,6 @@ entities:
- type: Transform
pos: -33.5,-52.5
parent: 8364
- - uid: 4966
- components:
- - type: Transform
- pos: 24.5,-94.5
- parent: 8364
- - uid: 4967
- components:
- - type: Transform
- pos: 32.5,-94.5
- parent: 8364
- uid: 6407
components:
- type: Transform
@@ -14050,13 +14557,6 @@ entities:
- type: Transform
pos: -30.5,-3.5
parent: 8364
- - uid: 14421
- components:
- - type: MetaData
- name: Vacant Office B Maintenance
- - type: Transform
- pos: -25.5,-12.5
- parent: 8364
- uid: 15303
components:
- type: Transform
@@ -14255,6 +14755,16 @@ entities:
- type: Transform
pos: 18.5,30.5
parent: 8364
+- proto: AirlockMaintServiceLocked
+ entities:
+ - uid: 688
+ components:
+ - type: MetaData
+ name: Newsroom Maintenance
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -25.5,-12.5
+ parent: 8364
- proto: AirlockMedicalGlassLocked
entities:
- uid: 1791
@@ -14763,6 +15273,14 @@ entities:
parent: 8364
- proto: AirlockServiceGlassLocked
entities:
+ - uid: 742
+ components:
+ - type: MetaData
+ name: Newsroom Entrance
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-11.5
+ parent: 8364
- uid: 9841
components:
- type: Transform
@@ -14842,6 +15360,70 @@ entities:
parent: 8364
- proto: AirSensor
entities:
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 61.5,-27.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 77.5,-37.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 1.5,20.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23938
+ - uid: 738
+ components:
+ - type: Transform
+ pos: -24.5,-77.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - uid: 781
+ components:
+ - type: Transform
+ pos: -1.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 18773
+ - uid: 782
+ components:
+ - type: Transform
+ pos: 70.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - uid: 783
+ components:
+ - type: Transform
+ pos: -6.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 57.5,-40.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
- uid: 1311
components:
- type: Transform
@@ -14849,25 +15431,92 @@ entities:
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22970
- - uid: 1479
+ - 19344
+ - uid: 1411
components:
- type: Transform
- pos: 69.5,-52.5
+ pos: 12.5,15.5
parent: 8364
- - uid: 1860
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
+ - uid: 4406
components:
- type: Transform
- pos: -11.5,-68.5
+ pos: 68.5,-51.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 26707
- - uid: 14486
+ - 22954
+ - uid: 4460
components:
- type: Transform
- pos: -0.5,-55.5
+ pos: 76.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - uid: 4537
+ components:
+ - type: Transform
+ pos: 63.5,-6.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
+ - uid: 5450
+ components:
+ - type: Transform
+ pos: -61.5,-2.5
parent: 8364
+ - uid: 5740
+ components:
+ - type: Transform
+ pos: 69.5,4.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22701
+ - uid: 6529
+ components:
+ - type: Transform
+ pos: 79.5,-45.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - uid: 7176
+ components:
+ - type: Transform
+ pos: 69.5,-2.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22699
+ - uid: 9450
+ components:
+ - type: Transform
+ pos: 58.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - uid: 15126
+ components:
+ - type: Transform
+ pos: 5.5,9.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
+ - uid: 15127
+ components:
+ - type: Transform
+ pos: 5.5,12.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 15139
components:
- type: Transform
@@ -14875,7 +15524,31 @@ entities:
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22970
+ - 19344
+ - uid: 15450
+ components:
+ - type: Transform
+ pos: 5.5,15.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
+ - uid: 17048
+ components:
+ - type: Transform
+ pos: -5.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
+ - uid: 17156
+ components:
+ - type: Transform
+ pos: 6.5,-68.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
- uid: 17593
components:
- type: Transform
@@ -14901,11 +15574,22 @@ entities:
- type: Transform
pos: 15.5,-51.5
parent: 8364
- - uid: 20898
+ - uid: 21999
components:
- type: Transform
- pos: 63.5,-13.5
+ pos: 10.5,20.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23938
+ - uid: 22237
+ components:
+ - type: Transform
+ pos: -54.5,-1.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 22561
components:
- type: Transform
@@ -14914,7 +15598,6 @@ entities:
- uid: 22571
components:
- type: Transform
- rot: 1.5707963267948966 rad
pos: 13.5,-47.5
parent: 8364
- uid: 22572
@@ -14927,14 +15610,6 @@ entities:
- type: Transform
pos: -23.5,-67.5
parent: 8364
- - type: DeviceNetwork
- deviceLists:
- - 22588
- - uid: 22591
- components:
- - type: Transform
- pos: -3.5,-30.5
- parent: 8364
- uid: 22593
components:
- type: Transform
@@ -14950,11 +15625,6 @@ entities:
- type: Transform
pos: -7.5,-17.5
parent: 8364
- - uid: 22601
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 8364
- uid: 22602
components:
- type: Transform
@@ -15015,11 +15685,6 @@ entities:
- type: Transform
pos: 10.5,10.5
parent: 8364
- - uid: 22647
- components:
- - type: Transform
- pos: 26.5,-9.5
- parent: 8364
- uid: 22648
components:
- type: Transform
@@ -15035,31 +15700,27 @@ entities:
- type: Transform
pos: 45.5,-7.5
parent: 8364
- - uid: 22658
- components:
- - type: Transform
- pos: 30.5,-13.5
- parent: 8364
- uid: 22663
components:
- type: Transform
pos: 20.5,-21.5
parent: 8364
- - uid: 22666
- components:
- - type: Transform
- pos: 28.5,-17.5
- parent: 8364
- uid: 22668
components:
- type: Transform
pos: 30.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- uid: 22672
components:
- type: Transform
pos: 31.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
- uid: 22674
components:
- type: Transform
@@ -15090,26 +15751,11 @@ entities:
- type: Transform
pos: 40.5,-57.5
parent: 8364
- - uid: 22690
- components:
- - type: Transform
- pos: 66.5,-13.5
- parent: 8364
- uid: 22691
components:
- type: Transform
pos: 48.5,-13.5
parent: 8364
- - uid: 22697
- components:
- - type: Transform
- pos: 78.5,-12.5
- parent: 8364
- - uid: 22700
- components:
- - type: Transform
- pos: 72.5,-10.5
- parent: 8364
- uid: 22702
components:
- type: Transform
@@ -15130,11 +15776,10 @@ entities:
- type: Transform
pos: 66.5,-24.5
parent: 8364
- - uid: 22717
- components:
- - type: Transform
- pos: 73.5,-23.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 22719
components:
- type: Transform
@@ -15150,31 +15795,35 @@ entities:
- type: Transform
pos: 72.5,-40.5
parent: 8364
- - uid: 22725
- components:
- - type: Transform
- pos: 77.5,-45.5
- parent: 8364
- uid: 22728
components:
- type: Transform
pos: 66.5,-45.5
parent: 8364
- - uid: 22731
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
+ - uid: 22742
components:
- type: Transform
- pos: 67.5,-39.5
+ pos: 55.5,-30.5
parent: 8364
- - uid: 22733
+ - uid: 22749
components:
- type: Transform
- pos: 54.5,-39.5
+ pos: 30.5,-13.5
parent: 8364
- - uid: 22742
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
+ - uid: 22758
components:
- type: Transform
- pos: 55.5,-30.5
+ pos: 22.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 22957
components:
- type: Transform
@@ -15195,6 +15844,47 @@ entities:
- type: Transform
pos: -27.5,-1.5
parent: 8364
+ - uid: 23131
+ components:
+ - type: Transform
+ pos: -6.5,-75.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23133
+ - uid: 23147
+ components:
+ - type: Transform
+ pos: 22.5,-84.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26989
+ - uid: 23251
+ components:
+ - type: Transform
+ pos: 37.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
+ - uid: 23255
+ components:
+ - type: Transform
+ pos: 66.5,-39.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
+ - uid: 23256
+ components:
+ - type: Transform
+ pos: 66.5,-32.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 23264
components:
- type: Transform
@@ -15215,25 +15905,44 @@ entities:
- type: Transform
pos: -11.5,8.5
parent: 8364
+ - uid: 23556
+ components:
+ - type: Transform
+ pos: -13.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26707
- uid: 23696
components:
- type: Transform
pos: -4.5,6.5
parent: 8364
+ - uid: 23885
+ components:
+ - type: Transform
+ pos: 71.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
- uid: 23903
components:
- type: Transform
pos: -0.5,6.5
parent: 8364
- - uid: 23935
+ - uid: 23910
components:
- type: Transform
- pos: -0.5,15.5
+ pos: 14.5,-84.5
parent: 8364
- - uid: 23939
+ - type: DeviceNetwork
+ deviceLists:
+ - 1860
+ - uid: 23935
components:
- type: Transform
- pos: 7.5,20.5
+ pos: -0.5,15.5
parent: 8364
- uid: 23940
components:
@@ -15250,6 +15959,30 @@ entities:
- type: Transform
pos: -3.5,27.5
parent: 8364
+ - uid: 24435
+ components:
+ - type: Transform
+ pos: 21.5,2.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - uid: 24459
+ components:
+ - type: Transform
+ pos: 23.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - uid: 24892
+ components:
+ - type: Transform
+ pos: 38.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
- uid: 24915
components:
- type: Transform
@@ -15260,6 +15993,14 @@ entities:
- type: Transform
pos: 0.5,32.5
parent: 8364
+ - uid: 25092
+ components:
+ - type: Transform
+ pos: -24.5,-70.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22588
- uid: 25236
components:
- type: Transform
@@ -15285,20 +16026,18 @@ entities:
- type: Transform
pos: -12.5,14.5
parent: 8364
- - uid: 25375
- components:
- - type: Transform
- pos: -6.5,15.5
- parent: 8364
- - uid: 25826
+ - uid: 25318
components:
- type: Transform
- pos: -57.5,1.5
+ pos: 5.5,6.5
parent: 8364
- - uid: 25827
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
+ - uid: 25375
components:
- type: Transform
- pos: -57.5,-5.5
+ pos: -6.5,15.5
parent: 8364
- uid: 25830
components:
@@ -15335,6 +16074,14 @@ entities:
- type: Transform
pos: 0.5,50.5
parent: 8364
+ - uid: 26685
+ components:
+ - type: Transform
+ pos: 33.5,7.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- uid: 26698
components:
- type: Transform
@@ -15355,11 +16102,155 @@ entities:
- type: Transform
pos: -0.5,-73.5
parent: 8364
- - uid: 27489
+ - uid: 26999
components:
- type: Transform
- pos: 3.5,-66.5
+ pos: -0.5,-12.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3656
+ - uid: 27019
+ components:
+ - type: Transform
+ pos: -23.5,-12.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 5769
+ - uid: 27167
+ components:
+ - type: Transform
+ pos: -20.5,-74.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - uid: 27204
+ components:
+ - type: Transform
+ pos: 71.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
+ - uid: 27703
+ components:
+ - type: Transform
+ pos: 53.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22706
+ - uid: 27878
+ components:
+ - type: Transform
+ pos: 54.5,-35.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
+ - uid: 27947
+ components:
+ - type: Transform
+ pos: 20.5,-25.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - uid: 27949
+ components:
+ - type: Transform
+ pos: 40.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - uid: 27961
+ components:
+ - type: Transform
+ pos: 25.5,-28.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
+ - uid: 27962
+ components:
+ - type: Transform
+ pos: 30.5,-18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22665
+ - uid: 27963
+ components:
+ - type: Transform
+ pos: 46.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
+ - uid: 27973
+ components:
+ - type: Transform
+ pos: 30.5,-4.5
+ parent: 8364
+ - uid: 28193
+ components:
+ - type: Transform
+ pos: -0.5,-26.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28154
+ - uid: 28194
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28154
+ - uid: 28206
+ components:
+ - type: Transform
+ pos: 6.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - uid: 28233
+ components:
+ - type: Transform
+ pos: -15.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - uid: 28234
+ components:
+ - type: Transform
+ pos: -6.5,-54.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - uid: 28235
+ components:
+ - type: Transform
+ pos: -6.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - uid: 28236
+ components:
+ - type: Transform
+ pos: 16.5,15.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- proto: AltarConvertMaint
entities:
- uid: 20907
@@ -15425,30 +16316,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 47.5,-22.5
parent: 8364
- - uid: 563
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-111.5
- parent: 8364
- - uid: 566
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-100.5
- parent: 8364
- - uid: 567
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-92.5
- parent: 8364
- - uid: 568
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-92.5
- parent: 8364
- uid: 1260
components:
- type: MetaData
@@ -15482,6 +16349,13 @@ entities:
- type: Transform
pos: 46.5,-64.5
parent: 8364
+ - uid: 3604
+ components:
+ - type: MetaData
+ name: Gravity APC
+ - type: Transform
+ pos: -22.5,-72.5
+ parent: 8364
- uid: 3714
components:
- type: MetaData
@@ -15511,12 +16385,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 0.5,-60.5
parent: 8364
- - uid: 4938
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-86.5
- parent: 8364
- uid: 5759
components:
- type: MetaData
@@ -15650,22 +16518,6 @@ entities:
currentReceiving: 15.000059
currentSupply: 15
supplyRampPosition: -5.9127808E-05
- - uid: 8150
- components:
- - type: MetaData
- name: AI Upload APC
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-15.5
- parent: 8364
- - uid: 8157
- components:
- - type: MetaData
- name: Grav Gen APC
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-24.5
- parent: 8364
- uid: 8265
components:
- type: Transform
@@ -15904,13 +16756,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -53.5,-9.5
parent: 8364
- - uid: 14075
- components:
- - type: MetaData
- name: Vacant Office B APC
- - type: Transform
- pos: -19.5,-10.5
- parent: 8364
- uid: 14145
components:
- type: MetaData
@@ -16150,12 +16995,27 @@ entities:
- type: Transform
pos: 8.5,-50.5
parent: 8364
+ - uid: 25196
+ components:
+ - type: MetaData
+ name: Newsroom APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-9.5
+ parent: 8364
- uid: 26717
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 10.5,-69.5
parent: 8364
+ - uid: 27052
+ components:
+ - type: MetaData
+ name: Station Anchor APC
+ - type: Transform
+ pos: -18.5,-80.5
+ parent: 8364
- uid: 27503
components:
- type: MetaData
@@ -16164,6 +17024,22 @@ entities:
rot: -1.5707963267948966 rad
pos: 2.5,-76.5
parent: 8364
+ - uid: 27830
+ components:
+ - type: MetaData
+ name: AI Core APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-15.5
+ parent: 8364
+ - uid: 28155
+ components:
+ - type: MetaData
+ name: AI Upload APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-22.5
+ parent: 8364
- proto: APCElectronics
entities:
- uid: 14440
@@ -16299,7 +17175,7 @@ entities:
- uid: 27915
components:
- type: Transform
- pos: -4.5121183,-14.413322
+ pos: 2.5261002,-23.281736
parent: 8364
- proto: Ash
entities:
@@ -16313,7 +17189,7 @@ entities:
- uid: 27912
components:
- type: Transform
- pos: 3.2198467,-12.066172
+ pos: -3.6,-23.45
parent: 8364
- proto: AsteroidRock
entities:
@@ -16561,1248 +17437,3238 @@ entities:
- type: Transform
pos: 15.5,-50.5
parent: 8364
- - uid: 9355
+ - uid: 298
components:
- type: Transform
- pos: 26.5,-55.5
+ pos: 53.5,32.5
parent: 8364
- - uid: 9378
+ - uid: 537
components:
- type: Transform
- pos: 26.5,-54.5
+ pos: -44.5,32.5
parent: 8364
- - uid: 9385
+ - uid: 568
components:
- type: Transform
- pos: 27.5,-56.5
+ pos: -53.5,32.5
parent: 8364
- - uid: 9386
+ - uid: 570
components:
- type: Transform
- pos: 27.5,-54.5
+ pos: -13.5,-82.5
parent: 8364
- - uid: 9387
+ - uid: 576
components:
- type: Transform
- pos: 28.5,-56.5
+ pos: -48.5,-64.5
parent: 8364
- - uid: 9595
+ - uid: 592
components:
- type: Transform
- pos: 28.5,-55.5
+ pos: -52.5,34.5
parent: 8364
- - uid: 9708
+ - uid: 661
components:
- type: Transform
- pos: 26.5,-52.5
+ pos: -46.5,-67.5
parent: 8364
- - uid: 9710
+ - uid: 739
components:
- type: Transform
- pos: 26.5,-51.5
+ pos: -9.5,-85.5
parent: 8364
- - uid: 9711
+ - uid: 741
components:
- type: Transform
- pos: 26.5,-50.5
+ pos: -10.5,-90.5
parent: 8364
- - uid: 11914
+ - uid: 862
components:
- type: Transform
- pos: 27.5,-51.5
+ pos: 9.5,-88.5
parent: 8364
- - uid: 12084
+ - uid: 865
components:
- type: Transform
- pos: 27.5,-50.5
+ pos: 9.5,-89.5
parent: 8364
- - uid: 12085
+ - uid: 876
components:
- type: Transform
- pos: 28.5,-52.5
+ pos: 52.5,34.5
parent: 8364
- - uid: 14641
+ - uid: 2004
components:
- type: Transform
- pos: 28.5,-50.5
+ pos: 78.5,-79.5
parent: 8364
- - uid: 15375
+ - uid: 2261
components:
- type: Transform
- pos: 26.5,-44.5
+ pos: -54.5,32.5
parent: 8364
- - uid: 15376
+ - uid: 3539
components:
- type: Transform
- pos: 26.5,-42.5
+ pos: -54.5,34.5
parent: 8364
- - uid: 15451
+ - uid: 4262
components:
- type: Transform
- pos: 27.5,-44.5
+ pos: 15.5,-84.5
parent: 8364
- - uid: 15452
+ - uid: 4264
components:
- type: Transform
- pos: 27.5,-43.5
+ pos: 13.5,-83.5
parent: 8364
- - uid: 15453
+ - uid: 4265
components:
- type: Transform
- pos: 28.5,-44.5
+ pos: 13.5,-85.5
parent: 8364
- - uid: 15454
+ - uid: 4280
components:
- type: Transform
- pos: 28.5,-43.5
+ pos: 7.5,-83.5
parent: 8364
- - uid: 15470
+ - uid: 4281
components:
- type: Transform
- pos: 26.5,-56.5
+ pos: 7.5,-82.5
parent: 8364
- - uid: 15471
+ - uid: 4282
components:
- type: Transform
- pos: 27.5,-55.5
+ pos: 7.5,-81.5
parent: 8364
- - uid: 15472
+ - uid: 4283
components:
- type: Transform
- pos: 28.5,-54.5
+ pos: 7.5,-80.5
parent: 8364
- - uid: 15473
+ - uid: 4301
components:
- type: Transform
- pos: 27.5,-52.5
+ pos: 8.5,-80.5
parent: 8364
- - uid: 15474
+ - uid: 4302
components:
- type: Transform
- pos: 28.5,-51.5
+ pos: 9.5,-83.5
parent: 8364
- - uid: 15477
+ - uid: 4303
components:
- type: Transform
- pos: 26.5,-43.5
+ pos: 7.5,-88.5
parent: 8364
- - uid: 15478
+ - uid: 4304
components:
- type: Transform
- pos: 27.5,-42.5
+ pos: 7.5,-86.5
parent: 8364
- - uid: 15480
+ - uid: 4305
components:
- type: Transform
- pos: 28.5,-42.5
+ pos: 7.5,-85.5
parent: 8364
- - uid: 17651
+ - uid: 4306
components:
- type: Transform
- pos: 14.5,-52.5
+ pos: 7.5,-90.5
parent: 8364
- - uid: 19031
+ - uid: 4307
components:
- type: Transform
- pos: 16.5,-51.5
+ pos: 83.5,-83.5
parent: 8364
- - uid: 19032
+ - uid: 4308
components:
- type: Transform
- pos: 16.5,-52.5
+ pos: 79.5,-81.5
parent: 8364
- - uid: 21772
+ - uid: 4309
components:
- type: Transform
- pos: 14.5,-50.5
+ pos: 79.5,-83.5
parent: 8364
- - uid: 22803
+ - uid: 4310
components:
- type: Transform
- pos: 14.5,-51.5
+ pos: 78.5,-83.5
parent: 8364
- - uid: 22946
+ - uid: 4311
components:
- type: Transform
- pos: 15.5,-52.5
+ pos: 8.5,-82.5
parent: 8364
- - uid: 23143
+ - uid: 4312
components:
- type: Transform
- pos: 15.5,-51.5
+ pos: 9.5,-81.5
parent: 8364
- - uid: 23167
+ - uid: 4313
components:
- type: Transform
- pos: 16.5,-50.5
+ pos: 8.5,-85.5
parent: 8364
- - uid: 27997
+ - uid: 4314
components:
- type: Transform
- pos: -8.5,-92.5
+ pos: 9.5,-80.5
parent: 8364
- - uid: 27998
+ - uid: 4315
components:
- type: Transform
- pos: 21.5,-80.5
+ pos: 8.5,-84.5
parent: 8364
- - uid: 27999
+ - uid: 4316
components:
- type: Transform
- pos: 22.5,-80.5
+ pos: 77.5,-79.5
parent: 8364
- - uid: 28000
+ - uid: 4317
components:
- type: Transform
- pos: 23.5,-80.5
+ pos: 76.5,-79.5
parent: 8364
- - uid: 28001
+ - uid: 4318
components:
- type: Transform
- pos: 25.5,-80.5
+ pos: 75.5,-79.5
parent: 8364
- - uid: 28002
+ - uid: 4319
components:
- type: Transform
- pos: 24.5,-80.5
+ pos: 8.5,-83.5
parent: 8364
- - uid: 28003
+ - uid: 4320
components:
- type: Transform
- pos: 21.5,-87.5
+ pos: 8.5,-88.5
parent: 8364
- - uid: 28004
+ - uid: 4321
components:
- type: Transform
- pos: 20.5,-87.5
+ pos: 8.5,-87.5
parent: 8364
- - uid: 28005
+ - uid: 4322
components:
- type: Transform
- pos: -7.5,-92.5
+ pos: 8.5,-86.5
parent: 8364
- - uid: 28006
+ - uid: 4332
components:
- type: Transform
- pos: -6.5,-92.5
+ pos: 51.5,34.5
parent: 8364
- - uid: 28007
+ - uid: 4333
components:
- type: Transform
- pos: -5.5,-92.5
+ pos: 50.5,34.5
parent: 8364
- - uid: 28008
+ - uid: 4334
components:
- type: Transform
- pos: -4.5,-92.5
+ pos: 49.5,34.5
parent: 8364
- - uid: 28009
+ - uid: 4335
components:
- type: Transform
- pos: -3.5,-92.5
+ pos: 50.5,36.5
parent: 8364
- - uid: 28010
+ - uid: 4336
components:
- type: Transform
- pos: -2.5,-92.5
+ pos: 51.5,36.5
parent: 8364
- - uid: 28011
+ - uid: 4337
components:
- type: Transform
- pos: -1.5,-92.5
+ pos: 75.5,-81.5
parent: 8364
- - uid: 28012
+ - uid: 4338
components:
- type: Transform
- pos: -0.5,-92.5
+ pos: 78.5,-81.5
parent: 8364
- - uid: 28013
+ - uid: 4339
components:
- type: Transform
- pos: 1.5,-92.5
+ pos: 76.5,-81.5
parent: 8364
- - uid: 28014
+ - uid: 4340
components:
- type: Transform
- pos: 2.5,-92.5
+ pos: 77.5,-81.5
parent: 8364
- - uid: 28015
+ - uid: 4341
components:
- type: Transform
- pos: 3.5,-92.5
+ pos: 7.5,-89.5
parent: 8364
- - uid: 28016
+ - uid: 4342
components:
- type: Transform
- pos: 4.5,-92.5
+ pos: 8.5,-81.5
parent: 8364
- - uid: 28017
+ - uid: 4343
components:
- type: Transform
- pos: 5.5,-92.5
+ pos: 50.5,38.5
parent: 8364
- - uid: 28018
+ - uid: 4344
components:
- type: Transform
- pos: 6.5,-92.5
+ pos: 52.5,36.5
parent: 8364
- - uid: 28019
+ - uid: 4345
components:
- type: Transform
- pos: 7.5,-92.5
+ pos: 49.5,36.5
parent: 8364
- - uid: 28020
+ - uid: 4346
components:
- type: Transform
- pos: 0.5,-92.5
+ pos: 53.5,36.5
parent: 8364
-- proto: AtmosFixFreezerMarker
- entities:
- - uid: 2846
+ - uid: 4347
components:
- type: Transform
- pos: 40.5,-2.5
+ pos: -54.5,-55.5
parent: 8364
- - uid: 2847
+ - uid: 4348
components:
- type: Transform
- pos: 39.5,-0.5
+ pos: -54.5,-56.5
parent: 8364
- - uid: 2848
+ - uid: 4349
components:
- type: Transform
- pos: 39.5,0.5
+ pos: -52.5,-55.5
parent: 8364
- - uid: 10530
+ - uid: 4350
components:
- type: Transform
- pos: 40.5,-0.5
+ pos: -54.5,-57.5
parent: 8364
- - uid: 10600
+ - uid: 4351
components:
- type: Transform
- pos: 39.5,-1.5
+ pos: 49.5,38.5
parent: 8364
- - uid: 10602
+ - uid: 4352
components:
- type: Transform
- pos: 39.5,-2.5
+ pos: 53.5,38.5
parent: 8364
- - uid: 10606
+ - uid: 4353
components:
- type: Transform
- pos: 38.5,0.5
+ pos: 52.5,38.5
parent: 8364
- - uid: 10607
+ - uid: 4354
components:
- type: Transform
- pos: 38.5,-0.5
+ pos: 51.5,38.5
parent: 8364
- - uid: 10611
+ - uid: 4361
components:
- type: Transform
- pos: 38.5,-1.5
+ pos: -52.5,-59.5
parent: 8364
- - uid: 10617
+ - uid: 4362
components:
- type: Transform
- pos: 38.5,-2.5
+ pos: -52.5,-58.5
parent: 8364
- - uid: 10618
+ - uid: 4363
components:
- type: Transform
- pos: 37.5,0.5
+ pos: -52.5,-57.5
parent: 8364
- - uid: 10635
+ - uid: 4364
components:
- type: Transform
- pos: 37.5,-0.5
+ pos: -52.5,-56.5
parent: 8364
- - uid: 10636
+ - uid: 4377
components:
- type: Transform
- pos: 37.5,-1.5
+ pos: -54.5,-58.5
parent: 8364
- - uid: 10717
+ - uid: 4378
components:
- type: Transform
- pos: 37.5,-2.5
+ pos: -54.5,-59.5
parent: 8364
- - uid: 10720
+ - uid: 4409
components:
- type: Transform
- pos: 36.5,0.5
+ pos: -9.5,-79.5
parent: 8364
- - uid: 10721
+ - uid: 4411
components:
- type: Transform
- pos: 36.5,-0.5
+ pos: -8.5,-82.5
parent: 8364
- - uid: 10726
+ - uid: 4412
components:
- type: Transform
- pos: 36.5,-1.5
+ pos: -8.5,-90.5
parent: 8364
- - uid: 10727
+ - uid: 4414
components:
- type: Transform
- pos: 36.5,-2.5
+ pos: -8.5,-81.5
parent: 8364
- - uid: 10728
+ - uid: 4415
components:
- type: Transform
- pos: 35.5,0.5
+ pos: -8.5,-84.5
parent: 8364
- - uid: 10729
+ - uid: 4416
components:
- type: Transform
- pos: 35.5,-0.5
+ pos: 51.5,30.5
parent: 8364
- - uid: 10730
+ - uid: 4417
components:
- type: Transform
- pos: 35.5,-1.5
+ pos: 85.5,-75.5
parent: 8364
- - uid: 10731
+ - uid: 4418
components:
- type: Transform
- pos: 35.5,-2.5
+ pos: 87.5,-75.5
parent: 8364
- - uid: 22554
+ - uid: 4419
components:
- type: Transform
- pos: 40.5,-1.5
+ pos: 86.5,-73.5
parent: 8364
- - uid: 22651
+ - uid: 4420
components:
- type: Transform
- pos: 40.5,0.5
+ pos: 1.5,-80.5
parent: 8364
-- proto: AtmosFixNitrogenMarker
- entities:
- - uid: 8204
+ - uid: 4421
components:
- type: Transform
- pos: 12.5,-64.5
+ pos: -1.5,-80.5
parent: 8364
- - uid: 8205
+ - uid: 4422
components:
- type: Transform
- pos: 13.5,-66.5
+ pos: 0.5,-80.5
parent: 8364
- - uid: 8206
+ - uid: 4423
components:
- type: Transform
- pos: 14.5,-65.5
+ pos: 14.5,-83.5
parent: 8364
- - uid: 9347
+ - uid: 4424
components:
- type: Transform
- pos: 14.5,-66.5
+ pos: 13.5,-84.5
parent: 8364
- - uid: 15467
+ - uid: 4427
components:
- type: Transform
- pos: 14.5,-64.5
+ pos: 15.5,-85.5
parent: 8364
- - uid: 16130
+ - uid: 4428
components:
- type: Transform
- pos: 13.5,-65.5
+ pos: 16.5,-83.5
parent: 8364
- - uid: 16259
+ - uid: 4430
components:
- type: Transform
- pos: 13.5,-64.5
+ pos: 14.5,-85.5
parent: 8364
- - uid: 16285
+ - uid: 4431
components:
- type: Transform
- pos: 12.5,-66.5
+ pos: 15.5,-83.5
parent: 8364
- - uid: 16460
+ - uid: 4432
components:
- type: Transform
- pos: 12.5,-65.5
+ pos: 14.5,-84.5
parent: 8364
-- proto: AtmosFixOxygenMarker
- entities:
- - uid: 9348
+ - uid: 4442
components:
- type: Transform
- pos: 16.5,-64.5
+ pos: 4.5,-80.5
parent: 8364
- - uid: 9349
+ - uid: 4443
components:
- type: Transform
- pos: 16.5,-66.5
+ pos: 3.5,-79.5
parent: 8364
- - uid: 9350
+ - uid: 4444
components:
- type: Transform
- pos: 17.5,-64.5
+ pos: 3.5,-80.5
parent: 8364
- - uid: 9351
+ - uid: 4445
components:
- type: Transform
- pos: 17.5,-65.5
+ pos: 2.5,-80.5
parent: 8364
- - uid: 9352
+ - uid: 4446
components:
- type: Transform
- pos: 18.5,-64.5
+ pos: -7.5,-80.5
parent: 8364
- - uid: 9353
+ - uid: 4447
components:
- type: Transform
- pos: 18.5,-65.5
+ pos: 72.5,15.5
parent: 8364
- - uid: 9354
+ - uid: 4449
components:
- type: Transform
- pos: 18.5,-66.5
+ pos: 50.5,28.5
parent: 8364
- - uid: 15468
+ - uid: 4450
components:
- type: Transform
- pos: 16.5,-65.5
+ pos: 53.5,30.5
parent: 8364
- - uid: 15469
+ - uid: 4451
components:
- type: Transform
- pos: 17.5,-66.5
+ pos: 52.5,28.5
parent: 8364
-- proto: AtmosFixPlasmaMarker
- entities:
- - uid: 14723
+ - uid: 4452
components:
- type: Transform
- pos: 26.5,-48.5
+ pos: -3.5,-80.5
parent: 8364
- - uid: 14724
+ - uid: 4453
components:
- type: Transform
- pos: 26.5,-47.5
+ pos: -4.5,-80.5
parent: 8364
- - uid: 14727
+ - uid: 4454
components:
- type: Transform
- pos: 27.5,-48.5
+ pos: -5.5,-80.5
parent: 8364
- - uid: 15003
+ - uid: 4455
components:
- type: Transform
- pos: 27.5,-47.5
+ pos: -6.5,-80.5
parent: 8364
- - uid: 15318
+ - uid: 4466
components:
- type: Transform
- pos: 27.5,-46.5
+ pos: 21.5,-83.5
parent: 8364
- - uid: 15353
+ - uid: 4467
components:
- type: Transform
- pos: 28.5,-47.5
+ pos: 21.5,-84.5
parent: 8364
- - uid: 15374
+ - uid: 4468
components:
- type: Transform
- pos: 28.5,-46.5
+ pos: 21.5,-85.5
parent: 8364
- - uid: 15475
+ - uid: 4469
components:
- type: Transform
- pos: 26.5,-46.5
+ pos: 22.5,-83.5
parent: 8364
- - uid: 15476
+ - uid: 4470
components:
- type: Transform
- pos: 28.5,-48.5
+ pos: 22.5,-84.5
parent: 8364
-- proto: Autolathe
- entities:
- - uid: 13406
+ - uid: 4471
components:
- type: Transform
- pos: 69.5,-19.5
+ pos: 22.5,-85.5
parent: 8364
- - type: MaterialStorage
- materialWhiteList:
- - Steel
- - Plastic
- - Wood
- - Glass
- - Cloth
- - uid: 15361
+ - uid: 4472
components:
- type: Transform
- pos: -28.5,-24.5
+ pos: 84.5,-83.5
parent: 8364
- - type: MaterialStorage
- materialWhiteList:
- - Steel
- - Plastic
- - Wood
- - Glass
- - Cloth
- - uid: 17801
+ - uid: 4473
components:
- type: Transform
- pos: 2.5,-52.5
+ pos: 86.5,-83.5
parent: 8364
- - type: MaterialStorage
- materialWhiteList:
- - Steel
- - Plastic
- - Wood
- - Glass
- - Cloth
-- proto: BackgammonBoard
- entities:
- - uid: 6519
+ - uid: 4477
components:
- type: Transform
- pos: 24.02721,-8.402973
+ pos: 86.5,-79.5
parent: 8364
- - uid: 11674
+ - uid: 4478
components:
- type: Transform
- pos: 63.5,-7.5
+ pos: 47.5,41.5
parent: 8364
-- proto: BagpipeInstrument
- entities:
- - uid: 26004
+ - uid: 4479
components:
- type: Transform
- pos: 22.356016,2.7478647
+ pos: 42.5,36.5
parent: 8364
-- proto: BannerCargo
- entities:
- - uid: 27596
+ - uid: 4480
components:
- type: Transform
- pos: -32.5,-22.5
+ pos: 44.5,36.5
parent: 8364
-- proto: BannerNanotrasen
- entities:
- - uid: 21765
+ - uid: 4481
components:
- type: Transform
- pos: -24.5,-9.5
+ pos: -0.5,41.5
parent: 8364
-- proto: Barricade
- entities:
- - uid: 54
+ - uid: 4482
components:
- type: Transform
- pos: 22.5,26.5
+ pos: 45.5,36.5
parent: 8364
- - uid: 55
+ - uid: 4483
components:
- type: Transform
- pos: 22.5,29.5
+ pos: 43.5,36.5
parent: 8364
- - uid: 56
+ - uid: 4484
components:
- type: Transform
- pos: 22.5,28.5
+ pos: -50.5,-57.5
parent: 8364
- - uid: 514
+ - uid: 4485
components:
- type: Transform
- pos: -50.5,3.5
+ pos: -50.5,-55.5
parent: 8364
- - uid: 5016
+ - uid: 4486
components:
- type: Transform
- pos: -20.5,12.5
+ pos: -50.5,-56.5
parent: 8364
- - uid: 11390
+ - uid: 4487
components:
- type: Transform
- pos: 65.5,15.5
+ pos: -50.5,-58.5
parent: 8364
- - uid: 11653
+ - uid: 4488
components:
- type: Transform
- pos: 62.5,16.5
+ pos: 7.5,-87.5
parent: 8364
- - uid: 11654
+ - uid: 4489
components:
- type: Transform
- pos: 61.5,16.5
+ pos: 77.5,-83.5
parent: 8364
- - uid: 11655
+ - uid: 4490
components:
- type: Transform
- pos: 60.5,16.5
+ pos: 76.5,-83.5
parent: 8364
- - uid: 13253
+ - uid: 4491
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -32.5,19.5
+ pos: 75.5,-83.5
parent: 8364
- - uid: 13254
+ - uid: 4626
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -34.5,22.5
+ pos: 16.5,-84.5
parent: 8364
- - uid: 13308
+ - uid: 4627
components:
- type: Transform
- pos: -39.5,21.5
+ pos: 16.5,-85.5
parent: 8364
- - uid: 13484
+ - uid: 4628
components:
- type: Transform
- pos: -23.5,4.5
+ pos: 9.5,-82.5
parent: 8364
- - uid: 13485
+ - uid: 4629
components:
- type: Transform
- pos: -18.5,4.5
+ pos: 7.5,-84.5
parent: 8364
- - uid: 13755
+ - uid: 4630
components:
- type: Transform
- pos: -55.5,7.5
+ pos: -0.5,-80.5
parent: 8364
- - uid: 15300
+ - uid: 4631
components:
- type: Transform
- pos: -30.5,-47.5
+ pos: 84.5,-73.5
parent: 8364
- - uid: 15578
+ - uid: 4632
components:
- type: Transform
- pos: -34.5,-45.5
+ pos: 84.5,-79.5
parent: 8364
- - uid: 15595
+ - uid: 4633
components:
- type: Transform
- pos: -33.5,-52.5
+ pos: 85.5,-79.5
parent: 8364
- - uid: 15596
+ - uid: 4634
components:
- type: Transform
- pos: -30.5,-54.5
+ pos: 81.5,-86.5
parent: 8364
- - uid: 15597
+ - uid: 4635
components:
- type: Transform
- pos: -30.5,-53.5
+ pos: 83.5,-73.5
parent: 8364
- - uid: 15598
+ - uid: 4636
components:
- type: Transform
- pos: -33.5,-55.5
+ pos: 85.5,-73.5
parent: 8364
- - uid: 15711
+ - uid: 4637
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -37.5,-58.5
+ pos: 87.5,-73.5
parent: 8364
- - uid: 15803
+ - uid: 4638
components:
- type: Transform
- pos: -30.5,-44.5
+ pos: 86.5,-75.5
parent: 8364
- - uid: 15944
+ - uid: 4639
components:
- type: Transform
- pos: -19.5,-53.5
+ pos: 50.5,30.5
parent: 8364
- - uid: 20038
+ - uid: 4640
components:
- type: Transform
- pos: 87.5,-23.5
+ pos: 85.5,-83.5
parent: 8364
- - uid: 20039
+ - uid: 4641
components:
- type: Transform
- pos: 87.5,-28.5
+ pos: 87.5,-83.5
parent: 8364
-- proto: BarricadeBlock
- entities:
- - uid: 2501
+ - uid: 4642
components:
- type: Transform
- pos: -31.5,13.5
+ pos: 87.5,-79.5
parent: 8364
-- proto: BarSignMaidCafe
- entities:
- - uid: 5444
+ - uid: 4643
components:
- type: Transform
- pos: 26.5,-11.5
+ pos: 44.5,38.5
parent: 8364
-- proto: BarSignOfficerBeersky
- entities:
- - uid: 7136
+ - uid: 4644
components:
- type: Transform
- pos: -34.5,17.5
+ pos: 41.5,36.5
parent: 8364
-- proto: BaseComputer
- entities:
- - uid: 5355
+ - uid: 4645
components:
- type: Transform
- pos: 56.5,-29.5
+ pos: 1.5,41.5
parent: 8364
- - uid: 21139
+ - uid: 4648
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 54.5,-20.5
+ pos: -47.5,34.5
parent: 8364
- - uid: 25918
+ - uid: 4650
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 80.5,-51.5
+ pos: -1.5,41.5
parent: 8364
- - uid: 27190
+ - uid: 4652
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-86.5
+ pos: 51.5,28.5
parent: 8364
-- proto: BaseGasCondenser
- entities:
- - uid: 5562
+ - uid: 4657
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-19.5
+ pos: 52.5,30.5
parent: 8364
- - uid: 18633
+ - uid: 4678
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-42.5
+ pos: 49.5,28.5
parent: 8364
-- proto: Basketball
- entities:
- - uid: 815
+ - uid: 4680
components:
- type: Transform
- pos: 33.5,-2.5
+ pos: 53.5,28.5
parent: 8364
-- proto: BassGuitarInstrument
- entities:
- - uid: 25901
+ - uid: 4684
components:
- type: Transform
- pos: 22.460173,2.6171174
+ pos: 79.5,15.5
parent: 8364
-- proto: BeachBall
- entities:
- - uid: 20679
+ - uid: 4696
components:
- type: Transform
- pos: 34.165627,9.592048
+ pos: 87.5,-81.5
parent: 8364
- - uid: 27654
+ - uid: 4699
components:
- type: Transform
- pos: 6.549402,-27.166641
+ pos: 6.5,-80.5
parent: 8364
-- proto: Beaker
- entities:
- - uid: 7260
+ - uid: 4834
components:
- type: Transform
- pos: 29.5,1.5
+ pos: 5.5,-79.5
parent: 8364
- - uid: 21180
+ - uid: 4935
components:
- type: Transform
- pos: 74.27338,-18.287746
+ pos: -9.5,-82.5
parent: 8364
- - uid: 26550
+ - uid: 4936
components:
- type: Transform
- pos: -6.0280805,52.564606
+ pos: -8.5,-83.5
parent: 8364
-- proto: Bed
- entities:
- - uid: 777
+ - uid: 4937
components:
- type: Transform
- pos: -31.5,-24.5
+ pos: -8.5,-85.5
parent: 8364
- - uid: 2008
+ - uid: 4938
components:
- type: Transform
- pos: 55.5,-49.5
+ pos: -7.5,-81.5
parent: 8364
- - uid: 2037
+ - uid: 4939
components:
- type: Transform
- pos: 26.5,-34.5
+ pos: -9.5,-80.5
parent: 8364
- - uid: 2214
+ - uid: 4962
components:
- type: Transform
- pos: 26.5,-35.5
+ pos: -7.5,-79.5
parent: 8364
- - uid: 2222
+ - uid: 4963
components:
- type: Transform
- pos: 24.5,-28.5
+ pos: -6.5,-79.5
parent: 8364
- - uid: 5221
+ - uid: 4964
components:
- type: Transform
- pos: 8.5,-21.5
+ pos: -5.5,-79.5
parent: 8364
- - uid: 5757
+ - uid: 4965
components:
- type: Transform
- pos: 24.5,-29.5
+ pos: -4.5,-79.5
parent: 8364
- - uid: 6469
+ - uid: 4966
components:
- type: Transform
- pos: 6.5,9.5
+ pos: -2.5,-80.5
parent: 8364
- - uid: 6470
+ - uid: 5197
components:
- type: Transform
- pos: 6.5,12.5
+ pos: 23.5,-83.5
parent: 8364
- - uid: 6471
+ - uid: 5198
components:
- type: Transform
- pos: 6.5,15.5
+ pos: 23.5,-84.5
parent: 8364
- - uid: 6482
+ - uid: 5200
components:
- type: Transform
- pos: 13.5,14.5
+ pos: 23.5,-85.5
parent: 8364
- - uid: 6483
+ - uid: 5201
components:
- type: Transform
- pos: 17.5,14.5
+ pos: 20.5,-85.5
parent: 8364
- - uid: 6670
+ - uid: 5273
components:
- type: Transform
- pos: 6.5,6.5
+ pos: 8.5,-89.5
parent: 8364
- - uid: 6935
+ - uid: 6091
components:
- type: Transform
- pos: 37.5,-51.5
+ pos: -46.5,32.5
parent: 8364
- - uid: 8422
+ - uid: 6092
components:
- type: Transform
- pos: 44.5,-58.5
+ pos: -47.5,32.5
parent: 8364
- - uid: 8630
+ - uid: 6093
components:
- type: Transform
- pos: -10.5,23.5
+ pos: -57.5,-61.5
parent: 8364
- - uid: 8631
+ - uid: 6096
components:
- type: Transform
- pos: -6.5,23.5
+ pos: -43.5,34.5
parent: 8364
- - uid: 8632
+ - uid: 6419
components:
- type: Transform
- pos: -2.5,23.5
+ pos: 5.5,45.5
parent: 8364
- - uid: 9361
+ - uid: 6596
components:
- type: Transform
- pos: -6.5,31.5
+ pos: -34.5,14.5
parent: 8364
- - uid: 10570
+ - uid: 8045
components:
- type: Transform
- pos: 33.5,-0.5
+ pos: -48.5,-59.5
parent: 8364
- - uid: 10774
+ - uid: 8076
components:
- type: Transform
- pos: 46.5,-58.5
+ pos: -50.5,-59.5
parent: 8364
- - uid: 15326
+ - uid: 9355
components:
- type: Transform
- pos: 63.5,-3.5
+ pos: 26.5,-55.5
parent: 8364
- - uid: 18647
+ - uid: 9378
components:
- type: Transform
- pos: -2.5,-61.5
+ pos: 26.5,-54.5
parent: 8364
- - uid: 19064
+ - uid: 9385
components:
- type: Transform
- pos: 24.5,-27.5
+ pos: 27.5,-56.5
parent: 8364
- - uid: 20156
+ - uid: 9386
components:
- type: Transform
- pos: -19.5,16.5
+ pos: 27.5,-54.5
parent: 8364
- - uid: 21210
+ - uid: 9387
components:
- type: Transform
- pos: 71.5,-35.5
+ pos: 28.5,-56.5
parent: 8364
- - uid: 21244
+ - uid: 9595
components:
- type: Transform
- pos: 15.5,41.5
+ pos: 28.5,-55.5
parent: 8364
- - uid: 21743
+ - uid: 9708
components:
- type: Transform
- pos: -30.5,-74.5
+ pos: 26.5,-52.5
parent: 8364
- - uid: 26349
+ - uid: 9710
components:
- type: Transform
- pos: -21.5,40.5
+ pos: 26.5,-51.5
parent: 8364
- - uid: 26350
+ - uid: 9711
components:
- type: Transform
- pos: -18.5,40.5
+ pos: 26.5,-50.5
parent: 8364
- - uid: 26351
+ - uid: 10555
components:
- type: Transform
- pos: -17.5,48.5
+ pos: -48.5,-58.5
parent: 8364
- - uid: 26352
+ - uid: 10706
components:
- type: Transform
- pos: -20.5,48.5
+ pos: -44.5,-67.5
parent: 8364
-- proto: BedsheetCaptain
- entities:
- - uid: 5315
+ - uid: 10855
components:
- type: Transform
- pos: 8.5,-21.5
+ pos: 79.5,-79.5
parent: 8364
-- proto: BedsheetCE
- entities:
- - uid: 17952
+ - uid: 10869
components:
- type: Transform
- pos: -2.5,-61.5
+ pos: 79.5,-77.5
parent: 8364
-- proto: BedsheetCosmos
- entities:
- - uid: 5579
+ - uid: 11751
components:
- type: Transform
- pos: 6.5,6.5
+ pos: -45.5,32.5
parent: 8364
-- proto: BedsheetGreen
- entities:
- - uid: 5471
+ - uid: 11759
components:
- type: Transform
- pos: 44.5,-58.5
+ pos: 6.5,-81.5
parent: 8364
- - uid: 5472
+ - uid: 11914
components:
- type: Transform
- pos: 37.5,-51.5
+ pos: 27.5,-51.5
parent: 8364
- - uid: 5916
+ - uid: 12084
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-58.5
+ pos: 27.5,-50.5
parent: 8364
-- proto: BedsheetHOP
- entities:
- - uid: 21278
+ - uid: 12085
components:
- type: Transform
- pos: -10.5,-27.5
+ pos: 28.5,-52.5
parent: 8364
-- proto: BedsheetHOS
- entities:
- - uid: 21245
+ - uid: 14481
components:
- type: Transform
- pos: 15.5,41.5
+ pos: 4.5,-79.5
parent: 8364
-- proto: BedsheetMedical
- entities:
- - uid: 5451
+ - uid: 14482
components:
- type: Transform
- pos: 32.5,-27.5
+ pos: 6.5,-79.5
parent: 8364
- - uid: 5452
+ - uid: 14483
components:
- type: Transform
- pos: 30.5,-27.5
+ pos: -46.5,-58.5
parent: 8364
- - uid: 9485
+ - uid: 14505
components:
- type: Transform
- pos: -6.5,31.5
+ pos: 85.5,-77.5
parent: 8364
- - uid: 18601
+ - uid: 14506
components:
- type: Transform
- pos: 29.5,-36.5
+ pos: 15.5,-49.5
parent: 8364
- - uid: 18602
+ - uid: 14641
components:
- type: Transform
- pos: 32.5,-36.5
+ pos: 28.5,-50.5
parent: 8364
- - uid: 18646
+ - uid: 15375
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-29.5
+ pos: 26.5,-44.5
parent: 8364
- - uid: 19287
+ - uid: 15376
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-28.5
+ pos: 26.5,-42.5
parent: 8364
- - uid: 20142
+ - uid: 15451
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-27.5
+ pos: 27.5,-44.5
parent: 8364
-- proto: BedsheetOrange
- entities:
- - uid: 26353
+ - uid: 15452
components:
- type: Transform
- pos: -20.5,48.5
+ pos: 27.5,-43.5
parent: 8364
- - uid: 26355
+ - uid: 15453
components:
- type: Transform
- pos: -18.5,40.5
+ pos: 28.5,-44.5
parent: 8364
- - uid: 26356
+ - uid: 15454
components:
- type: Transform
- pos: -21.5,40.5
+ pos: 28.5,-43.5
parent: 8364
-- proto: BedsheetQM
- entities:
- - uid: 5287
+ - uid: 15470
components:
- type: Transform
- pos: -31.5,-24.5
+ pos: 26.5,-56.5
parent: 8364
-- proto: BedsheetRD
- entities:
- - uid: 21243
+ - uid: 15471
components:
- type: Transform
- pos: 71.5,-35.5
+ pos: 27.5,-55.5
parent: 8364
-- proto: BedsheetSpawner
- entities:
- - uid: 5583
+ - uid: 15472
components:
- type: Transform
- pos: 6.5,15.5
+ pos: 28.5,-54.5
parent: 8364
- - uid: 6461
+ - uid: 15473
components:
- type: Transform
- pos: 55.5,-49.5
+ pos: 27.5,-52.5
parent: 8364
- - uid: 6465
+ - uid: 15474
components:
- type: Transform
- pos: 6.5,9.5
+ pos: 28.5,-51.5
parent: 8364
- - uid: 6466
+ - uid: 15477
components:
- type: Transform
- pos: 6.5,12.5
+ pos: 26.5,-43.5
parent: 8364
- - uid: 6484
+ - uid: 15478
components:
- type: Transform
- pos: 13.5,14.5
+ pos: 27.5,-42.5
parent: 8364
- - uid: 6485
+ - uid: 15480
components:
- type: Transform
- pos: 17.5,14.5
+ pos: 28.5,-42.5
parent: 8364
- - uid: 8925
+ - uid: 17651
components:
- type: Transform
- pos: -19.5,16.5
+ pos: 14.5,-52.5
parent: 8364
- - uid: 10569
+ - uid: 19031
components:
- type: Transform
- pos: 33.5,-0.5
+ pos: 16.5,-51.5
parent: 8364
- - uid: 15325
+ - uid: 19032
components:
- type: Transform
- pos: 63.5,-3.5
+ pos: 16.5,-52.5
parent: 8364
-- proto: BedsheetSyndie
- entities:
- - uid: 26354
+ - uid: 21772
components:
- type: Transform
- pos: -17.5,48.5
+ pos: 14.5,-50.5
parent: 8364
-- proto: BedsheetWhite
- entities:
- - uid: 8627
+ - uid: 22450
components:
- type: Transform
- pos: -10.5,23.5
+ pos: -48.5,-55.5
parent: 8364
- - uid: 8628
+ - uid: 22451
components:
- type: Transform
- pos: -6.5,23.5
+ pos: 3.5,41.5
parent: 8364
- - uid: 8629
+ - uid: 22452
components:
- type: Transform
- pos: -2.5,23.5
+ pos: 5.5,43.5
parent: 8364
-- proto: BigBox
- entities:
- - uid: 2277
+ - uid: 22453
components:
- type: Transform
- pos: 46.455715,-47.446358
+ pos: 5.5,44.5
parent: 8364
- - uid: 25967
+ - uid: 22454
components:
- type: Transform
- pos: -25.023743,-15.516048
+ pos: 42.5,38.5
parent: 8364
-- proto: BikeHorn
+ - uid: 22455
+ components:
+ - type: Transform
+ pos: 41.5,38.5
+ parent: 8364
+ - uid: 22456
+ components:
+ - type: Transform
+ pos: 43.5,38.5
+ parent: 8364
+ - uid: 22457
+ components:
+ - type: Transform
+ pos: 87.5,-77.5
+ parent: 8364
+ - uid: 22513
+ components:
+ - type: Transform
+ pos: 86.5,-77.5
+ parent: 8364
+ - uid: 22514
+ components:
+ - type: Transform
+ pos: -8.5,-86.5
+ parent: 8364
+ - uid: 22515
+ components:
+ - type: Transform
+ pos: -8.5,-88.5
+ parent: 8364
+ - uid: 22527
+ components:
+ - type: Transform
+ pos: -9.5,-78.5
+ parent: 8364
+ - uid: 22528
+ components:
+ - type: Transform
+ pos: -9.5,-81.5
+ parent: 8364
+ - uid: 22547
+ components:
+ - type: Transform
+ pos: 20.5,-83.5
+ parent: 8364
+ - uid: 22548
+ components:
+ - type: Transform
+ pos: 20.5,-84.5
+ parent: 8364
+ - uid: 22551
+ components:
+ - type: Transform
+ pos: 86.5,-81.5
+ parent: 8364
+ - uid: 22556
+ components:
+ - type: Transform
+ pos: 85.5,-81.5
+ parent: 8364
+ - uid: 22557
+ components:
+ - type: Transform
+ pos: 83.5,-81.5
+ parent: 8364
+ - uid: 22573
+ components:
+ - type: Transform
+ pos: 83.5,-77.5
+ parent: 8364
+ - uid: 22591
+ components:
+ - type: Transform
+ pos: 84.5,-77.5
+ parent: 8364
+ - uid: 22600
+ components:
+ - type: Transform
+ pos: 83.5,-75.5
+ parent: 8364
+ - uid: 22601
+ components:
+ - type: Transform
+ pos: 5.5,-80.5
+ parent: 8364
+ - uid: 22644
+ components:
+ - type: Transform
+ pos: -48.5,-56.5
+ parent: 8364
+ - uid: 22658
+ components:
+ - type: Transform
+ pos: -46.5,-59.5
+ parent: 8364
+ - uid: 22695
+ components:
+ - type: Transform
+ pos: -48.5,-57.5
+ parent: 8364
+ - uid: 22803
+ components:
+ - type: Transform
+ pos: 14.5,-51.5
+ parent: 8364
+ - uid: 22946
+ components:
+ - type: Transform
+ pos: 15.5,-52.5
+ parent: 8364
+ - uid: 23134
+ components:
+ - type: Transform
+ pos: -46.5,-56.5
+ parent: 8364
+ - uid: 23135
+ components:
+ - type: Transform
+ pos: 0.5,41.5
+ parent: 8364
+ - uid: 23139
+ components:
+ - type: Transform
+ pos: -8.5,-89.5
+ parent: 8364
+ - uid: 23143
+ components:
+ - type: Transform
+ pos: 15.5,-51.5
+ parent: 8364
+ - uid: 23155
+ components:
+ - type: Transform
+ pos: 84.5,-81.5
+ parent: 8364
+ - uid: 23166
+ components:
+ - type: Transform
+ pos: 15.5,-53.5
+ parent: 8364
+ - uid: 23167
+ components:
+ - type: Transform
+ pos: 16.5,-50.5
+ parent: 8364
+ - uid: 23319
+ components:
+ - type: Transform
+ pos: -8.5,-79.5
+ parent: 8364
+ - uid: 23533
+ components:
+ - type: Transform
+ pos: 83.5,-79.5
+ parent: 8364
+ - uid: 23536
+ components:
+ - type: Transform
+ pos: 84.5,-75.5
+ parent: 8364
+ - uid: 23537
+ components:
+ - type: Transform
+ pos: 2.5,41.5
+ parent: 8364
+ - uid: 23538
+ components:
+ - type: Transform
+ pos: -46.5,-57.5
+ parent: 8364
+ - uid: 23922
+ components:
+ - type: Transform
+ pos: -46.5,-64.5
+ parent: 8364
+ - uid: 23928
+ components:
+ - type: Transform
+ pos: -46.5,-66.5
+ parent: 8364
+ - uid: 23929
+ components:
+ - type: Transform
+ pos: -50.5,-65.5
+ parent: 8364
+ - uid: 23931
+ components:
+ - type: Transform
+ pos: -52.5,-66.5
+ parent: 8364
+ - uid: 23932
+ components:
+ - type: Transform
+ pos: -50.5,-66.5
+ parent: 8364
+ - uid: 23933
+ components:
+ - type: Transform
+ pos: -50.5,-64.5
+ parent: 8364
+ - uid: 23934
+ components:
+ - type: Transform
+ pos: -50.5,-67.5
+ parent: 8364
+ - uid: 23937
+ components:
+ - type: Transform
+ pos: -50.5,-63.5
+ parent: 8364
+ - uid: 23939
+ components:
+ - type: Transform
+ pos: -52.5,-63.5
+ parent: 8364
+ - uid: 23941
+ components:
+ - type: Transform
+ pos: -46.5,-63.5
+ parent: 8364
+ - uid: 23946
+ components:
+ - type: Transform
+ pos: -48.5,-65.5
+ parent: 8364
+ - uid: 23947
+ components:
+ - type: Transform
+ pos: -9.5,-87.5
+ parent: 8364
+ - uid: 23948
+ components:
+ - type: Transform
+ pos: -9.5,-83.5
+ parent: 8364
+ - uid: 24187
+ components:
+ - type: Transform
+ pos: -9.5,-84.5
+ parent: 8364
+ - uid: 24188
+ components:
+ - type: Transform
+ pos: -9.5,-88.5
+ parent: 8364
+ - uid: 24384
+ components:
+ - type: Transform
+ pos: -48.5,-63.5
+ parent: 8364
+ - uid: 24979
+ components:
+ - type: Transform
+ pos: -54.5,-64.5
+ parent: 8364
+ - uid: 24982
+ components:
+ - type: Transform
+ pos: -54.5,-66.5
+ parent: 8364
+ - uid: 24983
+ components:
+ - type: Transform
+ pos: -52.5,-67.5
+ parent: 8364
+ - uid: 24984
+ components:
+ - type: Transform
+ pos: -54.5,-65.5
+ parent: 8364
+ - uid: 25055
+ components:
+ - type: Transform
+ pos: 44.5,30.5
+ parent: 8364
+ - uid: 25063
+ components:
+ - type: Transform
+ pos: 41.5,32.5
+ parent: 8364
+ - uid: 25074
+ components:
+ - type: Transform
+ pos: 45.5,30.5
+ parent: 8364
+ - uid: 25077
+ components:
+ - type: Transform
+ pos: -52.5,-65.5
+ parent: 8364
+ - uid: 25087
+ components:
+ - type: Transform
+ pos: -51.5,28.5
+ parent: 8364
+ - uid: 25150
+ components:
+ - type: Transform
+ pos: -55.5,28.5
+ parent: 8364
+ - uid: 25158
+ components:
+ - type: Transform
+ pos: -53.5,34.5
+ parent: 8364
+ - uid: 25163
+ components:
+ - type: Transform
+ pos: 65.5,-78.5
+ parent: 8364
+ - uid: 25165
+ components:
+ - type: Transform
+ pos: -44.5,34.5
+ parent: 8364
+ - uid: 25184
+ components:
+ - type: Transform
+ pos: -9.5,-91.5
+ parent: 8364
+ - uid: 25188
+ components:
+ - type: Transform
+ pos: -47.5,36.5
+ parent: 8364
+ - uid: 25192
+ components:
+ - type: Transform
+ pos: 75.5,-75.5
+ parent: 8364
+ - uid: 25193
+ components:
+ - type: Transform
+ pos: 77.5,-77.5
+ parent: 8364
+ - uid: 25195
+ components:
+ - type: Transform
+ pos: 53.5,34.5
+ parent: 8364
+ - uid: 25202
+ components:
+ - type: Transform
+ pos: -43.5,32.5
+ parent: 8364
+ - uid: 25203
+ components:
+ - type: Transform
+ pos: 44.5,32.5
+ parent: 8364
+ - uid: 25223
+ components:
+ - type: Transform
+ pos: 5.5,-93.5
+ parent: 8364
+ - uid: 25224
+ components:
+ - type: Transform
+ pos: -5.5,-93.5
+ parent: 8364
+ - uid: 25241
+ components:
+ - type: Transform
+ pos: 3.5,-93.5
+ parent: 8364
+ - uid: 25347
+ components:
+ - type: Transform
+ pos: -53.5,28.5
+ parent: 8364
+ - uid: 25453
+ components:
+ - type: Transform
+ pos: -51.5,32.5
+ parent: 8364
+ - uid: 25458
+ components:
+ - type: Transform
+ pos: 42.5,32.5
+ parent: 8364
+ - uid: 25479
+ components:
+ - type: Transform
+ pos: 45.5,32.5
+ parent: 8364
+ - uid: 25486
+ components:
+ - type: Transform
+ pos: 43.5,32.5
+ parent: 8364
+ - uid: 25495
+ components:
+ - type: Transform
+ pos: -48.5,-66.5
+ parent: 8364
+ - uid: 25677
+ components:
+ - type: Transform
+ pos: -0.5,-86.5
+ parent: 8364
+ - uid: 25678
+ components:
+ - type: Transform
+ pos: -10.5,-85.5
+ parent: 8364
+ - uid: 25892
+ components:
+ - type: Transform
+ pos: -54.5,-67.5
+ parent: 8364
+ - uid: 25897
+ components:
+ - type: Transform
+ pos: -52.5,32.5
+ parent: 8364
+ - uid: 25927
+ components:
+ - type: Transform
+ pos: -54.5,28.5
+ parent: 8364
+ - uid: 25949
+ components:
+ - type: Transform
+ pos: 65.5,-79.5
+ parent: 8364
+ - uid: 25966
+ components:
+ - type: Transform
+ pos: -55.5,32.5
+ parent: 8364
+ - uid: 25975
+ components:
+ - type: Transform
+ pos: 49.5,30.5
+ parent: 8364
+ - uid: 25982
+ components:
+ - type: Transform
+ pos: -45.5,34.5
+ parent: 8364
+ - uid: 26033
+ components:
+ - type: Transform
+ pos: -6.5,-93.5
+ parent: 8364
+ - uid: 26065
+ components:
+ - type: Transform
+ pos: -10.5,-91.5
+ parent: 8364
+ - uid: 26072
+ components:
+ - type: Transform
+ pos: -7.5,-93.5
+ parent: 8364
+ - uid: 26081
+ components:
+ - type: Transform
+ pos: -15.5,-82.5
+ parent: 8364
+ - uid: 26082
+ components:
+ - type: Transform
+ pos: -10.5,-84.5
+ parent: 8364
+ - uid: 26088
+ components:
+ - type: Transform
+ pos: -14.5,-82.5
+ parent: 8364
+ - uid: 26102
+ components:
+ - type: Transform
+ pos: 56.5,-78.5
+ parent: 8364
+ - uid: 26103
+ components:
+ - type: Transform
+ pos: -3.5,-93.5
+ parent: 8364
+ - uid: 26104
+ components:
+ - type: Transform
+ pos: 2.5,-93.5
+ parent: 8364
+ - uid: 26106
+ components:
+ - type: Transform
+ pos: 8.5,-91.5
+ parent: 8364
+ - uid: 26107
+ components:
+ - type: Transform
+ pos: 8.5,-90.5
+ parent: 8364
+ - uid: 26381
+ components:
+ - type: Transform
+ pos: 6.5,-91.5
+ parent: 8364
+ - uid: 26388
+ components:
+ - type: Transform
+ pos: -46.5,-65.5
+ parent: 8364
+ - uid: 26628
+ components:
+ - type: Transform
+ pos: -52.5,-64.5
+ parent: 8364
+ - uid: 26670
+ components:
+ - type: Transform
+ pos: -48.5,-67.5
+ parent: 8364
+ - uid: 26877
+ components:
+ - type: Transform
+ pos: -54.5,-63.5
+ parent: 8364
+ - uid: 26924
+ components:
+ - type: Transform
+ pos: -46.5,34.5
+ parent: 8364
+ - uid: 26930
+ components:
+ - type: Transform
+ pos: -52.5,28.5
+ parent: 8364
+ - uid: 26946
+ components:
+ - type: Transform
+ pos: -44.5,-59.5
+ parent: 8364
+ - uid: 26947
+ components:
+ - type: Transform
+ pos: -46.5,-55.5
+ parent: 8364
+ - uid: 26948
+ components:
+ - type: Transform
+ pos: -8.5,-80.5
+ parent: 8364
+ - uid: 26949
+ components:
+ - type: Transform
+ pos: -8.5,-87.5
+ parent: 8364
+ - uid: 26951
+ components:
+ - type: Transform
+ pos: 45.5,34.5
+ parent: 8364
+ - uid: 26961
+ components:
+ - type: Transform
+ pos: 44.5,34.5
+ parent: 8364
+ - uid: 26967
+ components:
+ - type: Transform
+ pos: -51.5,34.5
+ parent: 8364
+ - uid: 26968
+ components:
+ - type: Transform
+ pos: -43.5,28.5
+ parent: 8364
+ - uid: 26969
+ components:
+ - type: Transform
+ pos: -52.5,36.5
+ parent: 8364
+ - uid: 26970
+ components:
+ - type: Transform
+ pos: -55.5,30.5
+ parent: 8364
+ - uid: 26971
+ components:
+ - type: Transform
+ pos: -9.5,-86.5
+ parent: 8364
+ - uid: 26972
+ components:
+ - type: Transform
+ pos: -9.5,-89.5
+ parent: 8364
+ - uid: 26976
+ components:
+ - type: Transform
+ pos: -9.5,-90.5
+ parent: 8364
+ - uid: 26981
+ components:
+ - type: Transform
+ pos: -44.5,-57.5
+ parent: 8364
+ - uid: 26982
+ components:
+ - type: Transform
+ pos: -44.5,-65.5
+ parent: 8364
+ - uid: 26983
+ components:
+ - type: Transform
+ pos: -44.5,-58.5
+ parent: 8364
+ - uid: 27004
+ components:
+ - type: Transform
+ pos: -49.5,41.5
+ parent: 8364
+ - uid: 27005
+ components:
+ - type: Transform
+ pos: -55.5,36.5
+ parent: 8364
+ - uid: 27006
+ components:
+ - type: Transform
+ pos: -47.5,28.5
+ parent: 8364
+ - uid: 27014
+ components:
+ - type: Transform
+ pos: -54.5,30.5
+ parent: 8364
+ - uid: 27015
+ components:
+ - type: Transform
+ pos: -47.5,30.5
+ parent: 8364
+ - uid: 27032
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 8364
+ - uid: 27035
+ components:
+ - type: Transform
+ pos: 52.5,32.5
+ parent: 8364
+ - uid: 27039
+ components:
+ - type: Transform
+ pos: -46.5,38.5
+ parent: 8364
+ - uid: 27040
+ components:
+ - type: Transform
+ pos: -55.5,34.5
+ parent: 8364
+ - uid: 27041
+ components:
+ - type: Transform
+ pos: 67.5,-76.5
+ parent: 8364
+ - uid: 27042
+ components:
+ - type: Transform
+ pos: 68.5,-75.5
+ parent: 8364
+ - uid: 27069
+ components:
+ - type: Transform
+ pos: -36.5,16.5
+ parent: 8364
+ - uid: 27070
+ components:
+ - type: Transform
+ pos: -46.5,28.5
+ parent: 8364
+ - uid: 27071
+ components:
+ - type: Transform
+ pos: -44.5,28.5
+ parent: 8364
+ - uid: 27072
+ components:
+ - type: Transform
+ pos: -52.5,30.5
+ parent: 8364
+ - uid: 27073
+ components:
+ - type: Transform
+ pos: -51.5,30.5
+ parent: 8364
+ - uid: 27074
+ components:
+ - type: Transform
+ pos: -53.5,30.5
+ parent: 8364
+ - uid: 27075
+ components:
+ - type: Transform
+ pos: -45.5,30.5
+ parent: 8364
+ - uid: 27076
+ components:
+ - type: Transform
+ pos: -43.5,30.5
+ parent: 8364
+ - uid: 27077
+ components:
+ - type: Transform
+ pos: -45.5,28.5
+ parent: 8364
+ - uid: 27078
+ components:
+ - type: Transform
+ pos: -44.5,30.5
+ parent: 8364
+ - uid: 27079
+ components:
+ - type: Transform
+ pos: -35.5,15.5
+ parent: 8364
+ - uid: 27081
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 8364
+ - uid: 27082
+ components:
+ - type: Transform
+ pos: 43.5,34.5
+ parent: 8364
+ - uid: 27083
+ components:
+ - type: Transform
+ pos: -43.5,38.5
+ parent: 8364
+ - uid: 27084
+ components:
+ - type: Transform
+ pos: -51.5,36.5
+ parent: 8364
+ - uid: 27085
+ components:
+ - type: Transform
+ pos: 41.5,34.5
+ parent: 8364
+ - uid: 27086
+ components:
+ - type: Transform
+ pos: 49.5,32.5
+ parent: 8364
+ - uid: 27087
+ components:
+ - type: Transform
+ pos: 42.5,34.5
+ parent: 8364
+ - uid: 27088
+ components:
+ - type: Transform
+ pos: 66.5,-76.5
+ parent: 8364
+ - uid: 27089
+ components:
+ - type: Transform
+ pos: 69.5,-79.5
+ parent: 8364
+ - uid: 27090
+ components:
+ - type: Transform
+ pos: 67.5,-78.5
+ parent: 8364
+ - uid: 27091
+ components:
+ - type: Transform
+ pos: 70.5,-80.5
+ parent: 8364
+ - uid: 27092
+ components:
+ - type: Transform
+ pos: 66.5,-78.5
+ parent: 8364
+ - uid: 27093
+ components:
+ - type: Transform
+ pos: 43.5,30.5
+ parent: 8364
+ - uid: 27094
+ components:
+ - type: Transform
+ pos: 42.5,30.5
+ parent: 8364
+ - uid: 27095
+ components:
+ - type: Transform
+ pos: 66.5,-77.5
+ parent: 8364
+ - uid: 27096
+ components:
+ - type: Transform
+ pos: 45.5,38.5
+ parent: 8364
+ - uid: 27097
+ components:
+ - type: Transform
+ pos: -46.5,30.5
+ parent: 8364
+ - uid: 27098
+ components:
+ - type: Transform
+ pos: 45.5,28.5
+ parent: 8364
+ - uid: 27099
+ components:
+ - type: Transform
+ pos: 41.5,30.5
+ parent: 8364
+ - uid: 27100
+ components:
+ - type: Transform
+ pos: 43.5,28.5
+ parent: 8364
+ - uid: 27101
+ components:
+ - type: Transform
+ pos: 44.5,28.5
+ parent: 8364
+ - uid: 27102
+ components:
+ - type: Transform
+ pos: 68.5,-76.5
+ parent: 8364
+ - uid: 27103
+ components:
+ - type: Transform
+ pos: 67.5,-77.5
+ parent: 8364
+ - uid: 27104
+ components:
+ - type: Transform
+ pos: 70.5,-78.5
+ parent: 8364
+ - uid: 27105
+ components:
+ - type: Transform
+ pos: 68.5,-77.5
+ parent: 8364
+ - uid: 27106
+ components:
+ - type: Transform
+ pos: 42.5,28.5
+ parent: 8364
+ - uid: 27107
+ components:
+ - type: Transform
+ pos: 41.5,28.5
+ parent: 8364
+ - uid: 27108
+ components:
+ - type: Transform
+ pos: 69.5,-76.5
+ parent: 8364
+ - uid: 27109
+ components:
+ - type: Transform
+ pos: 69.5,-78.5
+ parent: 8364
+ - uid: 27110
+ components:
+ - type: Transform
+ pos: 70.5,-77.5
+ parent: 8364
+ - uid: 27111
+ components:
+ - type: Transform
+ pos: 69.5,-77.5
+ parent: 8364
+ - uid: 27172
+ components:
+ - type: Transform
+ pos: -7.5,-91.5
+ parent: 8364
+ - uid: 27173
+ components:
+ - type: Transform
+ pos: 66.5,-80.5
+ parent: 8364
+ - uid: 27174
+ components:
+ - type: Transform
+ pos: 66.5,-79.5
+ parent: 8364
+ - uid: 27207
+ components:
+ - type: Transform
+ pos: 4.5,-93.5
+ parent: 8364
+ - uid: 27230
+ components:
+ - type: Transform
+ pos: -8.5,-91.5
+ parent: 8364
+ - uid: 27236
+ components:
+ - type: Transform
+ pos: 76.5,-73.5
+ parent: 8364
+ - uid: 27240
+ components:
+ - type: Transform
+ pos: 75.5,-73.5
+ parent: 8364
+ - uid: 27256
+ components:
+ - type: Transform
+ pos: 78.5,-75.5
+ parent: 8364
+ - uid: 27257
+ components:
+ - type: Transform
+ pos: 79.5,-73.5
+ parent: 8364
+ - uid: 27533
+ components:
+ - type: Transform
+ pos: 7.5,-91.5
+ parent: 8364
+ - uid: 27551
+ components:
+ - type: Transform
+ pos: 76.5,-75.5
+ parent: 8364
+ - uid: 27552
+ components:
+ - type: Transform
+ pos: 77.5,-75.5
+ parent: 8364
+ - uid: 27795
+ components:
+ - type: Transform
+ pos: -53.5,36.5
+ parent: 8364
+ - uid: 27796
+ components:
+ - type: Transform
+ pos: -54.5,36.5
+ parent: 8364
+ - uid: 27797
+ components:
+ - type: Transform
+ pos: -45.5,38.5
+ parent: 8364
+ - uid: 27798
+ components:
+ - type: Transform
+ pos: -44.5,-55.5
+ parent: 8364
+ - uid: 27799
+ components:
+ - type: Transform
+ pos: -44.5,-63.5
+ parent: 8364
+ - uid: 27800
+ components:
+ - type: Transform
+ pos: -44.5,-56.5
+ parent: 8364
+ - uid: 27801
+ components:
+ - type: Transform
+ pos: -44.5,-64.5
+ parent: 8364
+ - uid: 27802
+ components:
+ - type: Transform
+ pos: -54.5,38.5
+ parent: 8364
+ - uid: 27803
+ components:
+ - type: Transform
+ pos: -52.5,38.5
+ parent: 8364
+ - uid: 27804
+ components:
+ - type: Transform
+ pos: -53.5,38.5
+ parent: 8364
+ - uid: 27805
+ components:
+ - type: Transform
+ pos: -55.5,38.5
+ parent: 8364
+ - uid: 27806
+ components:
+ - type: Transform
+ pos: -43.5,36.5
+ parent: 8364
+ - uid: 27807
+ components:
+ - type: Transform
+ pos: -45.5,36.5
+ parent: 8364
+ - uid: 27808
+ components:
+ - type: Transform
+ pos: -44.5,36.5
+ parent: 8364
+ - uid: 27809
+ components:
+ - type: Transform
+ pos: -46.5,36.5
+ parent: 8364
+ - uid: 27810
+ components:
+ - type: Transform
+ pos: -44.5,-66.5
+ parent: 8364
+ - uid: 27811
+ components:
+ - type: Transform
+ pos: -51.5,38.5
+ parent: 8364
+ - uid: 27863
+ components:
+ - type: Transform
+ pos: -47.5,38.5
+ parent: 8364
+ - uid: 27864
+ components:
+ - type: Transform
+ pos: -44.5,38.5
+ parent: 8364
+ - uid: 27865
+ components:
+ - type: Transform
+ pos: 77.5,-73.5
+ parent: 8364
+ - uid: 27866
+ components:
+ - type: Transform
+ pos: 78.5,-73.5
+ parent: 8364
+ - uid: 27867
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 8364
+ - uid: 27868
+ components:
+ - type: Transform
+ pos: 79.5,-75.5
+ parent: 8364
+ - uid: 27870
+ components:
+ - type: Transform
+ pos: 78.5,-77.5
+ parent: 8364
+ - uid: 27871
+ components:
+ - type: Transform
+ pos: 75.5,-77.5
+ parent: 8364
+ - uid: 27989
+ components:
+ - type: Transform
+ pos: 76.5,-77.5
+ parent: 8364
+ - uid: 27997
+ components:
+ - type: Transform
+ pos: -8.5,-92.5
+ parent: 8364
+ - uid: 28005
+ components:
+ - type: Transform
+ pos: -7.5,-92.5
+ parent: 8364
+ - uid: 28006
+ components:
+ - type: Transform
+ pos: -6.5,-92.5
+ parent: 8364
+ - uid: 28007
+ components:
+ - type: Transform
+ pos: -5.5,-92.5
+ parent: 8364
+ - uid: 28008
+ components:
+ - type: Transform
+ pos: -4.5,-92.5
+ parent: 8364
+ - uid: 28009
+ components:
+ - type: Transform
+ pos: -3.5,-92.5
+ parent: 8364
+ - uid: 28010
+ components:
+ - type: Transform
+ pos: -2.5,-92.5
+ parent: 8364
+ - uid: 28011
+ components:
+ - type: Transform
+ pos: -1.5,-92.5
+ parent: 8364
+ - uid: 28012
+ components:
+ - type: Transform
+ pos: -0.5,-92.5
+ parent: 8364
+ - uid: 28013
+ components:
+ - type: Transform
+ pos: 1.5,-92.5
+ parent: 8364
+ - uid: 28014
+ components:
+ - type: Transform
+ pos: 2.5,-92.5
+ parent: 8364
+ - uid: 28015
+ components:
+ - type: Transform
+ pos: 3.5,-92.5
+ parent: 8364
+ - uid: 28016
+ components:
+ - type: Transform
+ pos: 4.5,-92.5
+ parent: 8364
+ - uid: 28017
+ components:
+ - type: Transform
+ pos: 5.5,-92.5
+ parent: 8364
+ - uid: 28018
+ components:
+ - type: Transform
+ pos: 6.5,-92.5
+ parent: 8364
+ - uid: 28019
+ components:
+ - type: Transform
+ pos: 7.5,-92.5
+ parent: 8364
+ - uid: 28020
+ components:
+ - type: Transform
+ pos: 0.5,-92.5
+ parent: 8364
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 2846
+ components:
+ - type: Transform
+ pos: 40.5,-2.5
+ parent: 8364
+ - uid: 2847
+ components:
+ - type: Transform
+ pos: 39.5,-0.5
+ parent: 8364
+ - uid: 2848
+ components:
+ - type: Transform
+ pos: 39.5,0.5
+ parent: 8364
+ - uid: 10530
+ components:
+ - type: Transform
+ pos: 40.5,-0.5
+ parent: 8364
+ - uid: 10600
+ components:
+ - type: Transform
+ pos: 39.5,-1.5
+ parent: 8364
+ - uid: 10602
+ components:
+ - type: Transform
+ pos: 39.5,-2.5
+ parent: 8364
+ - uid: 10606
+ components:
+ - type: Transform
+ pos: 38.5,0.5
+ parent: 8364
+ - uid: 10607
+ components:
+ - type: Transform
+ pos: 38.5,-0.5
+ parent: 8364
+ - uid: 10611
+ components:
+ - type: Transform
+ pos: 38.5,-1.5
+ parent: 8364
+ - uid: 10617
+ components:
+ - type: Transform
+ pos: 38.5,-2.5
+ parent: 8364
+ - uid: 10618
+ components:
+ - type: Transform
+ pos: 37.5,0.5
+ parent: 8364
+ - uid: 10635
+ components:
+ - type: Transform
+ pos: 37.5,-0.5
+ parent: 8364
+ - uid: 10636
+ components:
+ - type: Transform
+ pos: 37.5,-1.5
+ parent: 8364
+ - uid: 10717
+ components:
+ - type: Transform
+ pos: 37.5,-2.5
+ parent: 8364
+ - uid: 10720
+ components:
+ - type: Transform
+ pos: 36.5,0.5
+ parent: 8364
+ - uid: 10721
+ components:
+ - type: Transform
+ pos: 36.5,-0.5
+ parent: 8364
+ - uid: 10726
+ components:
+ - type: Transform
+ pos: 36.5,-1.5
+ parent: 8364
+ - uid: 10727
+ components:
+ - type: Transform
+ pos: 36.5,-2.5
+ parent: 8364
+ - uid: 10728
+ components:
+ - type: Transform
+ pos: 35.5,0.5
+ parent: 8364
+ - uid: 10729
+ components:
+ - type: Transform
+ pos: 35.5,-0.5
+ parent: 8364
+ - uid: 10730
+ components:
+ - type: Transform
+ pos: 35.5,-1.5
+ parent: 8364
+ - uid: 10731
+ components:
+ - type: Transform
+ pos: 35.5,-2.5
+ parent: 8364
+ - uid: 22554
+ components:
+ - type: Transform
+ pos: 40.5,-1.5
+ parent: 8364
+ - uid: 22651
+ components:
+ - type: Transform
+ pos: 40.5,0.5
+ parent: 8364
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 8204
+ components:
+ - type: Transform
+ pos: 12.5,-64.5
+ parent: 8364
+ - uid: 8205
+ components:
+ - type: Transform
+ pos: 13.5,-66.5
+ parent: 8364
+ - uid: 8206
+ components:
+ - type: Transform
+ pos: 14.5,-65.5
+ parent: 8364
+ - uid: 9347
+ components:
+ - type: Transform
+ pos: 14.5,-66.5
+ parent: 8364
+ - uid: 15467
+ components:
+ - type: Transform
+ pos: 14.5,-64.5
+ parent: 8364
+ - uid: 16130
+ components:
+ - type: Transform
+ pos: 13.5,-65.5
+ parent: 8364
+ - uid: 16259
+ components:
+ - type: Transform
+ pos: 13.5,-64.5
+ parent: 8364
+ - uid: 16285
+ components:
+ - type: Transform
+ pos: 12.5,-66.5
+ parent: 8364
+ - uid: 16460
+ components:
+ - type: Transform
+ pos: 12.5,-65.5
+ parent: 8364
+- proto: AtmosFixOxygenMarker
+ entities:
+ - uid: 9348
+ components:
+ - type: Transform
+ pos: 16.5,-64.5
+ parent: 8364
+ - uid: 9349
+ components:
+ - type: Transform
+ pos: 16.5,-66.5
+ parent: 8364
+ - uid: 9350
+ components:
+ - type: Transform
+ pos: 17.5,-64.5
+ parent: 8364
+ - uid: 9351
+ components:
+ - type: Transform
+ pos: 17.5,-65.5
+ parent: 8364
+ - uid: 9352
+ components:
+ - type: Transform
+ pos: 18.5,-64.5
+ parent: 8364
+ - uid: 9353
+ components:
+ - type: Transform
+ pos: 18.5,-65.5
+ parent: 8364
+ - uid: 9354
+ components:
+ - type: Transform
+ pos: 18.5,-66.5
+ parent: 8364
+ - uid: 15468
+ components:
+ - type: Transform
+ pos: 16.5,-65.5
+ parent: 8364
+ - uid: 15469
+ components:
+ - type: Transform
+ pos: 17.5,-66.5
+ parent: 8364
+- proto: AtmosFixPlasmaMarker
+ entities:
+ - uid: 14723
+ components:
+ - type: Transform
+ pos: 26.5,-48.5
+ parent: 8364
+ - uid: 14724
+ components:
+ - type: Transform
+ pos: 26.5,-47.5
+ parent: 8364
+ - uid: 14727
+ components:
+ - type: Transform
+ pos: 27.5,-48.5
+ parent: 8364
+ - uid: 15003
+ components:
+ - type: Transform
+ pos: 27.5,-47.5
+ parent: 8364
+ - uid: 15318
+ components:
+ - type: Transform
+ pos: 27.5,-46.5
+ parent: 8364
+ - uid: 15353
+ components:
+ - type: Transform
+ pos: 28.5,-47.5
+ parent: 8364
+ - uid: 15374
+ components:
+ - type: Transform
+ pos: 28.5,-46.5
+ parent: 8364
+ - uid: 15475
+ components:
+ - type: Transform
+ pos: 26.5,-46.5
+ parent: 8364
+ - uid: 15476
+ components:
+ - type: Transform
+ pos: 28.5,-48.5
+ parent: 8364
+- proto: Autolathe
+ entities:
+ - uid: 13406
+ components:
+ - type: Transform
+ pos: 69.5,-19.5
+ parent: 8364
+ - type: MaterialStorage
+ materialWhiteList:
+ - Steel
+ - Plastic
+ - Wood
+ - Glass
+ - Cloth
+ - uid: 15361
+ components:
+ - type: Transform
+ pos: -28.5,-24.5
+ parent: 8364
+ - type: MaterialStorage
+ materialWhiteList:
+ - Steel
+ - Plastic
+ - Wood
+ - Glass
+ - Cloth
+ - uid: 17801
+ components:
+ - type: Transform
+ pos: 2.5,-52.5
+ parent: 8364
+ - type: MaterialStorage
+ materialWhiteList:
+ - Steel
+ - Plastic
+ - Wood
+ - Glass
+ - Cloth
+- proto: BackgammonBoard
+ entities:
+ - uid: 6519
+ components:
+ - type: Transform
+ pos: 24.02721,-8.402973
+ parent: 8364
+ - uid: 11674
+ components:
+ - type: Transform
+ pos: 63.5,-7.5
+ parent: 8364
+- proto: BagpipeInstrument
+ entities:
+ - uid: 26004
+ components:
+ - type: Transform
+ pos: 22.356016,2.7478647
+ parent: 8364
+- proto: BannerCargo
+ entities:
+ - uid: 27596
+ components:
+ - type: Transform
+ pos: -32.5,-22.5
+ parent: 8364
+- proto: Barricade
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 22.5,26.5
+ parent: 8364
+ - uid: 55
+ components:
+ - type: Transform
+ pos: 22.5,29.5
+ parent: 8364
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 22.5,28.5
+ parent: 8364
+ - uid: 514
+ components:
+ - type: Transform
+ pos: -50.5,3.5
+ parent: 8364
+ - uid: 5016
+ components:
+ - type: Transform
+ pos: -20.5,12.5
+ parent: 8364
+ - uid: 11390
+ components:
+ - type: Transform
+ pos: 65.5,15.5
+ parent: 8364
+ - uid: 11653
+ components:
+ - type: Transform
+ pos: 62.5,16.5
+ parent: 8364
+ - uid: 11654
+ components:
+ - type: Transform
+ pos: 61.5,16.5
+ parent: 8364
+ - uid: 11655
+ components:
+ - type: Transform
+ pos: 60.5,16.5
+ parent: 8364
+ - uid: 13253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -32.5,19.5
+ parent: 8364
+ - uid: 13254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -34.5,22.5
+ parent: 8364
+ - uid: 13308
+ components:
+ - type: Transform
+ pos: -39.5,21.5
+ parent: 8364
+ - uid: 13484
+ components:
+ - type: Transform
+ pos: -23.5,4.5
+ parent: 8364
+ - uid: 13485
+ components:
+ - type: Transform
+ pos: -18.5,4.5
+ parent: 8364
+ - uid: 13755
+ components:
+ - type: Transform
+ pos: -55.5,7.5
+ parent: 8364
+ - uid: 15300
+ components:
+ - type: Transform
+ pos: -30.5,-47.5
+ parent: 8364
+ - uid: 15578
+ components:
+ - type: Transform
+ pos: -34.5,-45.5
+ parent: 8364
+ - uid: 15595
+ components:
+ - type: Transform
+ pos: -33.5,-52.5
+ parent: 8364
+ - uid: 15596
+ components:
+ - type: Transform
+ pos: -30.5,-54.5
+ parent: 8364
+ - uid: 15597
+ components:
+ - type: Transform
+ pos: -30.5,-53.5
+ parent: 8364
+ - uid: 15598
+ components:
+ - type: Transform
+ pos: -33.5,-55.5
+ parent: 8364
+ - uid: 15711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -37.5,-58.5
+ parent: 8364
+ - uid: 15803
+ components:
+ - type: Transform
+ pos: -30.5,-44.5
+ parent: 8364
+ - uid: 15944
+ components:
+ - type: Transform
+ pos: -19.5,-53.5
+ parent: 8364
+ - uid: 20038
+ components:
+ - type: Transform
+ pos: 87.5,-23.5
+ parent: 8364
+ - uid: 20039
+ components:
+ - type: Transform
+ pos: 87.5,-28.5
+ parent: 8364
+- proto: BarricadeBlock
+ entities:
+ - uid: 2501
+ components:
+ - type: Transform
+ pos: -31.5,13.5
+ parent: 8364
+- proto: BarSignMaidCafe
+ entities:
+ - uid: 5444
+ components:
+ - type: Transform
+ pos: 26.5,-11.5
+ parent: 8364
+- proto: BarSignOfficerBeersky
+ entities:
+ - uid: 7136
+ components:
+ - type: Transform
+ pos: -34.5,17.5
+ parent: 8364
+- proto: BaseComputer
+ entities:
+ - uid: 5355
+ components:
+ - type: Transform
+ pos: 56.5,-29.5
+ parent: 8364
+ - uid: 21139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-20.5
+ parent: 8364
+ - uid: 25918
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,-51.5
+ parent: 8364
+- proto: BaseComputerAiAccess
+ entities:
+ - uid: 28183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-26.5
+ parent: 8364
+- proto: BaseGasCondenser
+ entities:
+ - uid: 5562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-19.5
+ parent: 8364
+ - uid: 18633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-42.5
+ parent: 8364
+- proto: Basketball
+ entities:
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 33.5,-2.5
+ parent: 8364
+- proto: BassGuitarInstrument
+ entities:
+ - uid: 25901
+ components:
+ - type: Transform
+ pos: 22.460173,2.6171174
+ parent: 8364
+- proto: BeachBall
+ entities:
+ - uid: 20679
+ components:
+ - type: Transform
+ pos: 34.165627,9.592048
+ parent: 8364
+ - uid: 27654
+ components:
+ - type: Transform
+ pos: 6.549402,-27.166641
+ parent: 8364
+- proto: Beaker
+ entities:
+ - uid: 7260
+ components:
+ - type: Transform
+ pos: 29.5,1.5
+ parent: 8364
+ - uid: 21180
+ components:
+ - type: Transform
+ pos: 74.27338,-18.287746
+ parent: 8364
+ - uid: 26550
+ components:
+ - type: Transform
+ pos: -6.0280805,52.564606
+ parent: 8364
+- proto: Bed
+ entities:
+ - uid: 777
+ components:
+ - type: Transform
+ pos: -31.5,-24.5
+ parent: 8364
+ - uid: 2008
+ components:
+ - type: Transform
+ pos: 55.5,-49.5
+ parent: 8364
+ - uid: 2037
+ components:
+ - type: Transform
+ pos: 26.5,-34.5
+ parent: 8364
+ - uid: 2214
+ components:
+ - type: Transform
+ pos: 26.5,-35.5
+ parent: 8364
+ - uid: 2222
+ components:
+ - type: Transform
+ pos: 24.5,-28.5
+ parent: 8364
+ - uid: 5221
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 8364
+ - uid: 5757
+ components:
+ - type: Transform
+ pos: 24.5,-29.5
+ parent: 8364
+ - uid: 6469
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 8364
+ - uid: 6470
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 8364
+ - uid: 6471
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 8364
+ - uid: 6482
+ components:
+ - type: Transform
+ pos: 13.5,14.5
+ parent: 8364
+ - uid: 6483
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 8364
+ - uid: 6670
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 8364
+ - uid: 6935
+ components:
+ - type: Transform
+ pos: 37.5,-51.5
+ parent: 8364
+ - uid: 8422
+ components:
+ - type: Transform
+ pos: 44.5,-58.5
+ parent: 8364
+ - uid: 8630
+ components:
+ - type: Transform
+ pos: -10.5,23.5
+ parent: 8364
+ - uid: 8631
+ components:
+ - type: Transform
+ pos: -6.5,23.5
+ parent: 8364
+ - uid: 8632
+ components:
+ - type: Transform
+ pos: -2.5,23.5
+ parent: 8364
+ - uid: 9361
+ components:
+ - type: Transform
+ pos: -6.5,31.5
+ parent: 8364
+ - uid: 10570
+ components:
+ - type: Transform
+ pos: 33.5,-0.5
+ parent: 8364
+ - uid: 10774
+ components:
+ - type: Transform
+ pos: 46.5,-58.5
+ parent: 8364
+ - uid: 15326
+ components:
+ - type: Transform
+ pos: 63.5,-3.5
+ parent: 8364
+ - uid: 18647
+ components:
+ - type: Transform
+ pos: -2.5,-61.5
+ parent: 8364
+ - uid: 19064
+ components:
+ - type: Transform
+ pos: 24.5,-27.5
+ parent: 8364
+ - uid: 20156
+ components:
+ - type: Transform
+ pos: -19.5,16.5
+ parent: 8364
+ - uid: 21210
+ components:
+ - type: Transform
+ pos: 71.5,-35.5
+ parent: 8364
+ - uid: 21244
+ components:
+ - type: Transform
+ pos: 15.5,41.5
+ parent: 8364
+ - uid: 21743
+ components:
+ - type: Transform
+ pos: -30.5,-74.5
+ parent: 8364
+ - uid: 26349
+ components:
+ - type: Transform
+ pos: -21.5,40.5
+ parent: 8364
+ - uid: 26350
+ components:
+ - type: Transform
+ pos: -18.5,40.5
+ parent: 8364
+ - uid: 26351
+ components:
+ - type: Transform
+ pos: -17.5,48.5
+ parent: 8364
+ - uid: 26352
+ components:
+ - type: Transform
+ pos: -20.5,48.5
+ parent: 8364
+- proto: BedsheetCaptain
+ entities:
+ - uid: 5315
+ components:
+ - type: Transform
+ pos: 8.5,-21.5
+ parent: 8364
+- proto: BedsheetCE
+ entities:
+ - uid: 17952
+ components:
+ - type: Transform
+ pos: -2.5,-61.5
+ parent: 8364
+- proto: BedsheetCosmos
+ entities:
+ - uid: 5579
+ components:
+ - type: Transform
+ pos: 6.5,6.5
+ parent: 8364
+- proto: BedsheetGreen
+ entities:
+ - uid: 5471
+ components:
+ - type: Transform
+ pos: 44.5,-58.5
+ parent: 8364
+ - uid: 5472
+ components:
+ - type: Transform
+ pos: 37.5,-51.5
+ parent: 8364
+ - uid: 5916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-58.5
+ parent: 8364
+- proto: BedsheetHOP
+ entities:
+ - uid: 21278
+ components:
+ - type: Transform
+ pos: -10.5,-27.5
+ parent: 8364
+- proto: BedsheetHOS
+ entities:
+ - uid: 21245
+ components:
+ - type: Transform
+ pos: 15.5,41.5
+ parent: 8364
+- proto: BedsheetMedical
+ entities:
+ - uid: 5451
+ components:
+ - type: Transform
+ pos: 32.5,-27.5
+ parent: 8364
+ - uid: 5452
+ components:
+ - type: Transform
+ pos: 30.5,-27.5
+ parent: 8364
+ - uid: 9485
+ components:
+ - type: Transform
+ pos: -6.5,31.5
+ parent: 8364
+ - uid: 18601
+ components:
+ - type: Transform
+ pos: 29.5,-36.5
+ parent: 8364
+ - uid: 18602
+ components:
+ - type: Transform
+ pos: 32.5,-36.5
+ parent: 8364
+ - uid: 18646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-29.5
+ parent: 8364
+ - uid: 19287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-28.5
+ parent: 8364
+ - uid: 20142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-27.5
+ parent: 8364
+- proto: BedsheetOrange
+ entities:
+ - uid: 26353
+ components:
+ - type: Transform
+ pos: -20.5,48.5
+ parent: 8364
+ - uid: 26355
+ components:
+ - type: Transform
+ pos: -18.5,40.5
+ parent: 8364
+ - uid: 26356
+ components:
+ - type: Transform
+ pos: -21.5,40.5
+ parent: 8364
+- proto: BedsheetQM
+ entities:
+ - uid: 5287
+ components:
+ - type: Transform
+ pos: -31.5,-24.5
+ parent: 8364
+- proto: BedsheetRD
+ entities:
+ - uid: 21243
+ components:
+ - type: Transform
+ pos: 71.5,-35.5
+ parent: 8364
+- proto: BedsheetSpawner
+ entities:
+ - uid: 5583
+ components:
+ - type: Transform
+ pos: 6.5,15.5
+ parent: 8364
+ - uid: 6461
+ components:
+ - type: Transform
+ pos: 55.5,-49.5
+ parent: 8364
+ - uid: 6465
+ components:
+ - type: Transform
+ pos: 6.5,9.5
+ parent: 8364
+ - uid: 6466
+ components:
+ - type: Transform
+ pos: 6.5,12.5
+ parent: 8364
+ - uid: 6484
+ components:
+ - type: Transform
+ pos: 13.5,14.5
+ parent: 8364
+ - uid: 6485
+ components:
+ - type: Transform
+ pos: 17.5,14.5
+ parent: 8364
+ - uid: 8925
+ components:
+ - type: Transform
+ pos: -19.5,16.5
+ parent: 8364
+ - uid: 10569
+ components:
+ - type: Transform
+ pos: 33.5,-0.5
+ parent: 8364
+ - uid: 15325
+ components:
+ - type: Transform
+ pos: 63.5,-3.5
+ parent: 8364
+- proto: BedsheetSyndie
+ entities:
+ - uid: 26354
+ components:
+ - type: Transform
+ pos: -17.5,48.5
+ parent: 8364
+- proto: BedsheetWhite
+ entities:
+ - uid: 8627
+ components:
+ - type: Transform
+ pos: -10.5,23.5
+ parent: 8364
+ - uid: 8628
+ components:
+ - type: Transform
+ pos: -6.5,23.5
+ parent: 8364
+ - uid: 8629
+ components:
+ - type: Transform
+ pos: -2.5,23.5
+ parent: 8364
+- proto: BigBox
+ entities:
+ - uid: 2277
+ components:
+ - type: Transform
+ pos: 46.455715,-47.446358
+ parent: 8364
+ - uid: 25967
+ components:
+ - type: Transform
+ pos: -25.023743,-15.516048
+ parent: 8364
+- proto: BikeHorn
entities:
- uid: 7191
components:
@@ -17833,6 +20699,12 @@ entities:
- type: Transform
pos: 27.5,-41.5
parent: 8364
+ - uid: 3542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-86.5
+ parent: 8364
- uid: 3568
components:
- type: MetaData
@@ -17840,6 +20712,12 @@ entities:
- type: Transform
pos: -42.5,-49.5
parent: 8364
+ - uid: 3605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-86.5
+ parent: 8364
- uid: 3750
components:
- type: Transform
@@ -17850,6 +20728,12 @@ entities:
- type: Transform
pos: -6.5,-76.5
parent: 8364
+ - uid: 4205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-86.5
+ parent: 8364
- uid: 4704
components:
- type: Transform
@@ -17899,15 +20783,22 @@ entities:
- type: Transform
pos: -5.5,-76.5
parent: 8364
+ - uid: 13849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,-86.5
+ parent: 8364
- uid: 13910
components:
- type: Transform
pos: -61.5,-21.5
parent: 8364
- - uid: 17676
+ - uid: 15544
components:
- type: Transform
- pos: 19.5,-86.5
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-86.5
parent: 8364
- uid: 18326
components:
@@ -17944,16 +20835,6 @@ entities:
- type: Transform
pos: 91.5,-25.5
parent: 8364
- - uid: 20133
- components:
- - type: Transform
- pos: 19.5,-83.5
- parent: 8364
- - uid: 20134
- components:
- - type: Transform
- pos: 19.5,-84.5
- parent: 8364
- uid: 20180
components:
- type: Transform
@@ -17979,10 +20860,11 @@ entities:
- type: Transform
pos: 15.5,-49.5
parent: 8364
- - uid: 26646
+ - uid: 25091
components:
- type: Transform
- pos: 19.5,-85.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-86.5
parent: 8364
- uid: 26666
components:
@@ -18288,15 +21170,16 @@ entities:
parent: 8364
- proto: BorgCharger
entities:
- - uid: 25975
+ - uid: 3719
components:
- type: Transform
- pos: 2.5,-10.5
+ pos: -4.5,-14.5
parent: 8364
- - uid: 26072
+ - uid: 4207
components:
- type: Transform
- pos: -3.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-14.5
parent: 8364
- uid: 27381
components:
@@ -18318,11 +21201,6 @@ entities:
- type: Transform
pos: -48.5,-16.5
parent: 8364
- - uid: 27996
- components:
- - type: Transform
- pos: 33.5,-84.5
- parent: 8364
- proto: BoxBeaker
entities:
- uid: 18896
@@ -18423,7 +21301,7 @@ entities:
- uid: 9388
components:
- type: Transform
- pos: -2.4849367,38.8545
+ pos: -2.3561149,38.959312
parent: 8364
- uid: 9589
components:
@@ -18479,10 +21357,17 @@ entities:
- type: Transform
pos: -55.5,-11.5
parent: 8364
- - uid: 25859
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 6122
+ components:
+ - type: Transform
+ pos: -20.684553,-13.423042
+ parent: 8364
+ - uid: 8459
components:
- type: Transform
- pos: -0.48406625,-11.440446
+ pos: 3.5576177,24.479216
parent: 8364
- proto: BoxFolderGrey
entities:
@@ -18506,7 +21391,7 @@ entities:
- uid: 8803
components:
- type: Transform
- pos: -11.5,32.5
+ pos: -11.686346,32.74469
parent: 8364
- uid: 9172
components:
@@ -18560,11 +21445,6 @@ entities:
- type: Transform
pos: 69.5,-35.5
parent: 8364
- - uid: 27175
- components:
- - type: Transform
- pos: 26.534222,-106.3969
- parent: 8364
- proto: BoxFolderYellow
entities:
- uid: 6601
@@ -18648,7 +21528,15 @@ entities:
- uid: 9389
components:
- type: Transform
- pos: -2.5193274,39.107735
+ pos: -2.7208788,39.167786
+ parent: 8364
+- proto: BoxingBell
+ entities:
+ - uid: 11158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,14.5
parent: 8364
- proto: BoxLatexGloves
entities:
@@ -18678,11 +21566,6 @@ entities:
- type: Transform
pos: 55.44968,-51.427322
parent: 8364
- - uid: 14437
- components:
- - type: Transform
- pos: -20.70863,-5.352804
- parent: 8364
- proto: BoxLightMixed
entities:
- uid: 2271
@@ -18695,25 +21578,25 @@ entities:
- type: Transform
pos: 6.392988,-63.281517
parent: 8364
+ - uid: 9310
+ components:
+ - type: Transform
+ pos: 2.5504029,-35.390793
+ parent: 8364
- uid: 14439
components:
- type: Transform
- pos: -20.20863,-5.399679
+ pos: -20.550636,-5.3221245
parent: 8364
- proto: BoxLighttube
entities:
- uid: 14438
components:
- type: Transform
- pos: -20.536755,-5.462179
+ pos: -20.331778,-5.4367876
parent: 8364
- proto: BoxLighttubeHoliday
entities:
- - uid: 16587
- components:
- - type: Transform
- pos: 2.6634254,-34.550735
- parent: 8364
- uid: 16591
components:
- type: Transform
@@ -18780,6 +21663,13 @@ entities:
- type: Transform
pos: 2.4019985,-33.752228
parent: 8364
+- proto: BoxWarmLightbulb
+ entities:
+ - uid: 3152
+ components:
+ - type: Transform
+ pos: -20.727808,-5.2387333
+ parent: 8364
- proto: BoxZiptie
entities:
- uid: 542
@@ -18897,6 +21787,44 @@ entities:
- type: Transform
pos: 5.6363735,-36.502228
parent: 8364
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 4248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-86.5
+ parent: 8364
+ - uid: 22313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-71.5
+ parent: 8364
+ - uid: 23908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-71.5
+ parent: 8364
+ - uid: 27061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-82.5
+ parent: 8364
+ - uid: 27063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-86.5
+ parent: 8364
+ - uid: 27850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-82.5
+ parent: 8364
- proto: ButtonFrameExit
entities:
- uid: 3810
@@ -18931,11 +21859,6 @@ entities:
- type: Transform
pos: 9.5,-77.5
parent: 8364
- - uid: 144
- components:
- - type: Transform
- pos: 14.5,-77.5
- parent: 8364
- uid: 346
components:
- type: Transform
@@ -19036,6 +21959,11 @@ entities:
- type: Transform
pos: -25.5,-0.5
parent: 8364
+ - uid: 566
+ components:
+ - type: Transform
+ pos: -1.5,-15.5
+ parent: 8364
- uid: 577
components:
- type: Transform
@@ -19116,6 +22044,11 @@ entities:
- type: Transform
pos: -78.5,-4.5
parent: 8364
+ - uid: 784
+ components:
+ - type: Transform
+ pos: -3.5,-12.5
+ parent: 8364
- uid: 1107
components:
- type: Transform
@@ -19556,6 +22489,46 @@ entities:
- type: Transform
pos: 34.5,-64.5
parent: 8364
+ - uid: 3281
+ components:
+ - type: Transform
+ pos: -0.5,-16.5
+ parent: 8364
+ - uid: 3631
+ components:
+ - type: Transform
+ pos: -2.5,-17.5
+ parent: 8364
+ - uid: 3632
+ components:
+ - type: Transform
+ pos: -3.5,-14.5
+ parent: 8364
+ - uid: 3633
+ components:
+ - type: Transform
+ pos: -3.5,-15.5
+ parent: 8364
+ - uid: 3634
+ components:
+ - type: Transform
+ pos: -3.5,-17.5
+ parent: 8364
+ - uid: 3653
+ components:
+ - type: Transform
+ pos: 0.5,-12.5
+ parent: 8364
+ - uid: 3654
+ components:
+ - type: Transform
+ pos: -1.5,-17.5
+ parent: 8364
+ - uid: 3671
+ components:
+ - type: Transform
+ pos: -3.5,-16.5
+ parent: 8364
- uid: 3681
components:
- type: Transform
@@ -19571,6 +22544,11 @@ entities:
- type: Transform
pos: 25.5,-60.5
parent: 8364
+ - uid: 3701
+ components:
+ - type: Transform
+ pos: 2.5,-15.5
+ parent: 8364
- uid: 3702
components:
- type: Transform
@@ -19656,6 +22634,11 @@ entities:
- type: Transform
pos: 17.5,-42.5
parent: 8364
+ - uid: 3772
+ components:
+ - type: Transform
+ pos: -0.5,-12.5
+ parent: 8364
- uid: 3792
components:
- type: Transform
@@ -19676,11 +22659,6 @@ entities:
- type: Transform
pos: 11.5,-77.5
parent: 8364
- - uid: 3826
- components:
- - type: Transform
- pos: 12.5,-77.5
- parent: 8364
- uid: 3827
components:
- type: Transform
@@ -19691,6 +22669,11 @@ entities:
- type: Transform
pos: 12.5,-71.5
parent: 8364
+ - uid: 3834
+ components:
+ - type: Transform
+ pos: -2.5,-12.5
+ parent: 8364
- uid: 3839
components:
- type: Transform
@@ -19771,16 +22754,6 @@ entities:
- type: Transform
pos: 2.5,-63.5
parent: 8364
- - uid: 4005
- components:
- - type: Transform
- pos: 13.5,-77.5
- parent: 8364
- - uid: 4031
- components:
- - type: Transform
- pos: -19.5,-72.5
- parent: 8364
- uid: 4032
components:
- type: Transform
@@ -19816,6 +22789,146 @@ entities:
- type: Transform
pos: 25.5,-51.5
parent: 8364
+ - uid: 4251
+ components:
+ - type: Transform
+ pos: 19.5,-81.5
+ parent: 8364
+ - uid: 4252
+ components:
+ - type: Transform
+ pos: 20.5,-81.5
+ parent: 8364
+ - uid: 4253
+ components:
+ - type: Transform
+ pos: 16.5,-81.5
+ parent: 8364
+ - uid: 4254
+ components:
+ - type: Transform
+ pos: 14.5,-81.5
+ parent: 8364
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: 24.5,-81.5
+ parent: 8364
+ - uid: 4256
+ components:
+ - type: Transform
+ pos: 25.5,-81.5
+ parent: 8364
+ - uid: 4257
+ components:
+ - type: Transform
+ pos: 22.5,-81.5
+ parent: 8364
+ - uid: 4258
+ components:
+ - type: Transform
+ pos: 25.5,-80.5
+ parent: 8364
+ - uid: 4271
+ components:
+ - type: Transform
+ pos: -24.5,-76.5
+ parent: 8364
+ - uid: 4284
+ components:
+ - type: Transform
+ pos: -21.5,-77.5
+ parent: 8364
+ - uid: 4292
+ components:
+ - type: Transform
+ pos: -22.5,-76.5
+ parent: 8364
+ - uid: 4298
+ components:
+ - type: Transform
+ pos: -24.5,-74.5
+ parent: 8364
+ - uid: 4359
+ components:
+ - type: Transform
+ pos: 25.5,-79.5
+ parent: 8364
+ - uid: 4360
+ components:
+ - type: Transform
+ pos: 25.5,-78.5
+ parent: 8364
+ - uid: 4381
+ components:
+ - type: Transform
+ pos: 18.5,-81.5
+ parent: 8364
+ - uid: 4382
+ components:
+ - type: Transform
+ pos: 15.5,-81.5
+ parent: 8364
+ - uid: 4383
+ components:
+ - type: Transform
+ pos: 17.5,-81.5
+ parent: 8364
+ - uid: 4384
+ components:
+ - type: Transform
+ pos: 21.5,-81.5
+ parent: 8364
+ - uid: 4389
+ components:
+ - type: Transform
+ pos: 12.5,-81.5
+ parent: 8364
+ - uid: 4391
+ components:
+ - type: Transform
+ pos: 23.5,-81.5
+ parent: 8364
+ - uid: 4392
+ components:
+ - type: Transform
+ pos: 25.5,-77.5
+ parent: 8364
+ - uid: 4393
+ components:
+ - type: Transform
+ pos: 25.5,-76.5
+ parent: 8364
+ - uid: 4408
+ components:
+ - type: Transform
+ pos: -21.5,-82.5
+ parent: 8364
+ - uid: 4439
+ components:
+ - type: Transform
+ pos: -19.5,-81.5
+ parent: 8364
+ - uid: 4440
+ components:
+ - type: Transform
+ pos: -18.5,-81.5
+ parent: 8364
+ - uid: 4441
+ components:
+ - type: Transform
+ pos: -19.5,-83.5
+ parent: 8364
+ - uid: 4448
+ components:
+ - type: Transform
+ pos: -20.5,-83.5
+ parent: 8364
+ - uid: 4459
+ components:
+ - type: Transform
+ pos: -18.5,-80.5
+ parent: 8364
- uid: 4520
components:
- type: Transform
@@ -19831,15 +22944,10 @@ entities:
- type: Transform
pos: 0.5,-60.5
parent: 8364
- - uid: 4696
- components:
- - type: Transform
- pos: 13.5,-83.5
- parent: 8364
- - uid: 4699
+ - uid: 4623
components:
- type: Transform
- pos: 18.5,-77.5
+ pos: 13.5,-81.5
parent: 8364
- uid: 4710
components:
@@ -19851,6 +22959,36 @@ entities:
- type: Transform
pos: -12.5,36.5
parent: 8364
+ - uid: 4940
+ components:
+ - type: Transform
+ pos: -19.5,-84.5
+ parent: 8364
+ - uid: 4941
+ components:
+ - type: Transform
+ pos: -21.5,-73.5
+ parent: 8364
+ - uid: 4949
+ components:
+ - type: Transform
+ pos: -22.5,-72.5
+ parent: 8364
+ - uid: 4953
+ components:
+ - type: Transform
+ pos: -24.5,-75.5
+ parent: 8364
+ - uid: 4955
+ components:
+ - type: Transform
+ pos: -20.5,-81.5
+ parent: 8364
+ - uid: 4959
+ components:
+ - type: Transform
+ pos: -21.5,-76.5
+ parent: 8364
- uid: 5069
components:
- type: Transform
@@ -20056,36 +23194,16 @@ entities:
- type: Transform
pos: 4.5,-14.5
parent: 8364
- - uid: 5739
- components:
- - type: Transform
- pos: -2.5,-16.5
- parent: 8364
- uid: 5750
components:
- type: Transform
pos: -0.5,-3.5
parent: 8364
- - uid: 5751
- components:
- - type: Transform
- pos: -3.5,-16.5
- parent: 8364
- uid: 5762
components:
- type: Transform
pos: -0.5,-7.5
parent: 8364
- - uid: 5865
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 8364
- - uid: 5876
- components:
- - type: Transform
- pos: -1.5,-24.5
- parent: 8364
- uid: 5895
components:
- type: Transform
@@ -20391,36 +23509,6 @@ entities:
- type: Transform
pos: -7.5,-8.5
parent: 8364
- - uid: 6088
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 8364
- - uid: 6089
- components:
- - type: Transform
- pos: -1.5,-12.5
- parent: 8364
- - uid: 6090
- components:
- - type: Transform
- pos: -2.5,-12.5
- parent: 8364
- - uid: 6091
- components:
- - type: Transform
- pos: 0.5,-12.5
- parent: 8364
- - uid: 6092
- components:
- - type: Transform
- pos: 1.5,-12.5
- parent: 8364
- - uid: 6093
- components:
- - type: Transform
- pos: -0.5,-11.5
- parent: 8364
- uid: 6101
components:
- type: Transform
@@ -20501,6 +23589,11 @@ entities:
- type: Transform
pos: -10.5,-25.5
parent: 8364
+ - uid: 6143
+ components:
+ - type: Transform
+ pos: -1.5,-12.5
+ parent: 8364
- uid: 6212
components:
- type: Transform
@@ -20531,21 +23624,6 @@ entities:
- type: Transform
pos: -13.5,-17.5
parent: 8364
- - uid: 6218
- components:
- - type: Transform
- pos: -0.5,-23.5
- parent: 8364
- - uid: 6219
- components:
- - type: Transform
- pos: -0.5,-24.5
- parent: 8364
- - uid: 6220
- components:
- - type: Transform
- pos: -0.5,-25.5
- parent: 8364
- uid: 6221
components:
- type: Transform
@@ -20676,11 +23754,6 @@ entities:
- type: Transform
pos: 25.5,18.5
parent: 8364
- - uid: 6419
- components:
- - type: Transform
- pos: 2.5,-16.5
- parent: 8364
- uid: 6431
components:
- type: Transform
@@ -20981,11 +24054,6 @@ entities:
- type: Transform
pos: 20.5,-0.5
parent: 8364
- - uid: 6925
- components:
- - type: Transform
- pos: -1.5,-16.5
- parent: 8364
- uid: 7000
components:
- type: Transform
@@ -21101,11 +24169,6 @@ entities:
- type: Transform
pos: 26.5,-0.5
parent: 8364
- - uid: 7098
- components:
- - type: Transform
- pos: 0.5,-16.5
- parent: 8364
- uid: 7099
components:
- type: Transform
@@ -21296,55 +24359,55 @@ entities:
- type: Transform
pos: -46.5,21.5
parent: 8364
- - uid: 8117
+ - uid: 8185
components:
- type: Transform
- pos: -3.5,-12.5
+ pos: 3.5,-35.5
parent: 8364
- - uid: 8118
+ - uid: 8383
components:
- type: Transform
- pos: -0.5,-13.5
+ pos: 16.5,20.5
parent: 8364
- - uid: 8120
+ - uid: 8386
components:
- type: Transform
- pos: -0.5,-14.5
+ pos: 15.5,24.5
parent: 8364
- - uid: 8121
+ - uid: 8387
components:
- type: Transform
- pos: -0.5,-15.5
+ pos: 15.5,22.5
parent: 8364
- - uid: 8154
+ - uid: 8435
components:
- type: Transform
- pos: 2.5,-13.5
+ pos: 17.5,32.5
parent: 8364
- - uid: 8185
+ - uid: 8446
components:
- type: Transform
- pos: 3.5,-35.5
+ pos: 26.5,-20.5
parent: 8364
- - uid: 8383
+ - uid: 8447
components:
- type: Transform
- pos: 16.5,20.5
+ pos: 26.5,-15.5
parent: 8364
- - uid: 8386
+ - uid: 8448
components:
- type: Transform
- pos: 15.5,24.5
+ pos: 26.5,-16.5
parent: 8364
- - uid: 8387
+ - uid: 8449
components:
- type: Transform
- pos: 15.5,22.5
+ pos: 26.5,-17.5
parent: 8364
- - uid: 8435
+ - uid: 8450
components:
- type: Transform
- pos: 17.5,32.5
+ pos: 26.5,-19.5
parent: 8364
- uid: 8481
components:
@@ -22226,30 +25289,25 @@ entities:
- type: Transform
pos: 17.5,33.5
parent: 8364
- - uid: 9310
- components:
- - type: Transform
- pos: 16.5,33.5
- parent: 8364
- uid: 9311
components:
- type: Transform
- pos: 15.5,33.5
+ pos: 14.5,31.5
parent: 8364
- uid: 9312
components:
- type: Transform
- pos: 14.5,33.5
+ pos: 15.5,31.5
parent: 8364
- uid: 9313
components:
- type: Transform
- pos: 13.5,33.5
+ pos: 16.5,31.5
parent: 8364
- uid: 9314
components:
- type: Transform
- pos: 13.5,32.5
+ pos: 16.5,34.5
parent: 8364
- uid: 9315
components:
@@ -22289,17 +25347,17 @@ entities:
- uid: 9324
components:
- type: Transform
- pos: 15.5,34.5
+ pos: 17.5,34.5
parent: 8364
- uid: 9325
components:
- type: Transform
- pos: 12.5,33.5
+ pos: 14.5,34.5
parent: 8364
- uid: 9326
components:
- type: Transform
- pos: 18.5,34.5
+ pos: 15.5,34.5
parent: 8364
- uid: 9327
components:
@@ -22361,6 +25419,11 @@ entities:
- type: Transform
pos: -19.5,50.5
parent: 8364
+ - uid: 9457
+ components:
+ - type: Transform
+ pos: 17.5,35.5
+ parent: 8364
- uid: 9599
components:
- type: Transform
@@ -24001,11 +27064,6 @@ entities:
- type: Transform
pos: 48.5,-2.5
parent: 8364
- - uid: 10555
- components:
- - type: Transform
- pos: -0.5,-16.5
- parent: 8364
- uid: 10658
components:
- type: Transform
@@ -24221,6 +27279,16 @@ entities:
- type: Transform
pos: -11.5,44.5
parent: 8364
+ - uid: 10853
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 8364
+ - uid: 10871
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
+ parent: 8364
- uid: 10914
components:
- type: Transform
@@ -24451,11 +27519,6 @@ entities:
- type: Transform
pos: 70.5,-9.5
parent: 8364
- - uid: 11094
- components:
- - type: Transform
- pos: 69.5,-9.5
- parent: 8364
- uid: 11095
components:
- type: Transform
@@ -26601,6 +29664,11 @@ entities:
- type: Transform
pos: -65.5,14.5
parent: 8364
+ - uid: 12429
+ components:
+ - type: Transform
+ pos: 11.5,-81.5
+ parent: 8364
- uid: 12497
components:
- type: Transform
@@ -29586,6 +32654,11 @@ entities:
- type: Transform
pos: -2.5,11.5
parent: 8364
+ - uid: 13663
+ components:
+ - type: Transform
+ pos: 69.5,-9.5
+ parent: 8364
- uid: 13693
components:
- type: Transform
@@ -30021,11 +33094,6 @@ entities:
- type: Transform
pos: 6.5,-34.5
parent: 8364
- - uid: 14125
- components:
- - type: Transform
- pos: 2.5,-12.5
- parent: 8364
- uid: 14144
components:
- type: Transform
@@ -30316,51 +33384,6 @@ entities:
- type: Transform
pos: 5.5,-35.5
parent: 8364
- - uid: 14477
- components:
- - type: Transform
- pos: -19.5,-10.5
- parent: 8364
- - uid: 14478
- components:
- - type: Transform
- pos: -20.5,-10.5
- parent: 8364
- - uid: 14479
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 8364
- - uid: 14480
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 8364
- - uid: 14481
- components:
- - type: Transform
- pos: -23.5,-10.5
- parent: 8364
- - uid: 14482
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 8364
- - uid: 14483
- components:
- - type: Transform
- pos: -23.5,-12.5
- parent: 8364
- - uid: 14484
- components:
- - type: Transform
- pos: -22.5,-12.5
- parent: 8364
- - uid: 14485
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 8364
- uid: 14618
components:
- type: Transform
@@ -31226,15 +34249,10 @@ entities:
- type: Transform
pos: -22.5,-28.5
parent: 8364
- - uid: 14916
- components:
- - type: Transform
- pos: -3.5,-13.5
- parent: 8364
- - uid: 14918
+ - uid: 14920
components:
- type: Transform
- pos: 1.5,-16.5
+ pos: 15.5,-71.5
parent: 8364
- uid: 14980
components:
@@ -32336,11 +35354,6 @@ entities:
- type: Transform
pos: -29.5,-26.5
parent: 8364
- - uid: 15369
- components:
- - type: Transform
- pos: -3.5,-24.5
- parent: 8364
- uid: 15434
components:
- type: Transform
@@ -32361,16 +35374,6 @@ entities:
- type: Transform
pos: 20.5,-55.5
parent: 8364
- - uid: 15481
- components:
- - type: Transform
- pos: -0.5,-22.5
- parent: 8364
- - uid: 15491
- components:
- - type: Transform
- pos: -0.5,-21.5
- parent: 8364
- uid: 15496
components:
- type: Transform
@@ -32636,11 +35639,6 @@ entities:
- type: Transform
pos: -38.5,-58.5
parent: 8364
- - uid: 15721
- components:
- - type: Transform
- pos: -0.5,-20.5
- parent: 8364
- uid: 15798
components:
- type: Transform
@@ -32666,15 +35664,15 @@ entities:
- type: Transform
pos: -21.5,-55.5
parent: 8364
- - uid: 15984
+ - uid: 15960
components:
- type: Transform
- pos: -37.5,-8.5
+ pos: 34.5,-19.5
parent: 8364
- - uid: 16153
+ - uid: 15984
components:
- type: Transform
- pos: -19.5,-73.5
+ pos: -37.5,-8.5
parent: 8364
- uid: 16212
components:
@@ -33221,11 +36219,6 @@ entities:
- type: Transform
pos: 26.5,-70.5
parent: 8364
- - uid: 16506
- components:
- - type: Transform
- pos: 12.5,-83.5
- parent: 8364
- uid: 16507
components:
- type: Transform
@@ -33266,11 +36259,6 @@ entities:
- type: Transform
pos: 4.5,-43.5
parent: 8364
- - uid: 16522
- components:
- - type: Transform
- pos: 11.5,-83.5
- parent: 8364
- uid: 16523
components:
- type: Transform
@@ -33306,11 +36294,6 @@ entities:
- type: Transform
pos: -0.5,-65.5
parent: 8364
- - uid: 16546
- components:
- - type: Transform
- pos: 14.5,-83.5
- parent: 8364
- uid: 16549
components:
- type: Transform
@@ -33511,16 +36494,6 @@ entities:
- type: Transform
pos: 25.5,-56.5
parent: 8364
- - uid: 16623
- components:
- - type: Transform
- pos: 31.5,-116.5
- parent: 8364
- - uid: 16624
- components:
- - type: Transform
- pos: 31.5,-117.5
- parent: 8364
- uid: 16636
components:
- type: Transform
@@ -33841,11 +36814,6 @@ entities:
- type: Transform
pos: 16.5,-71.5
parent: 8364
- - uid: 16723
- components:
- - type: Transform
- pos: 17.5,-83.5
- parent: 8364
- uid: 16725
components:
- type: Transform
@@ -33856,21 +36824,6 @@ entities:
- type: Transform
pos: 14.5,-71.5
parent: 8364
- - uid: 16731
- components:
- - type: Transform
- pos: 16.5,-83.5
- parent: 8364
- - uid: 16735
- components:
- - type: Transform
- pos: 18.5,-83.5
- parent: 8364
- - uid: 16737
- components:
- - type: Transform
- pos: 15.5,-71.5
- parent: 8364
- uid: 16738
components:
- type: Transform
@@ -33946,11 +36899,6 @@ entities:
- type: Transform
pos: 13.5,-71.5
parent: 8364
- - uid: 16833
- components:
- - type: Transform
- pos: 15.5,-83.5
- parent: 8364
- uid: 16834
components:
- type: Transform
@@ -34021,11 +36969,6 @@ entities:
- type: Transform
pos: 9.5,-76.5
parent: 8364
- - uid: 16918
- components:
- - type: Transform
- pos: -0.5,-19.5
- parent: 8364
- uid: 16934
components:
- type: Transform
@@ -34066,21 +37009,6 @@ entities:
- type: Transform
pos: -15.5,-77.5
parent: 8364
- - uid: 16953
- components:
- - type: Transform
- pos: 25.5,-73.5
- parent: 8364
- - uid: 16954
- components:
- - type: Transform
- pos: 25.5,-72.5
- parent: 8364
- - uid: 16964
- components:
- - type: Transform
- pos: 25.5,-74.5
- parent: 8364
- uid: 16987
components:
- type: Transform
@@ -34254,7 +37182,7 @@ entities:
- uid: 17287
components:
- type: Transform
- pos: -9.5,-69.5
+ pos: 34.5,-20.5
parent: 8364
- uid: 17288
components:
@@ -34501,16 +37429,6 @@ entities:
- type: Transform
pos: -19.5,-69.5
parent: 8364
- - uid: 17424
- components:
- - type: Transform
- pos: -19.5,-70.5
- parent: 8364
- - uid: 17425
- components:
- - type: Transform
- pos: -19.5,-71.5
- parent: 8364
- uid: 17427
components:
- type: Transform
@@ -34706,16 +37624,6 @@ entities:
- type: Transform
pos: -16.5,-71.5
parent: 8364
- - uid: 17782
- components:
- - type: Transform
- pos: 15.5,-77.5
- parent: 8364
- - uid: 17783
- components:
- - type: Transform
- pos: 16.5,-77.5
- parent: 8364
- uid: 17811
components:
- type: Transform
@@ -34931,11 +37839,6 @@ entities:
- type: Transform
pos: 39.5,-23.5
parent: 8364
- - uid: 17950
- components:
- - type: Transform
- pos: 39.5,-22.5
- parent: 8364
- uid: 17953
components:
- type: Transform
@@ -36076,31 +38979,6 @@ entities:
- type: Transform
pos: 26.5,-18.5
parent: 8364
- - uid: 18366
- components:
- - type: Transform
- pos: 25.5,-18.5
- parent: 8364
- - uid: 18367
- components:
- - type: Transform
- pos: 26.5,-17.5
- parent: 8364
- - uid: 18368
- components:
- - type: Transform
- pos: 26.5,-16.5
- parent: 8364
- - uid: 18369
- components:
- - type: Transform
- pos: 26.5,-15.5
- parent: 8364
- - uid: 18370
- components:
- - type: Transform
- pos: 25.5,-16.5
- parent: 8364
- uid: 18415
components:
- type: Transform
@@ -37876,11 +40754,6 @@ entities:
- type: Transform
pos: 56.5,-63.5
parent: 8364
- - uid: 19580
- components:
- - type: Transform
- pos: 62.5,-70.5
- parent: 8364
- uid: 19581
components:
- type: Transform
@@ -39896,46 +42769,6 @@ entities:
- type: Transform
pos: 8.5,-36.5
parent: 8364
- - uid: 21997
- components:
- - type: Transform
- pos: -4.5,-16.5
- parent: 8364
- - uid: 21998
- components:
- - type: Transform
- pos: -4.5,-17.5
- parent: 8364
- - uid: 21999
- components:
- - type: Transform
- pos: 3.5,-17.5
- parent: 8364
- - uid: 22000
- components:
- - type: Transform
- pos: 3.5,-16.5
- parent: 8364
- - uid: 22001
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 8364
- - uid: 22002
- components:
- - type: Transform
- pos: -2.5,-23.5
- parent: 8364
- - uid: 22003
- components:
- - type: Transform
- pos: 0.5,-23.5
- parent: 8364
- - uid: 22004
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 8364
- uid: 22460
components:
- type: Transform
@@ -39966,6 +42799,21 @@ entities:
- type: Transform
pos: 11.5,-8.5
parent: 8364
+ - uid: 22529
+ components:
+ - type: Transform
+ pos: -20.5,-82.5
+ parent: 8364
+ - uid: 22530
+ components:
+ - type: Transform
+ pos: -22.5,-73.5
+ parent: 8364
+ - uid: 22538
+ components:
+ - type: Transform
+ pos: -21.5,-74.5
+ parent: 8364
- uid: 22578
components:
- type: Transform
@@ -39996,11 +42844,6 @@ entities:
- type: Transform
pos: -7.5,-61.5
parent: 8364
- - uid: 22856
- components:
- - type: Transform
- pos: 17.5,-77.5
- parent: 8364
- uid: 22857
components:
- type: Transform
@@ -40046,25 +42889,40 @@ entities:
- type: Transform
pos: -14.5,-71.5
parent: 8364
- - uid: 23009
+ - uid: 23138
components:
- type: Transform
- pos: 11.5,-82.5
+ pos: -3.5,-60.5
parent: 8364
- - uid: 23098
+ - uid: 23235
components:
- type: Transform
- pos: 11.5,-81.5
+ pos: -13.5,-71.5
parent: 8364
- - uid: 23138
+ - uid: 23243
components:
- type: Transform
- pos: -3.5,-60.5
+ pos: -3.5,-13.5
parent: 8364
- - uid: 23235
+ - uid: 23261
components:
- type: Transform
- pos: -13.5,-71.5
+ pos: 19.5,-55.5
+ parent: 8364
+ - uid: 24926
+ components:
+ - type: Transform
+ pos: -21.5,-75.5
+ parent: 8364
+ - uid: 25207
+ components:
+ - type: Transform
+ pos: 2.5,-14.5
+ parent: 8364
+ - uid: 25315
+ components:
+ - type: Transform
+ pos: -63.5,14.5
parent: 8364
- uid: 25739
components:
@@ -40121,11 +42979,6 @@ entities:
- type: Transform
pos: 9.5,-75.5
parent: 8364
- - uid: 26102
- components:
- - type: Transform
- pos: 24.5,-74.5
- parent: 8364
- uid: 26136
components:
- type: Transform
@@ -40306,585 +43159,215 @@ entities:
- type: Transform
pos: 4.5,-72.5
parent: 8364
- - uid: 27031
- components:
- - type: Transform
- pos: 29.5,-111.5
- parent: 8364
- - uid: 27032
- components:
- - type: Transform
- pos: 28.5,-111.5
- parent: 8364
- - uid: 27033
- components:
- - type: Transform
- pos: 28.5,-110.5
- parent: 8364
- - uid: 27034
- components:
- - type: Transform
- pos: 28.5,-109.5
- parent: 8364
- - uid: 27035
- components:
- - type: Transform
- pos: 28.5,-108.5
- parent: 8364
- - uid: 27036
- components:
- - type: Transform
- pos: 29.5,-109.5
- parent: 8364
- - uid: 27037
- components:
- - type: Transform
- pos: 30.5,-109.5
- parent: 8364
- - uid: 27038
- components:
- - type: Transform
- pos: 31.5,-109.5
- parent: 8364
- - uid: 27039
- components:
- - type: Transform
- pos: 31.5,-111.5
- parent: 8364
- - uid: 27040
- components:
- - type: Transform
- pos: 31.5,-110.5
- parent: 8364
- - uid: 27041
- components:
- - type: Transform
- pos: 31.5,-112.5
- parent: 8364
- - uid: 27042
- components:
- - type: Transform
- pos: 31.5,-113.5
- parent: 8364
- - uid: 27043
- components:
- - type: Transform
- pos: 31.5,-114.5
- parent: 8364
- - uid: 27044
- components:
- - type: Transform
- pos: 31.5,-115.5
- parent: 8364
- - uid: 27045
- components:
- - type: Transform
- pos: 30.5,-115.5
- parent: 8364
- - uid: 27046
- components:
- - type: Transform
- pos: 29.5,-115.5
- parent: 8364
- - uid: 27047
- components:
- - type: Transform
- pos: 28.5,-115.5
- parent: 8364
- - uid: 27048
- components:
- - type: Transform
- pos: 27.5,-115.5
- parent: 8364
- - uid: 27049
- components:
- - type: Transform
- pos: 26.5,-115.5
- parent: 8364
- - uid: 27050
- components:
- - type: Transform
- pos: 25.5,-115.5
- parent: 8364
- - uid: 27051
- components:
- - type: Transform
- pos: 25.5,-114.5
- parent: 8364
- - uid: 27052
- components:
- - type: Transform
- pos: 25.5,-113.5
- parent: 8364
- - uid: 27053
- components:
- - type: Transform
- pos: 25.5,-112.5
- parent: 8364
- - uid: 27054
- components:
- - type: Transform
- pos: 25.5,-111.5
- parent: 8364
- - uid: 27055
- components:
- - type: Transform
- pos: 25.5,-110.5
- parent: 8364
- - uid: 27056
- components:
- - type: Transform
- pos: 25.5,-109.5
- parent: 8364
- - uid: 27057
- components:
- - type: Transform
- pos: 26.5,-109.5
- parent: 8364
- - uid: 27058
- components:
- - type: Transform
- pos: 27.5,-109.5
- parent: 8364
- - uid: 27059
- components:
- - type: Transform
- pos: 28.5,-107.5
- parent: 8364
- - uid: 27060
- components:
- - type: Transform
- pos: 28.5,-106.5
- parent: 8364
- - uid: 27061
- components:
- - type: Transform
- pos: 27.5,-106.5
- parent: 8364
- - uid: 27062
- components:
- - type: Transform
- pos: 29.5,-106.5
- parent: 8364
- - uid: 27063
- components:
- - type: Transform
- pos: 31.5,-100.5
- parent: 8364
- - uid: 27064
- components:
- - type: Transform
- pos: 30.5,-100.5
- parent: 8364
- - uid: 27065
- components:
- - type: Transform
- pos: 29.5,-103.5
- parent: 8364
- - uid: 27066
- components:
- - type: Transform
- pos: 29.5,-102.5
- parent: 8364
- - uid: 27067
- components:
- - type: Transform
- pos: 29.5,-101.5
- parent: 8364
- - uid: 27068
- components:
- - type: Transform
- pos: 29.5,-100.5
- parent: 8364
- - uid: 27069
- components:
- - type: Transform
- pos: 29.5,-99.5
- parent: 8364
- - uid: 27070
- components:
- - type: Transform
- pos: 29.5,-98.5
- parent: 8364
- - uid: 27071
- components:
- - type: Transform
- pos: 29.5,-97.5
- parent: 8364
- - uid: 27072
- components:
- - type: Transform
- pos: 29.5,-96.5
- parent: 8364
- - uid: 27073
- components:
- - type: Transform
- pos: 29.5,-95.5
- parent: 8364
- - uid: 27074
- components:
- - type: Transform
- pos: 27.5,-95.5
- parent: 8364
- - uid: 27075
- components:
- - type: Transform
- pos: 27.5,-96.5
- parent: 8364
- - uid: 27076
- components:
- - type: Transform
- pos: 27.5,-97.5
- parent: 8364
- - uid: 27077
- components:
- - type: Transform
- pos: 27.5,-98.5
- parent: 8364
- - uid: 27078
- components:
- - type: Transform
- pos: 27.5,-99.5
- parent: 8364
- - uid: 27079
- components:
- - type: Transform
- pos: 27.5,-100.5
- parent: 8364
- - uid: 27080
- components:
- - type: Transform
- pos: 27.5,-101.5
- parent: 8364
- - uid: 27081
- components:
- - type: Transform
- pos: 27.5,-102.5
- parent: 8364
- - uid: 27082
- components:
- - type: Transform
- pos: 27.5,-103.5
- parent: 8364
- - uid: 27083
- components:
- - type: Transform
- pos: 28.5,-100.5
- parent: 8364
- - uid: 27084
- components:
- - type: Transform
- pos: 32.5,-100.5
- parent: 8364
- - uid: 27085
- components:
- - type: Transform
- pos: 32.5,-101.5
- parent: 8364
- - uid: 27086
- components:
- - type: Transform
- pos: 32.5,-102.5
- parent: 8364
- - uid: 27087
- components:
- - type: Transform
- pos: 32.5,-103.5
- parent: 8364
- - uid: 27088
- components:
- - type: Transform
- pos: 33.5,-103.5
- parent: 8364
- - uid: 27089
- components:
- - type: Transform
- pos: 33.5,-104.5
- parent: 8364
- - uid: 27090
- components:
- - type: Transform
- pos: 32.5,-99.5
- parent: 8364
- - uid: 27091
- components:
- - type: Transform
- pos: 32.5,-98.5
- parent: 8364
- - uid: 27092
- components:
- - type: Transform
- pos: 32.5,-97.5
- parent: 8364
- - uid: 27093
- components:
- - type: Transform
- pos: 32.5,-96.5
- parent: 8364
- - uid: 27094
- components:
- - type: Transform
- pos: 35.5,-92.5
- parent: 8364
- - uid: 27095
- components:
- - type: Transform
- pos: 34.5,-92.5
- parent: 8364
- - uid: 27096
- components:
- - type: Transform
- pos: 33.5,-92.5
- parent: 8364
- - uid: 27097
- components:
- - type: Transform
- pos: 32.5,-92.5
- parent: 8364
- - uid: 27098
- components:
- - type: Transform
- pos: 31.5,-92.5
- parent: 8364
- - uid: 27099
- components:
- - type: Transform
- pos: 32.5,-91.5
- parent: 8364
- - uid: 27100
- components:
- - type: Transform
- pos: 32.5,-90.5
- parent: 8364
- - uid: 27101
- components:
- - type: Transform
- pos: 32.5,-89.5
- parent: 8364
- - uid: 27102
- components:
- - type: Transform
- pos: 32.5,-88.5
- parent: 8364
- - uid: 27103
- components:
- - type: Transform
- pos: 32.5,-93.5
- parent: 8364
- - uid: 27104
- components:
- - type: Transform
- pos: 21.5,-92.5
- parent: 8364
- - uid: 27105
- components:
- - type: Transform
- pos: 22.5,-92.5
- parent: 8364
- - uid: 27106
- components:
- - type: Transform
- pos: 23.5,-92.5
- parent: 8364
- - uid: 27107
+ - uid: 26977
components:
- type: Transform
- pos: 24.5,-92.5
+ pos: 27.5,-72.5
parent: 8364
- - uid: 27108
+ - uid: 26978
components:
- type: Transform
- pos: 24.5,-91.5
+ pos: 19.5,-84.5
parent: 8364
- - uid: 27109
+ - uid: 27003
components:
- type: Transform
- pos: 24.5,-90.5
+ pos: 2.5,-13.5
parent: 8364
- - uid: 27110
+ - uid: 27009
components:
- type: Transform
- pos: 24.5,-89.5
+ pos: -0.5,-17.5
parent: 8364
- - uid: 27111
+ - uid: 27010
components:
- type: Transform
- pos: 24.5,-93.5
+ pos: 2.5,-12.5
parent: 8364
- uid: 27112
components:
- type: Transform
- pos: 24.5,-94.5
+ pos: 18.5,-72.5
parent: 8364
- uid: 27113
components:
- type: Transform
- pos: 24.5,-95.5
+ pos: 25.5,-72.5
parent: 8364
- uid: 27114
components:
- type: Transform
- pos: 24.5,-96.5
+ pos: 18.5,-73.5
parent: 8364
- uid: 27115
components:
- type: Transform
- pos: 24.5,-97.5
+ pos: 26.5,-81.5
parent: 8364
- uid: 27116
components:
- type: Transform
- pos: 24.5,-98.5
+ pos: 25.5,-74.5
parent: 8364
- uid: 27117
components:
- type: Transform
- pos: 24.5,-99.5
+ pos: 27.5,-78.5
parent: 8364
- uid: 27118
components:
- type: Transform
- pos: 24.5,-100.5
+ pos: 18.5,-85.5
parent: 8364
- uid: 27119
components:
- type: Transform
- pos: 24.5,-101.5
+ pos: 18.5,-86.5
parent: 8364
- uid: 27120
components:
- type: Transform
- pos: 24.5,-102.5
+ pos: 27.5,-79.5
parent: 8364
- uid: 27121
components:
- type: Transform
- pos: 24.5,-103.5
+ pos: 27.5,-80.5
parent: 8364
- uid: 27122
components:
- type: Transform
- pos: 23.5,-103.5
+ pos: 25.5,-82.5
parent: 8364
- uid: 27123
components:
- type: Transform
- pos: 23.5,-104.5
+ pos: 15.5,-84.5
parent: 8364
- uid: 27124
components:
- type: Transform
- pos: 31.5,-86.5
+ pos: 17.5,-84.5
parent: 8364
- uid: 27125
components:
- type: Transform
- pos: 30.5,-86.5
+ pos: 16.5,-84.5
parent: 8364
- uid: 27126
components:
- type: Transform
- pos: 29.5,-86.5
+ pos: 14.5,-84.5
parent: 8364
- uid: 27127
components:
- type: Transform
- pos: 28.5,-86.5
+ pos: 26.5,-84.5
parent: 8364
- uid: 27128
components:
- type: Transform
- pos: 28.5,-87.5
+ pos: 27.5,-81.5
parent: 8364
- uid: 27129
components:
- type: Transform
- pos: 28.5,-88.5
+ pos: 27.5,-71.5
parent: 8364
- uid: 27130
components:
- type: Transform
- pos: 28.5,-89.5
+ pos: 18.5,-74.5
parent: 8364
- uid: 27131
components:
- type: Transform
- pos: 28.5,-90.5
+ pos: 25.5,-75.5
parent: 8364
- uid: 27132
components:
- type: Transform
- pos: 28.5,-91.5
+ pos: 25.5,-73.5
parent: 8364
- uid: 27133
components:
- type: Transform
- pos: 28.5,-92.5
+ pos: 18.5,-83.5
parent: 8364
- uid: 27134
components:
- type: Transform
- pos: 28.5,-93.5
+ pos: 18.5,-75.5
parent: 8364
- uid: 27135
components:
- type: Transform
- pos: 28.5,-85.5
+ pos: 18.5,-78.5
parent: 8364
- uid: 27136
components:
- type: Transform
- pos: 28.5,-84.5
+ pos: 18.5,-76.5
parent: 8364
- uid: 27137
components:
- type: Transform
- pos: 28.5,-83.5
+ pos: 18.5,-77.5
parent: 8364
- uid: 27138
components:
- type: Transform
- pos: 28.5,-82.5
+ pos: 18.5,-79.5
parent: 8364
- uid: 27139
components:
- type: Transform
- pos: 28.5,-81.5
+ pos: 25.5,-83.5
parent: 8364
- - uid: 27140
+ - uid: 27141
components:
- type: Transform
- pos: 28.5,-80.5
+ pos: 25.5,-84.5
parent: 8364
- - uid: 27141
+ - uid: 27151
components:
- type: Transform
- pos: 28.5,-79.5
+ pos: 27.5,-73.5
parent: 8364
- - uid: 27142
+ - uid: 27175
components:
- type: Transform
- pos: 28.5,-78.5
+ pos: 27.5,-74.5
parent: 8364
- - uid: 27146
+ - uid: 27178
components:
- type: Transform
- pos: 29.5,-85.5
+ pos: 18.5,-80.5
parent: 8364
- - uid: 27147
+ - uid: 27181
components:
- type: Transform
- pos: 30.5,-85.5
+ pos: 18.5,-84.5
parent: 8364
- - uid: 27148
+ - uid: 27182
components:
- type: Transform
- pos: 31.5,-85.5
+ pos: 21.5,-84.5
parent: 8364
- - uid: 27149
+ - uid: 27183
components:
- type: Transform
- pos: 32.5,-85.5
+ pos: 18.5,-82.5
+ parent: 8364
+ - uid: 27190
+ components:
+ - type: Transform
+ pos: 20.5,-84.5
+ parent: 8364
+ - uid: 27191
+ components:
+ - type: Transform
+ pos: 22.5,-84.5
parent: 8364
- uid: 27223
components:
@@ -41131,65 +43614,210 @@ entities:
- type: Transform
pos: 86.5,-2.5
parent: 8364
- - uid: 27861
+ - uid: 27787
components:
- type: Transform
- pos: 25.5,-117.5
+ pos: -23.5,-76.5
parent: 8364
- - uid: 27862
+ - uid: 27874
components:
- type: Transform
- pos: 25.5,-116.5
+ pos: 1.5,-17.5
parent: 8364
- - uid: 27863
+ - uid: 27919
components:
- type: Transform
- pos: 24.5,-112.5
+ pos: 0.5,-17.5
parent: 8364
- - uid: 27864
+ - uid: 27927
components:
- type: Transform
- pos: 23.5,-112.5
+ pos: 60.5,-69.5
parent: 8364
- - uid: 27865
+ - uid: 27934
components:
- type: Transform
- pos: 32.5,-112.5
+ pos: 13.5,34.5
parent: 8364
- - uid: 27866
+ - uid: 27935
components:
- type: Transform
- pos: 33.5,-112.5
+ pos: 12.5,34.5
parent: 8364
- - uid: 27872
+ - uid: 27971
components:
- type: Transform
- pos: 29.5,-79.5
+ pos: 59.5,-39.5
parent: 8364
- - uid: 27873
+ - uid: 27972
components:
- type: Transform
- pos: 30.5,-79.5
+ pos: 59.5,-38.5
parent: 8364
- - uid: 27874
+ - uid: 27977
components:
- type: Transform
- pos: 31.5,-79.5
+ pos: 2.5,-17.5
parent: 8364
- - uid: 27875
+ - uid: 27978
components:
- type: Transform
- pos: 32.5,-79.5
+ pos: 2.5,-16.5
parent: 8364
- - uid: 27971
+ - uid: 28000
components:
- type: Transform
- pos: 59.5,-39.5
+ pos: -19.5,-9.5
parent: 8364
- - uid: 27972
+ - uid: 28001
components:
- type: Transform
- pos: 59.5,-38.5
+ pos: -20.5,-9.5
+ parent: 8364
+ - uid: 28002
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 8364
+ - uid: 28003
+ components:
+ - type: Transform
+ pos: -22.5,-9.5
+ parent: 8364
+ - uid: 28004
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
+ - uid: 28021
+ components:
+ - type: Transform
+ pos: -22.5,-10.5
+ parent: 8364
+ - uid: 28024
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 8364
+ - uid: 28069
+ components:
+ - type: Transform
+ pos: -22.5,-13.5
+ parent: 8364
+ - uid: 28159
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 8364
+ - uid: 28160
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 8364
+ - uid: 28161
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 8364
+ - uid: 28162
+ components:
+ - type: Transform
+ pos: -0.5,-22.5
+ parent: 8364
+ - uid: 28163
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 8364
+ - uid: 28164
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 8364
+ - uid: 28165
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 8364
+ - uid: 28166
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 8364
+ - uid: 28167
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 8364
+ - uid: 28168
+ components:
+ - type: Transform
+ pos: 0.5,-24.5
+ parent: 8364
+ - uid: 28169
+ components:
+ - type: Transform
+ pos: 1.5,-24.5
+ parent: 8364
+ - uid: 28170
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 8364
+ - uid: 28171
+ components:
+ - type: Transform
+ pos: 3.5,-24.5
+ parent: 8364
+ - uid: 28172
+ components:
+ - type: Transform
+ pos: -1.5,-24.5
+ parent: 8364
+ - uid: 28173
+ components:
+ - type: Transform
+ pos: -2.5,-24.5
+ parent: 8364
+ - uid: 28174
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 8364
+ - uid: 28175
+ components:
+ - type: Transform
+ pos: -4.5,-24.5
+ parent: 8364
+ - uid: 28176
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 8364
+ - uid: 28177
+ components:
+ - type: Transform
+ pos: -1.5,-20.5
+ parent: 8364
+ - uid: 28178
+ components:
+ - type: Transform
+ pos: 0.5,-20.5
+ parent: 8364
+ - uid: 28179
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 8364
+ - uid: 28180
+ components:
+ - type: Transform
+ pos: 2.5,-20.5
+ parent: 8364
+ - uid: 28181
+ components:
+ - type: Transform
+ pos: -3.5,-20.5
parent: 8364
- proto: CableApcStack
entities:
@@ -41368,11 +43996,31 @@ entities:
- type: Transform
pos: -3.5,-66.5
parent: 8364
+ - uid: 2928
+ components:
+ - type: Transform
+ pos: 16.5,-80.5
+ parent: 8364
- uid: 3054
components:
- type: Transform
pos: -7.5,-10.5
parent: 8364
+ - uid: 3536
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 8364
+ - uid: 3540
+ components:
+ - type: Transform
+ pos: -2.5,-15.5
+ parent: 8364
+ - uid: 3630
+ components:
+ - type: Transform
+ pos: -0.5,-23.5
+ parent: 8364
- uid: 3691
components:
- type: Transform
@@ -41463,21 +44111,61 @@ entities:
- type: Transform
pos: -8.5,-74.5
parent: 8364
- - uid: 3869
+ - uid: 3873
components:
- type: Transform
- pos: 15.5,-77.5
+ pos: -19.5,-72.5
parent: 8364
- uid: 4050
components:
- type: Transform
pos: 10.5,-80.5
parent: 8364
+ - uid: 4210
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 8364
+ - uid: 4211
+ components:
+ - type: Transform
+ pos: -0.5,-22.5
+ parent: 8364
+ - uid: 4272
+ components:
+ - type: Transform
+ pos: -20.5,-72.5
+ parent: 8364
+ - uid: 4369
+ components:
+ - type: Transform
+ pos: -1.5,-56.5
+ parent: 8364
+ - uid: 4371
+ components:
+ - type: Transform
+ pos: -18.5,-11.5
+ parent: 8364
+ - uid: 4372
+ components:
+ - type: Transform
+ pos: -17.5,-11.5
+ parent: 8364
+ - uid: 4373
+ components:
+ - type: Transform
+ pos: -16.5,-11.5
+ parent: 8364
- uid: 4519
components:
- type: Transform
pos: -0.5,-58.5
parent: 8364
+ - uid: 4550
+ components:
+ - type: Transform
+ pos: -0.5,-24.5
+ parent: 8364
- uid: 4553
components:
- type: Transform
@@ -41548,21 +44236,11 @@ entities:
- type: Transform
pos: 46.5,19.5
parent: 8364
- - uid: 5272
- components:
- - type: Transform
- pos: 1.5,-24.5
- parent: 8364
- uid: 5314
components:
- type: Transform
pos: -3.5,-5.5
parent: 8364
- - uid: 5450
- components:
- - type: Transform
- pos: -44.5,-61.5
- parent: 8364
- uid: 5520
components:
- type: Transform
@@ -41633,16 +44311,6 @@ entities:
- type: Transform
pos: -13.5,-12.5
parent: 8364
- - uid: 5766
- components:
- - type: Transform
- pos: 0.5,-25.5
- parent: 8364
- - uid: 5771
- components:
- - type: Transform
- pos: -0.5,-25.5
- parent: 8364
- uid: 5772
components:
- type: Transform
@@ -41833,16 +44501,6 @@ entities:
- type: Transform
pos: -2.5,-59.5
parent: 8364
- - uid: 5827
- components:
- - type: Transform
- pos: -2.5,-57.5
- parent: 8364
- - uid: 5828
- components:
- - type: Transform
- pos: -1.5,-57.5
- parent: 8364
- uid: 5829
components:
- type: Transform
@@ -41973,26 +44631,11 @@ entities:
- type: Transform
pos: -16.5,-15.5
parent: 8364
- - uid: 5855
- components:
- - type: Transform
- pos: -19.5,-12.5
- parent: 8364
- - uid: 5856
- components:
- - type: Transform
- pos: -18.5,-12.5
- parent: 8364
- uid: 5857
components:
- type: Transform
pos: -16.5,-14.5
parent: 8364
- - uid: 5858
- components:
- - type: Transform
- pos: -17.5,-12.5
- parent: 8364
- uid: 5859
components:
- type: Transform
@@ -42033,16 +44676,6 @@ entities:
- type: Transform
pos: -22.5,-12.5
parent: 8364
- - uid: 5927
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 8364
- - uid: 5928
- components:
- - type: Transform
- pos: -20.5,-12.5
- parent: 8364
- uid: 5929
components:
- type: Transform
@@ -42423,16 +45056,6 @@ entities:
- type: Transform
pos: -16.5,-68.5
parent: 8364
- - uid: 6392
- components:
- - type: Transform
- pos: 1.5,-25.5
- parent: 8364
- - uid: 6596
- components:
- - type: Transform
- pos: 27.5,-77.5
- parent: 8364
- uid: 6605
components:
- type: Transform
@@ -43138,11 +45761,6 @@ entities:
- type: Transform
pos: -6.5,-62.5
parent: 8364
- - uid: 7073
- components:
- - type: Transform
- pos: 27.5,-78.5
- parent: 8364
- uid: 7201
components:
- type: Transform
@@ -43413,11 +46031,6 @@ entities:
- type: Transform
pos: 31.5,-38.5
parent: 8364
- - uid: 8814
- components:
- - type: Transform
- pos: -43.5,-61.5
- parent: 8364
- uid: 8885
components:
- type: Transform
@@ -43463,11 +46076,6 @@ entities:
- type: Transform
pos: 7.5,26.5
parent: 8364
- - uid: 9243
- components:
- - type: Transform
- pos: -45.5,-61.5
- parent: 8364
- uid: 9462
components:
- type: Transform
@@ -45118,10 +47726,10 @@ entities:
- type: Transform
pos: 45.5,37.5
parent: 8364
- - uid: 11984
+ - uid: 11758
components:
- type: Transform
- pos: -46.5,-61.5
+ pos: 18.5,-79.5
parent: 8364
- uid: 11990
components:
@@ -45213,11 +47821,6 @@ entities:
- type: Transform
pos: -44.5,28.5
parent: 8364
- - uid: 12023
- components:
- - type: Transform
- pos: -47.5,-61.5
- parent: 8364
- uid: 12025
components:
- type: Transform
@@ -45298,11 +47901,6 @@ entities:
- type: Transform
pos: -45.5,12.5
parent: 8364
- - uid: 12641
- components:
- - type: Transform
- pos: -48.5,-61.5
- parent: 8364
- uid: 13102
components:
- type: Transform
@@ -45808,10 +48406,10 @@ entities:
- type: Transform
pos: -50.5,-3.5
parent: 8364
- - uid: 14147
+ - uid: 14088
components:
- type: Transform
- pos: -49.5,-61.5
+ pos: 18.5,-76.5
parent: 8364
- uid: 14368
components:
@@ -45868,25 +48466,15 @@ entities:
- type: Transform
pos: -22.5,-67.5
parent: 8364
- - uid: 15105
- components:
- - type: Transform
- pos: -50.5,-61.5
- parent: 8364
- - uid: 15106
- components:
- - type: Transform
- pos: -51.5,-61.5
- parent: 8364
- - uid: 15126
+ - uid: 15340
components:
- type: Transform
- pos: -52.5,-61.5
+ pos: 15.5,-80.5
parent: 8364
- - uid: 15127
+ - uid: 15344
components:
- type: Transform
- pos: -53.5,-61.5
+ pos: 14.5,-80.5
parent: 8364
- uid: 15460
components:
@@ -45953,11 +48541,6 @@ entities:
- type: Transform
pos: -52.5,-55.5
parent: 8364
- - uid: 15831
- components:
- - type: Transform
- pos: -49.5,-60.5
- parent: 8364
- uid: 15832
components:
- type: Transform
@@ -46028,16 +48611,6 @@ entities:
- type: Transform
pos: -54.5,-67.5
parent: 8364
- - uid: 15857
- components:
- - type: Transform
- pos: -53.5,-62.5
- parent: 8364
- - uid: 15858
- components:
- - type: Transform
- pos: -53.5,-60.5
- parent: 8364
- uid: 15859
components:
- type: Transform
@@ -46098,6 +48671,11 @@ entities:
- type: Transform
pos: -6.5,-74.5
parent: 8364
+ - uid: 15892
+ components:
+ - type: Transform
+ pos: 18.5,-80.5
+ parent: 8364
- uid: 15904
components:
- type: Transform
@@ -46748,16 +49326,6 @@ entities:
- type: Transform
pos: 6.5,-55.5
parent: 8364
- - uid: 17589
- components:
- - type: Transform
- pos: 15.5,-75.5
- parent: 8364
- - uid: 17602
- components:
- - type: Transform
- pos: 15.5,-76.5
- parent: 8364
- uid: 17698
components:
- type: Transform
@@ -46888,6 +49456,11 @@ entities:
- type: Transform
pos: -6.5,-61.5
parent: 8364
+ - uid: 19073
+ components:
+ - type: Transform
+ pos: -0.5,-25.5
+ parent: 8364
- uid: 19130
components:
- type: Transform
@@ -46953,30 +49526,30 @@ entities:
- type: Transform
pos: -30.5,-60.5
parent: 8364
- - uid: 19169
+ - uid: 19174
components:
- type: Transform
- pos: -54.5,-61.5
+ pos: -57.5,-61.5
parent: 8364
- - uid: 19172
+ - uid: 19197
components:
- type: Transform
- pos: -55.5,-61.5
+ pos: -56.5,-61.5
parent: 8364
- - uid: 19173
+ - uid: 19202
components:
- type: Transform
- pos: -56.5,-61.5
+ pos: -55.5,-61.5
parent: 8364
- - uid: 19174
+ - uid: 19203
components:
- type: Transform
- pos: -57.5,-61.5
+ pos: -42.5,-61.5
parent: 8364
- - uid: 19175
+ - uid: 19204
components:
- type: Transform
- pos: -42.5,-61.5
+ pos: -43.5,-61.5
parent: 8364
- uid: 19288
components:
@@ -47293,11 +49866,6 @@ entities:
- type: Transform
pos: 85.5,-44.5
parent: 8364
- - uid: 19773
- components:
- - type: Transform
- pos: -45.5,-62.5
- parent: 8364
- uid: 19774
components:
- type: Transform
@@ -47538,11 +50106,6 @@ entities:
- type: Transform
pos: -49.5,-63.5
parent: 8364
- - uid: 19900
- components:
- - type: Transform
- pos: -49.5,-62.5
- parent: 8364
- uid: 19901
components:
- type: Transform
@@ -47598,11 +50161,6 @@ entities:
- type: Transform
pos: -45.5,-59.5
parent: 8364
- - uid: 19912
- components:
- - type: Transform
- pos: -45.5,-60.5
- parent: 8364
- uid: 19913
components:
- type: Transform
@@ -47668,186 +50226,16 @@ entities:
- type: Transform
pos: 81.5,-68.5
parent: 8364
- - uid: 21377
- components:
- - type: Transform
- pos: 28.5,-113.5
- parent: 8364
- - uid: 21378
- components:
- - type: Transform
- pos: 28.5,-114.5
- parent: 8364
- - uid: 21379
- components:
- - type: Transform
- pos: 29.5,-114.5
- parent: 8364
- - uid: 21380
- components:
- - type: Transform
- pos: 30.5,-114.5
- parent: 8364
- - uid: 21386
- components:
- - type: Transform
- pos: 27.5,-113.5
- parent: 8364
- - uid: 21494
- components:
- - type: Transform
- pos: 26.5,-113.5
- parent: 8364
- - uid: 21527
- components:
- - type: Transform
- pos: 26.5,-112.5
- parent: 8364
- - uid: 21579
- components:
- - type: Transform
- pos: 25.5,-112.5
- parent: 8364
- - uid: 21968
- components:
- - type: Transform
- pos: 24.5,-112.5
- parent: 8364
- uid: 22337
components:
- type: Transform
pos: -0.5,-31.5
parent: 8364
- - uid: 22454
- components:
- - type: Transform
- pos: 30.5,-113.5
- parent: 8364
- - uid: 22455
- components:
- - type: Transform
- pos: 30.5,-112.5
- parent: 8364
- - uid: 22456
- components:
- - type: Transform
- pos: 30.5,-111.5
- parent: 8364
- - uid: 22457
- components:
- - type: Transform
- pos: 30.5,-110.5
- parent: 8364
- - uid: 22527
- components:
- - type: Transform
- pos: 30.5,-109.5
- parent: 8364
- - uid: 22528
- components:
- - type: Transform
- pos: 29.5,-109.5
- parent: 8364
- - uid: 22529
- components:
- - type: Transform
- pos: 28.5,-109.5
- parent: 8364
- - uid: 22530
- components:
- - type: Transform
- pos: 28.5,-108.5
- parent: 8364
- - uid: 22536
- components:
- - type: Transform
- pos: 28.5,-107.5
- parent: 8364
- - uid: 22537
- components:
- - type: Transform
- pos: 28.5,-106.5
- parent: 8364
- - uid: 22538
- components:
- - type: Transform
- pos: 28.5,-105.5
- parent: 8364
- - uid: 22539
- components:
- - type: Transform
- pos: 28.5,-104.5
- parent: 8364
- - uid: 22540
- components:
- - type: Transform
- pos: 28.5,-103.5
- parent: 8364
- - uid: 22541
- components:
- - type: Transform
- pos: 28.5,-101.5
- parent: 8364
- - uid: 22542
- components:
- - type: Transform
- pos: 28.5,-100.5
- parent: 8364
- - uid: 22547
- components:
- - type: Transform
- pos: 28.5,-102.5
- parent: 8364
- - uid: 22548
- components:
- - type: Transform
- pos: 28.5,-98.5
- parent: 8364
- uid: 22583
components:
- type: Transform
pos: 4.5,-80.5
parent: 8364
- - uid: 22644
- components:
- - type: Transform
- pos: 28.5,-97.5
- parent: 8364
- - uid: 22736
- components:
- - type: Transform
- pos: 28.5,-96.5
- parent: 8364
- - uid: 22737
- components:
- - type: Transform
- pos: 28.5,-99.5
- parent: 8364
- - uid: 22747
- components:
- - type: Transform
- pos: 28.5,-93.5
- parent: 8364
- - uid: 22750
- components:
- - type: Transform
- pos: 28.5,-92.5
- parent: 8364
- - uid: 22758
- components:
- - type: Transform
- pos: 28.5,-95.5
- parent: 8364
- - uid: 22764
- components:
- - type: Transform
- pos: 28.5,-94.5
- parent: 8364
- - uid: 22770
- components:
- - type: Transform
- pos: 28.5,-91.5
- parent: 8364
- uid: 22807
components:
- type: Transform
@@ -47863,140 +50251,45 @@ entities:
- type: Transform
pos: 1.5,-80.5
parent: 8364
- - uid: 22858
- components:
- - type: Transform
- pos: 29.5,-91.5
- parent: 8364
- - uid: 22889
- components:
- - type: Transform
- pos: 30.5,-91.5
- parent: 8364
- - uid: 22921
- components:
- - type: Transform
- pos: 31.5,-91.5
- parent: 8364
- uid: 22961
components:
- type: Transform
pos: -10.5,-74.5
parent: 8364
- - uid: 22975
- components:
- - type: Transform
- pos: 31.5,-92.5
- parent: 8364
- - uid: 22976
- components:
- - type: Transform
- pos: 32.5,-92.5
- parent: 8364
- - uid: 22977
- components:
- - type: Transform
- pos: 33.5,-92.5
- parent: 8364
- uid: 22979
components:
- type: Transform
pos: 0.5,-80.5
parent: 8364
- - uid: 23133
+ - uid: 23003
components:
- type: Transform
- pos: 27.5,-109.5
+ pos: 18.5,-77.5
parent: 8364
- uid: 23203
components:
- type: Transform
pos: -14.5,-74.5
parent: 8364
- - uid: 23204
- components:
- - type: Transform
- pos: 26.5,-109.5
- parent: 8364
- - uid: 23211
- components:
- - type: Transform
- pos: 25.5,-109.5
- parent: 8364
- - uid: 23223
- components:
- - type: Transform
- pos: 12.5,-80.5
- parent: 8364
- uid: 23238
components:
- type: Transform
pos: -0.5,-80.5
parent: 8364
- - uid: 23915
- components:
- - type: Transform
- pos: 24.5,-109.5
- parent: 8364
- - uid: 24005
- components:
- - type: Transform
- pos: 23.5,-109.5
- parent: 8364
- - uid: 24687
- components:
- - type: Transform
- pos: 13.5,-80.5
- parent: 8364
- - uid: 25012
- components:
- - type: Transform
- pos: 23.5,-108.5
- parent: 8364
- - uid: 25013
- components:
- - type: Transform
- pos: 23.5,-107.5
- parent: 8364
- - uid: 25225
- components:
- - type: Transform
- pos: 23.5,-106.5
- parent: 8364
- - uid: 25226
- components:
- - type: Transform
- pos: 23.5,-105.5
- parent: 8364
- - uid: 25228
- components:
- - type: Transform
- pos: 23.5,-104.5
- parent: 8364
- - uid: 25229
- components:
- - type: Transform
- pos: 23.5,-103.5
- parent: 8364
- - uid: 25230
- components:
- - type: Transform
- pos: 24.5,-103.5
- parent: 8364
- - uid: 25231
+ - uid: 24928
components:
- type: Transform
- pos: 24.5,-102.5
+ pos: -19.5,-71.5
parent: 8364
- - uid: 25232
+ - uid: 24970
components:
- type: Transform
- pos: 24.5,-101.5
+ pos: 12.5,-80.5
parent: 8364
- - uid: 25347
+ - uid: 25208
components:
- type: Transform
- pos: 24.5,-100.5
+ pos: -2.5,-13.5
parent: 8364
- uid: 25611
components:
@@ -48018,21 +50311,6 @@ entities:
- type: Transform
pos: -10.5,26.5
parent: 8364
- - uid: 25677
- components:
- - type: Transform
- pos: 24.5,-99.5
- parent: 8364
- - uid: 25678
- components:
- - type: Transform
- pos: 24.5,-97.5
- parent: 8364
- - uid: 25784
- components:
- - type: Transform
- pos: 24.5,-96.5
- parent: 8364
- uid: 25839
components:
- type: Transform
@@ -48048,16 +50326,6 @@ entities:
- type: Transform
pos: -2.5,-80.5
parent: 8364
- - uid: 25892
- components:
- - type: Transform
- pos: 24.5,-95.5
- parent: 8364
- - uid: 25893
- components:
- - type: Transform
- pos: 24.5,-94.5
- parent: 8364
- uid: 25894
components:
- type: Transform
@@ -48068,61 +50336,11 @@ entities:
- type: Transform
pos: -6.5,-51.5
parent: 8364
- - uid: 25927
- components:
- - type: Transform
- pos: 24.5,-93.5
- parent: 8364
- - uid: 25949
- components:
- - type: Transform
- pos: 24.5,-92.5
- parent: 8364
- - uid: 25950
- components:
- - type: Transform
- pos: 24.5,-91.5
- parent: 8364
- - uid: 25981
- components:
- - type: Transform
- pos: 24.5,-98.5
- parent: 8364
- - uid: 25982
- components:
- - type: Transform
- pos: 25.5,-91.5
- parent: 8364
- - uid: 25983
- components:
- - type: Transform
- pos: 26.5,-91.5
- parent: 8364
- - uid: 25984
- components:
- - type: Transform
- pos: 27.5,-91.5
- parent: 8364
- - uid: 25985
- components:
- - type: Transform
- pos: 32.5,-93.5
- parent: 8364
- - uid: 25986
- components:
- - type: Transform
- pos: 32.5,-94.5
- parent: 8364
- uid: 25987
components:
- type: Transform
pos: -3.5,-80.5
parent: 8364
- - uid: 26000
- components:
- - type: Transform
- pos: 32.5,-95.5
- parent: 8364
- uid: 26001
components:
- type: Transform
@@ -48133,11 +50351,6 @@ entities:
- type: Transform
pos: -5.5,-80.5
parent: 8364
- - uid: 26003
- components:
- - type: Transform
- pos: 32.5,-96.5
- parent: 8364
- uid: 26005
components:
- type: Transform
@@ -48148,16 +50361,6 @@ entities:
- type: Transform
pos: -7.5,-80.5
parent: 8364
- - uid: 26007
- components:
- - type: Transform
- pos: 32.5,-97.5
- parent: 8364
- - uid: 26008
- components:
- - type: Transform
- pos: 32.5,-98.5
- parent: 8364
- uid: 26009
components:
- type: Transform
@@ -48188,21 +50391,6 @@ entities:
- type: Transform
pos: -9.5,-84.5
parent: 8364
- - uid: 26017
- components:
- - type: Transform
- pos: 32.5,-99.5
- parent: 8364
- - uid: 26018
- components:
- - type: Transform
- pos: 32.5,-100.5
- parent: 8364
- - uid: 26019
- components:
- - type: Transform
- pos: 32.5,-101.5
- parent: 8364
- uid: 26021
components:
- type: Transform
@@ -48253,11 +50441,6 @@ entities:
- type: Transform
pos: -15.5,-74.5
parent: 8364
- - uid: 26088
- components:
- - type: Transform
- pos: 32.5,-102.5
- parent: 8364
- uid: 26124
components:
- type: Transform
@@ -48493,66 +50676,6 @@ entities:
- type: Transform
pos: -20.5,51.5
parent: 8364
- - uid: 26381
- components:
- - type: Transform
- pos: 32.5,-103.5
- parent: 8364
- - uid: 26382
- components:
- - type: Transform
- pos: 33.5,-103.5
- parent: 8364
- - uid: 26383
- components:
- - type: Transform
- pos: 33.5,-104.5
- parent: 8364
- - uid: 26384
- components:
- - type: Transform
- pos: 33.5,-105.5
- parent: 8364
- - uid: 26385
- components:
- - type: Transform
- pos: 33.5,-106.5
- parent: 8364
- - uid: 26386
- components:
- - type: Transform
- pos: 33.5,-107.5
- parent: 8364
- - uid: 26387
- components:
- - type: Transform
- pos: 33.5,-108.5
- parent: 8364
- - uid: 26388
- components:
- - type: Transform
- pos: 32.5,-108.5
- parent: 8364
- - uid: 26389
- components:
- - type: Transform
- pos: 31.5,-108.5
- parent: 8364
- - uid: 26567
- components:
- - type: Transform
- pos: 31.5,-109.5
- parent: 8364
- - uid: 26568
- components:
- - type: Transform
- pos: 28.5,-90.5
- parent: 8364
- - uid: 26576
- components:
- - type: Transform
- pos: 28.5,-89.5
- parent: 8364
- uid: 26579
components:
- type: Transform
@@ -48578,41 +50701,6 @@ entities:
- type: Transform
pos: 8.5,-81.5
parent: 8364
- - uid: 26589
- components:
- - type: Transform
- pos: 14.5,-80.5
- parent: 8364
- - uid: 26591
- components:
- - type: Transform
- pos: 15.5,-80.5
- parent: 8364
- - uid: 26608
- components:
- - type: Transform
- pos: 15.5,-79.5
- parent: 8364
- - uid: 26627
- components:
- - type: Transform
- pos: 28.5,-88.5
- parent: 8364
- - uid: 26628
- components:
- - type: Transform
- pos: 28.5,-87.5
- parent: 8364
- - uid: 26712
- components:
- - type: Transform
- pos: 28.5,-86.5
- parent: 8364
- - uid: 26738
- components:
- - type: Transform
- pos: 28.5,-85.5
- parent: 8364
- uid: 26742
components:
- type: Transform
@@ -48673,41 +50761,6 @@ entities:
- type: Transform
pos: -11.5,-61.5
parent: 8364
- - uid: 26797
- components:
- - type: Transform
- pos: 28.5,-84.5
- parent: 8364
- - uid: 26798
- components:
- - type: Transform
- pos: 28.5,-83.5
- parent: 8364
- - uid: 26799
- components:
- - type: Transform
- pos: 28.5,-82.5
- parent: 8364
- - uid: 26800
- components:
- - type: Transform
- pos: 28.5,-81.5
- parent: 8364
- - uid: 26801
- components:
- - type: Transform
- pos: 28.5,-80.5
- parent: 8364
- - uid: 26802
- components:
- - type: Transform
- pos: 28.5,-79.5
- parent: 8364
- - uid: 26803
- components:
- - type: Transform
- pos: 28.5,-78.5
- parent: 8364
- uid: 26911
components:
- type: Transform
@@ -48733,25 +50786,30 @@ entities:
- type: Transform
pos: 9.5,-76.5
parent: 8364
- - uid: 26966
+ - uid: 26996
components:
- type: Transform
- pos: 34.5,-92.5
+ pos: 13.5,-80.5
parent: 8364
- - uid: 26967
+ - uid: 27007
+ components:
+ - type: Transform
+ pos: -0.5,-17.5
+ parent: 8364
+ - uid: 27011
components:
- type: Transform
- pos: 34.5,-91.5
+ pos: -0.5,-18.5
parent: 8364
- - uid: 26968
+ - uid: 27012
components:
- type: Transform
- pos: 34.5,-90.5
+ pos: -1.5,-17.5
parent: 8364
- - uid: 26969
+ - uid: 27065
components:
- type: Transform
- pos: 34.5,-89.5
+ pos: 18.5,-78.5
parent: 8364
- uid: 27143
components:
@@ -48773,11 +50831,6 @@ entities:
- type: Transform
pos: 9.5,-75.5
parent: 8364
- - uid: 27230
- components:
- - type: Transform
- pos: 15.5,-78.5
- parent: 8364
- uid: 27461
components:
- type: Transform
@@ -48833,165 +50886,105 @@ entities:
- type: Transform
pos: 4.5,-68.5
parent: 8364
- - uid: 27809
- components:
- - type: Transform
- pos: 27.5,-76.5
- parent: 8364
- - uid: 27810
- components:
- - type: Transform
- pos: 27.5,-75.5
- parent: 8364
- - uid: 27811
- components:
- - type: Transform
- pos: 27.5,-74.5
- parent: 8364
- - uid: 27812
- components:
- - type: Transform
- pos: 27.5,-73.5
- parent: 8364
- - uid: 27813
- components:
- - type: Transform
- pos: 27.5,-72.5
- parent: 8364
- - uid: 27814
- components:
- - type: Transform
- pos: 27.5,-71.5
- parent: 8364
- - uid: 27815
- components:
- - type: Transform
- pos: 27.5,-70.5
- parent: 8364
- - uid: 27816
- components:
- - type: Transform
- pos: 27.5,-68.5
- parent: 8364
- - uid: 27817
- components:
- - type: Transform
- pos: 27.5,-69.5
- parent: 8364
- - uid: 27818
- components:
- - type: Transform
- pos: 26.5,-68.5
- parent: 8364
- - uid: 27819
- components:
- - type: Transform
- pos: 25.5,-68.5
- parent: 8364
- - uid: 27820
- components:
- - type: Transform
- pos: 24.5,-68.5
- parent: 8364
- - uid: 27821
+ - uid: 27835
components:
- type: Transform
- pos: 23.5,-68.5
+ pos: 9.5,-68.5
parent: 8364
- - uid: 27822
+ - uid: 27845
components:
- type: Transform
- pos: 22.5,-68.5
+ pos: 17.5,-80.5
parent: 8364
- - uid: 27823
+ - uid: 27873
components:
- type: Transform
- pos: 21.5,-68.5
+ pos: -0.5,-19.5
parent: 8364
- - uid: 27824
+ - uid: 27876
components:
- type: Transform
- pos: 20.5,-68.5
+ pos: 0.5,-11.5
parent: 8364
- - uid: 27825
+ - uid: 27877
components:
- type: Transform
- pos: 19.5,-68.5
+ pos: -1.5,-11.5
parent: 8364
- - uid: 27826
+ - uid: 27883
components:
- type: Transform
- pos: 18.5,-68.5
+ pos: -0.5,-11.5
parent: 8364
- - uid: 27827
+ - uid: 27884
components:
- type: Transform
- pos: 17.5,-68.5
+ pos: -2.5,-16.5
parent: 8364
- - uid: 27828
+ - uid: 27905
components:
- type: Transform
- pos: 16.5,-68.5
+ pos: 9.5,-71.5
parent: 8364
- - uid: 27829
+ - uid: 27906
components:
- type: Transform
- pos: 15.5,-68.5
+ pos: 9.5,-72.5
parent: 8364
- - uid: 27830
+ - uid: 27907
components:
- type: Transform
- pos: 13.5,-68.5
+ pos: 9.5,-70.5
parent: 8364
- - uid: 27831
+ - uid: 27908
components:
- type: Transform
- pos: 12.5,-68.5
+ pos: 9.5,-69.5
parent: 8364
- - uid: 27832
+ - uid: 27909
components:
- type: Transform
- pos: 11.5,-68.5
+ pos: 9.5,-73.5
parent: 8364
- - uid: 27833
+ - uid: 27918
components:
- type: Transform
- pos: 14.5,-68.5
+ pos: -2.5,-17.5
parent: 8364
- - uid: 27834
+ - uid: 27980
components:
- type: Transform
- pos: 10.5,-68.5
+ pos: -2.5,-11.5
parent: 8364
- - uid: 27835
+ - uid: 27981
components:
- type: Transform
- pos: 9.5,-68.5
+ pos: -2.5,-14.5
parent: 8364
- - uid: 27905
+ - uid: 27982
components:
- type: Transform
- pos: 9.5,-71.5
+ pos: -2.5,-12.5
parent: 8364
- - uid: 27906
+ - uid: 28090
components:
- type: Transform
- pos: 9.5,-72.5
+ pos: -19.5,-11.5
parent: 8364
- - uid: 27907
+ - uid: 28099
components:
- type: Transform
- pos: 9.5,-70.5
+ pos: -20.5,-11.5
parent: 8364
- - uid: 27908
+ - uid: 28110
components:
- type: Transform
- pos: 9.5,-69.5
+ pos: -21.5,-11.5
parent: 8364
- - uid: 27909
+ - uid: 28112
components:
- type: Transform
- pos: 9.5,-73.5
+ pos: -22.5,-11.5
parent: 8364
- proto: CableHVStack
entities:
@@ -49172,11 +51165,26 @@ entities:
- type: Transform
pos: -20.5,-65.5
parent: 8364
+ - uid: 3541
+ components:
+ - type: Transform
+ pos: -20.5,-76.5
+ parent: 8364
- uid: 3635
components:
- type: Transform
pos: -20.5,-68.5
parent: 8364
+ - uid: 3672
+ components:
+ - type: Transform
+ pos: 0.5,-11.5
+ parent: 8364
+ - uid: 3673
+ components:
+ - type: Transform
+ pos: 1.5,-11.5
+ parent: 8364
- uid: 3723
components:
- type: Transform
@@ -49212,11 +51220,71 @@ entities:
- type: Transform
pos: 43.5,-3.5
parent: 8364
+ - uid: 4277
+ components:
+ - type: Transform
+ pos: -19.5,-77.5
+ parent: 8364
+ - uid: 4278
+ components:
+ - type: Transform
+ pos: -19.5,-78.5
+ parent: 8364
+ - uid: 4279
+ components:
+ - type: Transform
+ pos: -19.5,-76.5
+ parent: 8364
+ - uid: 4285
+ components:
+ - type: Transform
+ pos: -19.5,-79.5
+ parent: 8364
+ - uid: 4286
+ components:
+ - type: Transform
+ pos: -19.5,-80.5
+ parent: 8364
+ - uid: 4291
+ components:
+ - type: Transform
+ pos: -18.5,-80.5
+ parent: 8364
+ - uid: 4554
+ components:
+ - type: Transform
+ pos: 1.5,-15.5
+ parent: 8364
+ - uid: 4561
+ components:
+ - type: Transform
+ pos: 1.5,-13.5
+ parent: 8364
+ - uid: 4562
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 8364
+ - uid: 4563
+ components:
+ - type: Transform
+ pos: 1.5,-16.5
+ parent: 8364
- uid: 4578
components:
- type: Transform
pos: 0.5,-60.5
parent: 8364
+ - uid: 4942
+ components:
+ - type: Transform
+ pos: -22.5,-75.5
+ parent: 8364
+ - uid: 4943
+ components:
+ - type: Transform
+ pos: -22.5,-72.5
+ parent: 8364
- uid: 5313
components:
- type: Transform
@@ -49262,11 +51330,6 @@ entities:
- type: Transform
pos: -12.5,-19.5
parent: 8364
- - uid: 5728
- components:
- - type: Transform
- pos: 0.5,-24.5
- parent: 8364
- uid: 5731
components:
- type: Transform
@@ -49277,41 +51340,11 @@ entities:
- type: Transform
pos: 4.5,-14.5
parent: 8364
- - uid: 5763
- components:
- - type: Transform
- pos: -1.5,-24.5
- parent: 8364
- - uid: 5781
- components:
- - type: Transform
- pos: -0.5,-15.5
- parent: 8364
- uid: 5788
components:
- type: Transform
pos: -28.5,-64.5
parent: 8364
- - uid: 5789
- components:
- - type: Transform
- pos: -0.5,-14.5
- parent: 8364
- - uid: 5861
- components:
- - type: Transform
- pos: -0.5,-24.5
- parent: 8364
- - uid: 5866
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 8364
- - uid: 5874
- components:
- - type: Transform
- pos: -3.5,-24.5
- parent: 8364
- uid: 5949
components:
- type: Transform
@@ -49702,26 +51735,6 @@ entities:
- type: Transform
pos: 5.5,-25.5
parent: 8364
- - uid: 6094
- components:
- - type: Transform
- pos: -0.5,-9.5
- parent: 8364
- - uid: 6095
- components:
- - type: Transform
- pos: -0.5,-10.5
- parent: 8364
- - uid: 6096
- components:
- - type: Transform
- pos: -0.5,-11.5
- parent: 8364
- - uid: 6097
- components:
- - type: Transform
- pos: -0.5,-12.5
- parent: 8364
- uid: 6315
components:
- type: Transform
@@ -50342,11 +52355,6 @@ entities:
- type: Transform
pos: 3.5,-45.5
parent: 8364
- - uid: 8142
- components:
- - type: Transform
- pos: -0.5,-13.5
- parent: 8364
- uid: 8161
components:
- type: Transform
@@ -53447,36 +55455,6 @@ entities:
- type: Transform
pos: -23.5,-12.5
parent: 8364
- - uid: 14501
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 8364
- - uid: 14502
- components:
- - type: Transform
- pos: -23.5,-10.5
- parent: 8364
- - uid: 14503
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 8364
- - uid: 14504
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 8364
- - uid: 14505
- components:
- - type: Transform
- pos: -20.5,-10.5
- parent: 8364
- - uid: 14506
- components:
- - type: Transform
- pos: -19.5,-10.5
- parent: 8364
- uid: 14572
components:
- type: Transform
@@ -53897,11 +55875,6 @@ entities:
- type: Transform
pos: -26.5,-20.5
parent: 8364
- - uid: 14919
- components:
- - type: Transform
- pos: 1.5,-24.5
- parent: 8364
- uid: 14970
components:
- type: Transform
@@ -56442,16 +58415,6 @@ entities:
- type: Transform
pos: 69.5,-45.5
parent: 8364
- - uid: 20279
- components:
- - type: Transform
- pos: 70.5,-45.5
- parent: 8364
- - uid: 20280
- components:
- - type: Transform
- pos: 71.5,-45.5
- parent: 8364
- uid: 20281
components:
- type: Transform
@@ -56492,11 +58455,6 @@ entities:
- type: Transform
pos: 77.5,-43.5
parent: 8364
- - uid: 20289
- components:
- - type: Transform
- pos: 66.5,-39.5
- parent: 8364
- uid: 20290
components:
- type: Transform
@@ -56662,11 +58620,6 @@ entities:
- type: Transform
pos: 61.5,-29.5
parent: 8364
- - uid: 20327
- components:
- - type: Transform
- pos: 66.5,-26.5
- parent: 8364
- uid: 20328
components:
- type: Transform
@@ -56822,6 +58775,16 @@ entities:
- type: Transform
pos: 55.5,-32.5
parent: 8364
+ - uid: 20858
+ components:
+ - type: Transform
+ pos: 66.5,-26.5
+ parent: 8364
+ - uid: 21376
+ components:
+ - type: Transform
+ pos: 66.5,-39.5
+ parent: 8364
- uid: 21473
components:
- type: Transform
@@ -57317,45 +59280,30 @@ entities:
- type: Transform
pos: 8.5,-36.5
parent: 8364
- - uid: 22005
+ - uid: 21968
components:
- type: Transform
- pos: -10.5,-19.5
+ pos: 71.5,-45.5
parent: 8364
- - uid: 22214
+ - uid: 22005
components:
- type: Transform
- pos: 24.5,-112.5
+ pos: -10.5,-19.5
parent: 8364
- uid: 22216
components:
- type: Transform
pos: 7.5,-86.5
parent: 8364
- - uid: 22220
- components:
- - type: Transform
- pos: 25.5,-112.5
- parent: 8364
- - uid: 22450
- components:
- - type: Transform
- pos: 26.5,-112.5
- parent: 8364
- - uid: 22451
- components:
- - type: Transform
- pos: 26.5,-111.5
- parent: 8364
- - uid: 22452
+ - uid: 22536
components:
- type: Transform
- pos: 26.5,-110.5
+ pos: -22.5,-74.5
parent: 8364
- - uid: 22453
+ - uid: 22537
components:
- type: Transform
- pos: 27.5,-110.5
+ pos: -22.5,-73.5
parent: 8364
- uid: 22634
components:
@@ -57432,11 +59380,56 @@ entities:
- type: Transform
pos: -16.5,-70.5
parent: 8364
+ - uid: 23849
+ components:
+ - type: Transform
+ pos: 1.5,-12.5
+ parent: 8364
+ - uid: 23904
+ components:
+ - type: Transform
+ pos: 70.5,-45.5
+ parent: 8364
+ - uid: 23914
+ components:
+ - type: Transform
+ pos: -0.5,-22.5
+ parent: 8364
- uid: 24189
components:
- type: Transform
pos: -1.5,-8.5
parent: 8364
+ - uid: 24923
+ components:
+ - type: Transform
+ pos: -20.5,-74.5
+ parent: 8364
+ - uid: 24927
+ components:
+ - type: Transform
+ pos: -21.5,-76.5
+ parent: 8364
+ - uid: 24974
+ components:
+ - type: Transform
+ pos: -0.5,-19.5
+ parent: 8364
+ - uid: 25089
+ components:
+ - type: Transform
+ pos: 0.5,-16.5
+ parent: 8364
+ - uid: 25215
+ components:
+ - type: Transform
+ pos: -19.5,-9.5
+ parent: 8364
+ - uid: 25251
+ components:
+ - type: Transform
+ pos: -22.5,-76.5
+ parent: 8364
- uid: 25262
components:
- type: Transform
@@ -58222,6 +60215,16 @@ entities:
- type: Transform
pos: -14.5,34.5
parent: 8364
+ - uid: 26673
+ components:
+ - type: Transform
+ pos: -0.5,-21.5
+ parent: 8364
+ - uid: 26679
+ components:
+ - type: Transform
+ pos: -0.5,-20.5
+ parent: 8364
- uid: 26715
components:
- type: Transform
@@ -58267,310 +60270,40 @@ entities:
- type: Transform
pos: -6.5,-80.5
parent: 8364
- - uid: 26970
- components:
- - type: Transform
- pos: 35.5,-92.5
- parent: 8364
- - uid: 26971
- components:
- - type: Transform
- pos: 34.5,-92.5
- parent: 8364
- - uid: 26972
- components:
- - type: Transform
- pos: 33.5,-92.5
- parent: 8364
- - uid: 26973
- components:
- - type: Transform
- pos: 33.5,-91.5
- parent: 8364
- - uid: 26974
- components:
- - type: Transform
- pos: 33.5,-90.5
- parent: 8364
- - uid: 26975
- components:
- - type: Transform
- pos: 33.5,-89.5
- parent: 8364
- - uid: 26976
- components:
- - type: Transform
- pos: 34.5,-89.5
- parent: 8364
- - uid: 26977
- components:
- - type: Transform
- pos: 32.5,-91.5
- parent: 8364
- - uid: 26978
- components:
- - type: Transform
- pos: 31.5,-91.5
- parent: 8364
- - uid: 26979
- components:
- - type: Transform
- pos: 30.5,-91.5
- parent: 8364
- - uid: 26980
- components:
- - type: Transform
- pos: 29.5,-91.5
- parent: 8364
- - uid: 26981
- components:
- - type: Transform
- pos: 28.5,-91.5
- parent: 8364
- - uid: 26982
- components:
- - type: Transform
- pos: 28.5,-90.5
- parent: 8364
- - uid: 26983
- components:
- - type: Transform
- pos: 28.5,-89.5
- parent: 8364
- - uid: 26984
- components:
- - type: Transform
- pos: 28.5,-88.5
- parent: 8364
- - uid: 26985
- components:
- - type: Transform
- pos: 28.5,-87.5
- parent: 8364
- - uid: 26986
- components:
- - type: Transform
- pos: 28.5,-86.5
- parent: 8364
- - uid: 26987
- components:
- - type: Transform
- pos: 29.5,-86.5
- parent: 8364
- - uid: 26988
- components:
- - type: Transform
- pos: 30.5,-86.5
- parent: 8364
- - uid: 26989
- components:
- - type: Transform
- pos: 31.5,-86.5
- parent: 8364
- - uid: 26990
- components:
- - type: Transform
- pos: 27.5,-91.5
- parent: 8364
- - uid: 26991
- components:
- - type: Transform
- pos: 26.5,-91.5
- parent: 8364
- - uid: 26992
- components:
- - type: Transform
- pos: 25.5,-91.5
- parent: 8364
- - uid: 26993
- components:
- - type: Transform
- pos: 24.5,-91.5
- parent: 8364
- - uid: 26994
- components:
- - type: Transform
- pos: 23.5,-91.5
- parent: 8364
- - uid: 26995
- components:
- - type: Transform
- pos: 22.5,-91.5
- parent: 8364
- - uid: 26996
- components:
- - type: Transform
- pos: 22.5,-92.5
- parent: 8364
- - uid: 26997
- components:
- - type: Transform
- pos: 21.5,-92.5
- parent: 8364
- - uid: 26998
- components:
- - type: Transform
- pos: 28.5,-92.5
- parent: 8364
- - uid: 26999
- components:
- - type: Transform
- pos: 28.5,-93.5
- parent: 8364
- - uid: 27000
- components:
- - type: Transform
- pos: 28.5,-94.5
- parent: 8364
- - uid: 27001
- components:
- - type: Transform
- pos: 28.5,-95.5
- parent: 8364
- - uid: 27002
- components:
- - type: Transform
- pos: 28.5,-96.5
- parent: 8364
- - uid: 27003
- components:
- - type: Transform
- pos: 28.5,-97.5
- parent: 8364
- - uid: 27004
+ - uid: 26943
components:
- type: Transform
- pos: 28.5,-98.5
+ pos: -0.5,-17.5
parent: 8364
- - uid: 27005
+ - uid: 26954
components:
- type: Transform
- pos: 28.5,-99.5
+ pos: -0.5,-16.5
parent: 8364
- - uid: 27006
+ - uid: 26955
components:
- type: Transform
- pos: 28.5,-100.5
+ pos: -0.5,-15.5
parent: 8364
- - uid: 27007
+ - uid: 26956
components:
- type: Transform
- pos: 29.5,-100.5
+ pos: -20.5,-72.5
parent: 8364
- uid: 27008
components:
- type: Transform
- pos: 30.5,-100.5
- parent: 8364
- - uid: 27009
- components:
- - type: Transform
- pos: 31.5,-100.5
- parent: 8364
- - uid: 27010
- components:
- - type: Transform
- pos: 32.5,-100.5
- parent: 8364
- - uid: 27011
- components:
- - type: Transform
- pos: 32.5,-99.5
- parent: 8364
- - uid: 27012
- components:
- - type: Transform
- pos: 32.5,-98.5
- parent: 8364
- - uid: 27013
- components:
- - type: Transform
- pos: 32.5,-97.5
- parent: 8364
- - uid: 27014
- components:
- - type: Transform
- pos: 32.5,-96.5
- parent: 8364
- - uid: 27015
- components:
- - type: Transform
- pos: 32.5,-95.5
- parent: 8364
- - uid: 27016
- components:
- - type: Transform
- pos: 32.5,-94.5
- parent: 8364
- - uid: 27017
- components:
- - type: Transform
- pos: 32.5,-93.5
- parent: 8364
- - uid: 27018
- components:
- - type: Transform
- pos: 32.5,-92.5
- parent: 8364
- - uid: 27019
- components:
- - type: Transform
- pos: 28.5,-101.5
- parent: 8364
- - uid: 27020
- components:
- - type: Transform
- pos: 28.5,-102.5
- parent: 8364
- - uid: 27021
- components:
- - type: Transform
- pos: 28.5,-103.5
- parent: 8364
- - uid: 27022
- components:
- - type: Transform
- pos: 28.5,-104.5
- parent: 8364
- - uid: 27023
- components:
- - type: Transform
- pos: 28.5,-105.5
- parent: 8364
- - uid: 27024
- components:
- - type: Transform
- pos: 28.5,-106.5
- parent: 8364
- - uid: 27025
- components:
- - type: Transform
- pos: 28.5,-107.5
- parent: 8364
- - uid: 27026
- components:
- - type: Transform
- pos: 28.5,-108.5
- parent: 8364
- - uid: 27027
- components:
- - type: Transform
- pos: 28.5,-109.5
- parent: 8364
- - uid: 27028
- components:
- - type: Transform
- pos: 28.5,-110.5
+ pos: -1.5,-15.5
parent: 8364
- - uid: 27029
+ - uid: 27054
components:
- type: Transform
- pos: 28.5,-111.5
+ pos: -20.5,-73.5
parent: 8364
- - uid: 27030
+ - uid: 27205
components:
- type: Transform
- pos: 29.5,-111.5
+ pos: -20.5,-75.5
parent: 8364
- uid: 27314
components:
@@ -58772,6 +60505,11 @@ entities:
- type: Transform
pos: -0.5,-76.5
parent: 8364
+ - uid: 27814
+ components:
+ - type: Transform
+ pos: -0.5,-18.5
+ parent: 8364
- uid: 27967
components:
- type: Transform
@@ -58792,11 +60530,56 @@ entities:
- type: Transform
pos: 59.5,-38.5
parent: 8364
+ - uid: 27993
+ components:
+ - type: Transform
+ pos: -20.5,-9.5
+ parent: 8364
+ - uid: 27994
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 8364
+ - uid: 27995
+ components:
+ - type: Transform
+ pos: -22.5,-9.5
+ parent: 8364
+ - uid: 27996
+ components:
+ - type: Transform
+ pos: -22.5,-10.5
+ parent: 8364
+ - uid: 27998
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
+ - uid: 27999
+ components:
+ - type: Transform
+ pos: -22.5,-12.5
+ parent: 8364
- uid: 28060
components:
- type: Transform
pos: 58.5,-35.5
parent: 8364
+ - uid: 28156
+ components:
+ - type: Transform
+ pos: -1.5,-22.5
+ parent: 8364
+ - uid: 28157
+ components:
+ - type: Transform
+ pos: -2.5,-22.5
+ parent: 8364
+ - uid: 28158
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 8364
- proto: CableMVStack
entities:
- uid: 1697
@@ -58983,17 +60766,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 81.5,-65.5
parent: 8364
- - uid: 21376
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-114.5
- parent: 8364
- - uid: 26965
+ - uid: 25051
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-92.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-11.5
parent: 8364
- proto: CannabisSeeds
entities:
@@ -59017,12 +60794,12 @@ entities:
- uid: 21190
components:
- type: Transform
- pos: 74.3515,-19.897121
+ pos: 74.41276,-20.008142
parent: 8364
- uid: 21198
components:
- type: Transform
- pos: 74.72912,-20.240425
+ pos: 74.631615,-20.414675
parent: 8364
- proto: CaptainIDCard
entities:
@@ -59060,6 +60837,21 @@ entities:
- type: Transform
pos: -15.5,52.5
parent: 8364
+ - uid: 4508
+ components:
+ - type: Transform
+ pos: 55.5,-8.5
+ parent: 8364
+ - uid: 4510
+ components:
+ - type: Transform
+ pos: 55.5,-6.5
+ parent: 8364
+ - uid: 4512
+ components:
+ - type: Transform
+ pos: 56.5,-6.5
+ parent: 8364
- uid: 5260
components:
- type: Transform
@@ -59120,21 +60912,6 @@ entities:
- type: Transform
pos: 55.5,-3.5
parent: 8364
- - uid: 5378
- components:
- - type: Transform
- pos: 55.5,-4.5
- parent: 8364
- - uid: 5379
- components:
- - type: Transform
- pos: 55.5,-5.5
- parent: 8364
- - uid: 5380
- components:
- - type: Transform
- pos: 55.5,-6.5
- parent: 8364
- uid: 5384
components:
- type: Transform
@@ -59145,21 +60922,6 @@ entities:
- type: Transform
pos: 56.5,-3.5
parent: 8364
- - uid: 5386
- components:
- - type: Transform
- pos: 56.5,-4.5
- parent: 8364
- - uid: 5387
- components:
- - type: Transform
- pos: 56.5,-5.5
- parent: 8364
- - uid: 5388
- components:
- - type: Transform
- pos: 56.5,-6.5
- parent: 8364
- uid: 5396
components:
- type: Transform
@@ -59390,16 +61152,31 @@ entities:
- type: Transform
pos: 11.5,-24.5
parent: 8364
+ - uid: 6089
+ components:
+ - type: Transform
+ pos: 55.5,-5.5
+ parent: 8364
- uid: 7045
components:
- type: Transform
pos: 8.5,-27.5
parent: 8364
+ - uid: 7418
+ components:
+ - type: Transform
+ pos: 55.5,-9.5
+ parent: 8364
- uid: 8026
components:
- type: Transform
pos: 20.5,-7.5
parent: 8364
+ - uid: 8143
+ components:
+ - type: Transform
+ pos: 55.5,-7.5
+ parent: 8364
- uid: 8200
components:
- type: Transform
@@ -59455,6 +61232,11 @@ entities:
- type: Transform
pos: 20.5,-8.5
parent: 8364
+ - uid: 14484
+ components:
+ - type: Transform
+ pos: 56.5,-8.5
+ parent: 8364
- uid: 14857
components:
- type: Transform
@@ -59560,6 +61342,16 @@ entities:
- type: Transform
pos: -31.5,-25.5
parent: 8364
+ - uid: 22732
+ components:
+ - type: Transform
+ pos: 55.5,-4.5
+ parent: 8364
+ - uid: 22733
+ components:
+ - type: Transform
+ pos: 56.5,-5.5
+ parent: 8364
- uid: 22809
components:
- type: Transform
@@ -59585,36 +61377,6 @@ entities:
- type: Transform
pos: 19.5,-5.5
parent: 8364
- - uid: 24941
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-7.5
- parent: 8364
- - uid: 24942
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-7.5
- parent: 8364
- - uid: 24943
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-8.5
- parent: 8364
- - uid: 24944
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-8.5
- parent: 8364
- - uid: 24945
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-8.5
- parent: 8364
- uid: 24946
components:
- type: Transform
@@ -59627,23 +61389,15 @@ entities:
rot: -1.5707963267948966 rad
pos: 58.5,-9.5
parent: 8364
- - uid: 24948
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-9.5
- parent: 8364
- uid: 24949
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 56.5,-9.5
+ pos: 56.5,-4.5
parent: 8364
- - uid: 24950
+ - uid: 24961
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 55.5,-9.5
+ pos: 56.5,-7.5
parent: 8364
- uid: 25684
components:
@@ -59725,6 +61479,21 @@ entities:
- type: Transform
pos: -11.5,52.5
parent: 8364
+ - uid: 26680
+ components:
+ - type: Transform
+ pos: 57.5,-9.5
+ parent: 8364
+ - uid: 26684
+ components:
+ - type: Transform
+ pos: 57.5,-8.5
+ parent: 8364
+ - uid: 26690
+ components:
+ - type: Transform
+ pos: 56.5,-9.5
+ parent: 8364
- uid: 26884
components:
- type: Transform
@@ -60106,6 +61875,11 @@ entities:
parent: 8364
- proto: CarpetGreen
entities:
+ - uid: 828
+ components:
+ - type: Transform
+ pos: 69.5,-4.5
+ parent: 8364
- uid: 1588
components:
- type: Transform
@@ -60131,130 +61905,161 @@ entities:
- type: Transform
pos: 11.5,-36.5
parent: 8364
- - uid: 5239
+ - uid: 4513
components:
- type: Transform
- pos: 56.5,-34.5
+ pos: 66.5,-8.5
parent: 8364
- - uid: 5242
+ - uid: 4518
components:
- type: Transform
- pos: 56.5,-35.5
+ pos: 66.5,-9.5
parent: 8364
- - uid: 6952
+ - uid: 4521
components:
- type: Transform
- pos: 21.5,-3.5
+ pos: 69.5,-8.5
parent: 8364
- - uid: 6990
+ - uid: 4530
components:
- type: Transform
- pos: 22.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,-8.5
parent: 8364
- - uid: 7001
+ - uid: 4531
components:
- type: Transform
- pos: 23.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 69.5,-9.5
parent: 8364
- - uid: 7003
+ - uid: 4533
components:
- type: Transform
- pos: 74.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 68.5,-9.5
parent: 8364
- - uid: 7013
+ - uid: 4534
components:
- type: Transform
- pos: 64.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 68.5,-10.5
parent: 8364
- - uid: 7022
+ - uid: 4535
components:
- type: Transform
- pos: 68.5,-6.5
+ rot: 3.141592653589793 rad
+ pos: 69.5,-10.5
parent: 8364
- - uid: 7036
+ - uid: 5239
components:
- type: Transform
- pos: 18.5,24.5
+ pos: 56.5,-34.5
parent: 8364
- - uid: 7038
+ - uid: 5242
components:
- type: Transform
- pos: 66.5,-9.5
+ pos: 56.5,-35.5
parent: 8364
- - uid: 7046
+ - uid: 5737
components:
- type: Transform
- pos: 70.5,-10.5
+ pos: 69.5,-5.5
parent: 8364
- - uid: 7074
+ - uid: 5739
components:
- type: Transform
- pos: 67.5,-8.5
+ pos: 69.5,-6.5
parent: 8364
- - uid: 7080
+ - uid: 5828
components:
- type: Transform
- pos: 64.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-12.5
parent: 8364
- - uid: 7087
+ - uid: 5876
components:
- type: Transform
- pos: 66.5,-8.5
+ pos: 71.5,-9.5
parent: 8364
- - uid: 7090
+ - uid: 5882
components:
- type: Transform
- pos: 18.5,25.5
+ pos: 72.5,-8.5
parent: 8364
- - uid: 7092
+ - uid: 5883
components:
- type: Transform
- pos: 68.5,-9.5
+ pos: 72.5,-9.5
parent: 8364
- - uid: 7127
+ - uid: 5988
components:
- type: Transform
- pos: 68.5,-4.5
+ pos: 71.5,-8.5
parent: 8364
- - uid: 7133
+ - uid: 6090
components:
- type: Transform
- pos: 65.5,-8.5
+ pos: 69.5,-7.5
parent: 8364
- - uid: 7153
+ - uid: 6952
components:
- type: Transform
- pos: 69.5,-10.5
+ pos: 21.5,-3.5
parent: 8364
- - uid: 7154
+ - uid: 6990
components:
- type: Transform
- pos: 68.5,-8.5
+ pos: 22.5,-3.5
parent: 8364
- - uid: 7176
+ - uid: 7001
components:
- type: Transform
- pos: 68.5,-10.5
+ pos: 23.5,-3.5
parent: 8364
- - uid: 7181
+ - uid: 7003
components:
- type: Transform
- pos: 68.5,-5.5
+ pos: 74.5,-9.5
parent: 8364
- - uid: 7217
+ - uid: 7013
components:
- type: Transform
- pos: 67.5,-9.5
+ pos: 64.5,-9.5
parent: 8364
- - uid: 7224
+ - uid: 7022
components:
- type: Transform
- pos: 71.5,-10.5
+ pos: 68.5,-6.5
parent: 8364
- - uid: 7231
+ - uid: 7036
components:
- type: Transform
- pos: 65.5,-9.5
+ pos: 18.5,24.5
+ parent: 8364
+ - uid: 7080
+ components:
+ - type: Transform
+ pos: 64.5,-8.5
+ parent: 8364
+ - uid: 7090
+ components:
+ - type: Transform
+ pos: 18.5,25.5
+ parent: 8364
+ - uid: 7127
+ components:
+ - type: Transform
+ pos: 68.5,-4.5
+ parent: 8364
+ - uid: 7181
+ components:
+ - type: Transform
+ pos: 68.5,-5.5
+ parent: 8364
+ - uid: 7224
+ components:
+ - type: Transform
+ pos: 71.5,-10.5
parent: 8364
- uid: 7232
components:
@@ -60281,6 +62086,21 @@ entities:
- type: Transform
pos: 16.5,24.5
parent: 8364
+ - uid: 8146
+ components:
+ - type: Transform
+ pos: 67.5,-8.5
+ parent: 8364
+ - uid: 8147
+ components:
+ - type: Transform
+ pos: 65.5,-8.5
+ parent: 8364
+ - uid: 8148
+ components:
+ - type: Transform
+ pos: 65.5,-9.5
+ parent: 8364
- uid: 8401
components:
- type: Transform
@@ -60311,6 +62131,12 @@ entities:
- type: Transform
pos: 61.5,-3.5
parent: 8364
+ - uid: 10870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-12.5
+ parent: 8364
- uid: 11373
components:
- type: Transform
@@ -60461,11 +62287,29 @@ entities:
- type: Transform
pos: 54.5,-0.5
parent: 8364
+ - uid: 17704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-10.5
+ parent: 8364
- uid: 19153
components:
- type: Transform
pos: 11.5,-35.5
parent: 8364
+ - uid: 20119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-9.5
+ parent: 8364
+ - uid: 20124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-8.5
+ parent: 8364
- uid: 20364
components:
- type: Transform
@@ -60521,71 +62365,21 @@ entities:
- type: Transform
pos: 5.5,-18.5
parent: 8364
- - uid: 24969
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-9.5
- parent: 8364
- - uid: 24970
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-9.5
- parent: 8364
- - uid: 24971
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-9.5
- parent: 8364
- - uid: 24972
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-9.5
- parent: 8364
- - uid: 24973
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-9.5
- parent: 8364
- - uid: 24974
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-8.5
- parent: 8364
- - uid: 24975
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-8.5
- parent: 8364
- - uid: 24976
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-8.5
- parent: 8364
- - uid: 24977
+ - uid: 22736
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-8.5
+ pos: 68.5,-8.5
parent: 8364
- - uid: 24978
+ - uid: 22737
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-8.5
+ pos: 67.5,-9.5
parent: 8364
- - uid: 24979
+ - uid: 23772
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,-9.5
parent: 8364
- uid: 24980
components:
@@ -60599,35 +62393,29 @@ entities:
rot: 1.5707963267948966 rad
pos: 70.5,-6.5
parent: 8364
- - uid: 24982
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 69.5,-6.5
- parent: 8364
- - uid: 24983
+ - uid: 24985
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 69.5,-5.5
+ pos: 70.5,-4.5
parent: 8364
- - uid: 24984
+ - uid: 24986
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 69.5,-4.5
+ pos: 70.5,-5.5
parent: 8364
- - uid: 24985
+ - uid: 25190
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 70.5,-4.5
+ pos: -21.5,-13.5
parent: 8364
- - uid: 24986
+ - uid: 25201
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 70.5,-5.5
+ pos: -20.5,-13.5
parent: 8364
- uid: 26117
components:
@@ -60665,6 +62453,18 @@ entities:
rot: 3.141592653589793 rad
pos: 27.5,-0.5
parent: 8364
+ - uid: 27021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-13.5
+ parent: 8364
+ - uid: 27022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-12.5
+ parent: 8364
- proto: CarpetOrange
entities:
- uid: 1753
@@ -61013,11 +62813,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -8.5,-16.5
parent: 8364
- - uid: 13471
- components:
- - type: Transform
- pos: -23.5,-11.5
- parent: 8364
- uid: 13478
components:
- type: Transform
@@ -61034,46 +62829,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -10.5,-16.5
parent: 8364
- - uid: 14091
- components:
- - type: Transform
- pos: -23.5,-12.5
- parent: 8364
- - uid: 14105
- components:
- - type: Transform
- pos: -22.5,-10.5
- parent: 8364
- - uid: 14106
- components:
- - type: Transform
- pos: -23.5,-10.5
- parent: 8364
- - uid: 14113
- components:
- - type: Transform
- pos: -21.5,-10.5
- parent: 8364
- - uid: 14114
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 8364
- - uid: 14115
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 8364
- - uid: 14116
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 8364
- - uid: 14117
- components:
- - type: Transform
- pos: -22.5,-12.5
- parent: 8364
- uid: 19150
components:
- type: Transform
@@ -61114,11 +62869,29 @@ entities:
- type: Transform
pos: 49.5,-30.5
parent: 8364
+ - uid: 2017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-79.5
+ parent: 8364
+ - uid: 3606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-88.5
+ parent: 8364
- uid: 4244
components:
- type: Transform
pos: 49.5,-18.5
parent: 8364
+ - uid: 4476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-79.5
+ parent: 8364
- uid: 4663
components:
- type: Transform
@@ -61134,6 +62907,29 @@ entities:
- type: Transform
pos: 49.5,-22.5
parent: 8364
+ - uid: 5861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-88.5
+ parent: 8364
+ - uid: 5864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-79.5
+ parent: 8364
+ - uid: 5865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,-79.5
+ parent: 8364
+ - uid: 5866
+ components:
+ - type: Transform
+ pos: 0.5,41.5
+ parent: 8364
- uid: 7149
components:
- type: Transform
@@ -61149,6 +62945,12 @@ entities:
- type: Transform
pos: 2.5,11.5
parent: 8364
+ - uid: 10548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-11.5
+ parent: 8364
- uid: 10573
components:
- type: Transform
@@ -61574,6 +63376,12 @@ entities:
- type: Transform
pos: 32.5,-45.5
parent: 8364
+ - uid: 12262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-88.5
+ parent: 8364
- uid: 12328
components:
- type: Transform
@@ -61614,6 +63422,12 @@ entities:
- type: Transform
pos: 32.5,-53.5
parent: 8364
+ - uid: 12458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-88.5
+ parent: 8364
- uid: 12561
components:
- type: Transform
@@ -62259,6 +64073,12 @@ entities:
- type: Transform
pos: -22.5,10.5
parent: 8364
+ - uid: 13781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-79.5
+ parent: 8364
- uid: 13786
components:
- type: Transform
@@ -62299,6 +64119,18 @@ entities:
- type: Transform
pos: -39.5,-17.5
parent: 8364
+ - uid: 14091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,-79.5
+ parent: 8364
+ - uid: 14106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-84.5
+ parent: 8364
- uid: 14119
components:
- type: Transform
@@ -62384,16 +64216,6 @@ entities:
- type: Transform
pos: -26.5,-10.5
parent: 8364
- - uid: 14702
- components:
- - type: Transform
- pos: -26.5,-11.5
- parent: 8364
- - uid: 14703
- components:
- - type: Transform
- pos: -26.5,-12.5
- parent: 8364
- uid: 14757
components:
- type: Transform
@@ -63109,6 +64931,21 @@ entities:
- type: Transform
pos: 47.5,38.5
parent: 8364
+ - uid: 15831
+ components:
+ - type: Transform
+ pos: -53.5,-61.5
+ parent: 8364
+ - uid: 15857
+ components:
+ - type: Transform
+ pos: -45.5,-61.5
+ parent: 8364
+ - uid: 15858
+ components:
+ - type: Transform
+ pos: -55.5,-61.5
+ parent: 8364
- uid: 15871
components:
- type: Transform
@@ -63129,6 +64966,12 @@ entities:
- type: Transform
pos: 47.5,34.5
parent: 8364
+ - uid: 15879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-79.5
+ parent: 8364
- uid: 15894
components:
- type: Transform
@@ -63489,6 +65332,18 @@ entities:
- type: Transform
pos: -47.5,13.5
parent: 8364
+ - uid: 16145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-88.5
+ parent: 8364
+ - uid: 16207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-88.5
+ parent: 8364
- uid: 16307
components:
- type: Transform
@@ -63569,11 +65424,35 @@ entities:
- type: Transform
pos: -49.5,2.5
parent: 8364
+ - uid: 16396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-81.5
+ parent: 8364
+ - uid: 16398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,-79.5
+ parent: 8364
+ - uid: 16451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,-79.5
+ parent: 8364
- uid: 16452
components:
- type: Transform
pos: -49.5,1.5
parent: 8364
+ - uid: 16506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,-84.5
+ parent: 8364
- uid: 16532
components:
- type: Transform
@@ -63594,16 +65473,53 @@ entities:
- type: Transform
pos: 0.5,-76.5
parent: 8364
- - uid: 16634
+ - uid: 16553
components:
- type: Transform
- pos: 27.5,-76.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-88.5
+ parent: 8364
+ - uid: 16554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-80.5
+ parent: 8364
+ - uid: 16555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-84.5
+ parent: 8364
+ - uid: 16619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-87.5
+ parent: 8364
+ - uid: 16621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-85.5
parent: 8364
- uid: 16714
components:
- type: Transform
pos: -0.5,-77.5
parent: 8364
+ - uid: 16789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,-79.5
+ parent: 8364
+ - uid: 16973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-79.5
+ parent: 8364
- uid: 17184
components:
- type: Transform
@@ -63647,80 +65563,60 @@ entities:
rot: 3.141592653589793 rad
pos: -24.5,-68.5
parent: 8364
- - uid: 19189
- components:
- - type: Transform
- pos: -42.5,-61.5
- parent: 8364
- - uid: 19194
- components:
- - type: Transform
- pos: -43.5,-61.5
- parent: 8364
- - uid: 19195
- components:
- - type: Transform
- pos: -44.5,-61.5
- parent: 8364
- - uid: 19196
- components:
- - type: Transform
- pos: -45.5,-61.5
- parent: 8364
- - uid: 19197
+ - uid: 19173
components:
- type: Transform
- pos: -46.5,-61.5
+ pos: -49.5,-61.5
parent: 8364
- - uid: 19200
+ - uid: 19175
components:
- type: Transform
pos: -47.5,-61.5
parent: 8364
- - uid: 19201
+ - uid: 19189
components:
- type: Transform
- pos: -48.5,-61.5
+ pos: -51.5,-61.5
parent: 8364
- - uid: 19202
+ - uid: 19194
components:
- type: Transform
- pos: -49.5,-61.5
+ pos: -42.5,-61.5
parent: 8364
- - uid: 19203
+ - uid: 19195
components:
- type: Transform
- pos: -50.5,-61.5
+ pos: -45.5,-60.5
parent: 8364
- - uid: 19204
+ - uid: 19196
components:
- type: Transform
- pos: -51.5,-61.5
+ pos: -53.5,-62.5
parent: 8364
- - uid: 19205
+ - uid: 19200
components:
- type: Transform
- pos: -52.5,-61.5
+ pos: -49.5,-60.5
parent: 8364
- - uid: 19207
+ - uid: 19201
components:
- type: Transform
- pos: -53.5,-61.5
+ pos: -53.5,-60.5
parent: 8364
- uid: 19209
components:
- type: Transform
- pos: -54.5,-61.5
+ pos: -45.5,-62.5
parent: 8364
- uid: 19210
components:
- type: Transform
- pos: -55.5,-61.5
+ pos: -49.5,-62.5
parent: 8364
- uid: 19211
components:
- type: Transform
- pos: -56.5,-61.5
+ pos: -43.5,-61.5
parent: 8364
- uid: 19212
components:
@@ -63750,12 +65646,12 @@ entities:
- uid: 19222
components:
- type: Transform
- pos: -53.5,-60.5
+ pos: -54.5,-61.5
parent: 8364
- uid: 19223
components:
- type: Transform
- pos: -49.5,-60.5
+ pos: -52.5,-61.5
parent: 8364
- uid: 19224
components:
@@ -63810,12 +65706,12 @@ entities:
- uid: 19269
components:
- type: Transform
- pos: -45.5,-60.5
+ pos: -50.5,-61.5
parent: 8364
- uid: 19270
components:
- type: Transform
- pos: -45.5,-62.5
+ pos: -48.5,-61.5
parent: 8364
- uid: 19271
components:
@@ -63845,7 +65741,7 @@ entities:
- uid: 19290
components:
- type: Transform
- pos: -49.5,-62.5
+ pos: -46.5,-61.5
parent: 8364
- uid: 19291
components:
@@ -63875,7 +65771,7 @@ entities:
- uid: 19300
components:
- type: Transform
- pos: -53.5,-62.5
+ pos: -44.5,-61.5
parent: 8364
- uid: 19301
components:
@@ -64237,6 +66133,12 @@ entities:
- type: Transform
pos: 87.5,-74.5
parent: 8364
+ - uid: 22000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,-79.5
+ parent: 8364
- uid: 22489
components:
- type: Transform
@@ -64357,21 +66259,6 @@ entities:
- type: Transform
pos: 52.5,-79.5
parent: 8364
- - uid: 22513
- components:
- - type: Transform
- pos: 52.5,-80.5
- parent: 8364
- - uid: 22514
- components:
- - type: Transform
- pos: 52.5,-81.5
- parent: 8364
- - uid: 22515
- components:
- - type: Transform
- pos: 52.5,-82.5
- parent: 8364
- uid: 22517
components:
- type: Transform
@@ -64437,6 +66324,72 @@ entities:
- type: Transform
pos: -10.5,-74.5
parent: 8364
+ - uid: 22744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-88.5
+ parent: 8364
+ - uid: 22922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-82.5
+ parent: 8364
+ - uid: 22941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-79.5
+ parent: 8364
+ - uid: 22944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-79.5
+ parent: 8364
+ - uid: 23002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-79.5
+ parent: 8364
+ - uid: 23006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-88.5
+ parent: 8364
+ - uid: 23008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-88.5
+ parent: 8364
+ - uid: 23150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-88.5
+ parent: 8364
+ - uid: 23153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-86.5
+ parent: 8364
+ - uid: 23179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-79.5
+ parent: 8364
+ - uid: 23182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-83.5
+ parent: 8364
- uid: 26401
components:
- type: Transform
@@ -64581,15 +66534,27 @@ entities:
- type: Transform
pos: -1.5,-75.5
parent: 8364
- - uid: 27276
+ - uid: 26784
components:
- type: Transform
- pos: -0.5,41.5
+ pos: -56.5,-61.5
parent: 8364
- - uid: 27277
+ - uid: 26995
components:
- type: Transform
- pos: 0.5,41.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-88.5
+ parent: 8364
+ - uid: 27060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-84.5
+ parent: 8364
+ - uid: 27276
+ components:
+ - type: Transform
+ pos: -0.5,41.5
parent: 8364
- uid: 27278
components:
@@ -64732,80 +66697,11 @@ entities:
- type: Transform
pos: 86.5,-13.5
parent: 8364
- - uid: 27836
- components:
- - type: Transform
- pos: 13.5,-68.5
- parent: 8364
- - uid: 27837
- components:
- - type: Transform
- pos: 14.5,-68.5
- parent: 8364
- - uid: 27838
- components:
- - type: Transform
- pos: 15.5,-68.5
- parent: 8364
- - uid: 27839
- components:
- - type: Transform
- pos: 16.5,-68.5
- parent: 8364
- - uid: 27840
- components:
- - type: Transform
- pos: 17.5,-68.5
- parent: 8364
- - uid: 27841
- components:
- - type: Transform
- pos: 18.5,-68.5
- parent: 8364
- - uid: 27842
- components:
- - type: Transform
- pos: 19.5,-68.5
- parent: 8364
- - uid: 27843
- components:
- - type: Transform
- pos: 21.5,-68.5
- parent: 8364
- - uid: 27844
- components:
- - type: Transform
- pos: 22.5,-68.5
- parent: 8364
- - uid: 27845
- components:
- - type: Transform
- pos: 20.5,-68.5
- parent: 8364
- - uid: 27846
- components:
- - type: Transform
- pos: 23.5,-68.5
- parent: 8364
- - uid: 27847
- components:
- - type: Transform
- pos: 24.5,-68.5
- parent: 8364
- - uid: 27876
- components:
- - type: Transform
- pos: 34.5,-80.5
- parent: 8364
- - uid: 27877
- components:
- - type: Transform
- pos: 34.5,-79.5
- parent: 8364
- - uid: 27878
+ - uid: 27852
components:
- type: Transform
- pos: 34.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-84.5
parent: 8364
- proto: Cautery
entities:
@@ -64816,12 +66712,6 @@ entities:
parent: 8364
- proto: Chair
entities:
- - uid: 827
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-105.5
- parent: 8364
- uid: 921
components:
- type: Transform
@@ -65412,11 +67302,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -19.5,-66.5
parent: 8364
- - uid: 16145
- components:
- - type: Transform
- pos: -20.5,-72.5
- parent: 8364
- uid: 16694
components:
- type: Transform
@@ -65596,6 +67481,12 @@ entities:
- type: Transform
pos: 71.5,6.5
parent: 8364
+ - uid: 27988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-41.5
+ parent: 8364
- proto: ChairFolding
entities:
- uid: 6912
@@ -65632,17 +67523,6 @@ entities:
parent: 8364
- proto: ChairOfficeDark
entities:
- - uid: 592
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-85.5
- parent: 8364
- - uid: 824
- components:
- - type: Transform
- pos: 30.5,-106.5
- parent: 8364
- uid: 1859
components:
- type: Transform
@@ -65660,6 +67540,12 @@ entities:
rot: 3.141592653589793 rad
pos: 38.5,-17.5
parent: 8364
+ - uid: 3824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -24.5,-9.5
+ parent: 8364
- uid: 5219
components:
- type: Transform
@@ -65708,17 +67594,17 @@ entities:
rot: 1.5707963267948966 rad
pos: -10.5,-26.5
parent: 8364
- - uid: 6985
+ - uid: 5781
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,3.5
+ rot: 1.5707963267948966 rad
+ pos: -21.464273,-12.388837
parent: 8364
- - uid: 8203
+ - uid: 6985
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-12.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,3.5
parent: 8364
- uid: 8393
components:
@@ -65841,17 +67727,6 @@ entities:
- type: Transform
pos: 62.5,-6.5
parent: 8364
- - uid: 14089
- components:
- - type: Transform
- pos: -21.5,-12.5
- parent: 8364
- - uid: 14111
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-11.5
- parent: 8364
- uid: 14309
components:
- type: Transform
@@ -65966,6 +67841,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 56.5,-31.5
parent: 8364
+ - uid: 23189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 1.567106,-24.230312
+ parent: 8364
- uid: 25020
components:
- type: Transform
@@ -66016,11 +67897,6 @@ entities:
- type: Transform
pos: 1.5,28.5
parent: 8364
- - uid: 27919
- components:
- - type: Transform
- pos: 2.7203026,-11.488351
- parent: 8364
- uid: 28111
components:
- type: Transform
@@ -66080,11 +67956,6 @@ entities:
rot: 3.141592653589793 rad
pos: 36.5,-41.5
parent: 8364
- - uid: 17554
- components:
- - type: Transform
- pos: -2.5,-24.5
- parent: 8364
- uid: 17594
components:
- type: Transform
@@ -66455,6 +68326,11 @@ entities:
- type: Transform
pos: -61.04908,-2.3450234
parent: 8364
+ - uid: 15345
+ components:
+ - type: Transform
+ pos: 86.32974,-42.329636
+ parent: 8364
- uid: 16746
components:
- type: Transform
@@ -66582,6 +68458,30 @@ entities:
rot: 3.141592653589793 rad
pos: 65.5,-3.5
parent: 8364
+- proto: CigaretteSpent
+ entities:
+ - uid: 4492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.651825,-41.79801
+ parent: 8364
+ - uid: 15341
+ components:
+ - type: Transform
+ pos: 85.11039,-41.422752
+ parent: 8364
+ - uid: 22916
+ components:
+ - type: Transform
+ pos: 85.433464,-41.568687
+ parent: 8364
+ - uid: 26738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.495995,-40.943253
+ parent: 8364
- proto: CigarGold
entities:
- uid: 5205
@@ -67665,43 +69565,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 20029
- components:
- - type: Transform
- pos: 86.5,-51.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 20030
components:
- type: Transform
@@ -67776,43 +69639,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 20032
- components:
- - type: Transform
- pos: 63.5,-70.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 20033
components:
- type: Transform
@@ -67941,6 +69767,11 @@ entities:
- type: Transform
pos: 1.5,-55.5
parent: 8364
+ - uid: 24914
+ components:
+ - type: Transform
+ pos: 63.5,-72.5
+ parent: 8364
- uid: 26546
components:
- type: Transform
@@ -67974,6 +69805,11 @@ entities:
- type: Transform
pos: -40.5,-20.5
parent: 8364
+ - uid: 27861
+ components:
+ - type: Transform
+ pos: 83.5,-50.5
+ parent: 8364
- proto: ClosetEmergencyN2FilledRandom
entities:
- uid: 7998
@@ -68240,43 +70076,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 20024
- components:
- - type: Transform
- pos: 86.5,-50.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 20025
components:
- type: Transform
@@ -68389,6 +70188,11 @@ entities:
- type: Transform
pos: 11.5,-75.5
parent: 8364
+ - uid: 25985
+ components:
+ - type: Transform
+ pos: 83.5,-51.5
+ parent: 8364
- uid: 27448
components:
- type: Transform
@@ -68634,6 +70438,18 @@ entities:
- 0
- 0
- 0
+- proto: ClosetMaintenance
+ entities:
+ - uid: 15880
+ components:
+ - type: Transform
+ pos: 70.5,-62.5
+ parent: 8364
+ - uid: 26939
+ components:
+ - type: Transform
+ pos: 85.5,-59.5
+ parent: 8364
- proto: ClosetMaintenanceFilledRandom
entities:
- uid: 1026
@@ -68696,6 +70512,11 @@ entities:
- 0
- 0
- 0
+ - uid: 8120
+ components:
+ - type: Transform
+ pos: 71.5,-62.5
+ parent: 8364
- uid: 10527
components:
- type: Transform
@@ -69340,63 +71161,27 @@ entities:
- type: Transform
pos: 15.5,-36.5
parent: 8364
-- proto: ClosetRadiationSuitFilled
- entities:
- - uid: 14550
+ - uid: 27033
components:
- type: Transform
- pos: 34.5,-46.5
+ pos: 46.5,11.5
parent: 8364
- - uid: 21159
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 4325
components:
- type: Transform
- pos: 79.5,-54.5
+ pos: -20.5,-77.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 21290
+ - uid: 14550
components:
- type: Transform
- pos: -1.5,-27.5
+ pos: 34.5,-46.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - uid: 21762
+ - uid: 21159
components:
- type: Transform
- pos: 0.5,-27.5
+ pos: 79.5,-54.5
parent: 8364
- type: EntityStorage
air:
@@ -69662,43 +71447,6 @@ entities:
- type: Transform
pos: -36.5,-7.5
parent: 8364
- - uid: 20017
- components:
- - type: Transform
- pos: 88.5,-31.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 21341
components:
- type: Transform
@@ -69965,11 +71713,6 @@ entities:
parent: 8364
- proto: ClothingBeltUtility
entities:
- - uid: 10603
- components:
- - type: Transform
- pos: 60.05134,-49.51496
- parent: 8364
- uid: 12274
components:
- type: Transform
@@ -69980,11 +71723,6 @@ entities:
- type: Transform
pos: -34.5,-60.5
parent: 8364
- - uid: 21240
- components:
- - type: Transform
- pos: 60.5,-19.5
- parent: 8364
- uid: 26833
components:
- type: Transform
@@ -70004,11 +71742,6 @@ entities:
- type: Transform
pos: 74.5232,-33.467606
parent: 8364
- - uid: 5318
- components:
- - type: Transform
- pos: 74.5101,-30.533546
- parent: 8364
- uid: 12265
components:
- type: Transform
@@ -70029,17 +71762,6 @@ entities:
- type: Transform
pos: 74.511635,-31.335205
parent: 8364
- - type: ContainerContainer
- containers:
- lens_slot: !type:ContainerSlot {}
- - uid: 22551
- components:
- - type: Transform
- pos: 69.542885,-29.28833
- parent: 8364
- - type: ContainerContainer
- containers:
- lens_slot: !type:ContainerSlot {}
- proto: ClothingEyesGlassesMeson
entities:
- uid: 2018
@@ -70164,54 +71886,6 @@ entities:
- type: Transform
pos: 2.5269985,-33.330353
parent: 8364
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 12261
- components:
- - type: Transform
- pos: -42.47281,1.4692228
- parent: 8364
- - uid: 21614
- components:
- - type: MetaData
- name: the grey kings gloves
- - type: Transform
- pos: 43.508904,-73.44038
- parent: 8364
-- proto: ClothingHandsGlovesColorYellowBudget
- entities:
- - uid: 11795
- components:
- - type: Transform
- pos: 70.5,12.5
- parent: 8364
- - uid: 11796
- components:
- - type: Transform
- pos: 46.5,13.5
- parent: 8364
- - uid: 13852
- components:
- - type: Transform
- pos: -48.265545,1.3473
- parent: 8364
- - uid: 14433
- components:
- - type: Transform
- pos: -19.5,-6.5
- parent: 8364
- - uid: 19347
- components:
- - type: Transform
- pos: 47.523952,-66.32047
- parent: 8364
-- proto: ClothingHandsGlovesFingerless
- entities:
- - uid: 2257
- components:
- - type: Transform
- pos: 58.641335,-51.477516
- parent: 8364
- proto: ClothingHandsGlovesLatex
entities:
- uid: 21264
@@ -70356,6 +72030,13 @@ entities:
- type: Transform
pos: -17.569038,51.765076
parent: 8364
+- proto: ClothingHeadHatPaper
+ entities:
+ - uid: 5782
+ components:
+ - type: Transform
+ pos: -22.41492,-12.798657
+ parent: 8364
- proto: ClothingHeadHatPirate
entities:
- uid: 5004
@@ -70495,7 +72176,7 @@ entities:
- uid: 20122
components:
- type: Transform
- pos: 76.5,-57.5
+ pos: 80.51578,-56.381706
parent: 8364
- uid: 21145
components:
@@ -70732,7 +72413,7 @@ entities:
- uid: 21750
components:
- type: Transform
- pos: 45.295048,-62.737274
+ pos: 45.45511,-62.762016
parent: 8364
- proto: ClothingOuterApron
entities:
@@ -70813,13 +72494,6 @@ entities:
- type: Transform
pos: -46.493744,14.462048
parent: 8364
-- proto: ClothingOuterCoatDetectiveLoadout
- entities:
- - uid: 17906
- components:
- - type: Transform
- pos: 45.44214,-62.516068
- parent: 8364
- proto: ClothingOuterCoatJensen
entities:
- uid: 14199
@@ -70844,6 +72518,13 @@ entities:
- type: Transform
pos: 58.27977,8.379128
parent: 8364
+- proto: ClothingOuterCoatTrench
+ entities:
+ - uid: 19343
+ components:
+ - type: Transform
+ pos: 45.46393,-62.490334
+ parent: 8364
- proto: ClothingOuterHardsuitEVA
entities:
- uid: 12448
@@ -70914,7 +72595,7 @@ entities:
- uid: 20120
components:
- type: Transform
- pos: 76.5,-57.5
+ pos: 80.5262,-56.392128
parent: 8364
- proto: ClothingOuterSuitMonkey
entities:
@@ -70985,11 +72666,6 @@ entities:
- type: Transform
pos: 88.4803,-26.689615
parent: 8364
- - uid: 13781
- components:
- - type: Transform
- pos: -53.5,3.5
- parent: 8364
- proto: ClothingShoesBootsMag
entities:
- uid: 94
@@ -71073,10 +72749,10 @@ entities:
- type: Transform
pos: -38.47627,-56.748375
parent: 8364
- - uid: 5120
+ - uid: 27044
components:
- type: Transform
- pos: 1.4697213,-22.60485
+ pos: -26.493788,-77.45809
parent: 8364
- proto: ClothingUniformJumpsuitEngineeringHazard
entities:
@@ -71621,7 +73297,7 @@ entities:
- uid: 27910
components:
- type: Transform
- pos: -4.600172,-11.893632
+ pos: -3.6,-23.95
parent: 8364
- proto: CommsComputerCircuitboard
entities:
@@ -71632,12 +73308,6 @@ entities:
parent: 8364
- proto: ComputerAlert
entities:
- - uid: 661
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-84.5
- parent: 8364
- uid: 1611
components:
- type: Transform
@@ -71661,6 +73331,10 @@ entities:
rot: 3.141592653589793 rad
pos: 79.5,-26.5
parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20207:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
- uid: 17552
components:
- type: Transform
@@ -71853,17 +73527,18 @@ entities:
parent: 8364
- proto: ComputerFrame
entities:
- - uid: 16630
- components:
- - type: Transform
- pos: 30.5,-105.5
- parent: 8364
- uid: 19878
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 45.5,-44.5
parent: 8364
+ - uid: 28184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-26.5
+ parent: 8364
- proto: ComputerId
entities:
- uid: 5326
@@ -71888,6 +73563,14 @@ entities:
- type: Transform
pos: 5.5,-6.5
parent: 8364
+- proto: ComputerMassMedia
+ entities:
+ - uid: 23828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-12.5
+ parent: 8364
- proto: ComputerMedicalRecords
entities:
- uid: 12065
@@ -71909,12 +73592,6 @@ entities:
parent: 8364
- proto: ComputerPowerMonitoring
entities:
- - uid: 595
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-85.5
- parent: 8364
- uid: 5549
components:
- type: Transform
@@ -72158,18 +73835,27 @@ entities:
- uid: 5216
components:
- type: Transform
+ anchored: False
pos: -13.5,-64.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 6436
components:
- type: Transform
+ anchored: False
pos: -12.5,-64.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 6437
components:
- type: Transform
+ anchored: False
pos: -12.5,-63.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 17155
components:
- type: Transform
@@ -72178,8 +73864,11 @@ entities:
- uid: 26910
components:
- type: Transform
+ anchored: False
pos: -13.5,-63.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- proto: ConveyorBelt
entities:
- uid: 1073
@@ -72455,7 +74144,7 @@ entities:
- uid: 27914
components:
- type: Transform
- pos: -4.441743,-12.321369
+ pos: -3.5,-23.7
parent: 8364
- proto: CowToolboxFilled
entities:
@@ -72489,6 +74178,11 @@ entities:
- 0
- 0
- 0
+ - uid: 27530
+ components:
+ - type: Transform
+ pos: 72.5,-43.5
+ parent: 8364
- proto: CrateCoffin
entities:
- uid: 11610
@@ -72516,6 +74210,13 @@ entities:
- type: Transform
pos: 73.5,2.5
parent: 8364
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 27489
+ components:
+ - type: Transform
+ pos: -2.5,32.5
+ parent: 8364
- proto: CrateEmergencyRadiation
entities:
- uid: 19055
@@ -72540,6 +74241,41 @@ entities:
- type: Transform
pos: 57.5,-43.5
parent: 8364
+ - uid: 6287
+ components:
+ - type: Transform
+ pos: 90.5,-31.5
+ parent: 8364
+ - uid: 6597
+ components:
+ - type: Transform
+ pos: -8.5,-42.5
+ parent: 8364
+ - uid: 6598
+ components:
+ - type: Transform
+ pos: -32.5,-43.5
+ parent: 8364
+ - uid: 6599
+ components:
+ - type: Transform
+ pos: -20.5,-58.5
+ parent: 8364
+ - uid: 6600
+ components:
+ - type: Transform
+ pos: -9.5,-41.5
+ parent: 8364
+ - uid: 6908
+ components:
+ - type: Transform
+ pos: 89.5,-31.5
+ parent: 8364
+ - uid: 12023
+ components:
+ - type: Transform
+ pos: -32.5,-13.5
+ parent: 8364
- uid: 12659
components:
- type: Transform
@@ -72565,6 +74301,21 @@ entities:
- type: Transform
pos: -29.5,-12.5
parent: 8364
+ - uid: 26568
+ components:
+ - type: Transform
+ pos: -8.5,-44.5
+ parent: 8364
+ - uid: 26591
+ components:
+ - type: Transform
+ pos: -20.5,-57.5
+ parent: 8364
+ - uid: 26878
+ components:
+ - type: Transform
+ pos: -7.5,-43.5
+ parent: 8364
- proto: CrateEngineeringAMEShielding
entities:
- uid: 17716
@@ -72643,6 +74394,16 @@ entities:
- 0
- proto: CrateFilledSpawner
entities:
+ - uid: 6224
+ components:
+ - type: Transform
+ pos: 88.5,-31.5
+ parent: 8364
+ - uid: 6767
+ components:
+ - type: Transform
+ pos: 89.5,-24.5
+ parent: 8364
- uid: 17768
components:
- type: Transform
@@ -72835,82 +74596,10 @@ entities:
containers:
- EntityStorageComponent
- entity_storage
- - uid: 15489
- components:
- - type: Transform
- pos: -8.5,-43.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15937
- components:
- - type: Transform
- pos: -32.5,-43.5
- parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 15951
+ - uid: 16395
components:
- type: Transform
- pos: -20.5,-58.5
+ pos: -10.5,-41.5
parent: 8364
- type: EntityStorage
air:
@@ -72952,56 +74641,17 @@ entities:
containers:
- EntityStorageComponent
- entity_storage
- - uid: 16395
+- proto: CrateHydroponicsSeeds
+ entities:
+ - uid: 13263
components:
- type: Transform
- pos: -10.5,-41.5
+ pos: -43.5,20.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: Construction
containers:
- EntityStorageComponent
- entity_storage
- - uid: 16398
- components:
- - type: Transform
- pos: -9.5,-41.5
- parent: 8364
- type: EntityStorage
air:
volume: 200
@@ -73038,60 +74688,15 @@ entities:
showEnts: False
occludes: True
ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - uid: 20015
+ - uid: 13497
components:
- type: Transform
- pos: 90.5,-31.5
+ pos: -22.5,5.5
parent: 8364
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- type: Construction
containers:
- EntityStorageComponent
- entity_storage
- - uid: 20016
- components:
- - type: Transform
- pos: 89.5,-31.5
- parent: 8364
- type: EntityStorage
air:
volume: 200
@@ -73128,102 +74733,20 @@ entities:
showEnts: False
occludes: True
ent: null
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
-- proto: CrateHydroponicsSeeds
+- proto: CrateMaterialPlasma
entities:
- - uid: 13263
+ - uid: 26965
components:
- type: Transform
- pos: -43.5,20.5
+ pos: 2.5,-11.5
parent: 8364
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 13497
+- proto: CrateMaterialRandom
+ entities:
+ - uid: 8600
components:
- type: Transform
- pos: -22.5,5.5
+ pos: -28.5,-51.5
parent: 8364
- - type: Construction
- containers:
- - EntityStorageComponent
- - entity_storage
- - type: EntityStorage
- air:
- volume: 200
- immutable: False
- temperature: 293.1496
- moles:
- - 5.001885
- - 18.816614
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - type: ContainerContainer
- containers:
- EntityStorageComponent: !type:Container
- showEnts: False
- occludes: True
- ents: []
- PaperLabel: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- entity_storage: !type:Container
- showEnts: False
- occludes: True
- ents: []
- paper_label: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- proto: CrateMedicalScrubs
entities:
- uid: 16545
@@ -73335,8 +74858,8 @@ entities:
immutable: False
temperature: 293.1496
moles:
- - 5.001885
- - 18.816614
+ - 2.146141
+ - 8.073578
- 0
- 0
- 0
@@ -73376,6 +74899,13 @@ entities:
- type: Transform
pos: 19.5,-36.5
parent: 8364
+- proto: CrateTechBoardRandom
+ entities:
+ - uid: 25893
+ components:
+ - type: Transform
+ pos: 2.5,-53.5
+ parent: 8364
- proto: CrateTrashCart
entities:
- uid: 27585
@@ -73415,7 +74945,7 @@ entities:
- uid: 11148
components:
- type: Transform
- pos: 65.5,2.5
+ pos: 65.5126,2.4867446
parent: 8364
- uid: 14339
components:
@@ -73479,11 +75009,6 @@ entities:
- type: Transform
pos: -37.449833,2.5174625
parent: 8364
- - uid: 12357
- components:
- - type: Transform
- pos: -56.729946,3.644562
- parent: 8364
- uid: 13503
components:
- type: Transform
@@ -73494,16 +75019,6 @@ entities:
- type: Transform
pos: -22.5,6.5
parent: 8364
- - uid: 15969
- components:
- - type: Transform
- pos: -24.345285,-43.747276
- parent: 8364
- - uid: 21248
- components:
- - type: Transform
- pos: 63.478237,-20.930044
- parent: 8364
- uid: 21271
components:
- type: Transform
@@ -73514,11 +75029,6 @@ entities:
- type: Transform
pos: 65.5,-53.5
parent: 8364
- - uid: 21619
- components:
- - type: Transform
- pos: 40.48116,-72.5237
- parent: 8364
- uid: 22819
components:
- type: Transform
@@ -73597,30 +75107,6 @@ entities:
- type: Transform
pos: 29.484377,-32.156303
parent: 8364
-- proto: d10Dice
- entities:
- - uid: 10852
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10872
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
-- proto: d12Dice
- entities:
- - uid: 10854
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10874
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- proto: d20Dice
entities:
- uid: 6522
@@ -73628,16 +75114,6 @@ entities:
- type: Transform
pos: 12.5,11.5
parent: 8364
- - uid: 10855
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10875
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- uid: 11666
components:
- type: Transform
@@ -73645,16 +75121,6 @@ entities:
parent: 8364
- proto: d4Dice
entities:
- - uid: 10869
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10876
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- uid: 11667
components:
- type: Transform
@@ -73672,16 +75138,6 @@ entities:
- type: Transform
pos: 58.5,15.5
parent: 8364
- - uid: 10870
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10877
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- uid: 26362
components:
- type: Transform
@@ -73709,20 +75165,24 @@ entities:
parent: 8364
- proto: d8Dice
entities:
- - uid: 10871
+ - uid: 11668
components:
- type: Transform
- pos: 56.5,3.5000002
+ pos: 55.5,18.5
parent: 8364
- - uid: 10878
+- proto: DefaultStationBeaconAICore
+ entities:
+ - uid: 563
components:
- type: Transform
- pos: 55.5,0.5
+ pos: -0.5,-15.5
parent: 8364
- - uid: 11668
+- proto: DefaultStationBeaconAIUpload
+ entities:
+ - uid: 984
components:
- type: Transform
- pos: 55.5,18.5
+ pos: -0.5,-22.5
parent: 8364
- proto: DefaultStationBeaconAME
entities:
@@ -73829,10 +75289,10 @@ entities:
parent: 8364
- proto: DefaultStationBeaconChapel
entities:
- - uid: 27716
+ - uid: 5736
components:
- type: Transform
- pos: 69.5,-2.5
+ pos: 69.5,-4.5
parent: 8364
- proto: DefaultStationBeaconChemistry
entities:
@@ -73981,6 +75441,13 @@ entities:
- type: Transform
pos: 70.5,-36.5
parent: 8364
+- proto: DefaultStationBeaconReporter
+ entities:
+ - uid: 3786
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
- proto: DefaultStationBeaconRND
entities:
- uid: 27732
@@ -74023,10 +75490,10 @@ entities:
parent: 8364
- proto: DefaultStationBeaconSingularity
entities:
- - uid: 27257
+ - uid: 23069
components:
- type: Transform
- pos: -1.5,-73.5
+ pos: -0.5,-73.5
parent: 8364
- proto: DefaultStationBeaconSolars
entities:
@@ -74057,13 +75524,6 @@ entities:
- type: Transform
pos: -6.5,-36.5
parent: 8364
-- proto: DefaultStationBeaconTEG
- entities:
- - uid: 27256
- components:
- - type: Transform
- pos: 15.5,-76.5
- parent: 8364
- proto: DefaultStationBeaconTelecoms
entities:
- uid: 27259
@@ -74158,6 +75618,18 @@ entities:
- type: Physics
canCollide: False
bodyType: Static
+- proto: DiceBag
+ entities:
+ - uid: 7046
+ components:
+ - type: Transform
+ pos: 55.490345,0.6314087
+ parent: 8364
+ - uid: 7071
+ components:
+ - type: Transform
+ pos: 56.42831,3.6334934
+ parent: 8364
- proto: DiseaseDiagnoser
entities:
- uid: 18698
@@ -74209,12 +75681,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,-21.5
parent: 8364
- - uid: 6287
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -16.5,-8.5
- parent: 8364
- uid: 6405
components:
- type: Transform
@@ -74273,6 +75739,17 @@ entities:
- type: Transform
pos: 46.5,3.5
parent: 8364
+ - uid: 7226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -16.5,-8.5
+ parent: 8364
+ - uid: 7231
+ components:
+ - type: Transform
+ pos: -24.5,-12.5
+ parent: 8364
- uid: 8172
components:
- type: Transform
@@ -74552,17 +76029,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-9.5
parent: 8364
- - uid: 14514
- components:
- - type: Transform
- pos: -24.5,-12.5
- parent: 8364
- - uid: 14515
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-12.5
- parent: 8364
- uid: 14516
components:
- type: Transform
@@ -75113,11 +76579,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 38.5,-31.5
parent: 8364
- - uid: 27808
- components:
- - type: Transform
- pos: 27.5,-68.5
- parent: 8364
- proto: DisposalJunction
entities:
- uid: 4660
@@ -75125,6 +76586,12 @@ entities:
- type: Transform
pos: 25.5,-35.5
parent: 8364
+ - uid: 5855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-12.5
+ parent: 8364
- uid: 6128
components:
- type: Transform
@@ -75184,12 +76651,6 @@ entities:
rot: 3.141592653589793 rad
pos: 54.5,5.5
parent: 8364
- - uid: 15372
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -26.5,-12.5
- parent: 8364
- uid: 16827
components:
- type: Transform
@@ -77826,12 +79287,6 @@ entities:
- type: Transform
pos: -26.5,-11.5
parent: 8364
- - uid: 14546
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-12.5
- parent: 8364
- uid: 14558
components:
- type: Transform
@@ -82105,155 +83560,11 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-68.5
parent: 8364
- - uid: 27704
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-78.5
- parent: 8364
- - uid: 27705
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-77.5
- parent: 8364
- - uid: 27706
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-76.5
- parent: 8364
- - uid: 27744
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-75.5
- parent: 8364
- - uid: 27762
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-74.5
- parent: 8364
- - uid: 27763
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-73.5
- parent: 8364
- - uid: 27764
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-72.5
- parent: 8364
- - uid: 27787
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-71.5
- parent: 8364
- - uid: 27788
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-70.5
- parent: 8364
- - uid: 27789
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-69.5
- parent: 8364
- - uid: 27790
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-68.5
- parent: 8364
- - uid: 27791
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-68.5
- parent: 8364
- - uid: 27792
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-68.5
- parent: 8364
- - uid: 27793
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-68.5
- parent: 8364
- - uid: 27794
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-68.5
- parent: 8364
- - uid: 27795
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-68.5
- parent: 8364
- - uid: 27796
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-68.5
- parent: 8364
- - uid: 27797
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-68.5
- parent: 8364
- - uid: 27798
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-68.5
- parent: 8364
- - uid: 27799
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-68.5
- parent: 8364
- - uid: 27800
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 15.5,-68.5
- parent: 8364
- - uid: 27801
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-68.5
- parent: 8364
- - uid: 27802
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-68.5
- parent: 8364
- - uid: 27803
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-68.5
- parent: 8364
- - uid: 27807
+ - uid: 27869
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-12.5
parent: 8364
- proto: DisposalRouter
entities:
@@ -82394,6 +83705,12 @@ entities:
rot: 3.141592653589793 rad
pos: -18.5,22.5
parent: 8364
+ - uid: 7910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.5,-13.5
+ parent: 8364
- uid: 9246
components:
- type: Transform
@@ -82473,12 +83790,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -49.5,-8.5
parent: 8364
- - uid: 14513
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -24.5,-13.5
- parent: 8364
- uid: 14863
components:
- type: Transform
@@ -82655,18 +83966,6 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-71.5
parent: 8364
- - uid: 27703
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-79.5
- parent: 8364
- - uid: 27804
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-68.5
- parent: 8364
- proto: DisposalUnit
entities:
- uid: 1432
@@ -82684,6 +83983,11 @@ entities:
- type: Transform
pos: -30.5,-31.5
parent: 8364
+ - uid: 5770
+ components:
+ - type: Transform
+ pos: -24.5,-13.5
+ parent: 8364
- uid: 5908
components:
- type: Transform
@@ -82804,11 +84108,6 @@ entities:
- type: Transform
pos: -43.5,-9.5
parent: 8364
- - uid: 14512
- components:
- - type: Transform
- pos: -24.5,-13.5
- parent: 8364
- uid: 14557
components:
- type: Transform
@@ -82919,18 +84218,6 @@ entities:
- type: Transform
pos: 1.5,-71.5
parent: 8364
- - uid: 27702
- components:
- - type: Transform
- pos: 27.5,-79.5
- parent: 8364
- - uid: 27806
- components:
- - type: MetaData
- name: AI Core Chube
- - type: Transform
- pos: 11.5,-68.5
- parent: 8364
- uid: 27920
components:
- type: Transform
@@ -83132,10 +84419,17 @@ entities:
parent: 8364
- proto: DrinkHotCoffee
entities:
- - uid: 27918
+ - uid: 28153
components:
- type: Transform
- pos: 3.3560345,-11.363264
+ pos: 2.4114609,-24.480486
+ parent: 8364
+- proto: DrinkMug
+ entities:
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: -23.441877,-9.337173
parent: 8364
- proto: DrinkMugBlack
entities:
@@ -83739,6 +85033,35 @@ entities:
rot: 1.5707963267948966 rad
pos: 75.5,-11.5
parent: 8364
+ - uid: 28209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-26.5
+ parent: 8364
+ - uid: 28210
+ components:
+ - type: Transform
+ pos: 0.5,-19.5
+ parent: 8364
+ - uid: 28211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-24.5
+ parent: 8364
+ - uid: 28212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-15.5
+ parent: 8364
+ - uid: 28213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-15.5
+ parent: 8364
- proto: EmergencyOxygenTank
entities:
- uid: 12451
@@ -83791,13 +85114,23 @@ entities:
- uid: 12711
components:
- type: Transform
+ anchored: False
pos: -9.5,-62.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
+ - type: PowerConsumer
+ drawRate: 1
- uid: 12712
components:
- type: Transform
+ anchored: False
pos: -9.5,-61.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
+ - type: PowerConsumer
+ drawRate: 1
- uid: 17158
components:
- type: Transform
@@ -83921,11 +85254,6 @@ entities:
parent: 8364
- proto: ExtinguisherCabinetFilled
entities:
- - uid: 835
- components:
- - type: Transform
- pos: 31.5,-106.5
- parent: 8364
- uid: 3693
components:
- type: Transform
@@ -84096,11 +85424,6 @@ entities:
- type: Transform
pos: -47.5,4.5
parent: 8364
- - uid: 22237
- components:
- - type: Transform
- pos: -35.5,-7.5
- parent: 8364
- uid: 22238
components:
- type: Transform
@@ -84211,20 +85534,21 @@ entities:
- type: Transform
pos: 2.5,-46.5
parent: 8364
- - uid: 27183
+ - uid: 25316
components:
- type: Transform
- pos: 25.5,-88.5
+ pos: -35.5,-9.5
parent: 8364
- - uid: 27184
+ - uid: 27577
components:
- type: Transform
- pos: 31.5,-88.5
+ pos: 8.5,-33.5
parent: 8364
- - uid: 27577
+ - uid: 28214
components:
- type: Transform
- pos: 8.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-16.5
parent: 8364
- proto: FaxMachineBase
entities:
@@ -84277,6 +85601,13 @@ entities:
parent: 8364
- type: FaxMachine
name: Law Office
+ - uid: 19348
+ components:
+ - type: Transform
+ pos: 12.5,32.5
+ parent: 8364
+ - type: FaxMachine
+ name: Security
- uid: 21200
components:
- type: Transform
@@ -84323,6 +85654,11 @@ entities:
name: Captain
- proto: FigureSpawner
entities:
+ - uid: 7074
+ components:
+ - type: Transform
+ pos: 56.5,1.5
+ parent: 8364
- uid: 11690
components:
- type: Transform
@@ -84335,11 +85671,6 @@ entities:
parent: 8364
- proto: filingCabinet
entities:
- - uid: 537
- components:
- - type: Transform
- pos: -20.5,-9.5
- parent: 8364
- uid: 5523
components:
- type: Transform
@@ -84493,7 +85824,6 @@ entities:
- 5511
- 5512
- 5513
- - 1479
- uid: 1907
components:
- type: Transform
@@ -84502,16 +85832,16 @@ entities:
parent: 8364
- type: DeviceList
devices:
+ - 5277
+ - 16977
+ - 23151
+ - 10877
+ - 27405
+ - 27404
- 27403
- 5278
- - 5279
+ - 16627
- 5264
- - 27404
- - 27405
- - 27406
- - 23151
- - 16977
- - 27489
- uid: 3213
components:
- type: Transform
@@ -84570,7 +85900,6 @@ entities:
- 17087
- 26635
- 16853
- - 14486
- uid: 17071
components:
- type: Transform
@@ -84643,7 +85972,6 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 22700
- 20899
- 20900
- 26036
@@ -84698,10 +86026,15 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 22591
- 6917
- 9826
- 9825
+ - 7277
+ - 8080
+ - 8110
+ - 1652
+ - 16943
+ - 1672
- uid: 22592
components:
- type: Transform
@@ -84862,8 +86195,6 @@ entities:
devices:
- 22645
- 22646
- - 22647
- - 27233
- uid: 22654
components:
- type: Transform
@@ -84904,14 +86235,12 @@ entities:
- 13385
- 22645
- 22646
- - 2940
- 14093
- 14208
- 14220
- 14094
- 11725
- 11719
- - 22658
- 13391
- 13390
- 13389
@@ -84932,7 +86261,6 @@ entities:
- 14093
- 14208
- 14220
- - 22666
- 14094
- 11725
- 11719
@@ -85002,16 +86330,15 @@ entities:
- 13378
- 13362
- 13363
- - 22690
- - 13391
- - 13390
- - 13389
- - 10521
- - 10523
- - 22691
- - 19992
- - 19991
- - 19993
+ - 17600
+ - 9450
+ - 17602
+ - 23089
+ - 782
+ - 23879
+ - 26804
+ - 26805
+ - 26806
- uid: 22692
components:
- type: Transform
@@ -85019,18 +86346,16 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 13380
- - 13379
- - 13378
- - 13362
- - 13363
- - 22690
- - 13391
- - 13390
- 13389
+ - 13390
+ - 13391
+ - 26804
+ - 26805
+ - 26806
- 10521
- 10523
- - 22691
+ - 26039
+ - 26038
- uid: 22698
components:
- type: Transform
@@ -85042,7 +86367,6 @@ entities:
- 13380
- 13379
- 13378
- - 22697
- 19992
- 19991
- 19993
@@ -85064,18 +86388,18 @@ entities:
parent: 8364
- type: DeviceList
devices:
+ - 13364
+ - 5518
+ - 5519
+ - 6459
+ - 13371
+ - 13370
+ - 13369
- 13365
- 13367
- 13368
- - 13369
- - 13370
- - 13371
- 22713
- - 5519
- - 5518
- - 6459
- - 5236
- - 5235
+ - 23256
- uid: 22716
components:
- type: Transform
@@ -85087,7 +86411,6 @@ entities:
- 13371
- 13370
- 13369
- - 22717
- 13362
- uid: 22724
components:
@@ -85102,7 +86425,6 @@ entities:
- 6488
- 6489
- 19883
- - 22725
- uid: 22727
components:
- type: Transform
@@ -85132,7 +86454,6 @@ entities:
- 6463
- 6464
- 6467
- - 22731
- uid: 22962
components:
- type: Transform
@@ -85219,7 +86540,6 @@ entities:
- 11600
- 11377
- 11603
- - 23939
- 23940
- uid: 25233
components:
@@ -85258,8 +86578,6 @@ entities:
- 7078
- 7180
- 7043
- - 25827
- - 25826
- 11722
- uid: 25832
components:
@@ -85309,7 +86627,6 @@ entities:
parent: 8364
- type: DeviceList
devices:
- - 22647
- 25964
- 25963
- 25958
@@ -85359,7 +86676,7 @@ entities:
- 27403
- 27404
- 27405
- - 27406
+ - 10877
- uid: 27487
components:
- type: Transform
@@ -85370,22 +86687,20 @@ entities:
- 27403
- 27404
- 27405
- - 27406
- 23151
- 16977
- - 27489
- proto: FireAxeCabinetFilled
entities:
- - uid: 5782
+ - uid: 17598
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-9.5
+ pos: 6.5,-45.5
parent: 8364
- - uid: 17598
+ - uid: 25064
components:
- type: Transform
- pos: 6.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: -0.5,-9.5
parent: 8364
- proto: FireExtinguisher
entities:
@@ -85402,7 +86717,7 @@ entities:
- uid: 20118
components:
- type: Transform
- pos: 76.5,-57.5
+ pos: 78.444824,-56.4234
parent: 8364
- proto: FirelockEdge
entities:
@@ -85416,11 +86731,19 @@ entities:
- type: Transform
pos: 0.5,-32.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 1672
components:
- type: Transform
pos: -1.5,-32.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 5912
components:
- type: Transform
@@ -85439,12 +86762,18 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,16.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 13469
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,16.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 14853
components:
- type: Transform
@@ -85485,6 +86814,10 @@ entities:
- type: Transform
pos: -0.5,-32.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 16960
components:
- type: Transform
@@ -85610,12 +86943,18 @@ entities:
rot: 3.141592653589793 rad
pos: 9.5,1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 22632
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 8.5,1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- uid: 22953
components:
- type: Transform
@@ -85627,30 +86966,47 @@ entities:
rot: 3.141592653589793 rad
pos: 30.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 26036
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 75.5,-9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
- uid: 26037
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 75.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
- uid: 26038
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 53.5,-9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
+ - 22693
- uid: 26039
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 53.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
+ - 22693
- uid: 26635
components:
- type: Transform
@@ -85679,6 +87035,9 @@ entities:
- type: Transform
pos: 20.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
- uid: 2940
components:
- type: Transform
@@ -85689,6 +87048,9 @@ entities:
- type: Transform
pos: -62.5,0.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 2946
components:
- type: Transform
@@ -85714,56 +87076,90 @@ entities:
- type: Transform
pos: 52.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
- uid: 5236
components:
- type: Transform
pos: 52.5,-27.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
- uid: 5264
components:
- type: Transform
pos: -8.5,-70.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 26707
+ - 17159
- uid: 5277
components:
- type: Transform
pos: -18.5,-69.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26707
+ - 1907
- uid: 5278
components:
- type: Transform
pos: -8.5,-68.5
parent: 8364
- - uid: 5279
- components:
- - type: Transform
- pos: -8.5,-69.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 26707
+ - 17159
- uid: 5511
components:
- type: Transform
pos: 65.5,-48.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 5512
components:
- type: Transform
pos: 66.5,-48.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 5513
components:
- type: Transform
pos: 67.5,-48.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 5518
components:
- type: Transform
pos: 65.5,-37.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
+ - 4329
- uid: 5519
components:
- type: Transform
pos: 66.5,-37.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
+ - 4329
- uid: 5546
components:
- type: Transform
@@ -85774,11 +87170,18 @@ entities:
- type: Transform
pos: 34.5,-28.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
- uid: 5548
components:
- type: Transform
pos: 25.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - 291
- uid: 5753
components:
- type: Transform
@@ -85794,11 +87197,19 @@ entities:
- type: Transform
pos: 28.5,-28.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
+ - 22670
- uid: 6211
components:
- type: Transform
pos: 28.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
+ - 22670
- uid: 6243
components:
- type: Transform
@@ -85814,46 +87225,75 @@ entities:
- type: Transform
pos: 67.5,-37.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
+ - 4329
- uid: 6463
components:
- type: Transform
pos: 65.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 6464
components:
- type: Transform
pos: 66.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 6467
components:
- type: Transform
pos: 67.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- uid: 6468
components:
- type: Transform
pos: 76.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6473
components:
- type: Transform
pos: 77.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6474
components:
- type: Transform
pos: 78.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6488
components:
- type: Transform
pos: 76.5,-38.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6489
components:
- type: Transform
pos: 77.5,-38.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 6651
components:
- type: Transform
@@ -85919,11 +87359,17 @@ entities:
- type: Transform
pos: -52.5,-0.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 7078
components:
- type: Transform
pos: -52.5,-2.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 7140
components:
- type: Transform
@@ -85949,6 +87395,9 @@ entities:
- type: Transform
pos: -52.5,-1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 7252
components:
- type: Transform
@@ -85959,6 +87408,10 @@ entities:
- type: Transform
pos: 9.5,-31.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 7357
components:
- type: Transform
@@ -85994,16 +87447,27 @@ entities:
- type: Transform
pos: 34.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
- uid: 8080
components:
- type: Transform
pos: 9.5,-30.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 8110
components:
- type: Transform
pos: 9.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - 22590
- uid: 8199
components:
- type: Transform
@@ -86039,6 +87503,10 @@ entities:
- type: Transform
pos: 26.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - 291
- uid: 9823
components:
- type: Transform
@@ -86079,11 +87547,29 @@ entities:
- type: Transform
pos: 47.5,-10.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
- uid: 10523
components:
- type: Transform
pos: 48.5,-10.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
+ - uid: 10877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-71.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 27407
+ - 23133
+ - 17159
- uid: 11001
components:
- type: Transform
@@ -86134,16 +87620,25 @@ entities:
- type: Transform
pos: 35.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 11722
components:
- type: Transform
pos: -58.5,2.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 11725
components:
- type: Transform
pos: 34.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 12064
components:
- type: Transform
@@ -86169,36 +87664,63 @@ entities:
- type: Transform
pos: 64.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
- uid: 13365
components:
- type: Transform
pos: 65.5,-21.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13367
components:
- type: Transform
pos: 66.5,-21.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13368
components:
- type: Transform
pos: 67.5,-21.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13369
components:
- type: Transform
pos: 68.5,-22.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13370
components:
- type: Transform
pos: 68.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13371
components:
- type: Transform
pos: 68.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22712
+ - 4328
- uid: 13378
components:
- type: Transform
@@ -86254,16 +87776,25 @@ entities:
- type: Transform
pos: 41.5,-12.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
- uid: 13390
components:
- type: Transform
pos: 41.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
- uid: 13391
components:
- type: Transform
pos: 41.5,-14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22692
- uid: 13394
components:
- type: Transform
@@ -86289,11 +87820,17 @@ entities:
- type: Transform
pos: 25.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 14094
components:
- type: Transform
pos: 33.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 14126
components:
- type: Transform
@@ -86329,6 +87866,9 @@ entities:
- type: Transform
pos: -62.5,-5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 14174
components:
- type: Transform
@@ -86344,21 +87884,33 @@ entities:
- type: Transform
pos: 26.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 14220
components:
- type: Transform
pos: 27.5,-15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- uid: 14342
components:
- type: Transform
pos: -62.5,1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 14343
components:
- type: Transform
pos: -62.5,-4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- uid: 14556
components:
- type: Transform
@@ -86385,7 +87937,7 @@ entities:
pos: -34.5,-14.5
parent: 8364
- type: Door
- secondsUntilStateChange: -32040.709
+ secondsUntilStateChange: -72829.68
state: Closing
- uid: 15010
components:
@@ -86397,11 +87949,6 @@ entities:
- type: Transform
pos: 60.5,11.5
parent: 8364
- - uid: 15527
- components:
- - type: Transform
- pos: 72.5,4.5
- parent: 8364
- uid: 15566
components:
- type: Transform
@@ -86427,6 +87974,17 @@ entities:
- type: Transform
pos: 34.5,3.5
parent: 8364
+ - uid: 16627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 26707
+ - 17159
- uid: 16975
components:
- type: Transform
@@ -86442,6 +88000,10 @@ entities:
- type: Transform
pos: 8.5,-64.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
- uid: 17717
components:
- type: Transform
@@ -86452,11 +88014,17 @@ entities:
- type: Transform
pos: 35.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- uid: 18682
components:
- type: Transform
pos: 36.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- uid: 18752
components:
- type: Transform
@@ -86512,6 +88080,9 @@ entities:
- type: Transform
pos: 78.5,-38.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- uid: 19934
components:
- type: Transform
@@ -86522,16 +88093,27 @@ entities:
- type: Transform
pos: 21.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
- uid: 21773
components:
- type: Transform
pos: 23.5,-25.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - 27965
- uid: 21774
components:
- type: Transform
pos: 23.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - 27965
- uid: 21812
components:
- type: Transform
@@ -86627,11 +88209,17 @@ entities:
- type: Transform
pos: 22.5,-11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 22646
components:
- type: Transform
pos: 24.5,-11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 22687
components:
- type: Transform
@@ -86652,6 +88240,10 @@ entities:
- type: Transform
pos: 3.5,-64.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
- uid: 25951
components:
- type: Transform
@@ -86682,51 +88274,54 @@ entities:
- type: Transform
pos: 28.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25959
components:
- type: Transform
pos: 28.5,-7.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25960
components:
- type: Transform
pos: 28.5,-6.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25961
components:
- type: Transform
pos: 28.5,-5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25962
components:
- type: Transform
pos: 28.5,-4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 25963
components:
- type: Transform
pos: 29.5,-8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- uid: 26031
components:
- type: Transform
pos: 45.5,8.5
parent: 8364
- - uid: 26032
- components:
- - type: Transform
- pos: 71.5,4.5
- parent: 8364
- - uid: 26033
- components:
- - type: Transform
- pos: 70.5,4.5
- parent: 8364
- - uid: 26034
- components:
- - type: Transform
- pos: 69.5,4.5
- parent: 8364
- uid: 26035
components:
- type: Transform
@@ -86847,39 +88442,61 @@ entities:
- type: Transform
pos: 55.5,-14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - 22692
+ - 22693
- uid: 26805
components:
- type: Transform
pos: 55.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - 22692
+ - 22693
- uid: 26806
components:
- type: Transform
pos: 55.5,-12.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - 22692
+ - 22693
- uid: 27403
components:
- type: Transform
pos: -7.5,-71.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
+ - 23133
- uid: 27404
components:
- type: Transform
pos: -6.5,-71.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
+ - 23133
- uid: 27405
components:
- type: Transform
pos: -5.5,-71.5
parent: 8364
- - uid: 27406
- components:
- - type: Transform
- pos: -4.5,-71.5
- parent: 8364
- - type: Door
- secondsUntilStateChange: -23788.44
- state: Closing
+ - type: DeviceNetwork
+ deviceLists:
+ - 1907
+ - 17159
+ - 23133
- proto: Fireplace
entities:
- uid: 11559
@@ -86904,12 +88521,6 @@ entities:
- type: Transform
pos: -5.590146,-5.5357327
parent: 8364
- - uid: 12356
- components:
- - type: Transform
- rot: 0.00028195229242555797 rad
- pos: -56.26376,3.5820982
- parent: 8364
- uid: 16300
components:
- type: Transform
@@ -86917,16 +88528,13 @@ entities:
parent: 8364
- proto: FlashlightLantern
entities:
- - uid: 2017
- components:
- - type: Transform
- pos: 53.45759,-48.32746
- parent: 8364
- uid: 11756
components:
- type: Transform
- pos: 49.435802,16.306866
+ pos: 49.481064,16.680466
parent: 8364
+ - type: HandheldLight
+ toggleActionEntity: 16587
- type: ContainerContainer
containers:
cellslot_cell_container: !type:ContainerSlot
@@ -86937,51 +88545,12 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 11757
- components:
- - type: Transform
- pos: 48.529552,11.266704
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
+ actions: !type:Container
showEnts: False
occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 11758
- components:
- - type: Transform
- pos: 48.47014,7.514141
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- - uid: 11759
- components:
- - type: Transform
- pos: 66.53939,6.4304285
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
+ ents:
+ - 16587
+ - type: ActionsContainer
- uid: 11760
components:
- type: Transform
@@ -86997,21 +88566,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 11761
- components:
- - type: Transform
- pos: 67.42922,18.532057
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 11762
components:
- type: Transform
@@ -87042,21 +88596,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 13848
- components:
- - type: Transform
- pos: -45.601074,22.357426
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 13851
components:
- type: Transform
@@ -87102,21 +88641,6 @@ entities:
showEnts: False
occludes: True
ent: null
- - uid: 16451
- components:
- - type: Transform
- pos: -4.4961033,-45.400856
- parent: 8364
- - type: ContainerContainer
- containers:
- cellslot_cell_container: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- cell_slot: !type:ContainerSlot
- showEnts: False
- occludes: True
- ent: null
- uid: 16744
components:
- type: Transform
@@ -87162,16 +88686,6 @@ entities:
- type: Transform
pos: -43.302475,5.7392464
parent: 8364
- - uid: 26783
- components:
- - type: Transform
- pos: 12.378976,32.716896
- parent: 8364
- - uid: 26784
- components:
- - type: Transform
- pos: 12.519601,32.51377
- parent: 8364
- uid: 26814
components:
- type: Transform
@@ -87758,6 +89272,18 @@ entities:
- type: Transform
pos: 34.5,12.5
parent: 8364
+- proto: FolderSpawner
+ entities:
+ - uid: 3825
+ components:
+ - type: Transform
+ pos: -23.380865,-10.331876
+ parent: 8364
+ - uid: 6142
+ components:
+ - type: Transform
+ pos: -22.531582,-12.47005
+ parent: 8364
- proto: FoodBanana
entities:
- uid: 6983
@@ -87794,11 +89320,6 @@ entities:
- type: Transform
pos: 51.57733,-33.333336
parent: 8364
- - uid: 27155
- components:
- - type: Transform
- pos: 26.502972,-87.37317
- parent: 8364
- proto: FoodBoxDonut
entities:
- uid: 541
@@ -87931,8 +89452,7 @@ entities:
- uid: 10943
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 74.5,3.5000002
+ pos: 74.49744,3.4977798
parent: 8364
- uid: 20891
components:
@@ -87989,7 +89509,7 @@ entities:
- uid: 27917
components:
- type: Transform
- pos: 3.5477152,-12.389968
+ pos: -3.6,-24.45
parent: 8364
- proto: GasAnalyzer
entities:
@@ -88009,7 +89529,7 @@ entities:
pos: 12.5,-59.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17248
components:
- type: MetaData
@@ -88056,7 +89576,7 @@ entities:
pos: 29.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- proto: GasMinerCarbonDioxide
entities:
- uid: 16807
@@ -88117,16 +89637,16 @@ entities:
rot: -1.5707963267948966 rad
pos: 72.5,-47.5
parent: 8364
-- proto: GasMixerFlipped
+- proto: GasOutletInjector
entities:
- - uid: 27555
+ - uid: 11752
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-71.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-83.5
parent: 8364
-- proto: GasOutletInjector
- entities:
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 15511
components:
- type: Transform
@@ -88163,14 +89683,12 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,-64.5
parent: 8364
- - uid: 23110
+ - uid: 23157
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 18.5,-83.5
+ pos: 22.5,-83.5
parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- proto: GasPassiveGate
entities:
- uid: 21381
@@ -88205,14 +89723,6 @@ entities:
rot: 3.141592653589793 rad
pos: 20.5,-64.5
parent: 8364
- - uid: 16540
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 16760
components:
- type: Transform
@@ -88237,14 +89747,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 17031
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-84.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17222
components:
- type: Transform
@@ -88305,12 +89807,6 @@ entities:
rot: 3.141592653589793 rad
pos: 15.5,-50.5
parent: 8364
- - uid: 27182
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-94.5
- parent: 8364
- proto: GasPipeBend
entities:
- uid: 4
@@ -88328,22 +89824,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2004
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3821
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 4140
components:
- type: Transform
@@ -88352,172 +89832,136 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4508
+ - uid: 4230
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 16.5,-79.5
+ pos: 32.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4512
+ color: '#03FCD3FF'
+ - uid: 4355
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4513
+ - uid: 4357
components:
- type: Transform
- pos: 30.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-78.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4518
+ - uid: 4366
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.5,-72.5
+ pos: 0.5,-24.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4554
+ color: '#0055CCFF'
+ - uid: 4367
components:
- type: Transform
- pos: 32.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-24.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4555
+ color: '#0055CCFF'
+ - uid: 4388
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,-75.5
+ pos: 32.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4556
+ - uid: 4401
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-72.5
+ pos: 73.5,-50.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4557
+ color: '#990000FF'
+ - uid: 4402
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 31.5,-75.5
+ pos: 79.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4561
+ color: '#0055CCFF'
+ - uid: 5202
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4562
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-75.5
+ pos: 33.5,-33.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4563
+ - uid: 5258
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 43.5,-42.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4572
+ color: '#0055CCFF'
+ - uid: 5259
components:
- type: Transform
- pos: 28.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-39.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4610
+ color: '#0055CCFF'
+ - uid: 5379
components:
- type: Transform
- pos: 14.5,-72.5
+ pos: 55.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4652
+ - uid: 5381
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 13.5,-72.5
+ pos: 52.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4657
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4678
+ - uid: 5382
components:
- type: Transform
- pos: 14.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 53.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 5202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 33.5,-33.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 5258
+ - uid: 5386
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 43.5,-42.5
+ pos: 58.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-39.5
- parent: 8364
- - uid: 5284
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -3.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5317
+ - uid: 5387
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -3.5,-66.5
+ pos: 56.5,-1.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 5381
+ color: '#0055CCFF'
+ - uid: 5388
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 52.5,-8.5
+ pos: 65.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -88529,21 +89973,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5390
+ - uid: 5393
components:
- type: Transform
- pos: 56.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 65.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5391
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5595
components:
- type: Transform
@@ -88575,22 +90012,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7062
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 69.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 7312
components:
- type: Transform
@@ -88816,7 +90237,7 @@ entities:
pos: 40.5,8.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 10443
components:
- type: Transform
@@ -88825,138 +90246,130 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14489
+ - uid: 11757
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-60.5
+ rot: 1.5707963267948966 rad
+ pos: 14.5,-71.5
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 15341
+ - uid: 12357
components:
- type: Transform
- pos: -1.5,-21.5
+ rot: 3.141592653589793 rad
+ pos: 31.5,-78.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15367
+ color: '#03FCD3FF'
+ - uid: 12460
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15502
+ color: '#03FCD3FF'
+ - uid: 13066
components:
- type: Transform
- pos: 1.5,-47.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15880
+ color: '#03FCD3FF'
+ - uid: 13850
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-79.5
+ pos: 28.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 15881
+ color: '#03FCD3FF'
+ - uid: 14489
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 16.5,-72.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-60.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 15890
+ color: '#947507FF'
+ - uid: 15347
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-78.5
+ pos: 28.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 15892
+ - uid: 15369
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-78.5
+ pos: 17.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15898
+ - uid: 15502
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-71.5
+ pos: 1.5,-47.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 16168
+ color: '#990000FF'
+ - uid: 15527
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -39.5,-20.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 16550
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 34.5,-75.5
+ pos: 13.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16553
+ color: '#990000FF'
+ - uid: 15898
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,-75.5
+ pos: 26.5,-71.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16554
+ color: '#947507FF'
+ - uid: 15937
components:
- type: Transform
- pos: 34.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: 32.5,-78.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 16555
+ - uid: 16168
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 33.5,-72.5
+ pos: -39.5,-20.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16879
+ color: '#0055CCFF'
+ - uid: 16631
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-71.5
+ pos: 29.5,-76.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 16882
+ color: '#03FCD3FF'
+ - uid: 16712
components:
- type: Transform
- pos: 35.5,-71.5
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 16885
+ - uid: 16737
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,-85.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 16988
components:
- type: Transform
@@ -89048,6 +90461,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -19.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17203
components:
- type: Transform
@@ -89071,7 +90492,7 @@ entities:
pos: 11.5,-59.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17255
components:
- type: Transform
@@ -89133,62 +90554,84 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 17565
+ - uid: 17425
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 17.5,-74.5
+ pos: -25.5,-69.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 17675
+ color: '#990000FF'
+ - uid: 18600
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-85.5
+ pos: 35.5,-32.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17704
+ color: '#990000FF'
+ - uid: 18735
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 16.5,-85.5
+ pos: 77.5,-12.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 18600
+ color: '#990000FF'
+ - uid: 19247
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 35.5,-32.5
+ pos: 29.5,-35.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18659
+ color: '#03FCD3FF'
+ - uid: 19951
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-34.5
+ pos: -21.5,-12.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19247
+ - uid: 20032
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 29.5,-35.5
+ pos: 22.5,-4.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 20067
+ color: '#0055CCFF'
+ - uid: 20060
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-81.5
+ pos: 26.5,14.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
+ - uid: 20126
+ components:
+ - type: Transform
+ pos: 73.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20202
components:
- type: Transform
@@ -89196,14 +90639,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20368
+ - uid: 21348
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 58.5,-41.5
+ pos: 21.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 21417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 21770
components:
- type: Transform
@@ -89220,22 +90671,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 22545
+ - uid: 21995
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,16.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 22744
+ color: '#990000FF'
+ - uid: 22545
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-81.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-33.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#03FCD3FF'
- uid: 22780
components:
- type: Transform
@@ -89259,11 +90710,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 23008
+ - uid: 23026
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: 76.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -89274,65 +90725,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23127
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23128
- components:
- - type: Transform
- pos: 8.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23129
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23130
- components:
- - type: Transform
- pos: 9.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23147
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 2.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23148
+ - uid: 23109
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 2.5,-67.5
+ pos: 81.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23149
+ - uid: 23184
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 1.5,-65.5
+ pos: 23.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23150
+ color: '#03FCD3FF'
+ - uid: 23193
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-66.5
+ pos: 7.5,-52.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -89426,6 +90838,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23783
components:
- type: Transform
@@ -89434,14 +90854,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23899
+ - uid: 23912
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 78.5,-14.5
+ pos: 19.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#947507FF'
- uid: 23983
components:
- type: Transform
@@ -89541,6 +90961,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24217
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 24262
components:
- type: Transform
@@ -89586,65 +91022,40 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24435
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24437
+ - uid: 24431
components:
- type: Transform
- pos: 22.5,-6.5
+ pos: 40.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24438
+ - uid: 24432
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 20.5,-6.5
+ pos: 36.5,-48.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24442
- components:
- - type: Transform
- pos: 25.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24462
+ - uid: 24450
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,3.5
+ pos: 24.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24476
+ - uid: 24451
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-9.5
+ pos: 22.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24477
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-10.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24598
+ - uid: 24464
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-25.5
+ pos: 22.5,5.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -89664,14 +91075,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24603
+ - uid: 24619
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 20.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-40.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24624
components:
- type: Transform
@@ -89680,76 +91091,91 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24634
+ - uid: 24633
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-46.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24635
+ - uid: 24641
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 41.5,-23.5
+ pos: 19.5,-17.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24636
+ - uid: 24660
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 42.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 39.5,-28.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24638
+ - uid: 24661
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-22.5
+ rot: 3.141592653589793 rad
+ pos: 40.5,-26.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24639
+ - uid: 24675
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-22.5
+ pos: 28.5,-33.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24660
+ - uid: 24723
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 39.5,-28.5
+ pos: 41.5,-31.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24661
+ - uid: 24737
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 40.5,-26.5
+ pos: 39.5,-32.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24723
+ - uid: 24775
components:
- type: Transform
- pos: 41.5,-31.5
+ rot: -1.5707963267948966 rad
+ pos: 48.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24737
+ - uid: 24788
components:
- type: Transform
- pos: 39.5,-32.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,1.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24837
components:
- type: Transform
@@ -89803,44 +91229,30 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24902
+ - uid: 24969
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-78.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24905
+ color: '#03FCD3FF'
+ - uid: 24971
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 48.5,-3.5
+ pos: 62.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24906
+ - uid: 24972
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 47.5,-2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24960
- components:
- - type: Transform
- pos: 69.5,1.5
+ pos: 61.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24961
- components:
- - type: Transform
- pos: 70.5,2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25065
components:
- type: Transform
@@ -89863,22 +91275,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25199
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-50.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25200
+ - uid: 25261
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 65.5,-51.5
+ pos: 17.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#947507FF'
- uid: 25351
components:
- type: Transform
@@ -89911,6 +91315,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 25505
+ components:
+ - type: Transform
+ pos: 79.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 25561
components:
- type: Transform
@@ -90006,14 +91417,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25880
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 21.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 26043
components:
- type: Transform
@@ -90037,33 +91440,176 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 27180
+ - uid: 26695
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,-93.5
+ pos: 29.5,-75.5
parent: 8364
- - uid: 27181
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26697
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-93.5
+ pos: 30.5,-75.5
parent: 8364
- - uid: 27240
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26797
+ components:
+ - type: Transform
+ pos: 31.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26933
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,-80.5
+ pos: 21.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27427
+ - uid: 26964
components:
- type: Transform
- pos: 27.5,-68.5
+ pos: -1.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-43.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27058
+ components:
+ - type: Transform
+ pos: 32.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 27169
+ components:
+ - type: Transform
+ pos: -22.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 27211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -22.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -26.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27658
+ components:
+ - type: Transform
+ pos: 56.5,-36.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-85.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 28148
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28218
+ components:
+ - type: Transform
+ pos: -13.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-56.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeFourway
entities:
- uid: 5316
@@ -90073,6 +91619,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5732
+ components:
+ - type: Transform
+ pos: 68.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8876
components:
- type: Transform
@@ -90080,10 +91633,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20264
+ - uid: 13665
components:
- type: Transform
- pos: 65.5,-40.5
+ pos: 70.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17467
+ components:
+ - type: Transform
+ pos: -7.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -90094,24 +91654,45 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 23026
+ - uid: 21997
components:
- type: Transform
- pos: 0.5,-55.5
+ pos: 0.5,19.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23027
+ - uid: 22975
components:
- type: Transform
- pos: -1.5,-56.5
+ pos: -7.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23072
+ components:
+ - type: Transform
+ pos: 5.5,-31.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23118
+ - uid: 23126
components:
- type: Transform
- pos: 8.5,-66.5
+ pos: 70.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23129
+ components:
+ - type: Transform
+ pos: 67.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23209
+ components:
+ - type: Transform
+ pos: -7.5,-53.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -90192,20 +91773,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24572
- components:
- - type: Transform
- pos: 35.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24625
- components:
- - type: Transform
- pos: 39.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24681
components:
- type: Transform
@@ -90234,13 +91801,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24780
- components:
- - type: Transform
- pos: 39.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24781
components:
- type: Transform
@@ -90283,20 +91843,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25150
- components:
- - type: Transform
- pos: 66.5,-34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25187
- components:
- - type: Transform
- pos: 66.5,-41.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25537
components:
- type: Transform
@@ -90325,13 +91871,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25786
- components:
- - type: Transform
- pos: 15.5,31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25787
components:
- type: Transform
@@ -90339,15 +91878,23 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26931
+ - uid: 27974
components:
- type: Transform
- pos: 28.5,-91.5
+ pos: 29.5,-7.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- proto: GasPipeSensor
entities:
+ - uid: 16635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 17381
components:
- type: MetaData
@@ -90362,19 +91909,6 @@ entities:
currentLabel: Cryogenics
- type: NameModifier
baseName: gas pipe sensor
- - uid: 19020
- components:
- - type: MetaData
- name: gas pipe sensor (TEG Mix)
- - type: Transform
- pos: 17.5,-58.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - type: Label
- currentLabel: TEG Mix
- - type: NameModifier
- baseName: gas pipe sensor
- proto: GasPipeSensorDistribution
entities:
- uid: 10817
@@ -90394,23 +91928,23 @@ entities:
parent: 8364
- proto: GasPipeSensorTEGCold
entities:
- - uid: 7418
+ - uid: 4177
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 20.5,-72.5
+ pos: 19.5,-75.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- proto: GasPipeSensorTEGHot
entities:
- - uid: 16396
+ - uid: 13067
components:
- type: Transform
- pos: 14.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#947507FF'
- proto: GasPipeSensorWaste
entities:
- uid: 16914
@@ -90503,6 +92037,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 750
components:
- type: Transform
@@ -90511,6 +92061,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-67.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 14.5,-81.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 954
components:
- type: Transform
@@ -90539,6 +92104,13 @@ entities:
- type: Transform
pos: 15.5,-54.5
parent: 8364
+ - uid: 1479
+ components:
+ - type: Transform
+ pos: 13.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 1617
components:
- type: Transform
@@ -90555,86 +92127,52 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 1643
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-60.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 3682
- components:
- - type: Transform
- pos: -7.5,-63.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 3685
- components:
- - type: Transform
- pos: 15.5,-59.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 3719
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 3771
- components:
- - type: Transform
- pos: 29.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3772
+ - uid: 1627
components:
- type: Transform
- pos: 33.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-83.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 3782
+ - uid: 1643
components:
- type: Transform
- pos: 34.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 18.5,-60.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3783
+ color: '#947507FF'
+ - uid: 2826
components:
- type: Transform
- pos: 33.5,-74.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-0.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3786
+ color: '#990000FF'
+ - uid: 3602
components:
- type: Transform
- pos: 35.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-79.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 3818
+ - uid: 3682
components:
- type: Transform
- pos: 29.5,-73.5
+ pos: -7.5,-63.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 3819
+ color: '#0055CCFF'
+ - uid: 3685
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-71.5
+ pos: 15.5,-59.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#FF1212FF'
- uid: 3837
components:
- type: Transform
@@ -90651,14 +92189,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 3865
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 3878
components:
- type: Transform
@@ -90753,14 +92283,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4062
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 4073
components:
- type: Transform
@@ -90800,36 +92322,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4107
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4135
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4136
+ - uid: 4139
components:
- type: Transform
- pos: 17.5,-83.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-83.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 4147
components:
- type: Transform
pos: 11.5,-49.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 4149
components:
- type: Transform
@@ -90894,213 +92401,346 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4498
+ - uid: 4215
components:
- type: Transform
- pos: 3.5,-64.5
+ pos: -2.5,-18.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4501
+ - uid: 4229
components:
- type: Transform
- pos: 17.5,-82.5
+ pos: 13.5,-78.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4502
+ color: '#990000FF'
+ - uid: 4232
components:
- type: Transform
- pos: 13.5,-82.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 4509
+ color: '#947507FF'
+ - uid: 4273
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-74.5
+ pos: 76.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4510
+ color: '#0055CCFF'
+ - uid: 4274
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,-74.5
+ pos: 77.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4521
+ color: '#0055CCFF'
+ - uid: 4275
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 24.5,-74.5
+ pos: 75.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4530
+ color: '#0055CCFF'
+ - uid: 4288
components:
- type: Transform
- pos: 32.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4531
+ color: '#0055CCFF'
+ - uid: 4289
components:
- type: Transform
- pos: 31.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: 73.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4533
+ color: '#0055CCFF'
+ - uid: 4290
components:
- type: Transform
- pos: 31.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4534
+ color: '#0055CCFF'
+ - uid: 4293
components:
- type: Transform
- pos: 30.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4535
+ color: '#0055CCFF'
+ - uid: 4294
components:
- type: Transform
- pos: 32.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-50.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4536
+ color: '#990000FF'
+ - uid: 4295
components:
- type: Transform
- pos: 30.5,-74.5
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,-50.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4358
+ components:
+ - type: Transform
+ pos: 28.5,-78.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4537
+ - uid: 4376
+ components:
+ - type: Transform
+ pos: 1.5,-23.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4433
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-73.5
+ pos: 78.5,-43.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4538
+ color: '#990000FF'
+ - uid: 4434
components:
- type: Transform
- pos: 15.5,-83.5
+ rot: -1.5707963267948966 rad
+ pos: 74.5,-45.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4539
+ color: '#990000FF'
+ - uid: 4435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4436
components:
- type: Transform
- pos: 35.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: 76.5,-45.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4540
+ color: '#990000FF'
+ - uid: 4437
components:
- type: Transform
- pos: 34.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-45.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4559
+ color: '#990000FF'
+ - uid: 4438
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-72.5
+ pos: 78.5,-44.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4560
+ color: '#990000FF'
+ - uid: 4463
components:
- type: Transform
- pos: 16.5,-84.5
+ pos: 76.5,-43.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4564
+ color: '#0055CCFF'
+ - uid: 4464
components:
- type: Transform
- pos: 15.5,-82.5
+ pos: 76.5,-42.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4565
+ color: '#0055CCFF'
+ - uid: 4465
components:
- type: Transform
- pos: 14.5,-82.5
+ pos: 76.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,-80.5
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 4566
+ - uid: 4493
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-74.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-83.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4567
+ - uid: 4498
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-74.5
+ pos: 3.5,-64.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4576
+ color: '#990000FF'
+ - uid: 4501
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 23.5,-74.5
+ pos: 57.5,-1.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+ - uid: 4502
+ components:
+ - type: Transform
+ pos: 58.5,-0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-81.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-13.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4555
+ components:
+ - type: Transform
+ pos: -2.5,-19.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4577
+ components:
+ - type: Transform
+ pos: -2.5,-23.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 4612
components:
- type: Transform
- pos: 17.5,-79.5
+ anchored: False
+ rot: -1.5707963267948966 rad
+ pos: 69.5,-45.5
+ parent: 8364
+ - type: Physics
+ canCollide: True
+ bodyType: Dynamic
+ - uid: 4621
+ components:
+ - type: Transform
+ pos: 67.5,-23.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4648
+ color: '#990000FF'
+ - uid: 4622
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,-72.5
+ pos: 25.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 4650
+ - uid: 4967
components:
- type: Transform
- pos: 16.5,-83.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,-42.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 4680
+ color: '#990000FF'
+ - uid: 5009
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-74.5
+ pos: 76.5,-39.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 4684
+ color: '#0055CCFF'
+ - uid: 5010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-72.5
+ pos: 76.5,-38.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+ - uid: 5015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-38.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 5068
components:
- type: Transform
@@ -91165,6 +92805,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,-44.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5203
components:
- type: Transform
@@ -91196,6 +92844,35 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5268
+ components:
+ - type: Transform
+ pos: 14.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 5272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5274
+ components:
+ - type: Transform
+ pos: 55.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5279
+ components:
+ - type: Transform
+ pos: 56.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5280
components:
- type: Transform
@@ -91210,22 +92887,80 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 5392
+ - uid: 5317
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 55.5,-9.5
+ pos: 55.5,-3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5318
+ components:
+ - type: Transform
+ pos: 56.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5393
+ - uid: 5335
+ components:
+ - type: Transform
+ pos: 56.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5370
+ components:
+ - type: Transform
+ pos: 56.5,-3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5378
+ components:
+ - type: Transform
+ pos: 56.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5380
+ components:
+ - type: Transform
+ pos: 56.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5383
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 55.5,-8.5
+ pos: 54.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5394
components:
- type: Transform
@@ -91242,6 +92977,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 5462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5593
components:
- type: Transform
@@ -91304,56 +93047,149 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5988
+ - uid: 5644
components:
- type: Transform
- pos: 0.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 6251
+ - uid: 5729
components:
- type: Transform
- pos: 8.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 6458
+ - uid: 5733
components:
- type: Transform
- pos: 27.5,24.5
+ rot: 3.141592653589793 rad
+ pos: 71.5,3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 6770
+ - uid: 5756
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-68.5
+ pos: 68.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 7041
+ - uid: 5763
components:
- type: Transform
- pos: 69.5,-6.5
+ pos: 68.5,-3.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 7056
+ - uid: 5764
components:
- type: Transform
- pos: 70.5,-4.5
+ pos: 68.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5766
+ components:
+ - type: Transform
+ pos: 68.5,-0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7071
+ - uid: 6088
components:
- type: Transform
- pos: 69.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 70.5,-11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,-44.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6220
+ components:
+ - type: Transform
+ pos: 1.5,-21.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6222
+ components:
+ - type: Transform
+ pos: 1.5,-20.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6251
+ components:
+ - type: Transform
+ pos: 8.5,-65.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6458
+ components:
+ - type: Transform
+ pos: 27.5,24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-68.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 7056
+ components:
+ - type: Transform
+ pos: 70.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 7072
components:
- type: Transform
@@ -91400,17 +93236,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 7114
+ - uid: 7143
components:
- type: Transform
- pos: 69.5,-5.5
+ pos: 70.5,-5.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 7143
+ color: '#0055CCFF'
+ - uid: 7154
components:
- type: Transform
- pos: 70.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -91437,13 +93274,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7216
- components:
- - type: Transform
- pos: 69.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7221
components:
- type: Transform
@@ -91458,13 +93288,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 7226
- components:
- - type: Transform
- pos: 69.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 7278
components:
- type: Transform
@@ -91637,6 +93460,45 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8118
+ components:
+ - type: Transform
+ pos: 53.5,-0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,17.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,16.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8216
components:
- type: Transform
@@ -91652,6 +93514,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,15.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 8402
components:
- type: Transform
@@ -91668,6 +93538,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,-41.5
+ parent: 8364
+ - uid: 8452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,-39.5
+ parent: 8364
- uid: 8531
components:
- type: Transform
@@ -92332,6 +94214,46 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 10872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 12354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 12356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 12640
components:
- type: Transform
@@ -92340,37 +94262,123 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 13665
+ - uid: 13419
components:
- type: Transform
- pos: 13.5,-83.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 13471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-68.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 14079
+ - uid: 13474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13662
+ components:
+ - type: Transform
+ pos: 55.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13848
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 23.5,-72.5
+ pos: 20.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 14087
+ - uid: 14075
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14079
+ components:
+ - type: Transform
+ pos: 14.5,-75.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 14089
+ components:
+ - type: Transform
+ pos: 14.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 14090
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,-72.5
+ pos: 22.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 14088
+ - uid: 14110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-27.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14113
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-72.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14116
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 25.5,-74.5
+ pos: 4.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 14195
components:
- type: Transform
@@ -92379,6 +94387,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 14232
components:
- type: Transform
@@ -92386,36 +94402,166 @@ entities:
pos: -42.5,-10.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 14288
+ color: '#0055CCFF'
+ - uid: 14288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -42.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-13.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14503
+ components:
+ - type: Transform
+ pos: 67.5,-37.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-81.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14515
+ components:
+ - type: Transform
+ pos: 13.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14564
+ components:
+ - type: Transform
+ pos: 22.5,-81.5
+ parent: 8364
+ - uid: 14703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14916
+ components:
+ - type: Transform
+ pos: 28.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15343
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -42.5,-8.5
+ pos: 15.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 15340
+ color: '#990000FF'
+ - uid: 15367
components:
- type: Transform
- pos: -1.5,-22.5
+ pos: 32.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 15342
+ color: '#03FCD3FF'
+ - uid: 15372
components:
- type: Transform
- pos: -1.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15345
+ - uid: 15481
components:
- type: Transform
- pos: 0.5,-22.5
+ pos: 13.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 15501
components:
- type: Transform
@@ -92435,77 +94581,89 @@ entities:
- uid: 15543
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-72.5
+ pos: 14.5,-78.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 15544
+ color: '#947507FF'
+ - uid: 15546
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-76.5
+ pos: 13.5,-75.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15876
+ - uid: 15877
components:
- type: Transform
- pos: 14.5,-84.5
+ pos: 21.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 15877
+ color: '#03FCD3FF'
+ - uid: 15878
components:
- type: Transform
- pos: 14.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 15887
+ components:
+ - type: Transform
+ pos: 68.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15878
+ - uid: 15888
components:
- type: Transform
- pos: 13.5,-74.5
+ pos: 68.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15879
+ - uid: 15889
components:
- type: Transform
- pos: 13.5,-79.5
+ pos: 68.5,-6.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15882
+ - uid: 15890
components:
- type: Transform
- pos: 16.5,-74.5
+ pos: 68.5,-1.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 15883
+ color: '#990000FF'
+ - uid: 15891
components:
- type: Transform
- pos: 13.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: 69.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15889
+ - uid: 15899
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-72.5
+ pos: 22.5,-82.5
+ parent: 8364
+ - uid: 15951
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-84.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 15891
+ - uid: 15979
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-72.5
+ rot: 3.141592653589793 rad
+ pos: 13.5,-83.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 16511
components:
- type: Transform
@@ -92522,6 +94680,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-84.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 16590
+ components:
+ - type: Transform
+ pos: 14.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 16601
components:
- type: Transform
@@ -92529,7 +94710,23 @@ entities:
pos: 10.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
+ - uid: 16629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16720
components:
- type: Transform
@@ -92538,6 +94735,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 16741
components:
- type: Transform
@@ -92622,22 +94827,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#3AB334FF'
- - uid: 16825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16880
+ - uid: 16879
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-72.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 16888
components:
- type: Transform
@@ -92670,21 +94867,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 16915
+ - uid: 16936
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -8.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 16936
+ color: '#0055CCFF'
+ - uid: 16953
components:
- type: Transform
- pos: 17.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -10.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+ - uid: 16954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-66.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16984
components:
- type: Transform
@@ -92712,7 +94926,8 @@ entities:
- uid: 17002
components:
- type: Transform
- pos: 13.5,-76.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-65.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -92771,28 +94986,70 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 17025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-66.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 8.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17028
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 16.5,-77.5
+ pos: 8.5,-69.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 17029
components:
- type: Transform
- pos: 17.5,-76.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
- uid: 17030
components:
- type: Transform
- pos: 13.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: -3.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17040
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-73.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-67.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17047
components:
- type: Transform
@@ -92835,10 +95092,43 @@ entities:
- uid: 17057
components:
- type: Transform
- pos: 14.5,-83.5
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
+ - uid: 17061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -7.5,-67.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17083
components:
- type: Transform
@@ -92854,13 +95144,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
+ - uid: 17088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17091
components:
- type: Transform
pos: 11.5,-55.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17092
components:
- type: Transform
@@ -92887,10 +95185,10 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 4.5,-65.5
+ pos: 0.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 17115
components:
- type: Transform
@@ -93019,8 +95317,16 @@ entities:
- uid: 17144
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-66.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17149
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -93035,11 +95341,11 @@ entities:
- uid: 17166
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -8.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-68.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 17171
components:
- type: Transform
@@ -93047,86 +95353,127 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17180
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,-69.5
+ pos: -10.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17176
+ - uid: 17181
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -13.5,-69.5
+ rot: -1.5707963267948966 rad
+ pos: -11.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17190
+ - uid: 17182
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -5.5,-67.5
+ pos: -23.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17209
components:
- type: Transform
pos: 11.5,-56.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17210
components:
- type: Transform
pos: 11.5,-57.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17211
components:
- type: Transform
pos: 11.5,-58.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17212
components:
- type: Transform
- pos: 16.5,-82.5
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
- uid: 17213
components:
- type: Transform
pos: 11.5,-53.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17214
components:
- type: Transform
pos: 11.5,-52.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17215
components:
- type: Transform
pos: 11.5,-51.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17216
components:
- type: Transform
pos: 11.5,-50.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17217
components:
- type: Transform
@@ -93135,6 +95482,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 17221
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17228
components:
- type: Transform
@@ -93361,7 +95716,7 @@ entities:
pos: 11.5,-54.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
+ color: '#990000FF'
- uid: 17336
components:
- type: Transform
@@ -93378,14 +95733,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17383
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-70.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#0055CCFF'
+ - uid: 17424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17466
components:
- type: Transform
@@ -93394,6 +95773,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 17472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-31.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17521
components:
- type: Transform
@@ -93418,6 +95805,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17560
components:
- type: Transform
@@ -93429,10 +95824,19 @@ entities:
- uid: 17564
components:
- type: Transform
- pos: 15.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: -5.5,-29.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
+ - uid: 17565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17569
components:
- type: Transform
@@ -93464,14 +95868,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 17600
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-65.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17601
components:
- type: Transform
@@ -93496,22 +95892,78 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17702
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,-71.5
+ pos: 78.5,-13.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
+ - uid: 17707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17794
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-71.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,-8.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
+ - uid: 17802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17807
components:
- type: Transform
@@ -93560,10 +96012,19 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#3AB334FF'
- - uid: 18404
+ - uid: 18620
components:
- type: Transform
- pos: -3.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -93574,6 +96035,30 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 18681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-13.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-3.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19066
components:
- type: Transform
@@ -93582,6 +96067,50 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 19079
+ components:
+ - type: Transform
+ pos: -2.5,-21.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19148
+ components:
+ - type: Transform
+ pos: -2.5,-20.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19857
+ components:
+ - type: Transform
+ pos: 26.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19900
+ components:
+ - type: Transform
+ pos: -58.5,0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 19936
components:
- type: Transform
@@ -93630,14 +96159,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 19942
+ - uid: 19953
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: 4.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 19957
components:
- type: Transform
@@ -93646,14 +96175,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 20003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-30.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20125
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-71.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-12.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
- uid: 20127
components:
- type: Transform
@@ -93662,6 +96215,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20135
+ components:
+ - type: Transform
+ pos: 68.5,0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20153
components:
- type: Transform
@@ -93685,6 +96253,115 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20279
+ components:
+ - type: Transform
+ pos: 67.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20368
+ components:
+ - type: Transform
+ pos: 67.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20859
+ components:
+ - type: Transform
+ pos: 67.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20898
+ components:
+ - type: Transform
+ pos: 67.5,-30.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-31.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21248
+ components:
+ - type: Transform
+ pos: 67.5,-32.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21290
+ components:
+ - type: Transform
+ pos: 67.5,-35.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21364
+ components:
+ - type: Transform
+ pos: 67.5,-36.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21366
+ components:
+ - type: Transform
+ pos: 67.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21370
+ components:
+ - type: Transform
+ pos: 67.5,-40.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21371
+ components:
+ - type: Transform
+ pos: 67.5,-42.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21380
+ components:
+ - type: Transform
+ pos: 67.5,-47.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 21382
components:
- type: Transform
@@ -93701,6 +96378,118 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 21386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,-51.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 21742
components:
- type: Transform
@@ -93709,6 +96498,76 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 21763
+ components:
+ - type: Transform
+ pos: 67.5,-48.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21798
+ components:
+ - type: Transform
+ pos: 67.5,-46.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,19.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 2.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22140
components:
- type: Transform
@@ -93717,6 +96576,93 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22539
+ components:
+ - type: Transform
+ pos: 76.5,-40.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,-40.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,-9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 22735
components:
- type: Transform
@@ -93724,6 +96670,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
+ - uid: 22738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-11.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22739
components:
- type: Transform
@@ -93745,14 +96699,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 22749
+ - uid: 22746
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-76.5
+ pos: 25.5,14.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
- uid: 22760
components:
- type: Transform
@@ -94008,6 +96962,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
+ - uid: 22817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,15.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22820
components:
- type: Transform
@@ -94072,6 +97034,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 22835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,13.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22836
components:
- type: Transform
@@ -94120,53 +97090,54 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 22916
+ - uid: 22851
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-75.5
+ pos: 25.5,17.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22922
+ color: '#990000FF'
+ - uid: 22856
components:
- type: Transform
- pos: 18.5,-82.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,16.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22929
+ color: '#0055CCFF'
+ - uid: 22858
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-47.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-72.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22930
+ color: '#990000FF'
+ - uid: 22889
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 7.5,-47.5
+ pos: 8.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 22941
+ color: '#990000FF'
+ - uid: 22929
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-47.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 22944
+ color: '#0055CCFF'
+ - uid: 22930
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-78.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-47.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
- uid: 22947
components:
- type: Transform
@@ -94220,27 +97191,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23002
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-52.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23003
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-52.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23004
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -94248,23 +97203,15 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 6.5,-53.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23006
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-53.5
+ pos: -15.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23007
+ - uid: 23010
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-53.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-67.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -94352,6 +97299,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23028
components:
- type: Transform
@@ -94385,10 +97340,11 @@ entities:
- uid: 23032
components:
- type: Transform
- pos: -1.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-55.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 23033
components:
- type: Transform
@@ -94406,10 +97362,11 @@ entities:
- uid: 23035
components:
- type: Transform
- pos: 0.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-56.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23036
components:
- type: Transform
@@ -94583,11 +97540,27 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23072
+ - uid: 23067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -9.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23068
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -6.5,-56.5
+ pos: 2.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -13.5,-68.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -94608,10 +97581,11 @@ entities:
- uid: 23075
components:
- type: Transform
- pos: -7.5,-53.5
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23076
components:
- type: Transform
@@ -94644,10 +97618,10 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -8.5,-55.5
+ pos: -7.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23081
components:
- type: Transform
@@ -94668,15 +97642,14 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -9.5,-55.5
+ pos: 3.5,21.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23084
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-55.5
+ pos: 4.5,-34.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -94688,6 +97661,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 23091
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23092
components:
- type: Transform
@@ -94712,6 +97693,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23103
components:
- type: Transform
@@ -94747,22 +97736,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23109
+ - uid: 23110
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-71.5
+ pos: -1.5,-27.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 23111
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 19.5,-79.5
+ pos: 0.5,-26.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#0055CCFF'
- uid: 23113
components:
- type: Transform
@@ -94787,80 +97774,52 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23119
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -9.5,-64.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23122
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23123
+ - uid: 23118
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23124
+ - uid: 23119
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 6.5,-65.5
+ pos: -9.5,-64.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23125
+ - uid: 23120
components:
- type: Transform
- pos: 7.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-6.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23126
+ - uid: 23127
components:
- type: Transform
- pos: 7.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23131
+ - uid: 23128
components:
- type: Transform
- pos: 8.5,-69.5
+ pos: 67.5,-28.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23132
+ - uid: 23130
components:
- type: Transform
- pos: 8.5,-70.5
+ pos: 67.5,-49.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23134
- components:
- - type: Transform
- pos: 9.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23135
- components:
- - type: Transform
- pos: 9.5,-70.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23136
components:
- type: Transform
@@ -94877,22 +97836,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23139
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23141
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-66.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,-39.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23144
components:
- type: Transform
@@ -94909,62 +97860,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23153
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-65.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23154
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 1.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23155
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,-71.5
+ pos: 15.5,-84.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23156
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-71.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23157
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-72.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23159
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 8.5,-73.5
+ pos: 14.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#947507FF'
- uid: 23162
components:
- type: Transform
@@ -94989,46 +97899,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23165
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-74.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23166
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23168
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 6.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23169
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23170
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-73.5
+ pos: 13.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23178
components:
- type: Transform
@@ -95041,75 +97918,34 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#FF1212FF'
- - uid: 23184
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23185
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23186
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23187
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-66.5
+ pos: 55.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23188
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-66.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23189
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-67.5
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23191
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-69.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23192
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-67.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23193
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -6.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: 81.5,-3.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -95153,6 +97989,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -12.5,-56.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23205
components:
- type: Transform
@@ -95178,8 +98022,8 @@ entities:
- uid: 23214
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -10.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -95187,10 +98031,10 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -11.5,-69.5
+ pos: -24.5,-69.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23216
components:
- type: Transform
@@ -95202,16 +98046,7 @@ entities:
- uid: 23217
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23218
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -12.5,-69.5
+ pos: 1.5,-18.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -95239,14 +98074,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23243
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -15.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23244
components:
- type: Transform
@@ -95271,91 +98098,51 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23247
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-68.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23248
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -20.5,-68.5
+ pos: 80.5,-13.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 23249
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,11.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23251
+ color: '#0055CCFF'
+ - uid: 23252
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -14.5,-69.5
+ pos: 65.5,-12.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23253
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -16.5,-69.5
+ pos: 70.5,-35.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23254
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -17.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23255
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23256
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -19.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 68.5,-52.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23257
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23258
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -21.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23259
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -22.5,-69.5
+ rot: 1.5707963267948966 rad
+ pos: 74.5,-44.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -95605,14 +98392,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23316
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23317
components:
- type: Transform
@@ -95629,14 +98408,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23319
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23321
components:
- type: Transform
@@ -96953,22 +99724,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23537
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23538
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23539
components:
- type: Transform
@@ -97089,14 +99844,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23556
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -5.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23557
components:
- type: Transform
@@ -98083,6 +100830,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23722
components:
- type: Transform
@@ -98401,14 +101156,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23771
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23773
components:
- type: Transform
@@ -98417,22 +101164,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23774
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23775
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23776
components:
- type: Transform
@@ -98525,10 +101256,10 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 21.5,-14.5
+ pos: -11.5,-56.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 23790
components:
- type: Transform
@@ -98569,6 +101300,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-69.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 23798
components:
- type: Transform
@@ -98609,14 +101348,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23804
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 36.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23806
components:
- type: Transform
@@ -98716,8 +101447,7 @@ entities:
- uid: 23820
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 52.5,-14.5
+ pos: 1.5,-19.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -98749,7 +101479,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 57.5,-14.5
+ pos: -2.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -98769,14 +101499,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23828
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23829
components:
- type: Transform
@@ -98801,14 +101523,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 54.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23833
components:
- type: Transform
@@ -98913,14 +101627,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23849
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23850
components:
- type: Transform
@@ -99004,8 +101710,8 @@ entities:
- uid: 23864
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 77.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99073,14 +101779,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23876
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 70.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23877
components:
- type: Transform
@@ -99097,14 +101795,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23879
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 71.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23880
components:
- type: Transform
@@ -99145,11 +101835,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23887
+ - uid: 23886
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 68.5,-12.5
+ pos: 69.5,-35.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23887
+ components:
+ - type: Transform
+ pos: 67.5,-33.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99164,8 +101861,7 @@ entities:
- uid: 23889
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-12.5
+ pos: 67.5,-26.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99236,48 +101932,14 @@ entities:
- uid: 23901
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23902
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23904
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23905
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23906
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-10.5
+ pos: 67.5,-44.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23908
+ - uid: 23907
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-8.5
+ pos: -5.5,-72.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99285,95 +101947,23 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 78.5,-10.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23910
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23912
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23913
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23914
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23916
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23917
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23918
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23919
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-4.5
+ pos: 21.5,-82.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#03FCD3FF'
- uid: 23920
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 78.5,-3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23921
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-4.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23922
+ - uid: 23921
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 76.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 59.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -99425,46 +102015,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23931
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-25.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23932
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-25.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23933
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23934
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23937
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23951
components:
- type: Transform
@@ -100166,14 +102716,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24078
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -20.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24079
components:
- type: Transform
@@ -100198,38 +102740,49 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-71.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-72.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24088
components:
- type: Transform
pos: 4.5,-32.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24089
components:
- type: Transform
pos: 4.5,-33.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24090
components:
- type: Transform
- pos: 4.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24091
components:
- type: Transform
- pos: 5.5,-30.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24092
- components:
- - type: Transform
- pos: 5.5,-31.5
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-44.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -100239,19 +102792,35 @@ entities:
pos: 5.5,-32.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24094
components:
- type: Transform
pos: 5.5,-33.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24095
components:
- type: Transform
pos: 5.5,-34.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-37.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24097
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-37.5
+ parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24100
@@ -100678,6 +103247,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24173
+ components:
+ - type: Transform
+ pos: 70.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24175
components:
- type: Transform
@@ -100705,38 +103281,27 @@ entities:
- uid: 24182
components:
- type: Transform
- pos: 0.5,-8.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24183
components:
- type: Transform
- pos: 0.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: -20.5,-71.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24184
components:
- type: Transform
- pos: 0.5,-10.5
+ rot: 3.141592653589793 rad
+ pos: -19.5,-72.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24185
- components:
- - type: Transform
- pos: -1.5,-10.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24186
- components:
- - type: Transform
- pos: -1.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24190
components:
- type: Transform
@@ -100927,8 +103492,8 @@ entities:
- uid: 24223
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-36.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -101030,6 +103595,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,-38.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24247
components:
- type: Transform
@@ -101288,8 +103861,7 @@ entities:
- uid: 24301
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-4.5
+ pos: 48.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -101675,14 +104247,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24384
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24385
components:
- type: Transform
@@ -101699,22 +104263,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24387
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24388
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24389
components:
- type: Transform
@@ -101747,14 +104295,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24393
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24394
components:
- type: Transform
@@ -101763,14 +104303,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24395
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24396
components:
- type: Transform
@@ -101779,14 +104311,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24397
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24402
components:
- type: Transform
@@ -101943,174 +104467,171 @@ entities:
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 22.5,-10.5
+ pos: 48.5,-3.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24429
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 24.5,-9.5
+ pos: 21.5,-2.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24431
+ color: '#990000FF'
+ - uid: 24430
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-8.5
+ rot: -1.5707963267948966 rad
+ pos: 36.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24432
+ - uid: 24436
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 24.5,-8.5
+ pos: 21.5,-8.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24440
+ color: '#990000FF'
+ - uid: 24437
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-4.5
+ pos: 26.5,-6.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24441
+ - uid: 24438
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-6.5
+ pos: 28.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24443
+ - uid: 24439
components:
- type: Transform
- pos: 25.5,-6.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-7.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24444
+ color: '#990000FF'
+ - uid: 24440
components:
- type: Transform
- pos: 25.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24445
components:
- type: Transform
- pos: 20.5,-5.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-3.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24446
components:
- type: Transform
- pos: 20.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24447
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-4.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-3.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24448
components:
- type: Transform
- pos: 21.5,-3.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24449
components:
- type: Transform
- pos: 20.5,-3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24450
- components:
- - type: Transform
- pos: 20.5,-2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24451
- components:
- - type: Transform
- pos: 21.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,3.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24452
components:
- type: Transform
- pos: 21.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,2.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24453
components:
- type: Transform
- pos: 20.5,-1.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,1.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24454
components:
- type: Transform
- pos: 20.5,-0.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-0.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24455
components:
- type: Transform
- pos: 20.5,0.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,0.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24456
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 21.5,-0.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24457
components:
- type: Transform
pos: 21.5,0.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24458
components:
- type: Transform
pos: 21.5,1.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24459
- components:
- - type: Transform
- pos: 20.5,1.5
- parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24460
components:
- type: Transform
- pos: 20.5,2.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -102120,28 +104641,27 @@ entities:
pos: 21.5,2.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24465
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-10.5
+ pos: 21.5,-6.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24466
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24467
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -102149,146 +104669,95 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-10.5
+ pos: 24.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24469
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-10.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24470
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24471
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-9.5
+ rot: 3.141592653589793 rad
+ pos: 22.5,-2.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24472
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 25.5,-9.5
+ pos: 23.5,-4.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24473
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 26.5,-9.5
+ pos: 24.5,-4.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24474
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-9.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-4.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24475
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24478
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-9.5
+ pos: 26.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24479
+ - uid: 24476
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-8.5
+ pos: 26.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24480
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24481
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24482
+ - uid: 24477
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-7.5
+ pos: 26.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24483
+ - uid: 24480
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24484
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: 37.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24485
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-5.5
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24486
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24487
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24488
components:
- type: Transform
@@ -102491,13 +104960,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24524
- components:
- - type: Transform
- pos: 25.5,-18.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24525
components:
- type: Transform
@@ -102718,10 +105180,11 @@ entities:
- uid: 24560
components:
- type: Transform
- pos: 35.5,-22.5
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-19.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24561
components:
- type: Transform
@@ -102841,6 +105304,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24584
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,-19.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24589
components:
- type: Transform
@@ -102998,30 +105469,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24616
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24617
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 37.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24619
+ - uid: 24618
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-22.5
+ pos: 36.5,-41.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24620
components:
- type: Transform
@@ -103049,11 +105503,10 @@ entities:
- uid: 24623
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 39.5,-23.5
+ pos: 41.5,-49.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24626
components:
- type: Transform
@@ -103073,10 +105526,11 @@ entities:
- uid: 24628
components:
- type: Transform
- pos: 39.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: 37.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24629
components:
- type: Transform
@@ -103098,45 +105552,51 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24632
+ - uid: 24637
components:
- type: Transform
- pos: 39.5,-19.5
+ pos: 43.5,-8.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24633
+ color: '#990000FF'
+ - uid: 24639
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-24.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24640
+ - uid: 24642
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 42.5,-22.5
+ pos: 48.5,-6.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24641
+ - uid: 24643
+ components:
+ - type: Transform
+ pos: 43.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24645
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 42.5,-21.5
+ pos: 19.5,-19.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24642
+ - uid: 24646
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 41.5,-21.5
+ pos: 19.5,-18.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24647
components:
- type: Transform
@@ -103275,13 +105735,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24675
- components:
- - type: Transform
- pos: 25.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24676
components:
- type: Transform
@@ -103418,30 +105871,44 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24702
+ - uid: 24703
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-33.5
+ pos: 20.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24704
+ components:
+ - type: Transform
+ pos: 21.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24703
+ - uid: 24705
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-4.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24704
+ color: '#990000FF'
+ - uid: 24707
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 20.5,-33.5
+ pos: 25.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24711
+ components:
+ - type: Transform
+ pos: 25.5,-17.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24713
components:
- type: Transform
@@ -103466,14 +105933,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24716
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 36.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24717
components:
- type: Transform
@@ -103545,13 +106004,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24729
- components:
- - type: Transform
- pos: 35.5,-28.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24730
components:
- type: Transform
@@ -103783,8 +106235,7 @@ entities:
- uid: 24771
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-40.5
+ pos: 25.5,-28.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -103804,11 +106255,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24774
+ - uid: 24778
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-39.5
+ rot: 3.141592653589793 rad
+ pos: 43.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -103819,46 +106270,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24784
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 40.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24785
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24786
+ - uid: 24780
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-49.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-5.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24787
+ color: '#990000FF'
+ - uid: 24784
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-49.5
+ rot: 3.141592653589793 rad
+ pos: 19.5,-20.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24788
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-48.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24789
components:
- type: Transform
@@ -103867,22 +106294,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24790
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24791
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24792
components:
- type: Transform
@@ -104035,6 +106446,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-7.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24817
components:
- type: Transform
@@ -104368,16 +106787,16 @@ entities:
- uid: 24888
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,-8.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-1.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24889
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -104389,13 +106808,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24893
+ - uid: 24891
components:
- type: Transform
- pos: 44.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-1.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24894
components:
- type: Transform
@@ -104403,46 +106823,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24895
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24896
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24897
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 44.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24898
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 44.5,-4.5
+ pos: 29.5,0.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24899
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 43.5,-4.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-4.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 24900
components:
- type: Transform
@@ -104475,27 +106871,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24908
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 45.5,-3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24909
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 46.5,-3.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24910
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 47.5,-3.5
+ pos: 36.5,-46.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -104523,54 +106903,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24922
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24923
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24924
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 76.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24925
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 75.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24926
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24927
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24932
components:
- type: Transform
@@ -104635,18 +106967,33 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24940
+ - uid: 24942
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 56.5,-8.5
+ pos: 0.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24943
+ components:
+ - type: Transform
+ pos: -1.5,-25.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-17.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24951
components:
- type: Transform
- pos: 69.5,-2.5
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -104667,7 +107014,8 @@ entities:
- uid: 24954
components:
- type: Transform
- pos: 69.5,-1.5
+ rot: -1.5707963267948966 rad
+ pos: 60.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -104681,10 +107029,11 @@ entities:
- uid: 24956
components:
- type: Transform
- pos: 69.5,0.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#03FCD3FF'
- uid: 24957
components:
- type: Transform
@@ -104717,11 +107066,11 @@ entities:
- uid: 24963
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 68.5,1.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#03FCD3FF'
- uid: 24964
components:
- type: Transform
@@ -104746,6 +107095,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-82.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 25006
components:
- type: Transform
@@ -104908,13 +107265,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25046
- components:
- - type: Transform
- pos: 66.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25047
components:
- type: Transform
@@ -104947,14 +107297,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25051
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25052
components:
- type: Transform
@@ -105027,22 +107369,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25063
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25064
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25067
components:
- type: Transform
@@ -105059,21 +107385,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25074
- components:
- - type: Transform
- pos: 66.5,-25.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25077
+ - uid: 25072
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 66.5,-26.5
+ pos: 1.5,-16.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 25078
components:
- type: Transform
@@ -105137,13 +107456,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25087
- components:
- - type: Transform
- pos: 66.5,-28.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25088
components:
- type: Transform
@@ -105151,13 +107463,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25089
- components:
- - type: Transform
- pos: 66.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25090
components:
- type: Transform
@@ -105165,27 +107470,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25091
- components:
- - type: Transform
- pos: 66.5,-30.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25092
- components:
- - type: Transform
- pos: 65.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25093
- components:
- - type: Transform
- pos: 66.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25095
components:
- type: Transform
@@ -105445,11 +107729,10 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25147
+ - uid: 25146
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-33.5
+ pos: 68.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -105517,14 +107800,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25158
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25159
components:
- type: Transform
@@ -105541,13 +107816,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25161
- components:
- - type: Transform
- pos: 66.5,-35.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25162
components:
- type: Transform
@@ -105555,13 +107823,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25163
- components:
- - type: Transform
- pos: 66.5,-36.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25172
components:
- type: Transform
@@ -105578,14 +107839,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25174
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25175
components:
- type: Transform
@@ -105626,14 +107879,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25181
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 65.5,-46.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25182
components:
- type: Transform
@@ -105642,78 +107887,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-37.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25184
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-38.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25185
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25186
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-42.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25189
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-43.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25190
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-44.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25192
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-46.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25193
+ - uid: 25187
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-47.5
+ rot: -1.5707963267948966 rad
+ pos: 58.5,-9.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 25194
components:
- type: Transform
@@ -105722,22 +107903,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25195
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-48.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25196
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 66.5,-49.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25197
components:
- type: Transform
@@ -105754,38 +107919,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25201
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25202
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25203
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25204
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-50.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25205
components:
- type: Transform
@@ -105794,14 +107927,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25208
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 64.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25209
components:
- type: Transform
@@ -105818,14 +107943,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25211
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 63.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25212
components:
- type: Transform
@@ -105834,14 +107951,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25213
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 62.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25214
components:
- type: Transform
@@ -105850,14 +107959,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25215
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 61.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25216
components:
- type: Transform
@@ -105866,14 +107967,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25217
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 60.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25218
components:
- type: Transform
@@ -105882,58 +107975,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25219
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 59.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25220
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 57.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25221
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 58.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25222
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-40.5
+ pos: 14.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#947507FF'
- uid: 25227
components:
- type: Transform
- pos: 58.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25245
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 67.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25246
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 68.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 52.5,-40.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -105945,38 +107998,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25248
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 70.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25249
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 71.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25250
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 72.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25251
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 73.5,-45.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25252
components:
- type: Transform
@@ -107043,14 +109064,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25453
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,16.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25454
components:
- type: Transform
@@ -107083,14 +109096,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25458
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,16.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25459
components:
- type: Transform
@@ -107267,14 +109272,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25495
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,19.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25496
components:
- type: Transform
@@ -107339,22 +109336,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25505
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,21.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25506
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,21.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25507
components:
- type: Transform
@@ -108392,6 +110373,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 25784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,-34.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 25785
components:
- type: Transform
@@ -108400,27 +110389,27 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25788
+ - uid: 25786
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,32.5
+ rot: 1.5707963267948966 rad
+ pos: 45.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25789
+ - uid: 25788
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,33.5
+ pos: 15.5,32.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25790
+ - uid: 25789
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,34.5
+ pos: 15.5,33.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -108583,14 +110572,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25966
+ - uid: 25988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26018
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-80.5
+ pos: -2.5,-16.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
+ - uid: 26019
+ components:
+ - type: Transform
+ pos: 70.5,-26.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 26041
components:
- type: Transform
@@ -108630,22 +110634,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 26082
+ - uid: 26089
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: 26.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 26383
+ components:
+ - type: Transform
+ pos: 70.5,-27.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26089
+ - uid: 26389
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 26.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
- uid: 26621
components:
- type: Transform
@@ -108654,46 +110665,46 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26676
+ - uid: 26646
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-73.5
+ pos: -2.5,-15.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26677
+ color: '#990000FF'
+ - uid: 26671
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-72.5
+ pos: 1.5,-15.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26678
+ - uid: 26676
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-71.5
+ pos: -7.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26679
+ - uid: 26677
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-70.5
+ pos: -7.5,-72.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26680
+ - uid: 26678
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -5.5,-72.5
+ pos: -7.5,-71.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 26681
components:
- type: Transform
@@ -108718,22 +110729,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26684
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26685
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -3.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 26686
components:
- type: Transform
@@ -108766,492 +110761,549 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26690
+ - uid: 26692
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-73.5
+ pos: 29.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 26691
+ color: '#03FCD3FF'
+ - uid: 26696
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -8.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26921
+ - uid: 26712
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-81.5
+ pos: 23.5,-81.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26922
+ color: '#03FCD3FF'
+ - uid: 26802
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-82.5
+ pos: 14.5,-82.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26923
+ color: '#947507FF'
+ - uid: 26803
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-83.5
+ pos: 28.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 26928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,10.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26924
+ - uid: 26941
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 26958
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-84.5
+ pos: 25.5,10.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26926
+ color: '#990000FF'
+ - uid: 26966
components:
- type: Transform
- pos: 28.5,-86.5
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-8.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26927
+ color: '#990000FF'
+ - uid: 26998
components:
- type: Transform
- pos: 28.5,-87.5
+ rot: 3.141592653589793 rad
+ pos: 61.5,-7.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26928
+ color: '#990000FF'
+ - uid: 27016
components:
- type: Transform
- pos: 28.5,-88.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26929
+ color: '#990000FF'
+ - uid: 27017
components:
- type: Transform
- pos: 28.5,-89.5
+ rot: -1.5707963267948966 rad
+ pos: 70.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26930
+ color: '#990000FF'
+ - uid: 27018
components:
- type: Transform
- pos: 28.5,-90.5
+ pos: 55.5,-4.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26933
+ color: '#990000FF'
+ - uid: 27024
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-93.5
+ pos: 15.5,-81.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26934
+ color: '#990000FF'
+ - uid: 27157
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-94.5
+ pos: 54.5,-13.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26935
+ color: '#990000FF'
+ - uid: 27158
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-95.5
+ pos: 54.5,-15.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26936
+ color: '#990000FF'
+ - uid: 27159
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-96.5
+ pos: 54.5,-14.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26937
+ color: '#990000FF'
+ - uid: 27160
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-97.5
+ pos: 54.5,-16.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26938
+ color: '#990000FF'
+ - uid: 27161
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-98.5
+ pos: 73.5,-29.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26939
+ color: '#990000FF'
+ - uid: 27162
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-99.5
+ pos: 73.5,-24.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26940
+ color: '#990000FF'
+ - uid: 27163
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-100.5
+ pos: 70.5,-28.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26941
+ - uid: 27164
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-101.5
+ pos: 73.5,-23.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26942
+ color: '#990000FF'
+ - uid: 27170
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-102.5
+ pos: -20.5,-75.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26943
+ - uid: 27171
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-103.5
+ pos: -26.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26944
+ - uid: 27196
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-104.5
+ pos: 56.5,-38.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26945
+ - uid: 27200
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-105.5
+ pos: 73.5,-28.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26947
+ color: '#990000FF'
+ - uid: 27203
components:
- type: Transform
- pos: 28.5,-107.5
+ pos: 70.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26948
+ - uid: 27208
components:
- type: Transform
- pos: 28.5,-108.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26952
+ - uid: 27209
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 27.5,-91.5
+ pos: -25.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26953
+ - uid: 27258
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 26.5,-91.5
+ pos: -24.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26954
+ - uid: 27277
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-91.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26955
+ color: '#990000FF'
+ - uid: 27307
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-91.5
+ pos: 73.5,-26.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26956
+ color: '#990000FF'
+ - uid: 27308
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-91.5
+ pos: 73.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27380
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,-35.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26957
+ - uid: 27382
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-91.5
+ pos: 52.5,-15.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27179
+ - uid: 27383
components:
- type: Transform
- pos: 22.5,-92.5
+ pos: 73.5,-27.5
parent: 8364
- - uid: 27258
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27384
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-79.5
+ rot: -1.5707963267948966 rad
+ pos: 71.5,-35.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27289
+ - uid: 27389
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-78.5
+ rot: -1.5707963267948966 rad
+ pos: 72.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27290
+ color: '#990000FF'
+ - uid: 27406
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-77.5
+ pos: 54.5,-17.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27307
+ color: '#990000FF'
+ - uid: 27413
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-76.5
+ pos: 52.5,-16.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27308
+ - uid: 27426
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: 55.5,-36.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27311
+ - uid: 27427
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,-74.5
+ pos: 52.5,-35.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27380
+ color: '#990000FF'
+ - uid: 27486
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: 53.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27413
+ color: '#990000FF'
+ - uid: 27548
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-72.5
+ rot: -1.5707963267948966 rad
+ pos: -21.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27418
+ color: '#990000FF'
+ - uid: 27550
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-70.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27425
+ - uid: 27650
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-71.5
+ pos: 52.5,-17.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27426
+ - uid: 27762
+ components:
+ - type: Transform
+ pos: 14.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 27847
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 27.5,-69.5
+ pos: 62.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27486
+ - uid: 27848
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 62.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27529
+ - uid: 27937
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: 46.5,-8.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27530
+ - uid: 27938
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 47.5,-3.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27531
+ color: '#990000FF'
+ - uid: 27940
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-68.5
+ pos: 48.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27532
+ - uid: 27943
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-68.5
+ rot: 1.5707963267948966 rad
+ pos: 47.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27548
+ - uid: 27946
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 19.5,-74.5
+ pos: 20.5,-25.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 27549
+ color: '#990000FF'
+ - uid: 27950
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,-68.5
+ pos: 26.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27550
+ - uid: 27951
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 19.5,-68.5
+ pos: 35.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27552
+ - uid: 27952
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 18.5,-68.5
+ pos: 34.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27564
+ - uid: 27953
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,-68.5
+ pos: 33.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27618
+ - uid: 27954
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 13.5,-68.5
+ pos: 34.5,-28.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27619
+ color: '#990000FF'
+ - uid: 27955
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 12.5,-68.5
+ pos: 33.5,-28.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27620
+ color: '#990000FF'
+ - uid: 27956
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,-68.5
+ pos: 32.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27621
+ - uid: 27957
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 10.5,-68.5
+ pos: 31.5,-29.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27622
+ - uid: 27975
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-8.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27623
+ color: '#990000FF'
+ - uid: 27976
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-9.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 27624
+ color: '#990000FF'
+ - uid: 28196
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 15.5,-68.5
+ pos: 6.5,-31.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28225
+ components:
+ - type: Transform
+ pos: -12.5,-54.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27625
+ - uid: 28226
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-68.5
+ pos: -12.5,-52.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 28228
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-54.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -13.5,-54.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeTJunction
entities:
- uid: 1
@@ -109268,6 +111320,27 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 72.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 844
+ components:
+ - type: Transform
+ pos: 60.5,-39.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 2.5,21.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 953
components:
- type: Transform
@@ -109291,14 +111364,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 3860
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 9.5,-73.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 3998
components:
- type: Transform
@@ -109315,14 +111380,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4052
+ - uid: 4110
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 8.5,-74.5
+ pos: 15.5,-71.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#947507FF'
- uid: 4145
components:
- type: Transform
@@ -109330,44 +111395,86 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0335FCFF'
- - uid: 4173
+ - uid: 4260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 4327
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 13.5,-80.5
+ pos: 67.5,-50.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 4485
+ - uid: 4462
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-68.5
+ rot: 3.141592653589793 rad
+ pos: 78.5,-45.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 4541
+ color: '#990000FF'
+ - uid: 4538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4540
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 17.5,-78.5
+ pos: 26.5,13.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 5240
+ color: '#0055CCFF'
+ - uid: 4549
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 13.5,-78.5
+ pos: 1.5,-22.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
+ - uid: 4615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-46.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 5261
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 43.5,-39.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,-5.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 7306
components:
- type: Transform
@@ -109407,6 +111514,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8203
+ components:
+ - type: Transform
+ pos: 59.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8524
components:
- type: Transform
@@ -109515,6 +111629,53 @@ entities:
rot: -1.5707963267948966 rad
pos: 40.5,7.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10875
+ components:
+ - type: Transform
+ pos: 68.5,1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 14087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 6.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-67.5
+ parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- uid: 14212
@@ -109525,19 +111686,43 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15494
+ - uid: 14486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-55.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14504
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 14.5,-58.5
+ pos: 65.5,-39.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 15546
+ color: '#0055CCFF'
+ - uid: 14513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15494
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 17.5,-80.5
+ pos: 14.5,-58.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
@@ -109549,6 +111734,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 15883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 15.5,-80.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16134
components:
- type: Transform
@@ -109580,15 +111781,62 @@ entities:
pos: 11.5,-48.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 16830
+ color: '#990000FF'
+ - uid: 16624
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -7.5,-69.5
+ pos: 3.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16628
+ components:
+ - type: Transform
+ pos: -20.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 8.5,-70.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-53.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 16915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -6.5,-56.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 16990
components:
- type: Transform
@@ -109603,22 +111851,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17025
+ - uid: 17031
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 4.5,-53.5
+ rot: 3.141592653589793 rad
+ pos: 8.5,-73.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17026
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-52.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17042
components:
- type: Transform
@@ -109635,20 +111875,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 17063
- components:
- - type: Transform
- pos: 15.5,-79.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17064
+ - uid: 17062
components:
- type: Transform
- pos: 19.5,-71.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-73.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
- uid: 17112
components:
- type: Transform
@@ -109664,14 +111898,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17149
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-65.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 17160
components:
- type: Transform
@@ -109680,22 +111906,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17183
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -15.5,-69.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 17221
+ - uid: 17190
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-75.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-69.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
+ color: '#990000FF'
- uid: 17261
components:
- type: Transform
@@ -109718,14 +111936,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17467
+ - uid: 17468
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: -5.5,-31.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 17559
components:
- type: Transform
@@ -109744,8 +111962,14 @@ entities:
- uid: 17570
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-75.5
+ pos: 7.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17589
+ components:
+ - type: Transform
+ pos: 23.5,-12.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -109756,6 +111980,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17592
+ components:
+ - type: Transform
+ pos: 54.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17605
components:
- type: Transform
@@ -109763,19 +112002,72 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17607
+ components:
+ - type: Transform
+ pos: 52.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17661
+ components:
+ - type: Transform
+ pos: 38.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 17673
+ components:
+ - type: Transform
+ pos: 69.5,-12.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17676
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-85.5
+ pos: 71.5,-14.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17870
+ color: '#0055CCFF'
+ - uid: 17766
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-33.5
+ pos: 81.5,-6.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-6.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -109787,13 +112079,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 18735
+ - uid: 18395
components:
- type: Transform
- pos: 7.5,-65.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-34.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 18404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 19101
components:
- type: Transform
@@ -109802,10 +112103,43 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 20185
+ - uid: 19580
components:
- type: Transform
- pos: 76.5,-14.5
+ rot: -1.5707963267948966 rad
+ pos: 21.5,-1.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -59.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,9.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,-9.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -109825,6 +112159,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 20280
+ components:
+ - type: Transform
+ pos: 67.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20327
+ components:
+ - type: Transform
+ pos: 73.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 20884
components:
- type: Transform
@@ -109840,6 +112188,38 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 21365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,-40.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-43.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 21383
components:
- type: Transform
@@ -109848,19 +112228,67 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22556
+ - uid: 21385
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 76.5,-12.5
+ pos: 69.5,-52.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-24.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22557
+ - uid: 21525
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 78.5,-12.5
+ pos: 19.5,-25.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-41.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-38.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,-44.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,-22.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,-14.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -109879,6 +112307,29 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 22970
+ components:
+ - type: Transform
+ pos: -59.5,0.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,-14.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23017
components:
- type: Transform
@@ -109935,56 +112386,66 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23069
+ - uid: 23121
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 6.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23070
+ - uid: 23124
components:
- type: Transform
- pos: -7.5,-56.5
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23071
+ - uid: 23125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,-27.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23132
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-55.5
+ pos: -6.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23182
+ - uid: 23186
components:
- type: Transform
- pos: 0.5,-66.5
+ pos: 18.5,-79.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23183
+ color: '#947507FF'
+ - uid: 23202
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-67.5
+ pos: -1.5,-56.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23228
+ color: '#990000FF'
+ - uid: 23211
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 5.5,-44.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23252
+ - uid: 23228
components:
- type: Transform
- pos: -13.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-44.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -110189,21 +112650,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23407
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,0.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23415
- components:
- - type: Transform
- pos: -59.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23423
components:
- type: Transform
@@ -110323,33 +112769,11 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23533
- components:
- - type: Transform
- pos: -2.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23536
- components:
- - type: Transform
- pos: 5.5,-29.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23553
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23558
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-29.5
+ rot: 1.5707963267948966 rad
+ pos: 56.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -110584,13 +113008,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23721
- components:
- - type: Transform
- pos: 0.5,19.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23728
components:
- type: Transform
@@ -110646,13 +113063,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23772
- components:
- - type: Transform
- pos: 4.5,-31.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 23782
components:
- type: Transform
@@ -110675,17 +113085,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23797
+ - uid: 23802
components:
- type: Transform
- pos: 31.5,-12.5
+ pos: 26.5,-12.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23802
+ - uid: 23804
components:
- type: Transform
- pos: 26.5,-12.5
+ pos: -4.5,-68.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -110721,6 +113131,13 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 23832
+ components:
+ - type: Transform
+ pos: 4.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 23835
components:
- type: Transform
@@ -110759,14 +113176,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23856
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23860
components:
- type: Transform
@@ -110796,53 +113205,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23885
- components:
- - type: Transform
- pos: 65.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23886
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 67.5,-14.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23907
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 78.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23911
+ - uid: 23902
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 76.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 23928
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.5,-27.5
+ pos: 67.5,-31.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23929
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-26.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 23957
components:
- type: Transform
@@ -110945,13 +113315,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24162
- components:
- - type: Transform
- pos: -1.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24164
components:
- type: Transform
@@ -110967,13 +113330,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24173
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24174
components:
- type: Transform
@@ -110982,14 +113338,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 6.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24199
components:
- type: Transform
@@ -111171,33 +113519,90 @@ entities:
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,31.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24463
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 24.5,-10.5
+ pos: 22.5,-1.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24430
+ - uid: 24478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,-10.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24479
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,-9.5
+ pos: 21.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24433
+ - uid: 24481
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,-7.5
+ pos: 30.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-18.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24439
+ - uid: 24486
components:
- type: Transform
- pos: 24.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-23.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-24.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,-23.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111220,8 +113625,8 @@ entities:
- uid: 24523
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-17.5
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-19.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111272,6 +113677,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 24611
components:
- type: Transform
@@ -111280,19 +113693,43 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24618
+ - uid: 24616
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 38.5,-23.5
+ rot: -1.5707963267948966 rad
+ pos: 35.5,-28.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24637
+ - uid: 24617
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 40.5,-23.5
+ pos: 36.5,-29.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,-45.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-8.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -111300,7 +113737,7 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-28.5
+ pos: 15.5,34.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111327,6 +113764,21 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 24702
+ components:
+ - type: Transform
+ pos: 26.5,-4.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,-23.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24739
components:
- type: Transform
@@ -111367,14 +113819,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24783
+ - uid: 24786
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 41.5,-49.5
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-18.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 24821
components:
- type: Transform
@@ -111421,37 +113873,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24891
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 44.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24892
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 43.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24928
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 73.5,-8.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24929
- components:
- - type: Transform
- pos: 73.5,-9.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25026
components:
- type: Transform
@@ -111468,14 +113889,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25041
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25042
components:
- type: Transform
@@ -111484,30 +113897,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25045
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25054
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-24.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25055
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 70.5,-22.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25073
components:
- type: Transform
@@ -111524,14 +113913,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25076
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 66.5,-27.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25117
components:
- type: Transform
@@ -111570,30 +113951,30 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25146
+ - uid: 25191
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 66.5,-32.5
+ pos: 65.5,-44.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25179
+ color: '#0055CCFF'
+ - uid: 25232
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 66.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 29.5,-14.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25191
+ color: '#0055CCFF'
+ - uid: 25246
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 65.5,-44.5
+ pos: -19.5,-74.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
+ color: '#990000FF'
- uid: 25344
components:
- type: Transform
@@ -111817,58 +114198,73 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26673
+ - uid: 26945
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-73.5
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-22.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26674
+ - uid: 26975
components:
- type: Transform
- pos: -6.5,-74.5
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-74.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26675
+ - uid: 26986
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -6.5,-73.5
+ pos: 31.5,-12.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26920
+ - uid: 27168
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-80.5
+ pos: -19.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 26925
+ color: '#990000FF'
+ - uid: 27554
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-85.5
+ rot: 3.141592653589793 rad
+ pos: -14.5,-70.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26932
+ - uid: 27564
+ components:
+ - type: Transform
+ pos: -12.5,-68.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27942
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-92.5
+ pos: 48.5,-4.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26946
+ - uid: 28217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-53.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28220
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-106.5
+ pos: -12.5,-53.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -111891,7 +114287,7 @@ entities:
pos: 39.5,8.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 3798
components:
- type: Transform
@@ -111910,6 +114306,20 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-47.5
parent: 8364
+ - uid: 4259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-75.5
+ parent: 8364
+ - uid: 4625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-78.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 5596
components:
- type: Transform
@@ -111929,8 +114339,23 @@ entities:
rot: 1.5707963267948966 rad
pos: 39.5,7.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-78.5
+ parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14546
+ components:
+ - type: Transform
+ pos: 21.5,-76.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- uid: 15045
components:
- type: Transform
@@ -111976,6 +114401,12 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
+ - uid: 16153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-74.5
+ parent: 8364
- uid: 16330
components:
- type: Transform
@@ -111989,22 +114420,20 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17571
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 21.5,-73.5
- parent: 8364
- uid: 18298
components:
- type: Transform
pos: 43.5,-38.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18299
components:
- type: Transform
pos: 44.5,-38.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 19162
components:
- type: Transform
@@ -112024,38 +114453,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 86.5,-48.5
parent: 8364
- - uid: 20069
- components:
- - type: Transform
- pos: 18.5,-76.5
- parent: 8364
- - uid: 20070
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 20124
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-75.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20135
- components:
- - type: Transform
- pos: 12.5,-76.5
- parent: 8364
- - uid: 20136
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-73.5
- parent: 8364
- uid: 20802
components:
- type: Transform
@@ -112128,29 +114525,13 @@ entities:
rot: -1.5707963267948966 rad
pos: 78.5,-39.5
parent: 8364
- - uid: 27178
- components:
- - type: Transform
- pos: 22.5,-91.5
- parent: 8364
- - uid: 27551
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-72.5
- parent: 8364
- - uid: 27553
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-71.5
- parent: 8364
- - uid: 27554
+ - uid: 25041
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 13.5,-71.5
+ pos: 15.5,-76.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPressurePump
entities:
- uid: 3993
@@ -112175,6 +114556,18 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,-39.5
+ parent: 8364
+ - uid: 8454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-41.5
+ parent: 8364
- uid: 9437
components:
- type: Transform
@@ -112196,7 +114589,7 @@ entities:
pos: 40.5,6.5
parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
+ color: '#0055CCFF'
- uid: 13813
components:
- type: Transform
@@ -112296,20 +114689,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 20066
- components:
- - type: Transform
- pos: 12.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 20068
- components:
- - type: Transform
- pos: 18.5,-77.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#03FCD3FF'
- uid: 22840
components:
- type: Transform
@@ -112323,18 +114702,15 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25004
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-41.5
- parent: 8364
- - uid: 25005
+ - uid: 23247
components:
+ - type: MetaData
+ name: TEG Supply
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 74.5,-39.5
+ pos: 17.5,-58.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#947507FF'
- uid: 26040
components:
- type: Transform
@@ -112342,16 +114718,21 @@ entities:
pos: 33.5,-34.5
parent: 8364
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 26081
+ color: '#0055CCFF'
+ - uid: 27140
components:
- - type: MetaData
- name: Mix to TEG
- type: Transform
- pos: 17.5,-57.5
+ pos: 15.5,-77.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
+ color: '#990000FF'
+ - uid: 27152
+ components:
+ - type: Transform
+ pos: 21.5,-77.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
- proto: GasThermoMachineFreezer
entities:
- uid: 3805
@@ -112372,22 +114753,11 @@ entities:
- type: Transform
pos: 38.5,0.5
parent: 8364
- - uid: 20859
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-73.5
- parent: 8364
- uid: 21274
components:
- type: Transform
pos: 57.5,-29.5
parent: 8364
- - uid: 21406
- components:
- - type: Transform
- pos: 70.5,-47.5
- parent: 8364
- uid: 22565
components:
- type: Transform
@@ -112398,6 +114768,18 @@ entities:
- type: Transform
pos: 18.5,-50.5
parent: 8364
+ - uid: 23169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-47.5
+ parent: 8364
+ - uid: 23177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-75.5
+ parent: 8364
- proto: GasThermoMachineHeater
entities:
- uid: 3803
@@ -112406,6 +114788,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 9.5,-41.5
parent: 8364
+ - uid: 12428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-74.5
+ parent: 8364
- uid: 17695
components:
- type: Transform
@@ -112416,121 +114804,159 @@ entities:
- type: Transform
pos: 12.5,-51.5
parent: 8364
- - uid: 20858
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-73.5
- parent: 8364
- - uid: 21405
+ - uid: 23171
components:
- type: Transform
+ rot: 3.141592653589793 rad
pos: 74.5,-47.5
parent: 8364
- proto: GasValve
entities:
- - uid: 17062
+ - uid: 4231
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 20.5,-71.5
+ pos: 20.5,-80.5
parent: 8364
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#947507FF'
- - uid: 17339
+ color: '#03FCD3FF'
+ - uid: 13407
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 15.5,-56.5
+ pos: 23.5,-80.5
parent: 8364
- type: GasValve
open: False
- - uid: 17707
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 15721
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-78.5
+ pos: 19.5,-78.5
parent: 8364
- type: GasValve
open: False
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17719
+ - uid: 16550
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-78.5
+ pos: 17.5,-78.5
parent: 8364
- type: GasValve
open: False
- type: AtmosPipeColor
color: '#947507FF'
- - uid: 17766
+ - uid: 16633
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 17.5,-81.5
+ pos: 13.5,-80.5
parent: 8364
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 17775
+ color: '#990000FF'
+ - uid: 16697
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 16.5,-81.5
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-71.5
parent: 8364
- type: GasValve
open: False
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 17781
+ color: '#947507FF'
+ - uid: 17339
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-81.5
+ pos: 15.5,-56.5
parent: 8364
- type: GasValve
open: False
+ - uid: 22843
+ components:
+ - type: MetaData
+ name: waste valve 2
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-40.5
+ parent: 8364
- type: AtmosPipeColor
- color: '#990000FF'
- - uid: 18758
+ color: '#FF1212FF'
+ - uid: 23185
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 13.5,-81.5
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-80.5
parent: 8364
- type: GasValve
open: False
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22843
+- proto: GasVentPump
+ entities:
+ - uid: 747
components:
- - type: MetaData
- name: waste valve 2
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: -23.5,-70.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22588
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 824
+ components:
+ - type: Transform
+ pos: 29.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 25002
+ color: '#0055CCFF'
+ - uid: 3860
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-41.5
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-22.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4404
+ components:
+ - type: Transform
+ pos: 79.5,-51.5
parent: 8364
- - uid: 25003
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4461
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-39.5
+ pos: 69.5,-51.5
parent: 8364
-- proto: GasVentPump
- entities:
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4536
+ components:
+ - type: Transform
+ pos: 81.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 4546
components:
- type: Transform
@@ -112539,22 +114965,68 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5382
+ - uid: 5463
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 56.5,-10.5
+ pos: 65.5,-7.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22699
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5462
+ - uid: 5735
components:
- type: Transform
- pos: -15.5,-68.5
+ pos: 70.5,4.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 26707
+ - 22701
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-11.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 5769
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-6.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,-5.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 7282
@@ -112581,6 +115053,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 8909
components:
- type: Transform
@@ -112628,19 +115111,54 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 14562
+ - uid: 11761
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 66.5,-18.5
+ pos: 66.5,-40.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 15344
+ - uid: 14124
+ components:
+ - type: Transform
+ pos: -6.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 18773
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-73.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26908
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14562
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 1.5,-21.5
+ pos: 66.5,-18.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -112652,7 +115170,7 @@ entities:
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22970
+ - 19344
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 16399
@@ -112663,18 +115181,54 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17123
+ - uid: 16625
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 7.5,-61.5
+ rot: 3.141592653589793 rad
+ pos: -59.5,-0.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 17188
+ - uid: 16882
components:
- type: Transform
- pos: -1.5,-66.5
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17778
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16918
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -6.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17043
+ components:
+ - type: Transform
+ pos: 6.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 7.5,-61.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -112686,6 +115240,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 17600
+ components:
+ - type: Transform
+ pos: 57.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 18741
components:
- type: Transform
@@ -112702,79 +115266,96 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22458
+ - uid: 19169
components:
- type: Transform
- pos: 1.5,0.5
+ pos: -59.5,-3.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22696
+ - uid: 19952
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 79.5,-12.5
+ rot: 3.141592653589793 rad
+ pos: 4.5,-35.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 22950
+ - uid: 20029
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-46.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22612
- type: AtmosPipeColor
- color: '#0335FCFF'
- - uid: 22952
+ color: '#0055CCFF'
+ - uid: 20068
components:
- type: Transform
- pos: 16.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
- color: '#0335FCFF'
- - uid: 23011
+ color: '#0055CCFF'
+ - uid: 22458
components:
- type: Transform
- pos: 9.5,-52.5
+ pos: 1.5,0.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23068
+ - uid: 22731
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-56.5
+ pos: 58.5,0.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23089
+ - uid: 22748
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-55.5
+ pos: 23.5,18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8249
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23090
+ - uid: 22950
components:
- type: Transform
- pos: -7.5,-51.5
+ rot: 1.5707963267948966 rad
+ pos: 9.5,-46.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23091
+ color: '#0335FCFF'
+ - uid: 22952
components:
- type: Transform
- pos: -6.5,-54.5
+ pos: 16.5,-40.5
parent: 8364
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 23121
+ color: '#0335FCFF'
+ - uid: 23090
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-66.5
+ pos: -7.5,-51.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23146
@@ -112785,23 +115366,35 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23179
+ - uid: 23218
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: -7.5,-30.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23261
+ - uid: 23258
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-69.5
+ pos: 0.5,20.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22588
+ - 23938
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23259
+ components:
+ - type: Transform
+ pos: -6.5,-73.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23133
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23279
@@ -112836,20 +115429,35 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23946
+ - uid: 23876
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-26.5
+ pos: 36.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 23947
+ - uid: 23879
+ components:
+ - type: Transform
+ pos: 71.5,-13.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23905
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -2.5,-30.5
+ pos: -4.5,16.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25517
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 23949
@@ -112937,14 +115545,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24082
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24085
components:
- type: Transform
@@ -112961,12 +115561,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24096
+ - uid: 24092
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 5.5,-35.5
+ pos: 76.5,-37.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24098
@@ -113007,14 +115609,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24187
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24216
components:
- type: Transform
@@ -113023,14 +115617,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24217
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 5.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24220
components:
- type: Transform
@@ -113063,19 +115649,15 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24246
- components:
- - type: Transform
- pos: 78.5,-2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24291
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 6.5,6.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24292
@@ -113084,6 +115666,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24293
@@ -113092,6 +115677,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,12.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24294
@@ -113100,6 +115688,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,15.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24299
@@ -113153,6 +115744,9 @@ entities:
- type: Transform
pos: 12.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24370
@@ -113160,6 +115754,9 @@ entities:
- type: Transform
pos: 16.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24376
@@ -113167,14 +115764,9 @@ entities:
- type: Transform
pos: 19.5,12.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 24400
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,14.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24419
@@ -113193,12 +115785,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24463
+ - uid: 24444
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 22.5,3.5
+ pos: 28.5,-10.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,5.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24493
@@ -113223,55 +115829,75 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24583
+ - uid: 24572
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-17.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-19.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24584
+ - uid: 24583
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 24.5,-17.5
+ pos: 33.5,-17.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24585
+ - uid: 24588
components:
- type: Transform
- pos: 29.5,-13.5
+ pos: 29.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24588
+ - uid: 24603
components:
- type: Transform
- pos: 29.5,-24.5
+ pos: 19.5,-33.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25915
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24599
+ - uid: 24634
components:
- type: Transform
- pos: 19.5,-20.5
+ rot: 3.141592653589793 rad
+ pos: 35.5,-47.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24632
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24643
+ - uid: 24638
components:
- type: Transform
- pos: 42.5,-20.5
+ pos: 47.5,-7.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22655
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24645
+ - uid: 24644
components:
- type: Transform
- pos: 39.5,-18.5
+ rot: -1.5707963267948966 rad
+ pos: 20.5,-17.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22661
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 24671
@@ -113289,14 +115915,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24705
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-28.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24706
components:
- type: Transform
@@ -113305,14 +115923,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24707
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 24745
components:
- type: Transform
@@ -113329,43 +115939,52 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24775
+ - uid: 24776
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 35.5,-40.5
+ pos: 40.5,-41.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24776
+ - uid: 24783
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 40.5,-41.5
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22665
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24811
+ - uid: 24787
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 44.5,-46.5
+ pos: 27.5,-29.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24812
+ - uid: 24790
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-46.5
+ rot: 3.141592653589793 rad
+ pos: 36.5,-42.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24812
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24813
+ - uid: 24811
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-49.5
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-46.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -113415,25 +116034,28 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24914
+ - uid: 24893
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 45.5,-8.5
+ pos: 39.5,-17.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24920
+ - uid: 24905
components:
- type: Transform
- pos: 47.5,-13.5
+ rot: 3.141592653589793 rad
+ pos: 30.5,-5.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 24921
+ - uid: 24920
components:
- type: Transform
- pos: 67.5,-13.5
+ pos: 47.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -113481,6 +116103,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,-26.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25132
@@ -113513,14 +116138,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 62.5,-35.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25165
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-35.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23899
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25168
@@ -113529,6 +116149,9 @@ entities:
rot: -1.5707963267948966 rad
pos: 66.5,-33.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4328
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25170
@@ -113537,37 +116160,9 @@ entities:
rot: -1.5707963267948966 rad
pos: 66.5,-25.5
parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-51.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-40.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25242
- components:
- - type: Transform
- pos: 56.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25260
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 74.5,-44.5
- parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4328
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25276
@@ -113610,26 +116205,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25315
- components:
- - type: Transform
- pos: -59.5,1.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 25316
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -59.5,-5.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25325
components:
- type: Transform
pos: -60.5,4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19773
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25336
@@ -113646,6 +116229,9 @@ entities:
rot: 3.141592653589793 rad
pos: -46.5,-11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19344
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25367
@@ -113654,6 +116240,9 @@ entities:
rot: 1.5707963267948966 rad
pos: -43.5,-5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19344
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 25376
@@ -113747,14 +116336,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 25486
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -4.5,15.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 25488
components:
- type: Transform
@@ -113909,12 +116490,36 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26692
+ - uid: 25859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,-44.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26051
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -6.5,-75.5
+ pos: -26.5,-75.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26691
+ components:
+ - type: Transform
+ pos: 62.5,-6.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 26693
@@ -113933,71 +116538,278 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26949
+ - uid: 26959
+ components:
+ - type: Transform
+ pos: 1.5,-14.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3656
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26973
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 28.5,-109.5
+ pos: 52.5,-18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22706
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26950
+ - uid: 26987
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,-106.5
+ pos: 66.5,-46.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26951
+ - uid: 27197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,-40.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -20.5,-76.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,-35.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22721
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27531
+ components:
+ - type: Transform
+ pos: -14.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26707
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27879
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 27.5,-92.5
+ pos: 54.5,-36.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26958
+ - uid: 27933
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 24.5,-91.5
+ pos: 14.5,34.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24766
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26959
+ - uid: 27941
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 32.5,-91.5
+ rot: 1.5707963267948966 rad
+ pos: 44.5,-4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22655
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26960
+ - uid: 27945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-26.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27959
+ components:
+ - type: Transform
+ pos: 30.5,-28.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27966
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,-85.5
+ pos: 25.5,-1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 26961
+ - uid: 27992
components:
- type: Transform
- pos: 28.5,-79.5
+ pos: 21.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 27233
+ - uid: 28205
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-7.5
+ rot: 3.141592653589793 rad
+ pos: 7.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28223
+ components:
+ - type: Transform
+ pos: -12.5,-51.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -12.5,-55.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentScrubber
entities:
+ - uid: 279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -17.5,-74.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26704
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,-10.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -58.5,-0.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,-51.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22954
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 4547
components:
- type: Transform
@@ -114006,22 +116818,57 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 5383
+ - uid: 4557
components:
- type: Transform
- pos: 57.5,-7.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-22.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28154
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 5463
+ - uid: 4565
+ components:
+ - type: Transform
+ pos: -21.5,-11.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 5769
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5730
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -13.5,-69.5
+ pos: 65.5,-10.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 26707
+ - 22699
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5748
+ components:
+ - type: Transform
+ pos: 71.5,4.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22701
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,-5.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#990000FF'
- uid: 7284
@@ -114053,6 +116900,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8142
+ components:
+ - type: Transform
+ pos: 53.5,0.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 8953
components:
- type: Transform
@@ -114069,6 +116926,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 14117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-69.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17159
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 14226
components:
- type: Transform
@@ -114077,26 +116945,29 @@ entities:
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22970
+ - 19344
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 15347
+ - uid: 15346
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,-21.5
+ pos: 66.5,-38.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 16789
+ - uid: 16626
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -22.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-67.5
parent: 8364
- type: DeviceNetwork
deviceLists:
- - 22588
+ - 17159
- type: AtmosPipeColor
color: '#990000FF'
- uid: 16832
@@ -114106,6 +116977,17 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 16880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 17778
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 17122
components:
- type: Transform
@@ -114114,12 +116996,36 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 17187
+ - uid: 17208
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 0.5,-67.5
+ pos: -25.5,-70.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22588
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17571
+ components:
+ - type: Transform
+ pos: 5.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
- type: AtmosPipeColor
color: '#990000FF'
- uid: 17630
@@ -114129,11 +117035,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 19123
+ - uid: 20066
components:
- type: Transform
- pos: 28.5,-32.5
+ pos: 27.5,10.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
color: '#990000FF'
- uid: 20132
@@ -114144,6 +117053,61 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 20289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,-31.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4328
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-23.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4328
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,16.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25517
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-73.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23133
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 22459
components:
- type: Transform
@@ -114151,12 +117115,24 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 22695
+ - uid: 22690
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-12.5
+ pos: -58.5,-3.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25825
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22747
+ components:
+ - type: Transform
+ pos: 25.5,18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8249
- type: AtmosPipeColor
color: '#990000FF'
- uid: 22778
@@ -114189,59 +117165,83 @@ entities:
pos: 11.5,-47.5
parent: 8364
- type: AtmosPipeColor
- color: '#FF1212FF'
- - uid: 23010
+ color: '#990000FF'
+ - uid: 23071
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 8.5,-52.5
+ pos: -5.5,-30.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22589
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23067
+ - uid: 23086
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -1.5,-57.5
+ pos: 31.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23086
+ - uid: 23087
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -7.5,-57.5
+ pos: 38.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23087
+ - uid: 23088
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -11.5,-56.5
+ pos: -5.5,-51.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23088
+ - uid: 23089
components:
- type: Transform
- pos: -5.5,-51.5
+ rot: 3.141592653589793 rad
+ pos: 69.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22689
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23120
+ - uid: 23122
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 8.5,-65.5
+ pos: 78.5,-6.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22694
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23177
+ - uid: 23123
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-74.5
+ pos: 77.5,-2.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-35.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -114269,19 +117269,47 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23941
+ - uid: 23316
+ components:
+ - type: Transform
+ pos: 78.5,-37.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-53.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 18773
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23856
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-27.5
+ pos: 11.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22612
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 23948
+ - uid: 23906
components:
- type: Transform
- pos: 1.5,-30.5
+ rot: 1.5707963267948966 rad
+ pos: 1.5,-74.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26703
- type: AtmosPipeColor
color: '#990000FF'
- uid: 23950
@@ -114361,14 +117389,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24083
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -21.5,-12.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24084
components:
- type: Transform
@@ -114385,14 +117405,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24097
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 4.5,-35.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24099
components:
- type: Transform
@@ -114433,14 +117445,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24188
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-11.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24219
components:
- type: Transform
@@ -114449,14 +117453,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24224
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24239
components:
- type: Transform
@@ -114481,19 +117477,15 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24245
- components:
- - type: Transform
- pos: 76.5,-2.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24295
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 6.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24296
@@ -114502,6 +117494,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24297
@@ -114510,6 +117505,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,8.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24298
@@ -114518,6 +117516,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 6.5,5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24300
@@ -114565,6 +117566,9 @@ entities:
- type: Transform
pos: 13.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24372
@@ -114572,6 +117576,9 @@ entities:
- type: Transform
pos: 17.5,14.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 6646
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24373
@@ -114588,6 +117595,9 @@ entities:
rot: 3.141592653589793 rad
pos: 19.5,9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24401
@@ -114596,6 +117606,9 @@ entities:
rot: -1.5707963267948966 rad
pos: 29.5,9.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 8150
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24421
@@ -114614,26 +117627,25 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24436
+ - uid: 24441
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-7.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24464
- components:
- - type: Transform
- pos: 20.5,3.5
+ pos: 18.5,-1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24494
+ - uid: 24462
components:
- type: Transform
- pos: 29.5,-1.5
+ pos: 21.5,3.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22641
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24506
@@ -114651,6 +117663,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 24524
+ components:
+ - type: Transform
+ pos: 38.5,-17.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 24581
components:
- type: Transform
@@ -114667,41 +117689,43 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24586
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 31.5,-13.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 24587
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 31.5,-24.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24610
+ - uid: 24599
components:
- type: Transform
- pos: 20.5,-20.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-33.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25915
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24644
+ - uid: 24610
components:
- type: Transform
- pos: 41.5,-20.5
+ pos: 20.5,-20.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24646
+ - uid: 24635
components:
- type: Transform
- pos: 38.5,-18.5
+ pos: 36.5,-47.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24632
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24673
@@ -114728,20 +117752,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24711
+ - uid: 24712
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-28.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 291
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24712
+ - uid: 24729
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,-28.5
+ pos: 41.5,-23.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27965
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24747
@@ -114768,28 +117798,26 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24778
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 24814
+ - uid: 24785
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-48.5
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-18.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3087
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24815
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 36.5,-45.5
+ rot: 3.141592653589793 rad
+ pos: 28.5,-35.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3263
- type: AtmosPipeColor
color: '#990000FF'
- uid: 24816
@@ -114847,34 +117875,48 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24916
+ - uid: 24895
components:
- type: Transform
- pos: 47.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 30.5,-7.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24917
+ - uid: 24896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-39.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 24812
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24898
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 45.5,-5.5
+ pos: 30.5,1.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22649
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24918
+ - uid: 24916
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 46.5,-13.5
+ pos: 47.5,-0.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 24919
+ - uid: 24918
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 65.5,-13.5
+ pos: 46.5,-13.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -114902,18 +117944,22 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25071
+ - uid: 25054
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 77.5,-23.5
+ rot: 3.141592653589793 rad
+ pos: 79.5,-46.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 835
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25072
+ - uid: 25071
components:
- type: Transform
- pos: 70.5,-21.5
+ rot: -1.5707963267948966 rad
+ pos: 77.5,-23.5
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
@@ -114946,6 +117992,9 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,-27.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27881
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25143
@@ -114962,61 +118011,20 @@ entities:
rot: 1.5707963267948966 rad
pos: 62.5,-34.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23899
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25167
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-34.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25169
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-32.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25171
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-23.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25207
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 69.5,-50.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25223
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 67.5,-41.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25241
- components:
- - type: Transform
- pos: 58.5,-39.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25261
+ - uid: 25231
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 74.5,-45.5
+ pos: 5.5,-73.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26908
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25290
@@ -115051,29 +118059,14 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25317
- components:
- - type: Transform
- pos: -58.5,-4.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - uid: 25318
- components:
- - type: MetaData
- name: air scrubber
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -58.5,0.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- - type: Label
- uid: 25324
components:
- type: Transform
pos: -57.5,4.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19773
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25337
@@ -115090,6 +118083,9 @@ entities:
rot: -1.5707963267948966 rad
pos: -40.5,-5.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19344
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25365
@@ -115098,6 +118094,9 @@ entities:
rot: 3.141592653589793 rad
pos: -45.5,-11.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 19344
- type: AtmosPipeColor
color: '#990000FF'
- uid: 25377
@@ -115170,14 +118169,6 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 25479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,15.5
- parent: 8364
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 25480
components:
- type: Transform
@@ -115209,6 +118200,16 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 25506
+ components:
+ - type: Transform
+ pos: 73.5,-33.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22721
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 25516
components:
- type: Transform
@@ -115367,59 +118368,239 @@ entities:
parent: 8364
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26695
+ - uid: 25986
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -2.5,-73.5
+ pos: 61.5,-6.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22703
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26696
+ - uid: 26032
components:
- type: Transform
- pos: -6.5,-72.5
+ rot: 3.141592653589793 rad
+ pos: -12.5,-69.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 26707
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 26697
+ - uid: 26034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -19.5,-76.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26674
+ components:
+ - type: Transform
+ pos: -2.5,-14.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 3656
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,20.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 23938
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,-44.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 4329
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27198
+ components:
+ - type: Transform
+ pos: 54.5,-40.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,-30.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22715
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27274
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -9.5,-73.5
+ pos: -22.5,-75.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 25225
- type: AtmosPipeColor
color: '#990000FF'
-- proto: GasVolumePump
- entities:
- - uid: 4577
+ - uid: 27875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,-34.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27150
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,-18.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22706
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,-7.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22655
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27939
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,-4.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22655
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-26.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 27964
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27960
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 26.5,-74.5
+ pos: 32.5,-28.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22670
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 19073
+ color: '#990000FF'
+ - uid: 27991
components:
- type: Transform
- pos: 16.5,-73.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-13.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 22659
- type: AtmosPipeColor
- color: '#03FCD3FF'
- - uid: 19953
+ color: '#990000FF'
+ - uid: 28222
+ components:
+ - type: Transform
+ pos: -6.5,-55.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28230
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-73.5
+ pos: -14.5,-55.5
+ parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28231
+ components:
+ - type: Transform
+ pos: -14.5,-51.5
parent: 8364
+ - type: DeviceNetwork
+ deviceLists:
+ - 28227
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 20006
+- proto: GasVolumePump
+ entities:
+ - uid: 4204
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 15.5,-81.5
+ pos: 17.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-79.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 16964
+ components:
+ - type: Transform
+ pos: 19.5,-74.5
+ parent: 8364
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 23158
+ components:
+ - type: Transform
+ pos: 14.5,-72.5
parent: 8364
- type: AtmosPipeColor
color: '#947507FF'
@@ -115484,13 +118665,11 @@ entities:
parent: 8364
- proto: GravityGenerator
entities:
- - uid: 17040
+ - uid: 25226
components:
- type: Transform
- pos: -0.5,-20.5
+ pos: -24.5,-75.5
parent: 8364
- - type: PointLight
- radius: 175.75
- proto: Grille
entities:
- uid: 95
@@ -116067,11 +119246,6 @@ entities:
- type: Transform
pos: 65.5,24.5
parent: 8364
- - uid: 984
- components:
- - type: Transform
- pos: -3.5,-25.5
- parent: 8364
- uid: 996
components:
- type: Transform
@@ -116509,6 +119683,12 @@ entities:
- type: Transform
pos: 8.5,-44.5
parent: 8364
+ - uid: 1676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-82.5
+ parent: 8364
- uid: 1679
components:
- type: Transform
@@ -117441,11 +120621,6 @@ entities:
- type: Transform
pos: 63.5,-63.5
parent: 8364
- - uid: 3152
- components:
- - type: Transform
- pos: 62.5,-70.5
- parent: 8364
- uid: 3153
components:
- type: Transform
@@ -117846,36 +121021,6 @@ entities:
- type: Transform
pos: -30.5,-75.5
parent: 8364
- - uid: 3653
- components:
- - type: Transform
- pos: -27.5,-74.5
- parent: 8364
- - uid: 3654
- components:
- - type: Transform
- pos: -26.5,-74.5
- parent: 8364
- - uid: 3655
- components:
- - type: Transform
- pos: -25.5,-74.5
- parent: 8364
- - uid: 3656
- components:
- - type: Transform
- pos: -24.5,-74.5
- parent: 8364
- - uid: 3657
- components:
- - type: Transform
- pos: -23.5,-74.5
- parent: 8364
- - uid: 3695
- components:
- - type: Transform
- pos: 27.5,-71.5
- parent: 8364
- uid: 3697
components:
- type: Transform
@@ -117906,11 +121051,6 @@ entities:
- type: Transform
pos: 25.5,-62.5
parent: 8364
- - uid: 3834
- components:
- - type: Transform
- pos: 27.5,-69.5
- parent: 8364
- uid: 3845
components:
- type: Transform
@@ -118082,6 +121222,12 @@ entities:
- type: Transform
pos: -15.5,-71.5
parent: 8364
+ - uid: 4045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-82.5
+ parent: 8364
- uid: 4064
components:
- type: Transform
@@ -118217,195 +121363,207 @@ entities:
- type: Transform
pos: 9.5,-64.5
parent: 8364
- - uid: 4201
- components:
- - type: Transform
- pos: 30.5,-81.5
- parent: 8364
- - uid: 4202
- components:
- - type: Transform
- pos: 30.5,-80.5
- parent: 8364
- - uid: 4204
- components:
- - type: Transform
- pos: 30.5,-78.5
- parent: 8364
- - uid: 4205
- components:
- - type: Transform
- pos: 30.5,-77.5
- parent: 8364
- - uid: 4206
+ - uid: 4135
components:
- type: Transform
- pos: 29.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,-82.5
parent: 8364
- - uid: 4207
+ - uid: 4234
components:
- type: Transform
- pos: 28.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-82.5
parent: 8364
- - uid: 4208
+ - uid: 4235
components:
- type: Transform
- pos: 27.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-94.5
parent: 8364
- - uid: 4209
+ - uid: 4236
components:
- type: Transform
- pos: 26.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-93.5
parent: 8364
- - uid: 4210
+ - uid: 4237
components:
- type: Transform
- pos: 26.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: 36.5,-92.5
parent: 8364
- - uid: 4211
+ - uid: 4238
components:
- type: Transform
- pos: 26.5,-79.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-92.5
parent: 8364
- - uid: 4215
+ - uid: 4239
components:
- type: Transform
- pos: 26.5,-81.5
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-92.5
parent: 8364
- - uid: 4418
+ - uid: 4240
components:
- type: Transform
- pos: 29.5,-95.5
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-92.5
parent: 8364
- - uid: 4419
+ - uid: 4241
components:
- type: Transform
- pos: 29.5,-96.5
+ rot: 3.141592653589793 rad
+ pos: 23.5,-82.5
parent: 8364
- - uid: 4420
+ - uid: 4247
components:
- type: Transform
- pos: 29.5,-97.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-92.5
parent: 8364
- - uid: 4421
+ - uid: 4263
components:
- type: Transform
- pos: 29.5,-98.5
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-92.5
parent: 8364
- - uid: 4422
+ - uid: 4266
components:
- type: Transform
- pos: 29.5,-99.5
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-92.5
parent: 8364
- - uid: 4423
+ - uid: 4267
components:
- type: Transform
- pos: 29.5,-100.5
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-92.5
parent: 8364
- - uid: 4424
+ - uid: 4268
components:
- type: Transform
- pos: 29.5,-101.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-92.5
parent: 8364
- - uid: 4425
+ - uid: 4270
components:
- type: Transform
- pos: 29.5,-102.5
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-92.5
parent: 8364
- - uid: 4426
+ - uid: 4356
components:
- type: Transform
- pos: 29.5,-103.5
+ rot: 3.141592653589793 rad
+ pos: 15.5,-82.5
parent: 8364
- - uid: 4430
+ - uid: 4379
components:
- type: Transform
- pos: 33.5,-107.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-86.5
parent: 8364
- - uid: 4431
+ - uid: 4380
components:
- type: Transform
- pos: 33.5,-108.5
+ pos: 27.5,-79.5
parent: 8364
- - uid: 4433
+ - uid: 4394
components:
- type: Transform
- pos: 27.5,-103.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-92.5
parent: 8364
- - uid: 4434
+ - uid: 4395
components:
- type: Transform
- pos: 27.5,-102.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-92.5
parent: 8364
- - uid: 4435
+ - uid: 4396
components:
- type: Transform
- pos: 27.5,-101.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-92.5
parent: 8364
- - uid: 4436
+ - uid: 4397
components:
- type: Transform
- pos: 27.5,-100.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-92.5
parent: 8364
- - uid: 4437
+ - uid: 4398
components:
- type: Transform
- pos: 27.5,-99.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-93.5
parent: 8364
- - uid: 4438
+ - uid: 4399
components:
- type: Transform
- pos: 27.5,-98.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-92.5
parent: 8364
- - uid: 4439
+ - uid: 4400
components:
- type: Transform
- pos: 27.5,-97.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-92.5
parent: 8364
- - uid: 4440
+ - uid: 4405
components:
- type: Transform
- pos: 27.5,-96.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-85.5
parent: 8364
- - uid: 4441
+ - uid: 4407
components:
- type: Transform
- pos: 27.5,-95.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-85.5
parent: 8364
- - uid: 4442
+ - uid: 4410
components:
- type: Transform
- pos: 23.5,-108.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-84.5
parent: 8364
- - uid: 4443
+ - uid: 4425
components:
- type: Transform
- pos: 23.5,-107.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-92.5
parent: 8364
- - uid: 4444
+ - uid: 4456
components:
- type: Transform
- pos: 30.5,-107.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-84.5
parent: 8364
- - uid: 4445
+ - uid: 4475
components:
- type: Transform
- pos: 29.5,-107.5
+ pos: 27.5,-81.5
parent: 8364
- - uid: 4446
+ - uid: 4497
components:
- type: Transform
- pos: 27.5,-107.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-74.5
parent: 8364
- - uid: 4447
+ - uid: 4500
components:
- type: Transform
- pos: 26.5,-107.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-69.5
parent: 8364
- - uid: 4497
+ - uid: 4503
components:
- type: Transform
- pos: 26.5,-80.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-73.5
parent: 8364
- uid: 4511
components:
@@ -118562,11 +121720,6 @@ entities:
- type: Transform
pos: -21.5,-89.5
parent: 8364
- - uid: 4615
- components:
- - type: Transform
- pos: -21.5,-88.5
- parent: 8364
- uid: 4616
components:
- type: Transform
@@ -118577,91 +121730,6 @@ entities:
- type: Transform
pos: -22.5,-87.5
parent: 8364
- - uid: 4629
- components:
- - type: Transform
- pos: -19.5,-77.5
- parent: 8364
- - uid: 4630
- components:
- - type: Transform
- pos: -19.5,-78.5
- parent: 8364
- - uid: 4631
- components:
- - type: Transform
- pos: -19.5,-79.5
- parent: 8364
- - uid: 4632
- components:
- - type: Transform
- pos: -19.5,-80.5
- parent: 8364
- - uid: 4633
- components:
- - type: Transform
- pos: -19.5,-81.5
- parent: 8364
- - uid: 4634
- components:
- - type: Transform
- pos: -19.5,-82.5
- parent: 8364
- - uid: 4635
- components:
- - type: Transform
- pos: -19.5,-83.5
- parent: 8364
- - uid: 4636
- components:
- - type: Transform
- pos: -19.5,-84.5
- parent: 8364
- - uid: 4637
- components:
- - type: Transform
- pos: -20.5,-84.5
- parent: 8364
- - uid: 4638
- components:
- - type: Transform
- pos: -21.5,-84.5
- parent: 8364
- - uid: 4639
- components:
- - type: Transform
- pos: -21.5,-83.5
- parent: 8364
- - uid: 4640
- components:
- - type: Transform
- pos: -21.5,-82.5
- parent: 8364
- - uid: 4641
- components:
- - type: Transform
- pos: -21.5,-81.5
- parent: 8364
- - uid: 4642
- components:
- - type: Transform
- pos: -21.5,-80.5
- parent: 8364
- - uid: 4643
- components:
- - type: Transform
- pos: -21.5,-79.5
- parent: 8364
- - uid: 4644
- components:
- - type: Transform
- pos: -21.5,-78.5
- parent: 8364
- - uid: 4645
- components:
- - type: Transform
- pos: -21.5,-77.5
- parent: 8364
- uid: 4685
components:
- type: Transform
@@ -119212,11 +122280,6 @@ entities:
- type: Transform
pos: 1.5,42.5
parent: 8364
- - uid: 4949
- components:
- - type: Transform
- pos: 0.5,42.5
- parent: 8364
- uid: 4950
components:
- type: Transform
@@ -119242,6 +122305,12 @@ entities:
- type: Transform
pos: 20.5,34.5
parent: 8364
+ - uid: 4961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -26.5,-83.5
+ parent: 8364
- uid: 5000
components:
- type: Transform
@@ -119755,7 +122824,8 @@ entities:
- uid: 5271
components:
- type: Transform
- pos: -4.5,-17.5
+ rot: 3.141592653589793 rad
+ pos: 16.5,-82.5
parent: 8364
- uid: 5275
components:
@@ -119807,11 +122877,6 @@ entities:
- type: Transform
pos: 2.5,-20.5
parent: 8364
- - uid: 5769
- components:
- - type: Transform
- pos: 3.5,-17.5
- parent: 8364
- uid: 5778
components:
- type: Transform
@@ -119822,16 +122887,6 @@ entities:
- type: Transform
pos: -0.5,-79.5
parent: 8364
- - uid: 5882
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 8364
- - uid: 5883
- components:
- - type: Transform
- pos: 0.5,-23.5
- parent: 8364
- uid: 5913
components:
- type: Transform
@@ -119857,11 +122912,6 @@ entities:
- type: Transform
pos: 2.5,-93.5
parent: 8364
- - uid: 6767
- components:
- - type: Transform
- pos: -5.5,-93.5
- parent: 8364
- uid: 6771
components:
- type: Transform
@@ -120538,20 +123588,27 @@ entities:
- type: Transform
pos: 17.5,-6.5
parent: 8364
- - uid: 8078
+ - uid: 8107
components:
- type: Transform
- pos: -5.5,-18.5
+ pos: -14.5,-15.5
parent: 8364
- - uid: 8079
+ - uid: 8117
components:
- type: Transform
- pos: -5.5,-19.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-68.5
parent: 8364
- - uid: 8107
+ - uid: 8121
components:
- type: Transform
- pos: -14.5,-15.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-72.5
+ parent: 8364
+ - uid: 8144
+ components:
+ - type: Transform
+ pos: 25.5,-68.5
parent: 8364
- uid: 8276
components:
@@ -120980,6 +124037,12 @@ entities:
- type: Transform
pos: 67.5,3.5
parent: 8364
+ - uid: 10854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-94.5
+ parent: 8364
- uid: 10867
components:
- type: Transform
@@ -121000,11 +124063,6 @@ entities:
- type: Transform
pos: 25.5,-69.5
parent: 8364
- - uid: 11574
- components:
- - type: Transform
- pos: 25.5,-68.5
- parent: 8364
- uid: 11591
components:
- type: Transform
@@ -121160,20 +124218,15 @@ entities:
- type: Transform
pos: -2.5,-65.5
parent: 8364
- - uid: 15343
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 8364
- - uid: 15346
+ - uid: 15431
components:
- type: Transform
- pos: -2.5,-23.5
+ pos: -29.5,-26.5
parent: 8364
- - uid: 15431
+ - uid: 15876
components:
- type: Transform
- pos: -29.5,-26.5
+ pos: 27.5,-80.5
parent: 8364
- uid: 16131
components:
@@ -121196,6 +124249,11 @@ entities:
- type: Transform
pos: 7.5,-58.5
parent: 8364
+ - uid: 16630
+ components:
+ - type: Transform
+ pos: -22.5,-83.5
+ parent: 8364
- uid: 16659
components:
- type: Transform
@@ -121346,46 +124404,26 @@ entities:
- type: Transform
pos: -13.5,-77.5
parent: 8364
- - uid: 17172
+ - uid: 17175
components:
- type: Transform
- pos: 27.5,-74.5
+ pos: -19.5,-85.5
parent: 8364
- - uid: 17174
- components:
- - type: Transform
- pos: 26.5,-75.5
- parent: 8364
- - uid: 17175
+ - uid: 17176
components:
- type: Transform
- pos: 25.5,-75.5
+ pos: -20.5,-85.5
parent: 8364
- uid: 17178
components:
- type: Transform
- pos: 27.5,-68.5
+ pos: -22.5,-82.5
parent: 8364
- uid: 17179
components:
- type: Transform
pos: 27.5,-67.5
parent: 8364
- - uid: 17180
- components:
- - type: Transform
- pos: 24.5,-75.5
- parent: 8364
- - uid: 17181
- components:
- - type: Transform
- pos: 23.5,-75.5
- parent: 8364
- - uid: 17182
- components:
- - type: Transform
- pos: 21.5,-75.5
- parent: 8364
- uid: 17191
components:
- type: Transform
@@ -121441,26 +124479,11 @@ entities:
- type: Transform
pos: 12.5,-63.5
parent: 8364
- - uid: 17468
- components:
- - type: Transform
- pos: 27.5,-73.5
- parent: 8364
- uid: 17469
components:
- type: Transform
pos: 27.5,-66.5
parent: 8364
- - uid: 17591
- components:
- - type: Transform
- pos: 27.5,-72.5
- parent: 8364
- - uid: 17592
- components:
- - type: Transform
- pos: 22.5,-75.5
- parent: 8364
- uid: 17629
components:
- type: Transform
@@ -122028,6 +125051,12 @@ entities:
- type: Transform
pos: 42.5,-1.5
parent: 8364
+ - uid: 22714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-71.5
+ parent: 8364
- uid: 22832
components:
- type: Transform
@@ -122148,6 +125177,11 @@ entities:
- type: Transform
pos: 10.5,-52.5
parent: 8364
+ - uid: 23007
+ components:
+ - type: Transform
+ pos: -22.5,-81.5
+ parent: 8364
- uid: 23051
components:
- type: Transform
@@ -122194,6 +125228,109 @@ entities:
- type: Transform
pos: 17.5,-51.5
parent: 8364
+ - uid: 24005
+ components:
+ - type: Transform
+ pos: -21.5,-75.5
+ parent: 8364
+ - uid: 24078
+ components:
+ - type: Transform
+ pos: -21.5,-74.5
+ parent: 8364
+ - uid: 24185
+ components:
+ - type: Transform
+ pos: -21.5,-77.5
+ parent: 8364
+ - uid: 24186
+ components:
+ - type: Transform
+ pos: -21.5,-73.5
+ parent: 8364
+ - uid: 24224
+ components:
+ - type: Transform
+ pos: 38.5,-86.5
+ parent: 8364
+ - uid: 24245
+ components:
+ - type: Transform
+ pos: 39.5,-86.5
+ parent: 8364
+ - uid: 24387
+ components:
+ - type: Transform
+ pos: -21.5,-88.5
+ parent: 8364
+ - uid: 24393
+ components:
+ - type: Transform
+ pos: -11.5,-83.5
+ parent: 8364
+ - uid: 24397
+ components:
+ - type: Transform
+ pos: -15.5,-81.5
+ parent: 8364
+ - uid: 24400
+ components:
+ - type: Transform
+ pos: -16.5,-81.5
+ parent: 8364
+ - uid: 24902
+ components:
+ - type: Transform
+ pos: 62.5,-71.5
+ parent: 8364
+ - uid: 24921
+ components:
+ - type: Transform
+ pos: -12.5,-81.5
+ parent: 8364
+ - uid: 24922
+ components:
+ - type: Transform
+ pos: -11.5,-81.5
+ parent: 8364
+ - uid: 24924
+ components:
+ - type: Transform
+ pos: -16.5,-83.5
+ parent: 8364
+ - uid: 24929
+ components:
+ - type: Transform
+ pos: 0.5,44.5
+ parent: 8364
+ - uid: 24944
+ components:
+ - type: Transform
+ pos: -5.5,-93.5
+ parent: 8364
+ - uid: 24976
+ components:
+ - type: Transform
+ pos: 0.5,42.5
+ parent: 8364
+ - uid: 25230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-94.5
+ parent: 8364
+ - uid: 25245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-94.5
+ parent: 8364
+ - uid: 25249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-94.5
+ parent: 8364
- uid: 25699
components:
- type: Transform
@@ -122239,11 +125376,6 @@ entities:
- type: Transform
pos: 8.5,29.5
parent: 8364
- - uid: 25897
- components:
- - type: Transform
- pos: 2.5,-25.5
- parent: 8364
- uid: 25903
components:
- type: Transform
@@ -122289,6 +125421,21 @@ entities:
- type: Transform
pos: 12.5,-28.5
parent: 8364
+ - uid: 26384
+ components:
+ - type: Transform
+ pos: 37.5,-87.5
+ parent: 8364
+ - uid: 26386
+ components:
+ - type: Transform
+ pos: 38.5,-87.5
+ parent: 8364
+ - uid: 26387
+ components:
+ - type: Transform
+ pos: 39.5,-85.5
+ parent: 8364
- uid: 26472
components:
- type: Transform
@@ -122624,20 +125771,80 @@ entities:
- type: Transform
pos: 5.5,-93.5
parent: 8364
- - uid: 26760
+ - uid: 26880
components:
- type: Transform
- pos: -10.5,-83.5
+ pos: 70.5,-0.5
parent: 8364
- - uid: 26880
+ - uid: 26950
components:
- type: Transform
- pos: 70.5,-0.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-94.5
parent: 8364
- - uid: 27274
+ - uid: 26988
components:
- type: Transform
- pos: 0.5,44.5
+ pos: -15.5,-83.5
+ parent: 8364
+ - uid: 27179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-94.5
+ parent: 8364
+ - uid: 27184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-94.5
+ parent: 8364
+ - uid: 27185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-94.5
+ parent: 8364
+ - uid: 27186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-94.5
+ parent: 8364
+ - uid: 27187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-94.5
+ parent: 8364
+ - uid: 27192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-94.5
+ parent: 8364
+ - uid: 27193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-94.5
+ parent: 8364
+ - uid: 27194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-94.5
+ parent: 8364
+ - uid: 27195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-94.5
+ parent: 8364
+ - uid: 27206
+ components:
+ - type: Transform
+ pos: -21.5,-82.5
parent: 8364
- uid: 27275
components:
@@ -122649,6 +125856,11 @@ entities:
- type: Transform
pos: 2.5,44.5
parent: 8364
+ - uid: 27532
+ components:
+ - type: Transform
+ pos: -19.5,-84.5
+ parent: 8364
- uid: 27611
components:
- type: Transform
@@ -122664,35 +125876,56 @@ entities:
- type: Transform
pos: 86.5,-2.5
parent: 8364
- - uid: 27855
+ - uid: 27763
components:
- type: Transform
- pos: 33.5,-80.5
+ rot: 3.141592653589793 rad
+ pos: 21.5,-82.5
+ parent: 8364
+ - uid: 27791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,-82.5
+ parent: 8364
+ - uid: 27792
+ components:
+ - type: Transform
+ pos: -12.5,-83.5
+ parent: 8364
+ - uid: 27793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -15.5,-82.5
parent: 8364
- uid: 27856
components:
- type: Transform
- pos: 32.5,-80.5
+ pos: 27.5,-78.5
parent: 8364
- - uid: 27857
+ - uid: 27926
components:
- type: Transform
- pos: 31.5,-80.5
+ pos: 60.5,-69.5
parent: 8364
- - uid: 27858
+ - uid: 27990
components:
- type: Transform
- pos: 31.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-94.5
parent: 8364
- - uid: 27859
+ - uid: 28143
components:
- type: Transform
- pos: 32.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-24.5
parent: 8364
- - uid: 27860
+ - uid: 28147
components:
- type: Transform
- pos: 33.5,-78.5
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-24.5
parent: 8364
- proto: GrilleBroken
entities:
@@ -122821,6 +126054,24 @@ entities:
- type: Transform
pos: 9.5,-89.5
parent: 8364
+ - uid: 24388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -14.5,-83.5
+ parent: 8364
+ - uid: 24585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-85.5
+ parent: 8364
+ - uid: 24919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-82.5
+ parent: 8364
- uid: 26534
components:
- type: Transform
@@ -122896,6 +126147,18 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,44.5
parent: 8364
+ - uid: 27764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,-81.5
+ parent: 8364
+ - uid: 27812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -13.5,-83.5
+ parent: 8364
- proto: GunSafeDisabler
entities:
- uid: 6253
@@ -122936,11 +126199,12 @@ entities:
- type: Transform
pos: 2.5,37.5
parent: 8364
-- proto: Gyroscope
+- proto: GyroscopeUnanchored
entities:
- - uid: 12460
+ - uid: 25012
components:
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -65.5,15.5
parent: 8364
- proto: Handcuffs
@@ -122975,13 +126239,6 @@ entities:
- type: Transform
pos: 3.5,23.5
parent: 8364
-- proto: HandheldHealthAnalyzer
- entities:
- - uid: 21715
- components:
- - type: Transform
- pos: 63.429848,12.47963
- parent: 8364
- proto: HandLabeler
entities:
- uid: 561
@@ -123053,63 +126310,46 @@ entities:
parent: 8364
- proto: HeatExchanger
entities:
- - uid: 4529
+ - uid: 4173
components:
- type: Transform
- pos: 35.5,-73.5
+ rot: -1.5707963267948966 rad
+ pos: 22.5,-85.5
parent: 8364
- type: AtmosPipeColor
color: '#03FCD3FF'
- - uid: 17607
+ - uid: 24960
components:
- type: Transform
- pos: 15.5,-84.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-75.5
parent: 8364
- type: AtmosPipeColor
- color: '#947507FF'
-- proto: Hemostat
- entities:
- - uid: 13776
+ color: '#03FCD3FF'
+ - uid: 26849
components:
- type: Transform
- pos: -52.5,7.5
+ rot: -1.5707963267948966 rad
+ pos: 14.5,-85.5
parent: 8364
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: Hemostat
+ entities:
- uid: 21263
components:
- type: Transform
rot: 0.000406441162340343 rad
pos: 52.576862,-22.263298
parent: 8364
-- proto: HighSecCaptainLocked
- entities:
- - uid: 5737
- components:
- - type: MetaData
- name: Captain Chunnel
- - type: Transform
- pos: -0.5,-17.5
- parent: 8364
- proto: HighSecCommandLocked
entities:
- - uid: 862
- components:
- - type: Transform
- pos: 28.5,-104.5
- parent: 8364
- - uid: 876
- components:
- - type: Transform
- pos: 30.5,-91.5
- parent: 8364
- - uid: 901
- components:
- - type: Transform
- pos: 26.5,-91.5
- parent: 8364
- - uid: 5335
+ - uid: 4287
components:
+ - type: MetaData
+ name: Gravity Generator
- type: Transform
- pos: -0.5,-9.5
+ pos: -21.5,-76.5
parent: 8364
- uid: 8140
components:
@@ -123123,10 +126363,12 @@ entities:
- type: Transform
pos: -11.5,-36.5
parent: 8364
- - uid: 18620
+ - uid: 26963
components:
+ - type: MetaData
+ name: AI Core
- type: Transform
- pos: -0.5,-23.5
+ pos: -0.5,-18.5
parent: 8364
- proto: HolofanProjector
entities:
@@ -123140,40 +126382,19 @@ entities:
- type: Transform
pos: 10.513089,-49.606483
parent: 8364
-- proto: HolopadAiBackupPower
- entities:
- - uid: 28123
- components:
- - type: Transform
- pos: 33.5,-91.5
- parent: 8364
- proto: HolopadAiCore
entities:
- - uid: 28124
- components:
- - type: Transform
- pos: 28.5,-108.5
- parent: 8364
-- proto: HolopadAiEntrance
- entities:
- - uid: 28122
- components:
- - type: Transform
- pos: 28.5,-80.5
- parent: 8364
-- proto: HolopadAiMain
- entities:
- - uid: 28099
+ - uid: 27840
components:
- type: Transform
- pos: 28.5,-85.5
+ pos: -0.5,-17.5
parent: 8364
- proto: HolopadAiUpload
entities:
- - uid: 19079
+ - uid: 27824
components:
- type: Transform
- pos: -0.5,-13.5
+ pos: -0.5,-22.5
parent: 8364
- proto: HolopadCargoBay
entities:
@@ -123294,13 +126515,6 @@ entities:
- type: Transform
pos: 16.5,-56.5
parent: 8364
-- proto: HolopadEngineeringAtmosTeg
- entities:
- - uid: 28090
- components:
- - type: Transform
- pos: 15.5,-73.5
- parent: 8364
- proto: HolopadEngineeringBreakroom
entities:
- uid: 28086
@@ -123322,10 +126536,10 @@ entities:
parent: 8364
- proto: HolopadEngineeringMain
entities:
- - uid: 28143
+ - uid: 27529
components:
- type: Transform
- pos: -2.5,-69.5
+ pos: -3.5,-69.5
parent: 8364
- proto: HolopadEngineeringPower
entities:
@@ -123395,7 +126609,7 @@ entities:
- uid: 28125
components:
- type: Transform
- pos: -42.5,3.5
+ pos: -41.5,3.5
parent: 8364
- proto: HolopadMedicalChemistry
entities:
@@ -123469,10 +126683,10 @@ entities:
parent: 8364
- proto: HolopadScienceFront
entities:
- - uid: 28112
+ - uid: 233
components:
- type: Transform
- pos: 72.5,-20.5
+ pos: 70.5,-19.5
parent: 8364
- proto: HolopadScienceRobotics
entities:
@@ -123574,10 +126788,10 @@ entities:
parent: 8364
- proto: HolopadServiceBar
entities:
- - uid: 28147
+ - uid: 24443
components:
- type: Transform
- pos: 30.5,-5.5
+ pos: 30.5,-6.5
parent: 8364
- proto: HolopadServiceBotany
entities:
@@ -123588,7 +126802,7 @@ entities:
parent: 8364
- proto: HolopadServiceChapel
entities:
- - uid: 28110
+ - uid: 3771
components:
- type: Transform
pos: 69.5,-5.5
@@ -123628,6 +126842,13 @@ entities:
- type: Transform
pos: 59.5,-8.5
parent: 8364
+- proto: HolopadServiceNewsroom
+ entities:
+ - uid: 4572
+ components:
+ - type: Transform
+ pos: -24.5,-10.5
+ parent: 8364
- proto: HospitalCurtainsOpen
entities:
- uid: 2213
@@ -123932,12 +127153,6 @@ entities:
parent: 8364
- proto: IntercomAll
entities:
- - uid: 4955
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 1.5,-15.5
- parent: 8364
- uid: 5526
components:
- type: Transform
@@ -123950,6 +127165,23 @@ entities:
rot: 3.141592653589793 rad
pos: 6.5,-19.5
parent: 8364
+ - uid: 27818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-14.5
+ parent: 8364
+ - uid: 27833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 8364
+ - uid: 27836
+ components:
+ - type: Transform
+ pos: -0.5,-13.5
+ parent: 8364
- proto: IntercomCommand
entities:
- uid: 8390
@@ -124176,11 +127408,6 @@ entities:
parent: 8364
- proto: KitchenMicrowave
entities:
- - uid: 594
- components:
- - type: Transform
- pos: 26.5,-86.5
- parent: 8364
- uid: 2585
components:
- type: Transform
@@ -124613,7 +127840,7 @@ entities:
- uid: 21214
components:
- type: Transform
- pos: 60.5,-17.5
+ pos: 60.50045,-17.347412
parent: 8364
- proto: Lighter
entities:
@@ -124627,7 +127854,7 @@ entities:
- uid: 14425
components:
- type: Transform
- pos: -28.5,-5.5
+ pos: -28.5095,-5.350807
parent: 8364
- proto: LockableButtonChiefMedicalOfficer
entities:
@@ -125993,6 +129220,28 @@ entities:
- 0
- 0
- 0
+- proto: LootSpawnerIndustrial
+ entities:
+ - uid: 7041
+ components:
+ - type: Transform
+ pos: 40.5,-72.5
+ parent: 8364
+ - uid: 11157
+ components:
+ - type: Transform
+ pos: 48.5,7.5
+ parent: 8364
+ - uid: 24978
+ components:
+ - type: Transform
+ pos: -4.5,-45.5
+ parent: 8364
+ - uid: 27030
+ components:
+ - type: Transform
+ pos: 48.5,11.5
+ parent: 8364
- proto: LootSpawnerIndustrialFluff
entities:
- uid: 1255
@@ -126000,6 +129249,165 @@ entities:
- type: Transform
pos: -41.5,-12.5
parent: 8364
+ - uid: 6925
+ components:
+ - type: Transform
+ pos: -3.5,-53.5
+ parent: 8364
+ - uid: 11750
+ components:
+ - type: Transform
+ pos: -3.5,-45.5
+ parent: 8364
+ - uid: 25981
+ components:
+ - type: Transform
+ pos: -57.5,3.5
+ parent: 8364
+ - uid: 26920
+ components:
+ - type: Transform
+ pos: -23.5,-77.5
+ parent: 8364
+- proto: LootSpawnerMaterialsHighValue
+ entities:
+ - uid: 26927
+ components:
+ - type: Transform
+ pos: 43.5,-62.5
+ parent: 8364
+- proto: LootSpawnerMaterialsSurplus
+ entities:
+ - uid: 8598
+ components:
+ - type: Transform
+ pos: -28.5,-52.5
+ parent: 8364
+- proto: LootSpawnerMedicalClassy
+ entities:
+ - uid: 6393
+ components:
+ - type: Transform
+ pos: -53.5,7.5
+ parent: 8364
+ - uid: 25013
+ components:
+ - type: Transform
+ pos: 63.5,12.5
+ parent: 8364
+- proto: LootSpawnerRoboticsBorgModule
+ entities:
+ - uid: 25179
+ components:
+ - type: Transform
+ pos: 63.5,-20.5
+ parent: 8364
+- proto: LootSpawnerScienceMajor
+ entities:
+ - uid: 6246
+ components:
+ - type: Transform
+ pos: 58.5,-49.5
+ parent: 8364
+ - uid: 6311
+ components:
+ - type: Transform
+ pos: 74.5,-30.5
+ parent: 8364
+ - uid: 14112
+ components:
+ - type: Transform
+ pos: 56.5,-35.5
+ parent: 8364
+ - uid: 15105
+ components:
+ - type: Transform
+ pos: 74.5,-19.5
+ parent: 8364
+ - uid: 23009
+ components:
+ - type: Transform
+ pos: 74.5,-50.5
+ parent: 8364
+ - uid: 25174
+ components:
+ - type: Transform
+ pos: 63.5,-21.5
+ parent: 8364
+ - uid: 28186
+ components:
+ - type: Transform
+ pos: 0.5,-27.5
+ parent: 8364
+- proto: LootSpawnerScienceMinor
+ entities:
+ - uid: 6247
+ components:
+ - type: Transform
+ pos: 60.5,-19.5
+ parent: 8364
+ - uid: 16546
+ components:
+ - type: Transform
+ pos: 78.5,-50.5
+ parent: 8364
+ - uid: 17906
+ components:
+ - type: Transform
+ pos: 81.5,-23.5
+ parent: 8364
+ - uid: 18366
+ components:
+ - type: Transform
+ pos: 71.5,-28.5
+ parent: 8364
+ - uid: 22977
+ components:
+ - type: Transform
+ pos: 61.5,-39.5
+ parent: 8364
+ - uid: 23183
+ components:
+ - type: Transform
+ pos: 85.5,-40.5
+ parent: 8364
+ - uid: 25161
+ components:
+ - type: Transform
+ pos: 88.5,-27.5
+ parent: 8364
+ - uid: 25169
+ components:
+ - type: Transform
+ pos: 80.5,-44.5
+ parent: 8364
+ - uid: 25171
+ components:
+ - type: Transform
+ pos: 80.5,-46.5
+ parent: 8364
+ - uid: 26921
+ components:
+ - type: Transform
+ pos: 59.5,-51.5
+ parent: 8364
+ - uid: 26923
+ components:
+ - type: Transform
+ pos: 51.5,-43.5
+ parent: 8364
+ - uid: 27036
+ components:
+ - type: Transform
+ pos: 85.5,-36.5
+ parent: 8364
+- proto: LootSpawnerSecurity
+ entities:
+ - uid: 10878
+ components:
+ - type: Transform
+ pos: -56.5,3.5
+ parent: 8364
- proto: MachineAnomalyGenerator
entities:
- uid: 21980
@@ -126084,11 +129492,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -42.5,-12.5
parent: 8364
- - uid: 27189
- components:
- - type: Transform
- pos: 33.5,-85.5
- parent: 8364
- proto: MachineFrameDestroyed
entities:
- uid: 13768
@@ -126216,21 +129619,128 @@ entities:
- type: Transform
pos: -41.5,-7.5
parent: 8364
+ - uid: 6219
+ components:
+ - type: Transform
+ pos: 85.5,-53.5
+ parent: 8364
+ - uid: 11094
+ components:
+ - type: Transform
+ pos: 53.5,-48.5
+ parent: 8364
- uid: 16149
components:
- type: Transform
pos: -43.5,-11.5
parent: 8364
+ - uid: 24917
+ components:
+ - type: Transform
+ pos: 65.5,-72.5
+ parent: 8364
+ - uid: 25046
+ components:
+ - type: Transform
+ pos: -53.5,5.5
+ parent: 8364
+ - uid: 25950
+ components:
+ - type: Transform
+ pos: 76.5,-56.5
+ parent: 8364
- uid: 26554
components:
- type: Transform
pos: -8.5,53.5
parent: 8364
+ - uid: 26608
+ components:
+ - type: Transform
+ pos: 58.5,-62.5
+ parent: 8364
+ - uid: 26627
+ components:
+ - type: Transform
+ pos: 59.5,-49.5
+ parent: 8364
- uid: 26633
components:
- type: Transform
pos: -4.5,-48.5
parent: 8364
+ - uid: 26852
+ components:
+ - type: Transform
+ pos: 58.5,-51.5
+ parent: 8364
+ - uid: 26875
+ components:
+ - type: Transform
+ pos: 66.5,-64.5
+ parent: 8364
+ - uid: 26926
+ components:
+ - type: Transform
+ pos: -57.5,17.5
+ parent: 8364
+ - uid: 26929
+ components:
+ - type: Transform
+ pos: -58.5,13.5
+ parent: 8364
+ - uid: 26993
+ components:
+ - type: Transform
+ pos: -54.5,11.5
+ parent: 8364
+ - uid: 27233
+ components:
+ - type: Transform
+ pos: 70.5,-66.5
+ parent: 8364
+ - uid: 27928
+ components:
+ - type: Transform
+ pos: 67.5,-59.5
+ parent: 8364
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 6312
+ components:
+ - type: Transform
+ pos: 46.5,13.5
+ parent: 8364
+ - uid: 13852
+ components:
+ - type: Transform
+ pos: -42.5,1.5
+ parent: 8364
+ - uid: 14433
+ components:
+ - type: Transform
+ pos: 43.5,-73.5
+ parent: 8364
+ - uid: 14437
+ components:
+ - type: Transform
+ pos: 70.5,12.5
+ parent: 8364
+ - uid: 14565
+ components:
+ - type: Transform
+ pos: -48.5,1.5
+ parent: 8364
+ - uid: 16208
+ components:
+ - type: Transform
+ pos: -19.5,-6.5
+ parent: 8364
+ - uid: 16209
+ components:
+ - type: Transform
+ pos: 47.5,-66.5
+ parent: 8364
- proto: MaintenancePlantSpawner
entities:
- uid: 27525
@@ -126255,11 +129765,36 @@ entities:
parent: 8364
- proto: MaintenanceToolSpawner
entities:
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 49.5,11.5
+ parent: 8364
+ - uid: 4504
+ components:
+ - type: Transform
+ pos: 66.5,-65.5
+ parent: 8364
+ - uid: 4539
+ components:
+ - type: Transform
+ pos: -33.5,-63.5
+ parent: 8364
- uid: 4727
components:
- type: Transform
pos: -21.5,12.5
parent: 8364
+ - uid: 7038
+ components:
+ - type: Transform
+ pos: -24.5,-43.5
+ parent: 8364
+ - uid: 11574
+ components:
+ - type: Transform
+ pos: -45.5,22.5
+ parent: 8364
- uid: 14239
components:
- type: Transform
@@ -126275,6 +129810,56 @@ entities:
- type: Transform
pos: -36.5,-48.5
parent: 8364
+ - uid: 23407
+ components:
+ - type: Transform
+ pos: 47.5,-67.5
+ parent: 8364
+ - uid: 26567
+ components:
+ - type: Transform
+ pos: 35.5,-63.5
+ parent: 8364
+ - uid: 26922
+ components:
+ - type: Transform
+ pos: -46.5,2.5
+ parent: 8364
+ - uid: 26925
+ components:
+ - type: Transform
+ pos: 47.5,11.5
+ parent: 8364
+ - uid: 27031
+ components:
+ - type: Transform
+ pos: -45.5,21.5
+ parent: 8364
+ - uid: 27034
+ components:
+ - type: Transform
+ pos: -34.5,-63.5
+ parent: 8364
+ - uid: 27929
+ components:
+ - type: Transform
+ pos: 84.5,-55.5
+ parent: 8364
+ - uid: 27984
+ components:
+ - type: Transform
+ pos: -42.5,5.5
+ parent: 8364
+ - uid: 27985
+ components:
+ - type: Transform
+ pos: -40.5,5.5
+ parent: 8364
+ - uid: 27987
+ components:
+ - type: Transform
+ pos: -25.5,-43.5
+ parent: 8364
- proto: MaintenanceWeaponSpawner
entities:
- uid: 13816
@@ -126287,6 +129872,11 @@ entities:
- type: Transform
pos: -30.5,-72.5
parent: 8364
+ - uid: 27986
+ components:
+ - type: Transform
+ pos: -52.5,7.5
+ parent: 8364
- proto: MaterialCloth
entities:
- uid: 5868
@@ -126484,7 +130074,7 @@ entities:
- uid: 21418
components:
- type: Transform
- pos: 80.5,-47.5
+ pos: 79.55894,-47.360077
parent: 8364
- proto: MedkitToxinFilled
entities:
@@ -126521,6 +130111,13 @@ entities:
rot: 0.0004530529258772731 rad
pos: 74.7369,-19.349794
parent: 8364
+- proto: MicrophoneInstrument
+ entities:
+ - uid: 3819
+ components:
+ - type: Transform
+ pos: -21.513838,-9.389294
+ parent: 8364
- proto: Mirror
entities:
- uid: 6260
@@ -127047,6 +130644,36 @@ entities:
- type: Transform
pos: 52.5,7.5
parent: 8364
+ - uid: 4541
+ components:
+ - type: Transform
+ pos: 68.5,9.5
+ parent: 8364
+ - uid: 10603
+ components:
+ - type: Transform
+ pos: -27.5,-52.5
+ parent: 8364
+ - uid: 10852
+ components:
+ - type: Transform
+ pos: 81.5,-40.5
+ parent: 8364
+ - uid: 22764
+ components:
+ - type: Transform
+ pos: 15.5,-35.5
+ parent: 8364
+ - uid: 22770
+ components:
+ - type: Transform
+ pos: 12.5,4.5
+ parent: 8364
+ - uid: 22921
+ components:
+ - type: Transform
+ pos: -21.5,6.5
+ parent: 8364
- proto: Multitool
entities:
- uid: 5623
@@ -127094,31 +130721,11 @@ entities:
- type: Transform
pos: -5.398419,-57.63227
parent: 8364
- - uid: 19348
- components:
- - type: Transform
- pos: 47.523952,-66.25797
- parent: 8364
- - uid: 20050
- components:
- - type: Transform
- pos: 88.5,-27.5
- parent: 8364
- - uid: 21228
- components:
- - type: Transform
- pos: 61.5,-19.5
- parent: 8364
- uid: 21442
components:
- type: Transform
pos: 78.5,-62.5
parent: 8364
- - uid: 27195
- components:
- - type: Transform
- pos: 33.528397,-88.48169
- parent: 8364
- proto: NitrogenCanister
entities:
- uid: 3026
@@ -127186,6 +130793,13 @@ entities:
- type: Transform
pos: -13.5,9.5
parent: 8364
+- proto: NitrogenTankFilled
+ entities:
+ - uid: 27177
+ components:
+ - type: Transform
+ pos: 26.471306,-83.42229
+ parent: 8364
- proto: NitrousOxideTankFilled
entities:
- uid: 21342
@@ -127205,7 +130819,7 @@ entities:
- uid: 27913
components:
- type: Transform
- pos: -4.5442195,-11.268198
+ pos: 2.3979688,-23.426868
parent: 8364
- proto: NuclearBomb
entities:
@@ -127226,7 +130840,7 @@ entities:
- uid: 27916
components:
- type: Transform
- pos: 3.6621494,-11.814552
+ pos: 2.429234,-24.146116
parent: 8364
- proto: OperatingTable
entities:
@@ -127394,42 +131008,35 @@ entities:
- type: MetaData
name: empty tank
- type: Transform
- pos: 79.5,-43.5
- parent: 8364
- - uid: 21420
- components:
- - type: MetaData
- name: empty tank
- - type: Transform
- pos: 79.5,-43.5
- parent: 8364
- - uid: 21421
- components:
- - type: MetaData
- name: empty tank
- - type: Transform
- pos: 79.5,-43.5
- parent: 8364
- - uid: 21422
- components:
- - type: MetaData
- name: empty tank
- - type: Transform
- pos: 79.5,-43.5
- parent: 8364
- - uid: 21423
- components:
- - type: MetaData
- name: empty tank
- - type: Transform
- pos: 79.5,-43.5
+ pos: 79.485985,-43.45112
parent: 8364
+ - type: GasTank
+ toggleActionEntity: 25167
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 25167
- proto: OxygenTankFilled
entities:
- uid: 20121
components:
- type: Transform
- pos: 76.5,-57.5
+ pos: 78.58031,-56.4234
+ parent: 8364
+ - type: GasTank
+ toggleActionEntity: 25181
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 25181
+ - uid: 27619
+ components:
+ - type: Transform
+ pos: 26.61721,-83.45356
parent: 8364
- proto: PackPaperRollingFilters
entities:
@@ -127506,7 +131113,7 @@ entities:
- uid: 27911
components:
- type: Transform
- pos: -4.443845,-11.67473
+ pos: -3.5,-24.2
parent: 8364
- proto: Paper
entities:
@@ -127540,6 +131147,16 @@ entities:
- type: Transform
pos: 28.395426,-19.487911
parent: 8364
+ - uid: 3826
+ components:
+ - type: Transform
+ pos: -23.660736,-9.733283
+ parent: 8364
+ - uid: 4564
+ components:
+ - type: Transform
+ pos: -23.441877,-9.858369
+ parent: 8364
- uid: 5681
components:
- type: Transform
@@ -127605,106 +131222,6 @@ entities:
- type: Transform
pos: 20.509228,6.5730886
parent: 8364
- - uid: 8446
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8447
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8448
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8449
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8450
- components:
- - type: Transform
- pos: 12.5,19.5
- parent: 8364
- - uid: 8451
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8452
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8453
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8454
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8455
- components:
- - type: Transform
- pos: 13.5,24.5
- parent: 8364
- - uid: 8456
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8457
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8458
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8459
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8460
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- - uid: 8598
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- - uid: 8599
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- - uid: 8600
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- - uid: 8601
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- - uid: 8602
- components:
- - type: Transform
- pos: 3.5,24.5
- parent: 8364
- uid: 8804
components:
- type: Transform
@@ -127720,7 +131237,7 @@ entities:
- uid: 8806
components:
- type: Transform
- pos: -11.291204,32.308414
+ pos: -11.519596,32.598755
parent: 8364
- uid: 9233
components:
@@ -127820,12 +131337,12 @@ entities:
- uid: 14336
components:
- type: Transform
- pos: -34.361294,-5.4555216
+ pos: -34.544052,-5.335971
parent: 8364
- uid: 14337
components:
- type: Transform
- pos: -34.18942,-5.6742716
+ pos: -34.398148,-5.5236015
parent: 8364
- uid: 14372
components:
@@ -127962,16 +131479,6 @@ entities:
- type: Transform
pos: 69.5,-34.5
parent: 8364
- - uid: 27173
- components:
- - type: Transform
- pos: 26.502972,-105.49065
- parent: 8364
- - uid: 27174
- components:
- - type: Transform
- pos: 26.502972,-105.49065
- parent: 8364
- uid: 27767
components:
- type: Transform
@@ -127997,6 +131504,33 @@ entities:
- type: Transform
pos: 35.5,-6.5
parent: 8364
+- proto: PaperBin10
+ entities:
+ - uid: 7228
+ components:
+ - type: Transform
+ pos: -22.5,-13.5
+ parent: 8364
+ - uid: 8456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,24.5
+ parent: 8364
+ - uid: 8457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,24.5
+ parent: 8364
+- proto: PaperBin20
+ entities:
+ - uid: 8458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,32.5
+ parent: 8364
- proto: PaperBin5
entities:
- uid: 5319
@@ -128004,6 +131538,12 @@ entities:
- type: Transform
pos: 11.5,-34.5
parent: 8364
+ - uid: 8455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,19.5
+ parent: 8364
- uid: 17631
components:
- type: Transform
@@ -128095,7 +131635,7 @@ entities:
- uid: 15961
components:
- type: Transform
- pos: -28.374622,-53.801064
+ pos: -28.49712,-53.537666
parent: 8364
- uid: 16698
components:
@@ -128115,7 +131655,7 @@ entities:
- uid: 19346
components:
- type: Transform
- pos: 47.258327,-66.86735
+ pos: 47.57956,-67.045586
parent: 8364
- uid: 21446
components:
@@ -128170,6 +131710,11 @@ entities:
- type: Transform
pos: 6.7796197,-15.189568
parent: 8364
+ - uid: 5771
+ components:
+ - type: Transform
+ pos: -21.937536,-13.335235
+ parent: 8364
- uid: 8461
components:
- type: Transform
@@ -128183,12 +131728,12 @@ entities:
- uid: 8463
components:
- type: Transform
- pos: 12.5,19.5
+ pos: 12.507681,19.623228
parent: 8364
- uid: 8603
components:
- type: Transform
- pos: 3.5,24.5
+ pos: 3.370025,24.35413
parent: 8364
- uid: 8802
components:
@@ -128316,11 +131861,6 @@ entities:
- type: Transform
pos: 69.5,-34.5
parent: 8364
- - uid: 27176
- components:
- - type: Transform
- pos: 26.706097,-106.16252
- parent: 8364
- proto: PercentileDie
entities:
- uid: 898
@@ -128328,16 +131868,6 @@ entities:
- type: Transform
pos: 57.5,20.5
parent: 8364
- - uid: 10853
- components:
- - type: Transform
- pos: 56.5,3.5000002
- parent: 8364
- - uid: 10873
- components:
- - type: Transform
- pos: 55.5,0.5
- parent: 8364
- proto: PersonalAI
entities:
- uid: 4068
@@ -128384,11 +131914,6 @@ entities:
- type: Transform
pos: -8.522932,-51.390182
parent: 8364
- - uid: 27209
- components:
- - type: Transform
- pos: 27.481524,-83.38469
- parent: 8364
- uid: 27227
components:
- type: Transform
@@ -128579,10 +132104,10 @@ entities:
parent: 8364
- proto: PlayerStationAi
entities:
- - uid: 16590
+ - uid: 27979
components:
- type: Transform
- pos: 28.5,-111.5
+ pos: -0.5,-14.5
parent: 8364
- proto: PlushieBee
entities:
@@ -128605,11 +132130,6 @@ entities:
- type: Transform
pos: 44.578045,-62.22757
parent: 8364
- - uid: 21798
- components:
- - type: Transform
- pos: -22.362862,-11.265691
- parent: 8364
- proto: PlushieRGBee
entities:
- uid: 5880
@@ -128715,6 +132235,11 @@ entities:
- type: Transform
pos: -26.5,-71.5
parent: 8364
+ - uid: 27832
+ components:
+ - type: Transform
+ pos: -0.5,-11.5
+ parent: 8364
- proto: PortableGeneratorSuperPacman
entities:
- uid: 18732
@@ -128722,11 +132247,6 @@ entities:
- type: Transform
pos: -26.5,-70.5
parent: 8364
- - uid: 26962
- components:
- - type: Transform
- pos: 34.5,-92.5
- parent: 8364
- proto: PortableGeneratorSuperPacmanMachineCircuitboard
entities:
- uid: 19880
@@ -128736,11 +132256,6 @@ entities:
parent: 8364
- proto: PortableScrubber
entities:
- - uid: 746
- components:
- - type: Transform
- pos: 23.5,-95.5
- parent: 8364
- uid: 6475
components:
- type: Transform
@@ -128811,11 +132326,6 @@ entities:
- type: Transform
pos: 14.5,-40.5
parent: 8364
- - uid: 27152
- components:
- - type: Transform
- pos: 22.5,-91.5
- parent: 8364
- proto: PosterContrabandAtmosiaDeclarationIndependence
entities:
- uid: 6612
@@ -129070,11 +132580,6 @@ entities:
- type: Transform
pos: -6.5,-3.5
parent: 8364
- - uid: 21764
- components:
- - type: Transform
- pos: -19.5,-9.5
- parent: 8364
- uid: 21972
components:
- type: Transform
@@ -129085,11 +132590,6 @@ entities:
- type: Transform
pos: 5.5,-23.5
parent: 8364
- - uid: 27650
- components:
- - type: Transform
- pos: 9.5,-28.5
- parent: 8364
- proto: PosterLegitNoERP
entities:
- uid: 26559
@@ -129201,13 +132701,6 @@ entities:
- type: Transform
pos: -7.5,40.5
parent: 8364
-- proto: PosterLegitVacation
- entities:
- - uid: 10703
- components:
- - type: Transform
- pos: 5.5,-28.5
- parent: 8364
- proto: PosterLegitWorkForAFuture
entities:
- uid: 2386
@@ -129222,11 +132715,6 @@ entities:
parent: 8364
- proto: PottedPlant0
entities:
- - uid: 9450
- components:
- - type: Transform
- pos: -23.5,-9.5
- parent: 8364
- uid: 26870
components:
- type: Transform
@@ -129404,13 +132892,6 @@ entities:
- type: Transform
pos: 37.493153,-34.77379
parent: 8364
-- proto: PottedPlant6
- entities:
- - uid: 27156
- components:
- - type: Transform
- pos: 27.518597,-87.763794
- parent: 8364
- proto: PottedPlant8
entities:
- uid: 14099
@@ -129531,6 +133012,11 @@ entities:
- type: ContainerContainer
containers:
stash: !type:ContainerSlot {}
+ - uid: 8399
+ components:
+ - type: Transform
+ pos: 58.5,-1.5
+ parent: 8364
- uid: 11814
components:
- type: Transform
@@ -129576,6 +133062,16 @@ entities:
- type: Transform
pos: -58.5,-11.5
parent: 8364
+ - uid: 17950
+ components:
+ - type: Transform
+ pos: 65.5,-10.5
+ parent: 8364
+ - uid: 18367
+ components:
+ - type: Transform
+ pos: 53.5,-1.5
+ parent: 8364
- uid: 18618
components:
- type: Transform
@@ -129793,11 +133289,6 @@ entities:
- type: Transform
pos: -12.5,2.5
parent: 8364
- - uid: 27196
- components:
- - type: Transform
- pos: 32.5,-88.5
- parent: 8364
- uid: 27396
components:
- type: Transform
@@ -129865,12 +133356,30 @@ entities:
rot: 3.141592653589793 rad
pos: 60.5,-37.5
parent: 8364
+ - uid: 2257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-10.5
+ parent: 8364
- uid: 3215
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 46.5,-28.5
parent: 8364
+ - uid: 3613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-17.5
+ parent: 8364
+ - uid: 4556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-17.5
+ parent: 8364
- uid: 5244
components:
- type: Transform
@@ -129926,14 +133435,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5644
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -7.5,-24.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 5696
components:
- type: Transform
@@ -129942,13 +133443,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 5748
- components:
- - type: Transform
- pos: 0.5,-18.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 5946
components:
- type: Transform
@@ -130026,14 +133520,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 7004
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-8.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 7014
components:
- type: Transform
@@ -130050,18 +133536,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 7910
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-12.5
- parent: 8364
- - uid: 7911
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-12.5
- parent: 8364
- uid: 7914
components:
- type: Transform
@@ -130553,14 +134027,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 12428
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -67.5,14.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 12438
components:
- type: Transform
@@ -130917,21 +134383,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 13066
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -5.5,-31.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 13067
- components:
- - type: Transform
- pos: -1.5,-29.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 13068
components:
- type: Transform
@@ -131073,21 +134524,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 14507
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -22.5,-13.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 14565
- components:
- - type: Transform
- pos: -57.5,-7.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 14771
components:
- type: Transform
@@ -131155,11 +134591,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -35.5,-23.5
parent: 8364
- - uid: 15450
- components:
- - type: Transform
- pos: -30.5,-18.5
- parent: 8364
- uid: 16343
components:
- type: Transform
@@ -131506,12 +134937,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 18395
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-30.5
- parent: 8364
- uid: 18397
components:
- type: Transform
@@ -131676,23 +135101,13 @@ entities:
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -2.5,-22.5
+ pos: -3.5,-12.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 19956
components:
- type: Transform
pos: 2.5,-59.5
parent: 8364
- - uid: 20060
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-26.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 20137
components:
- type: Transform
@@ -131950,13 +135365,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 21766
- components:
- - type: Transform
- pos: 5.5,-29.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 21771
components:
- type: Transform
@@ -132047,13 +135455,34 @@ entities:
- type: Transform
pos: 21.5,-71.5
parent: 8364
- - uid: 25864
+ - uid: 25204
components:
- type: Transform
- pos: 30.5,-27.5
+ pos: -9.5,-21.5
+ parent: 8364
+ - uid: 25211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-31.5
+ parent: 8364
+ - uid: 25219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-21.5
+ parent: 8364
+ - uid: 25790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-29.5
+ parent: 8364
+ - uid: 25827
+ components:
+ - type: Transform
+ pos: -32.5,-18.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 25867
components:
- type: Transform
@@ -132142,23 +135571,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 12.5,-27.5
parent: 8364
- - uid: 26103
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-81.5
- parent: 8364
- uid: 26105
components:
- type: Transform
pos: 15.5,-70.5
parent: 8364
- - uid: 26106
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-76.5
- parent: 8364
- uid: 26368
components:
- type: Transform
@@ -132295,70 +135712,65 @@ entities:
rot: -1.5707963267948966 rad
pos: 9.5,-67.5
parent: 8364
- - uid: 27163
+ - uid: 26984
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-101.5
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-76.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27164
+ - uid: 26992
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 26.5,-97.5
+ pos: -26.5,-76.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27165
+ - uid: 26994
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-97.5
+ pos: -24.5,-73.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27166
+ - uid: 27020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -23.5,-13.5
+ parent: 8364
+ - uid: 27142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-81.5
+ parent: 8364
+ - uid: 27147
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 30.5,-101.5
+ pos: 16.5,-85.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27169
+ - uid: 27148
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 30.5,-109.5
+ pos: 26.5,-76.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27170
+ - uid: 27153
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-109.5
+ rot: 3.141592653589793 rad
+ pos: 24.5,-81.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27171
+ - uid: 27154
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-114.5
+ rot: 3.141592653589793 rad
+ pos: 12.5,-81.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27172
+ - uid: 27155
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-114.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-85.5
parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 27254
components:
- type: Transform
@@ -132385,12 +135797,54 @@ entities:
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 11.5,-68.5
+ pos: 2.5,-12.5
parent: 8364
- - uid: 27883
+ - uid: 27922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-5.5
+ parent: 8364
+ - uid: 27923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-30.5
+ parent: 8364
+ - uid: 27924
components:
- type: Transform
- pos: 19.5,-68.5
+ pos: 32.5,-27.5
+ parent: 8364
+ - uid: 28152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-21.5
+ parent: 8364
+ - uid: 28187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 1.5,-24.5
+ parent: 8364
+ - uid: 28188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-24.5
+ parent: 8364
+ - uid: 28204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -7.5,-24.5
+ parent: 8364
+ - uid: 28207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-31.5
parent: 8364
- proto: PoweredlightExterior
entities:
@@ -132495,40 +135949,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 16626
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 22.5,-100.5
- parent: 8364
- - uid: 16627
- components:
- - type: Transform
- pos: 24.5,-119.5
- parent: 8364
- - uid: 16628
- components:
- - type: Transform
- pos: 32.5,-119.5
- parent: 8364
- - uid: 16629
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 34.5,-100.5
- parent: 8364
- - uid: 16632
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 21.5,-112.5
- parent: 8364
- - uid: 16633
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 35.5,-112.5
- parent: 8364
- uid: 17476
components:
- type: Transform
@@ -132601,6 +136021,12 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 27156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-76.5
+ parent: 8364
- proto: PoweredSmallLight
entities:
- uid: 650
@@ -132623,12 +136049,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -46.5,-11.5
parent: 8364
- - uid: 1676
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-85.5
- parent: 8364
- uid: 1875
components:
- type: Transform
@@ -133037,6 +136457,12 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
+ - uid: 12641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-12.5
+ parent: 8364
- uid: 13140
components:
- type: Transform
@@ -133491,12 +136917,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 16892
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-75.5
- parent: 8364
- uid: 16893
components:
- type: Transform
@@ -133825,6 +137245,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,-47.5
parent: 8364
+ - uid: 24906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -60.5,-11.5
+ parent: 8364
+ - uid: 25213
+ components:
+ - type: Transform
+ pos: -2.5,-29.5
+ parent: 8364
- uid: 25883
components:
- type: Transform
@@ -133839,19 +137270,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 26104
- components:
- - type: Transform
- anchored: False
- rot: 3.141592653589793 rad
- pos: 18.5,-86.5
- parent: 8364
- - uid: 26107
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-83.5
- parent: 8364
- uid: 26364
components:
- type: Transform
@@ -133900,67 +137318,6 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
- - uid: 27157
- components:
- - type: Transform
- pos: 29.5,-83.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27158
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-87.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27159
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-90.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27160
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-90.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27161
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-90.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27162
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-81.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27167
- components:
- - type: Transform
- pos: 26.5,-105.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- - uid: 27168
- components:
- - type: Transform
- pos: 30.5,-105.5
- parent: 8364
- - type: ApcPowerReceiver
- powerLoad: 0
- uid: 27459
components:
- type: Transform
@@ -133984,6 +137341,18 @@ entities:
rot: 1.5707963267948966 rad
pos: 2.5,-34.5
parent: 8364
+ - uid: 27620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-84.5
+ parent: 8364
+ - uid: 27622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-85.5
+ parent: 8364
- uid: 27626
components:
- type: Transform
@@ -134006,32 +137375,40 @@ entities:
- type: Transform
pos: 85.5,-5.5
parent: 8364
- - uid: 27867
+ - uid: 27859
components:
- type: Transform
- pos: 23.5,-95.5
+ rot: -1.5707963267948966 rad
+ pos: -18.5,-82.5
parent: 8364
- - uid: 27868
+ - uid: 27932
components:
- type: Transform
- pos: 33.5,-95.5
+ rot: 3.141592653589793 rad
+ pos: -55.5,-11.5
parent: 8364
- - uid: 27869
+ - uid: 28140
+ components:
+ - type: Transform
+ pos: 1.5,-29.5
+ parent: 8364
+ - uid: 28195
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 33.5,-106.5
+ pos: -0.5,-15.5
parent: 8364
- - uid: 27870
+ - uid: 28197
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 23.5,-106.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-27.5
parent: 8364
- - uid: 27871
+ - uid: 28198
components:
- type: Transform
- pos: 32.5,-79.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-27.5
parent: 8364
- proto: PoweredSmallLightEmpty
entities:
@@ -134051,20 +137428,34 @@ entities:
parent: 8364
- type: ApcPowerReceiver
powerLoad: 0
-- proto: Protolathe
+- proto: PoweredWarmSmallLight
entities:
- - uid: 17802
+ - uid: 8460
components:
- type: Transform
- pos: 2.5,-53.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-5.5
parent: 8364
- - type: MaterialStorage
- materialWhiteList:
- - Steel
- - Glass
- - Plastic
- - Wood
- - Gold
+ - uid: 18368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-10.5
+ parent: 8364
+ - uid: 27930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-3.5
+ parent: 8364
+ - uid: 27931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -57.5,-0.5
+ parent: 8364
+- proto: Protolathe
+ entities:
- uid: 21191
components:
- type: Transform
@@ -134120,21 +137511,6 @@ entities:
- type: Transform
pos: -5.5,-57.5
parent: 8364
- - uid: 646
- components:
- - type: Transform
- pos: 26.5,-87.5
- parent: 8364
- - uid: 647
- components:
- - type: Transform
- pos: 29.5,-83.5
- parent: 8364
- - uid: 747
- components:
- - type: Transform
- pos: 33.5,-95.5
- parent: 8364
- uid: 1060
components:
- type: Transform
@@ -134161,6 +137537,28 @@ entities:
- type: Transform
pos: 55.5,-51.5
parent: 8364
+ - uid: 3869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-27.5
+ parent: 8364
+ - uid: 4233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-77.5
+ parent: 8364
+ - uid: 4370
+ components:
+ - type: Transform
+ pos: -33.5,-63.5
+ parent: 8364
+ - uid: 4576
+ components:
+ - type: Transform
+ pos: -21.5,-9.5
+ parent: 8364
- uid: 4579
components:
- type: Transform
@@ -134176,6 +137574,11 @@ entities:
- type: Transform
pos: 44.5,-40.5
parent: 8364
+ - uid: 6218
+ components:
+ - type: Transform
+ pos: 78.5,-56.5
+ parent: 8364
- uid: 6265
components:
- type: Transform
@@ -134186,6 +137589,11 @@ entities:
- type: Transform
pos: 20.5,19.5
parent: 8364
+ - uid: 6392
+ components:
+ - type: Transform
+ pos: 66.5,-64.5
+ parent: 8364
- uid: 8570
components:
- type: Transform
@@ -134546,11 +137954,6 @@ entities:
- type: Transform
pos: 88.5,-27.5
parent: 8364
- - uid: 20119
- components:
- - type: Transform
- pos: 76.5,-57.5
- parent: 8364
- uid: 20123
components:
- type: Transform
@@ -134616,6 +138019,12 @@ entities:
- type: Transform
pos: 10.5,-49.5
parent: 8364
+ - uid: 24198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-42.5
+ parent: 8364
- uid: 25993
components:
- type: Transform
@@ -134626,11 +138035,21 @@ entities:
- type: Transform
pos: -17.5,51.5
parent: 8364
+ - uid: 26576
+ components:
+ - type: Transform
+ pos: 35.5,-63.5
+ parent: 8364
- uid: 26632
components:
- type: Transform
pos: -4.5,-48.5
parent: 8364
+ - uid: 26675
+ components:
+ - type: Transform
+ pos: 58.5,-62.5
+ parent: 8364
- uid: 26770
components:
- type: Transform
@@ -134641,15 +138060,38 @@ entities:
- type: Transform
pos: -10.5,7.5
parent: 8364
- - uid: 27153
+ - uid: 26876
components:
- type: Transform
- pos: 23.5,-88.5
+ pos: 66.5,-65.5
parent: 8364
- - uid: 27154
+ - uid: 26980
+ components:
+ - type: Transform
+ pos: 80.5,-56.5
+ parent: 8364
+ - uid: 27059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,-40.5
+ parent: 8364
+ - uid: 27176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-83.5
+ parent: 8364
+ - uid: 27553
+ components:
+ - type: Transform
+ pos: 11.5,-78.5
+ parent: 8364
+ - uid: 27819
components:
- type: Transform
- pos: 34.5,-90.5
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-27.5
parent: 8364
- uid: 28132
components:
@@ -134715,11 +138157,6 @@ entities:
- type: Transform
pos: 3.5,23.5
parent: 8364
- - uid: 12354
- components:
- - type: Transform
- pos: -56.5,3.5000002
- parent: 8364
- uid: 15394
components:
- type: Transform
@@ -134745,11 +138182,6 @@ entities:
- type: Transform
pos: 5.934936,-62.500313
parent: 8364
- - uid: 27211
- components:
- - type: Transform
- pos: 29.481524,-83.494064
- parent: 8364
- proto: Railing
entities:
- uid: 425
@@ -134878,18 +138310,18 @@ entities:
parent: 8364
- proto: RandomArtifactSpawner
entities:
- - uid: 13419
+ - uid: 25983
components:
- type: Transform
pos: 78.5,-29.5
parent: 8364
- - uid: 25988
+- proto: RandomArtifactSpawner20
+ entities:
+ - uid: 16825
components:
- type: Transform
- pos: 80.5,-29.5
+ pos: 82.5,-30.5
parent: 8364
-- proto: RandomArtifactSpawner20
- entities:
- uid: 20637
components:
- type: Transform
@@ -134905,6 +138337,16 @@ entities:
- type: Transform
pos: -39.5,-22.5
parent: 8364
+ - uid: 25984
+ components:
+ - type: Transform
+ pos: 80.5,-29.5
+ parent: 8364
+ - uid: 27418
+ components:
+ - type: Transform
+ pos: 71.5,-39.5
+ parent: 8364
- proto: RandomBoard
entities:
- uid: 5724
@@ -134947,6 +138389,11 @@ entities:
- type: Transform
pos: -10.5,-33.5
parent: 8364
+ - uid: 28185
+ components:
+ - type: Transform
+ pos: -1.5,-27.5
+ parent: 8364
- proto: RandomDrinkGlass
entities:
- uid: 5207
@@ -134971,6 +138418,16 @@ entities:
parent: 8364
- proto: RandomDrinkSoda
entities:
+ - uid: 7092
+ components:
+ - type: Transform
+ pos: 55.5,1.5
+ parent: 8364
+ - uid: 7114
+ components:
+ - type: Transform
+ pos: 56.5,1.5
+ parent: 8364
- uid: 20690
components:
- type: Transform
@@ -135027,6 +138484,11 @@ entities:
- type: Transform
pos: 61.5,-44.5
parent: 8364
+ - uid: 4261
+ components:
+ - type: Transform
+ pos: 84.5,-51.5
+ parent: 8364
- uid: 6613
components:
- type: Transform
@@ -135037,6 +138499,21 @@ entities:
- type: Transform
pos: 16.5,16.5
parent: 8364
+ - uid: 7062
+ components:
+ - type: Transform
+ pos: 53.5,3.5
+ parent: 8364
+ - uid: 7073
+ components:
+ - type: Transform
+ pos: 59.5,0.5
+ parent: 8364
+ - uid: 7153
+ components:
+ - type: Transform
+ pos: 52.5,0.5
+ parent: 8364
- uid: 9618
components:
- type: Transform
@@ -135212,11 +138689,6 @@ entities:
- type: Transform
pos: 83.5,-56.5
parent: 8364
- - uid: 22313
- components:
- - type: Transform
- pos: 83.5,-53.5
- parent: 8364
- uid: 22314
components:
- type: Transform
@@ -135287,6 +138759,17 @@ entities:
- type: Transform
pos: 44.5,9.5
parent: 8364
+ - uid: 25186
+ components:
+ - type: Transform
+ pos: 59.5,3.5
+ parent: 8364
+ - uid: 25200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 5.5,-28.5
+ parent: 8364
- uid: 26565
components:
- type: Transform
@@ -135346,6 +138829,11 @@ entities:
- type: Transform
pos: 58.5,-42.5
parent: 8364
+ - uid: 4567
+ components:
+ - type: Transform
+ pos: -19.5,-13.5
+ parent: 8364
- uid: 8469
components:
- type: Transform
@@ -135501,6 +138989,18 @@ entities:
- type: Transform
pos: -6.5,-28.5
parent: 8364
+ - uid: 25199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 9.5,-28.5
+ parent: 8364
+ - uid: 25220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-22.5
+ parent: 8364
- uid: 25844
components:
- type: Transform
@@ -135596,6 +139096,29 @@ entities:
- type: Transform
pos: 17.5,-8.5
parent: 8364
+ - uid: 28149
+ components:
+ - type: Transform
+ pos: -25.5,-10.5
+ parent: 8364
+ - uid: 28208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-19.5
+ parent: 8364
+- proto: RandomSmokables
+ entities:
+ - uid: 14111
+ components:
+ - type: Transform
+ pos: 86.44438,-40.36994
+ parent: 8364
+ - uid: 25242
+ components:
+ - type: Transform
+ pos: 86.65282,-42.37133
+ parent: 8364
- proto: RandomSnacks
entities:
- uid: 20688
@@ -135862,6 +139385,11 @@ entities:
- type: Transform
pos: -46.5,17.5
parent: 8364
+ - uid: 14147
+ components:
+ - type: Transform
+ pos: -61.5,-15.5
+ parent: 8364
- uid: 14603
components:
- type: Transform
@@ -135880,7 +139408,7 @@ entities:
- uid: 14606
components:
- type: Transform
- pos: -19.5,-0.5
+ pos: -30.5,-12.5
parent: 8364
- uid: 14607
components:
@@ -135922,6 +139450,11 @@ entities:
- type: Transform
pos: -58.5,-20.5
parent: 8364
+ - uid: 15106
+ components:
+ - type: Transform
+ pos: -59.5,-16.5
+ parent: 8364
- uid: 15611
components:
- type: Transform
@@ -136062,6 +139595,21 @@ entities:
- type: Transform
pos: -12.5,47.5
parent: 8364
+ - uid: 28237
+ components:
+ - type: Transform
+ pos: -21.5,-0.5
+ parent: 8364
+ - uid: 28238
+ components:
+ - type: Transform
+ pos: -59.5,-15.5
+ parent: 8364
+ - uid: 28239
+ components:
+ - type: Transform
+ pos: -61.5,-16.5
+ parent: 8364
- proto: RandomSpawner100
entities:
- uid: 2249
@@ -136091,6 +139639,18 @@ entities:
- type: Transform
pos: -55.5,-1.5
parent: 8364
+- proto: RandomVendingClothing
+ entities:
+ - uid: 25864
+ components:
+ - type: Transform
+ pos: -39.5,-4.5
+ parent: 8364
+ - uid: 27038
+ components:
+ - type: Transform
+ pos: 22.5,15.5
+ parent: 8364
- proto: RandomVendingDrinks
entities:
- uid: 1604
@@ -136133,6 +139693,11 @@ entities:
- type: Transform
pos: -44.5,-4.5
parent: 8364
+ - uid: 27037
+ components:
+ - type: Transform
+ pos: -18.5,-10.5
+ parent: 8364
- proto: RandomVendingSnacks
entities:
- uid: 2939
@@ -136748,6 +140313,11 @@ entities:
- type: Transform
pos: -68.5,18.5
parent: 8364
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 27.5,-81.5
+ parent: 8364
- uid: 596
components:
- type: Transform
@@ -136766,6 +140336,12 @@ entities:
rot: -1.5707963267948966 rad
pos: -68.5,7.5
parent: 8364
+ - uid: 646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,-82.5
+ parent: 8364
- uid: 658
components:
- type: Transform
@@ -137209,16 +140785,6 @@ entities:
- type: Transform
pos: -33.5,-32.5
parent: 8364
- - uid: 1627
- components:
- - type: Transform
- pos: 27.5,-74.5
- parent: 8364
- - uid: 1644
- components:
- - type: Transform
- pos: 26.5,-75.5
- parent: 8364
- uid: 1653
components:
- type: Transform
@@ -137427,7 +140993,7 @@ entities:
- uid: 2528
components:
- type: Transform
- pos: 38.5,-49.5
+ pos: 62.5,-71.5
parent: 8364
- uid: 2550
components:
@@ -137974,11 +141540,6 @@ entities:
- type: Transform
pos: 60.5,-70.5
parent: 8364
- - uid: 3087
- components:
- - type: Transform
- pos: 62.5,-70.5
- parent: 8364
- uid: 3088
components:
- type: Transform
@@ -138454,31 +142015,6 @@ entities:
- type: Transform
pos: -32.5,-70.5
parent: 8364
- - uid: 3630
- components:
- - type: Transform
- pos: -27.5,-74.5
- parent: 8364
- - uid: 3631
- components:
- - type: Transform
- pos: -26.5,-74.5
- parent: 8364
- - uid: 3632
- components:
- - type: Transform
- pos: -25.5,-74.5
- parent: 8364
- - uid: 3633
- components:
- - type: Transform
- pos: -24.5,-74.5
- parent: 8364
- - uid: 3634
- components:
- - type: Transform
- pos: -23.5,-74.5
- parent: 8364
- uid: 3674
components:
- type: Transform
@@ -138764,175 +142300,43 @@ entities:
- type: Transform
pos: 86.5,-14.5
parent: 8364
- - uid: 4137
- components:
- - type: Transform
- pos: -34.5,-29.5
- parent: 8364
- - uid: 4177
- components:
- - type: Transform
- pos: 0.5,-23.5
- parent: 8364
- - uid: 4455
- components:
- - type: Transform
- pos: 29.5,-103.5
- parent: 8364
- - uid: 4456
- components:
- - type: Transform
- pos: 29.5,-102.5
- parent: 8364
- - uid: 4457
- components:
- - type: Transform
- pos: 29.5,-101.5
- parent: 8364
- - uid: 4458
- components:
- - type: Transform
- pos: 29.5,-100.5
- parent: 8364
- - uid: 4459
- components:
- - type: Transform
- pos: 29.5,-99.5
- parent: 8364
- - uid: 4460
- components:
- - type: Transform
- pos: 29.5,-98.5
- parent: 8364
- - uid: 4461
- components:
- - type: Transform
- pos: 29.5,-97.5
- parent: 8364
- - uid: 4463
- components:
- - type: Transform
- pos: 29.5,-96.5
- parent: 8364
- - uid: 4464
- components:
- - type: Transform
- pos: 29.5,-95.5
- parent: 8364
- - uid: 4465
- components:
- - type: Transform
- pos: 27.5,-95.5
- parent: 8364
- - uid: 4466
- components:
- - type: Transform
- pos: 27.5,-96.5
- parent: 8364
- - uid: 4467
- components:
- - type: Transform
- pos: 27.5,-97.5
- parent: 8364
- - uid: 4468
- components:
- - type: Transform
- pos: 27.5,-98.5
- parent: 8364
- - uid: 4469
- components:
- - type: Transform
- pos: 27.5,-99.5
- parent: 8364
- - uid: 4470
- components:
- - type: Transform
- pos: 27.5,-100.5
- parent: 8364
- - uid: 4471
- components:
- - type: Transform
- pos: 27.5,-101.5
- parent: 8364
- - uid: 4472
- components:
- - type: Transform
- pos: 27.5,-102.5
- parent: 8364
- - uid: 4473
- components:
- - type: Transform
- pos: 27.5,-103.5
- parent: 8364
- - uid: 4474
- components:
- - type: Transform
- pos: 30.5,-107.5
- parent: 8364
- - uid: 4475
- components:
- - type: Transform
- pos: 29.5,-107.5
- parent: 8364
- - uid: 4476
- components:
- - type: Transform
- pos: 27.5,-107.5
- parent: 8364
- - uid: 4477
- components:
- - type: Transform
- pos: 26.5,-107.5
- parent: 8364
- - uid: 4483
- components:
- - type: Transform
- pos: 30.5,-81.5
- parent: 8364
- - uid: 4484
- components:
- - type: Transform
- pos: 30.5,-80.5
- parent: 8364
- - uid: 4486
- components:
- - type: Transform
- pos: 30.5,-78.5
- parent: 8364
- - uid: 4487
+ - uid: 4107
components:
- type: Transform
- pos: 30.5,-77.5
+ rot: 3.141592653589793 rad
+ pos: 14.5,-82.5
parent: 8364
- - uid: 4488
+ - uid: 4136
components:
- type: Transform
- pos: 29.5,-77.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-24.5
parent: 8364
- - uid: 4489
+ - uid: 4137
components:
- type: Transform
- pos: 28.5,-77.5
+ pos: -34.5,-29.5
parent: 8364
- - uid: 4490
+ - uid: 4201
components:
- type: Transform
- pos: 27.5,-77.5
+ pos: -21.5,-77.5
parent: 8364
- - uid: 4491
+ - uid: 4202
components:
- type: Transform
- pos: 26.5,-77.5
+ pos: -21.5,-74.5
parent: 8364
- - uid: 4492
+ - uid: 4300
components:
- type: Transform
- pos: 26.5,-78.5
+ pos: -21.5,-75.5
parent: 8364
- - uid: 4493
+ - uid: 4426
components:
- type: Transform
- pos: 26.5,-79.5
+ rot: 3.141592653589793 rad
+ pos: 20.5,-82.5
parent: 8364
- uid: 4523
components:
@@ -139009,16 +142413,6 @@ entities:
- type: Transform
pos: -16.5,34.5
parent: 8364
- - uid: 5200
- components:
- - type: Transform
- pos: 1.5,-23.5
- parent: 8364
- - uid: 5201
- components:
- - type: Transform
- pos: 26.5,-81.5
- parent: 8364
- uid: 5233
components:
- type: Transform
@@ -139034,21 +142428,6 @@ entities:
- type: Transform
pos: 23.5,-34.5
parent: 8364
- - uid: 5268
- components:
- - type: Transform
- pos: -1.5,-23.5
- parent: 8364
- - uid: 5732
- components:
- - type: Transform
- pos: -3.5,-25.5
- parent: 8364
- - uid: 5768
- components:
- - type: Transform
- pos: -2.5,-23.5
- parent: 8364
- uid: 5826
components:
- type: Transform
@@ -139059,21 +142438,11 @@ entities:
- type: Transform
pos: -5.5,40.5
parent: 8364
- - uid: 6529
- components:
- - type: Transform
- pos: 26.5,-80.5
- parent: 8364
- uid: 6533
components:
- type: Transform
pos: 25.5,16.5
parent: 8364
- - uid: 6908
- components:
- - type: Transform
- pos: 2.5,-25.5
- parent: 8364
- uid: 6949
components:
- type: Transform
@@ -139684,6 +143053,12 @@ entities:
- type: Transform
pos: -18.5,-19.5
parent: 8364
+ - uid: 8079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-72.5
+ parent: 8364
- uid: 8088
components:
- type: Transform
@@ -139704,6 +143079,12 @@ entities:
- type: Transform
pos: -14.5,-13.5
parent: 8364
+ - uid: 8111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-74.5
+ parent: 8364
- uid: 8131
components:
- type: Transform
@@ -140249,6 +143630,12 @@ entities:
- type: Transform
pos: -10.5,5.5
parent: 8364
+ - uid: 12258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 15.5,-82.5
+ parent: 8364
- uid: 12260
components:
- type: Transform
@@ -140259,6 +143646,12 @@ entities:
- type: Transform
pos: -68.5,17.5
parent: 8364
+ - uid: 12459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 13.5,-82.5
+ parent: 8364
- uid: 12485
components:
- type: Transform
@@ -140276,11 +143669,6 @@ entities:
- type: Transform
pos: 27.5,-67.5
parent: 8364
- - uid: 12678
- components:
- - type: Transform
- pos: 27.5,-68.5
- parent: 8364
- uid: 12681
components:
- type: Transform
@@ -140341,31 +143729,11 @@ entities:
- type: Transform
pos: -38.5,13.5
parent: 8364
- - uid: 13407
- components:
- - type: Transform
- pos: 27.5,-69.5
- parent: 8364
- uid: 13433
components:
- type: Transform
pos: -51.5,15.5
parent: 8364
- - uid: 13661
- components:
- - type: Transform
- pos: 27.5,-71.5
- parent: 8364
- - uid: 13662
- components:
- - type: Transform
- pos: 27.5,-72.5
- parent: 8364
- - uid: 13663
- components:
- - type: Transform
- pos: 27.5,-73.5
- parent: 8364
- uid: 14137
components:
- type: Transform
@@ -140431,6 +143799,18 @@ entities:
- type: Transform
pos: 6.5,-28.5
parent: 8364
+ - uid: 15882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-68.5
+ parent: 8364
+ - uid: 15969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 3.5,-24.5
+ parent: 8364
- uid: 16354
components:
- type: Transform
@@ -140451,6 +143831,24 @@ entities:
- type: Transform
pos: 2.5,-77.5
parent: 8364
+ - uid: 16731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-82.5
+ parent: 8364
+ - uid: 16735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,-82.5
+ parent: 8364
+ - uid: 16777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-82.5
+ parent: 8364
- uid: 16837
components:
- type: Transform
@@ -140486,11 +143884,6 @@ entities:
- type: Transform
pos: 2.5,-41.5
parent: 8364
- - uid: 17088
- components:
- - type: Transform
- pos: 14.5,-82.5
- parent: 8364
- uid: 17093
components:
- type: Transform
@@ -140501,16 +143894,6 @@ entities:
- type: Transform
pos: 7.5,-45.5
parent: 8364
- - uid: 17156
- components:
- - type: Transform
- pos: 15.5,-82.5
- parent: 8364
- - uid: 17159
- components:
- - type: Transform
- pos: 16.5,-82.5
- parent: 8364
- uid: 17205
components:
- type: Transform
@@ -140523,21 +143906,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 8.5,-43.5
parent: 8364
- - uid: 17207
- components:
- - type: Transform
- pos: 13.5,-82.5
- parent: 8364
- - uid: 17208
- components:
- - type: Transform
- pos: 17.5,-82.5
- parent: 8364
- - uid: 17365
- components:
- - type: Transform
- pos: 18.5,-82.5
- parent: 8364
- uid: 17455
components:
- type: Transform
@@ -140548,16 +143916,6 @@ entities:
- type: Transform
pos: 4.5,-46.5
parent: 8364
- - uid: 17661
- components:
- - type: Transform
- pos: 23.5,-75.5
- parent: 8364
- - uid: 17662
- components:
- - type: Transform
- pos: 25.5,-75.5
- parent: 8364
- uid: 17787
components:
- type: Transform
@@ -140578,11 +143936,6 @@ entities:
- type: Transform
pos: -2.5,-65.5
parent: 8364
- - uid: 19148
- components:
- - type: Transform
- pos: -5.5,-18.5
- parent: 8364
- uid: 19163
components:
- type: Transform
@@ -140663,11 +144016,6 @@ entities:
- type: Transform
pos: 61.5,-56.5
parent: 8364
- - uid: 20003
- components:
- - type: Transform
- pos: -5.5,-19.5
- parent: 8364
- uid: 20055
components:
- type: Transform
@@ -140750,16 +144098,6 @@ entities:
- type: Transform
pos: 13.5,-26.5
parent: 8364
- - uid: 21995
- components:
- - type: Transform
- pos: -4.5,-17.5
- parent: 8364
- - uid: 21996
- components:
- - type: Transform
- pos: 3.5,-17.5
- parent: 8364
- uid: 22013
components:
- type: Transform
@@ -140810,15 +144148,28 @@ entities:
- type: Transform
pos: 86.5,-10.5
parent: 8364
- - uid: 22573
+ - uid: 22574
components:
- type: Transform
- pos: 21.5,-75.5
+ pos: 25.5,-65.5
parent: 8364
- - uid: 22574
+ - uid: 22696
components:
- type: Transform
- pos: 25.5,-65.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-71.5
+ parent: 8364
+ - uid: 22697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-73.5
+ parent: 8364
+ - uid: 22700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-69.5
parent: 8364
- uid: 22745
components:
@@ -140896,10 +144247,11 @@ entities:
- type: Transform
pos: -18.5,-68.5
parent: 8364
- - uid: 23171
+ - uid: 23159
components:
- type: Transform
- pos: 24.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: 18.5,-86.5
parent: 8364
- uid: 23172
components:
@@ -140911,11 +144263,6 @@ entities:
- type: Transform
pos: -7.5,-66.5
parent: 8364
- - uid: 23209
- components:
- - type: Transform
- pos: 22.5,-75.5
- parent: 8364
- uid: 23220
components:
- type: Transform
@@ -140946,6 +144293,22 @@ entities:
- type: Transform
pos: 9.5,-64.5
parent: 8364
+ - uid: 23917
+ components:
+ - type: Transform
+ pos: -21.5,-82.5
+ parent: 8364
+ - uid: 24774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,-49.5
+ parent: 8364
+ - uid: 25183
+ components:
+ - type: Transform
+ pos: -21.5,-73.5
+ parent: 8364
- uid: 25735
components:
- type: Transform
@@ -140961,6 +144324,11 @@ entities:
- type: Transform
pos: -14.5,37.5
parent: 8364
+ - uid: 26008
+ components:
+ - type: Transform
+ pos: -19.5,-84.5
+ parent: 8364
- uid: 26064
components:
- type: Transform
@@ -141011,35 +144379,25 @@ entities:
- type: Transform
pos: -8.5,-64.5
parent: 8364
- - uid: 27849
- components:
- - type: Transform
- pos: 33.5,-78.5
- parent: 8364
- - uid: 27850
- components:
- - type: Transform
- pos: 32.5,-78.5
- parent: 8364
- - uid: 27851
+ - uid: 26997
components:
- type: Transform
- pos: 31.5,-78.5
+ pos: 27.5,-78.5
parent: 8364
- - uid: 27852
+ - uid: 27066
components:
- type: Transform
- pos: 31.5,-80.5
+ pos: 27.5,-79.5
parent: 8364
- - uid: 27853
+ - uid: 27858
components:
- type: Transform
- pos: 32.5,-80.5
+ pos: 27.5,-80.5
parent: 8364
- - uid: 27854
+ - uid: 27925
components:
- type: Transform
- pos: 33.5,-80.5
+ pos: 60.5,-69.5
parent: 8364
- proto: RemoteSignaller
entities:
@@ -141091,6 +144449,13 @@ entities:
- type: Transform
pos: 0.2510581,39.68831
parent: 8364
+- proto: RobocopCircuitBoard
+ entities:
+ - uid: 22443
+ components:
+ - type: Transform
+ pos: -3.5,-23.2
+ parent: 8364
- proto: RobustHarvestChemistryBottle
entities:
- uid: 13505
@@ -141168,6 +144533,16 @@ entities:
parent: 8364
- proto: Screen
entities:
+ - uid: 3657
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 8364
+ - uid: 4368
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 8364
- uid: 27738
components:
- type: Transform
@@ -141263,38 +144638,42 @@ entities:
- type: Transform
pos: -14.5,-11.5
parent: 8364
-- proto: Screwdriver
- entities:
- - uid: 2261
+ - uid: 28189
components:
- type: Transform
- pos: 59.397083,-51.321266
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-3.5
parent: 8364
- - uid: 12258
+ - uid: 28190
components:
- type: Transform
- pos: -46.457306,2.9827793
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-3.5
parent: 8364
- - uid: 15395
+ - uid: 28191
components:
- type: Transform
- pos: -22.5,-29.5
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-25.5
parent: 8364
- - uid: 16302
+ - uid: 28192
components:
- type: Transform
- rot: 0.00013372956891544163 rad
- pos: -8.435265,-33.26435
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-25.5
parent: 8364
- - uid: 21416
+- proto: Screwdriver
+ entities:
+ - uid: 15395
components:
- type: Transform
- pos: 79.5,-47.5
+ pos: -22.5,-29.5
parent: 8364
- - uid: 27210
+ - uid: 16302
components:
- type: Transform
- pos: 29.559649,-83.400314
+ rot: 0.00013372956891544163 rad
+ pos: -8.435265,-33.26435
parent: 8364
- uid: 27482
components:
@@ -141372,20 +144751,20 @@ entities:
parent: 8364
- proto: SheetGlass
entities:
- - uid: 1194
+ - uid: 1152
components:
- type: Transform
- pos: -51.52255,-5.0715327
+ pos: -32.98726,-18.506897
parent: 8364
- - uid: 11044
+ - uid: 1194
components:
- type: Transform
pos: -51.52255,-5.0715327
parent: 8364
- - uid: 11754
+ - uid: 11044
components:
- type: Transform
- pos: 47.405727,11.349856
+ pos: -51.52255,-5.0715327
parent: 8364
- uid: 11755
components:
@@ -141407,21 +144786,11 @@ entities:
- type: Transform
pos: -65.69919,13.123488
parent: 8364
- - uid: 13850
- components:
- - type: Transform
- pos: -45.29138,21.721916
- parent: 8364
- uid: 14442
components:
- type: Transform
pos: -23.474255,-5.524679
parent: 8364
- - uid: 15958
- components:
- - type: Transform
- pos: -28.687122,-52.44169
- parent: 8364
- uid: 16695
components:
- type: Transform
@@ -141432,12 +144801,6 @@ entities:
- type: Transform
pos: 9.439449,-60.01837
parent: 8364
- - uid: 19343
- components:
- - type: Transform
- rot: -0.0007233519572764635 rad
- pos: 47.73502,-67.92985
- parent: 8364
- uid: 21176
components:
- type: Transform
@@ -141460,11 +144823,6 @@ entities:
parent: 8364
- proto: SheetPlasma
entities:
- - uid: 21620
- components:
- - type: Transform
- pos: 43.53589,-62.501984
- parent: 8364
- uid: 26768
components:
- type: Transform
@@ -141531,6 +144889,11 @@ entities:
- type: Transform
pos: -2.4544196,39.606735
parent: 8364
+ - uid: 19207
+ components:
+ - type: Transform
+ pos: -32.507854,-18.48605
+ parent: 8364
- proto: SheetRGlass
entities:
- uid: 12441
@@ -141538,16 +144901,6 @@ entities:
- type: Transform
pos: -65.35544,13.342238
parent: 8364
- - uid: 15959
- components:
- - type: Transform
- pos: -28.390247,-52.707314
- parent: 8364
- - uid: 19344
- components:
- - type: Transform
- pos: 47.289577,-67.7736
- parent: 8364
- uid: 21445
components:
- type: Transform
@@ -141565,6 +144918,11 @@ entities:
- type: Transform
pos: -51.5538,-4.6965327
parent: 8364
+ - uid: 4062
+ components:
+ - type: Transform
+ pos: 11.496125,-77.3825
+ parent: 8364
- uid: 4698
components:
- type: Transform
@@ -141575,11 +144933,6 @@ entities:
- type: Transform
pos: -2.4700446,39.637985
parent: 8364
- - uid: 11752
- components:
- - type: Transform
- pos: 47.796352,11.724856
- parent: 8364
- uid: 11753
components:
- type: Transform
@@ -141611,11 +144964,6 @@ entities:
- type: Transform
pos: -38.48763,24.440645
parent: 8364
- - uid: 13849
- components:
- - type: Transform
- pos: -45.69763,21.378166
- parent: 8364
- uid: 14443
components:
- type: Transform
@@ -141626,11 +144974,6 @@ entities:
- type: Transform
pos: -10.454543,-61.554474
parent: 8364
- - uid: 15960
- components:
- - type: Transform
- pos: -28.671497,-53.41044
- parent: 8364
- uid: 17672
components:
- type: Transform
@@ -141644,7 +144987,7 @@ entities:
- uid: 19345
components:
- type: Transform
- pos: 47.711452,-67.03922
+ pos: 47.4545,-67.76483
parent: 8364
- uid: 21177
components:
@@ -141654,7 +144997,7 @@ entities:
- uid: 21232
components:
- type: Transform
- pos: 60.36629,-23.555044
+ pos: 60.529095,-23.40065
parent: 8364
- uid: 21444
components:
@@ -141686,6 +145029,11 @@ entities:
- type: Transform
pos: 9.423824,-59.471497
parent: 8364
+ - uid: 25317
+ components:
+ - type: Transform
+ pos: -33.45624,-18.48605
+ parent: 8364
- proto: SheetUranium
entities:
- uid: 27557
@@ -141738,10 +145086,15 @@ entities:
parent: 8364
- proto: ShuttersNormal
entities:
- - uid: 741
+ - uid: 8814
+ components:
+ - type: Transform
+ pos: -31.5,-17.5
+ parent: 8364
+ - uid: 9243
components:
- type: Transform
- pos: 31.5,-84.5
+ pos: -30.5,-17.5
parent: 8364
- uid: 11334
components:
@@ -142055,15 +145408,6 @@ entities:
- type: Transform
pos: -1.5,-72.5
parent: 8364
-- proto: ShuttersWindow
- entities:
- - uid: 1416
- components:
- - type: MetaData
- name: Warehouse Shutters
- - type: Transform
- pos: -31.5,-17.5
- parent: 8364
- proto: ShuttersWindowOpen
entities:
- uid: 8644
@@ -142267,13 +145611,34 @@ entities:
parent: 8364
- proto: SignAi
entities:
- - uid: 742
+ - uid: 26944
components:
- type: Transform
- pos: 10.5,-67.5
+ pos: 0.5,-18.5
+ parent: 8364
+- proto: SignAiUpload
+ entities:
+ - uid: 26942
+ components:
+ - type: Transform
+ pos: -1.5,-28.5
parent: 8364
- proto: SignalButton
entities:
+ - uid: 1644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,-86.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4205:
+ - Pressed: Toggle
+ 3542:
+ - Pressed: Toggle
+ 25091:
+ - Pressed: Toggle
- uid: 1910
components:
- type: Transform
@@ -142300,6 +145665,8 @@ entities:
- Pressed: Toggle
- uid: 2468
components:
+ - type: MetaData
+ name: Blast Doors
- type: Transform
pos: 70.5,-38.5
parent: 8364
@@ -142347,6 +145714,34 @@ entities:
linkedPorts:
3535:
- Pressed: Toggle
+ - uid: 4249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-82.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25091:
+ - Pressed: Toggle
+ 3542:
+ - Pressed: Toggle
+ 4205:
+ - Pressed: Toggle
+ - uid: 4250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 12.5,-82.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13849:
+ - Pressed: Toggle
+ 3605:
+ - Pressed: Toggle
+ 15544:
+ - Pressed: Toggle
- uid: 5222
components:
- type: Transform
@@ -142382,15 +145777,6 @@ entities:
linkedPorts:
9923:
- Pressed: Toggle
- - uid: 5370
- components:
- - type: Transform
- pos: 81.5,-26.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 5373:
- - Pressed: Toggle
- uid: 5478
components:
- type: Transform
@@ -142491,18 +145877,29 @@ entities:
- Pressed: Toggle
6099:
- Pressed: Toggle
- - uid: 17472
+ - uid: 11984
components:
- type: Transform
- pos: 6.5,-76.5
+ rot: 3.141592653589793 rad
+ pos: -32.5,-17.5
parent: 8364
- type: DeviceLinkSource
linkedPorts:
- 5798:
+ 8814:
- Pressed: Toggle
- 9379:
+ 9243:
- Pressed: Toggle
- 4704:
+ - uid: 16830
+ components:
+ - type: MetaData
+ name: Blast Door
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,-26.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5373:
- Pressed: Toggle
- uid: 17685
components:
@@ -142537,6 +145934,17 @@ entities:
- Pressed: Toggle
18326:
- Pressed: Toggle
+ - uid: 19172
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 8814:
+ - Pressed: Toggle
+ 9243:
+ - Pressed: Toggle
- uid: 19856
components:
- type: Transform
@@ -142594,21 +146002,6 @@ entities:
- Pressed: Toggle
19932:
- Pressed: Toggle
- - uid: 20126
- components:
- - type: Transform
- pos: 19.5,-82.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 20133:
- - Pressed: Toggle
- 20134:
- - Pressed: Toggle
- 26646:
- - Pressed: Toggle
- 17676:
- - Pressed: Toggle
- uid: 20896
components:
- type: Transform
@@ -142622,9 +146015,12 @@ entities:
- Pressed: Toggle
5590:
- Pressed: Toggle
- - uid: 22835
+ - uid: 22220
components:
+ - type: MetaData
+ name: Collector Blast Doors
- type: Transform
+ rot: 1.5707963267948966 rad
pos: -7.5,-76.5
parent: 8364
- type: DeviceLinkSource
@@ -142635,28 +146031,6 @@ entities:
- Pressed: Toggle
10835:
- Pressed: Toggle
- - uid: 26670
- components:
- - type: Transform
- pos: 2.5,-75.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 26668:
- - Pressed: Toggle
- 26669:
- - Pressed: Toggle
- - uid: 26671
- components:
- - type: Transform
- pos: -3.5,-75.5
- parent: 8364
- - type: DeviceLinkSource
- linkedPorts:
- 26666:
- - Pressed: Toggle
- 26667:
- - Pressed: Toggle
- uid: 26795
components:
- type: Transform
@@ -142682,9 +146056,12 @@ entities:
- Pressed: Toggle
26793:
- Pressed: Toggle
- - uid: 27389
+ - uid: 26932
components:
+ - type: MetaData
+ name: Radiation Shutters
- type: Transform
+ rot: 3.141592653589793 rad
pos: 2.5,-71.5
parent: 8364
- type: DeviceLinkSource
@@ -142697,6 +146074,82 @@ entities:
- Pressed: Toggle
3868:
- Pressed: Toggle
+ - uid: 26934
+ components:
+ - type: MetaData
+ name: PA Blast Doors
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-75.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26666:
+ - Pressed: Toggle
+ 26667:
+ - Pressed: Toggle
+ - uid: 26935
+ components:
+ - type: MetaData
+ name: Collector Blast Doors
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 6.5,-76.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5798:
+ - Pressed: Toggle
+ 9379:
+ - Pressed: Toggle
+ 4704:
+ - Pressed: Toggle
+ - uid: 26936
+ components:
+ - type: MetaData
+ name: PA Blast Doors
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 2.5,-75.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26668:
+ - Pressed: Toggle
+ 26669:
+ - Pressed: Toggle
+ - uid: 26937
+ components:
+ - type: MetaData
+ name: Radiation Shutters
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-71.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3868:
+ - Pressed: Toggle
+ 3875:
+ - Pressed: Toggle
+ 3788:
+ - Pressed: Toggle
+ 3789:
+ - Pressed: Toggle
+ - uid: 27744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 16.5,-86.5
+ parent: 8364
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15544:
+ - Pressed: Toggle
+ 3605:
+ - Pressed: Toggle
+ 13849:
+ - Pressed: Toggle
- proto: SignalButtonDirectional
entities:
- uid: 4213
@@ -142727,6 +146180,8 @@ entities:
- Pressed: Toggle
- uid: 10732
components:
+ - type: MetaData
+ name: Shutters
- type: Transform
pos: 8.5,-19.5
parent: 8364
@@ -142946,20 +146401,15 @@ entities:
parent: 8364
- proto: SignCryogenicsMed
entities:
- - uid: 24722
- components:
- - type: Transform
- pos: 38.5,-33.5
- parent: 8364
- - uid: 27383
+ - uid: 14702
components:
- type: Transform
- pos: 27.5,-75.5
+ pos: 27.5,-76.5
parent: 8364
- - uid: 27384
+ - uid: 24722
components:
- type: Transform
- pos: 27.5,-70.5
+ pos: 38.5,-33.5
parent: 8364
- proto: SignDangerMed
entities:
@@ -143270,6 +146720,11 @@ entities:
- type: Transform
pos: 43.5,4.5
parent: 8364
+ - uid: 3655
+ components:
+ - type: Transform
+ pos: 1.5,-10.5
+ parent: 8364
- uid: 7264
components:
- type: Transform
@@ -143290,10 +146745,10 @@ entities:
- type: Transform
pos: -19.5,-36.5
parent: 8364
- - uid: 17048
+ - uid: 15971
components:
- type: Transform
- pos: -3.5,-23.5
+ pos: -2.5,-10.5
parent: 8364
- uid: 18691
components:
@@ -143392,11 +146847,6 @@ entities:
- type: Transform
pos: 68.5,-38.5
parent: 8364
- - uid: 27382
- components:
- - type: Transform
- pos: 12.5,-82.5
- parent: 8364
- proto: SignFlammableMed
entities:
- uid: 27386
@@ -143406,10 +146856,10 @@ entities:
parent: 8364
- proto: SignGravity
entities:
- - uid: 5871
+ - uid: 4299
components:
- type: Transform
- pos: -1.5,-28.5
+ pos: -20.5,-71.5
parent: 8364
- proto: SignHead
entities:
@@ -143531,6 +146981,14 @@ entities:
- type: Transform
pos: 42.5,-21.5
parent: 8364
+- proto: SignNews
+ entities:
+ - uid: 3821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-10.5
+ parent: 8364
- proto: SignNosmoking
entities:
- uid: 5229
@@ -143576,21 +147034,6 @@ entities:
parent: 8364
- proto: SignRadiationMed
entities:
- - uid: 17041
- components:
- - type: Transform
- pos: 2.5,-23.5
- parent: 8364
- - uid: 17043
- components:
- - type: Transform
- pos: 1.5,-27.5
- parent: 8364
- - uid: 17045
- components:
- - type: Transform
- pos: -2.5,-27.5
- parent: 8364
- uid: 19068
components:
- type: Transform
@@ -143800,25 +147243,17 @@ entities:
- type: Transform
pos: -9.5,5.5
parent: 8364
- - uid: 27185
- components:
- - type: Transform
- pos: 30.5,-82.5
- parent: 8364
- - uid: 27186
- components:
- - type: Transform
- pos: 26.5,-82.5
- parent: 8364
- - uid: 27187
+ - uid: 28215
components:
- type: Transform
- pos: 26.5,-93.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-25.5
parent: 8364
- - uid: 27188
+ - uid: 28216
components:
- type: Transform
- pos: 30.5,-93.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-25.5
parent: 8364
- proto: SignSecureSmall
entities:
@@ -143889,6 +147324,11 @@ entities:
parent: 8364
- proto: SignSpace
entities:
+ - uid: 12261
+ components:
+ - type: Transform
+ pos: 63.5,-69.5
+ parent: 8364
- uid: 17810
components:
- type: Transform
@@ -143954,11 +147394,6 @@ entities:
- type: Transform
pos: 48.5,-66.5
parent: 8364
- - uid: 21525
- components:
- - type: Transform
- pos: 62.5,-69.5
- parent: 8364
- uid: 21530
components:
- type: Transform
@@ -144059,8 +147494,11 @@ entities:
- uid: 18597
components:
- type: Transform
+ anchored: False
pos: -13.5,-65.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- proto: Sink
entities:
- uid: 1878
@@ -144317,11 +147755,6 @@ entities:
parent: 8364
- proto: SMESBasic
entities:
- - uid: 865
- components:
- - type: Transform
- pos: 28.5,-113.5
- parent: 8364
- uid: 9461
components:
- type: MetaData
@@ -144365,28 +147798,39 @@ entities:
- uid: 17835
components:
- type: Transform
+ anchored: False
pos: -9.5,-66.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 18565
components:
- type: Transform
+ anchored: False
pos: -9.5,-65.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- uid: 22090
components:
- type: Transform
pos: -22.5,-71.5
parent: 8364
- - uid: 26964
+ - uid: 25206
components:
+ - type: MetaData
+ name: AI Core SMES
- type: Transform
- pos: 34.5,-91.5
+ pos: -1.5,-11.5
parent: 8364
- uid: 27765
components:
- type: Transform
+ anchored: False
pos: -9.5,-64.5
parent: 8364
+ - type: Physics
+ bodyType: Dynamic
- proto: SMESMachineCircuitboard
entities:
- uid: 12457
@@ -146010,6 +149454,16 @@ entities:
parent: 8364
- proto: SpawnPointBorg
entities:
+ - uid: 25093
+ components:
+ - type: Transform
+ pos: 59.5,-21.5
+ parent: 8364
+ - uid: 27149
+ components:
+ - type: Transform
+ pos: 62.5,-21.5
+ parent: 8364
- uid: 27671
components:
- type: Transform
@@ -146148,6 +149602,11 @@ entities:
parent: 8364
- proto: SpawnPointJanitor
entities:
+ - uid: 5858
+ components:
+ - type: Transform
+ pos: 5.5,-34.5
+ parent: 8364
- uid: 27566
components:
- type: Transform
@@ -146327,6 +149786,13 @@ entities:
- type: Transform
pos: -32.5,-26.5
parent: 8364
+- proto: SpawnPointReporter
+ entities:
+ - uid: 28070
+ components:
+ - type: Transform
+ pos: -22.5,-11.5
+ parent: 8364
- proto: SpawnPointResearchAssistant
entities:
- uid: 18629
@@ -146478,12 +149944,12 @@ entities:
- type: Transform
pos: 5.5,-55.5
parent: 8364
- - uid: 21469
+ - uid: 26952
components:
- type: Transform
pos: 5.5,-57.5
parent: 8364
- - uid: 22817
+ - uid: 26953
components:
- type: Transform
pos: 5.5,-56.5
@@ -146599,6 +150065,13 @@ entities:
- type: Transform
pos: 24.48325,-36.395668
parent: 8364
+- proto: SprayPainter
+ entities:
+ - uid: 27555
+ components:
+ - type: Transform
+ pos: 11.456799,-78.42873
+ parent: 8364
- proto: StasisBed
entities:
- uid: 1881
@@ -146618,31 +150091,29 @@ entities:
parent: 8364
- proto: StationAiUploadComputer
entities:
- - uid: 3539
+ - uid: 6144
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-14.5
+ pos: 0.5,-20.5
parent: 8364
- - uid: 6123
+ - uid: 27013
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-14.5
+ pos: -1.5,-20.5
parent: 8364
- proto: StationAnchor
entities:
- - uid: 15979
+ - uid: 26382
components:
- type: Transform
- pos: -20.5,-74.5
+ pos: -19.5,-82.5
parent: 8364
- proto: StationEfficiencyCircuitBoard
entities:
- uid: 27536
components:
- type: Transform
- pos: -4.631007,-12.460042
+ pos: 2.5469437,-23.688269
parent: 8364
- proto: StationMap
entities:
@@ -146867,16 +150338,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 16.5,7.5
parent: 8364
- - uid: 11158
- components:
- - type: Transform
- pos: 64.5,7.5
- parent: 8364
- - uid: 11159
- components:
- - type: Transform
- pos: 64.5,6.5
- parent: 8364
- uid: 13512
components:
- type: Transform
@@ -146977,6 +150438,12 @@ entities:
rot: 3.141592653589793 rad
pos: 65.5,-4.5
parent: 8364
+ - uid: 24977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -24.522638,-77.22648
+ parent: 8364
- uid: 26417
components:
- type: Transform
@@ -147127,6 +150594,16 @@ entities:
- type: Transform
pos: 9.5,-42.5
parent: 8364
+ - uid: 4385
+ components:
+ - type: Transform
+ pos: 26.5,-78.5
+ parent: 8364
+ - uid: 4624
+ components:
+ - type: Transform
+ pos: 26.5,-77.5
+ parent: 8364
- uid: 21424
components:
- type: Transform
@@ -147201,19 +150678,19 @@ entities:
loadingNetworkDemand: 260.0401
currentSupply: 260.0401
supplyRampPosition: 260.0401
- - uid: 5893
+ - uid: 4458
components:
- type: MetaData
- name: Command Substation
+ name: Gravity & Anchor Substation
- type: Transform
- pos: -10.5,-19.5
+ pos: -20.5,-72.5
parent: 8364
- - uid: 6246
+ - uid: 5893
components:
- type: MetaData
- name: Gravity Substation
+ name: Command Substation
- type: Transform
- pos: 1.5,-24.5
+ pos: -10.5,-19.5
parent: 8364
- uid: 6715
components:
@@ -147278,10 +150755,12 @@ entities:
loadingNetworkDemand: 225.0009
currentSupply: 225.0009
supplyRampPosition: 225.0009
- - uid: 21385
+ - uid: 24940
components:
+ - type: MetaData
+ name: AI Core Substation
- type: Transform
- pos: 24.5,-112.5
+ pos: 0.5,-11.5
parent: 8364
- uid: 25700
components:
@@ -147302,11 +150781,6 @@ entities:
- type: Transform
pos: 8.5,-78.5
parent: 8364
- - uid: 26963
- components:
- - type: Transform
- pos: 34.5,-89.5
- parent: 8364
- proto: SubstationMachineCircuitboard
entities:
- uid: 12456
@@ -147490,17 +150964,6 @@ entities:
- SurveillanceCameraCommand
nameSet: True
id: Vault
- - uid: 298
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -7.5,-23.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: HoP Office
- uid: 299
components:
- type: Transform
@@ -147577,28 +151040,6 @@ entities:
- SurveillanceCameraCommand
nameSet: True
id: Drone Storage
- - uid: 16635
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-10.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Upload
- - uid: 16712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -0.5,-16.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Bridge Tunnel
- uid: 17153
components:
- type: Transform
@@ -147632,312 +151073,115 @@ entities:
- SurveillanceCameraCommand
nameSet: True
id: EVA Supply
- - uid: 21763
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 1.5,-21.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Grav Gen
- - uid: 26849
- components:
- - type: Transform
- pos: 29.5,-81.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Airlock
- - uid: 26852
- components:
- - type: Transform
- pos: 29.5,-87.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Monitor Station
- - uid: 26875
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-90.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Entrance
- - uid: 26876
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-92.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Closet
- - uid: 26877
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 31.5,-92.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Power
- - uid: 26878
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-99.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext NW
- - uid: 27197
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-99.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext NE
- - uid: 27198
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-112.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Core E
- - uid: 27199
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 26.5,-112.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Core W
- - uid: 27200
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-105.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Core Door
- - uid: 27202
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-100.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Walkup
- - uid: 27203
+ - uid: 27657
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 31.5,-119.5
+ pos: 11.5,-24.5
parent: 8364
- type: SurveillanceCamera
setupAvailableNetworks:
- SurveillanceCameraCommand
nameSet: True
- id: AI Core Ext SE
- - uid: 27204
+ id: Show Room
+ - uid: 28199
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-119.5
+ pos: -1.5,-17.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext SW
- - uid: 27205
+ id: AI Core - South
+ - uid: 28200
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 21.5,-112.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext W
- - uid: 27206
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-112.5
+ pos: 1.5,-22.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext E
- - uid: 27207
+ id: AI Upload
+ - uid: 28201
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 33.5,-84.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Closet
- - uid: 27208
- components:
- - type: Transform
- pos: 24.5,-86.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext N
- - uid: 27236
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,-85.5
+ pos: -1.5,-26.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Ext
- - uid: 27657
+ id: AI Entrance Airlock
+ - uid: 28202
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 11.5,-24.5
+ pos: 1.5,-11.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: Show Room
- - uid: 27879
+ id: AI Core - North
+- proto: SurveillanceCameraEngineering
+ entities:
+ - uid: 122
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 23.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-45.5
parent: 8364
- type: SurveillanceCamera
setupAvailableNetworks:
- - SurveillanceCameraCommand
+ - SurveillanceCameraEngineering
nameSet: True
- id: AI Chube
- - uid: 27880
+ id: North Atmos
+ - uid: 294
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 11.5,-68.5
+ pos: -10.5,9.5
parent: 8364
- type: SurveillanceCamera
setupAvailableNetworks:
- - SurveillanceCameraCommand
+ - SurveillanceCameraEngineering
nameSet: True
- id: AI Core Chube
- - uid: 27881
+ id: EVA Supply
+ - uid: 3722
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 14.5,-68.5
+ pos: 12.5,-40.5
parent: 8364
- type: SurveillanceCamera
setupAvailableNetworks:
- - SurveillanceCameraCommand
+ - SurveillanceCameraEngineering
nameSet: True
- id: AI Chube
- - uid: 27884
+ id: Atmos Canister Storage
+ - uid: 7004
components:
- type: Transform
- pos: 28.5,-115.5
+ rot: -1.5707963267948966 rad
+ pos: 28.5,-75.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraCommand
- nameSet: True
- id: AI Core Core S
-- proto: SurveillanceCameraEngineering
- entities:
- - uid: 101
+ id: TEG Cool Loop
+ - uid: 7216
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -22.5,-68.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: SMES Bank
- - uid: 122
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-45.5
+ pos: -18.5,-81.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: North Atmos
- - uid: 294
+ id: Station Anchor
+ - uid: 8599
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -10.5,9.5
+ pos: 20.5,-71.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: EVA Supply
- - uid: 3722
+ id: TEG North
+ - uid: 8602
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 12.5,-40.5
+ rot: -1.5707963267948966 rad
+ pos: 11.5,-78.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmos Canister Storage
+ id: TEG West
- uid: 14221
components:
- type: Transform
@@ -147970,6 +151214,22 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Circuitry
+ - uid: 15958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-77.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: TEG East
+ - uid: 15959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 7.5,-80.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Singulo Cage Northeast
- uid: 16620
components:
- type: Transform
@@ -147991,17 +151251,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: 'Solars SW '
- - uid: 16625
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -42.5,-60.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Solars SW Airlock
- uid: 16802
components:
- type: Transform
@@ -148034,28 +151283,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Lobby
- - uid: 16983
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-75.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: TEG East
- - uid: 17072
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-76.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: TEG West
- uid: 17382
components:
- type: Transform
@@ -148067,17 +151294,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Telecomms
- - uid: 17426
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -20.5,-72.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Anchor Room
- uid: 17692
components:
- type: Transform
@@ -148100,6 +151316,14 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: AME Room
+ - uid: 19205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -42.5,-62.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Solars SW Door
- uid: 21346
components:
- type: Transform
@@ -148218,78 +151442,6 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Atmo Tank 4
- - uid: 21364
- components:
- - type: Transform
- pos: 21.5,-66.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmo Tank Air
- - uid: 21365
- components:
- - type: Transform
- pos: 17.5,-66.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmo Tank Oxy
- - uid: 21366
- components:
- - type: Transform
- pos: 13.5,-66.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Atmo Tank Nitro
- - uid: 21367
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 9.5,-78.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Singulo Cage Airlock
- - uid: 21368
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 7.5,-80.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Singulo Cage North
- - uid: 21370
- components:
- - type: Transform
- pos: 13.5,-81.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Teg Burn Chamber
- - uid: 21371
- components:
- - type: Transform
- pos: 25.5,-74.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraEngineering
- nameSet: True
- id: Teg cooling loop
- uid: 22987
components:
- type: Transform
@@ -148312,6 +151464,14 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Front Desk
+ - uid: 26589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,-69.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Solars SE Door
- uid: 26613
components:
- type: Transform
@@ -148323,6 +151483,13 @@ entities:
- SurveillanceCameraEngineering
nameSet: True
id: Break Room
+ - uid: 27289
+ components:
+ - type: MetaData
+ name: Gravity Generator
+ - type: Transform
+ pos: -24.5,-77.5
+ parent: 8364
- uid: 27420
components:
- type: Transform
@@ -148477,17 +151644,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Bar
- - uid: 291
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,1.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Bathroom
- uid: 292
components:
- type: Transform
@@ -148520,17 +151676,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Gameroom
- - uid: 16777
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-29.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Grav
- uid: 16778
components:
- type: Transform
@@ -148673,17 +151818,6 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hall Closet
- - uid: 16973
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -20.5,-10.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraGeneral
- nameSet: True
- id: Main Hall Office
- uid: 16974
components:
- type: Transform
@@ -149017,6 +152151,14 @@ entities:
- SurveillanceCameraGeneral
nameSet: True
id: Main Hall Library
+ - uid: 28203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-29.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Hall Outside AI
- proto: SurveillanceCameraMedical
entities:
- uid: 234
@@ -149061,17 +152203,6 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Medbay Storage
- - uid: 279
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.5,-27.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraMedical
- nameSet: True
- id: Emergency Room
- uid: 280
components:
- type: Transform
@@ -149192,6 +152323,14 @@ entities:
- SurveillanceCameraMedical
nameSet: True
id: Dissection
+ - uid: 24909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,-27.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Emergency Room
- uid: 27201
components:
- type: Transform
@@ -149345,17 +152484,6 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Toxins
- - uid: 226
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 71.5,-33.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraScience
- nameSet: True
- id: RD's Room
- uid: 227
components:
- type: Transform
@@ -149409,6 +152537,21 @@ entities:
- SurveillanceCameraScience
nameSet: True
id: Sci Inside
+ - uid: 27001
+ components:
+ - type: Transform
+ pos: 72.5,-37.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: RD's Room
+ - uid: 27002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,-20.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Robotics
- uid: 27219
components:
- type: Transform
@@ -149573,17 +152716,6 @@ entities:
- SurveillanceCameraSecurity
nameSet: True
id: Armory Exterior
- - uid: 233
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 63.5,-20.5
- parent: 8364
- - type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSecurity
- nameSet: True
- id: Robotics
- uid: 293
components:
- type: Transform
@@ -149944,6 +153076,13 @@ entities:
- SurveillanceCameraService
nameSet: True
id: Botany Backroom
+ - uid: 27000
+ components:
+ - type: Transform
+ pos: -21.5,-13.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Newsroom
- uid: 27582
components:
- type: Transform
@@ -150034,12 +153173,10 @@ entities:
- uid: 16786
components:
- type: Transform
- pos: -30.5,-16.5
+ rot: 1.5707963267948966 rad
+ pos: -29.5,-13.5
parent: 8364
- type: SurveillanceCamera
- setupAvailableNetworks:
- - SurveillanceCameraSupply
- nameSet: True
id: Cargo Bay Closet
- uid: 16787
components:
@@ -150070,6 +153207,26 @@ entities:
- type: Transform
pos: -15.5,-55.5
parent: 8364
+- proto: SurveillanceWirelessCameraAnchoredEntertainment
+ entities:
+ - uid: 27860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-9.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Newsroom
+- proto: SurveillanceWirelessCameraMovableEntertainment
+ entities:
+ - uid: 10703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -22.5,-10.5
+ parent: 8364
+ - type: SurveillanceCamera
+ id: Field Camera
- proto: Syringe
entities:
- uid: 4594
@@ -150088,26 +153245,6 @@ entities:
tags: []
- proto: Table
entities:
- - uid: 151
- components:
- - type: Transform
- pos: 3.5,-11.5
- parent: 8364
- - uid: 662
- components:
- - type: Transform
- pos: 27.5,-83.5
- parent: 8364
- - uid: 688
- components:
- - type: Transform
- pos: 26.5,-86.5
- parent: 8364
- - uid: 701
- components:
- - type: Transform
- pos: 30.5,-87.5
- parent: 8364
- uid: 1499
components:
- type: Transform
@@ -150183,11 +153320,6 @@ entities:
- type: Transform
pos: 18.5,-17.5
parent: 8364
- - uid: 3281
- components:
- - type: Transform
- pos: -4.5,-14.5
- parent: 8364
- uid: 3687
components:
- type: Transform
@@ -150264,16 +153396,6 @@ entities:
- type: Transform
pos: 4.5,11.5
parent: 8364
- - uid: 5729
- components:
- - type: Transform
- pos: -0.5,-11.5
- parent: 8364
- - uid: 5730
- components:
- - type: Transform
- pos: 3.5,-14.5
- parent: 8364
- uid: 5741
components:
- type: Transform
@@ -150384,11 +153506,6 @@ entities:
- type: Transform
pos: 37.5,-16.5
parent: 8364
- - uid: 8160
- components:
- - type: Transform
- pos: 3.5,-12.5
- parent: 8364
- uid: 8443
components:
- type: Transform
@@ -150875,11 +153992,6 @@ entities:
- type: Transform
pos: -35.5,-31.5
parent: 8364
- - uid: 14920
- components:
- - type: Transform
- pos: -4.5,-11.5
- parent: 8364
- uid: 14946
components:
- type: Transform
@@ -150950,11 +154062,6 @@ entities:
- type: Transform
pos: -31.5,-31.5
parent: 8364
- - uid: 15338
- components:
- - type: Transform
- pos: -4.5,-12.5
- parent: 8364
- uid: 15420
components:
- type: Transform
@@ -151157,11 +154264,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 6.5,-54.5
parent: 8364
- - uid: 17061
- components:
- - type: Transform
- pos: -2.5,-25.5
- parent: 8364
- uid: 17146
components:
- type: Transform
@@ -151568,11 +154670,6 @@ entities:
- type: Transform
pos: 6.5,32.5
parent: 8364
- - uid: 22553
- components:
- - type: Transform
- pos: -30.5,-18.5
- parent: 8364
- uid: 22585
components:
- type: Transform
@@ -151609,6 +154706,16 @@ entities:
- type: Transform
pos: 6.5,-61.5
parent: 8364
+ - uid: 23415
+ components:
+ - type: Transform
+ pos: -33.5,-18.5
+ parent: 8364
+ - uid: 25826
+ components:
+ - type: Transform
+ pos: -32.5,-18.5
+ parent: 8364
- uid: 25874
components:
- type: Transform
@@ -151669,16 +154776,6 @@ entities:
- type: Transform
pos: 59.5,-39.5
parent: 8364
- - uid: 27191
- components:
- - type: Transform
- pos: 32.5,-88.5
- parent: 8364
- - uid: 27192
- components:
- - type: Transform
- pos: 33.5,-88.5
- parent: 8364
- uid: 27376
components:
- type: Transform
@@ -152070,16 +155167,6 @@ entities:
parent: 8364
- proto: TableReinforced
entities:
- - uid: 828
- components:
- - type: Transform
- pos: 26.5,-105.5
- parent: 8364
- - uid: 834
- components:
- - type: Transform
- pos: 26.5,-106.5
- parent: 8364
- uid: 1610
components:
- type: Transform
@@ -152467,6 +155554,11 @@ entities:
- type: Transform
pos: 2.5,-43.5
parent: 8364
+ - uid: 25217
+ components:
+ - type: Transform
+ pos: -3.5,-24.5
+ parent: 8364
- uid: 26827
components:
- type: Transform
@@ -152487,6 +155579,21 @@ entities:
- type: Transform
pos: -10.5,3.5
parent: 8364
+ - uid: 26962
+ components:
+ - type: Transform
+ pos: 2.5,-24.5
+ parent: 8364
+ - uid: 27825
+ components:
+ - type: Transform
+ pos: 2.5,-23.5
+ parent: 8364
+ - uid: 27828
+ components:
+ - type: Transform
+ pos: -3.5,-23.5
+ parent: 8364
- proto: TableReinforcedGlass
entities:
- uid: 3167
@@ -152541,11 +155648,21 @@ entities:
- type: Transform
pos: 18.5,-6.5
parent: 8364
+ - uid: 3818
+ components:
+ - type: Transform
+ pos: -23.5,-10.5
+ parent: 8364
- uid: 4077
components:
- type: Transform
pos: -9.5,-15.5
parent: 8364
+ - uid: 4566
+ components:
+ - type: Transform
+ pos: -23.5,-9.5
+ parent: 8364
- uid: 5333
components:
- type: Transform
@@ -152626,11 +155743,29 @@ entities:
- type: Transform
pos: -11.5,-21.5
parent: 8364
+ - uid: 5789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-13.5
+ parent: 8364
+ - uid: 5827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-12.5
+ parent: 8364
- uid: 5867
components:
- type: Transform
pos: -9.5,-27.5
parent: 8364
+ - uid: 6123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -20.5,-13.5
+ parent: 8364
- uid: 6389
components:
- type: Transform
@@ -152721,6 +155856,11 @@ entities:
- type: Transform
pos: 12.5,-27.5
parent: 8364
+ - uid: 7087
+ components:
+ - type: Transform
+ pos: 57.5,-7.5
+ parent: 8364
- uid: 8392
components:
- type: Transform
@@ -152741,11 +155881,6 @@ entities:
- type: Transform
pos: 17.5,25.5
parent: 8364
- - uid: 8399
- components:
- - type: Transform
- pos: 17.5,24.5
- parent: 8364
- uid: 8543
components:
- type: Transform
@@ -152756,6 +155891,12 @@ entities:
- type: Transform
pos: 15.5,27.5
parent: 8364
+ - uid: 8601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 17.5,24.5
+ parent: 8364
- uid: 9042
components:
- type: Transform
@@ -152841,11 +155982,6 @@ entities:
- type: Transform
pos: 19.5,-6.5
parent: 8364
- - uid: 10548
- components:
- - type: Transform
- pos: 57.5,-7.5
- parent: 8364
- uid: 10661
components:
- type: Transform
@@ -153056,26 +156192,6 @@ entities:
- type: Transform
pos: -9.5,-14.5
parent: 8364
- - uid: 14090
- components:
- - type: Transform
- pos: -22.5,-13.5
- parent: 8364
- - uid: 14109
- components:
- - type: Transform
- pos: -22.5,-12.5
- parent: 8364
- - uid: 14112
- components:
- - type: Transform
- pos: -21.5,-11.5
- parent: 8364
- - uid: 14124
- components:
- - type: Transform
- pos: -22.5,-11.5
- parent: 8364
- uid: 14347
components:
- type: Transform
@@ -153191,6 +156307,12 @@ entities:
- type: Transform
pos: -10.5,-13.5
parent: 8364
+ - uid: 23219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -22.5,-13.5
+ parent: 8364
- uid: 25679
components:
- type: Transform
@@ -153252,26 +156374,26 @@ entities:
parent: 8364
- proto: TegCenter
entities:
- - uid: 5009
+ - uid: 4052
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-75.5
+ rot: 1.5707963267948966 rad
+ pos: 18.5,-76.5
parent: 8364
- proto: TegCirculator
entities:
- - uid: 5010
+ - uid: 27023
components:
- type: Transform
- pos: 16.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: 17.5,-76.5
parent: 8364
- type: PointLight
color: '#FF3300FF'
- - uid: 27658
+ - uid: 27025
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 14.5,-75.5
+ pos: 19.5,-76.5
parent: 8364
- type: PointLight
color: '#FF3300FF'
@@ -153282,11 +156404,6 @@ entities:
- type: Transform
pos: 53.5,-31.5
parent: 8364
- - uid: 16619
- components:
- - type: Transform
- pos: 32.5,-112.5
- parent: 8364
- uid: 27333
components:
- type: Transform
@@ -153508,19 +156625,19 @@ entities:
- type: Transform
pos: 5.5,-79.5
parent: 8364
-- proto: Thruster
+- proto: ThrusterUnanchored
entities:
- - uid: 12429
+ - uid: 27027
components:
- type: Transform
pos: -67.5,15.5
parent: 8364
- - uid: 12458
+ - uid: 27028
components:
- type: Transform
pos: -67.5,13.5
parent: 8364
- - uid: 12459
+ - uid: 27029
components:
- type: Transform
pos: -67.5,14.5
@@ -153677,21 +156794,11 @@ entities:
- type: Transform
pos: 49.5,16.5
parent: 8364
- - uid: 11751
- components:
- - type: Transform
- pos: 48.5,11.5
- parent: 8364
- uid: 12254
components:
- type: Transform
pos: -46.5,2.5
parent: 8364
- - uid: 13847
- components:
- - type: Transform
- pos: -45.5,22.5
- parent: 8364
- uid: 15977
components:
- type: Transform
@@ -153711,7 +156818,7 @@ entities:
- uid: 21227
components:
- type: Transform
- pos: 61.5,-19.5
+ pos: 61.706764,-19.34575
parent: 8364
- uid: 21234
components:
@@ -153728,11 +156835,6 @@ entities:
- type: Transform
pos: -3.614934,9.66169
parent: 8364
- - uid: 27194
- components:
- - type: Transform
- pos: 34.60652,-90.48169
- parent: 8364
- proto: ToolboxEmergency
entities:
- uid: 14294
@@ -153793,11 +156895,6 @@ entities:
- type: Transform
pos: 46.5,13.5
parent: 8364
- - uid: 11750
- components:
- - type: Transform
- pos: 49.5,11.5
- parent: 8364
- uid: 12252
components:
- type: Transform
@@ -153818,11 +156915,6 @@ entities:
- type: Transform
pos: -28.5,-34.5
parent: 8364
- - uid: 15975
- components:
- - type: Transform
- pos: -34.5,-63.5
- parent: 8364
- uid: 15976
components:
- type: Transform
@@ -153858,11 +156950,6 @@ entities:
- type: Transform
pos: -12.5005455,3.5448246
parent: 8364
- - uid: 27193
- components:
- - type: Transform
- pos: 34.48152,-90.32544
- parent: 8364
- uid: 27401
components:
- type: Transform
@@ -153873,6 +156960,13 @@ entities:
- type: Transform
pos: 7.435697,-65.321434
parent: 8364
+- proto: ToyAi
+ entities:
+ - uid: 5871
+ components:
+ - type: Transform
+ pos: 11.47881,-68.392944
+ parent: 8364
- proto: ToyAmongPequeno
entities:
- uid: 27450
@@ -153994,11 +157088,6 @@ entities:
parent: 8364
- proto: trayScanner
entities:
- - uid: 2389
- components:
- - type: Transform
- pos: 51.56124,-43.44272
- parent: 8364
- uid: 12266
components:
- type: Transform
@@ -154233,6 +157322,18 @@ entities:
rot: -1.5707963267948966 rad
pos: 20.5,2.5
parent: 8364
+- proto: Urn
+ entities:
+ - uid: 10873
+ components:
+ - type: Transform
+ pos: 74.51828,2.7055633
+ parent: 8364
+ - uid: 10874
+ components:
+ - type: Transform
+ pos: 74.51828,1.7257164
+ parent: 8364
- proto: Vaccinator
entities:
- uid: 18702
@@ -154398,7 +157499,7 @@ entities:
- type: Transform
pos: 21.5,15.5
parent: 8364
- - uid: 16208
+ - uid: 25880
components:
- type: Transform
pos: -38.5,-4.5
@@ -154447,11 +157548,6 @@ entities:
- type: Transform
pos: 7.5,0.5
parent: 8364
- - uid: 14564
- components:
- - type: Transform
- pos: -18.5,-10.5
- parent: 8364
- proto: VendingMachineCondiments
entities:
- uid: 6958
@@ -154755,18 +157851,6 @@ entities:
- type: Transform
pos: 34.5,-33.5
parent: 8364
-- proto: VendingMachineWinter
- entities:
- - uid: 2826
- components:
- - type: Transform
- pos: -39.5,-4.5
- parent: 8364
- - uid: 27533
- components:
- - type: Transform
- pos: 22.5,15.5
- parent: 8364
- proto: VendingMachineYouTool
entities:
- uid: 12245
@@ -155025,6 +158109,12 @@ entities:
- type: Transform
pos: -4.5,4.5
parent: 8364
+ - uid: 144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-11.5
+ parent: 8364
- uid: 178
components:
- type: Transform
@@ -155306,11 +158396,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -76.5,-2.5
parent: 8364
- - uid: 570
- components:
- - type: Transform
- pos: 30.5,-83.5
- parent: 8364
- uid: 585
components:
- type: Transform
@@ -155337,11 +158422,6 @@ entities:
- type: Transform
pos: -65.5,7.5
parent: 8364
- - uid: 591
- components:
- - type: Transform
- pos: 34.5,-84.5
- parent: 8364
- uid: 597
components:
- type: Transform
@@ -155496,16 +158576,6 @@ entities:
- type: Transform
pos: 45.5,16.5
parent: 8364
- - uid: 738
- components:
- - type: Transform
- pos: 30.5,-92.5
- parent: 8364
- - uid: 739
- components:
- - type: Transform
- pos: 26.5,-92.5
- parent: 8364
- uid: 740
components:
- type: Transform
@@ -155541,6 +158611,12 @@ entities:
- type: Transform
pos: -26.5,11.5
parent: 8364
+ - uid: 854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-73.5
+ parent: 8364
- uid: 875
components:
- type: Transform
@@ -155611,6 +158687,12 @@ entities:
- type: Transform
pos: 50.5,18.5
parent: 8364
+ - uid: 901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -5.5,-16.5
+ parent: 8364
- uid: 925
components:
- type: Transform
@@ -157737,6 +160819,11 @@ entities:
- type: Transform
pos: 75.5,-26.5
parent: 8364
+ - uid: 2389
+ components:
+ - type: Transform
+ pos: 27.5,-82.5
+ parent: 8364
- uid: 2408
components:
- type: Transform
@@ -157945,7 +161032,7 @@ entities:
- uid: 2832
components:
- type: Transform
- pos: -1.5,-17.5
+ pos: 24.5,-84.5
parent: 8364
- uid: 2862
components:
@@ -159104,45 +162191,17 @@ entities:
- type: Transform
pos: -22.5,-72.5
parent: 8364
- - uid: 3601
- components:
- - type: Transform
- pos: -21.5,-72.5
- parent: 8364
- - uid: 3602
- components:
- - type: Transform
- pos: -21.5,-71.5
- parent: 8364
- - uid: 3604
- components:
- - type: Transform
- pos: -20.5,-71.5
- parent: 8364
- - uid: 3605
- components:
- - type: Transform
- pos: -19.5,-76.5
- parent: 8364
- - uid: 3606
- components:
- - type: Transform
- pos: -18.5,-71.5
- parent: 8364
- uid: 3610
components:
- type: Transform
- pos: -21.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-15.5
parent: 8364
- uid: 3612
components:
- type: Transform
- pos: -21.5,-66.5
- parent: 8364
- - uid: 3613
- components:
- - type: Transform
- pos: -21.5,-65.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-17.5
parent: 8364
- uid: 3614
components:
@@ -159187,12 +162246,14 @@ entities:
- uid: 3659
components:
- type: Transform
- pos: -22.5,-74.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-17.5
parent: 8364
- uid: 3660
components:
- type: Transform
- pos: -22.5,-76.5
+ rot: 3.141592653589793 rad
+ pos: -4.5,-16.5
parent: 8364
- uid: 3664
components:
@@ -159217,37 +162278,24 @@ entities:
- uid: 3670
components:
- type: Transform
- pos: -22.5,-73.5
- parent: 8364
- - uid: 3671
- components:
- - type: Transform
- pos: -18.5,-72.5
- parent: 8364
- - uid: 3672
- components:
- - type: Transform
- pos: -18.5,-73.5
- parent: 8364
- - uid: 3673
- components:
- - type: Transform
- pos: -22.5,-75.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-16.5
parent: 8364
- uid: 3688
components:
- type: Transform
pos: 84.5,-60.5
parent: 8364
- - uid: 3698
+ - uid: 3695
components:
- type: Transform
- pos: 0.5,-65.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-15.5
parent: 8364
- - uid: 3701
+ - uid: 3698
components:
- type: Transform
- pos: 12.5,-82.5
+ pos: 0.5,-65.5
parent: 8364
- uid: 3706
components:
@@ -159399,18 +162447,6 @@ entities:
- type: Transform
pos: -9.5,-77.5
parent: 8364
- - uid: 3824
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-82.5
- parent: 8364
- - uid: 3825
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-85.5
- parent: 8364
- uid: 3830
components:
- type: Transform
@@ -159459,27 +162495,28 @@ entities:
- uid: 3854
components:
- type: Transform
- pos: 20.5,-79.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-12.5
parent: 8364
- uid: 3859
components:
- type: Transform
pos: 7.5,-79.5
parent: 8364
- - uid: 3867
+ - uid: 3865
components:
- type: Transform
- pos: -16.5,-71.5
+ pos: -1.5,-25.5
parent: 8364
- - uid: 3870
+ - uid: 3867
components:
- type: Transform
- pos: 20.5,-70.5
+ pos: -4.5,-25.5
parent: 8364
- - uid: 3873
+ - uid: 3870
components:
- type: Transform
- pos: 20.5,-80.5
+ pos: 20.5,-70.5
parent: 8364
- uid: 3895
components:
@@ -159668,11 +162705,21 @@ entities:
- type: Transform
pos: 67.5,-70.5
parent: 8364
+ - uid: 4005
+ components:
+ - type: Transform
+ pos: 24.5,-83.5
+ parent: 8364
- uid: 4028
components:
- type: Transform
pos: 23.5,-59.5
parent: 8364
+ - uid: 4031
+ components:
+ - type: Transform
+ pos: 17.5,-82.5
+ parent: 8364
- uid: 4033
components:
- type: Transform
@@ -159696,7 +162743,7 @@ entities:
- uid: 4041
components:
- type: Transform
- pos: -17.5,-71.5
+ pos: 19.5,-83.5
parent: 8364
- uid: 4043
components:
@@ -159708,11 +162755,6 @@ entities:
- type: Transform
pos: 10.5,-50.5
parent: 8364
- - uid: 4045
- components:
- - type: Transform
- pos: 20.5,-81.5
- parent: 8364
- uid: 4053
components:
- type: Transform
@@ -159731,14 +162773,7 @@ entities:
- uid: 4105
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 15.5,-87.5
- parent: 8364
- - uid: 4110
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 16.5,-87.5
+ pos: 26.5,-82.5
parent: 8364
- uid: 4114
components:
@@ -159850,12 +162885,6 @@ entities:
- type: Transform
pos: 15.5,-67.5
parent: 8364
- - uid: 4139
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 14.5,-87.5
- parent: 8364
- uid: 4142
components:
- type: Transform
@@ -160066,6 +163095,24 @@ entities:
- type: Transform
pos: 26.5,-45.5
parent: 8364
+ - uid: 4206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-13.5
+ parent: 8364
+ - uid: 4208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-13.5
+ parent: 8364
+ - uid: 4209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 4.5,-16.5
+ parent: 8364
- uid: 4216
components:
- type: Transform
@@ -160106,6 +163153,11 @@ entities:
- type: Transform
pos: 73.5,-65.5
parent: 8364
+ - uid: 4224
+ components:
+ - type: Transform
+ pos: -2.5,-25.5
+ parent: 8364
- uid: 4225
components:
- type: Transform
@@ -160121,67 +163173,6 @@ entities:
- type: Transform
pos: 78.5,-65.5
parent: 8364
- - uid: 4229
- components:
- - type: Transform
- pos: 25.5,-87.5
- parent: 8364
- - uid: 4230
- components:
- - type: Transform
- pos: 25.5,-88.5
- parent: 8364
- - uid: 4231
- components:
- - type: Transform
- pos: 26.5,-88.5
- parent: 8364
- - uid: 4232
- components:
- - type: Transform
- pos: 27.5,-88.5
- parent: 8364
- - uid: 4233
- components:
- - type: Transform
- pos: 29.5,-88.5
- parent: 8364
- - uid: 4234
- components:
- - type: Transform
- pos: 30.5,-88.5
- parent: 8364
- - uid: 4235
- components:
- - type: Transform
- pos: 31.5,-88.5
- parent: 8364
- - uid: 4236
- components:
- - type: Transform
- pos: 31.5,-87.5
- parent: 8364
- - uid: 4237
- components:
- - type: Transform
- pos: 32.5,-87.5
- parent: 8364
- - uid: 4238
- components:
- - type: Transform
- pos: 33.5,-87.5
- parent: 8364
- - uid: 4239
- components:
- - type: Transform
- pos: 34.5,-87.5
- parent: 8364
- - uid: 4241
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 12.5,-87.5
- parent: 8364
- uid: 4243
components:
- type: Transform
@@ -160192,936 +163183,49 @@ entities:
- type: Transform
pos: 64.5,-58.5
parent: 8364
- - uid: 4247
- components:
- - type: Transform
- pos: 22.5,-88.5
- parent: 8364
- - uid: 4248
- components:
- - type: Transform
- pos: 22.5,-87.5
- parent: 8364
- - uid: 4249
- components:
- - type: Transform
- pos: 23.5,-87.5
- parent: 8364
- - uid: 4250
- components:
- - type: Transform
- pos: 24.5,-87.5
- parent: 8364
- - uid: 4251
- components:
- - type: Transform
- pos: 21.5,-89.5
- parent: 8364
- - uid: 4252
- components:
- - type: Transform
- pos: 21.5,-90.5
- parent: 8364
- - uid: 4253
- components:
- - type: Transform
- pos: 21.5,-91.5
- parent: 8364
- - uid: 4255
- components:
- - type: Transform
- pos: 26.5,-94.5
- parent: 8364
- - uid: 4256
- components:
- - type: Transform
- pos: 22.5,-93.5
- parent: 8364
- - uid: 4258
- components:
- - type: Transform
- pos: 22.5,-94.5
- parent: 8364
- - uid: 4259
- components:
- - type: Transform
- pos: 21.5,-92.5
- parent: 8364
- - uid: 4260
- components:
- - type: Transform
- pos: 21.5,-93.5
- parent: 8364
- - uid: 4261
- components:
- - type: Transform
- pos: 26.5,-90.5
- parent: 8364
- - uid: 4262
- components:
- - type: Transform
- pos: 26.5,-89.5
- parent: 8364
- - uid: 4263
- components:
- - type: Transform
- pos: 26.5,-93.5
- parent: 8364
- - uid: 4264
- components:
- - type: Transform
- pos: 21.5,-88.5
- parent: 8364
- - uid: 4265
- components:
- - type: Transform
- pos: 34.5,-88.5
- parent: 8364
- - uid: 4266
- components:
- - type: Transform
- pos: 35.5,-88.5
- parent: 8364
- - uid: 4267
- components:
- - type: Transform
- pos: 35.5,-89.5
- parent: 8364
- - uid: 4268
- components:
- - type: Transform
- pos: 35.5,-90.5
- parent: 8364
- - uid: 4270
- components:
- - type: Transform
- pos: 35.5,-91.5
- parent: 8364
- - uid: 4271
- components:
- - type: Transform
- pos: 35.5,-92.5
- parent: 8364
- - uid: 4272
- components:
- - type: Transform
- pos: 35.5,-93.5
- parent: 8364
- - uid: 4273
- components:
- - type: Transform
- pos: 34.5,-93.5
- parent: 8364
- - uid: 4274
- components:
- - type: Transform
- pos: 34.5,-94.5
- parent: 8364
- - uid: 4277
- components:
- - type: Transform
- pos: 30.5,-89.5
- parent: 8364
- - uid: 4278
- components:
- - type: Transform
- pos: 30.5,-90.5
- parent: 8364
- - uid: 4279
- components:
- - type: Transform
- pos: 30.5,-94.5
- parent: 8364
- - uid: 4280
- components:
- - type: Transform
- pos: 30.5,-93.5
- parent: 8364
- - uid: 4281
- components:
- - type: Transform
- pos: 29.5,-94.5
- parent: 8364
- - uid: 4282
- components:
- - type: Transform
- pos: 27.5,-94.5
- parent: 8364
- - uid: 4283
- components:
- - type: Transform
- pos: 32.5,-118.5
- parent: 8364
- - uid: 4284
- components:
- - type: Transform
- pos: 32.5,-117.5
- parent: 8364
- - uid: 4285
- components:
- - type: Transform
- pos: 32.5,-116.5
- parent: 8364
- - uid: 4286
- components:
- - type: Transform
- pos: 31.5,-118.5
- parent: 8364
- - uid: 4287
- components:
- - type: Transform
- pos: 31.5,-117.5
- parent: 8364
- - uid: 4288
- components:
- - type: Transform
- pos: 31.5,-116.5
- parent: 8364
- - uid: 4289
- components:
- - type: Transform
- pos: 30.5,-118.5
- parent: 8364
- - uid: 4290
- components:
- - type: Transform
- pos: 30.5,-117.5
- parent: 8364
- - uid: 4291
- components:
- - type: Transform
- pos: 30.5,-116.5
- parent: 8364
- - uid: 4292
- components:
- - type: Transform
- pos: 29.5,-118.5
- parent: 8364
- - uid: 4293
- components:
- - type: Transform
- pos: 29.5,-117.5
- parent: 8364
- - uid: 4294
- components:
- - type: Transform
- pos: 29.5,-116.5
- parent: 8364
- - uid: 4295
- components:
- - type: Transform
- pos: 28.5,-118.5
- parent: 8364
- - uid: 4296
- components:
- - type: Transform
- pos: 28.5,-117.5
- parent: 8364
- - uid: 4297
- components:
- - type: Transform
- pos: 28.5,-116.5
- parent: 8364
- - uid: 4298
- components:
- - type: Transform
- pos: 27.5,-118.5
- parent: 8364
- - uid: 4299
- components:
- - type: Transform
- pos: 27.5,-117.5
- parent: 8364
- - uid: 4300
- components:
- - type: Transform
- pos: 27.5,-116.5
- parent: 8364
- - uid: 4301
- components:
- - type: Transform
- pos: 26.5,-118.5
- parent: 8364
- - uid: 4302
- components:
- - type: Transform
- pos: 26.5,-117.5
- parent: 8364
- - uid: 4303
- components:
- - type: Transform
- pos: 26.5,-116.5
- parent: 8364
- - uid: 4304
- components:
- - type: Transform
- pos: 25.5,-118.5
- parent: 8364
- - uid: 4305
- components:
- - type: Transform
- pos: 25.5,-117.5
- parent: 8364
- - uid: 4306
- components:
- - type: Transform
- pos: 25.5,-116.5
- parent: 8364
- - uid: 4307
- components:
- - type: Transform
- pos: 24.5,-118.5
- parent: 8364
- - uid: 4308
- components:
- - type: Transform
- pos: 24.5,-117.5
- parent: 8364
- - uid: 4309
- components:
- - type: Transform
- pos: 24.5,-116.5
- parent: 8364
- - uid: 4310
- components:
- - type: Transform
- pos: 33.5,-117.5
- parent: 8364
- - uid: 4311
- components:
- - type: Transform
- pos: 33.5,-116.5
- parent: 8364
- - uid: 4312
- components:
- - type: Transform
- pos: 33.5,-115.5
- parent: 8364
- - uid: 4313
- components:
- - type: Transform
- pos: 33.5,-114.5
- parent: 8364
- - uid: 4314
- components:
- - type: Transform
- pos: 33.5,-113.5
- parent: 8364
- - uid: 4315
- components:
- - type: Transform
- pos: 33.5,-112.5
- parent: 8364
- - uid: 4316
- components:
- - type: Transform
- pos: 33.5,-111.5
- parent: 8364
- - uid: 4317
- components:
- - type: Transform
- pos: 33.5,-110.5
- parent: 8364
- - uid: 4318
- components:
- - type: Transform
- pos: 33.5,-109.5
- parent: 8364
- - uid: 4319
- components:
- - type: Transform
- pos: 34.5,-116.5
- parent: 8364
- - uid: 4320
- components:
- - type: Transform
- pos: 34.5,-115.5
- parent: 8364
- - uid: 4321
- components:
- - type: Transform
- pos: 34.5,-114.5
- parent: 8364
- - uid: 4322
+ - uid: 4276
components:
- type: Transform
- pos: 34.5,-113.5
+ rot: 3.141592653589793 rad
+ pos: -26.5,-78.5
parent: 8364
- uid: 4323
components:
- type: Transform
- pos: 34.5,-112.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-74.5
parent: 8364
- uid: 4324
components:
- type: Transform
- pos: 34.5,-111.5
- parent: 8364
- - uid: 4325
- components:
- - type: Transform
- pos: 34.5,-110.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-77.5
parent: 8364
- uid: 4326
components:
- type: Transform
- pos: 34.5,-109.5
- parent: 8364
- - uid: 4327
- components:
- - type: Transform
- pos: 34.5,-108.5
- parent: 8364
- - uid: 4328
- components:
- - type: Transform
- pos: 34.5,-107.5
- parent: 8364
- - uid: 4329
- components:
- - type: Transform
- pos: 34.5,-106.5
- parent: 8364
- - uid: 4330
- components:
- - type: Transform
- pos: 34.5,-105.5
- parent: 8364
- - uid: 4331
- components:
- - type: Transform
- pos: 34.5,-104.5
- parent: 8364
- - uid: 4332
- components:
- - type: Transform
- pos: 34.5,-103.5
- parent: 8364
- - uid: 4333
- components:
- - type: Transform
- pos: 34.5,-102.5
- parent: 8364
- - uid: 4334
- components:
- - type: Transform
- pos: 33.5,-102.5
- parent: 8364
- - uid: 4335
- components:
- - type: Transform
- pos: 33.5,-101.5
- parent: 8364
- - uid: 4336
- components:
- - type: Transform
- pos: 33.5,-100.5
- parent: 8364
- - uid: 4337
- components:
- - type: Transform
- pos: 33.5,-99.5
- parent: 8364
- - uid: 4338
- components:
- - type: Transform
- pos: 33.5,-98.5
- parent: 8364
- - uid: 4339
- components:
- - type: Transform
- pos: 33.5,-97.5
- parent: 8364
- - uid: 4340
- components:
- - type: Transform
- pos: 34.5,-97.5
- parent: 8364
- - uid: 4341
- components:
- - type: Transform
- pos: 34.5,-96.5
- parent: 8364
- - uid: 4342
- components:
- - type: Transform
- pos: 34.5,-95.5
- parent: 8364
- - uid: 4343
- components:
- - type: Transform
- pos: 32.5,-115.5
- parent: 8364
- - uid: 4344
- components:
- - type: Transform
- pos: 32.5,-114.5
- parent: 8364
- - uid: 4345
- components:
- - type: Transform
- pos: 32.5,-113.5
- parent: 8364
- - uid: 4346
- components:
- - type: Transform
- pos: 24.5,-115.5
- parent: 8364
- - uid: 4347
- components:
- - type: Transform
- pos: 24.5,-114.5
- parent: 8364
- - uid: 4348
- components:
- - type: Transform
- pos: 24.5,-113.5
- parent: 8364
- - uid: 4349
- components:
- - type: Transform
- pos: 23.5,-117.5
- parent: 8364
- - uid: 4350
- components:
- - type: Transform
- pos: 23.5,-116.5
- parent: 8364
- - uid: 4351
- components:
- - type: Transform
- pos: 23.5,-115.5
- parent: 8364
- - uid: 4352
- components:
- - type: Transform
- pos: 23.5,-114.5
- parent: 8364
- - uid: 4353
- components:
- - type: Transform
- pos: 23.5,-113.5
- parent: 8364
- - uid: 4354
- components:
- - type: Transform
- pos: 23.5,-112.5
- parent: 8364
- - uid: 4355
- components:
- - type: Transform
- pos: 23.5,-111.5
- parent: 8364
- - uid: 4356
- components:
- - type: Transform
- pos: 23.5,-110.5
- parent: 8364
- - uid: 4357
- components:
- - type: Transform
- pos: 23.5,-109.5
- parent: 8364
- - uid: 4358
- components:
- - type: Transform
- pos: 22.5,-116.5
- parent: 8364
- - uid: 4359
- components:
- - type: Transform
- pos: 22.5,-115.5
- parent: 8364
- - uid: 4360
- components:
- - type: Transform
- pos: 22.5,-114.5
- parent: 8364
- - uid: 4361
- components:
- - type: Transform
- pos: 22.5,-113.5
- parent: 8364
- - uid: 4362
- components:
- - type: Transform
- pos: 22.5,-112.5
- parent: 8364
- - uid: 4363
- components:
- - type: Transform
- pos: 22.5,-111.5
- parent: 8364
- - uid: 4364
- components:
- - type: Transform
- pos: 22.5,-110.5
- parent: 8364
- - uid: 4365
- components:
- - type: Transform
- pos: 22.5,-109.5
- parent: 8364
- - uid: 4366
- components:
- - type: Transform
- pos: 22.5,-108.5
- parent: 8364
- - uid: 4367
- components:
- - type: Transform
- pos: 22.5,-107.5
- parent: 8364
- - uid: 4368
- components:
- - type: Transform
- pos: 22.5,-106.5
- parent: 8364
- - uid: 4369
- components:
- - type: Transform
- pos: 22.5,-105.5
- parent: 8364
- - uid: 4370
- components:
- - type: Transform
- pos: 22.5,-104.5
- parent: 8364
- - uid: 4371
- components:
- - type: Transform
- pos: 22.5,-103.5
- parent: 8364
- - uid: 4372
- components:
- - type: Transform
- pos: 22.5,-102.5
- parent: 8364
- - uid: 4373
- components:
- - type: Transform
- pos: 23.5,-102.5
- parent: 8364
- - uid: 4374
- components:
- - type: Transform
- pos: 23.5,-101.5
- parent: 8364
- - uid: 4375
- components:
- - type: Transform
- pos: 23.5,-100.5
- parent: 8364
- - uid: 4376
- components:
- - type: Transform
- pos: 23.5,-99.5
- parent: 8364
- - uid: 4377
- components:
- - type: Transform
- pos: 23.5,-98.5
- parent: 8364
- - uid: 4378
- components:
- - type: Transform
- pos: 23.5,-97.5
- parent: 8364
- - uid: 4379
- components:
- - type: Transform
- pos: 22.5,-97.5
- parent: 8364
- - uid: 4380
- components:
- - type: Transform
- pos: 22.5,-96.5
- parent: 8364
- - uid: 4381
- components:
- - type: Transform
- pos: 22.5,-95.5
- parent: 8364
- - uid: 4382
- components:
- - type: Transform
- pos: 31.5,-95.5
- parent: 8364
- - uid: 4383
- components:
- - type: Transform
- pos: 31.5,-96.5
- parent: 8364
- - uid: 4384
- components:
- - type: Transform
- pos: 31.5,-97.5
- parent: 8364
- - uid: 4385
- components:
- - type: Transform
- pos: 31.5,-98.5
+ pos: -21.5,-72.5
parent: 8364
- uid: 4386
components:
- type: Transform
pos: 64.5,-59.5
parent: 8364
- - uid: 4387
- components:
- - type: Transform
- pos: 31.5,-100.5
- parent: 8364
- - uid: 4388
- components:
- - type: Transform
- pos: 31.5,-101.5
- parent: 8364
- - uid: 4389
- components:
- - type: Transform
- pos: 31.5,-102.5
- parent: 8364
- - uid: 4390
- components:
- - type: Transform
- pos: 31.5,-103.5
- parent: 8364
- - uid: 4391
- components:
- - type: Transform
- pos: 31.5,-104.5
- parent: 8364
- - uid: 4392
- components:
- - type: Transform
- pos: 31.5,-105.5
- parent: 8364
- - uid: 4393
- components:
- - type: Transform
- pos: 31.5,-106.5
- parent: 8364
- - uid: 4394
- components:
- - type: Transform
- pos: 31.5,-107.5
- parent: 8364
- - uid: 4395
- components:
- - type: Transform
- pos: 32.5,-104.5
- parent: 8364
- - uid: 4396
- components:
- - type: Transform
- pos: 32.5,-105.5
- parent: 8364
- - uid: 4397
- components:
- - type: Transform
- pos: 32.5,-106.5
- parent: 8364
- - uid: 4398
- components:
- - type: Transform
- pos: 32.5,-107.5
- parent: 8364
- - uid: 4399
- components:
- - type: Transform
- pos: 32.5,-108.5
- parent: 8364
- - uid: 4400
- components:
- - type: Transform
- pos: 24.5,-104.5
- parent: 8364
- - uid: 4401
- components:
- - type: Transform
- pos: 24.5,-105.5
- parent: 8364
- - uid: 4402
- components:
- - type: Transform
- pos: 24.5,-106.5
- parent: 8364
- - uid: 4403
- components:
- - type: Transform
- pos: 24.5,-107.5
- parent: 8364
- - uid: 4404
- components:
- - type: Transform
- pos: 24.5,-108.5
- parent: 8364
- - uid: 4405
- components:
- - type: Transform
- pos: 25.5,-107.5
- parent: 8364
- - uid: 4406
- components:
- - type: Transform
- pos: 25.5,-106.5
- parent: 8364
- - uid: 4407
- components:
- - type: Transform
- pos: 25.5,-105.5
- parent: 8364
- - uid: 4408
- components:
- - type: Transform
- pos: 25.5,-104.5
- parent: 8364
- - uid: 4409
- components:
- - type: Transform
- pos: 25.5,-103.5
- parent: 8364
- - uid: 4410
- components:
- - type: Transform
- pos: 25.5,-102.5
- parent: 8364
- - uid: 4411
- components:
- - type: Transform
- pos: 25.5,-101.5
- parent: 8364
- - uid: 4412
- components:
- - type: Transform
- pos: 25.5,-100.5
- parent: 8364
- uid: 4413
components:
- type: Transform
pos: 59.5,-63.5
parent: 8364
- - uid: 4414
- components:
- - type: Transform
- pos: 25.5,-98.5
- parent: 8364
- - uid: 4415
- components:
- - type: Transform
- pos: 25.5,-97.5
- parent: 8364
- - uid: 4416
- components:
- - type: Transform
- pos: 25.5,-96.5
- parent: 8364
- - uid: 4417
- components:
- - type: Transform
- pos: 25.5,-95.5
- parent: 8364
- - uid: 4427
- components:
- - type: Transform
- pos: 30.5,-104.5
- parent: 8364
- - uid: 4428
- components:
- - type: Transform
- pos: 29.5,-104.5
- parent: 8364
- uid: 4429
components:
- type: Transform
- pos: 27.5,-104.5
+ pos: 16.5,-86.5
parent: 8364
- - uid: 4432
- components:
- - type: Transform
- pos: 26.5,-104.5
- parent: 8364
- - uid: 4448
- components:
- - type: Transform
- pos: 29.5,-111.5
- parent: 8364
- - uid: 4449
- components:
- - type: Transform
- pos: 29.5,-112.5
- parent: 8364
- - uid: 4450
- components:
- - type: Transform
- pos: 29.5,-113.5
- parent: 8364
- - uid: 4451
- components:
- - type: Transform
- pos: 27.5,-111.5
- parent: 8364
- - uid: 4452
- components:
- - type: Transform
- pos: 27.5,-112.5
- parent: 8364
- - uid: 4453
- components:
- - type: Transform
- pos: 27.5,-113.5
- parent: 8364
- - uid: 4454
- components:
- - type: Transform
- pos: 28.5,-112.5
- parent: 8364
- - uid: 4462
- components:
- - type: Transform
- pos: 32.5,-111.5
- parent: 8364
- - uid: 4478
- components:
- - type: Transform
- pos: 32.5,-110.5
- parent: 8364
- - uid: 4479
- components:
- - type: Transform
- pos: 32.5,-109.5
- parent: 8364
- - uid: 4480
- components:
- - type: Transform
- pos: 24.5,-111.5
- parent: 8364
- - uid: 4481
- components:
- - type: Transform
- pos: 24.5,-110.5
- parent: 8364
- - uid: 4482
- components:
- - type: Transform
- pos: 24.5,-109.5
- parent: 8364
- - uid: 4500
- components:
- - type: Transform
- pos: 20.5,-82.5
- parent: 8364
- - uid: 4503
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-87.5
- parent: 8364
- - uid: 4504
+ - uid: 4457
components:
- type: Transform
- pos: 1.5,-64.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-84.5
parent: 8364
- uid: 4505
components:
@@ -161158,20 +163262,23 @@ entities:
- type: Transform
pos: 7.5,-76.5
parent: 8364
- - uid: 4549
+ - uid: 4551
components:
- type: Transform
- pos: 20.5,-78.5
+ rot: 3.141592653589793 rad
+ pos: 3.5,-11.5
parent: 8364
- - uid: 4550
+ - uid: 4559
components:
- type: Transform
- pos: 20.5,-76.5
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-10.5
parent: 8364
- - uid: 4551
+ - uid: 4560
components:
- type: Transform
- pos: 20.5,-77.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-10.5
parent: 8364
- uid: 4580
components:
@@ -161223,46 +163330,6 @@ entities:
- type: Transform
pos: -20.5,-88.5
parent: 8364
- - uid: 4621
- components:
- - type: Transform
- pos: -20.5,-77.5
- parent: 8364
- - uid: 4622
- components:
- - type: Transform
- pos: -20.5,-78.5
- parent: 8364
- - uid: 4623
- components:
- - type: Transform
- pos: -20.5,-79.5
- parent: 8364
- - uid: 4624
- components:
- - type: Transform
- pos: -20.5,-80.5
- parent: 8364
- - uid: 4625
- components:
- - type: Transform
- pos: -20.5,-81.5
- parent: 8364
- - uid: 4626
- components:
- - type: Transform
- pos: -20.5,-82.5
- parent: 8364
- - uid: 4627
- components:
- - type: Transform
- pos: -20.5,-83.5
- parent: 8364
- - uid: 4628
- components:
- - type: Transform
- pos: -20.5,-76.5
- parent: 8364
- uid: 4647
components:
- type: Transform
@@ -161548,11 +163615,6 @@ entities:
- type: Transform
pos: -29.5,-75.5
parent: 8364
- - uid: 4834
- components:
- - type: Transform
- pos: -28.5,-74.5
- parent: 8364
- uid: 4835
components:
- type: Transform
@@ -161658,55 +163720,11 @@ entities:
- type: Transform
pos: -39.5,-42.5
parent: 8364
- - uid: 4935
- components:
- - type: Transform
- pos: 33.5,-83.5
- parent: 8364
- - uid: 4936
- components:
- - type: Transform
- pos: 32.5,-83.5
- parent: 8364
- - uid: 4937
- components:
- - type: Transform
- pos: 31.5,-83.5
- parent: 8364
- - uid: 4939
- components:
- - type: Transform
- pos: 30.5,-82.5
- parent: 8364
- - uid: 4940
- components:
- - type: Transform
- pos: 29.5,-82.5
- parent: 8364
- - uid: 4941
- components:
- - type: Transform
- pos: 27.5,-82.5
- parent: 8364
- - uid: 4942
- components:
- - type: Transform
- pos: 26.5,-82.5
- parent: 8364
- - uid: 4943
- components:
- - type: Transform
- pos: 34.5,-86.5
- parent: 8364
- uid: 4944
components:
- type: Transform
- pos: 34.5,-83.5
- parent: 8364
- - uid: 4953
- components:
- - type: Transform
- pos: 34.5,-86.5
+ rot: 3.141592653589793 rad
+ pos: -25.5,-83.5
parent: 8364
- uid: 4954
components:
@@ -161718,40 +163736,11 @@ entities:
- type: Transform
pos: 26.5,34.5
parent: 8364
- - uid: 4959
- components:
- - type: Transform
- pos: 34.5,-85.5
- parent: 8364
- uid: 4960
components:
- type: Transform
- pos: 25.5,-86.5
- parent: 8364
- - uid: 4961
- components:
- - type: Transform
- pos: 25.5,-85.5
- parent: 8364
- - uid: 4962
- components:
- - type: Transform
- pos: 25.5,-84.5
- parent: 8364
- - uid: 4963
- components:
- - type: Transform
- pos: 25.5,-83.5
- parent: 8364
- - uid: 4964
- components:
- - type: Transform
- pos: 25.5,-82.5
- parent: 8364
- - uid: 4965
- components:
- - type: Transform
- pos: 24.5,-82.5
+ rot: 3.141592653589793 rad
+ pos: -24.5,-83.5
parent: 8364
- uid: 4974
components:
@@ -161813,25 +163802,15 @@ entities:
- type: Transform
pos: 36.5,-70.5
parent: 8364
- - uid: 5015
- components:
- - type: Transform
- pos: -21.5,-76.5
- parent: 8364
- uid: 5110
components:
- type: Transform
pos: 18.5,31.5
parent: 8364
- - uid: 5197
- components:
- - type: Transform
- pos: 2.5,-23.5
- parent: 8364
- - uid: 5198
+ - uid: 5240
components:
- type: Transform
- pos: 2.5,-24.5
+ pos: 37.5,-85.5
parent: 8364
- uid: 5245
components:
@@ -161853,16 +163832,6 @@ entities:
- type: Transform
pos: 2.5,-22.5
parent: 8364
- - uid: 5273
- components:
- - type: Transform
- pos: 2.5,-18.5
- parent: 8364
- - uid: 5274
- components:
- - type: Transform
- pos: 2.5,-26.5
- parent: 8364
- uid: 5501
components:
- type: Transform
@@ -161903,36 +163872,11 @@ entities:
- type: Transform
pos: -15.5,1.5
parent: 8364
- - uid: 5701
- components:
- - type: Transform
- pos: 1.5,-17.5
- parent: 8364
- uid: 5705
components:
- type: Transform
pos: -2.5,-28.5
parent: 8364
- - uid: 5735
- components:
- - type: Transform
- pos: -3.5,-15.5
- parent: 8364
- - uid: 5756
- components:
- - type: Transform
- pos: -3.5,-26.5
- parent: 8364
- - uid: 5764
- components:
- - type: Transform
- pos: 0.5,-17.5
- parent: 8364
- - uid: 5770
- components:
- - type: Transform
- pos: -3.5,-17.5
- parent: 8364
- uid: 5785
components:
- type: Transform
@@ -161943,10 +163887,10 @@ entities:
- type: Transform
pos: -2.5,-26.5
parent: 8364
- - uid: 5864
+ - uid: 5874
components:
- type: Transform
- pos: -4.5,-15.5
+ pos: 12.5,-68.5
parent: 8364
- uid: 5881
components:
@@ -161968,40 +163912,27 @@ entities:
- type: Transform
pos: 4.5,-14.5
parent: 8364
- - uid: 6026
- components:
- - type: Transform
- pos: -2.5,-15.5
- parent: 8364
- uid: 6085
components:
- type: Transform
pos: 4.5,-19.5
parent: 8364
- - uid: 6100
- components:
- - type: Transform
- pos: -5.5,-20.5
- parent: 8364
- - uid: 6222
- components:
- - type: Transform
- pos: -3.5,-24.5
- parent: 8364
- - uid: 6247
+ - uid: 6095
components:
- type: Transform
- pos: -3.5,-23.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-78.5
parent: 8364
- - uid: 6311
+ - uid: 6097
components:
- type: Transform
- pos: -10.5,-81.5
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-75.5
parent: 8364
- - uid: 6312
+ - uid: 6100
components:
- type: Transform
- pos: -10.5,-82.5
+ pos: -5.5,-20.5
parent: 8364
- uid: 6313
components:
@@ -162023,16 +163954,6 @@ entities:
- type: Transform
pos: -10.5,-89.5
parent: 8364
- - uid: 6393
- components:
- - type: Transform
- pos: -3.5,-22.5
- parent: 8364
- - uid: 6394
- components:
- - type: Transform
- pos: -3.5,-18.5
- parent: 8364
- uid: 6453
components:
- type: Transform
@@ -162118,6 +164039,11 @@ entities:
- type: Transform
pos: 81.5,-55.5
parent: 8364
+ - uid: 7217
+ components:
+ - type: Transform
+ pos: 24.5,-86.5
+ parent: 8364
- uid: 7275
components:
- type: Transform
@@ -162849,11 +164775,6 @@ entities:
- type: Transform
pos: -3.5,10.5
parent: 8364
- - uid: 8045
- components:
- - type: Transform
- pos: -1.5,-15.5
- parent: 8364
- uid: 8046
components:
- type: Transform
@@ -162894,11 +164815,6 @@ entities:
- type: Transform
pos: 23.5,-20.5
parent: 8364
- - uid: 8076
- components:
- - type: Transform
- pos: -0.5,-15.5
- parent: 8364
- uid: 8081
components:
- type: Transform
@@ -162974,11 +164890,6 @@ entities:
- type: Transform
pos: -14.5,-16.5
parent: 8364
- - uid: 8111
- components:
- - type: Transform
- pos: 0.5,-15.5
- parent: 8364
- uid: 8112
components:
- type: Transform
@@ -163069,21 +164980,6 @@ entities:
- type: Transform
pos: -5.5,-14.5
parent: 8364
- - uid: 8147
- components:
- - type: Transform
- pos: 1.5,-15.5
- parent: 8364
- - uid: 8148
- components:
- - type: Transform
- pos: 2.5,-15.5
- parent: 8364
- - uid: 8149
- components:
- - type: Transform
- pos: 3.5,-15.5
- parent: 8364
- uid: 8151
components:
- type: Transform
@@ -163099,11 +164995,6 @@ entities:
- type: Transform
pos: -5.5,-17.5
parent: 8364
- - uid: 8159
- components:
- - type: Transform
- pos: -2.5,-17.5
- parent: 8364
- uid: 8166
components:
- type: Transform
@@ -163329,16 +165220,6 @@ entities:
- type: Transform
pos: 1.5,-9.5
parent: 8364
- - uid: 8247
- components:
- - type: Transform
- pos: 0.5,-9.5
- parent: 8364
- - uid: 8249
- components:
- - type: Transform
- pos: -1.5,-9.5
- parent: 8364
- uid: 8250
components:
- type: Transform
@@ -163867,11 +165748,6 @@ entities:
- type: Transform
pos: 5.5,-27.5
parent: 8364
- - uid: 9457
- components:
- - type: Transform
- pos: 61.5,-70.5
- parent: 8364
- uid: 9535
components:
- type: Transform
@@ -164177,6 +166053,16 @@ entities:
- type: Transform
pos: 25.5,-70.5
parent: 8364
+ - uid: 13776
+ components:
+ - type: Transform
+ pos: 3.5,-22.5
+ parent: 8364
+ - uid: 13780
+ components:
+ - type: Transform
+ pos: -4.5,-23.5
+ parent: 8364
- uid: 14095
components:
- type: Transform
@@ -164197,15 +166083,16 @@ entities:
- type: Transform
pos: -42.5,-21.5
parent: 8364
- - uid: 14209
+ - uid: 14447
components:
- type: Transform
- pos: 2.5,-17.5
+ pos: -17.5,-67.5
parent: 8364
- - uid: 14447
+ - uid: 14512
components:
- type: Transform
- pos: -17.5,-67.5
+ rot: 3.141592653589793 rad
+ pos: 27.5,-75.5
parent: 8364
- uid: 14648
components:
@@ -164247,6 +166134,16 @@ entities:
- type: Transform
pos: -33.5,-23.5
parent: 8364
+ - uid: 15489
+ components:
+ - type: Transform
+ pos: 27.5,-85.5
+ parent: 8364
+ - uid: 15491
+ components:
+ - type: Transform
+ pos: 27.5,-76.5
+ parent: 8364
- uid: 15545
components:
- type: Transform
@@ -164282,51 +166179,37 @@ entities:
- type: Transform
pos: -20.5,-64.5
parent: 8364
- - uid: 15885
+ - uid: 15881
components:
- type: Transform
- pos: -8.5,-75.5
+ pos: 27.5,-77.5
parent: 8364
- uid: 15886
components:
- type: Transform
- pos: -8.5,-73.5
- parent: 8364
- - uid: 15887
- components:
- - type: Transform
- pos: -8.5,-72.5
- parent: 8364
- - uid: 15888
- components:
- - type: Transform
- pos: -8.5,-71.5
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-9.5
parent: 8364
- - uid: 15899
+ - uid: 15975
components:
- type: Transform
- pos: 13.5,-87.5
+ pos: -4.5,-22.5
parent: 8364
- - uid: 16207
+ - uid: 16623
components:
- type: Transform
- pos: -9.5,-71.5
+ pos: 26.5,-85.5
parent: 8364
- - uid: 16697
+ - uid: 16632
components:
- type: Transform
- pos: 27.5,-75.5
+ pos: 27.5,-83.5
parent: 8364
- uid: 16709
components:
- type: Transform
pos: 28.5,-61.5
parent: 8364
- - uid: 16710
- components:
- - type: Transform
- pos: 27.5,-70.5
- parent: 8364
- uid: 16782
components:
- type: Transform
@@ -164432,6 +166315,11 @@ entities:
- type: Transform
pos: -17.5,-77.5
parent: 8364
+ - uid: 17174
+ components:
+ - type: Transform
+ pos: -20.5,-80.5
+ parent: 8364
- uid: 17297
components:
- type: Transform
@@ -164633,6 +166521,11 @@ entities:
- type: Transform
pos: -29.5,-23.5
parent: 8364
+ - uid: 19942
+ components:
+ - type: Transform
+ pos: 1.5,-25.5
+ parent: 8364
- uid: 19944
components:
- type: Transform
@@ -164658,25 +166551,45 @@ entities:
- type: Transform
pos: -16.5,-77.5
parent: 8364
- - uid: 19951
+ - uid: 19983
components:
- type: Transform
- pos: -10.5,-71.5
+ pos: -7.5,42.5
parent: 8364
- - uid: 19952
+ - uid: 19997
components:
- type: Transform
- pos: 20.5,-75.5
+ pos: -4.5,42.5
parent: 8364
- - uid: 19983
+ - uid: 20006
components:
- type: Transform
- pos: -7.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: -0.5,-9.5
parent: 8364
- - uid: 19997
+ - uid: 20015
components:
- type: Transform
- pos: -4.5,42.5
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-10.5
+ parent: 8364
+ - uid: 20016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-9.5
+ parent: 8364
+ - uid: 20017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-10.5
+ parent: 8364
+ - uid: 20024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-10.5
parent: 8364
- uid: 20143
components:
@@ -164843,24 +166756,6 @@ entities:
- type: Transform
pos: 17.5,-21.5
parent: 8364
- - uid: 22738
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-87.5
- parent: 8364
- - uid: 22746
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 18.5,-87.5
- parent: 8364
- - uid: 22748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 17.5,-87.5
- parent: 8364
- uid: 22751
components:
- type: Transform
@@ -164886,11 +166781,6 @@ entities:
- type: Transform
pos: -3.5,-76.5
parent: 8364
- - uid: 22851
- components:
- - type: Transform
- pos: -18.5,-75.5
- parent: 8364
- uid: 22852
components:
- type: Transform
@@ -164907,25 +166797,36 @@ entities:
- type: Transform
pos: -3.5,-65.5
parent: 8364
- - uid: 23201
+ - uid: 23148
components:
- type: Transform
- pos: -18.5,-77.5
+ pos: 20.5,-86.5
parent: 8364
- - uid: 23202
+ - uid: 23149
components:
- type: Transform
- pos: -18.5,-76.5
+ pos: 19.5,-86.5
parent: 8364
- - uid: 23207
+ - uid: 23165
components:
- type: Transform
- pos: 27.5,-59.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-93.5
parent: 8364
- - uid: 23219
+ - uid: 23170
components:
- type: Transform
- pos: 12.5,-84.5
+ pos: 17.5,-83.5
+ parent: 8364
+ - uid: 23201
+ components:
+ - type: Transform
+ pos: -18.5,-77.5
+ parent: 8364
+ - uid: 23207
+ components:
+ - type: Transform
+ pos: 27.5,-59.5
parent: 8364
- uid: 23237
components:
@@ -164937,6 +166838,56 @@ entities:
- type: Transform
pos: 23.5,-70.5
parent: 8364
+ - uid: 23558
+ components:
+ - type: Transform
+ pos: 3.5,-23.5
+ parent: 8364
+ - uid: 23771
+ components:
+ - type: Transform
+ pos: -18.5,-79.5
+ parent: 8364
+ - uid: 23911
+ components:
+ - type: Transform
+ pos: 11.5,-82.5
+ parent: 8364
+ - uid: 23915
+ components:
+ - type: Transform
+ pos: -21.5,-81.5
+ parent: 8364
+ - uid: 23916
+ components:
+ - type: Transform
+ pos: -10.5,-82.5
+ parent: 8364
+ - uid: 23918
+ components:
+ - type: Transform
+ pos: -18.5,-84.5
+ parent: 8364
+ - uid: 23919
+ components:
+ - type: Transform
+ pos: -21.5,-84.5
+ parent: 8364
+ - uid: 24395
+ components:
+ - type: Transform
+ pos: -25.5,-78.5
+ parent: 8364
+ - uid: 24586
+ components:
+ - type: Transform
+ pos: -17.5,-81.5
+ parent: 8364
+ - uid: 24687
+ components:
+ - type: Transform
+ pos: -17.5,-80.5
+ parent: 8364
- uid: 24689
components:
- type: Transform
@@ -164952,6 +166903,91 @@ entities:
- type: Transform
pos: 35.5,-37.5
parent: 8364
+ - uid: 24908
+ components:
+ - type: Transform
+ pos: 61.5,-69.5
+ parent: 8364
+ - uid: 24925
+ components:
+ - type: Transform
+ pos: -11.5,-82.5
+ parent: 8364
+ - uid: 24945
+ components:
+ - type: Transform
+ pos: -5.5,-18.5
+ parent: 8364
+ - uid: 24948
+ components:
+ - type: Transform
+ pos: -3.5,-18.5
+ parent: 8364
+ - uid: 24975
+ components:
+ - type: Transform
+ pos: -10.5,-83.5
+ parent: 8364
+ - uid: 25045
+ components:
+ - type: Transform
+ pos: 12.5,-84.5
+ parent: 8364
+ - uid: 25076
+ components:
+ - type: Transform
+ pos: 37.5,-86.5
+ parent: 8364
+ - uid: 25147
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-12.5
+ parent: 8364
+ - uid: 25185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -27.5,-76.5
+ parent: 8364
+ - uid: 25189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-93.5
+ parent: 8364
+ - uid: 25221
+ components:
+ - type: Transform
+ pos: 17.5,-86.5
+ parent: 8364
+ - uid: 25228
+ components:
+ - type: Transform
+ pos: -18.5,-80.5
+ parent: 8364
+ - uid: 25229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-93.5
+ parent: 8364
+ - uid: 25248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,-93.5
+ parent: 8364
+ - uid: 25250
+ components:
+ - type: Transform
+ pos: 24.5,-82.5
+ parent: 8364
+ - uid: 25260
+ components:
+ - type: Transform
+ pos: 17.5,-85.5
+ parent: 8364
- uid: 25667
components:
- type: Transform
@@ -165037,11 +167073,25 @@ entities:
- type: Transform
pos: 33.5,-44.5
parent: 8364
- - uid: 26051
+ - uid: 26000
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 11.5,-86.5
+ pos: -21.5,-80.5
+ parent: 8364
+ - uid: 26003
+ components:
+ - type: Transform
+ pos: -12.5,-82.5
+ parent: 8364
+ - uid: 26007
+ components:
+ - type: Transform
+ pos: -20.5,-84.5
+ parent: 8364
+ - uid: 26017
+ components:
+ - type: Transform
+ pos: -21.5,-83.5
parent: 8364
- uid: 26059
components:
@@ -165058,11 +167108,6 @@ entities:
- type: Transform
pos: 33.5,-42.5
parent: 8364
- - uid: 26065
- components:
- - type: Transform
- pos: 11.5,-84.5
- parent: 8364
- uid: 26067
components:
- type: Transform
@@ -165073,6 +167118,11 @@ entities:
- type: Transform
pos: 1.5,-50.5
parent: 8364
+ - uid: 26385
+ components:
+ - type: Transform
+ pos: 38.5,-85.5
+ parent: 8364
- uid: 26583
components:
- type: Transform
@@ -165238,6 +167288,28 @@ entities:
- type: Transform
pos: 1.5,-93.5
parent: 8364
+ - uid: 26798
+ components:
+ - type: Transform
+ pos: -5.5,-19.5
+ parent: 8364
+ - uid: 26799
+ components:
+ - type: Transform
+ pos: -4.5,-18.5
+ parent: 8364
+ - uid: 26800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-13.5
+ parent: 8364
+ - uid: 26801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -0.5,-13.5
+ parent: 8364
- uid: 26821
components:
- type: Transform
@@ -165293,10 +167365,273 @@ entities:
- type: Transform
pos: 9.5,-84.5
parent: 8364
- - uid: 27805
+ - uid: 26938
components:
- type: Transform
- pos: 12.5,-68.5
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-70.5
+ parent: 8364
+ - uid: 26940
+ components:
+ - type: Transform
+ pos: -3.5,-25.5
+ parent: 8364
+ - uid: 26960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,-93.5
+ parent: 8364
+ - uid: 26985
+ components:
+ - type: Transform
+ pos: 10.5,-68.5
+ parent: 8364
+ - uid: 26990
+ components:
+ - type: Transform
+ pos: 12.5,-82.5
+ parent: 8364
+ - uid: 26991
+ components:
+ - type: Transform
+ pos: -10.5,-81.5
+ parent: 8364
+ - uid: 27026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,-93.5
+ parent: 8364
+ - uid: 27043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-14.5
+ parent: 8364
+ - uid: 27047
+ components:
+ - type: Transform
+ pos: -23.5,-78.5
+ parent: 8364
+ - uid: 27053
+ components:
+ - type: Transform
+ pos: -21.5,-78.5
+ parent: 8364
+ - uid: 27057
+ components:
+ - type: Transform
+ pos: -22.5,-78.5
+ parent: 8364
+ - uid: 27067
+ components:
+ - type: Transform
+ pos: 19.5,-85.5
+ parent: 8364
+ - uid: 27068
+ components:
+ - type: Transform
+ pos: 12.5,-85.5
+ parent: 8364
+ - uid: 27080
+ components:
+ - type: Transform
+ pos: 12.5,-83.5
+ parent: 8364
+ - uid: 27146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,-93.5
+ parent: 8364
+ - uid: 27165
+ components:
+ - type: Transform
+ pos: -20.5,-78.5
+ parent: 8364
+ - uid: 27166
+ components:
+ - type: Transform
+ pos: -20.5,-79.5
+ parent: 8364
+ - uid: 27180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,-93.5
+ parent: 8364
+ - uid: 27290
+ components:
+ - type: Transform
+ pos: -18.5,-78.5
+ parent: 8364
+ - uid: 27618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-93.5
+ parent: 8364
+ - uid: 27621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-93.5
+ parent: 8364
+ - uid: 27623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-93.5
+ parent: 8364
+ - uid: 27624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-93.5
+ parent: 8364
+ - uid: 27625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,-93.5
+ parent: 8364
+ - uid: 27702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-93.5
+ parent: 8364
+ - uid: 27706
+ components:
+ - type: Transform
+ pos: 25.5,-85.5
+ parent: 8364
+ - uid: 27788
+ components:
+ - type: Transform
+ pos: -24.5,-78.5
+ parent: 8364
+ - uid: 27789
+ components:
+ - type: Transform
+ pos: -16.5,-82.5
+ parent: 8364
+ - uid: 27790
+ components:
+ - type: Transform
+ pos: -17.5,-82.5
+ parent: 8364
+ - uid: 27813
+ components:
+ - type: Transform
+ pos: -3.5,-22.5
+ parent: 8364
+ - uid: 27815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-14.5
+ parent: 8364
+ - uid: 27817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-15.5
+ parent: 8364
+ - uid: 27820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-15.5
+ parent: 8364
+ - uid: 27821
+ components:
+ - type: Transform
+ pos: 2.5,-18.5
+ parent: 8364
+ - uid: 27822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 0.5,-13.5
+ parent: 8364
+ - uid: 27826
+ components:
+ - type: Transform
+ pos: -17.5,-83.5
+ parent: 8364
+ - uid: 27827
+ components:
+ - type: Transform
+ pos: -17.5,-84.5
+ parent: 8364
+ - uid: 27829
+ components:
+ - type: Transform
+ pos: 1.5,-18.5
+ parent: 8364
+ - uid: 27831
+ components:
+ - type: Transform
+ pos: -1.5,-18.5
+ parent: 8364
+ - uid: 27834
+ components:
+ - type: Transform
+ pos: -2.5,-18.5
+ parent: 8364
+ - uid: 27837
+ components:
+ - type: Transform
+ pos: 3.5,-18.5
+ parent: 8364
+ - uid: 27838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-10.5
+ parent: 8364
+ - uid: 27839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 1.5,-10.5
+ parent: 8364
+ - uid: 27851
+ components:
+ - type: Transform
+ pos: 12.5,-86.5
+ parent: 8364
+ - uid: 27853
+ components:
+ - type: Transform
+ pos: 24.5,-85.5
+ parent: 8364
+ - uid: 27857
+ components:
+ - type: Transform
+ pos: 19.5,-82.5
+ parent: 8364
+ - uid: 27983
+ components:
+ - type: Transform
+ pos: 0.5,-18.5
+ parent: 8364
+ - uid: 28150
+ components:
+ - type: Transform
+ pos: 3.5,-25.5
+ parent: 8364
+ - uid: 28151
+ components:
+ - type: Transform
+ pos: 2.5,-25.5
+ parent: 8364
+ - uid: 28182
+ components:
+ - type: Transform
+ pos: 0.5,-25.5
parent: 8364
- proto: WallShuttle
entities:
@@ -167584,11 +169919,6 @@ entities:
- type: Transform
pos: -25.5,-14.5
parent: 8364
- - uid: 1382
- components:
- - type: Transform
- pos: -19.5,-10.5
- parent: 8364
- uid: 1383
components:
- type: Transform
@@ -167719,21 +170049,11 @@ entities:
- type: Transform
pos: -33.5,-17.5
parent: 8364
- - uid: 1409
- components:
- - type: Transform
- pos: -32.5,-17.5
- parent: 8364
- uid: 1410
components:
- type: Transform
pos: -29.5,-17.5
parent: 8364
- - uid: 1411
- components:
- - type: Transform
- pos: -30.5,-17.5
- parent: 8364
- uid: 1412
components:
- type: Transform
@@ -169584,11 +171904,6 @@ entities:
- type: Transform
pos: 83.5,-55.5
parent: 8364
- - uid: 2905
- components:
- - type: Transform
- pos: 83.5,-53.5
- parent: 8364
- uid: 2907
components:
- type: Transform
@@ -169634,11 +171949,6 @@ entities:
- type: Transform
pos: 77.5,-58.5
parent: 8364
- - uid: 2928
- components:
- - type: Transform
- pos: 77.5,-56.5
- parent: 8364
- uid: 2929
components:
- type: Transform
@@ -170339,6 +172649,12 @@ entities:
- type: Transform
pos: -2.5,-50.5
parent: 8364
+ - uid: 3783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -19.5,-10.5
+ parent: 8364
- uid: 3912
components:
- type: Transform
@@ -170404,35 +172720,10 @@ entities:
- type: Transform
pos: -19.5,-38.5
parent: 8364
- - uid: 4224
- components:
- - type: Transform
- pos: 26.5,-83.5
- parent: 8364
- - uid: 4240
- components:
- - type: Transform
- pos: 31.5,-86.5
- parent: 8364
- - uid: 4254
- components:
- - type: Transform
- pos: 25.5,-94.5
- parent: 8364
- - uid: 4257
- components:
- - type: Transform
- pos: 23.5,-94.5
- parent: 8364
- - uid: 4275
+ - uid: 4390
components:
- type: Transform
- pos: 33.5,-94.5
- parent: 8364
- - uid: 4276
- components:
- - type: Transform
- pos: 31.5,-94.5
+ pos: 84.5,-50.5
parent: 8364
- uid: 4656
components:
@@ -171814,6 +174105,11 @@ entities:
- type: Transform
pos: -18.5,-32.5
parent: 8364
+ - uid: 8078
+ components:
+ - type: Transform
+ pos: 84.5,-53.5
+ parent: 8364
- uid: 8082
components:
- type: Transform
@@ -172320,6 +174616,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-13.5
parent: 8364
+ - uid: 14109
+ components:
+ - type: Transform
+ pos: 84.5,-51.5
+ parent: 8364
- uid: 14194
components:
- type: Transform
@@ -173176,6 +175477,62 @@ entities:
- type: Transform
pos: 17.5,-5.5
parent: 8364
+ - uid: 26783
+ components:
+ - type: Transform
+ pos: -32.5,-17.5
+ parent: 8364
+ - uid: 27045
+ components:
+ - type: Transform
+ pos: -21.5,-71.5
+ parent: 8364
+ - uid: 27046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -20.5,-71.5
+ parent: 8364
+ - uid: 27048
+ components:
+ - type: Transform
+ pos: -18.5,-71.5
+ parent: 8364
+ - uid: 27049
+ components:
+ - type: Transform
+ pos: -21.5,-67.5
+ parent: 8364
+ - uid: 27050
+ components:
+ - type: Transform
+ pos: -21.5,-66.5
+ parent: 8364
+ - uid: 27051
+ components:
+ - type: Transform
+ pos: -21.5,-65.5
+ parent: 8364
+ - uid: 27055
+ components:
+ - type: Transform
+ pos: -18.5,-72.5
+ parent: 8364
+ - uid: 27056
+ components:
+ - type: Transform
+ pos: -18.5,-73.5
+ parent: 8364
+ - uid: 27062
+ components:
+ - type: Transform
+ pos: -16.5,-71.5
+ parent: 8364
+ - uid: 27064
+ components:
+ - type: Transform
+ pos: -17.5,-71.5
+ parent: 8364
- uid: 27614
components:
- type: Transform
@@ -173196,6 +175553,56 @@ entities:
- type: Transform
pos: 85.5,-12.5
parent: 8364
+ - uid: 27716
+ components:
+ - type: Transform
+ pos: 1.5,-64.5
+ parent: 8364
+ - uid: 27841
+ components:
+ - type: Transform
+ pos: -8.5,-75.5
+ parent: 8364
+ - uid: 27842
+ components:
+ - type: Transform
+ pos: -8.5,-73.5
+ parent: 8364
+ - uid: 27843
+ components:
+ - type: Transform
+ pos: -8.5,-72.5
+ parent: 8364
+ - uid: 27844
+ components:
+ - type: Transform
+ pos: -8.5,-71.5
+ parent: 8364
+ - uid: 27846
+ components:
+ - type: Transform
+ pos: -9.5,-71.5
+ parent: 8364
+ - uid: 27849
+ components:
+ - type: Transform
+ pos: -10.5,-71.5
+ parent: 8364
+ - uid: 27854
+ components:
+ - type: Transform
+ pos: -18.5,-75.5
+ parent: 8364
+ - uid: 27855
+ components:
+ - type: Transform
+ pos: -18.5,-76.5
+ parent: 8364
+ - uid: 27862
+ components:
+ - type: Transform
+ pos: 77.5,-56.5
+ parent: 8364
- proto: WallSolidRust
entities:
- uid: 1703
@@ -173564,6 +175971,13 @@ entities:
showEnts: False
occludes: True
ent: null
+- proto: WardrobeFormal
+ entities:
+ - uid: 3782
+ components:
+ - type: Transform
+ pos: -20.5,-9.5
+ parent: 8364
- proto: WardrobeGreenFilled
entities:
- uid: 13887
@@ -174167,15 +176581,15 @@ entities:
- type: Transform
pos: 20.5,8.5
parent: 8364
- - uid: 9428
+ - uid: 7911
components:
- type: Transform
- pos: -10.5,15.5
+ pos: -23.5,-13.5
parent: 8364
- - uid: 14110
+ - uid: 9428
components:
- type: Transform
- pos: -20.5,-13.5
+ pos: -10.5,15.5
parent: 8364
- uid: 21129
components:
@@ -174184,11 +176598,6 @@ entities:
parent: 8364
- proto: WaterTankFull
entities:
- - uid: 782
- components:
- - type: Transform
- pos: 23.5,-96.5
- parent: 8364
- uid: 1381
components:
- type: Transform
@@ -174530,7 +176939,7 @@ entities:
- uid: 21236
components:
- type: Transform
- pos: 61.5,-19.5
+ pos: 61.373264,-19.199818
parent: 8364
- proto: WelderIndustrial
entities:
@@ -174541,21 +176950,16 @@ entities:
parent: 8364
- proto: WeldingFuelTankFull
entities:
- - uid: 781
+ - uid: 4387
components:
- type: Transform
- pos: 33.5,-96.5
+ pos: 26.5,-76.5
parent: 8364
- uid: 8487
components:
- type: Transform
pos: 18.5,18.5
parent: 8364
- - uid: 11157
- components:
- - type: Transform
- pos: 65.5,6.5
- parent: 8364
- uid: 11683
components:
- type: Transform
@@ -174666,6 +177070,11 @@ entities:
- type: Transform
pos: -7.5,-77.5
parent: 8364
+ - uid: 27872
+ components:
+ - type: Transform
+ pos: 65.5,6.5
+ parent: 8364
- proto: Windoor
entities:
- uid: 2030
@@ -174673,12 +177082,6 @@ entities:
- type: Transform
pos: 58.5,-49.5
parent: 8364
- - uid: 5755
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-14.5
- parent: 8364
- uid: 6249
components:
- type: MetaData
@@ -174719,12 +177122,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 19.5,-2.5
parent: 8364
- - uid: 8146
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 3.5,-14.5
- parent: 8364
- uid: 8608
components:
- type: MetaData
@@ -175032,17 +177429,10 @@ entities:
parent: 8364
- proto: WindoorSecureCommandLocked
entities:
- - uid: 844
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-110.5
- parent: 8364
- - uid: 10706
+ - uid: 6394
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -1.5,-14.5
+ pos: 0.5,-20.5
parent: 8364
- uid: 15490
components:
@@ -175050,11 +177440,15 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,-18.5
parent: 8364
- - uid: 31746
+ - uid: 24941
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-14.5
+ pos: -1.5,-20.5
+ parent: 8364
+ - uid: 27823
+ components:
+ - type: Transform
+ pos: -0.5,-15.5
parent: 8364
- proto: WindoorSecureEngineeringLocked
entities:
@@ -176090,30 +178484,6 @@ entities:
rot: 3.141592653589793 rad
pos: -54.5,16.5
parent: 8364
- - uid: 847
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 27.5,-110.5
- parent: 8364
- - uid: 849
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-110.5
- parent: 8364
- - uid: 852
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-110.5
- parent: 8364
- - uid: 853
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-110.5
- parent: 8364
- uid: 1921
components:
- type: Transform
@@ -176143,28 +178513,17 @@ entities:
- type: Transform
pos: 35.5,-68.5
parent: 8364
- - uid: 3536
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -4.5,-14.5
- parent: 8364
- - uid: 3540
+ - uid: 4374
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -1.5,-14.5
+ pos: 0.5,-20.5
parent: 8364
- - uid: 3541
- components:
- - type: Transform
- pos: -4.5,-14.5
- parent: 8364
- - uid: 3542
+ - uid: 4375
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: -4.5,-14.5
+ pos: 0.5,-20.5
parent: 8364
- uid: 4841
components:
@@ -176192,51 +178551,6 @@ entities:
- type: Transform
pos: 6.5,-24.5
parent: 8364
- - uid: 5733
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 3.5,-14.5
- parent: 8364
- - uid: 5736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 3.5,-14.5
- parent: 8364
- - uid: 5740
- components:
- - type: Transform
- pos: 3.5,-14.5
- parent: 8364
- - uid: 6122
- components:
- - type: Transform
- pos: -1.5,-14.5
- parent: 8364
- - uid: 6142
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-14.5
- parent: 8364
- - uid: 6143
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 0.5,-14.5
- parent: 8364
- - uid: 6144
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 0.5,-14.5
- parent: 8364
- - uid: 6224
- components:
- - type: Transform
- pos: 0.5,-14.5
- parent: 8364
- uid: 7034
components:
- type: Transform
@@ -176582,6 +178896,12 @@ entities:
rot: -1.5707963267948966 rad
pos: 27.5,-19.5
parent: 8364
+ - uid: 23913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 0.5,-20.5
+ parent: 8364
- uid: 24434
components:
- type: Transform
@@ -176687,6 +179007,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -33.5,-18.5
parent: 8364
+ - uid: 28122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-20.5
+ parent: 8364
+ - uid: 28123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -1.5,-20.5
+ parent: 8364
+ - uid: 28124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-20.5
+ parent: 8364
- proto: Wirecutter
entities:
- uid: 11686
@@ -176694,11 +179032,6 @@ entities:
- type: Transform
pos: 70.5,12.5
parent: 8364
- - uid: 12268
- components:
- - type: Transform
- pos: -42.44495,5.5643377
- parent: 8364
- uid: 16303
components:
- type: Transform
@@ -176742,6 +179075,11 @@ entities:
- type: Transform
pos: 44.39694,-40.48777
parent: 8364
+ - uid: 5856
+ components:
+ - type: Transform
+ pos: -21.510796,-9.406136
+ parent: 8364
- uid: 6882
components:
- type: Transform
@@ -176762,16 +179100,6 @@ entities:
- type: Transform
pos: -44.5,14.5
parent: 8364
- - uid: 12262
- components:
- - type: Transform
- pos: -40.403015,5.626782
- parent: 8364
- - uid: 13780
- components:
- - type: Transform
- pos: -52.5,7.5
- parent: 8364
- uid: 14178
components:
- type: Transform
@@ -176782,11 +179110,6 @@ entities:
- type: Transform
pos: -21.530937,-40.42064
parent: 8364
- - uid: 15971
- components:
- - type: Transform
- pos: -25.576,-43.60518
- parent: 8364
- uid: 19199
components:
- type: Transform
@@ -176802,16 +179125,6 @@ entities:
- type: Transform
pos: 65.5,-53.5
parent: 8364
- - uid: 21417
- components:
- - type: Transform
- pos: 79.5,-47.5
- parent: 8364
- - uid: 27177
- components:
- - type: Transform
- pos: 33.549847,-95.50195
- parent: 8364
- uid: 27483
components:
- type: Transform
diff --git a/Resources/Maps/centcomm.yml b/Resources/Maps/centcomm.yml
index c2c8087bf891..88df424d9a8b 100644
--- a/Resources/Maps/centcomm.yml
+++ b/Resources/Maps/centcomm.yml
@@ -2330,7 +2330,8 @@ entities:
0,-2:
0: 65535
1,-4:
- 0: 65535
+ 0: 65023
+ 1: 512
1,-3:
0: 65535
1,-2:
@@ -2781,17 +2782,17 @@ entities:
0: 65535
4,-8:
0: 30719
- 1: 34816
+ 2: 34816
4,-7:
0: 65535
5,-8:
0: 61183
- 1: 4352
+ 2: 4352
5,-7:
0: 65535
6,-8:
0: 52479
- 2: 13056
+ 3: 13056
6,-7:
0: 65535
7,-8:
@@ -2872,6 +2873,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.14975
+ moles:
+ - 20.078888
+ - 75.53487
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -2930,8 +2946,6 @@ entities:
- type: Transform
pos: -16.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: Airlock
entities:
- uid: 5314
@@ -2974,6 +2988,30 @@ entities:
parent: 1668
- proto: AirlockBrigGlassLocked
entities:
+ - uid: 736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,20.5
+ parent: 1668
+ - uid: 816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,20.5
+ parent: 1668
+ - uid: 856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,16.5
+ parent: 1668
+ - uid: 898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 11.5,16.5
+ parent: 1668
- uid: 2299
components:
- type: Transform
@@ -2996,26 +3034,11 @@ entities:
parent: 1668
- proto: AirlockBrigLocked
entities:
- - uid: 2300
- components:
- - type: Transform
- pos: 21.5,22.5
- parent: 1668
- - uid: 2317
- components:
- - type: Transform
- pos: 19.5,17.5
- parent: 1668
- uid: 2343
components:
- type: Transform
pos: 33.5,20.5
parent: 1668
- - uid: 2344
- components:
- - type: Transform
- pos: 21.5,18.5
- parent: 1668
- proto: AirlockCargoGlassLocked
entities:
- uid: 1191
@@ -3291,6 +3314,28 @@ entities:
- type: Transform
pos: -19.5,7.5
parent: 1668
+- proto: AirlockChemistryGlassLocked
+ entities:
+ - uid: 731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-8.5
+ parent: 1668
+- proto: AirlockChemistryLocked
+ entities:
+ - uid: 732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,-6.5
+ parent: 1668
+ - uid: 734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 8.5,-11.5
+ parent: 1668
- proto: AirlockEngineeringGlassLocked
entities:
- uid: 5175
@@ -3372,16 +3417,6 @@ entities:
- type: Transform
pos: 33.5,-5.5
parent: 1668
- - uid: 1615
- components:
- - type: Transform
- pos: -14.5,25.5
- parent: 1668
- - uid: 1616
- components:
- - type: Transform
- pos: -14.5,27.5
- parent: 1668
- uid: 3970
components:
- type: Transform
@@ -3402,18 +3437,42 @@ entities:
- type: Transform
pos: 0.5,-44.5
parent: 1668
-- proto: AirlockExternalGlassLocked
+- proto: AirlockExternalGlassCargoLocked
entities:
- - uid: 1673
+ - uid: 620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,27.5
+ parent: 1668
+ - uid: 688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -14.5,25.5
+ parent: 1668
+ - uid: 729
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -9.5,32.5
parent: 1668
- - uid: 2010
+- proto: AirlockExternalGlassEngineeringLocked
+ entities:
+ - uid: 730
components:
- type: Transform
+ rot: -1.5707963267948966 rad
pos: -0.5,22.5
parent: 1668
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2011:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlassLocked
+ entities:
- uid: 4243
components:
- type: Transform
@@ -3521,6 +3580,12 @@ entities:
- type: Transform
pos: -2.5,25.5
parent: 1668
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 730:
+ - DoorStatus: DoorBolt
- uid: 4242
components:
- type: Transform
@@ -3576,11 +3641,6 @@ entities:
- type: Transform
pos: 14.5,-3.5
parent: 1668
- - uid: 730
- components:
- - type: Transform
- pos: 4.5,-8.5
- parent: 1668
- proto: AirlockMedicalLocked
entities:
- uid: 574
@@ -3588,16 +3648,6 @@ entities:
- type: Transform
pos: 16.5,-6.5
parent: 1668
- - uid: 729
- components:
- - type: Transform
- pos: 4.5,-6.5
- parent: 1668
- - uid: 731
- components:
- - type: Transform
- pos: 8.5,-11.5
- parent: 1668
- uid: 852
components:
- type: Transform
@@ -3625,25 +3675,22 @@ entities:
- type: Transform
pos: 23.5,-11.5
parent: 1668
- - uid: 2497
- components:
- - type: Transform
- pos: 12.5,16.5
- parent: 1668
- - uid: 2498
+- proto: AirlockSecurityLawyerLocked
+ entities:
+ - uid: 349
components:
- type: Transform
- pos: 11.5,16.5
+ pos: 19.5,17.5
parent: 1668
- - uid: 2499
+ - uid: 354
components:
- type: Transform
- pos: 12.5,19.5
+ pos: 21.5,22.5
parent: 1668
- - uid: 2500
+ - uid: 356
components:
- type: Transform
- pos: 11.5,19.5
+ pos: 21.5,18.5
parent: 1668
- proto: AirlockSecurityLocked
entities:
@@ -3682,46 +3729,46 @@ entities:
- type: Transform
pos: 5.5,23.5
parent: 1668
-- proto: APCBasic
+- proto: APCHyperCapacity
entities:
- - uid: 688
+ - uid: 905
components:
- type: Transform
pos: -3.5,5.5
parent: 1668
- - uid: 856
+ - uid: 963
components:
- type: Transform
pos: 20.5,6.5
parent: 1668
- - uid: 905
+ - uid: 977
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 20.5,-7.5
parent: 1668
- - uid: 963
+ - uid: 978
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 23.5,-10.5
parent: 1668
- - uid: 977
+ - uid: 979
components:
- type: Transform
- pos: 10.5,-3.5
+ pos: 9.5,2.5
parent: 1668
- - uid: 978
+ - uid: 1088
components:
- type: Transform
pos: 12.5,7.5
parent: 1668
- - uid: 979
+ - uid: 1185
components:
- type: Transform
- pos: 9.5,2.5
+ pos: 10.5,-3.5
parent: 1668
- - uid: 1088
+ - uid: 1188
components:
- type: Transform
pos: -2.5,2.5
@@ -3742,239 +3789,239 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,-9.5
parent: 1668
- - uid: 1674
+ - uid: 1615
components:
- type: Transform
pos: -14.5,18.5
parent: 1668
- - uid: 1675
+ - uid: 1616
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -4.5,17.5
parent: 1668
- - uid: 1676
+ - uid: 1673
components:
- type: Transform
pos: -8.5,13.5
parent: 1668
- - uid: 1677
+ - uid: 1674
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -4.5,19.5
parent: 1668
- - uid: 1955
+ - uid: 1675
components:
- type: Transform
pos: 1.5,17.5
parent: 1668
- - uid: 2013
+ - uid: 1676
components:
- type: Transform
pos: -1.5,22.5
parent: 1668
- - uid: 2562
+ - uid: 1677
components:
- type: Transform
- pos: 7.5,16.5
+ rot: -1.5707963267948966 rad
+ pos: 7.5,18.5
parent: 1668
- - uid: 2563
+ - uid: 1955
components:
- type: Transform
pos: 17.5,17.5
parent: 1668
- - uid: 2564
+ - uid: 2010
components:
- type: Transform
pos: 24.5,14.5
parent: 1668
- - uid: 2565
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 35.5,19.5
- parent: 1668
- - uid: 2566
+ - uid: 2235
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 21.5,21.5
parent: 1668
- - uid: 2944
+ - uid: 2300
components:
- type: Transform
pos: 9.5,26.5
parent: 1668
- - uid: 2945
+ - uid: 2317
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 7.5,18.5
+ pos: 7.5,16.5
parent: 1668
- - uid: 2946
+ - uid: 2344
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 7.5,30.5
parent: 1668
- - uid: 3463
+ - uid: 2497
components:
- type: Transform
pos: -22.5,7.5
parent: 1668
- - uid: 3464
+ - uid: 2498
components:
- type: Transform
pos: -16.5,13.5
parent: 1668
- - uid: 3465
+ - uid: 2499
components:
- type: Transform
pos: -22.5,13.5
parent: 1668
- - uid: 3466
+ - uid: 2500
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -13.5,6.5
parent: 1668
- - uid: 3986
+ - uid: 2556
components:
- type: Transform
pos: -31.5,2.5
parent: 1668
- - uid: 3987
+ - uid: 2558
components:
- type: Transform
pos: -31.5,7.5
parent: 1668
- - uid: 3988
+ - uid: 2562
components:
- type: Transform
pos: -21.5,-2.5
parent: 1668
- - uid: 3989
+ - uid: 2563
components:
- type: Transform
pos: -13.5,-2.5
parent: 1668
- - uid: 3990
+ - uid: 2564
components:
- type: Transform
pos: -17.5,1.5
parent: 1668
- - uid: 4361
+ - uid: 2565
components:
- type: Transform
pos: 34.5,-9.5
parent: 1668
- - uid: 4475
+ - uid: 2566
components:
- type: Transform
pos: -2.5,-24.5
parent: 1668
- - uid: 4476
+ - uid: 2755
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 7.5,-24.5
parent: 1668
- - uid: 4477
+ - uid: 2771
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -8.5,-24.5
parent: 1668
- - uid: 4478
+ - uid: 2776
components:
- type: Transform
pos: -9.5,-17.5
parent: 1668
- - uid: 4479
+ - uid: 2790
components:
- type: Transform
pos: 8.5,-17.5
parent: 1668
- - uid: 4480
+ - uid: 2823
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 1.5,-20.5
parent: 1668
- - uid: 4977
+ - uid: 2832
components:
- type: Transform
pos: 20.5,-12.5
parent: 1668
- - uid: 4992
+ - uid: 2858
components:
- type: Transform
pos: 18.5,-19.5
parent: 1668
- - uid: 5133
+ - uid: 2859
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 22.5,-23.5
parent: 1668
- - uid: 5146
+ - uid: 2862
components:
- type: Transform
pos: 29.5,-19.5
parent: 1668
- - uid: 5257
+ - uid: 2863
components:
- type: Transform
pos: 30.5,-14.5
parent: 1668
- - uid: 5321
+ - uid: 2876
components:
- type: Transform
pos: 32.5,-27.5
parent: 1668
- - uid: 5423
+ - uid: 2886
components:
- type: Transform
pos: 16.5,-28.5
parent: 1668
- - uid: 5934
+ - uid: 2920
components:
- type: Transform
pos: -16.5,-30.5
parent: 1668
- - uid: 6004
+ - uid: 2925
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -17.5,-22.5
parent: 1668
- - uid: 6103
+ - uid: 2926
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -15.5,-28.5
parent: 1668
- - uid: 6180
+ - uid: 2927
components:
- type: Transform
pos: 7.5,-30.5
parent: 1668
- - uid: 6181
+ - uid: 2928
components:
- type: Transform
pos: -8.5,-30.5
parent: 1668
- - uid: 6277
+ - uid: 2944
components:
- type: Transform
pos: -2.5,-34.5
parent: 1668
- - uid: 6397
+ - uid: 2945
components:
- type: Transform
pos: -2.5,-40.5
parent: 1668
+ - uid: 6977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,19.5
+ parent: 1668
- proto: Ash
entities:
- uid: 3828
@@ -4180,8 +4227,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: Bed
entities:
- uid: 2718
@@ -4296,101 +4341,67 @@ entities:
- type: Transform
pos: -4.5,21.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1804
- uid: 1607
components:
- type: Transform
pos: -16.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1611
- uid: 1608
components:
- type: Transform
pos: -16.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1612
- uid: 1609
components:
- type: Transform
pos: -14.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1612
- uid: 1610
components:
- type: Transform
pos: -14.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1611
- - uid: 2790
+ - uid: 3787
components:
- type: Transform
- pos: 11.5,31.5
+ pos: -16.5,-7.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2928
- - uid: 2886
+ - uid: 3788
components:
- type: Transform
- pos: 14.5,31.5
+ pos: -16.5,-6.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2928
- - uid: 2925
+ - uid: 3789
components:
- type: Transform
- pos: 7.5,31.5
+ pos: -16.5,-5.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2927
- - uid: 2926
+ - uid: 4762
components:
- type: Transform
- pos: 4.5,31.5
+ pos: 18.5,-17.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2927
- - uid: 3787
+- proto: BlastDoorCentralCommand
+ entities:
+ - uid: 2946
components:
- type: Transform
- pos: -16.5,-7.5
+ pos: 4.5,31.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2920
- - uid: 3788
+ - uid: 3420
components:
- type: Transform
- pos: -16.5,-6.5
+ pos: 7.5,31.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2920
- - uid: 3789
+ - uid: 3431
components:
- type: Transform
- pos: -16.5,-5.5
+ pos: 11.5,31.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2920
- - uid: 4762
+ - uid: 4476
components:
- type: Transform
- pos: 18.5,-17.5
+ pos: 14.5,31.5
parent: 1668
- proto: BlastDoorExterior1Open
entities:
@@ -4453,25 +4464,16 @@ entities:
- type: Transform
pos: -1.5,-7.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 789
- uid: 787
components:
- type: Transform
pos: -0.5,-7.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 789
- uid: 788
components:
- type: Transform
pos: 0.5,-7.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 789
- uid: 1430
components:
- type: Transform
@@ -4517,41 +4519,26 @@ entities:
- type: Transform
pos: 4.5,10.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 2147
components:
- type: Transform
pos: 4.5,11.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 2148
components:
- type: Transform
pos: 4.5,12.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 2149
components:
- type: Transform
pos: 4.5,13.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 2150
components:
- type: Transform
pos: 4.5,14.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 2712
- uid: 3865
components:
- type: Transform
@@ -4567,65 +4554,41 @@ entities:
- type: Transform
pos: 28.5,-25.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5235
components:
- type: Transform
pos: 28.5,-24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5236
components:
- type: Transform
pos: 28.5,-23.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5237
components:
- type: Transform
pos: 28.5,-22.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5238
components:
- type: Transform
pos: 28.5,-21.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5239
components:
- type: Transform
pos: 31.5,-19.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5240
components:
- type: Transform
pos: 33.5,-19.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5241
components:
- type: Transform
pos: 32.5,-19.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5242
- uid: 5951
components:
- type: Transform
@@ -4661,41 +4624,26 @@ entities:
- type: Transform
pos: -2.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- uid: 6522
components:
- type: Transform
pos: -1.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- uid: 6523
components:
- type: Transform
pos: -0.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- uid: 6524
components:
- type: Transform
pos: 0.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- uid: 6525
components:
- type: Transform
pos: 1.5,-39.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 6442
- proto: Bookshelf
entities:
- uid: 2370
@@ -4913,6 +4861,13 @@ entities:
- type: Transform
pos: -20.46677,5.55778
parent: 1668
+- proto: BoxFolderNuclearCodes
+ entities:
+ - uid: 6994
+ components:
+ - type: Transform
+ pos: -10.309893,6.5837517
+ parent: 1668
- proto: BoxFolderRed
entities:
- uid: 1398
@@ -5048,56 +5003,38 @@ entities:
- type: Transform
pos: 4.5,26.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2832:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- uid: 3870
components:
- type: Transform
pos: 14.5,29.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2863:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- uid: 3906
components:
- type: Transform
pos: 14.5,26.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2776:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- uid: 6602
components:
- type: Transform
pos: 4.5,29.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2862:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
- uid: 6649
components:
- type: Transform
pos: 14.5,23.5
parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2558:
- - Start: Close
- - Timer: AutoClose
- - Timer: Open
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 6578
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 1668
+ - uid: 6592
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1668
- proto: CableApcExtension
entities:
- uid: 857
@@ -16404,6 +16341,81 @@ entities:
- type: Transform
pos: -2.5,-40.5
parent: 1668
+ - uid: 6515
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 1668
+ - uid: 6516
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 1668
+ - uid: 6517
+ components:
+ - type: Transform
+ pos: 7.5,29.5
+ parent: 1668
+ - uid: 6518
+ components:
+ - type: Transform
+ pos: 7.5,28.5
+ parent: 1668
+ - uid: 6519
+ components:
+ - type: Transform
+ pos: 7.5,27.5
+ parent: 1668
+ - uid: 6520
+ components:
+ - type: Transform
+ pos: 7.5,26.5
+ parent: 1668
+ - uid: 6547
+ components:
+ - type: Transform
+ pos: 8.5,26.5
+ parent: 1668
+ - uid: 6548
+ components:
+ - type: Transform
+ pos: 10.5,26.5
+ parent: 1668
+ - uid: 6549
+ components:
+ - type: Transform
+ pos: 11.5,26.5
+ parent: 1668
+ - uid: 6550
+ components:
+ - type: Transform
+ pos: 11.5,27.5
+ parent: 1668
+ - uid: 6551
+ components:
+ - type: Transform
+ pos: 11.5,28.5
+ parent: 1668
+ - uid: 6552
+ components:
+ - type: Transform
+ pos: 11.5,29.5
+ parent: 1668
+ - uid: 6553
+ components:
+ - type: Transform
+ pos: 11.5,30.5
+ parent: 1668
+ - uid: 6554
+ components:
+ - type: Transform
+ pos: 12.5,30.5
+ parent: 1668
+ - uid: 6577
+ components:
+ - type: Transform
+ pos: 13.5,30.5
+ parent: 1668
- uid: 6849
components:
- type: Transform
@@ -17729,24 +17741,12 @@ entities:
- type: Transform
pos: -19.5,-4.5
parent: 1668
- - uid: 3883
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-5.5
- parent: 1668
- uid: 3884
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -18.5,-6.5
parent: 1668
- - uid: 3885
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -18.5,-7.5
- parent: 1668
- uid: 3886
components:
- type: Transform
@@ -17806,18 +17806,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -0.5,-29.5
parent: 1668
-- proto: chem_master
- entities:
- - uid: 825
- components:
- - type: Transform
- pos: 4.5,-13.5
- parent: 1668
- - uid: 4425
- components:
- - type: Transform
- pos: 10.5,-23.5
- parent: 1668
- proto: ChemDispenser
entities:
- uid: 824
@@ -17832,6 +17820,18 @@ entities:
- type: Transform
pos: 3.5,-10.5
parent: 1668
+- proto: ChemMaster
+ entities:
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 4.5,-13.5
+ parent: 1668
+ - uid: 4425
+ components:
+ - type: Transform
+ pos: 10.5,-23.5
+ parent: 1668
- proto: ChessBoard
entities:
- uid: 3762
@@ -17878,9 +17878,6 @@ entities:
- type: Transform
pos: 11.5,-13.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 575
- type: Construction
containers:
- machine_parts
@@ -18197,13 +18194,6 @@ entities:
- type: Transform
pos: -16.552616,8.708888
parent: 1668
-- proto: ClothingHeadHatHairflower
- entities:
- - uid: 6605
- components:
- - type: Transform
- pos: -11.182456,6.7149878
- parent: 1668
- proto: ClothingHeadHatWelding
entities:
- uid: 2197
@@ -19062,132 +19052,87 @@ entities:
rot: -1.5707963267948966 rad
pos: -16.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1577
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -15.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1578
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -14.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1579
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -13.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1580
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -12.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1581
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: -11.5,24.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1588
- uid: 1582
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -16.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1583
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -15.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1584
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -14.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1585
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -13.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1586
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -12.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 1587
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -11.5,28.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 1589
- uid: 5902
components:
- type: Transform
pos: -19.5,-33.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5906
- uid: 5903
components:
- type: Transform
pos: -19.5,-32.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5906
- uid: 5904
components:
- type: Transform
pos: -19.5,-31.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5906
- proto: CrateArmoryLaser
entities:
- uid: 6533
@@ -19286,6 +19231,13 @@ entities:
- type: Transform
pos: -7.5,26.5
parent: 1668
+- proto: CrateParticleDecelerators
+ entities:
+ - uid: 6995
+ components:
+ - type: Transform
+ pos: -7.5,28.5
+ parent: 1668
- proto: CrowbarRed
entities:
- uid: 515
@@ -19342,8 +19294,6 @@ entities:
- type: Transform
pos: 11.5,-4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: DeathsquadPDA
entities:
- uid: 298
@@ -20869,11 +20819,6 @@ entities:
- type: Transform
pos: 1.5,1.5
parent: 1668
- - uid: 816
- components:
- - type: Transform
- pos: -6.5,-9.5
- parent: 1668
- uid: 3840
components:
- type: Transform
@@ -21402,6 +21347,13 @@ entities:
- type: Transform
pos: 0.5503339,-25.316061
parent: 1668
+- proto: FoodPoppy
+ entities:
+ - uid: 6605
+ components:
+ - type: Transform
+ pos: -11.182456,6.7149878
+ parent: 1668
- proto: FoodSaladColeslaw
entities:
- uid: 6937
@@ -21441,30 +21393,24 @@ entities:
rot: -1.5707963267948966 rad
pos: 12.5,-5.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#990000FF'
-- proto: GasMinerNitrogenStation
+- proto: GasMinerNitrogenStationLarge
entities:
- - uid: 4715
+ - uid: 3466
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 25.5,-29.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
-- proto: GasMinerOxygenStation
+- proto: GasMinerOxygenStationLarge
entities:
- - uid: 4703
+ - uid: 3797
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 19.5,-29.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: GasMixer
entities:
- uid: 5070
@@ -21473,8 +21419,10 @@ entities:
rot: -1.5707963267948966 rad
pos: 21.5,-30.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
+ - type: GasMixer
+ inletTwoConcentration: 0.22000003
+ inletOneConcentration: 0.78
+ targetPressure: 4500
- proto: GasPassiveVent
entities:
- uid: 3430
@@ -21483,32 +21431,24 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 5399
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 24.5,-28.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6141
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -21.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6312
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 20.5,-28.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: GasPipeBend
entities:
- uid: 3660
@@ -21882,6 +21822,26 @@ entities:
parent: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
+- proto: GasPipeSensorDistribution
+ entities:
+ - uid: 3883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-30.5
+ parent: 1668
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeSensorWaste
+ entities:
+ - uid: 3860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,-31.5
+ parent: 1668
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasPipeStraight
entities:
- uid: 3664
@@ -22024,14 +21984,6 @@ entities:
parent: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5391
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 19.5,-31.5
- parent: 1668
- - type: AtmosPipeColor
- color: '#990000FF'
- uid: 5394
components:
- type: Transform
@@ -22040,14 +21992,6 @@ entities:
parent: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 5401
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 19.5,-30.5
- parent: 1668
- - type: AtmosPipeColor
- color: '#0055CCFF'
- uid: 5402
components:
- type: Transform
@@ -24864,46 +24808,34 @@ entities:
rot: -1.5707963267948966 rad
pos: 20.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3577
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -14.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3659
components:
- type: Transform
pos: -14.5,6.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3662
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -16.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6655
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 12.5,-7.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6705
components:
- type: Transform
pos: 16.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#990000FF'
- uid: 6706
@@ -24911,8 +24843,6 @@ entities:
- type: Transform
pos: 17.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasPressurePump
@@ -24923,16 +24853,14 @@ entities:
rot: 3.141592653589793 rad
pos: -14.5,5.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 5395
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 20.5,-30.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
+ - type: GasPressurePump
+ targetPressure: 385
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5400
@@ -24941,8 +24869,8 @@ entities:
rot: 1.5707963267948966 rad
pos: 20.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
+ - type: GasPressurePump
+ targetPressure: 4500
- type: AtmosPipeColor
color: '#990000FF'
- proto: GasThermoMachineFreezer
@@ -24952,8 +24880,6 @@ entities:
- type: Transform
pos: 13.5,-4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: GasVentPump
entities:
- uid: 3687
@@ -24962,39 +24888,29 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,9.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3688
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -21.5,8.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3689
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -24.5,6.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 3694
components:
- type: Transform
pos: -21.5,14.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 5474
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 16.5,-26.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5475
@@ -25002,8 +24918,6 @@ entities:
- type: Transform
pos: 20.5,-24.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5476
@@ -25012,8 +24926,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 26.5,-25.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5505
@@ -25022,8 +24934,6 @@ entities:
rot: 3.141592653589793 rad
pos: 20.5,-20.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5506
@@ -25031,8 +24941,6 @@ entities:
- type: Transform
pos: 25.5,-17.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5507
@@ -25041,8 +24949,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 32.5,-18.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5521
@@ -25050,8 +24956,6 @@ entities:
- type: Transform
pos: 7.5,-17.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5538
@@ -25059,8 +24963,6 @@ entities:
- type: Transform
pos: -8.5,-17.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5551
@@ -25069,8 +24971,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-26.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5554
@@ -25079,8 +24979,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 10.5,-22.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5565
@@ -25089,8 +24987,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -11.5,-22.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5566
@@ -25099,8 +24995,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 0.5,-16.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5573
@@ -25109,8 +25003,6 @@ entities:
rot: 3.141592653589793 rad
pos: -1.5,-12.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5581
@@ -25119,8 +25011,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,-11.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5583
@@ -25129,8 +25019,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -5.5,-11.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5658
@@ -25138,8 +25026,6 @@ entities:
- type: Transform
pos: -30.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5659
@@ -25148,8 +25034,6 @@ entities:
rot: 3.141592653589793 rad
pos: -30.5,-2.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5663
@@ -25158,8 +25042,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -22.5,-1.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5664
@@ -25168,8 +25050,6 @@ entities:
rot: 3.141592653589793 rad
pos: -20.5,-3.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5666
@@ -25177,8 +25057,6 @@ entities:
- type: Transform
pos: -6.5,0.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5667
@@ -25186,8 +25064,6 @@ entities:
- type: Transform
pos: 5.5,0.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5669
@@ -25196,8 +25072,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -3.5,0.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5670
@@ -25206,8 +25080,6 @@ entities:
rot: 3.141592653589793 rad
pos: 0.5,-5.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5671
@@ -25215,8 +25087,6 @@ entities:
- type: Transform
pos: -1.5,4.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5696
@@ -25225,8 +25095,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -1.5,12.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5697
@@ -25235,8 +25103,6 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,9.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5712
@@ -25245,8 +25111,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,27.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5713
@@ -25255,8 +25119,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,23.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5714
@@ -25265,8 +25127,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -9.5,16.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5742
@@ -25274,8 +25134,6 @@ entities:
- type: Transform
pos: 10.5,13.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5743
@@ -25284,8 +25142,6 @@ entities:
rot: 3.141592653589793 rad
pos: 28.5,11.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5744
@@ -25293,8 +25149,6 @@ entities:
- type: Transform
pos: 18.5,13.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5756
@@ -25302,8 +25156,6 @@ entities:
- type: Transform
pos: 11.5,24.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5763
@@ -25311,8 +25163,6 @@ entities:
- type: Transform
pos: 28.5,19.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5779
@@ -25321,8 +25171,6 @@ entities:
rot: 3.141592653589793 rad
pos: 12.5,-1.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5780
@@ -25331,8 +25179,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 19.5,-0.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5806
@@ -25341,8 +25187,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -4.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5814
@@ -25351,8 +25195,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 3.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5824
@@ -25361,8 +25203,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5825
@@ -25371,8 +25211,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 12.5,-31.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 5887
@@ -25381,8 +25219,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -14.5,-23.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6003
@@ -25391,8 +25227,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -19.5,-25.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6227
@@ -25401,8 +25235,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -16.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6334
@@ -25410,8 +25242,6 @@ entities:
- type: Transform
pos: -0.5,-36.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 6335
@@ -25420,8 +25250,6 @@ entities:
rot: 3.141592653589793 rad
pos: -0.5,-41.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- type: AtmosPipeColor
color: '#0055CCFF'
- proto: GasVentScrubber
@@ -25432,8 +25260,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -17.5,-32.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: GeneratorBasic15kW
entities:
- uid: 5176
@@ -26895,6 +26721,11 @@ entities:
- type: Transform
pos: 21.5,-23.5
parent: 1668
+ - uid: 5079
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 1668
- uid: 5114
components:
- type: Transform
@@ -27154,6 +26985,21 @@ entities:
- type: Transform
pos: 5.5,6.5
parent: 1668
+ - uid: 6986
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 1668
+ - uid: 6992
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 1668
+ - uid: 6993
+ components:
+ - type: Transform
+ pos: 32.5,6.5
+ parent: 1668
- proto: GroundTobacco
entities:
- uid: 3755
@@ -27238,16 +27084,6 @@ entities:
- type: Transform
pos: 3.5,0.5
parent: 1668
- - uid: 3797
- components:
- - type: Transform
- pos: -20.5,-2.5
- parent: 1668
- - uid: 3860
- components:
- - type: Transform
- pos: -22.5,-2.5
- parent: 1668
- uid: 3863
components:
- type: Transform
@@ -27265,6 +27101,16 @@ entities:
- type: Transform
pos: 32.5,-14.5
parent: 1668
+ - uid: 3885
+ components:
+ - type: Transform
+ pos: -22.5,-2.5
+ parent: 1668
+ - uid: 3902
+ components:
+ - type: Transform
+ pos: -20.5,-2.5
+ parent: 1668
- proto: HighSecDoor
entities:
- uid: 565
@@ -27400,6 +27246,53 @@ entities:
- type: Transform
pos: -18.379215,8.381029
parent: 1668
+- proto: LockableButtonCentcomm
+ entities:
+ - uid: 3149
+ components:
+ - type: Transform
+ pos: 14.5,32.5
+ parent: 1668
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4476:
+ - Pressed: Toggle
+ 6492:
+ - Pressed: Toggle
+ 6397:
+ - Pressed: Toggle
+ 3431:
+ - Pressed: Toggle
+ - uid: 4477
+ components:
+ - type: Transform
+ pos: 4.5,32.5
+ parent: 1668
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2946:
+ - Pressed: Toggle
+ 5058:
+ - Pressed: Toggle
+ 6314:
+ - Pressed: Toggle
+ 3420:
+ - Pressed: Toggle
+- proto: LockableButtonCommand
+ entities:
+ - uid: 4475
+ components:
+ - type: Transform
+ pos: -16.5,-4.5
+ parent: 1668
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3789:
+ - Pressed: Toggle
+ 3788:
+ - Pressed: Toggle
+ 3787:
+ - Pressed: Toggle
- proto: LockerAtmosphericsFilledHardsuit
entities:
- uid: 3790
@@ -27416,7 +27309,7 @@ entities:
parent: 1668
- proto: LockerChemistryFilled
entities:
- - uid: 2876
+ - uid: 3986
components:
- type: Transform
pos: 5.5,-13.5
@@ -27511,6 +27404,13 @@ entities:
showEnts: False
occludes: True
ent: null
+- proto: LockerHeadOfPersonnelFilled
+ entities:
+ - uid: 327
+ components:
+ - type: Transform
+ pos: -10.5,-5.5
+ parent: 1668
- proto: LockerHeadOfSecurityFilled
entities:
- uid: 3153
@@ -27520,10 +27420,10 @@ entities:
parent: 1668
- proto: LockerQuarterMasterFilled
entities:
- - uid: 2235
+ - uid: 5080
components:
- type: Transform
- pos: -8.5,19.5
+ pos: -10.5,-7.5
parent: 1668
- proto: LockerResearchDirectorFilled
entities:
@@ -27532,6 +27432,13 @@ entities:
- type: Transform
pos: -11.5,-3.5
parent: 1668
+- proto: LockerSalvageSpecialistFilledHardsuit
+ entities:
+ - uid: 3987
+ components:
+ - type: Transform
+ pos: -8.5,19.5
+ parent: 1668
- proto: LockerSecurityFilled
entities:
- uid: 511
@@ -27549,6 +27456,22 @@ entities:
- type: Transform
pos: -6.5,-10.5
parent: 1668
+- proto: LockerWallMedicalDoctorFilled
+ entities:
+ - uid: 6775
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 11.5,-15.5
+ parent: 1668
+- proto: LockerWallMedicalFilled
+ entities:
+ - uid: 2013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,-7.5
+ parent: 1668
- proto: LockerWardenFilled
entities:
- uid: 2713
@@ -27639,6 +27562,13 @@ entities:
- type: Transform
pos: 9.5,-7.5
parent: 1668
+- proto: MedkitAdvancedFilled
+ entities:
+ - uid: 6610
+ components:
+ - type: Transform
+ pos: 14.536912,-7.5898757
+ parent: 1668
- proto: MedkitBruteFilled
entities:
- uid: 622
@@ -27655,11 +27585,6 @@ entities:
parent: 1668
- proto: MedkitFilled
entities:
- - uid: 620
- components:
- - type: Transform
- pos: 14.516341,-7.5759134
- parent: 1668
- uid: 1454
components:
- type: Transform
@@ -27724,8 +27649,6 @@ entities:
- type: Transform
pos: 25.5,-28.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: NTFlag
entities:
- uid: 1190
@@ -27764,6 +27687,13 @@ entities:
- type: Transform
pos: 9.5,-5.5
parent: 1668
+- proto: OreProcessorIndustrial
+ entities:
+ - uid: 6978
+ components:
+ - type: Transform
+ pos: -5.5,29.5
+ parent: 1668
- proto: OxygenCanister
entities:
- uid: 5415
@@ -27771,15 +27701,18 @@ entities:
- type: Transform
pos: 19.5,-28.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- uid: 6719
components:
- type: Transform
pos: 12.5,-7.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
+- proto: OxygenTankFilled
+ entities:
+ - uid: 3901
+ components:
+ - type: Transform
+ pos: -12.625682,-7.0710163
+ parent: 1668
- proto: PaintingAmogusTriptych
entities:
- uid: 3766
@@ -27926,6 +27859,84 @@ entities:
- type: Transform
pos: 17.5,-28.5
parent: 1668
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 5934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-28.5
+ parent: 1668
+ - uid: 6004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,-29.5
+ parent: 1668
+ - uid: 6103
+ components:
+ - type: Transform
+ pos: 24.5,-29.5
+ parent: 1668
+ - uid: 6180
+ components:
+ - type: Transform
+ pos: 25.5,-29.5
+ parent: 1668
+ - uid: 6181
+ components:
+ - type: Transform
+ pos: 19.5,-29.5
+ parent: 1668
+ - uid: 6231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-29.5
+ parent: 1668
+ - uid: 6232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-28.5
+ parent: 1668
+ - uid: 6277
+ components:
+ - type: Transform
+ pos: 20.5,-29.5
+ parent: 1668
+- proto: PlasmaWindoorSecureSecurityLocked
+ entities:
+ - uid: 5410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,22.5
+ parent: 1668
+ - uid: 5411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,25.5
+ parent: 1668
+ - uid: 5416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,28.5
+ parent: 1668
+ - uid: 5417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 4.5,25.5
+ parent: 1668
+ - uid: 5423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,28.5
+ parent: 1668
- proto: PlasticFlapsAirtightClear
entities:
- uid: 1590
@@ -30431,13 +30442,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -22.5,-28.5
parent: 1668
-- proto: Protolathe
- entities:
- - uid: 5311
- components:
- - type: Transform
- pos: 24.5,-26.5
- parent: 1668
- proto: Rack
entities:
- uid: 1662
@@ -30840,9 +30844,6 @@ entities:
rot: 3.141592653589793 rad
pos: -19.5,-31.5
parent: 1668
- - type: DeviceLinkSink
- links:
- - 5907
- proto: ReinforcedPlasmaWindow
entities:
- uid: 2791
@@ -30865,6 +30866,36 @@ entities:
- type: Transform
pos: 13.5,30.5
parent: 1668
+ - uid: 3990
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,21.5
+ parent: 1668
+ - uid: 4179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,24.5
+ parent: 1668
+ - uid: 4180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,24.5
+ parent: 1668
+ - uid: 4251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 14.5,27.5
+ parent: 1668
+ - uid: 4361
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 4.5,27.5
+ parent: 1668
- uid: 5108
components:
- type: Transform
@@ -31885,21 +31916,6 @@ entities:
- type: Transform
pos: 8.5,16.5
parent: 1668
- - uid: 2556
- components:
- - type: Transform
- pos: 14.5,21.5
- parent: 1668
- - uid: 2755
- components:
- - type: Transform
- pos: 4.5,24.5
- parent: 1668
- - uid: 2771
- components:
- - type: Transform
- pos: 14.5,24.5
- parent: 1668
- uid: 2777
components:
- type: Transform
@@ -31940,16 +31956,6 @@ entities:
- type: Transform
pos: 11.5,29.5
parent: 1668
- - uid: 2858
- components:
- - type: Transform
- pos: 14.5,27.5
- parent: 1668
- - uid: 2859
- components:
- - type: Transform
- pos: 4.5,27.5
- parent: 1668
- uid: 2906
components:
- type: Transform
@@ -32273,6 +32279,11 @@ entities:
- type: Transform
pos: 15.5,-22.5
parent: 1668
+ - uid: 5321
+ components:
+ - type: Transform
+ pos: 30.5,6.5
+ parent: 1668
- uid: 5333
components:
- type: Transform
@@ -32288,6 +32299,21 @@ entities:
- type: Transform
pos: 19.5,-23.5
parent: 1668
+ - uid: 5386
+ components:
+ - type: Transform
+ pos: 22.5,6.5
+ parent: 1668
+ - uid: 5391
+ components:
+ - type: Transform
+ pos: 20.5,6.5
+ parent: 1668
+ - uid: 5397
+ components:
+ - type: Transform
+ pos: 32.5,6.5
+ parent: 1668
- uid: 5880
components:
- type: Transform
@@ -32521,6 +32547,24 @@ entities:
parent: 1668
- proto: Screen
entities:
+ - uid: 4479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -32.5,-0.5
+ parent: 1668
+ - uid: 4480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -21.5,-25.5
+ parent: 1668
+ - uid: 5311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-30.5
+ parent: 1668
- uid: 6988
components:
- type: Transform
@@ -32531,6 +32575,47 @@ entities:
- type: Transform
pos: 33.5,-4.5
parent: 1668
+ - uid: 6996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -14.5,26.5
+ parent: 1668
+ - uid: 6997
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 5.5,-15.5
+ parent: 1668
+ - uid: 6998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -6.5,-15.5
+ parent: 1668
+ - uid: 6999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -0.5,-44.5
+ parent: 1668
+ - uid: 7000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -4.5,-30.5
+ parent: 1668
+ - uid: 7001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -16.5,-9.5
+ parent: 1668
+ - uid: 7002
+ components:
+ - type: Transform
+ pos: -11.5,13.5
+ parent: 1668
- proto: SecurityTechFab
entities:
- uid: 2874
@@ -32574,6 +32659,28 @@ entities:
- type: Transform
pos: 19.5,-23.5
parent: 1668
+- proto: ShuttersWindowCentralCommand
+ entities:
+ - uid: 5058
+ components:
+ - type: Transform
+ pos: 5.5,30.5
+ parent: 1668
+ - uid: 6314
+ components:
+ - type: Transform
+ pos: 6.5,30.5
+ parent: 1668
+ - uid: 6397
+ components:
+ - type: Transform
+ pos: 12.5,30.5
+ parent: 1668
+ - uid: 6492
+ components:
+ - type: Transform
+ pos: 13.5,30.5
+ parent: 1668
- proto: SignalButton
entities:
- uid: 789
@@ -32637,45 +32744,6 @@ entities:
- Pressed: Toggle
2146:
- Pressed: Toggle
- - uid: 2920
- components:
- - type: Transform
- pos: -16.5,-4.5
- parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 3789:
- - Pressed: Toggle
- 3788:
- - Pressed: Toggle
- 3787:
- - Pressed: Toggle
- - uid: 2927
- components:
- - type: MetaData
- name: le funny admin button
- - type: Transform
- pos: 4.5,32.5
- parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2926:
- - Pressed: Toggle
- 2925:
- - Pressed: Toggle
- - uid: 2928
- components:
- - type: MetaData
- name: le funny admin button
- - type: Transform
- pos: 14.5,32.5
- parent: 1668
- - type: DeviceLinkSource
- linkedPorts:
- 2886:
- - Pressed: Toggle
- 2790:
- - Pressed: Toggle
- uid: 5242
components:
- type: Transform
@@ -32734,7 +32802,7 @@ entities:
- type: Transform
pos: 8.5,4.5
parent: 1668
-- proto: SignAtmosMinsky
+- proto: SignAtmos
entities:
- uid: 6888
components:
@@ -32748,8 +32816,14 @@ entities:
- type: Transform
pos: -4.5,13.5
parent: 1668
-- proto: SignChemistry1
+- proto: SignChem
entities:
+ - uid: 4478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 5.5,-6.5
+ parent: 1668
- uid: 6764
components:
- type: Transform
@@ -32910,11 +32984,6 @@ entities:
parent: 1668
- proto: SignMedical
entities:
- - uid: 736
- components:
- - type: Transform
- pos: 5.5,-6.5
- parent: 1668
- uid: 6762
components:
- type: Transform
@@ -33016,6 +33085,18 @@ entities:
- type: Transform
pos: -2.5,-38.5
parent: 1668
+- proto: SignSecureMedRed
+ entities:
+ - uid: 3988
+ components:
+ - type: Transform
+ pos: 7.5,32.5
+ parent: 1668
+ - uid: 6615
+ components:
+ - type: Transform
+ pos: 11.5,32.5
+ parent: 1668
- proto: SignSecureSmall
entities:
- uid: 3868
@@ -33055,16 +33136,6 @@ entities:
- type: Transform
pos: -17.5,-25.5
parent: 1668
- - uid: 6231
- components:
- - type: Transform
- pos: -32.5,-0.5
- parent: 1668
- - uid: 6232
- components:
- - type: Transform
- pos: -21.5,-25.5
- parent: 1668
- proto: Sink
entities:
- uid: 3425
@@ -33099,24 +33170,24 @@ entities:
rot: 1.5707963267948966 rad
pos: 19.5,-24.5
parent: 1668
-- proto: SMESBasic
+- proto: SMESAdvanced
entities:
- - uid: 327
+ - uid: 4703
components:
- type: Transform
pos: 27.5,-30.5
parent: 1668
- - uid: 5078
+ - uid: 4715
components:
- type: Transform
pos: 22.5,-17.5
parent: 1668
- - uid: 5079
+ - uid: 4977
components:
- type: Transform
pos: 22.5,-15.5
parent: 1668
- - uid: 5080
+ - uid: 4992
components:
- type: Transform
pos: 22.5,-16.5
@@ -33135,7 +33206,7 @@ entities:
- type: Transform
pos: -20.47715,15.560694
parent: 1668
-- proto: soda_dispenser
+- proto: SodaDispenser
entities:
- uid: 4427
components:
@@ -33148,13 +33219,6 @@ entities:
- type: Transform
pos: 7.5,-21.5
parent: 1668
-- proto: SpawnVehicleSecway
- entities:
- - uid: 2823
- components:
- - type: Transform
- pos: 11.5,25.5
- parent: 1668
- proto: SS13Memorial
entities:
- uid: 486
@@ -33171,17 +33235,17 @@ entities:
parent: 1668
- proto: StatueVenusBlue
entities:
- - uid: 4180
+ - uid: 3463
components:
- type: Transform
- pos: -20.5,-6.5
+ pos: 31.5,7.5
parent: 1668
- proto: StatueVenusRed
entities:
- - uid: 4179
+ - uid: 5078
components:
- type: Transform
- pos: -21.5,-6.5
+ pos: 21.5,7.5
parent: 1668
- proto: Stool
entities:
@@ -33218,8 +33282,6 @@ entities:
- type: Transform
pos: -14.5,6.5
parent: 1668
- - type: AtmosDevice
- joinedGrid: 1668
- proto: Stunbaton
entities:
- uid: 2746
@@ -33279,30 +33341,18 @@ entities:
- type: Transform
pos: -16.5,-29.5
parent: 1668
-- proto: SuitStorageBasic
+- proto: SuitStorageCaptain
entities:
- - uid: 1185
- components:
- - type: Transform
- pos: -10.5,-7.5
- parent: 1668
- - uid: 1188
+ - uid: 3768
components:
- type: Transform
- pos: -10.5,-5.5
+ pos: -11.5,4.5
parent: 1668
- - uid: 3431
+ - uid: 5146
components:
- type: Transform
pos: -10.5,-6.5
parent: 1668
-- proto: SuitStorageCaptain
- entities:
- - uid: 3768
- components:
- - type: Transform
- pos: -11.5,4.5
- parent: 1668
- proto: SuitStorageCE
entities:
- uid: 6490
@@ -33331,6 +33381,13 @@ entities:
- type: Transform
pos: -10.5,-3.5
parent: 1668
+- proto: SuitStorageSec
+ entities:
+ - uid: 3465
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 1668
- proto: SurveillanceCameraCommand
entities:
- uid: 6817
@@ -35390,9 +35447,9 @@ entities:
- type: Transform
pos: 7.5,21.5
parent: 1668
-- proto: ToiletEmpty
+- proto: ToiletGoldenEmpty
entities:
- - uid: 3420
+ - uid: 5257
components:
- type: Transform
rot: 1.5707963267948966 rad
@@ -35433,6 +35490,11 @@ entities:
- type: Transform
pos: -12.035681,6.6117244
parent: 1668
+ - uid: 6985
+ components:
+ - type: Transform
+ pos: -19.5,-6.5
+ parent: 1668
- proto: ToyFigurineCargoTech
entities:
- uid: 6897
@@ -35468,6 +35530,11 @@ entities:
- type: Transform
pos: 27.221512,-23.216656
parent: 1668
+ - uid: 6982
+ components:
+ - type: Transform
+ pos: -21.5,-7.5
+ parent: 1668
- proto: ToyFigurineChiefMedicalOfficer
entities:
- uid: 6900
@@ -35475,6 +35542,11 @@ entities:
- type: Transform
pos: 13.343676,-12.106804
parent: 1668
+ - uid: 6980
+ components:
+ - type: Transform
+ pos: -20.5,-7.5
+ parent: 1668
- proto: ToyFigurineClown
entities:
- uid: 6907
@@ -35484,10 +35556,10 @@ entities:
parent: 1668
- proto: ToyFigurineDetective
entities:
- - uid: 2145
+ - uid: 6508
components:
- type: Transform
- pos: 8.249651,23.679073
+ pos: 4.5357866,22.481915
parent: 1668
- proto: ToyFigurineEngineer
entities:
@@ -35496,6 +35568,13 @@ entities:
- type: Transform
pos: 26.955887,-23.01353
parent: 1668
+- proto: ToyFigurineFootsoldier
+ entities:
+ - uid: 6510
+ components:
+ - type: Transform
+ pos: 3.5129395,25.168112
+ parent: 1668
- proto: ToyFigurineGreytider
entities:
- uid: 2142
@@ -35503,6 +35582,11 @@ entities:
- type: Transform
pos: -1.5147417,19.684673
parent: 1668
+ - uid: 6509
+ components:
+ - type: Transform
+ pos: 16.351696,22.083393
+ parent: 1668
- proto: ToyFigurineHamlet
entities:
- uid: 6503
@@ -35517,6 +35601,11 @@ entities:
- type: Transform
pos: 2.714695,-2.0789247
parent: 1668
+ - uid: 6981
+ components:
+ - type: Transform
+ pos: -19.5,-5.5
+ parent: 1668
- proto: ToyFigurineHeadOfSecurity
entities:
- uid: 592
@@ -35524,6 +35613,11 @@ entities:
- type: Transform
pos: 8.675076,17.818161
parent: 1668
+ - uid: 6983
+ components:
+ - type: Transform
+ pos: -19.5,-7.5
+ parent: 1668
- proto: ToyFigurineJanitor
entities:
- uid: 6905
@@ -35566,6 +35660,27 @@ entities:
- type: Transform
pos: 0.78786826,-28.113647
parent: 1668
+- proto: ToyFigurineNukie
+ entities:
+ - uid: 6512
+ components:
+ - type: Transform
+ pos: 3.1101613,28.112556
+ parent: 1668
+- proto: ToyFigurineNukieCommander
+ entities:
+ - uid: 6511
+ components:
+ - type: Transform
+ pos: 2.8740501,28.668112
+ parent: 1668
+- proto: ToyFigurineNukieElite
+ entities:
+ - uid: 6507
+ components:
+ - type: Transform
+ pos: 2.3733406,28.503387
+ parent: 1668
- proto: ToyFigurineParamedic
entities:
- uid: 3427
@@ -35587,6 +35702,11 @@ entities:
- type: Transform
pos: -15.016072,14.885906
parent: 1668
+ - uid: 6979
+ components:
+ - type: Transform
+ pos: -20.5,-5.5
+ parent: 1668
- proto: ToyFigurineRatKing
entities:
- uid: 6906
@@ -35601,6 +35721,11 @@ entities:
- type: Transform
pos: -32.494865,6.5819006
parent: 1668
+ - uid: 6984
+ components:
+ - type: Transform
+ pos: -21.5,-5.5
+ parent: 1668
- proto: ToyFigurineSalvage
entities:
- uid: 6895
@@ -35620,6 +35745,13 @@ entities:
- type: Transform
pos: 27.445951,-11.38564
parent: 1668
+- proto: ToyFigurineThief
+ entities:
+ - uid: 6513
+ components:
+ - type: Transform
+ pos: 15.358348,28.515333
+ parent: 1668
- proto: ToyFigurineWarden
entities:
- uid: 6894
@@ -35627,6 +35759,20 @@ entities:
- type: Transform
pos: 4.3459373,19.764877
parent: 1668
+- proto: ToyFigurineWizard
+ entities:
+ - uid: 6514
+ components:
+ - type: Transform
+ pos: 16.312458,25.32646
+ parent: 1668
+- proto: ToyOwlman
+ entities:
+ - uid: 3464
+ components:
+ - type: Transform
+ pos: -24.5,-6.5
+ parent: 1668
- proto: ToyRubberDuck
entities:
- uid: 3423
@@ -35732,13 +35878,6 @@ entities:
- Left: Forward
- Right: Reverse
- Middle: Off
-- proto: VehicleKeySecway
- entities:
- - uid: 3149
- components:
- - type: Transform
- pos: 10.387553,25.600338
- parent: 1668
- proto: VendingMachineAmmo
entities:
- uid: 2821
@@ -36661,11 +36800,6 @@ entities:
- type: Transform
pos: 19.5,6.5
parent: 1668
- - uid: 349
- components:
- - type: Transform
- pos: 22.5,6.5
- parent: 1668
- uid: 350
components:
- type: Transform
@@ -36686,16 +36820,6 @@ entities:
- type: Transform
pos: 29.5,6.5
parent: 1668
- - uid: 354
- components:
- - type: Transform
- pos: 30.5,6.5
- parent: 1668
- - uid: 356
- components:
- - type: Transform
- pos: 32.5,6.5
- parent: 1668
- uid: 357
components:
- type: Transform
@@ -37374,11 +37498,6 @@ entities:
- type: Transform
pos: -13.5,10.5
parent: 1668
- - uid: 898
- components:
- - type: Transform
- pos: 20.5,6.5
- parent: 1668
- uid: 1080
components:
- type: Transform
@@ -41651,6 +41770,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -4.5,10.5
parent: 1668
+- proto: WindoorSecureChemistryLocked
+ entities:
+ - uid: 5398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-12.5
+ parent: 1668
+ - uid: 5401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 2.5,-11.5
+ parent: 1668
- proto: WindoorSecureCommandLocked
entities:
- uid: 4230
@@ -41685,18 +41818,6 @@ entities:
parent: 1668
- proto: WindoorSecureMedicalLocked
entities:
- - uid: 732
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-11.5
- parent: 1668
- - uid: 734
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 2.5,-12.5
- parent: 1668
- uid: 1198
components:
- type: Transform
@@ -41735,51 +41856,6 @@ entities:
rot: 1.5707963267948966 rad
pos: -3.5,-12.5
parent: 1668
- - uid: 2558
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,22.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 6649
- - uid: 2776
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,25.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 3906
- - uid: 2832
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,25.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 3723
- - uid: 2862
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 4.5,28.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 6602
- - uid: 2863
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,28.5
- parent: 1668
- - type: DeviceLinkSink
- links:
- - 3870
- proto: WindowReinforcedDirectional
entities:
- uid: 485
@@ -41972,44 +42048,6 @@ entities:
- type: Transform
pos: 4.5,-17.5
parent: 1668
- - uid: 5386
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-28.5
- parent: 1668
- - uid: 5397
- components:
- - type: Transform
- pos: 19.5,-29.5
- parent: 1668
- - uid: 5398
- components:
- - type: Transform
- pos: 20.5,-29.5
- parent: 1668
- - uid: 5410
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 20.5,-29.5
- parent: 1668
- - uid: 5411
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-28.5
- parent: 1668
- - uid: 5416
- components:
- - type: Transform
- pos: 24.5,-29.5
- parent: 1668
- - uid: 5417
- components:
- - type: Transform
- pos: 25.5,-29.5
- parent: 1668
- uid: 5453
components:
- type: Transform
@@ -42034,12 +42072,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -18.5,-32.5
parent: 1668
- - uid: 6314
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-29.5
- parent: 1668
- uid: 6787
components:
- type: Transform
@@ -42053,11 +42085,4 @@ entities:
- type: Transform
pos: 9.506623,-4.4162817
parent: 1668
-- proto: YellowOxygenTankFilled
- entities:
- - uid: 3901
- components:
- - type: Transform
- pos: -12.625682,-7.0710163
- parent: 1668
...
diff --git a/Resources/Maps/cog.yml b/Resources/Maps/cog.yml
index d9e980ed729a..80ef4fa9d3ff 100644
--- a/Resources/Maps/cog.yml
+++ b/Resources/Maps/cog.yml
@@ -2,49 +2,49 @@ meta:
format: 6
postmapinit: false
tilemap:
- 5: Space
- 35: FloorArcadeBlue2
- 22: FloorAsteroidSandDug
- 21: FloorAsteroidSandUnvariantized
- 25: FloorAstroGrass
- 8: FloorAstroIce
- 7: FloorAstroSnow
- 28: FloorBar
- 0: FloorBlueCircuit
- 37: FloorBoxing
- 19: FloorBrokenWood
- 57: FloorCarpetClown
- 18: FloorClown
- 66: FloorConcreteSmooth
- 4: FloorDark
- 17: FloorDarkMono
- 33: FloorDesert
- 13: FloorFreezer
- 31: FloorGlass
- 34: FloorGold
- 9: FloorGreenCircuit
- 38: FloorHydro
- 23: FloorKitchen
- 24: FloorLino
- 40: FloorMime
- 14: FloorMowedAstroGrass
- 32: FloorPlanetDirt
- 10: FloorRGlass
- 20: FloorReinforced
- 3: FloorSteel
- 39: FloorSteelCheckerLight
- 27: FloorSteelDamaged
- 12: FloorSteelDirty
- 29: FloorSteelMono
- 6: FloorTechMaint
- 11: FloorTechMaint2
- 30: FloorTechMaint3
- 16: FloorWhite
- 26: FloorWhiteMini
- 36: FloorWhiteMono
- 15: FloorWood
- 2: Lattice
- 1: Plating
+ 46: Space
+ 79: FloorArcadeBlue2
+ 64: FloorAsteroidSandDug
+ 63: FloorAsteroidSandUnvariantized
+ 68: FloorAstroGrass
+ 49: FloorAstroIce
+ 48: FloorAstroSnow
+ 71: FloorBar
+ 41: FloorBlueCircuit
+ 83: FloorBoxing
+ 61: FloorBrokenWood
+ 87: FloorCarpetClown
+ 60: FloorClown
+ 88: FloorConcreteSmooth
+ 45: FloorDark
+ 59: FloorDarkMono
+ 77: FloorDesert
+ 54: FloorFreezer
+ 75: FloorGlass
+ 78: FloorGold
+ 50: FloorGreenCircuit
+ 84: FloorHydro
+ 65: FloorKitchen
+ 67: FloorLino
+ 86: FloorMime
+ 55: FloorMowedAstroGrass
+ 76: FloorPlanetDirt
+ 51: FloorRGlass
+ 62: FloorReinforced
+ 44: FloorSteel
+ 85: FloorSteelCheckerLight
+ 70: FloorSteelDamaged
+ 53: FloorSteelDirty
+ 72: FloorSteelMono
+ 47: FloorTechMaint
+ 52: FloorTechMaint2
+ 73: FloorTechMaint3
+ 58: FloorWhite
+ 69: FloorWhiteMini
+ 80: FloorWhiteMono
+ 56: FloorWood
+ 43: Lattice
+ 42: Plating
entities:
- proto: ""
entities:
@@ -72,391 +72,391 @@ entities:
chunks:
0,0:
ind: 0,0
- tiles: AAAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKQAAAAAAKQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-1,0:
ind: -1,0
- tiles: AwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAAAAAAAAAQAAAAAABAAAAAADAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAAAAAAAAAQAAAAAABAAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKQAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKgAAAAAALQAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKQAAAAAAKgAAAAAALQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-1,-1:
ind: -1,-1
- tiles: AwAAAAAAAwAAAAABAQAAAAAABwAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAACQAAAAAACQAAAAAAAwAAAAADAwAAAAAAAQAAAAAABwAAAAAABwAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACCQAAAAAACQAAAAAAAwAAAAAAAwAAAAACAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABAwAAAAAAAwAAAAABAQAAAAAACAAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAACAwAAAAABAwAAAAACAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAABBAAAAAABAwAAAAADAwAAAAADAQAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAADBAAAAAADBAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABBAAAAAADCgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAACgAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAACgAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAA
+ tiles: LAAAAAABLAAAAAAAKgAAAAAAMAAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAABKgAAAAAAMAAAAAAAMAAAAAAIMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAAMgAAAAAAMgAAAAAALAAAAAADLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAACLAAAAAABLAAAAAACKgAAAAAAMQAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAABLAAAAAADLAAAAAABKgAAAAAAMAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAABLAAAAAABKgAAAAAAMQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALQAAAAADMwAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAACMwAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAABMwAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAACLQAAAAAA
version: 6
0,-1:
ind: 0,-1
- tiles: CQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADBAAAAAADBAAAAAACBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: MgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-1,-2:
ind: -1,-2
- tiles: AwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACDAAAAAAABgAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAQAAAAAADAAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABNQAAAAAALwAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,-2:
ind: 0,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-2,-1:
ind: -2,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABBQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACBQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAADAwAAAAACBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAADBQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAACBQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAADBAAAAAAABAAAAAACBAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAB
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAABLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAADLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAABOAAAAAAALQAAAAABLQAAAAAALQAAAAABLQAAAAAAKgAAAAAALAAAAAACLAAAAAAA
version: 6
-2,-2:
ind: -2,-2
- tiles: AQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAQAAAAAAEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAEAAAAAABEAAAAAAAEAAAAAABAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADEAAAAAABEAAAAAABEAAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAABAQAAAAAABgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAABAwAAAAACAwAAAAACCgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAQAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAD
+ tiles: KgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAADKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADOgAAAAAAOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAACOgAAAAACKgAAAAAALwAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACOgAAAAABOgAAAAABOgAAAAABOgAAAAACOgAAAAACLAAAAAACLAAAAAAAMwAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADKgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAC
version: 6
-2,0:
ind: -2,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAAADwAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAABBAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAABBAAAAAAABAAAAAAABAAAAAABBAAAAAACAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABCQAAAAAACQAAAAAACQAAAAAABAAAAAABAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACCQAAAAAABAAAAAABCQAAAAAAEQAAAAAAEQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADCQAAAAAACQAAAAAACQAAAAAABAAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACBAAAAAAABAAAAAADBAAAAAAABAAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAC
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAAAOAAAAAADLQAAAAABLQAAAAACLQAAAAADLQAAAAAALQAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADLQAAAAABLQAAAAAALQAAAAACLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAADLAAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABMgAAAAAALQAAAAABMgAAAAAAOwAAAAADOwAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACMgAAAAAAMgAAAAAAMgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAB
version: 6
-3,0:
ind: -3,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-3,-1:
ind: -3,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAAADwAAAAACEwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAOAAAAAACOAAAAAABOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAOAAAAAADPQAAAAAEKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-3,-2:
ind: -3,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAACAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAABAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADEAAAAAACEAAAAAABEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADEAAAAAADEAAAAAADEAAAAAADEAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAABBAAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAABBAAAAAACAQAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAACEwAAAAABDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABLAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAACOgAAAAAAKgAAAAAAOgAAAAADOgAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAAAOgAAAAACOgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAADKgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAADOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAADLQAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAACKgAAAAAALAAAAAABLAAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAAPQAAAAADOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAA
version: 6
-1,-3:
ind: -1,-3
- tiles: EAAAAAAAEAAAAAAAEAAAAAAAEAAAAAAAEAAAAAACCgAAAAACEAAAAAAACgAAAAABEAAAAAACEAAAAAACEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAAAAQAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAADEAAAAAACEAAAAAACAQAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAABAQAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAADEAAAAAACEAAAAAADEAAAAAADEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAADAQAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAADEAAAAAAAAQAAAAAAEAAAAAABEAAAAAAD
+ tiles: OgAAAAABOgAAAAADOgAAAAADOgAAAAABOgAAAAACMwAAAAACOgAAAAADMwAAAAACOgAAAAAAOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAABOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAACOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAADOgAAAAAAOgAAAAABOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAADKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAADKgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAA
version: 6
-2,-3:
ind: -2,-3
- tiles: AwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAABEAAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAADAQAAAAAAEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAQAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAAABgAAAAAAEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACAQAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAACAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAADEAAAAAAAEAAAAAACAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAABDwAAAAAADwAAAAAAEAAAAAAAEAAAAAACAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAACDwAAAAAADwAAAAAADwAAAAAAEAAAAAACEAAAAAACAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAAADwAAAAACDwAAAAADEAAAAAAAEAAAAAABAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACAQAAAAAADwAAAAABDwAAAAAAEAAAAAABEAAAAAAA
+ tiles: LAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAABOgAAAAABKgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAACLwAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAAAOgAAAAABKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAABOgAAAAABOgAAAAACOgAAAAADOgAAAAADKgAAAAAAOgAAAAACOgAAAAADOgAAAAABOgAAAAAAOgAAAAADOgAAAAAAOgAAAAACOgAAAAACOgAAAAABOgAAAAAAOgAAAAADOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAABOgAAAAABOgAAAAACOgAAAAABOgAAAAACOgAAAAABKgAAAAAAOgAAAAACOgAAAAAAOgAAAAACOgAAAAACOgAAAAADOgAAAAACOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOgAAAAACOgAAAAAAOgAAAAADOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAADOAAAAAABOAAAAAABOgAAAAABOgAAAAAALAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAABOAAAAAADOAAAAAADOAAAAAACOgAAAAACOgAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADOgAAAAACOgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAOAAAAAABOAAAAAADOgAAAAAAOgAAAAAA
version: 6
-3,-3:
ind: -3,-3
- tiles: AQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAADAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: KgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAADOgAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAADOgAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAABOgAAAAABOgAAAAABOgAAAAAAOgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAAAOgAAAAABOgAAAAADOgAAAAACOgAAAAACOgAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
-4,-2:
ind: -4,-2
- tiles: BQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAACwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABEwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAEwAAAAAGAQAAAAAAAQAAAAAAEwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAANAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAADPQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAEKgAAAAAAKgAAAAAAPQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-4,-3:
ind: -4,-3
- tiles: BQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAAABAAAAAACBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-4,-4:
ind: -4,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAFgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAQAAAAAAAPwAAAAAAPwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-3,-4:
ind: -3,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFgAAAAAAAQAAAAAADQAAAAAAAQAAAAAADQAAAAAADQAAAAAAFwAAAAAAAQAAAAAAFwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAFwAAAAAAAwAAAAABAQAAAAAAFQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAABQAAAAAABQAAAAAAFQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAQAAAAAAAKgAAAAAANgAAAAAAKgAAAAAANgAAAAAANgAAAAAAQQAAAAAAKgAAAAAAQQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAQQAAAAAALAAAAAADKgAAAAAAPwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAPwAAAAAAPwAAAAAAKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAALgAAAAAALgAAAAAAPwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAA
version: 6
-2,-4:
ind: -2,-4
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAFwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAABDwAAAAABAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAAAQAAAAAAEAAAAAACEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAAAAQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAADEAAAAAABBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBgAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAACAQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAD
+ tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAQQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAKgAAAAAALAAAAAABQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAOgAAAAAAOgAAAAADOgAAAAACQQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAABKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAAAOAAAAAACOAAAAAADKgAAAAAAOgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAACOgAAAAABOgAAAAADKgAAAAAAOgAAAAABOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAACLwAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAADKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACOgAAAAAA
version: 6
-1,-4:
ind: -1,-4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAABEAAAAAABAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADDgAAAAAADgAAAAAAAQAAAAAAGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABEAAAAAACEAAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAAGQAAAAACAQAAAAAAGQAAAAADGQAAAAACGQAAAAACGQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAGQAAAAADDgAAAAAAAQAAAAAAGQAAAAADGQAAAAABGQAAAAABGQAAAAACEAAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAGQAAAAAADgAAAAAAGQAAAAABGQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABEAAAAAACEAAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAGQAAAAADGQAAAAABGQAAAAACGQAAAAADEAAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAADgAAAAAAGQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAACAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAABAQAAAAAAEAAAAAABEAAAAAAAEAAAAAABEAAAAAADEAAAAAADAQAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAABAQAAAAAAEAAAAAABEAAAAAABEAAAAAADCgAAAAAAEAAAAAADCgAAAAADEAAAAAAAEAAAAAACEAAAAAADAQAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAADAQAAAAAAEAAAAAADEAAAAAADEAAAAAAACgAAAAADEAAAAAACCgAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAEAAAAAABEAAAAAACCgAAAAADEAAAAAABCgAAAAADEAAAAAACEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACOgAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACNwAAAAAANwAAAAAAKgAAAAAARAAAAAABRAAAAAACRAAAAAADRAAAAAABOgAAAAACOgAAAAADLAAAAAABLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAARAAAAAACKgAAAAAARAAAAAACRAAAAAADRAAAAAADRAAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAARAAAAAADNwAAAAAAKgAAAAAARAAAAAACRAAAAAABRAAAAAACRAAAAAAAOgAAAAACKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABKgAAAAAARAAAAAAANwAAAAAARAAAAAADRAAAAAADKgAAAAAARAAAAAACRAAAAAADRAAAAAACRAAAAAADOgAAAAAAOgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAARAAAAAADRAAAAAABRAAAAAAARAAAAAAAOgAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAANwAAAAAARAAAAAABNwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABOgAAAAACOgAAAAACOgAAAAADOgAAAAADOgAAAAACOgAAAAACOgAAAAABOgAAAAACKgAAAAAAOgAAAAADOgAAAAACOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAOgAAAAABOgAAAAABOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAAOgAAAAABOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACKgAAAAAAOgAAAAADOgAAAAABOgAAAAABMwAAAAADOgAAAAABMwAAAAADOgAAAAAAOgAAAAADOgAAAAACKgAAAAAAOgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAABMwAAAAACOgAAAAABMwAAAAAAOgAAAAABOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAOgAAAAADOgAAAAADMwAAAAADOgAAAAABMwAAAAADOgAAAAABOgAAAAABOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,-4:
ind: 0,-4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADGQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAGQAAAAAAGQAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACGQAAAAACAwAAAAADGQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAAEAAAAAAAEAAAAAACEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADRAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACRAAAAAAALAAAAAAARAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAADOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAACOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALgAAAAAAOgAAAAAAOgAAAAACOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAADOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAA
version: 6
0,-3:
ind: 0,-3
- tiles: EAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAABQAAAAAAEAAAAAABEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABQAAAAAAEAAAAAADEAAAAAADEAAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAABBAAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAABQAAAAAAEAAAAAADEAAAAAADAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABQAAAAAAEAAAAAAAEAAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAADEAAAAAADEAAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAACBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAABQAAAAAAEAAAAAACEAAAAAABAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAABQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAACBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAABEAAAAAACBAAAAAADBAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACEAAAAAADEAAAAAACAQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAEAAAAAACEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAABDwAAAAACAQAAAAAADgAAAAAAEAAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAACDwAAAAADAQAAAAAADgAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAACDwAAAAAAAQAAAAAADgAAAAAAEAAAAAAAAQAAAAAAEAAAAAABEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAADgAAAAAA
+ tiles: OgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAAOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAAOgAAAAABOgAAAAABOgAAAAAALQAAAAAALQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAAOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALgAAAAAAOgAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAAAOgAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACOgAAAAACOgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABKgAAAAAANwAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADKgAAAAAANwAAAAAAOgAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAANwAAAAAA
version: 6
1,-2:
ind: 1,-2
- tiles: DgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAB
+ tiles: NwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABMAAAAAAAMAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAD
version: 6
1,-1:
ind: 1,-1
- tiles: AwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAA
+ tiles: LAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAC
version: 6
1,0:
ind: 1,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAAAQAAAAAABgAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAACwAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAACwAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAABgAAAAAABgAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAPgAAAAAAPgAAAAAAKgAAAAAAKwAAAAAALAAAAAABKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALQAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAANAAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAALwAAAAAALwAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
2,-1:
ind: 2,-1
- tiles: AwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAGwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAACAQAAAAAAAwAAAAAAAwAAAAABDAAAAAAADAAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAADAAAAAAAAQAAAAAAGwAAAAAAGwAAAAAADAAAAAAAAQAAAAAADwAAAAABDwAAAAACGgAAAAAAGgAAAAAAAQAAAAAABAAAAAADBgAAAAAAAAAAAAAABgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAADDAAAAAAAAwAAAAACAQAAAAAADwAAAAADDwAAAAAAAQAAAAAAGgAAAAABAQAAAAAABAAAAAABBgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAGAAAAAAAGAAAAAAADwAAAAABAwAAAAABBAAAAAACBAAAAAACBAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAGAAAAAAAGAAAAAAADwAAAAADAQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAADAQAAAAAABAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAACBAAAAAAAAwAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAAAAQAAAAAABAAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADGwAAAAABDAAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAADAAAAAAADAAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAAKgAAAAAALAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLwAAAAAALwAAAAAALwAAAAAAKgAAAAAANQAAAAAAKgAAAAAARgAAAAAERgAAAAAANQAAAAAAKgAAAAAAOAAAAAABOAAAAAACRQAAAAAARQAAAAABKgAAAAAALQAAAAACLwAAAAAAKQAAAAAALwAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABNQAAAAAALAAAAAAAKgAAAAAAOAAAAAACOAAAAAABKgAAAAAARQAAAAABKgAAAAAALQAAAAADLwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAAALAAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAQwAAAAAAQwAAAAAAOAAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALQAAAAADLQAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAABLQAAAAABLAAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADKgAAAAAALQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAARgAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABNQAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAA
version: 6
2,0:
ind: 2,0
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAGwAAAAAEDAAAAAAADAAAAAAAGwAAAAACDAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAGwAAAAADAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABAAAAAABBAAAAAACBgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBgAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAGwAAAAAADAAAAAAAAwAAAAABAQAAAAAAAwAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAGwAAAAAAGwAAAAABAQAAAAAAGwAAAAABDAAAAAAAGwAAAAADDAAAAAAADAAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAADAAAAAAAGwAAAAACAQAAAAAADAAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAEAwAAAAAADAAAAAAADAAAAAAADAAAAAAAAQAAAAAAGwAAAAAEAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAADDAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAAEAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAwAAAAACGwAAAAABAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAARgAAAAAENQAAAAAANQAAAAAARgAAAAAENQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAADKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAAALQAAAAACLwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLwAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAARgAAAAABNQAAAAAALAAAAAADKgAAAAAALAAAAAACNQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAARgAAAAAARgAAAAAAKgAAAAAARgAAAAAANQAAAAAARgAAAAAANQAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAANQAAAAAARgAAAAAEKgAAAAAANQAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAELAAAAAABNQAAAAAANQAAAAAANQAAAAAAKgAAAAAARgAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALAAAAAADRgAAAAACKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
2,-2:
ind: 2,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAACAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAADHAAAAAADHAAAAAAAAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADHQAAAAAAHQAAAAADHQAAAAACAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAABHAAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABHQAAAAACCgAAAAADHQAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAAAHQAAAAADHQAAAAAAHQAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADGwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAGwAAAAABDAAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAGwAAAAAEAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAACDAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAABAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAABAQAAAAAADAAAAAAAAQAAAAAAGwAAAAAAAQAAAAAABgAAAAAABgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAQAAAAAADAAAAAAAAwAAAAACAwAAAAAAGwAAAAADAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAGwAAAAABDAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAQAAAAAADAAAAAAAAwAAAAADGwAAAAAADAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAD
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAARwAAAAAARwAAAAADRwAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAABLAAAAAADKgAAAAAALAAAAAACLAAAAAADSAAAAAACSAAAAAADSAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAABRwAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAABSAAAAAADMwAAAAADSAAAAAACLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAACSAAAAAACSAAAAAADSAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABRgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAARgAAAAABNQAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAABKgAAAAAARgAAAAAEKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAAANQAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAANQAAAAAAKgAAAAAARgAAAAAAKgAAAAAALwAAAAAALwAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAABKgAAAAAANQAAAAAALAAAAAABLAAAAAADRgAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAARgAAAAADNQAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAANQAAAAAALAAAAAACRgAAAAAANQAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAALwAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAALAAAAAABLAAAAAAD
version: 6
1,-3:
ind: 1,-3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAAAAQAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACKgAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAA
version: 6
1,-4:
ind: 1,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAD
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAB
version: 6
2,-3:
ind: 2,-3
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGwAAAAABAwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAADAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACgAAAAACBgAAAAAAAwAAAAAAAwAAAAACAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAACHAAAAAACHAAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARgAAAAAALAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAMwAAAAACLwAAAAAALAAAAAABLAAAAAADKgAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAA
version: 6
2,-4:
ind: 2,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAGwAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAARgAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
3,-3:
ind: 3,-3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAA
version: 6
3,-4:
ind: 3,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-4:
ind: 4,-4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,-2:
ind: 3,-2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAABQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAQAAAAAABAAAAAAAHwAAAAAAHwAAAAACBAAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAABAAAAAACHwAAAAAAHwAAAAAABAAAAAABAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABBAAAAAADBAAAAAABBAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAALgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAALgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAAAKgAAAAAALgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAALQAAAAABSwAAAAABSwAAAAACLQAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALQAAAAAASwAAAAAASwAAAAAALQAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAA
version: 6
3,-1:
ind: 3,-1
- tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABBgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAABgAAAAAAAwAAAAAAAwAAAAACAwAAAAACDwAAAAACDwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAADwAAAAAADwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAADAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAADwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAABDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAwAAAAAAAwAAAAABAQAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBAAAAAADBAAAAAABCgAAAAABBAAAAAABAwAAAAACAwAAAAACBAAAAAADBAAAAAAABAAAAAABBAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAAAAwAAAAABAwAAAAABBAAAAAABCgAAAAADBAAAAAACBAAAAAACAwAAAAABAwAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAABDAAAAAAAAQAAAAAADAAAAAAADAAAAAAAAwAAAAACAwAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAADLAAAAAABOAAAAAABOAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAOAAAAAADOAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACKgAAAAAALAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAOAAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAOAAAAAACOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLAAAAAACLAAAAAAAKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLQAAAAACLQAAAAABMwAAAAACLQAAAAADLAAAAAADLAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADNQAAAAAANQAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAADLQAAAAACMwAAAAADLQAAAAADLQAAAAADLAAAAAACLAAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABNQAAAAAAKgAAAAAANQAAAAAANQAAAAAALAAAAAABLAAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
4,-2:
ind: 4,-2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-3:
ind: 4,-3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAD
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAD
version: 6
5,-3:
ind: 5,-3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,-2:
ind: 5,-2
- tiles: AwAAAAAAAwAAAAACAQAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LAAAAAADLAAAAAACKgAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,-1:
ind: 4,-1
- tiles: AQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
1,1:
ind: 1,1
- tiles: AQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAAEDwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAEwAAAAABDwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAABDwAAAAACEwAAAAAFAwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAADwAAAAAAAQAAAAAADwAAAAACAQAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAABAAAAAADBAAAAAADBAAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACBAAAAAACBAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABBAAAAAACBAAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAACBAAAAAADBAAAAAACAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAADOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAAALAAAAAADKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAGOAAAAAADPQAAAAAGLAAAAAADKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAABLQAAAAACLQAAAAACLQAAAAACQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKwAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAKwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAA
version: 6
0,1:
ind: 0,1
- tiles: AQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAACGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAABGQAAAAAAGQAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAGQAAAAACGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAACIAAAAAAAIAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAABIAAAAAABIAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAIAAAAAAAGQAAAAAAGQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAABGQAAAAADGQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGQAAAAAAGQAAAAACGQAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAACDwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAA
+ tiles: KgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAADRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAACRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAADTAAAAAABTAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAAATAAAAAADTAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAATAAAAAACRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAACRAAAAAABRAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAARAAAAAADRAAAAAABRAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA
version: 6
-3,1:
ind: -3,1
- tiles: AgAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBQAAAAAABQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAACAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAAABAAAAAACBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAADBAAAAAAABAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACAwAAAAADAwAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAADAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAABCgAAAAACCgAAAAACCgAAAAACCgAAAAABCgAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADCgAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: KwAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAAALQAAAAACKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAABLQAAAAADLQAAAAABKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLQAAAAACLQAAAAABLQAAAAAALQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAMwAAAAACMwAAAAAAMwAAAAADMwAAAAABMwAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAAAMwAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-2,1:
ind: -2,1
- tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAADIQAAAAAFAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAFIQAAAAADAQAAAAAAAwAAAAAAAwAAAAADBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAACIQAAAAACAQAAAAAAAwAAAAADAwAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAEIQAAAAAEAQAAAAAAAwAAAAADAwAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADIQAAAAAFIQAAAAADAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIQAAAAAAIQAAAAAEAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABCgAAAAAACgAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACCgAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAQAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAA
+ tiles: LAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAABKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAAFKgAAAAAALAAAAAADLAAAAAACLQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAABTQAAAAAFKgAAAAAALAAAAAABLAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAATQAAAAADKgAAAAAALAAAAAAALAAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADTQAAAAABTQAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATQAAAAAFTQAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAAALAAAAAAAMwAAAAABMwAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAACMwAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAALQAAAAADLQAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAB
version: 6
-1,1:
ind: -1,1
- tiles: AwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAQAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAACGQAAAAAAGQAAAAADGQAAAAAAGQAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAACGQAAAAABGQAAAAAAGQAAAAAAGQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAIAAAAAABIAAAAAACIAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAABIAAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAABIAAAAAADIAAAAAABIAAAAAABIAAAAAAAIAAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAAAGQAAAAAAIAAAAAACIAAAAAACIAAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAADGQAAAAACGQAAAAABGQAAAAACGQAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGQAAAAABGQAAAAABGQAAAAAAGQAAAAACGQAAAAAD
+ tiles: LAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAPgAAAAAALAAAAAACLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAACRAAAAAABRAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAADRAAAAAAARAAAAAAARAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAADRAAAAAACTAAAAAACTAAAAAAATAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABTAAAAAADTAAAAAAATAAAAAABTAAAAAADTAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAABTAAAAAABTAAAAAACTAAAAAABTAAAAAAATAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACTAAAAAABTAAAAAACTAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAAARAAAAAADRAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARAAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAAA
version: 6
-4,1:
ind: -4,1
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAADBAAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAIgAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAEAAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAAABAAAAAACAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAABBAAAAAADBAAAAAACAQAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABAwAAAAABAwAAAAADAwAAAAACBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAADBAAAAAACBAAAAAADAQAAAAAAAwAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAACBAAAAAABAwAAAAAAAwAAAAAB
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAATgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAOgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAADLQAAAAABLAAAAAABLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAALQAAAAAALQAAAAABLQAAAAABLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAADLQAAAAAALQAAAAACLAAAAAACLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAACLQAAAAADLQAAAAADLQAAAAACKgAAAAAALAAAAAACLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAADLQAAAAADLQAAAAABLAAAAAADLAAAAAADLAAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAACLQAAAAAALAAAAAADLAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABLQAAAAADLQAAAAACKgAAAAAALAAAAAABLAAAAAABLgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAADLQAAAAAALQAAAAAALQAAAAABLQAAAAAALAAAAAACLAAAAAAB
version: 6
-3,2:
ind: -3,2
- tiles: AwAAAAAAAwAAAAABAQAAAAAAAQAAAAAADwAAAAAADwAAAAADDwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAADwAAAAADDwAAAAADDwAAAAABDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABGAAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAAAGAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAACBAAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAABKgAAAAAAOAAAAAACOAAAAAADOAAAAAABOAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAACLAAAAAADQwAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAACQwAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAADKgAAAAAALAAAAAADLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAABLAAAAAACKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAA
version: 6
-2,2:
ind: -2,2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAAABAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACHAAAAAADHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAADHAAAAAADHAAAAAACHAAAAAADHAAAAAABHAAAAAADHAAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAHAAAAAABHAAAAAABHAAAAAADHAAAAAAAHAAAAAABHAAAAAADAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAHAAAAAAAHAAAAAADHAAAAAABHAAAAAACHAAAAAACAQAAAAAAAQAAAAAADwAAAAAC
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAACLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAABLAAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACRwAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAABRwAAAAADRwAAAAADRwAAAAAARwAAAAACRwAAAAACRwAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAABRwAAAAABRwAAAAACRwAAAAAARwAAAAACRwAAAAABRwAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAARwAAAAACRwAAAAACRwAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAOAAAAAAD
version: 6
-1,2:
ind: -1,2
- tiles: AwAAAAADAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAACDwAAAAADDwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LAAAAAACLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAADKgAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,2:
ind: 0,2
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAADwAAAAACDwAAAAAADwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAEAAAAAABEAAAAAABEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADAQAAAAAADwAAAAADDwAAAAAADwAAAAACDwAAAAACAQAAAAAAEAAAAAACEAAAAAADJAAAAAABJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAACEAAAAAACEAAAAAACAQAAAAAADwAAAAACDwAAAAACDwAAAAADDwAAAAADAQAAAAAAEAAAAAAAEAAAAAADJAAAAAAAJAAAAAADJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAACEAAAAAACEAAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAEAAAAAABEAAAAAADJAAAAAABJAAAAAACJAAAAAADJAAAAAAAJAAAAAADJAAAAAABEAAAAAAAEAAAAAADAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAEAAAAAACEAAAAAABJAAAAAADJAAAAAAAJAAAAAACJAAAAAABJAAAAAADJAAAAAAAEAAAAAADEAAAAAABAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAEAAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAAADwAAAAADJQAAAAADJQAAAAADJQAAAAACJQAAAAABJQAAAAAB
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAADOgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAOgAAAAAAOgAAAAADOgAAAAACOgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAADOgAAAAABOgAAAAADOgAAAAAAOgAAAAABOgAAAAAAKgAAAAAAOAAAAAABOAAAAAACOAAAAAABOAAAAAACKgAAAAAAOgAAAAADOgAAAAABUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAAAUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAOAAAAAACOAAAAAAAOAAAAAABOAAAAAADKgAAAAAAOgAAAAABOgAAAAABUAAAAAABUAAAAAADUAAAAAABUAAAAAACUAAAAAACUAAAAAADOgAAAAAAOgAAAAACKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAAAOgAAAAABUAAAAAADUAAAAAABUAAAAAABUAAAAAABUAAAAAABUAAAAAACOgAAAAAAOgAAAAABKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAAOgAAAAABOgAAAAABUAAAAAADUAAAAAACUAAAAAADUAAAAAADUAAAAAACUAAAAAACOgAAAAADOgAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAAAOgAAAAACOgAAAAABOgAAAAACOgAAAAAAOgAAAAACOgAAAAABOgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAACOgAAAAAAOgAAAAAAOgAAAAACOgAAAAABOgAAAAADOgAAAAAAOgAAAAAAOgAAAAABOgAAAAABOgAAAAACKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAATwAAAAAATwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAACOAAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAB
version: 6
2,1:
ind: 2,1
- tiles: AwAAAAADDAAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACBgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAADAAAAAAAAQAAAAAABgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAGwAAAAABAwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAABgAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAADAAAAAAAAwAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAADAAAAAAAGwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAABGwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAACDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABAAAAAACBAAAAAACBAAAAAADBAAAAAABAQAAAAAABAAAAAACBAAAAAAABAAAAAAABAAAAAADAQAAAAAAAQAAAAAAGAAAAAAAAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAACAQAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAAAQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAAwAAAAADAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAABBAAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAQAAAAAABAAAAAABGAAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABAQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAADBAAAAAADBAAAAAADGAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABAAAAAACBAAAAAACBAAAAAAABAAAAAABAQAAAAAABAAAAAADBAAAAAACBAAAAAADBAAAAAADAQAAAAAAAQAAAAAA
+ tiles: LAAAAAAANQAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLwAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAALwAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAADLAAAAAACRgAAAAADLAAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALwAAAAAAKgAAAAAASQAAAAACKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAANQAAAAAALAAAAAABKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAANQAAAAAARgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAAKgAAAAAANQAAAAAALAAAAAACRgAAAAABKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAQwAAAAAAKgAAAAAALAAAAAADNQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAKgAAAAAALAAAAAABKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADLQAAAAADLQAAAAAALQAAAAADLQAAAAACLQAAAAACKgAAAAAALQAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALQAAAAABLQAAAAABLQAAAAADLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAABQwAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAADKgAAAAAAKgAAAAAA
version: 6
3,0:
ind: 3,0
- tiles: AQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAABAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAADBAAAAAABBAAAAAABAwAAAAABAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAACAwAAAAADAQAAAAAAAAAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAADBAAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAACBAAAAAACBAAAAAAAAwAAAAABAQAAAAAABgAAAAAABgAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABAAAAAADBAAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAANQAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAAKgAAAAAANQAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACKgAAAAAALQAAAAADLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAADLAAAAAAAKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAABLQAAAAADKgAAAAAALAAAAAABLQAAAAABLQAAAAADLQAAAAABLQAAAAABLAAAAAABKgAAAAAAKQAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAABLAAAAAADKgAAAAAALwAAAAAALwAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALQAAAAAALQAAAAADKgAAAAAALAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,1:
ind: 3,1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAGwAAAAAAAwAAAAABAwAAAAABGwAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAADAAAAAAAGwAAAAADDAAAAAAAGwAAAAABGwAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABAQAAAAAABAAAAAABBAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAARgAAAAABLAAAAAACLAAAAAACRgAAAAABNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAANQAAAAAARgAAAAADNQAAAAAARgAAAAAARgAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAALQAAAAADLQAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,2:
ind: 3,2
- tiles: AQAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAADBAAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAACBAAAAAABBAAAAAABBAAAAAAABAAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAD
+ tiles: KgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADKgAAAAAALQAAAAACLQAAAAAALQAAAAADLQAAAAAALQAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAACLQAAAAADLQAAAAAALQAAAAABLQAAAAABLQAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAAA
version: 6
2,2:
ind: 2,2
- tiles: GAAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAwAAAAABGAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAA
+ tiles: QwAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABKgAAAAAAKgAAAAAALAAAAAABQwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAABLAAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAAALAAAAAABLAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAABLAAAAAAB
version: 6
1,2:
ind: 1,2
- tiles: BQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAABAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAACAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAABAAAAAADAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAQAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAAABAAAAAABBAAAAAACAQAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAAAQAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABEAAAAAADEAAAAAACAwAAAAACHAAAAAAAHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAHAAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAADHAAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAQAAAAAAHAAAAAABHAAAAAADHAAAAAABHAAAAAACBAAAAAADBAAAAAABBAAAAAACAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAHAAAAAADHAAAAAADHAAAAAABHAAAAAACBAAAAAADBAAAAAADBAAAAAAABAAAAAABBAAAAAADBAAAAAACBAAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAHAAAAAADHAAAAAAAHAAAAAADHAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAACBAAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAQAAAAAAHAAAAAACHAAAAAABHAAAAAACHAAAAAACBAAAAAAABAAAAAABBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAB
+ tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAQwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAACOgAAAAADOgAAAAAAOgAAAAABOgAAAAADOgAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAABOgAAAAADOgAAAAADOgAAAAACOgAAAAADOgAAAAACLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALQAAAAADKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAOgAAAAAAOgAAAAADOgAAAAAAOgAAAAADOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAABOgAAAAADOgAAAAACKgAAAAAALQAAAAAALQAAAAAALQAAAAABLQAAAAACLQAAAAABLQAAAAACLQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAAOgAAAAABOgAAAAACOgAAAAABOgAAAAABKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACOgAAAAAALAAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAABRwAAAAABRwAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAABLAAAAAAALAAAAAADRwAAAAADRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAACRwAAAAAARwAAAAACRwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAADRwAAAAABRwAAAAACRwAAAAADRwAAAAACRwAAAAABRwAAAAAARwAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAADKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAARwAAAAACRwAAAAACRwAAAAABRwAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAARwAAAAAARwAAAAAARwAAAAADRwAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABLQAAAAACLQAAAAABLQAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAADKgAAAAAALAAAAAAALAAAAAABLAAAAAAA
version: 6
4,2:
ind: 4,2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAJgAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAJgAAAAAAAwAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAACAQAAAAAADgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAVAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAVAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALQAAAAADKgAAAAAANwAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAADLAAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAACKgAAAAAAKwAAAAAA
version: 6
4,3:
ind: 4,3
- tiles: AwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADBgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAGQAAAAACAQAAAAAADgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAIAAAAAABAwAAAAADDgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAIAAAAAACAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAAKwAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAACLAAAAAABLAAAAAADKgAAAAAAKwAAAAAALAAAAAACLAAAAAABLAAAAAABLwAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAARAAAAAADKgAAAAAANwAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAABNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAATAAAAAAALAAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAATAAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,2:
ind: 5,2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
5,3:
ind: 5,3
- tiles: BQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,3:
ind: 3,3
- tiles: AwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAGQAAAAADGQAAAAACGQAAAAACDwAAAAABDwAAAAACBgAAAAAAGQAAAAACGQAAAAADGQAAAAADGQAAAAABAwAAAAABAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAGQAAAAABGQAAAAADGQAAAAAADwAAAAACDwAAAAABDwAAAAACGQAAAAADGQAAAAACGQAAAAACIAAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABIAAAAAAAIAAAAAACIAAAAAABDwAAAAADDwAAAAAADwAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABIAAAAAACIAAAAAADIAAAAAACDwAAAAADDwAAAAACDwAAAAABIAAAAAACIAAAAAAAIAAAAAACIAAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAGQAAAAAAGQAAAAADGQAAAAACDwAAAAACDwAAAAADDwAAAAACGQAAAAABGQAAAAADGQAAAAADGQAAAAACAwAAAAACAQAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAGQAAAAADGQAAAAAAGQAAAAACDwAAAAABDwAAAAADDwAAAAAAGQAAAAAAGQAAAAABGQAAAAACGQAAAAADAwAAAAACAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAQAAAAAAGQAAAAAAGQAAAAADGQAAAAADDwAAAAABDwAAAAABDwAAAAADGQAAAAAAGQAAAAAAGQAAAAABGQAAAAABAwAAAAABAQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAA
+ tiles: LAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAAALAAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAACKgAAAAAARAAAAAADRAAAAAABRAAAAAACOAAAAAACOAAAAAACLwAAAAAARAAAAAACRAAAAAAARAAAAAAARAAAAAADLAAAAAABKgAAAAAALAAAAAABLAAAAAAAKgAAAAAAKgAAAAAARAAAAAACRAAAAAACRAAAAAAAOAAAAAABOAAAAAAAOAAAAAAARAAAAAADRAAAAAADRAAAAAACTAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAADTAAAAAABTAAAAAAATAAAAAACOAAAAAAAOAAAAAABOAAAAAACTAAAAAACTAAAAAADTAAAAAAATAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAADTAAAAAAATAAAAAABTAAAAAABOAAAAAADOAAAAAAAOAAAAAACTAAAAAADTAAAAAADTAAAAAACTAAAAAACLAAAAAACLAAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAARAAAAAAARAAAAAAARAAAAAADOAAAAAADOAAAAAACOAAAAAACRAAAAAAARAAAAAAARAAAAAAARAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAARAAAAAABRAAAAAABRAAAAAACOAAAAAABOAAAAAACOAAAAAABRAAAAAACRAAAAAAARAAAAAABRAAAAAADLAAAAAABKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAARAAAAAAARAAAAAADRAAAAAACOAAAAAABOAAAAAACOAAAAAADRAAAAAAARAAAAAADRAAAAAADRAAAAAAALAAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: AQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACGAAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABGAAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAACBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADGAAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAACBAAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABJwAAAAACAQAAAAAABAAAAAACBAAAAAACBAAAAAABBAAAAAAAAQAAAAAABgAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACJwAAAAACBAAAAAABBAAAAAADBAAAAAABBAAAAAADBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAABAAAAAAABAAAAAACBAAAAAABBAAAAAAABAAAAAABBAAAAAADBAAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACJwAAAAACAQAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAABBAAAAAADBAAAAAABBAAAAAABAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAJwAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAADBAAAAAAABAAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAACAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAACJwAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAADHgAAAAABCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAwAAAAADCwAAAAAAAQAAAAAAHgAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAHgAAAAABAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAADAwAAAAACAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAACQwAAAAAAKgAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAABLAAAAAAAQwAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADQwAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAADLQAAAAADLQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALQAAAAACLQAAAAABLQAAAAACLQAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADVQAAAAAAKgAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAADKgAAAAAALwAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAADVQAAAAACLQAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAACLQAAAAABLQAAAAABLQAAAAAALQAAAAAALAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAADLAAAAAABVQAAAAAAKgAAAAAALQAAAAAALQAAAAACLQAAAAADLQAAAAABLQAAAAADLQAAAAACLQAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAACVQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAABLQAAAAADLQAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAACKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAACVQAAAAABKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAADSQAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAALAAAAAADNAAAAAAAKgAAAAAASQAAAAADKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLAAAAAAALAAAAAAALAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAASQAAAAACKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAOgAAAAADOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAABLAAAAAACKgAAAAAA
version: 6
1,3:
ind: 1,3
- tiles: AQAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAAABAAAAAAABAAAAAABHAAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAAABAAAAAADBAAAAAACBAAAAAABAQAAAAAADwAAAAADDwAAAAABGAAAAAAAAQAAAAAAHAAAAAADHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADBAAAAAADBAAAAAAABAAAAAADBAAAAAACGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAABHAAAAAABHAAAAAADHAAAAAADHAAAAAADAQAAAAAABAAAAAABBAAAAAADBAAAAAABAQAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAQAAAAAAHAAAAAAAHAAAAAABHAAAAAAAHAAAAAABHAAAAAAAHAAAAAADHAAAAAACBAAAAAABBAAAAAABBAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHAAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAABHAAAAAACHAAAAAADAQAAAAAABAAAAAADBAAAAAAABAAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAADAQAAAAAAHAAAAAABHAAAAAAAHAAAAAACHAAAAAADHAAAAAACHAAAAAADHAAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAJwAAAAADJwAAAAAAJwAAAAADJwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAADJwAAAAADJwAAAAABAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAABgAAAAAAJwAAAAACJwAAAAACJwAAAAADJwAAAAAAJwAAAAACJwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAQAAAAAAJwAAAAABJwAAAAADJwAAAAACJwAAAAADJwAAAAABJwAAAAADJwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAQAAAAAAJwAAAAAAJwAAAAABJwAAAAAAJwAAAAABJwAAAAAAJwAAAAACJwAAAAABAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAJwAAAAADJwAAAAABJwAAAAABJwAAAAADJwAAAAACJwAAAAACJwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAJwAAAAACJwAAAAADJwAAAAAAJwAAAAABJwAAAAADJwAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAACwAAAAAABgAAAAAAAQAAAAAACwAAAAAA
+ tiles: KgAAAAAARwAAAAABRwAAAAACRwAAAAACRwAAAAABLQAAAAADLQAAAAACRwAAAAADKgAAAAAALQAAAAAALQAAAAACLQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAADRwAAAAACRwAAAAABRwAAAAACRwAAAAABRwAAAAADRwAAAAADRwAAAAACLQAAAAADLQAAAAACLQAAAAADKgAAAAAAOAAAAAAAOAAAAAABQwAAAAAAKgAAAAAARwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAADRwAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAADRwAAAAACKgAAAAAALQAAAAACLQAAAAADLQAAAAAAKgAAAAAAQwAAAAAAQwAAAAAAQwAAAAAAKgAAAAAARwAAAAABRwAAAAACRwAAAAABRwAAAAABRwAAAAACRwAAAAABRwAAAAACLQAAAAADLQAAAAABLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAARwAAAAACRwAAAAADRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAADKgAAAAAALQAAAAADLQAAAAAALQAAAAACVQAAAAACVQAAAAABVQAAAAADVQAAAAACKgAAAAAARwAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAADRwAAAAABRwAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAVQAAAAADVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAACKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAABVQAAAAACVQAAAAADVQAAAAADKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALwAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAADKgAAAAAAVQAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAADVQAAAAAAVQAAAAABKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAACKgAAAAAAVQAAAAACVQAAAAACVQAAAAACVQAAAAACVQAAAAADVQAAAAACVQAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAAAKgAAAAAAVQAAAAACVQAAAAADVQAAAAACVQAAAAAAVQAAAAADVQAAAAADVQAAAAACKgAAAAAALAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAAVQAAAAABVQAAAAADVQAAAAADVQAAAAADVQAAAAAAVQAAAAADKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAALwAAAAAAKgAAAAAANAAAAAAA
version: 6
0,3:
ind: 0,3
- tiles: IwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAACJQAAAAAAJQAAAAACJQAAAAAAJQAAAAAAJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAACDwAAAAADJQAAAAACJQAAAAAAJQAAAAADJQAAAAAAJQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAAADwAAAAABDwAAAAAADwAAAAACJQAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAACIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAAADwAAAAABJQAAAAADJQAAAAACJQAAAAADJQAAAAACJQAAAAABIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAAADwAAAAABDwAAAAADDwAAAAADDwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAAQAAAAAADwAAAAACDwAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAABDwAAAAADCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACDwAAAAADDwAAAAAADwAAAAABDwAAAAADDwAAAAACDwAAAAAADwAAAAADDwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAKAAAAAAAEgAAAAAAOQAAAAAAAQAAAAAADwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAKAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAADwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAOQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAAQAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAADBgAAAAAAAQAAAAAACwAAAAAAHgAAAAACCwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: TwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAACOAAAAAADOAAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAACOAAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAABOAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADTwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAADOAAAAAACOAAAAAABOAAAAAACOAAAAAADOAAAAAAAOAAAAAABOAAAAAAAOAAAAAADKgAAAAAAKgAAAAAAKgAAAAAATwAAAAAATwAAAAAATwAAAAAAKgAAAAAAOAAAAAACOAAAAAABOAAAAAADOAAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAAAOAAAAAABOAAAAAAAOAAAAAABOAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAVwAAAAAAKgAAAAAAOAAAAAADLAAAAAADLAAAAAADLAAAAAAALAAAAAABLAAAAAADLAAAAAACLAAAAAAALAAAAAABNAAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAABLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAOAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAVwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAKgAAAAAAOAAAAAAAOAAAAAACOAAAAAACOAAAAAABOAAAAAAAOAAAAAAAOAAAAAACOAAAAAABOAAAAAACNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAADLwAAAAAAKgAAAAAANAAAAAAASQAAAAADNAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-1,3:
ind: -1,3
- tiles: DwAAAAACDwAAAAABDwAAAAAADwAAAAACAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAACDwAAAAAADwAAAAADAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAADDwAAAAAADwAAAAADDwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAQAAAAAAHgAAAAABAQAAAAAAAQAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAJwAAAAABJwAAAAABJwAAAAACAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAABgAAAAAAAQAAAAAAAQAAAAAAJwAAAAABJwAAAAABJwAAAAABAQAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAJwAAAAACJwAAAAAAJwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAABJwAAAAACAQAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAQAAAAAADQAAAAAADQAAAAAADQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAQAAAAAAAQAAAAAA
+ tiles: OAAAAAAAOAAAAAADOAAAAAADOAAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACOAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADLAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAAAOAAAAAAAOAAAAAADOAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAABLAAAAAADKgAAAAAASQAAAAACKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAABOAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAABLAAAAAACKgAAAAAASQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADLAAAAAABKgAAAAAAKgAAAAAALAAAAAADKgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAAAVQAAAAABKgAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAACKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAALwAAAAAAKgAAAAAAKgAAAAAAVQAAAAACVQAAAAABVQAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAVQAAAAACVQAAAAADVQAAAAACKgAAAAAALAAAAAABLAAAAAABLAAAAAABLAAAAAAAKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAAVQAAAAADVQAAAAADVQAAAAADKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAABKgAAAAAANgAAAAAANgAAAAAANgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAACLAAAAAABLAAAAAADLAAAAAABLAAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAACKgAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALAAAAAABLAAAAAADLAAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAADKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALAAAAAADLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAADKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAALAAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACLAAAAAADLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAACKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAACLAAAAAABLAAAAAABKgAAAAAAKgAAAAAA
version: 6
3,4:
ind: 3,4
- tiles: AQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABAAAAAAABAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAALQAAAAABKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAABLAAAAAADLAAAAAADLAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAAALQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
2,4:
ind: 2,4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAA
version: 6
1,4:
ind: 1,4
- tiles: AwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAADAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADDAAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAADDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAADAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAA
+ tiles: LAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAANQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADLAAAAAABLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACLAAAAAABNQAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAACLAAAAAABLAAAAAACLAAAAAACLAAAAAABKgAAAAAALAAAAAADNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAA
version: 6
4,4:
ind: 4,4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
0,4:
ind: 0,4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAQAAAAAAAQAAAAAACwAAAAAACwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAAADAAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAANAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAANQAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAACLAAAAAADKgAAAAAALAAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAADKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,4:
ind: -1,4
- tiles: AwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAQAAAAAAAwAAAAACAwAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAAAHgAAAAADHgAAAAAAHgAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADAAAAAAAAwAAAAAAAwAAAAABAQAAAAAACwAAAAAACwAAAAAAHgAAAAADCwAAAAAAHgAAAAACCwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAwAAAAABDAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAAAAwAAAAAADwAAAAACDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAADDwAAAAACDwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAADwAAAAACDwAAAAACAwAAAAACDwAAAAABDwAAAAACDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAABDwAAAAADAwAAAAABAQAAAAAAAgAAAAAABQAAAAAADwAAAAADDwAAAAACDwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACDwAAAAAADwAAAAADDwAAAAABDwAAAAAADwAAAAACDwAAAAADDwAAAAACDwAAAAADAwAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADDwAAAAABDwAAAAACDwAAAAACDwAAAAADDwAAAAAADwAAAAADDwAAAAAADwAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAACDwAAAAACDwAAAAABDwAAAAAADwAAAAABDwAAAAADAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAADDwAAAAADDwAAAAADDwAAAAAADwAAAAABDwAAAAACDwAAAAADDwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LAAAAAACLAAAAAADKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABLAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAADKgAAAAAALAAAAAADLAAAAAABLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALwAAAAAASQAAAAABSQAAAAACSQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANQAAAAAALAAAAAADLAAAAAAAKgAAAAAANAAAAAAANAAAAAAASQAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAACNQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAACLAAAAAABOAAAAAAAOAAAAAAAOAAAAAABOAAAAAADOAAAAAACOAAAAAABOAAAAAABOAAAAAACLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAADOAAAAAAAOAAAAAACOAAAAAABOAAAAAABOAAAAAAAOAAAAAABOAAAAAABOAAAAAAALAAAAAADKgAAAAAAKwAAAAAALgAAAAAAOAAAAAABOAAAAAABOAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAACLAAAAAAALAAAAAADLAAAAAABLAAAAAADLAAAAAADLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABOAAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAACOAAAAAAAOAAAAAACOAAAAAABLAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACOAAAAAABOAAAAAAAOAAAAAACOAAAAAACOAAAAAAAOAAAAAADOAAAAAAAOAAAAAABLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAACLAAAAAACLAAAAAACLAAAAAACLAAAAAADLAAAAAADLAAAAAADLAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADOAAAAAABOAAAAAABOAAAAAABOAAAAAACOAAAAAADOAAAAAADOAAAAAADKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAABOAAAAAABOAAAAAADOAAAAAAAOAAAAAABOAAAAAADOAAAAAADOAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
0,5:
ind: 0,5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAABLAAAAAABKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
1,5:
ind: 1,5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAACLAAAAAAAKgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAACLAAAAAACKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-4,2:
ind: -4,2
- tiles: BQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAACBAAAAAACBAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAACAwAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBAAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAACBAAAAAAAAQAAAAAAAwAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAABAAAAAACBAAAAAADAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAAAAAAAABAAAAAADBAAAAAAABAAAAAACBAAAAAABBAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAACLQAAAAABLQAAAAABLQAAAAABLAAAAAABLAAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAABLQAAAAADLQAAAAACLQAAAAABLQAAAAACLAAAAAADLAAAAAADLgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAACKgAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKQAAAAAALQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKQAAAAAALQAAAAABLQAAAAACLQAAAAAALQAAAAABLQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABKQAAAAAAKQAAAAAAKQAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-4,0:
ind: -4,0
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAA
version: 6
-5,2:
ind: -5,2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
-4,3:
ind: -4,3
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAEwAAAAADDwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAACEwAAAAAGAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAADEwAAAAAEEwAAAAAFDwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABDwAAAAADEwAAAAAGDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAACDwAAAAABDwAAAAACDwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAADwAAAAABDwAAAAABDwAAAAACEwAAAAAAEwAAAAAGDwAAAAABAQAAAAAAAQAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAEwAAAAACDwAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAC
+ tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAOgAAAAACKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAPQAAAAAAPQAAAAAAOAAAAAAAKgAAAAAAKgAAAAAALAAAAAABLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAPQAAAAAAOAAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAB
version: 6
-3,3:
ind: -3,3
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAACBAAAAAAABAAAAAADBAAAAAACBAAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAABAAAAAABBAAAAAACBAAAAAABBAAAAAACBAAAAAABAQAAAAAABAAAAAADBAAAAAADBAAAAAADAQAAAAAAAwAAAAADAwAAAAABAwAAAAAABgAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAADBAAAAAACAQAAAAAABAAAAAABBAAAAAADBAAAAAABAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADBAAAAAACBAAAAAABBAAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACBAAAAAADBAAAAAADAQAAAAAABAAAAAABBAAAAAABBAAAAAABBAAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAABgAAAAAAEAAAAAACEAAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAJAAAAAACEAAAAAADAQAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAADBAAAAAABBAAAAAACBAAAAAABAQAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAQAAAAAAEAAAAAACEAAAAAAAEAAAAAADAwAAAAABCgAAAAAAAwAAAAADAQAAAAAABAAAAAAABAAAAAADBAAAAAADAQAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAABAwAAAAADAQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAQAAAAAAAwAAAAABAwAAAAAAAQAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAwAAAAADAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAADAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAABAAAAAABAQAAAAAAAQAAAAAABAAAAAABAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLQAAAAADLQAAAAAALAAAAAACLAAAAAADLAAAAAAALAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADKgAAAAAAKgAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAABLQAAAAAAKgAAAAAALQAAAAACLQAAAAACLQAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAADLwAAAAAAKgAAAAAAKgAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACKgAAAAAALQAAAAADLQAAAAACLQAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAADLAAAAAACKgAAAAAAKgAAAAAALQAAAAABLQAAAAADLQAAAAAALQAAAAABLQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAADLQAAAAABLAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAAAKgAAAAAALQAAAAABLQAAAAAALQAAAAADLQAAAAAALAAAAAADLAAAAAABLAAAAAACLAAAAAAALwAAAAAAOgAAAAADOgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAAALAAAAAABLAAAAAADLAAAAAACKgAAAAAAKgAAAAAAUAAAAAABOgAAAAABKgAAAAAALAAAAAACLAAAAAAALAAAAAACLQAAAAADLQAAAAABLQAAAAABLQAAAAABKgAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAAAKgAAAAAAOgAAAAADOgAAAAADOgAAAAADLAAAAAAAMwAAAAAALAAAAAADKgAAAAAALQAAAAACLQAAAAADLQAAAAADKgAAAAAALAAAAAADLAAAAAAALAAAAAADLAAAAAABKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAAALAAAAAABKgAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAABLAAAAAACLAAAAAADLAAAAAACLAAAAAAALAAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAACLAAAAAADLAAAAAACLAAAAAABLAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAABLAAAAAADLAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAABLAAAAAACLAAAAAABKgAAAAAALAAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALAAAAAABKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAADKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKwAAAAAAKwAAAAAAKgAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAAAKgAAAAAALAAAAAACKgAAAAAALAAAAAADLAAAAAAAKgAAAAAALAAAAAACLAAAAAADKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAAKgAAAAAALQAAAAACKgAAAAAA
version: 6
-5,3:
ind: -5,3
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,3:
ind: -2,3
- tiles: BgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAHAAAAAAAHAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAABAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAHgAAAAADCwAAAAAAAQAAAAAADwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAABAQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABDQAAAAAADQAAAAAADQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAADAQAAAAAAAwAAAAACAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAQAAAAAAEAAAAAAAEAAAAAADAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAQAAAAAAEAAAAAADEAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAQAAAAAAEAAAAAAAEAAAAAABAQAAAAAAEAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAQAAAAAAEAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAJwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAADAQAAAAAABgAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAwAAAAADAwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAACwAAAAAAAQAAAAAAHgAAAAACAQAAAAAAAwAAAAAC
+ tiles: LwAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAABLAAAAAADKgAAAAAAKgAAAAAARwAAAAADRwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACKgAAAAAALAAAAAAALAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAASQAAAAABNAAAAAAAKgAAAAAAOAAAAAAALAAAAAAALAAAAAADLAAAAAACLAAAAAACKgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACLAAAAAAALAAAAAACLAAAAAAALAAAAAABNgAAAAAANgAAAAAANgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAABKgAAAAAALAAAAAAALAAAAAACLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAACLAAAAAADKgAAAAAAOgAAAAAAOgAAAAAAKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAAAKgAAAAAALAAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAOgAAAAACOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABLAAAAAABLAAAAAACLAAAAAACLAAAAAADLAAAAAACKgAAAAAAOgAAAAAAOgAAAAABKgAAAAAAOgAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAADLAAAAAABLAAAAAAALAAAAAADLAAAAAAALAAAAAABKgAAAAAAOgAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAADLAAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAABLAAAAAAALAAAAAADLAAAAAADLAAAAAADLAAAAAABLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAABLAAAAAAALAAAAAAALAAAAAADKgAAAAAALAAAAAABLAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAADLAAAAAACLAAAAAADLAAAAAADLAAAAAABLAAAAAADKgAAAAAALwAAAAAAKgAAAAAANAAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAACLAAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAACLAAAAAABLAAAAAABLAAAAAAALAAAAAABKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAANAAAAAAAKgAAAAAASQAAAAABKgAAAAAALAAAAAAD
version: 6
-4,4:
ind: -4,4
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADQgAAAAABQgAAAAADQgAAAAACQgAAAAABQgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAwAAAAADQgAAAAAAQgAAAAAAQgAAAAADQgAAAAADQgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAABQgAAAAABQgAAAAACQgAAAAADQgAAAAADQgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADQgAAAAABQgAAAAAAQgAAAAADQgAAAAADQgAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAAAAwAAAAABQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAAQgAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACQgAAAAAAQgAAAAAAQgAAAAABQgAAAAAAQgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAABWAAAAAABWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAACWAAAAAADWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-3,4:
ind: -3,4
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABBAAAAAABBAAAAAABBAAAAAABBAAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAABBAAAAAADBAAAAAADBAAAAAAABAAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAAABAAAAAADBAAAAAADBAAAAAABAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAABAAAAAADBAAAAAADBAAAAAABBAAAAAAAAwAAAAABQgAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAABAwAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAQgAAAAADAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAACAwAAAAADAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAQgAAAAADAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAwAAAAACAwAAAAACAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAADAwAAAAABAQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACIgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAQAAAAAA
+ tiles: KgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAABLQAAAAAALQAAAAADLQAAAAADLAAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAABLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAAALQAAAAACLQAAAAACLQAAAAACLQAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALAAAAAADLQAAAAADLQAAAAAALQAAAAACLQAAAAACLAAAAAAAWAAAAAACLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAWAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAATgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKgAAAAAA
version: 6
-2,4:
ind: -2,4
- tiles: AQAAAAAAAQAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAABAAAAAADBAAAAAACBAAAAAACBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAACAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAABAAAAAABBAAAAAAABAAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADBAAAAAABBAAAAAAABAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAABAAAAAABBAAAAAAABAAAAAACBAAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACCwAAAAAACwAAAAAACwAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAQAAAAAACwAAAAAAAQAAAAAACwAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAQAAAAAACwAAAAAACwAAAAAACwAAAAAAAwAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAQAAAAAAAwAAAAABAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KgAAAAAAKgAAAAAALAAAAAADLAAAAAABLAAAAAABLAAAAAADLAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAABKgAAAAAAKgAAAAAALAAAAAADLAAAAAAALAAAAAACLAAAAAAALAAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAACKgAAAAAAKgAAAAAALQAAAAADLQAAAAACLQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAABLQAAAAABLQAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAAALQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADLQAAAAADLQAAAAACLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKgAAAAAALQAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAANAAAAAAANAAAAAAANAAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAAKgAAAAAANAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAAKgAAAAAANAAAAAAANAAAAAAANAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
4,0:
ind: 4,0
- tiles: AgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAA
version: 6
-4,-1:
ind: -4,-1
- tiles: BQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAADDwAAAAAADwAAAAABEwAAAAABAQAAAAAAAQAAAAAAEwAAAAABDwAAAAACAQAAAAAABAAAAAACBAAAAAACAQAAAAAABQAAAAAABQAAAAAAAQAAAAAAEwAAAAABAQAAAAAAAQAAAAAADwAAAAACEwAAAAAGDwAAAAABDwAAAAADDwAAAAADEwAAAAABAQAAAAAABAAAAAADCgAAAAABBAAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAADwAAAAABAQAAAAAAAQAAAAAADwAAAAABEwAAAAAGEwAAAAAEAQAAAAAAEwAAAAABAQAAAAAABAAAAAAABAAAAAABBAAAAAABBQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAACOAAAAAADOAAAAAABPQAAAAAAKgAAAAAAKgAAAAAAPQAAAAADOAAAAAABKgAAAAAALQAAAAABLQAAAAABKgAAAAAALgAAAAAALgAAAAAAKgAAAAAAPQAAAAAFKgAAAAAAKgAAAAAAOAAAAAABPQAAAAAFOAAAAAABOAAAAAAAOAAAAAAAPQAAAAAEKgAAAAAALQAAAAACMwAAAAABLQAAAAABLgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAOAAAAAADKgAAAAAAKgAAAAAAOAAAAAAAPQAAAAAGPQAAAAADKgAAAAAAPQAAAAACKgAAAAAALQAAAAAALQAAAAACLQAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
3,5:
ind: 3,5
- tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: KwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
2,5:
ind: 2,5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-1,-5:
ind: -1,-5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAAAQAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAQAAAAAAAQAAAAAAAwAAAAACAQAAAAAABAAAAAACAQAAAAAABAAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABAwAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAAAQAAAAAAAQAAAAAABAAAAAABBAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAABAAAAAAAAQAAAAAABAAAAAABBAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABAAAAAACAQAAAAAABAAAAAACBAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAABKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAALQAAAAABLAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACLQAAAAACKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAACKgAAAAAALQAAAAACLQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALQAAAAABKgAAAAAALQAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
-2,-5:
ind: -2,-5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAA
version: 6
0,-5:
ind: 0,-5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAAABAAAAAADAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADBAAAAAACBAAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAABAAAAAABBAAAAAADAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAACLQAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAADKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABLQAAAAADLQAAAAACKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAALQAAAAAALQAAAAABKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALQAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-5,-2:
ind: -5,-2
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAADAwAAAAADBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAAAAwAAAAACBQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAwAAAAABAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAAALAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADLAAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAABLAAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALAAAAAADKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-3,-5:
ind: -3,-5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKwAAAAAALgAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAA
version: 6
-3,5:
ind: -3,5
- tiles: BQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
-2,5:
ind: -2,5
- tiles: BQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAABQAAAAAA
+ tiles: LgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAALgAAAAAA
version: 6
- type: Broadphase
- type: Physics
@@ -5695,8 +5695,6 @@ entities:
9045: 3,-19
9046: 4,-19
9069: 29,-9
- 10292: 21,-26
- 10293: 22,-26
- node:
zIndex: 1
color: '#EFB34196'
@@ -9177,6 +9175,12 @@ entities:
id: grasssnow
decals:
4352: -46.01974,-50.080185
+ - node:
+ color: '#FFFFFFFF'
+ id: grasssnow
+ decals:
+ 10162: 21.08367,-26.059422
+ 10163: 21.882736,-26.075739
- node:
cleanable: True
color: '#8600003C'
@@ -11032,14 +11036,17 @@ entities:
14,2:
0: 61152
14,3:
- 0: 14
+ 6: 2
+ 7: 4
+ 0: 8
2: 224
15,1:
0: 30583
15,2:
0: 30576
15,3:
- 0: 7
+ 0: 1
+ 8: 6
2: 240
16,1:
0: 9011
@@ -11144,10 +11151,10 @@ entities:
0: 45532
9,12:
0: 29688
- 6: 32768
+ 9: 32768
10,12:
0: 187
- 6: 28672
+ 9: 28672
11,12:
0: 65535
4,9:
@@ -11292,7 +11299,7 @@ entities:
0: 65287
9,13:
0: 62259
- 6: 136
+ 9: 136
9,14:
0: 61695
9,15:
@@ -11300,7 +11307,7 @@ entities:
8,16:
0: 61176
10,13:
- 6: 119
+ 9: 119
0: 61440
10,14:
0: 64669
@@ -11926,6 +11933,51 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.823984
+ - 82.09976
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.813705
+ - 82.06108
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.6852
+ - 81.57766
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 235
moles:
@@ -15442,7 +15494,7 @@ entities:
pos: 26.5,17.5
parent: 12
- type: Door
- secondsUntilStateChange: -10061.324
+ secondsUntilStateChange: -19267.662
state: Opening
- type: DeviceLinkSink
invokeCounter: 1
@@ -44839,6 +44891,46 @@ entities:
- type: Transform
pos: 49.5,54.5
parent: 12
+ - uid: 32192
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 12
+ - uid: 32193
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 12
+ - uid: 32194
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 12
+ - uid: 32195
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 12
+ - uid: 32196
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 12
+ - uid: 32197
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 12
+ - uid: 32198
+ components:
+ - type: Transform
+ pos: 77.5,4.5
+ parent: 12
+ - uid: 32199
+ components:
+ - type: Transform
+ pos: 77.5,5.5
+ parent: 12
- uid: 32230
components:
- type: Transform
@@ -56442,6 +56534,11 @@ entities:
- type: Transform
pos: -58.5,-43.5
parent: 12
+ - uid: 31751
+ components:
+ - type: Transform
+ pos: 77.5,-2.5
+ parent: 12
- uid: 31775
components:
- type: Transform
@@ -56597,6 +56694,166 @@ entities:
- type: Transform
pos: 40.5,-10.5
parent: 12
+ - uid: 32130
+ components:
+ - type: Transform
+ pos: 77.5,-1.5
+ parent: 12
+ - uid: 32131
+ components:
+ - type: Transform
+ pos: 77.5,1.5
+ parent: 12
+ - uid: 32144
+ components:
+ - type: Transform
+ pos: 77.5,2.5
+ parent: 12
+ - uid: 32145
+ components:
+ - type: Transform
+ pos: 77.5,-0.5
+ parent: 12
+ - uid: 32146
+ components:
+ - type: Transform
+ pos: 77.5,3.5
+ parent: 12
+ - uid: 32147
+ components:
+ - type: Transform
+ pos: 77.5,4.5
+ parent: 12
+ - uid: 32148
+ components:
+ - type: Transform
+ pos: 77.5,5.5
+ parent: 12
+ - uid: 32149
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 12
+ - uid: 32150
+ components:
+ - type: Transform
+ pos: 77.5,0.5
+ parent: 12
+ - uid: 32151
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 12
+ - uid: 32152
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 12
+ - uid: 32153
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 12
+ - uid: 32154
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 12
+ - uid: 32155
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 12
+ - uid: 32200
+ components:
+ - type: Transform
+ pos: 71.5,-1.5
+ parent: 12
+ - uid: 32201
+ components:
+ - type: Transform
+ pos: 71.5,0.5
+ parent: 12
+ - uid: 32202
+ components:
+ - type: Transform
+ pos: 71.5,1.5
+ parent: 12
+ - uid: 32203
+ components:
+ - type: Transform
+ pos: 71.5,2.5
+ parent: 12
+ - uid: 32204
+ components:
+ - type: Transform
+ pos: 71.5,-0.5
+ parent: 12
+ - uid: 32205
+ components:
+ - type: Transform
+ pos: 66.5,4.5
+ parent: 12
+ - uid: 32206
+ components:
+ - type: Transform
+ pos: 67.5,4.5
+ parent: 12
+ - uid: 32207
+ components:
+ - type: Transform
+ pos: 68.5,4.5
+ parent: 12
+ - uid: 32208
+ components:
+ - type: Transform
+ pos: 69.5,4.5
+ parent: 12
+ - uid: 32209
+ components:
+ - type: Transform
+ pos: 73.5,4.5
+ parent: 12
+ - uid: 32210
+ components:
+ - type: Transform
+ pos: 74.5,4.5
+ parent: 12
+ - uid: 32211
+ components:
+ - type: Transform
+ pos: 75.5,4.5
+ parent: 12
+ - uid: 32212
+ components:
+ - type: Transform
+ pos: 76.5,4.5
+ parent: 12
+ - uid: 32237
+ components:
+ - type: Transform
+ pos: 71.5,6.5
+ parent: 12
+ - uid: 32238
+ components:
+ - type: Transform
+ pos: 71.5,7.5
+ parent: 12
+ - uid: 32239
+ components:
+ - type: Transform
+ pos: 71.5,8.5
+ parent: 12
+ - uid: 32240
+ components:
+ - type: Transform
+ pos: 71.5,9.5
+ parent: 12
+ - uid: 32241
+ components:
+ - type: Transform
+ pos: 71.5,10.5
+ parent: 12
- proto: CableHVStack
entities:
- uid: 353
@@ -67407,6 +67664,306 @@ entities:
- type: Transform
pos: 49.5,54.5
parent: 12
+ - uid: 32156
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 12
+ - uid: 32157
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 12
+ - uid: 32158
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 12
+ - uid: 32159
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 12
+ - uid: 32160
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 12
+ - uid: 32161
+ components:
+ - type: Transform
+ pos: 77.5,5.5
+ parent: 12
+ - uid: 32162
+ components:
+ - type: Transform
+ pos: 77.5,4.5
+ parent: 12
+ - uid: 32163
+ components:
+ - type: Transform
+ pos: 77.5,3.5
+ parent: 12
+ - uid: 32164
+ components:
+ - type: Transform
+ pos: 77.5,2.5
+ parent: 12
+ - uid: 32165
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 12
+ - uid: 32166
+ components:
+ - type: Transform
+ pos: 77.5,1.5
+ parent: 12
+ - uid: 32167
+ components:
+ - type: Transform
+ pos: 77.5,-0.5
+ parent: 12
+ - uid: 32168
+ components:
+ - type: Transform
+ pos: 77.5,-1.5
+ parent: 12
+ - uid: 32169
+ components:
+ - type: Transform
+ pos: 77.5,-2.5
+ parent: 12
+ - uid: 32170
+ components:
+ - type: Transform
+ pos: 77.5,0.5
+ parent: 12
+ - uid: 32213
+ components:
+ - type: Transform
+ pos: 66.5,4.5
+ parent: 12
+ - uid: 32242
+ components:
+ - type: Transform
+ pos: 67.5,4.5
+ parent: 12
+ - uid: 32243
+ components:
+ - type: Transform
+ pos: 68.5,4.5
+ parent: 12
+ - uid: 32244
+ components:
+ - type: Transform
+ pos: 69.5,4.5
+ parent: 12
+ - uid: 32245
+ components:
+ - type: Transform
+ pos: 71.5,6.5
+ parent: 12
+ - uid: 32246
+ components:
+ - type: Transform
+ pos: 71.5,7.5
+ parent: 12
+ - uid: 32247
+ components:
+ - type: Transform
+ pos: 71.5,8.5
+ parent: 12
+ - uid: 32248
+ components:
+ - type: Transform
+ pos: 71.5,9.5
+ parent: 12
+ - uid: 32249
+ components:
+ - type: Transform
+ pos: 71.5,10.5
+ parent: 12
+ - uid: 32250
+ components:
+ - type: Transform
+ pos: 74.5,4.5
+ parent: 12
+ - uid: 32251
+ components:
+ - type: Transform
+ pos: 75.5,4.5
+ parent: 12
+ - uid: 32252
+ components:
+ - type: Transform
+ pos: 76.5,4.5
+ parent: 12
+ - uid: 32253
+ components:
+ - type: Transform
+ pos: 71.5,2.5
+ parent: 12
+ - uid: 32254
+ components:
+ - type: Transform
+ pos: 71.5,1.5
+ parent: 12
+ - uid: 32255
+ components:
+ - type: Transform
+ pos: 71.5,-0.5
+ parent: 12
+ - uid: 32256
+ components:
+ - type: Transform
+ pos: 71.5,0.5
+ parent: 12
+ - uid: 32257
+ components:
+ - type: Transform
+ pos: 71.5,-1.5
+ parent: 12
+ - uid: 32258
+ components:
+ - type: Transform
+ pos: 70.5,8.5
+ parent: 12
+ - uid: 32259
+ components:
+ - type: Transform
+ pos: 69.5,8.5
+ parent: 12
+ - uid: 32260
+ components:
+ - type: Transform
+ pos: 67.5,8.5
+ parent: 12
+ - uid: 32261
+ components:
+ - type: Transform
+ pos: 68.5,8.5
+ parent: 12
+ - uid: 32262
+ components:
+ - type: Transform
+ pos: 67.5,7.5
+ parent: 12
+ - uid: 32263
+ components:
+ - type: Transform
+ pos: 67.5,5.5
+ parent: 12
+ - uid: 32264
+ components:
+ - type: Transform
+ pos: 67.5,6.5
+ parent: 12
+ - uid: 32265
+ components:
+ - type: Transform
+ pos: 75.5,5.5
+ parent: 12
+ - uid: 32266
+ components:
+ - type: Transform
+ pos: 75.5,6.5
+ parent: 12
+ - uid: 32267
+ components:
+ - type: Transform
+ pos: 75.5,7.5
+ parent: 12
+ - uid: 32268
+ components:
+ - type: Transform
+ pos: 75.5,8.5
+ parent: 12
+ - uid: 32269
+ components:
+ - type: Transform
+ pos: 74.5,8.5
+ parent: 12
+ - uid: 32270
+ components:
+ - type: Transform
+ pos: 73.5,8.5
+ parent: 12
+ - uid: 32271
+ components:
+ - type: Transform
+ pos: 72.5,8.5
+ parent: 12
+ - uid: 32272
+ components:
+ - type: Transform
+ pos: 75.5,3.5
+ parent: 12
+ - uid: 32273
+ components:
+ - type: Transform
+ pos: 75.5,1.5
+ parent: 12
+ - uid: 32274
+ components:
+ - type: Transform
+ pos: 75.5,0.5
+ parent: 12
+ - uid: 32275
+ components:
+ - type: Transform
+ pos: 75.5,2.5
+ parent: 12
+ - uid: 32276
+ components:
+ - type: Transform
+ pos: 74.5,0.5
+ parent: 12
+ - uid: 32277
+ components:
+ - type: Transform
+ pos: 73.5,0.5
+ parent: 12
+ - uid: 32278
+ components:
+ - type: Transform
+ pos: 72.5,0.5
+ parent: 12
+ - uid: 32279
+ components:
+ - type: Transform
+ pos: 70.5,0.5
+ parent: 12
+ - uid: 32280
+ components:
+ - type: Transform
+ pos: 69.5,0.5
+ parent: 12
+ - uid: 32281
+ components:
+ - type: Transform
+ pos: 68.5,0.5
+ parent: 12
+ - uid: 32282
+ components:
+ - type: Transform
+ pos: 67.5,0.5
+ parent: 12
+ - uid: 32283
+ components:
+ - type: Transform
+ pos: 67.5,1.5
+ parent: 12
+ - uid: 32284
+ components:
+ - type: Transform
+ pos: 67.5,3.5
+ parent: 12
+ - uid: 32285
+ components:
+ - type: Transform
+ pos: 67.5,2.5
+ parent: 12
- proto: CableMVStack
entities:
- uid: 5999
@@ -76409,6 +76966,81 @@ entities:
rot: 1.5707963267948966 rad
pos: 35.5,-15.5
parent: 12
+ - uid: 32171
+ components:
+ - type: Transform
+ pos: 77.5,-2.5
+ parent: 12
+ - uid: 32172
+ components:
+ - type: Transform
+ pos: 77.5,-0.5
+ parent: 12
+ - uid: 32173
+ components:
+ - type: Transform
+ pos: 77.5,0.5
+ parent: 12
+ - uid: 32174
+ components:
+ - type: Transform
+ pos: 77.5,1.5
+ parent: 12
+ - uid: 32175
+ components:
+ - type: Transform
+ pos: 77.5,2.5
+ parent: 12
+ - uid: 32176
+ components:
+ - type: Transform
+ pos: 77.5,-1.5
+ parent: 12
+ - uid: 32177
+ components:
+ - type: Transform
+ pos: 77.5,5.5
+ parent: 12
+ - uid: 32178
+ components:
+ - type: Transform
+ pos: 77.5,6.5
+ parent: 12
+ - uid: 32179
+ components:
+ - type: Transform
+ pos: 77.5,3.5
+ parent: 12
+ - uid: 32180
+ components:
+ - type: Transform
+ pos: 77.5,7.5
+ parent: 12
+ - uid: 32181
+ components:
+ - type: Transform
+ pos: 77.5,8.5
+ parent: 12
+ - uid: 32182
+ components:
+ - type: Transform
+ pos: 77.5,4.5
+ parent: 12
+ - uid: 32183
+ components:
+ - type: Transform
+ pos: 77.5,10.5
+ parent: 12
+ - uid: 32184
+ components:
+ - type: Transform
+ pos: 77.5,11.5
+ parent: 12
+ - uid: 32185
+ components:
+ - type: Transform
+ pos: 77.5,9.5
+ parent: 12
- proto: Cautery
entities:
- uid: 9752
@@ -78066,6 +78698,18 @@ entities:
- type: Transform
pos: 0.5,-66.5
parent: 12
+ - uid: 31688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.408453,-26.829342
+ parent: 12
+ - uid: 31689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.06586,-28.196033
+ parent: 12
- uid: 32101
components:
- type: Transform
@@ -80428,6 +81072,46 @@ entities:
- type: Transform
pos: -15.479212,51.570213
parent: 12
+- proto: ClothingHeadHatSantahat
+ entities:
+ - uid: 31656
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -22.599323,38.502403
+ parent: 12
+ - uid: 31657
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -41.818073,40.566353
+ parent: 12
+ - uid: 31669
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -36.450703,42.555126
+ parent: 12
+ - uid: 31670
+ components:
+ - type: Transform
+ pos: -29.275808,38.740208
+ parent: 12
+ - uid: 31672
+ components:
+ - type: Transform
+ pos: -37.561886,53.522655
+ parent: 12
+ - uid: 31673
+ components:
+ - type: Transform
+ pos: 23.223015,-26.438202
+ parent: 12
+ - uid: 31674
+ components:
+ - type: Transform
+ pos: 21.975492,-27.778383
+ parent: 12
- proto: ClothingHeadHatSurgcapBlue
entities:
- uid: 5726
@@ -80994,6 +81678,37 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingOuterSanta
+ entities:
+ - uid: 31654
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -21.505573,38.6744
+ parent: 12
+ - uid: 31655
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -41.474323,40.472534
+ parent: 12
+ - uid: 31667
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: -31.513205,38.489803
+ parent: 12
+ - uid: 31668
+ components:
+ - type: Transform
+ rot: -6.217248937900877E-15 rad
+ pos: -39.52883,36.55096
+ parent: 12
+ - uid: 31671
+ components:
+ - type: Transform
+ pos: -37.341736,53.412502
+ parent: 12
- proto: ClothingOuterStraightjacket
entities:
- uid: 19275
@@ -81711,6 +82426,12 @@ entities:
- type: Transform
pos: -2.5,-66.5
parent: 12
+ - uid: 31690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-28.5
+ parent: 12
- uid: 31793
components:
- type: Transform
@@ -83282,8 +84003,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8856695
- - 7.0937095
+ - 1.8968438
+ - 7.1357465
- 0
- 0
- 0
@@ -83300,9 +84021,9 @@ entities:
showEnts: False
occludes: True
ents:
- - 2929
- - 2923
- 2920
+ - 2923
+ - 2929
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -83320,8 +84041,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.8968438
- - 7.1357465
+ - 1.8977377
+ - 7.139109
- 0
- 0
- 0
@@ -83338,13 +84059,13 @@ entities:
showEnts: False
occludes: True
ents:
- - 5886
- - 5885
- - 4887
- - 4851
- - 5888
- - 6298
- 6299
+ - 6298
+ - 5888
+ - 4851
+ - 4887
+ - 5885
+ - 5886
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -83362,8 +84083,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -83380,11 +84101,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 24193
- - 24218
- - 24223
- - 24224
- 24225
+ - 24224
+ - 24223
+ - 24218
+ - 24193
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -83402,8 +84123,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8856695
+ - 7.0937095
- 0
- 0
- 0
@@ -83420,11 +84141,11 @@ entities:
showEnts: False
occludes: True
ents:
- - 25027
- - 25038
- - 25101
- - 25104
- 25195
+ - 25104
+ - 25101
+ - 25038
+ - 25027
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -96215,6 +96936,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: DrinkGlassWhite
+ entities:
+ - uid: 31687
+ components:
+ - type: Transform
+ pos: 24.274195,-28.126541
+ parent: 12
- proto: DrinkGoldenCup
entities:
- uid: 10942
@@ -102407,7 +103135,7 @@ entities:
- uid: 26214
components:
- type: Transform
- pos: -31.438684,38.510014
+ pos: -32.480057,41.497932
parent: 12
- proto: FlashlightLantern
entities:
@@ -102919,6 +103647,13 @@ entities:
- type: Transform
pos: -7.8905973,-55.743637
parent: 12
+- proto: FloraTreeChristmas02
+ entities:
+ - uid: 28861
+ components:
+ - type: Transform
+ pos: 22,-26
+ parent: 12
- proto: FloraTreeLarge
entities:
- uid: 10941
@@ -103030,6 +103765,20 @@ entities:
- type: Transform
pos: -53.30888,54.409172
parent: 12
+- proto: FoodBakedCookie
+ entities:
+ - uid: 31677
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 24.602898,-28.325752
+ parent: 12
+ - uid: 31678
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 24.44549,-28.571293
+ parent: 12
- proto: FoodBanana
entities:
- uid: 4201
@@ -103223,6 +103972,13 @@ entities:
- type: Transform
pos: 10.45153,-49.457336
parent: 12
+- proto: FoodCakeChristmas
+ entities:
+ - uid: 22173
+ components:
+ - type: Transform
+ pos: 21.240437,-26.565382
+ parent: 12
- proto: FoodCakeSuppermatterSlice
entities:
- uid: 15371
@@ -103465,6 +104221,11 @@ entities:
- type: Transform
pos: 64.56665,50.71139
parent: 12
+ - uid: 31653
+ components:
+ - type: Transform
+ pos: 21.224129,-26.540905
+ parent: 12
- proto: FoodPlatePlastic
entities:
- uid: 31121
@@ -137688,6 +138449,31 @@ entities:
rot: -1.5707963267948966 rad
pos: -7.5,-64.5
parent: 12
+ - uid: 32190
+ components:
+ - type: Transform
+ pos: 67.5,-5.5
+ parent: 12
+ - uid: 32288
+ components:
+ - type: Transform
+ pos: 79.5,-2.5
+ parent: 12
+ - uid: 32289
+ components:
+ - type: Transform
+ pos: 79.5,3.5
+ parent: 12
+ - uid: 32290
+ components:
+ - type: Transform
+ pos: 79.5,11.5
+ parent: 12
+ - uid: 32291
+ components:
+ - type: Transform
+ pos: 67.5,14.5
+ parent: 12
- proto: GlassBoxLaserFilled
entities:
- uid: 17404
@@ -138346,16 +139132,6 @@ entities:
- type: Transform
pos: -32.5,-33.5
parent: 12
- - uid: 676
- components:
- - type: Transform
- pos: 72.5,-3.5
- parent: 12
- - uid: 677
- components:
- - type: Transform
- pos: 73.5,-3.5
- parent: 12
- uid: 697
components:
- type: Transform
@@ -140354,11 +141130,6 @@ entities:
- type: Transform
pos: 33.5,-24.5
parent: 12
- - uid: 8254
- components:
- - type: Transform
- pos: 69.5,-3.5
- parent: 12
- uid: 8341
components:
- type: Transform
@@ -140401,11 +141172,6 @@ entities:
- type: Transform
pos: 49.5,59.5
parent: 12
- - uid: 8788
- components:
- - type: Transform
- pos: 70.5,-3.5
- parent: 12
- uid: 9057
components:
- type: Transform
@@ -141186,11 +141952,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,19.5
parent: 12
- - uid: 11225
- components:
- - type: Transform
- pos: 65.5,-3.5
- parent: 12
- uid: 11242
components:
- type: Transform
@@ -141280,11 +142041,6 @@ entities:
- type: Transform
pos: 48.5,10.5
parent: 12
- - uid: 11474
- components:
- - type: Transform
- pos: 64.5,-3.5
- parent: 12
- uid: 11486
components:
- type: Transform
@@ -142133,11 +142889,6 @@ entities:
- type: Transform
pos: -57.5,-56.5
parent: 12
- - uid: 13844
- components:
- - type: Transform
- pos: 66.5,-3.5
- parent: 12
- uid: 13991
components:
- type: Transform
@@ -144123,22 +144874,12 @@ entities:
rot: 3.141592653589793 rad
pos: -22.5,66.5
parent: 12
- - uid: 25537
- components:
- - type: Transform
- pos: 75.5,-3.5
- parent: 12
- uid: 25538
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 61.5,-11.5
parent: 12
- - uid: 25549
- components:
- - type: Transform
- pos: 76.5,-3.5
- parent: 12
- uid: 25559
components:
- type: Transform
@@ -144621,11 +145362,6 @@ entities:
- type: Transform
pos: 29.5,-29.5
parent: 12
- - uid: 26943
- components:
- - type: Transform
- pos: 68.5,-3.5
- parent: 12
- uid: 26945
components:
- type: Transform
@@ -146377,70 +147113,75 @@ entities:
- type: Transform
pos: -62.5,-31.5
parent: 12
- - uid: 31744
+ - uid: 32033
components:
- type: Transform
- pos: 77.5,12.5
+ pos: 41.5,-18.5
parent: 12
- - uid: 31745
+ - uid: 32307
components:
- type: Transform
- pos: 77.5,-3.5
+ pos: 79.5,2.5
parent: 12
- - uid: 31746
+ - uid: 32308
components:
- type: Transform
- pos: 76.5,12.5
+ pos: 69.5,-5.5
parent: 12
- - uid: 31747
+ - uid: 32309
components:
- type: Transform
- pos: 75.5,12.5
+ pos: 70.5,-5.5
parent: 12
- - uid: 31752
+ - uid: 32310
components:
- type: Transform
- pos: 73.5,12.5
+ pos: 75.5,-5.5
parent: 12
- - uid: 31753
+ - uid: 32311
components:
- type: Transform
- pos: 72.5,12.5
+ pos: 79.5,-4.5
parent: 12
- - uid: 31754
+ - uid: 32313
components:
- type: Transform
- pos: 71.5,12.5
+ pos: 79.5,7.5
parent: 12
- - uid: 31756
+ - uid: 32314
components:
- type: Transform
- pos: 70.5,12.5
+ pos: 79.5,10.5
parent: 12
- - uid: 31757
+ - uid: 32315
components:
- type: Transform
- pos: 69.5,12.5
+ pos: 74.5,14.5
parent: 12
- - uid: 31762
+ - uid: 32316
components:
- type: Transform
- pos: 68.5,12.5
+ pos: 75.5,14.5
parent: 12
- - uid: 31838
+ - uid: 32317
components:
- type: Transform
- pos: 66.5,12.5
+ pos: 68.5,14.5
parent: 12
- - uid: 31839
+ - uid: 32318
components:
- type: Transform
- pos: 65.5,12.5
+ pos: 66.5,14.5
parent: 12
- - uid: 32033
+ - uid: 32319
components:
- type: Transform
- pos: 41.5,-18.5
+ pos: 61.5,14.5
+ parent: 12
+ - uid: 32320
+ components:
+ - type: Transform
+ pos: 78.5,14.5
parent: 12
- proto: GrilleBroken
entities:
@@ -146559,11 +147300,6 @@ entities:
parent: 12
- proto: GrilleSpawner
entities:
- - uid: 15008
- components:
- - type: Transform
- pos: 74.5,-3.5
- parent: 12
- uid: 19569
components:
- type: Transform
@@ -146759,21 +147495,11 @@ entities:
- type: Transform
pos: 59.5,-61.5
parent: 12
- - uid: 25019
- components:
- - type: Transform
- pos: 67.5,-3.5
- parent: 12
- uid: 25385
components:
- type: Transform
pos: 61.5,68.5
parent: 12
- - uid: 27019
- components:
- - type: Transform
- pos: 71.5,-3.5
- parent: 12
- uid: 27706
components:
- type: Transform
@@ -146819,20 +147545,50 @@ entities:
- type: Transform
pos: -42.5,-65.5
parent: 12
- - uid: 31751
+ - uid: 32143
components:
- type: Transform
- pos: 74.5,12.5
+ pos: 69.5,14.5
parent: 12
- - uid: 31764
+ - uid: 32299
components:
- type: Transform
- pos: 64.5,12.5
+ pos: 68.5,-5.5
parent: 12
- - uid: 31840
+ - uid: 32300
+ components:
+ - type: Transform
+ pos: 74.5,-5.5
+ parent: 12
+ - uid: 32301
+ components:
+ - type: Transform
+ pos: 79.5,-3.5
+ parent: 12
+ - uid: 32302
+ components:
+ - type: Transform
+ pos: 79.5,-0.5
+ parent: 12
+ - uid: 32303
+ components:
+ - type: Transform
+ pos: 79.5,0.5
+ parent: 12
+ - uid: 32304
+ components:
+ - type: Transform
+ pos: 79.5,8.5
+ parent: 12
+ - uid: 32305
+ components:
+ - type: Transform
+ pos: 73.5,14.5
+ parent: 12
+ - uid: 32306
components:
- type: Transform
- pos: 67.5,12.5
+ pos: 62.5,14.5
parent: 12
- proto: GroundCannabis
entities:
@@ -149057,24 +149813,6 @@ entities:
- type: Transform
pos: -41.5,36.5
parent: 12
- - 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: LockerMedicalFilled
entities:
- uid: 2502
@@ -149220,47 +149958,11 @@ entities:
- type: Transform
pos: -44.5,38.5
parent: 12
- - 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: 20846
components:
- type: Transform
pos: -44.5,39.5
parent: 12
- - 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: 20847
components:
- type: Transform
@@ -152402,7 +153104,7 @@ entities:
- uid: 21610
components:
- type: Transform
- pos: -21.469933,38.63325
+ pos: -22.35333,41.503937
parent: 12
- uid: 23585
components:
@@ -156537,15 +157239,30 @@ entities:
- type: Transform
pos: -20.5,76.5
parent: 12
- - uid: 31841
+ - uid: 32186
components:
- type: Transform
- pos: 77.5,-2.5
+ pos: 65.5,-3.5
parent: 12
- - uid: 31842
+ - uid: 32187
components:
- type: Transform
- pos: 77.5,11.5
+ pos: 76.5,-3.5
+ parent: 12
+ - uid: 32189
+ components:
+ - type: Transform
+ pos: 76.5,4.5
+ parent: 12
+ - uid: 32286
+ components:
+ - type: Transform
+ pos: 76.5,12.5
+ parent: 12
+ - uid: 32287
+ components:
+ - type: Transform
+ pos: 65.5,12.5
parent: 12
- proto: PoweredlightRed
entities:
@@ -158208,6 +158925,11 @@ entities:
- type: Transform
pos: -8.5,-66.5
parent: 12
+ - uid: 31660
+ components:
+ - type: Transform
+ pos: -41.5,40.5
+ parent: 12
- uid: 31661
components:
- type: Transform
@@ -160686,6 +161408,43 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,14.5
parent: 12
+- proto: ReinforcedGirder
+ entities:
+ - uid: 32292
+ components:
+ - type: Transform
+ pos: 71.5,14.5
+ parent: 12
+ - uid: 32293
+ components:
+ - type: Transform
+ pos: 76.5,14.5
+ parent: 12
+ - uid: 32294
+ components:
+ - type: Transform
+ pos: 79.5,12.5
+ parent: 12
+ - uid: 32295
+ components:
+ - type: Transform
+ pos: 79.5,6.5
+ parent: 12
+ - uid: 32296
+ components:
+ - type: Transform
+ pos: 79.5,-1.5
+ parent: 12
+ - uid: 32297
+ components:
+ - type: Transform
+ pos: 73.5,-5.5
+ parent: 12
+ - uid: 32298
+ components:
+ - type: Transform
+ pos: 66.5,-5.5
+ parent: 12
- proto: ReinforcedPlasmaWindow
entities:
- uid: 501
@@ -168317,6 +169076,23 @@ entities:
- type: Transform
pos: -49.5,-36.5
parent: 12
+- proto: SignDangerMed
+ entities:
+ - uid: 32312
+ components:
+ - type: Transform
+ pos: 71.5,-4.5
+ parent: 12
+ - uid: 32322
+ components:
+ - type: Transform
+ pos: 71.5,13.5
+ parent: 12
+ - uid: 32325
+ components:
+ - type: Transform
+ pos: 78.5,5.5
+ parent: 12
- proto: SignDirectionalAtmos
entities:
- uid: 29965
@@ -168583,6 +169359,31 @@ entities:
rot: 1.5707963267948966 rad
pos: 55.5,13.5
parent: 12
+ - uid: 32321
+ components:
+ - type: Transform
+ pos: 78.5,13.5
+ parent: 12
+ - uid: 32323
+ components:
+ - type: Transform
+ pos: 65.5,-4.5
+ parent: 12
+ - uid: 32324
+ components:
+ - type: Transform
+ pos: 65.5,13.5
+ parent: 12
+ - uid: 32326
+ components:
+ - type: Transform
+ pos: 78.5,-4.5
+ parent: 12
+ - uid: 32327
+ components:
+ - type: Transform
+ pos: 78.5,3.5
+ parent: 12
- proto: SignEngine
entities:
- uid: 27242
@@ -179128,6 +179929,11 @@ entities:
- type: Transform
pos: -14.5,73.5
parent: 12
+ - uid: 31686
+ components:
+ - type: Transform
+ pos: 24.5,-28.5
+ parent: 12
- proto: TargetClown
entities:
- uid: 22647
@@ -182430,6 +183236,11 @@ entities:
- type: Transform
pos: -31.5,-33.5
parent: 12
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 67.5,-4.5
+ parent: 12
- uid: 685
components:
- type: Transform
@@ -183158,6 +183969,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -37.5,-18.5
parent: 12
+ - uid: 4165
+ components:
+ - type: Transform
+ pos: 70.5,-4.5
+ parent: 12
- uid: 4386
components:
- type: Transform
@@ -184664,6 +185480,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 84.5,-38.5
parent: 12
+ - uid: 8788
+ components:
+ - type: Transform
+ pos: 66.5,-4.5
+ parent: 12
- uid: 8817
components:
- type: Transform
@@ -185832,6 +186653,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 11.5,29.5
parent: 12
+ - uid: 11225
+ components:
+ - type: Transform
+ pos: 65.5,-4.5
+ parent: 12
- uid: 11235
components:
- type: Transform
@@ -188991,6 +189817,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 14.5,-57.5
parent: 12
+ - uid: 25019
+ components:
+ - type: Transform
+ pos: 78.5,13.5
+ parent: 12
- uid: 25037
components:
- type: Transform
@@ -189166,6 +189997,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 54.5,-6.5
parent: 12
+ - uid: 25549
+ components:
+ - type: Transform
+ pos: 74.5,-4.5
+ parent: 12
- uid: 25551
components:
- type: Transform
@@ -189441,6 +190277,11 @@ entities:
rot: 3.141592653589793 rad
pos: -13.5,77.5
parent: 12
+ - uid: 26943
+ components:
+ - type: Transform
+ pos: 78.5,-3.5
+ parent: 12
- uid: 26956
components:
- type: Transform
@@ -190063,12 +190904,97 @@ entities:
- type: Transform
pos: -64.5,-30.5
parent: 12
+ - uid: 31745
+ components:
+ - type: Transform
+ pos: 78.5,0.5
+ parent: 12
+ - uid: 31747
+ components:
+ - type: Transform
+ pos: 78.5,2.5
+ parent: 12
+ - uid: 31752
+ components:
+ - type: Transform
+ pos: 78.5,5.5
+ parent: 12
+ - uid: 31753
+ components:
+ - type: Transform
+ pos: 78.5,6.5
+ parent: 12
+ - uid: 31754
+ components:
+ - type: Transform
+ pos: 78.5,8.5
+ parent: 12
+ - uid: 31756
+ components:
+ - type: Transform
+ pos: 76.5,-4.5
+ parent: 12
+ - uid: 31757
+ components:
+ - type: Transform
+ pos: 69.5,-4.5
+ parent: 12
+ - uid: 31762
+ components:
+ - type: Transform
+ pos: 72.5,-4.5
+ parent: 12
+ - uid: 31840
+ components:
+ - type: Transform
+ pos: 78.5,-4.5
+ parent: 12
+ - uid: 31841
+ components:
+ - type: Transform
+ pos: 78.5,12.5
+ parent: 12
+ - uid: 31842
+ components:
+ - type: Transform
+ pos: 78.5,9.5
+ parent: 12
- uid: 31891
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: 17.5,22.5
parent: 12
+ - uid: 32132
+ components:
+ - type: Transform
+ pos: 76.5,13.5
+ parent: 12
+ - uid: 32134
+ components:
+ - type: Transform
+ pos: 73.5,13.5
+ parent: 12
+ - uid: 32135
+ components:
+ - type: Transform
+ pos: 72.5,13.5
+ parent: 12
+ - uid: 32137
+ components:
+ - type: Transform
+ pos: 70.5,13.5
+ parent: 12
+ - uid: 32140
+ components:
+ - type: Transform
+ pos: 68.5,13.5
+ parent: 12
+ - uid: 32142
+ components:
+ - type: Transform
+ pos: 66.5,13.5
+ parent: 12
- proto: WallReinforcedRust
entities:
- uid: 191
@@ -190082,6 +191008,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 56.5,-6.5
parent: 12
+ - uid: 676
+ components:
+ - type: Transform
+ pos: 71.5,-4.5
+ parent: 12
- uid: 1061
components:
- type: Transform
@@ -190191,6 +191122,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 31.5,-57.5
parent: 12
+ - uid: 8254
+ components:
+ - type: Transform
+ pos: 71.5,13.5
+ parent: 12
- uid: 8724
components:
- type: Transform
@@ -190374,6 +191310,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 45.5,6.5
parent: 12
+ - uid: 11474
+ components:
+ - type: Transform
+ pos: 68.5,-4.5
+ parent: 12
- uid: 11479
components:
- type: Transform
@@ -190586,6 +191527,11 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,-1.5
parent: 12
+ - uid: 13844
+ components:
+ - type: Transform
+ pos: 73.5,-4.5
+ parent: 12
- uid: 13859
components:
- type: Transform
@@ -190616,6 +191562,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -10.5,-31.5
parent: 12
+ - uid: 15008
+ components:
+ - type: Transform
+ pos: 67.5,13.5
+ parent: 12
- uid: 15549
components:
- type: Transform
@@ -190820,6 +191771,11 @@ entities:
- type: Transform
pos: -26.5,73.5
parent: 12
+ - uid: 25537
+ components:
+ - type: Transform
+ pos: 75.5,-4.5
+ parent: 12
- uid: 25555
components:
- type: Transform
@@ -191006,6 +191962,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 40.5,-43.5
parent: 12
+ - uid: 27019
+ components:
+ - type: Transform
+ pos: 78.5,-1.5
+ parent: 12
- uid: 27035
components:
- type: Transform
@@ -191589,6 +192550,61 @@ entities:
rot: 1.5707963267948966 rad
pos: -64.5,-18.5
parent: 12
+ - uid: 31744
+ components:
+ - type: Transform
+ pos: 78.5,1.5
+ parent: 12
+ - uid: 31746
+ components:
+ - type: Transform
+ pos: 78.5,3.5
+ parent: 12
+ - uid: 31764
+ components:
+ - type: Transform
+ pos: 78.5,-0.5
+ parent: 12
+ - uid: 31838
+ components:
+ - type: Transform
+ pos: 78.5,7.5
+ parent: 12
+ - uid: 31839
+ components:
+ - type: Transform
+ pos: 78.5,-2.5
+ parent: 12
+ - uid: 32133
+ components:
+ - type: Transform
+ pos: 78.5,10.5
+ parent: 12
+ - uid: 32136
+ components:
+ - type: Transform
+ pos: 69.5,13.5
+ parent: 12
+ - uid: 32138
+ components:
+ - type: Transform
+ pos: 74.5,13.5
+ parent: 12
+ - uid: 32139
+ components:
+ - type: Transform
+ pos: 78.5,11.5
+ parent: 12
+ - uid: 32141
+ components:
+ - type: Transform
+ pos: 75.5,13.5
+ parent: 12
+ - uid: 32191
+ components:
+ - type: Transform
+ pos: 65.5,13.5
+ parent: 12
- proto: WallSolid
entities:
- uid: 47
diff --git a/Resources/Maps/convex.yml b/Resources/Maps/convex.yml
new file mode 100644
index 000000000000..88c29d31cd58
--- /dev/null
+++ b/Resources/Maps/convex.yml
@@ -0,0 +1,241696 @@
+meta:
+ format: 6
+ postmapinit: false
+tilemap:
+ 0: Space
+ 65: FloorArcadeBlue
+ 61: FloorArcadeBlue2
+ 62: FloorArcadeRed
+ 11: FloorAstroGrass
+ 28: FloorBar
+ 9: FloorBlueCircuit
+ 27: FloorBoxing
+ 22: FloorBrokenWood
+ 25: FloorCarpetClown
+ 24: FloorClown
+ 8: FloorDark
+ 15: FloorDarkDiagonal
+ 14: FloorDarkHerringbone
+ 10: FloorDarkMono
+ 26: FloorEighties
+ 63: FloorFreezer
+ 6: FloorGlass
+ 13: FloorGold
+ 21: FloorHydro
+ 64: FloorKitchen
+ 29: FloorLaundry
+ 23: FloorMime
+ 31: FloorMowedAstroGrass
+ 4: FloorReinforced
+ 3: FloorSteel
+ 18: FloorSteelCheckerLight
+ 19: FloorSteelDamaged
+ 5: FloorSteelMono
+ 20: FloorTechMaint
+ 30: FloorTechMaint2
+ 16: FloorWhite
+ 12: FloorWhiteMini
+ 17: FloorWhiteMono
+ 7: FloorWood
+ 1: Lattice
+ 2: Plating
+entities:
+- proto: ""
+ entities:
+ - uid: 1
+ components:
+ - type: MetaData
+ name: Autogenerated grid
+ - type: Transform
+ pos: -97,-90
+ parent: 353
+ - type: MapGrid
+ chunks:
+ 1,1:
+ ind: 1,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAA
+ version: 6
+ 1,2:
+ ind: 1,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ version: 6
+ 1,3:
+ ind: 1,3
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAA
+ version: 6
+ 1,4:
+ ind: 1,4
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 1,5:
+ ind: 1,5
+ tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 1,6:
+ ind: 1,6
+ tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBQAAAAADBQAAAAABBQAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADBQAAAAABBQAAAAADBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABBQAAAAACBQAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAAA
+ version: 6
+ 1,7:
+ ind: 1,7
+ tiles: AAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAABQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAwAAAAACBQAAAAABAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAACBgAAAAABBgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAAABgAAAAAABgAAAAAABgAAAAACBgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABgAAAAACBgAAAAADBgAAAAABBgAAAAABBgAAAAAABgAAAAAABgAAAAABBgAAAAABAgAAAAAAAgAAAAAAAwAAAAACAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABgAAAAABBgAAAAABBgAAAAADAgAAAAAABgAAAAACBgAAAAACBgAAAAAABgAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 1,8:
+ ind: 1,8
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ 1,9:
+ ind: 1,9
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,2:
+ ind: 10,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA
+ version: 6
+ 10,3:
+ ind: 10,3
+ tiles: AwAAAAABAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAA
+ version: 6
+ 10,4:
+ ind: 10,4
+ tiles: AgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAACBwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,5:
+ ind: 10,5
+ tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,6:
+ ind: 10,6
+ tiles: AAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,7:
+ ind: 10,7
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,8:
+ ind: 10,8
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 10,9:
+ ind: 10,9
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAAACAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAABCAAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 11,2:
+ ind: 11,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 11,3:
+ ind: 11,3
+ tiles: AgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 11,4:
+ ind: 11,4
+ tiles: AgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 2,0:
+ ind: 2,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 2,1:
+ ind: 2,1
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAADCAAAAAADBQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAAACQAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACQAAAAAAAgAAAAAACQAAAAAACQAAAAAACQAAAAAACAAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAABCQAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAACAAAAAAACAAAAAAABQAAAAABAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAA
+ version: 6
+ 2,2:
+ ind: 2,2
+ tiles: AQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAACCAAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAACAAAAAACCAAAAAABCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAACAAAAAABCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAACAAAAAADCAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAACCAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAADAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAACCAAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAA
+ version: 6
+ 2,3:
+ ind: 2,3
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAACAAAAAAACgAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAABCgAAAAADCAAAAAABCgAAAAACCAAAAAACCAAAAAAAFAAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAACAAAAAABCAAAAAACAgAAAAAACAAAAAABCgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAABFAAAAAAACAAAAAACCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAADCgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAAACgAAAAADCAAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACAgAAAAAACAAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAACCgAAAAABCAAAAAABAgAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCAAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAACwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACCgAAAAAACAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAABCgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAACAAAAAACCAAAAAADCAAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAAACgAAAAAACAAAAAACAgAAAAAACwAAAAACAgAAAAAACAAAAAABCgAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAACFAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAABCAAAAAAAAgAAAAAACwAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAADFAAAAAAACAAAAAACCAAAAAACCAAAAAADCgAAAAACCAAAAAACAgAAAAAACwAAAAAAAgAAAAAACAAAAAAACgAAAAADCAAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAADFAAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAACgAAAAAACAAAAAADCgAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAADCgAAAAADCAAAAAADFAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAACAAAAAABCgAAAAACCAAAAAACCAAAAAACCgAAAAAACAAAAAAACgAAAAABCAAAAAACCgAAAAABCAAAAAAACAAAAAADFAAAAAAACAAAAAACCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAAA
+ version: 6
+ 2,4:
+ ind: 2,4
+ tiles: CAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAADAgAAAAAACAAAAAABCAAAAAACCAAAAAAAAgAAAAAACAAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCgAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAACAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAAACAAAAAACDAAAAAADDAAAAAABDAAAAAABDAAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACAgAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADQAAAAAADAAAAAADDAAAAAAAAgAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAABCAAAAAADAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAADBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAACAAAAAABCAAAAAACCAAAAAADAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACCAAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAADCAAAAAACCAAAAAACCAAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAACAAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABCAAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAADAgAAAAAACAAAAAADCAAAAAAACAAAAAACAgAAAAAACAAAAAADCAAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAACAAAAAADBwAAAAADBwAAAAABBwAAAAAABwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 2,5:
+ ind: 2,5
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAwAAAAABBQAAAAADAwAAAAAABQAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACBQAAAAABBAAAAAAABAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADBQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADBQAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAADBAAAAAAABAAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAABBQAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAACBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAABBAAAAAAABAAAAAAABAAAAAAAAwAAAAADBQAAAAAAAwAAAAADBQAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAD
+ version: 6
+ 2,6:
+ ind: 2,6
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAACCAAAAAACAwAAAAAAAwAAAAAAAwAAAAADCAAAAAADCAAAAAACCAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAABCgAAAAACCgAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAACgAAAAAACgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAA
+ version: 6
+ 2,7:
+ ind: 2,7
+ tiles: AwAAAAAABQAAAAADBQAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABBQAAAAACBQAAAAAABQAAAAADAwAAAAACBQAAAAADBQAAAAAABQAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAABQAAAAABAwAAAAADBQAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAABCgAAAAACCgAAAAACCgAAAAABCAAAAAACCAAAAAACCAAAAAACAwAAAAADBQAAAAADAwAAAAAABQAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACgAAAAACCgAAAAAACgAAAAADCAAAAAACAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAACwAAAAAACwAAAAACAgAAAAAACAAAAAAACgAAAAACCgAAAAAACgAAAAAACAAAAAADAgAAAAAACwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAACwAAAAABCwAAAAAAAgAAAAAACAAAAAABCgAAAAADCgAAAAADCgAAAAADCAAAAAACAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADBwAAAAADAgAAAAAABwAAAAABBwAAAAACFgAAAAADBwAAAAADAgAAAAAABwAAAAACAgAAAAAACwAAAAAACwAAAAAACwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAADAgAAAAAACwAAAAAACwAAAAAACwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAAAAgAAAAAACwAAAAADCwAAAAABCwAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAFgAAAAAFBwAAAAAABwAAAAACAgAAAAAABwAAAAABAgAAAAAABwAAAAADAgAAAAAAAgAAAAAACwAAAAABCwAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAABFgAAAAABBwAAAAADAwAAAAABCwAAAAABCwAAAAABAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 2,8:
+ ind: 2,8
+ tiles: AAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAA
+ version: 6
+ 2,9:
+ ind: 2,9
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,0:
+ ind: 3,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 3,1:
+ ind: 3,1
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACBQAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAABQAAAAACAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 3,10:
+ ind: 3,10
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 3,2:
+ ind: 3,2
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAABAwAAAAACBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAwAAAAACAwAAAAAABAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAwAAAAAAAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAAAAwAAAAAACAAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAwAAAAABAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABBAAAAAAACQAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADBAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAADBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAACAAAAAACBAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 3,3:
+ ind: 3,3
+ tiles: CAAAAAACCAAAAAADCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADBwAAAAABBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAACAgAAAAAADAAAAAADDAAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACDAAAAAAADAAAAAADDAAAAAACAgAAAAAABwAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAACAgAAAAAADAAAAAACDAAAAAABAgAAAAAABwAAAAADCAAAAAADCAAAAAAACAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAACCAAAAAACCAAAAAABCAAAAAACAgAAAAAABwAAAAACCAAAAAABCAAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAAACAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADAgAAAAAAAwAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAADCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAACCAAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAABCAAAAAACCAAAAAABAgAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAAAAgAAAAAACgAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAAAAgAAAAAACgAAAAACCgAAAAABCgAAAAABCgAAAAABCgAAAAADCgAAAAACCgAAAAAABQAAAAAAAgAAAAAACgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACgAAAAADAgAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAB
+ version: 6
+ 3,4:
+ ind: 3,4
+ tiles: CAAAAAADCAAAAAAACgAAAAADCgAAAAABBQAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABCgAAAAACCAAAAAACCgAAAAACCgAAAAABBQAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABCAAAAAABCAAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAACAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAAACQAAAAAAAgAAAAAACAAAAAADCAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAACAAAAAABCgAAAAAACgAAAAADCAAAAAADCAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAA
+ version: 6
+ 3,5:
+ ind: 3,5
+ tiles: AwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAABCAAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAABCAAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAAACAAAAAABBQAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAABAwAAAAACAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABFAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAADFAAAAAAACAAAAAADCAAAAAADCAAAAAADCAAAAAADCAAAAAAABQAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACFAAAAAAACAAAAAABCAAAAAABCAAAAAADCAAAAAADCAAAAAADBQAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACBQAAAAAAAwAAAAADBQAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAACBQAAAAADAwAAAAACBQAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAACBQAAAAAAAwAAAAABBQAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAA
+ version: 6
+ 3,6:
+ ind: 3,6
+ tiles: AwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAABQAAAAABBQAAAAADBQAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAADEAAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAEAAAAAAAEQAAAAAAEAAAAAADEQAAAAACEAAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAAAEQAAAAACEAAAAAAAEQAAAAADEAAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAEAAAAAACEQAAAAADEAAAAAAAEQAAAAABEAAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAADCAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAABCAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABCgAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 3,7:
+ ind: 3,7
+ tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAABCwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAEAAAAAADEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAACAgAAAAAAEAAAAAABAgAAAAAAEAAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAABwAAAAACAgAAAAAAEAAAAAADAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAAACwAAAAADCwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAADCwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAACCwAAAAABCwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACwAAAAADCwAAAAABCwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAA
+ version: 6
+ 3,8:
+ ind: 3,8
+ tiles: AAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAA
+ version: 6
+ 3,9:
+ ind: 3,9
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADEwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAADCgAAAAADAgAAAAAAEwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAACCgAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAwAAAAAA
+ version: 6
+ 4,0:
+ ind: 4,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,1:
+ ind: 4,1
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 4,10:
+ ind: 4,10
+ tiles: AwAAAAABEwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACEwAAAAAEAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAEwAAAAADAwAAAAAAAwAAAAADAwAAAAABEwAAAAACAwAAAAABAAAAAAAAAAAAAAAAAgAAAAAAEwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 4,2:
+ ind: 4,2
+ tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAAC
+ version: 6
+ 4,3:
+ ind: 4,3
+ tiles: AgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAABHwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAACHwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAABBwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAADHwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAADBwAAAAADBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAC
+ version: 6
+ 4,4:
+ ind: 4,4
+ tiles: AwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAACFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAACBwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAACCAAAAAABAgAAAAAACwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAABCAAAAAADCAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAACwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAACCAAAAAADCAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAACgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAACAAAAAABCAAAAAABCAAAAAABAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABCAAAAAAACAAAAAADCAAAAAADAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAADAgAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,5:
+ ind: 4,5
+ tiles: AgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAADBQAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAACAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAwAAAAAABQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABCAAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEQAAAAACEQAAAAADAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAACEAAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAABEAAAAAADAgAAAAAAEQAAAAACEQAAAAAAEQAAAAACEAAAAAAAEQAAAAACEQAAAAABEAAAAAAAEQAAAAAAEQAAAAABEQAAAAABAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAADAgAAAAAAEQAAAAAAEQAAAAACEQAAAAADEAAAAAAAEQAAAAABEQAAAAABEAAAAAABEQAAAAADEQAAAAACEQAAAAAC
+ version: 6
+ 4,6:
+ ind: 4,6
+ tiles: AgAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAADEAAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAABEAAAAAACEAAAAAADAgAAAAAAEAAAAAABEAAAAAACEAAAAAADEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEQAAAAADEQAAAAABEQAAAAADEQAAAAABEQAAAAAAEQAAAAADEAAAAAAAEAAAAAAAAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAADEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEQAAAAABEQAAAAAAEQAAAAAAEAAAAAABEQAAAAABEQAAAAAAEAAAAAAAEQAAAAADEQAAAAAAEQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAACAgAAAAAAEQAAAAABEQAAAAACEQAAAAADEAAAAAAAEQAAAAAAEQAAAAADEAAAAAADEQAAAAABEQAAAAAAEQAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAAAEQAAAAACAgAAAAAAEAAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAACEAAAAAABEAAAAAABEAAAAAADAgAAAAAAAgAAAAAAEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEQAAAAABAgAAAAAAEAAAAAABEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAEAAAAAADEAAAAAABEQAAAAADAgAAAAAAEAAAAAACEAAAAAABEAAAAAACEAAAAAACEAAAAAAAEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAACEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACwAAAAADCwAAAAACCwAAAAABCwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAABCwAAAAABCwAAAAADCwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,7:
+ ind: 4,7
+ tiles: AwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAwAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAABBQAAAAABBQAAAAACBQAAAAABAwAAAAACAgAAAAAAAwAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,8:
+ ind: 4,8
+ tiles: AgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 4,9:
+ ind: 4,9
+ tiles: BAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADEwAAAAADAwAAAAACEwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 5,0:
+ ind: 5,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 5,1:
+ ind: 5,1
+ tiles: AwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAQAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAABAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAA
+ version: 6
+ 5,10:
+ ind: 5,10
+ tiles: AwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAEAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABEwAAAAAEAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADEwAAAAAEAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAEwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACEwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAEwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ 5,2:
+ ind: 5,2
+ tiles: AAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCAAAAAADCAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAAACAAAAAAACAAAAAABCAAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAD
+ version: 6
+ 5,3:
+ ind: 5,3
+ tiles: BwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADBwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABBwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAABwAAAAAABwAAAAADBwAAAAADBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAABwAAAAABBwAAAAADBwAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAABwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAgAAAAAA
+ version: 6
+ 5,4:
+ ind: 5,4
+ tiles: AwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACwAAAAAACwAAAAABCwAAAAACCwAAAAACCwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACwAAAAABCwAAAAACCwAAAAABCwAAAAADCwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAACCgAAAAAACgAAAAAACgAAAAABCAAAAAAACAAAAAACAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAAACAAAAAABCAAAAAADCAAAAAAACAAAAAACCAAAAAAACAAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAABwAAAAACBwAAAAACBwAAAAACCAAAAAABCAAAAAACCAAAAAADCAAAAAADCAAAAAABCAAAAAABCAAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAABCAAAAAACCAAAAAAACAAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAAABwAAAAAACgAAAAACCgAAAAADCgAAAAAACgAAAAABCAAAAAABCgAAAAAACgAAAAACCgAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAACCAAAAAAACAAAAAADCAAAAAACCAAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAACAAAAAACCAAAAAADCAAAAAADCAAAAAADCAAAAAABCAAAAAAACAAAAAACCAAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACCAAAAAACCAAAAAAACgAAAAADCgAAAAABCgAAAAAACAAAAAADCAAAAAADAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAA
+ version: 6
+ 5,5:
+ ind: 5,5
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADEAAAAAACEAAAAAACAgAAAAAACAAAAAAACAAAAAACCAAAAAABCAAAAAACAgAAAAAACAAAAAADCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAADEAAAAAADEAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAABEAAAAAADEAAAAAADAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAADAgAAAAAACAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADEAAAAAADEAAAAAAAEAAAAAABAgAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAACEAAAAAADEAAAAAACCAAAAAABCAAAAAAACAAAAAACCAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 5,6:
+ ind: 5,6
+ tiles: EAAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABEAAAAAACEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAEAAAAAABEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAACEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAFQAAAAAAEAAAAAAAEAAAAAACEAAAAAADEAAAAAABAgAAAAAAAgAAAAAAEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAABFQAAAAAAAgAAAAAAEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAFQAAAAAAAgAAAAAAEAAAAAADEAAAAAAAEAAAAAADAgAAAAAAEAAAAAACEAAAAAAAEAAAAAADEAAAAAABEAAAAAADAwAAAAABAwAAAAABAwAAAAACFQAAAAAAAwAAAAADFQAAAAAAEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAACEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAFQAAAAAAEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAEAAAAAAAEAAAAAABEAAAAAADEAAAAAAAEAAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAADFQAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAABEAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAEAAAAAADEAAAAAADEAAAAAABEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABEAAAAAAAEAAAAAACEAAAAAACEAAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAADEAAAAAAAEAAAAAABEAAAAAADEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACEAAAAAACEAAAAAACEAAAAAAAEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 5,7:
+ ind: 5,7
+ tiles: AwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADFAAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAACCAAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAADCAAAAAABCAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACCAAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAACAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACCAAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAADFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADBQAAAAADBQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAA
+ version: 6
+ 5,8:
+ ind: 5,8
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAFAAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAA
+ version: 6
+ 5,9:
+ ind: 5,9
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAEwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAB
+ version: 6
+ 6,0:
+ ind: 6,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAA
+ version: 6
+ 6,1:
+ ind: 6,1
+ tiles: AgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAC
+ version: 6
+ 6,10:
+ ind: 6,10
+ tiles: CAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADCgAAAAACCgAAAAABCgAAAAABCAAAAAAACAAAAAAAAgAAAAAAAwAAAAACBQAAAAAABQAAAAADBQAAAAABBQAAAAACBQAAAAACBQAAAAAABQAAAAACCAAAAAADCAAAAAABCgAAAAACCQAAAAAACgAAAAABCAAAAAACCAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAACgAAAAABCgAAAAAACgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABwAAAAABAgAAAAAAFgAAAAABBwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAEwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFgAAAAADBwAAAAADBwAAAAADFgAAAAACBwAAAAABBwAAAAADAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,2:
+ ind: 6,2
+ tiles: AwAAAAADAwAAAAADAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAABCAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACCAAAAAABCAAAAAACAwAAAAABAwAAAAAABwAAAAACBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACAAAAAADAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAADCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 6,3:
+ ind: 6,3
+ tiles: AwAAAAACAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACFAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAABwAAAAADBwAAAAABFgAAAAAGAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGAAAAAAAAgAAAAAABwAAAAABGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAAgAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAAgAAAAAABwAAAAACGgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAACBwAAAAABBwAAAAACBwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAABAwAAAAADAwAAAAAC
+ version: 6
+ 6,4:
+ ind: 6,4
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAABwAAAAACBwAAAAADBwAAAAADBwAAAAABBwAAAAADBwAAAAACBwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACBwAAAAAABwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAABBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAABwAAAAABBwAAAAADBwAAAAACBwAAAAADBwAAAAACBwAAAAACBwAAAAADBwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAABwAAAAADBwAAAAACBwAAAAAABwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACFAAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAD
+ version: 6
+ 6,5:
+ ind: 6,5
+ tiles: AgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAABAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAACAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAACwAAAAAABwAAAAADBwAAAAABBwAAAAAAAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAACwAAAAABCwAAAAAABwAAAAADBwAAAAADBwAAAAADAgAAAAAAAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACwAAAAAACwAAAAABBwAAAAACBwAAAAAABwAAAAAAAwAAAAADAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACwAAAAAACwAAAAACBwAAAAAABwAAAAADBwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAACwAAAAACCwAAAAACBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAA
+ version: 6
+ 6,6:
+ ind: 6,6
+ tiles: AwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAABAwAAAAAAAwAAAAAADwAAAAACDwAAAAABDwAAAAABDwAAAAABDwAAAAAADwAAAAAADwAAAAADDwAAAAAACwAAAAADCwAAAAAACwAAAAADCwAAAAADFQAAAAAAAwAAAAADAwAAAAACAwAAAAAADwAAAAACDwAAAAACDwAAAAAADwAAAAABDwAAAAAADwAAAAADDwAAAAAADwAAAAACCwAAAAACCwAAAAAACwAAAAABCwAAAAAAFQAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAAACwAAAAACCwAAAAACCwAAAAAACwAAAAAAFQAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAADFQAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADAgAAAAAACwAAAAACCwAAAAADCwAAAAADCwAAAAACFQAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAgAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAADBwAAAAACAgAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAABwAAAAADBwAAAAAABwAAAAADBwAAAAAABwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFQAAAAAAFQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAADBwAAAAADAwAAAAABAgAAAAAAAwAAAAABHAAAAAACHAAAAAAAHAAAAAACHAAAAAACAwAAAAADBwAAAAACBwAAAAABBwAAAAADBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAADAwAAAAADAgAAAAAAAwAAAAABHAAAAAADHAAAAAADHAAAAAACHAAAAAADAwAAAAADBwAAAAACBwAAAAAABwAAAAABBwAAAAADBwAAAAABBwAAAAABBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAABHAAAAAACHAAAAAADHAAAAAACHAAAAAABAwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAADBwAAAAABBwAAAAADBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAABHAAAAAACAwAAAAABAwAAAAACBwAAAAADBwAAAAAABwAAAAABBwAAAAACBwAAAAADBwAAAAAABwAAAAABAgAAAAAAAgAAAAAAAwAAAAACHAAAAAACHAAAAAACHAAAAAADHAAAAAABHAAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAB
+ version: 6
+ 6,7:
+ ind: 6,7
+ tiles: CAAAAAADAgAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACHAAAAAACHAAAAAABHAAAAAACHAAAAAACHAAAAAADHAAAAAADCAAAAAAAAgAAAAAAAwAAAAACHAAAAAAAHAAAAAAAHAAAAAACHAAAAAADHAAAAAAAHAAAAAACHAAAAAABHAAAAAABHAAAAAACHAAAAAAAHAAAAAADHAAAAAABHAAAAAACCAAAAAADAgAAAAAAAwAAAAADAwAAAAABHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAADHAAAAAABHAAAAAABHAAAAAAAHAAAAAABHAAAAAADHAAAAAADCAAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAACFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAACwAAAAACCwAAAAACCwAAAAABAgAAAAAAAwAAAAADBQAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAAABQAAAAACAwAAAAABBQAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 6,8:
+ ind: 6,8
+ tiles: AwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAABAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAwAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAwAAAAACBQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAACgAAAAAACgAAAAACAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 6,9:
+ ind: 6,9
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAACgAAAAACCgAAAAACCgAAAAAAAwAAAAABAwAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACCgAAAAADCgAAAAABCgAAAAACAwAAAAAAAwAAAAADAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAADCgAAAAAACgAAAAACCgAAAAAAAwAAAAACBQAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAADBQAAAAACAwAAAAADCgAAAAACCgAAAAABCgAAAAAAAwAAAAACBQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAAABQAAAAACAwAAAAABCgAAAAABCgAAAAACCgAAAAABAwAAAAAABQAAAAACAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAACAAAAAACCAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAwAAAAABBQAAAAADBQAAAAADBQAAAAAABQAAAAADBQAAAAACBQAAAAADBQAAAAAD
+ version: 6
+ 7,1:
+ ind: 7,1
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAAAQAAAAAA
+ version: 6
+ 7,10:
+ ind: 7,10
+ tiles: BQAAAAABAwAAAAACAgAAAAAACAAAAAADCgAAAAADCQAAAAAACgAAAAACCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAABQAAAAAAAwAAAAADAgAAAAAACAAAAAACCgAAAAABCgAAAAACCgAAAAABCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAABCAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAFgAAAAAGBwAAAAACAgAAAAAABwAAAAADAgAAAAAAEwAAAAAEAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAABwAAAAACBwAAAAADAgAAAAAAFgAAAAAFAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAAAAAAAABwAAAAACAgAAAAAABwAAAAADBwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAFgAAAAAEFgAAAAAEBwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAABwAAAAACFgAAAAAFBwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 7,2:
+ ind: 7,2
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAACEAAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAABEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAAAEAAAAAADEAAAAAABEAAAAAABEAAAAAACEAAAAAABEAAAAAABEAAAAAAAAgAAAAAAAwAAAAADBQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAC
+ version: 6
+ 7,3:
+ ind: 7,3
+ tiles: AgAAAAAAEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAACEAAAAAADAgAAAAAAAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAABAgAAAAAAEAAAAAACEAAAAAACEAAAAAABEAAAAAABEAAAAAABEAAAAAADEAAAAAADEAAAAAABAgAAAAAAAwAAAAAABQAAAAAAAwAAAAAAAgAAAAAAAwAAAAABBQAAAAADAgAAAAAAEAAAAAADEAAAAAADEAAAAAADEAAAAAACEAAAAAADEAAAAAAAEAAAAAAAEAAAAAADEAAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACBQAAAAAAAgAAAAAAEAAAAAABEAAAAAACEAAAAAAAEAAAAAABEAAAAAABEAAAAAACEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAEAAAAAADEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAwAAAAADAwAAAAAABQAAAAADBQAAAAACBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAGgAAAAAAGgAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAABwAAAAABBwAAAAAABwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACBwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAABAgAAAAAAFAAAAAAAFAAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAA
+ version: 6
+ 7,4:
+ ind: 7,4
+ tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACFAAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAABFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAAwAAAAAC
+ version: 6
+ 7,5:
+ ind: 7,5
+ tiles: AwAAAAACAwAAAAABAwAAAAAAAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAABEAAAAAACEAAAAAACEAAAAAACEAAAAAACEAAAAAADEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAgAAAAAAEAAAAAAAEQAAAAADEQAAAAABEQAAAAABEQAAAAABEAAAAAABEAAAAAABEAAAAAABEAAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAEAAAAAACEQAAAAACEQAAAAADEQAAAAAAEQAAAAADEAAAAAAAEAAAAAACEAAAAAADEAAAAAABEAAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAEAAAAAABEQAAAAACEQAAAAACEQAAAAAAEQAAAAABEAAAAAABEAAAAAADEAAAAAABEAAAAAADEAAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAEAAAAAADEQAAAAABEQAAAAAAEQAAAAABEQAAAAABEAAAAAACEAAAAAADAgAAAAAAAgAAAAAAEAAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAgAAAAAAEAAAAAADEQAAAAADEQAAAAAAEQAAAAADEQAAAAACEAAAAAAAEAAAAAABAgAAAAAAEAAAAAABEAAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAADAgAAAAAAEAAAAAADEAAAAAACEAAAAAABEAAAAAAAEAAAAAABEAAAAAABEAAAAAADAgAAAAAAEAAAAAABEAAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAEAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABCwAAAAAACwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABCwAAAAACCwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADCwAAAAABCwAAAAACAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACCwAAAAAACwAAAAADAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAACwAAAAABCwAAAAABAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAA
+ version: 6
+ 7,6:
+ ind: 7,6
+ tiles: AwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACDwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACDwAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAQAAAAAAAQAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAABwAAAAAAAwAAAAAAHAAAAAAAHAAAAAABHAAAAAACHAAAAAACAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADBwAAAAAAAwAAAAAAHAAAAAACHAAAAAAAHAAAAAADHAAAAAADAwAAAAADAgAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABBwAAAAAAAwAAAAACHAAAAAABHAAAAAADHAAAAAABHAAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAHAAAAAABHAAAAAADHAAAAAADHAAAAAACAwAAAAACAwAAAAADBwAAAAADBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACAgAAAAAAAwAAAAADAwAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAAAHAAAAAADAwAAAAACAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAAAAgAAAAAAAwAAAAAD
+ version: 6
+ 7,7:
+ ind: 7,7
+ tiles: HAAAAAABHAAAAAADHAAAAAABHAAAAAACHAAAAAACHAAAAAADAwAAAAACAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAADFAAAAAAAAwAAAAADHAAAAAAAHAAAAAADHAAAAAADHAAAAAADHAAAAAAAHAAAAAACAwAAAAADAgAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPQAAAAAAPQAAAAAABwAAAAABFAAAAAAAAwAAAAACHAAAAAABHAAAAAAAHAAAAAAAHAAAAAABHAAAAAACAwAAAAABAwAAAAACAgAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAADBwAAAAAAFAAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAAAAgAAAAAAAwAAAAABFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABFAAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADBQAAAAABBQAAAAACBQAAAAABAwAAAAACAwAAAAABAwAAAAADBQAAAAADBQAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAADBQAAAAAABQAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABBQAAAAACBQAAAAABBQAAAAADAwAAAAACBQAAAAABBQAAAAAABQAAAAACAwAAAAABAgAAAAAAAwAAAAAABQAAAAABBQAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAABQAAAAAABQAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAACBQAAAAABBQAAAAAB
+ version: 6
+ 7,8:
+ ind: 7,8
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAAABQAAAAABBQAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADBQAAAAADBQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAACCgAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABBQAAAAACAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAwAAAAADBQAAAAABAwAAAAABAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAABBQAAAAADAwAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAADBQAAAAABAwAAAAACAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAwAAAAACBQAAAAACBQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAACgAAAAABCgAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAACCAAAAAACAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAAB
+ version: 6
+ 7,9:
+ ind: 7,9
+ tiles: AQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAgAAAAAACAAAAAABCAAAAAABCAAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABBQAAAAACBQAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACBQAAAAACBQAAAAACBQAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABQAAAAADAwAAAAABAgAAAAAACAAAAAADCgAAAAACCgAAAAAACgAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA
+ version: 6
+ 8,2:
+ ind: 8,2
+ tiles: AQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABAgAAAAAAAgAAAAAAAwAAAAADBQAAAAADAwAAAAACBQAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAACAAAAAADCAAAAAABCAAAAAABCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAACBQAAAAACAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAgAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAABCAAAAAACAgAAAAAAAwAAAAACAwAAAAABBQAAAAABAwAAAAADBQAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAACCAAAAAACAgAAAAAA
+ version: 6
+ 8,3:
+ ind: 8,3
+ tiles: AwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAACCAAAAAABCAAAAAADCAAAAAACCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACBQAAAAABAwAAAAABBQAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAwAAAAADAwAAAAABBQAAAAABAwAAAAACBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAABQAAAAACAwAAAAAABQAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAADFAAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAACCAAAAAACCAAAAAACCAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACCAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAACAAAAAAACAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAACAAAAAACFAAAAAAAAgAAAAAACAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAABCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAgAAAAAACAAAAAADAwAAAAABAgAAAAAACAAAAAACCgAAAAACCAAAAAACCAAAAAAACgAAAAAACAAAAAABAgAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAACAAAAAABAgAAAAAAAgAAAAAA
+ version: 6
+ 8,4:
+ ind: 8,4
+ tiles: AwAAAAACAgAAAAAACAAAAAAACgAAAAADCAAAAAABCAAAAAAACgAAAAADCAAAAAABAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAAACAAAAAABCAAAAAACAwAAAAADAgAAAAAACAAAAAABCgAAAAABCAAAAAABCAAAAAACCgAAAAADCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAADCAAAAAADCAAAAAACCAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAAACAAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAADAwAAAAACAgAAAAAACAAAAAABCAAAAAAACAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAADCAAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAgAAAAAACAAAAAADCgAAAAACCAAAAAACCAAAAAABCgAAAAACCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABCAAAAAAACAAAAAACCgAAAAABCAAAAAABCAAAAAADCgAAAAADCAAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAACAAAAAAACgAAAAAACAAAAAADCAAAAAACCgAAAAACCAAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAADCAAAAAABCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAACCAAAAAAACAAAAAAACAAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 8,5:
+ ind: 8,5
+ tiles: AwAAAAADAwAAAAABAgAAAAAACwAAAAAACwAAAAACCwAAAAAACwAAAAABCwAAAAAACwAAAAADCwAAAAACCwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAACwAAAAACCwAAAAACCwAAAAABCwAAAAAACwAAAAAACwAAAAABCwAAAAABCwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAgAAAAAACwAAAAABCwAAAAABCwAAAAABCwAAAAADCwAAAAAACwAAAAACCwAAAAAACwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAACwAAAAAACwAAAAADCwAAAAADCwAAAAABCwAAAAACCwAAAAACCwAAAAACCwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAABAgAAAAAACAAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAACAAAAAABCAAAAAADDgAAAAAADgAAAAACDgAAAAACDgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAABAwAAAAACAwAAAAABAgAAAAAACAAAAAABCAAAAAADDgAAAAACCAAAAAAACAAAAAABCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAABQAAAAAAAwAAAAADAwAAAAACCAAAAAABCAAAAAAACAAAAAABDgAAAAAACAAAAAAACgAAAAAACAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAACAAAAAABCAAAAAAADgAAAAABCAAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAgAAAAAACAAAAAABCAAAAAACDgAAAAACDgAAAAADDgAAAAACDgAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAADCAAAAAAACAAAAAACCAAAAAACCAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAwAAAAAA
+ version: 6
+ 8,6:
+ ind: 8,6
+ tiles: AwAAAAACAwAAAAAAFAAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAAAFAAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAABFAAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAACAAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAACAAAAAAACAAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAgAAAAAACAAAAAABCAAAAAAAAwAAAAADAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAACAAAAAACCAAAAAABAwAAAAACAwAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAACAAAAAAACAAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAACAAAAAABAwAAAAACAwAAAAADFAAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAwAAAAADAwAAAAAAFAAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAADAwAAAAAAAwAAAAABFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAADAwAAAAADBQAAAAACAwAAAAABBQAAAAABAwAAAAABAgAAAAAACAAAAAAACAAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACBQAAAAACAwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 8,7:
+ ind: 8,7
+ tiles: AwAAAAABAwAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABBQAAAAABAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAFAAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAABFAAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAFAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAgAAAAAACgAAAAACCAAAAAABCAAAAAAACAAAAAAACgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAABAgAAAAAACgAAAAACCAAAAAACCAAAAAAACAAAAAABCgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBQAAAAACAwAAAAAAAgAAAAAACgAAAAABCAAAAAACCAAAAAABCAAAAAABCgAAAAABAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBQAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBQAAAAACAwAAAAAAAwAAAAABAwAAAAAABQAAAAADAwAAAAADBQAAAAADAwAAAAACBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAABAwAAAAACAgAAAAAAAwAAAAABBQAAAAAAAwAAAAAABQAAAAAAAwAAAAABBQAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAB
+ version: 6
+ 8,8:
+ ind: 8,8
+ tiles: BQAAAAAAAwAAAAACAgAAAAAAAwAAAAABBQAAAAABAwAAAAACBQAAAAAAAwAAAAADBQAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAABQAAAAACBQAAAAAABQAAAAABAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAADBQAAAAAABQAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADBQAAAAADAwAAAAADBQAAAAADBQAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADBQAAAAABAwAAAAADBQAAAAACBQAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAADBQAAAAACAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABBQAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAgAAAAAABQAAAAABAwAAAAAABQAAAAABBQAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAACAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABAwAAAAADAgAAAAAA
+ version: 6
+ 8,9:
+ ind: 8,9
+ tiles: CAAAAAAAAgAAAAAACAAAAAABCAAAAAADCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAADBwAAAAAABwAAAAADAwAAAAABCAAAAAACCAAAAAADCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAABBwAAAAACBwAAAAADBwAAAAABBwAAAAADBwAAAAADAgAAAAAACAAAAAABAgAAAAAACAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAACAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 9,2:
+ ind: 9,2
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 9,3:
+ ind: 9,3
+ tiles: AwAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADBQAAAAACAwAAAAACAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABBQAAAAACAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAACAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAgAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAADAgAAAAAACAAAAAACCAAAAAACCAAAAAAACAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACCAAAAAACCAAAAAABCAAAAAACCAAAAAABCAAAAAABCAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAABAgAAAAAACAAAAAAACAAAAAABCAAAAAACCAAAAAACCAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAgAAAAAACAAAAAADCAAAAAADCAAAAAAACAAAAAAACAAAAAADCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 9,4:
+ ind: 9,4
+ tiles: CAAAAAABCAAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAABCAAAAAACCAAAAAADCAAAAAACCAAAAAABCAAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAACAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAABAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAADCAAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAABAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAADCAAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAADBwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAACAAAAAAACAAAAAAACAAAAAABCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAADAgAAAAAACAAAAAADCAAAAAABCAAAAAACCAAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAACAAAAAABCAAAAAAACAAAAAAACAAAAAACAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAACCAAAAAAACAAAAAACCAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAADBwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAABBwAAAAADAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAADAwAAAAABAwAAAAAD
+ version: 6
+ 9,5:
+ ind: 9,5
+ tiles: AwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAABAgAAAAAAAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ version: 6
+ 9,6:
+ ind: 9,6
+ tiles: AwAAAAADAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAABAgAAAAAAAwAAAAADFAAAAAAAAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAAAAgAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAgAAAAAAAwAAAAABFAAAAAAAAwAAAAACAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAABAgAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAgAAAAAACAAAAAADCAAAAAABAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAADAwAAAAABAwAAAAAAAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAABAgAAAAAACAAAAAADCAAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAABAgAAAAAACAAAAAABCAAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAAACAAAAAADAgAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAAACAAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAADAwAAAAACAwAAAAAACAAAAAADCAAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAgAAAAAACAAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAADAwAAAAAAAwAAAAABAwAAAAADCAAAAAADCAAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAACAwAAAAACAwAAAAAAAwAAAAAACAAAAAACCAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAgAAAAAA
+ version: 6
+ 9,7:
+ ind: 9,7
+ tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAADAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAACAwAAAAACAwAAAAADAwAAAAADAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAABAwAAAAACAwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADAwAAAAABAwAAAAABAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAACAgAAAAAAAgAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAgAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAwAAAAABAwAAAAABBwAAAAACBwAAAAABBwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAADAwAAAAACBwAAAAAABwAAAAABBwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAADBwAAAAACBwAAAAABBwAAAAACAgAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAABwAAAAABBwAAAAACBwAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAABAwAAAAAAAwAAAAADBwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAAAAwAAAAACAwAAAAABAwAAAAAAAwAAAAAABwAAAAACBwAAAAACBwAAAAADAgAAAAAAAwAAAAACAwAAAAACAwAAAAABAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAABAgAAAAAAAwAAAAACAwAAAAACAwAAAAAA
+ version: 6
+ 9,8:
+ ind: 9,8
+ tiles: BwAAAAACBwAAAAACBwAAAAACAgAAAAAAAwAAAAABAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAABAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAABAwAAAAABAwAAAAACAwAAAAADAwAAAAACAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAACAwAAAAACAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAADAgAAAAAAAwAAAAAAAwAAAAABAwAAAAACAgAAAAAABwAAAAABBwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAACBwAAAAABAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAADAgAAAAAABwAAAAACBwAAAAABAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAAAAgAAAAAABwAAAAACBwAAAAACAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAABBwAAAAABAwAAAAABAwAAAAAAAwAAAAACAwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAABwAAAAAAAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAwAAAAABAwAAAAADAwAAAAACAwAAAAAAAwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAADBwAAAAAAAwAAAAABAwAAAAADAwAAAAACAwAAAAABAwAAAAADAwAAAAABAwAAAAADAwAAAAADBwAAAAABBwAAAAADBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAwAAAAACAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAAAAwAAAAAAAwAAAAADBwAAAAAABwAAAAABBwAAAAADBwAAAAADBwAAAAACBwAAAAADBwAAAAADBwAAAAACAwAAAAABAwAAAAADAwAAAAABAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAABwAAAAACAgAAAAAAAgAAAAAABwAAAAADAgAAAAAAAgAAAAAABwAAAAACFAAAAAAAFAAAAAAAFAAAAAAAAgAAAAAACAAAAAACCAAAAAABCAAAAAABAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAACBwAAAAAAAgAAAAAABwAAAAABBwAAAAABAwAAAAAAAwAAAAACAwAAAAADAgAAAAAACAAAAAABCAAAAAADCAAAAAAAAgAAAAAABwAAAAACBwAAAAADAgAAAAAABwAAAAAABwAAAAABAgAAAAAABwAAAAACBwAAAAADAwAAAAAAAwAAAAACAwAAAAACAgAAAAAACAAAAAADCAAAAAADCAAAAAADAgAAAAAABwAAAAADBwAAAAACAgAAAAAABwAAAAAABwAAAAACAgAAAAAABwAAAAAABwAAAAAC
+ version: 6
+ 9,9:
+ ind: 9,9
+ tiles: AwAAAAABAwAAAAACAwAAAAAAAgAAAAAAAgAAAAAACAAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAADAwAAAAADAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAwAAAAACAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAACAwAAAAADAwAAAAADAwAAAAAAAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAAAAwAAAAABAwAAAAACAwAAAAABAwAAAAADAwAAAAADAwAAAAACAwAAAAADAwAAAAACAwAAAAABAwAAAAAAAwAAAAABAwAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAADAgAAAAAAAwAAAAACAwAAAAAAAwAAAAADAgAAAAAAAwAAAAAAAwAAAAACAwAAAAABAwAAAAABAwAAAAACAwAAAAACAwAAAAADAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAwAAAAADAwAAAAACAwAAAAADAgAAAAAAAwAAAAADAwAAAAADAwAAAAADAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAABAwAAAAABAgAAAAAAAwAAAAACAwAAAAAAAwAAAAABAgAAAAAAAwAAAAAAAwAAAAADAwAAAAADAgAAAAAAAwAAAAADAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAwAAAAADAwAAAAABAwAAAAADAwAAAAABAwAAAAABAwAAAAAAAgAAAAAAAwAAAAACAwAAAAABAwAAAAADAgAAAAAAAwAAAAADAwAAAAABAwAAAAADAgAAAAAAAQAAAAAAAwAAAAABAwAAAAABAwAAAAAAAwAAAAAAAwAAAAACAwAAAAABAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAwAAAAABAwAAAAAAAwAAAAACAgAAAAAAAAAAAAAAAgAAAAAAAwAAAAABAwAAAAABAwAAAAABAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,6:
+ ind: 0,6
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAA
+ version: 6
+ 7,0:
+ ind: 7,0
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,3:
+ ind: 0,3
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 0,7:
+ ind: 0,7
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 5,11:
+ ind: 5,11
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 6,11:
+ ind: 6,11
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ 8,10:
+ ind: 8,10
+ tiles: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ version: 6
+ - type: Broadphase
+ - type: Physics
+ bodyStatus: InAir
+ angularDamping: 0.05
+ linearDamping: 0.05
+ fixedRotation: False
+ bodyType: Dynamic
+ - type: Fixtures
+ fixtures: {}
+ - type: Gravity
+ gravityShakeSound: !type:SoundPathSpecifier
+ path: Audio/Effects/alert.ogg
+ - type: DecalGrid
+ chunkCollection:
+ version: 2
+ nodes:
+ - node:
+ angle: -3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 13771: 67,27
+ 13772: 67,34
+ 13773: 83,27
+ 13774: 83,34
+ 13777: 67,42
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1223: 71,126
+ 1224: 71,130
+ 1225: 71,134
+ 1226: 71,138
+ 1227: 71,142
+ 1228: 71,146
+ 1229: 71,150
+ - node:
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1932: 66,110
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1933: 67,107
+ 1934: 71,107
+ 1935: 77,107
+ 1936: 81,107
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 1937: 82,110
+ - node:
+ zIndex: 1
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Arrows
+ decals:
+ 14230: 83,42
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt1
+ decals:
+ 9024: 45.431576,122.87691
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Basalt1
+ decals:
+ 10164: 132.81339,80.659485
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt4
+ decals:
+ 4777: 112.47353,93.77849
+ 5489: 84.0029,67.959915
+ 9025: 49.570465,122.30052
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Basalt4
+ decals:
+ 10089: 131.26102,82.456924
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Basalt5
+ decals:
+ 10088: 136.92108,80.43339
+ 10165: 132.73006,80.62476
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt7
+ decals:
+ 4776: 112.40408,90.28312
+ 9026: 48.285744,125.06441
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt8
+ decals:
+ 4775: 107.001305,91.00999
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Basalt8
+ decals:
+ 10091: 136.20242,81.625244
+ - node:
+ color: '#FFFFFFFF'
+ id: Basalt9
+ decals:
+ 4774: 108.14946,93.3248
+ - node:
+ cleanable: True
+ color: '#00FFFFFF'
+ id: Blasto
+ decals:
+ 7682: 96.94982,30.086082
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 10049: 150,88
+ - node:
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 584: 47,60
+ 585: 48,60
+ 594: 43,76
+ 595: 47,48
+ 596: 52,24
+ 597: 47,28
+ 598: 47,20
+ 635: 60,61
+ 1278: 121,138
+ 1279: 121,136
+ 1280: 95,136
+ 1281: 95,138
+ 1282: 105,154
+ 1283: 111,154
+ 1284: 105,158
+ 1285: 99,158
+ 1286: 117,156
+ 1287: 117,152
+ 1288: 118,152
+ 1291: 123,122
+ 1293: 129,126
+ 1294: 138,121
+ 1295: 125,136
+ 1296: 125,138
+ 2895: 31,107
+ 2896: 31,101
+ 2897: 36,112
+ 2898: 42,109
+ 2899: 44,109
+ 2900: 48,105
+ 2901: 46,100
+ 2902: 46,101
+ 2905: 38,84
+ 2907: 52,86
+ 2996: 40,110
+ 2998: 38,110
+ 4132: 51,82
+ 4133: 52,82
+ 4134: 47,82
+ 4136: 48,82
+ 8325: 59,76
+ 8326: 65,78
+ 8337: 58,124
+ 8793: 91,161
+ 8794: 75,158
+ 8795: 97,172
+ 9813: 138,147
+ 9814: 146,145
+ 9815: 160,138
+ 9816: 150,131
+ 9818: 141,119
+ 9819: 157,117
+ 9820: 131,117
+ 9822: 93,155
+ 9823: 68,121
+ 9824: 66,114
+ 9826: 98,110
+ 9827: 140,96
+ 9829: 129,85
+ 9830: 144,77
+ 9831: 118,73
+ 9835: 94,73
+ 9836: 83,25
+ 9837: 67,25
+ 9838: 72,43
+ 9840: 64,65
+ 9842: 43,82
+ 9843: 55,113
+ 11055: 87,84
+ 11222: 98,88
+ 11223: 114,88
+ 12144: 54,78
+ 13759: 66,49
+ 13798: 51,101
+ 13799: 52,101
+ 13800: 49,101
+ 13801: 48,101
+ 14002: 71,123
+ 14003: 72,123
+ 14013: 97,151
+ 14014: 97,152
+ 14067: 89,113
+ 14180: 52,63
+ 14181: 54,63
+ 14276: 84,45
+ 14325: 91,52
+ 14340: 106,50
+ 14502: 32,89
+ 14503: 32,91
+ 14507: 47,95
+ 14508: 49,95
+ 14509: 30,99
+ 14510: 32,99
+ 14517: 65,103
+ 14518: 65,104
+ 14519: 83,103
+ 14520: 83,104
+ 14521: 109,54
+ 14561: 118,96
+ 14562: 119,96
+ 14563: 123,96
+ 14564: 93,96
+ 14565: 93,97
+ 14566: 98,90
+ 14567: 100,90
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 9927: 153,103
+ 9928: 153,104
+ 9929: 154,104
+ 9930: 154,103
+ 9933: 150,103
+ 9934: 150,104
+ 9935: 149,104
+ 9936: 149,103
+ 9937: 148,103
+ 9938: 148,104
+ 9939: 154,108
+ 9940: 153,108
+ 9941: 152,108
+ 9942: 152,109
+ 9943: 153,109
+ 9944: 154,109
+ 9945: 150,108
+ 9946: 149,108
+ 9947: 148,108
+ 9948: 148,109
+ 9949: 150,109
+ 9950: 149,109
+ 9952: 153,105
+ 9953: 154,105
+ 9954: 152,110
+ 9955: 153,110
+ 9956: 154,110
+ 9958: 150,105
+ 9959: 149,105
+ 9960: 148,105
+ 14004: 87,117
+ 14006: 87,119
+ 14071: 100,120
+ 14072: 100,121
+ 14073: 120,127
+ 14074: 120,128
+ 14075: 96,128
+ 14076: 96,129
+ 14077: 120,146
+ 14078: 120,147
+ 14079: 122,116
+ 14080: 120,116
+ 14089: 86,66
+ 14090: 86,68
+ 14183: 107,96
+ 14184: 108,96
+ 14341: 145,154
+ 14342: 149,147
+ 14343: 148,147
+ 14344: 139,153
+ 14345: 138,153
+ 14346: 146,136
+ 14347: 144,136
+ 14349: 160,117
+ 14350: 160,118
+ 14351: 140,78
+ 14352: 141,78
+ 14355: 117,65
+ 14356: 117,66
+ 14366: 91,58
+ 14367: 58,110
+ 14368: 58,111
+ 14369: 157,123
+ 14370: 158,123
+ 14371: 158,121
+ 14372: 157,121
+ 14385: 68,117
+ 14386: 73,119
+ 14387: 75,119
+ 14388: 68,119
+ 14393: 100,125
+ 14394: 116,125
+ 14395: 113,124
+ 14396: 103,124
+ 14599: 24,102
+ 14600: 24,103
+ 14601: 25,105
+ 14602: 27,105
+ 14610: 36,116
+ 14611: 36,117
+ 14612: 68,36
+ 14613: 68,37
+ 14614: 82,36
+ 14615: 82,37
+ 14616: 148,72
+ 14617: 149,72
+ 14618: 142,47
+ 14619: 142,48
+ 14620: 138,44
+ 14621: 138,45
+ 14622: 142,44
+ 14623: 142,45
+ 14625: 152,51
+ 14626: 152,53
+ 14627: 155,51
+ 14628: 155,53
+ 14632: 153,66
+ 14640: 142,87
+ 14641: 142,89
+ 14644: 146,94
+ 14645: 153,94
+ 14646: 153,93
+ 14647: 156,100
+ 14648: 154,100
+ 14658: 137,59
+ 14659: 145,58
+ 14660: 144,58
+ 14661: 135,58
+ 14662: 133,58
+ 14665: 130,62
+ 14666: 130,66
+ 14667: 132,66
+ 14668: 132,62
+ 14669: 133,62
+ 14673: 124,56
+ 14674: 126,56
+ 14675: 124,47
+ 14676: 124,49
+ 14682: 47,68
+ 14683: 49,68
+ 14684: 51,68
+ 14685: 53,68
+ 14686: 51,73
+ 14687: 51,75
+ 14688: 119,149
+ 14689: 117,149
+ 14694: 130,140
+ 14695: 132,140
+ 14696: 133,135
+ 14697: 134,135
+ 14698: 134,133
+ 14699: 133,133
+ - node:
+ zIndex: 1
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 14376: 58,80
+ 14377: 58,81
+ 14378: 105,115
+ 14379: 111,115
+ 14380: 85,123
+ 14381: 83,123
+ 14383: 77,112
+ 14384: 78,112
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Bot
+ decals:
+ 626: 55,61
+ 627: 56,61
+ 628: 57,61
+ 629: 58,61
+ 630: 59,61
+ 1944: 63,87
+ 1945: 66,84
+ 1946: 77,85
+ 1947: 71,88
+ 1950: 78,88
+ 1954: 83,84
+ 1956: 85,102
+ 1957: 87,106
+ - node:
+ color: '#FFFFFFFF'
+ id: BotLeft
+ decals:
+ 14404: 120,125
+ 14405: 74,116
+ 14410: 124,101
+ 14411: 95,104
+ 14415: 125,103
+ 14428: 152,112
+ 14431: 152,95
+ 14438: 135,70
+ 14443: 138,51
+ 14465: 50,53
+ 14477: 72,85
+ 14483: 89,110
+ 14487: 49,90
+ 14493: 36,110
+ - node:
+ color: '#FFFFFFFF'
+ id: BotRight
+ decals:
+ 14400: 93,141
+ 14401: 94,156
+ 14402: 122,156
+ 14403: 123,141
+ 14406: 68,116
+ 14407: 106,119
+ 14408: 98,106
+ 14409: 118,106
+ 14412: 96,104
+ 14413: 106,96
+ 14414: 115,99
+ 14417: 142,141
+ 14419: 160,137
+ 14420: 142,143
+ 14424: 125,140
+ 14425: 160,119
+ 14426: 155,123
+ 14427: 153,112
+ 14429: 156,96
+ 14430: 152,96
+ 14432: 144,96
+ 14433: 138,107
+ 14434: 126,101
+ 14435: 117,64
+ 14436: 128,74
+ 14437: 135,69
+ 14439: 146,72
+ 14440: 151,55
+ 14441: 138,49
+ 14442: 138,52
+ 14444: 122,46
+ 14445: 99,48
+ 14446: 101,48
+ 14447: 98,39
+ 14449: 104,42
+ 14455: 94,58
+ 14456: 94,63
+ 14458: 82,25
+ 14459: 68,25
+ 14460: 63,56
+ 14461: 46,42
+ 14462: 43,44
+ 14463: 35,48
+ 14464: 38,64
+ 14466: 51,61
+ 14467: 55,54
+ 14469: 40,70
+ 14473: 61,72
+ 14474: 90,71
+ 14475: 84,84
+ 14476: 59,87
+ 14478: 65,84
+ 14479: 63,90
+ 14480: 77,97
+ 14481: 65,90
+ 14482: 84,90
+ 14484: 69,104
+ 14485: 73,112
+ 14486: 54,107
+ 14488: 46,80
+ 14489: 42,82
+ 14490: 40,90
+ 14491: 24,99
+ 14492: 31,117
+ 14494: 48,110
+ 14495: 54,77
+ 14496: 147,154
+ 14546: 131,105
+ 14774: 94,53
+ 14775: 46,95
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: BotRight
+ decals:
+ 14631: 144,48
+ - node:
+ color: '#FFFFFFFF'
+ id: Box
+ decals:
+ 2911: 27,107
+ 2912: 27,109
+ 4137: 27,113
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNe
+ decals:
+ 4101: 35,68
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerNw
+ decals:
+ 4096: 32,68
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkCornerSe
+ decals:
+ 454: 35,73
+ 4100: 35,66
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineE
+ decals:
+ 455: 35,74
+ 456: 35,75
+ 457: 35,76
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineN
+ decals:
+ 4098: 34,68
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineS
+ decals:
+ 453: 34,73
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileDarkLineW
+ decals:
+ 4106: 32,67
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNe
+ decals:
+ 4585: 111,110
+ 4586: 112,109
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerNw
+ decals:
+ 4583: 104,109
+ 4584: 105,110
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSe
+ decals:
+ 7078: 112,107
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelCornerSw
+ decals:
+ 7079: 104,107
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNe
+ decals:
+ 4623: 111,109
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelInnerNw
+ decals:
+ 4622: 105,109
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineE
+ decals:
+ 4577: 112,108
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineN
+ decals:
+ 4578: 106,110
+ 4579: 107,110
+ 4580: 108,110
+ 4581: 109,110
+ 4582: 110,110
+ 11933: 120,108
+ 11934: 121,108
+ 11935: 122,108
+ 13921: 117,52
+ 13922: 118,52
+ - node:
+ color: '#FFFFFFFF'
+ id: BrickTileSteelLineW
+ decals:
+ 4575: 104,108
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi1
+ decals:
+ 10133: 131.90627,83.08299
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi2
+ decals:
+ 10126: 133.25272,81.85429
+ 10127: 132.79611,82.367966
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi3
+ decals:
+ 10131: 131.33711,83.21163
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushi4
+ decals:
+ 10118: 130.9385,79.93
+ 10121: 132.74718,80.011536
+ 10130: 132.14679,82.395584
+ 10132: 132.33026,83.034065
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk1
+ decals:
+ 294: 36,60
+ 1922: 69.535706,110.0194
+ 1926: 72.493835,110.02403
+ 1928: 76.50284,110.03792
+ 1931: 78.47113,110.04718
+ 10115: 137.1259,80.69048
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk2
+ decals:
+ 293: 36,57
+ 1923: 70.464264,109.98699
+ 1927: 74.50284,110.04718
+ 1930: 77.41626,110.05644
+ - node:
+ color: '#FFFFFFFF'
+ id: Bushk3
+ decals:
+ 292: 36,54
+ 1924: 71.456795,110.01015
+ 1925: 73.53087,110.00551
+ 1929: 75.56302,110.03792
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 8814: 87,162
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: Caution
+ decals:
+ 14012: 101,147
+ - node:
+ color: '#000000C7'
+ id: CheckerNWSE
+ decals:
+ 10891: 118,101
+ 10898: 117,102
+ 10899: 117,101
+ 10900: 117,100
+ 10901: 117,99
+ 10902: 117,98
+ 10903: 118,98
+ 10904: 119,98
+ 10906: 118,100
+ 10907: 118,102
+ 10908: 119,102
+ 10909: 119,101
+ 10910: 119,100
+ 10911: 119,99
+ 10912: 120,99
+ 10913: 120,101
+ 10914: 120,102
+ 10915: 120,100
+ 10916: 120,98
+ 10917: 121,98
+ 10918: 121,99
+ - node:
+ cleanable: True
+ color: '#0096FFFF'
+ id: Clandestine
+ decals:
+ 7683: 104.87894,18.909126
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: Cyber
+ decals:
+ 7684: 111.23664,26.134521
+ - node:
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 636: 61,61
+ 711: 107,147
+ 712: 108,147
+ 713: 109,147
+ 1238: 135,122
+ 2908: 29,108
+ 2909: 29,112
+ 2910: 29,116
+ 3585: 125,65
+ 3586: 125,68
+ 3587: 125,71
+ 3588: 125,74
+ 3589: 134,52
+ 3590: 134,49
+ 3591: 134,46
+ 4037: 48,81
+ 4039: 48,83
+ 4043: 51,81
+ 4044: 52,81
+ 4047: 51,83
+ 4048: 52,83
+ 4049: 47,81
+ 4051: 47,83
+ 10272: 132,127
+ 10273: 134,127
+ 10274: 136,127
+ 10825: 102,147
+ 10828: 102,146
+ 12022: 139,110
+ 12023: 137,110
+ 13802: 48,100
+ 13803: 49,100
+ 13804: 49,102
+ 13805: 48,102
+ 13806: 51,100
+ 13807: 52,100
+ 13808: 52,102
+ 13809: 51,102
+ 14028: 98,136
+ 14029: 98,137
+ 14030: 98,138
+ 14031: 118,136
+ 14032: 118,137
+ 14033: 118,138
+ 14037: 83,125
+ 14038: 84,125
+ 14039: 83,153
+ 14042: 84,153
+ 14149: 69,124
+ 14504: 32,86
+ 14505: 32,94
+ 14506: 48,95
+ 14511: 31,99
+ 14512: 46,110
+ 14513: 46,114
+ 14514: 40,114
+ 14515: 43,114
+ 14568: 99,90
+ 14569: 61,90
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 9961: 152,105
+ 9962: 150,110
+ 12171: 59,84
+ 12172: 59,85
+ 12173: 59,86
+ 14070: 87,118
+ 14081: 121,116
+ 14091: 86,67
+ 14182: 53,63
+ 14348: 145,136
+ 14373: 157,122
+ 14374: 158,122
+ 14389: 68,118
+ 14390: 74,119
+ 14391: 117,125
+ 14392: 99,125
+ 14606: 26,105
+ 14607: 39,110
+ 14608: 50,107
+ 14609: 52,105
+ 14624: 138,46
+ 14629: 152,52
+ 14630: 155,52
+ 14642: 142,88
+ 14643: 146,93
+ 14649: 155,100
+ 14663: 134,58
+ 14664: 130,64
+ 14670: 135,64
+ 14671: 128,68
+ 14672: 125,56
+ 14677: 124,48
+ 14678: 48,68
+ 14679: 52,68
+ 14680: 51,74
+ 14681: 47,71
+ 14690: 118,149
+ 14691: 131,140
+ 14692: 133,134
+ 14693: 134,134
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 2198: 136,102
+ 2199: 136,103
+ 2202: 139,111
+ 2203: 139,112
+ 2204: 137,111
+ 2205: 137,112
+ - node:
+ zIndex: 1
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: Delivery
+ decals:
+ 14382: 84,123
+ - node:
+ zIndex: 1
+ color: '#52B4E9FF'
+ id: DeliveryGreyscale
+ decals:
+ 12191: 63,84
+ 12192: 63,85
+ - node:
+ zIndex: 1
+ color: '#9FED58FF'
+ id: DeliveryGreyscale
+ decals:
+ 12183: 61,87
+ 12184: 60,87
+ - node:
+ zIndex: 1
+ color: '#D381C9FF'
+ id: DeliveryGreyscale
+ decals:
+ 12189: 63,80
+ 12190: 63,81
+ - node:
+ zIndex: 1
+ color: '#DE3A3AFF'
+ id: DeliveryGreyscale
+ decals:
+ 12176: 60,80
+ 12177: 60,81
+ 12178: 60,82
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#32CD32FF'
+ id: Diablo
+ decals:
+ 8118: 160.29434,51.834034
+ - node:
+ cleanable: True
+ color: '#FFA500FF'
+ id: Diablo
+ decals:
+ 7686: 123.918495,31.093029
+ - node:
+ cleanable: True
+ angle: -6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 10043: 151,76
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 4322: 31,108
+ 4323: 35,110
+ 4324: 31,112
+ 4325: 33,116
+ 4326: 36,115
+ 4327: 35,112
+ 4328: 30,114
+ 4329: 27,115
+ 4330: 26,112
+ 4331: 27,108
+ 4332: 34,111
+ 4333: 31,116
+ 4334: 33,117
+ 4335: 30,109
+ 4336: 30,107
+ 4337: 33,108
+ 4338: 30,114
+ 7480: 91,18
+ 7481: 89,21
+ 7482: 94,23
+ 7483: 97,19
+ 7484: 98,22
+ 7485: 96,23
+ 7486: 101,21
+ 7487: 102,18
+ 7488: 102,25
+ 7489: 99,25
+ 7490: 100,27
+ 7491: 100,28
+ 7492: 98,27
+ 7493: 102,27
+ 7494: 94,24
+ 7495: 96,26
+ 7496: 94,28
+ 7497: 97,31
+ 7498: 98,30
+ 7499: 91,25
+ 7500: 89,28
+ 7501: 100,30
+ 7502: 103,32
+ 7503: 106,30
+ 7504: 105,28
+ 7505: 106,26
+ 7506: 105,23
+ 7507: 104,20
+ 7508: 105,19
+ 7509: 108,19
+ 7510: 109,18
+ 7511: 114,16
+ 7512: 114,19
+ 7513: 112,22
+ 7514: 109,23
+ 7515: 112,25
+ 7516: 111,27
+ 7517: 113,29
+ 7518: 112,30
+ 7519: 115,30
+ 7520: 118,30
+ 7521: 119,29
+ 7522: 120,32
+ 7523: 119,33
+ 7524: 120,36
+ 7525: 118,37
+ 7526: 119,38
+ 7527: 119,40
+ 7528: 119,41
+ 7529: 118,41
+ 7530: 115,41
+ 7531: 114,39
+ 7532: 115,37
+ 7533: 114,36
+ 7534: 125,35
+ 7535: 122,37
+ 7536: 125,39
+ 7537: 125,36
+ 7538: 123,36
+ 7539: 125,37
+ 7540: 123,32
+ 7541: 122,31
+ 7542: 123,30
+ 7543: 123,27
+ 7544: 124,25
+ 7545: 120,23
+ 7546: 119,20
+ 7547: 119,19
+ 7548: 117,20
+ 7549: 117,21
+ 7550: 120,25
+ 7551: 118,26
+ 7552: 117,27
+ 7553: 116,26
+ 7554: 110,22
+ 7858: 68,23
+ 7859: 67,21
+ 7860: 69,16
+ 7861: 73,17
+ 7862: 76,17
+ 7863: 79,17
+ 7864: 83,17
+ 7865: 83,21
+ 7866: 84,23
+ 7977: 81,16
+ 8022: 155,81
+ 8023: 159,83
+ 8024: 161,78
+ 8025: 161,81
+ 8398: 95,110
+ 8399: 91,103
+ 8401: 95,93
+ 8402: 96,86
+ 8403: 96,80
+ 8404: 90,79
+ 8405: 76,80
+ 8406: 68,78
+ 8407: 63,77
+ 8408: 62,67
+ 8479: 151,145
+ 8480: 156,145
+ 8481: 161,145
+ 8482: 160,149
+ 8483: 162,142
+ 8484: 162,137
+ 8485: 162,134
+ 8486: 161,131
+ 8487: 163,130
+ 8488: 161,125
+ 8489: 162,120
+ 8490: 162,115
+ 8491: 161,113
+ 8492: 153,122
+ 8493: 153,131
+ 8534: 116,60
+ 8536: 116,70
+ 8537: 96,73
+ 8538: 96,69
+ 8539: 96,64
+ 8540: 96,59
+ 8541: 105,54
+ 8542: 102,55
+ 8543: 91,55
+ 8635: 108,168
+ 8636: 112,170
+ 8637: 114,167
+ 8785: 77,161
+ 8786: 83,161
+ 8787: 81,158
+ 8788: 76,160
+ 8789: 87,161
+ 8790: 92,167
+ 8791: 93,172
+ 8792: 95,171
+ 8895: 52,145
+ 9019: 51,128
+ 9020: 53,131
+ 9021: 56,128
+ 9022: 52,134
+ 9023: 54,136
+ 9160: 31,120
+ 9161: 34,123
+ 9162: 34,121
+ 9226: 24,115
+ 9227: 21,116
+ 9459: 22,85
+ 9460: 20,83
+ 9461: 24,81
+ 9462: 24,79
+ 9463: 25,79
+ 9467: 24,96
+ 9468: 21,97
+ 9469: 21,96
+ 9470: 18,100
+ 9471: 22,102
+ 9472: 22,100
+ 9473: 19,104
+ 9474: 27,96
+ 9475: 28,97
+ 9476: 37,96
+ 9478: 34,96
+ 9479: 26,88
+ 9480: 26,86
+ 9481: 27,83
+ 9482: 27,81
+ 9483: 28,79
+ 9484: 28,75
+ 9485: 29,73
+ 9486: 29,69
+ 9487: 24,69
+ 9488: 21,72
+ 9489: 24,75
+ 9490: 19,78
+ 9491: 33,80
+ 9492: 35,80
+ 9493: 37,80
+ 9495: 47,78
+ 9496: 50,78
+ 10227: 53,151
+ 10228: 54,154
+ 10229: 55,148
+ 10252: 65,122
+ 10253: 60,121
+ 10293: 139,134
+ 10294: 138,131
+ 10295: 141,131
+ 10296: 140,128
+ 10297: 141,127
+ 10298: 140,126
+ 10299: 140,123
+ 10300: 141,121
+ 10329: 124,167
+ 10330: 122,168
+ 10331: 125,170
+ 10332: 123,171
+ 10333: 122,170
+ 10334: 120,168
+ 10335: 119,171
+ 10377: 100,165
+ 10378: 98,167
+ 10379: 96,165
+ 10380: 94,166
+ 10381: 100,169
+ 10382: 102,168
+ 10383: 103,165
+ 10384: 105,167
+ 10385: 100,171
+ 10397: 48,121
+ 10408: 40,123
+ 10409: 36,123
+ 10410: 38,124
+ 10411: 42,125
+ 10412: 42,122
+ 10418: 37,120
+ 10419: 41,119
+ 10420: 44,119
+ 10476: 29,122
+ 10477: 27,121
+ 10478: 21,121
+ 10493: 21,111
+ 10494: 24,113
+ 10500: 24,110
+ 10538: 164,148
+ 10539: 169,135
+ 10715: 88,47
+ 10716: 86,48
+ 10717: 88,43
+ 10718: 88,45
+ 10719: 86,41
+ 10720: 88,39
+ 10721: 102,37
+ 10722: 99,34
+ 10723: 103,34
+ 11047: 95,93
+ 11048: 96,87
+ 11049: 93,88
+ 11050: 96,81
+ 11051: 93,84
+ 11052: 92,80
+ 11053: 86,81
+ 11054: 88,82
+ 12135: 115,70
+ 12136: 116,68
+ 12206: 63,80
+ 12207: 60,81
+ 12208: 63,82
+ 12209: 63,84
+ 13907: 101,54
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 8060: 141,83
+ 8061: 142,80
+ 8062: 144,81
+ 8063: 155,42
+ 8064: 157,43
+ 8065: 156,44
+ 8119: 161,44
+ 8120: 159,42
+ 8121: 163,44
+ 8122: 160,47
+ 8123: 162,49
+ 8124: 161,51
+ 8146: 155,85
+ 8147: 155,87
+ 8158: 162,64
+ 8159: 160,66
+ 8160: 162,62
+ 8196: 153,43
+ 8197: 152,47
+ 8198: 151,44
+ 8199: 146,46
+ 8200: 145,45
+ 8201: 158,46
+ 8203: 158,51
+ 8204: 157,54
+ 8205: 158,57
+ 8206: 158,58
+ 8207: 159,60
+ 8208: 158,65
+ 8209: 156,66
+ 8210: 156,69
+ 8211: 156,72
+ 8213: 150,77
+ 8214: 147,75
+ 8215: 148,74
+ 8216: 146,80
+ 8217: 147,80
+ 8219: 146,85
+ 8220: 151,85
+ 8221: 141,85
+ 8222: 136,86
+ 8223: 133,85
+ 8224: 140,91
+ 10198: 77,156
+ 13842: 50,100
+ - node:
+ cleanable: True
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: Dirt
+ decals:
+ 10533: 164,144
+ - node:
+ cleanable: True
+ angle: -6.283185307179586 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 10044: 152,76
+ 10045: 153,77
+ 10046: 153,76
+ 10047: 148,77
+ 10048: 149,76
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 4237: 32,112
+ 4238: 31,111
+ 4239: 30,109
+ 4240: 32,107
+ 4241: 34,109
+ 4242: 36,110
+ 4243: 36,113
+ 4244: 36,116
+ 4245: 34,117
+ 4246: 32,115
+ 4247: 30,113
+ 4248: 33,111
+ 4249: 30,107
+ 4250: 27,108
+ 4251: 28,109
+ 4252: 27,111
+ 4253: 27,112
+ 4254: 26,112
+ 4255: 26,116
+ 4256: 27,115
+ 4262: 34,110
+ 4263: 36,111
+ 4264: 32,110
+ 4265: 30,108
+ 4266: 35,113
+ 4267: 32,113
+ 4268: 31,113
+ 4277: 34,114
+ 4278: 34,115
+ 4279: 34,113
+ 4284: 30,112
+ 4285: 30,112
+ 4286: 31,110
+ 4287: 31,110
+ 4288: 31,108
+ 4289: 31,108
+ 4290: 31,108
+ 4291: 33,108
+ 4292: 33,108
+ 4293: 33,109
+ 4294: 34,108
+ 4295: 34,108
+ 4296: 33,108
+ 4297: 33,109
+ 4298: 32,108
+ 4299: 32,109
+ 4300: 30,111
+ 4311: 32,111
+ 4312: 32,111
+ 4313: 34,111
+ 4314: 35,110
+ 4315: 35,112
+ 4316: 35,112
+ 4317: 31,115
+ 4318: 31,115
+ 4319: 34,107
+ 4320: 34,107
+ 4321: 34,107
+ 7257: 87,18
+ 7258: 87,19
+ 7259: 88,18
+ 7260: 89,20
+ 7261: 88,20
+ 7262: 89,18
+ 7263: 91,18
+ 7264: 92,19
+ 7265: 94,20
+ 7266: 95,19
+ 7267: 95,18
+ 7268: 93,18
+ 7269: 92,22
+ 7270: 91,22
+ 7271: 89,22
+ 7272: 89,23
+ 7273: 92,23
+ 7274: 95,23
+ 7275: 96,21
+ 7276: 98,20
+ 7277: 98,18
+ 7278: 96,18
+ 7279: 99,18
+ 7280: 99,21
+ 7281: 98,22
+ 7282: 97,23
+ 7283: 96,22
+ 7284: 102,18
+ 7285: 101,19
+ 7286: 102,20
+ 7287: 101,20
+ 7288: 101,21
+ 7289: 102,22
+ 7290: 101,23
+ 7291: 102,25
+ 7292: 100,25
+ 7293: 99,25
+ 7294: 100,27
+ 7295: 100,28
+ 7296: 99,27
+ 7297: 101,26
+ 7298: 102,26
+ 7299: 102,27
+ 7300: 102,28
+ 7301: 99,28
+ 7302: 98,27
+ 7303: 98,26
+ 7304: 98,25
+ 7305: 95,23
+ 7306: 95,24
+ 7307: 95,25
+ 7308: 94,26
+ 7309: 95,27
+ 7310: 96,29
+ 7311: 95,29
+ 7312: 95,30
+ 7313: 95,32
+ 7314: 97,32
+ 7315: 92,25
+ 7316: 92,26
+ 7317: 91,27
+ 7318: 90,28
+ 7319: 89,27
+ 7320: 88,27
+ 7321: 88,26
+ 7322: 89,25
+ 7323: 90,25
+ 7324: 90,26
+ 7325: 97,30
+ 7326: 98,31
+ 7327: 101,31
+ 7328: 101,30
+ 7329: 103,31
+ 7330: 104,31
+ 7331: 105,30
+ 7332: 104,29
+ 7333: 106,31
+ 7334: 106,32
+ 7335: 106,29
+ 7336: 105,26
+ 7337: 105,26
+ 7338: 106,25
+ 7339: 105,24
+ 7340: 104,26
+ 7341: 105,27
+ 7342: 105,28
+ 7343: 106,28
+ 7344: 104,23
+ 7345: 105,23
+ 7346: 104,21
+ 7347: 105,20
+ 7348: 105,19
+ 7349: 107,20
+ 7350: 107,19
+ 7351: 108,18
+ 7352: 109,19
+ 7353: 110,20
+ 7354: 113,18
+ 7355: 114,19
+ 7356: 113,20
+ 7357: 112,20
+ 7358: 114,18
+ 7359: 114,17
+ 7360: 113,16
+ 7361: 110,22
+ 7362: 109,23
+ 7363: 109,24
+ 7364: 111,24
+ 7365: 111,23
+ 7366: 112,23
+ 7367: 113,23
+ 7368: 112,24
+ 7369: 112,23
+ 7370: 112,25
+ 7371: 111,27
+ 7372: 112,27
+ 7373: 113,28
+ 7374: 113,26
+ 7376: 117,26
+ 7377: 118,26
+ 7378: 119,25
+ 7379: 120,26
+ 7380: 120,27
+ 7381: 116,27
+ 7382: 115,26
+ 7383: 115,26
+ 7384: 116,22
+ 7385: 118,22
+ 7386: 119,22
+ 7387: 119,21
+ 7388: 120,20
+ 7389: 120,19
+ 7390: 119,19
+ 7391: 118,19
+ 7392: 117,19
+ 7393: 116,20
+ 7394: 118,21
+ 7395: 119,22
+ 7396: 119,22
+ 7397: 122,26
+ 7398: 124,25
+ 7399: 124,26
+ 7400: 122,28
+ 7401: 123,28
+ 7402: 124,30
+ 7403: 123,31
+ 7404: 123,32
+ 7405: 122,33
+ 7406: 119,29
+ 7407: 117,30
+ 7408: 115,30
+ 7409: 114,30
+ 7410: 113,29
+ 7411: 112,30
+ 7412: 113,30
+ 7413: 116,31
+ 7414: 117,30
+ 7415: 118,30
+ 7416: 119,31
+ 7417: 119,34
+ 7418: 119,35
+ 7419: 120,37
+ 7420: 119,38
+ 7421: 120,39
+ 7422: 120,40
+ 7423: 119,41
+ 7424: 118,40
+ 7425: 119,39
+ 7426: 118,37
+ 7427: 118,35
+ 7428: 114,36
+ 7429: 113,37
+ 7430: 114,39
+ 7431: 115,40
+ 7433: 115,41
+ 7434: 114,41
+ 7435: 114,40
+ 7436: 114,39
+ 7437: 113,42
+ 7438: 114,41
+ 7439: 115,39
+ 7440: 115,37
+ 7441: 115,36
+ 7442: 115,38
+ 7443: 116,38
+ 7444: 115,35
+ 7445: 113,35
+ 7446: 123,35
+ 7447: 125,35
+ 7448: 126,36
+ 7449: 125,38
+ 7450: 124,38
+ 7451: 123,38
+ 7452: 122,37
+ 7453: 122,36
+ 7454: 124,36
+ 7455: 125,37
+ 7456: 126,38
+ 7457: 126,39
+ 7458: 124,39
+ 7459: 122,39
+ 7460: 123,37
+ 7461: 124,36
+ 7462: 123,26
+ 7463: 123,26
+ 7464: 101,25
+ 7465: 101,26
+ 7466: 100,26
+ 7467: 94,30
+ 7468: 95,31
+ 7469: 91,30
+ 7470: 90,31
+ 7471: 91,32
+ 7472: 92,31
+ 7473: 91,30
+ 7474: 102,32
+ 7475: 104,32
+ 7476: 104,31
+ 7477: 103,33
+ 7478: 105,32
+ 7479: 106,30
+ 7817: 84,16
+ 7818: 82,17
+ 7819: 81,17
+ 7820: 78,17
+ 7821: 74,18
+ 7822: 73,17
+ 7823: 77,17
+ 7824: 77,16
+ 7825: 75,16
+ 7826: 72,17
+ 7827: 71,17
+ 7828: 69,16
+ 7829: 68,17
+ 7830: 70,17
+ 7832: 68,17
+ 7833: 67,18
+ 7834: 68,19
+ 7835: 68,20
+ 7836: 68,22
+ 7837: 68,22
+ 7838: 67,23
+ 7839: 66,23
+ 7840: 66,23
+ 7841: 67,23
+ 7842: 84,23
+ 7843: 83,23
+ 7844: 83,22
+ 7845: 83,21
+ 7846: 84,19
+ 7847: 85,19
+ 7848: 84,18
+ 7849: 83,16
+ 7850: 81,16
+ 7851: 80,17
+ 7852: 79,18
+ 7853: 78,16
+ 7854: 73,16
+ 7855: 69,16
+ 7856: 70,16
+ 7857: 69,16
+ 7867: 86,23
+ 7868: 86,24
+ 7869: 86,26
+ 7870: 86,27
+ 7871: 86,29
+ 7872: 86,31
+ 7873: 86,33
+ 7874: 86,35
+ 7875: 86,37
+ 7876: 86,39
+ 7877: 86,40
+ 7878: 86,43
+ 7879: 86,44
+ 7880: 86,47
+ 7881: 86,49
+ 7886: 85,45
+ 7889: 79,45
+ 7890: 78,45
+ 7891: 76,45
+ 7892: 73,45
+ 7893: 71,45
+ 7894: 70,46
+ 7896: 72,47
+ 7897: 70,49
+ 7898: 70,49
+ 7909: 64,48
+ 7910: 64,46
+ 7911: 64,45
+ 7912: 64,43
+ 7914: 64,39
+ 7915: 64,37
+ 7916: 64,34
+ 7917: 64,32
+ 7918: 64,30
+ 7919: 64,28
+ 7920: 64,26
+ 7921: 64,25
+ 7922: 63,23
+ 7923: 63,21
+ 7924: 64,21
+ 7925: 64,20
+ 7926: 65,19
+ 7927: 65,20
+ 7928: 65,15
+ 7929: 63,16
+ 7930: 64,17
+ 7931: 65,17
+ 7932: 61,20
+ 7933: 61,22
+ 7934: 61,24
+ 7935: 61,28
+ 7940: 57,34
+ 7941: 56,34
+ 7942: 60,30
+ 7943: 55,35
+ 7944: 56,36
+ 7945: 55,38
+ 7946: 55,40
+ 7947: 56,42
+ 7948: 55,43
+ 7949: 56,45
+ 7950: 56,47
+ 7951: 57,45
+ 7952: 57,44
+ 7953: 53,45
+ 7954: 53,47
+ 7955: 54,46
+ 7956: 52,49
+ 7957: 52,50
+ 7958: 52,51
+ 7959: 61,47
+ 7960: 60,47
+ 7961: 60,44
+ 7962: 62,43
+ 7963: 60,43
+ 7964: 60,44
+ 7965: 61,44
+ 7966: 61,44
+ 7973: 63,25
+ 7974: 63,36
+ 7975: 63,38
+ 7976: 63,39
+ 7985: 156,80
+ 7986: 157,81
+ 7987: 155,81
+ 7988: 155,83
+ 7989: 156,83
+ 7990: 158,83
+ 7991: 159,83
+ 7992: 160,83
+ 7993: 160,82
+ 7994: 160,81
+ 7995: 160,79
+ 7996: 160,79
+ 7997: 159,78
+ 7998: 160,78
+ 8000: 157,79
+ 8001: 155,78
+ 8003: 161,80
+ 8004: 161,81
+ 8005: 161,78
+ 8007: 155,79
+ 8008: 155,79
+ 8338: 64,67
+ 8339: 63,68
+ 8340: 61,67
+ 8341: 60,67
+ 8342: 59,69
+ 8343: 59,70
+ 8344: 59,72
+ 8345: 59,77
+ 8346: 61,78
+ 8347: 62,77
+ 8349: 64,78
+ 8350: 64,78
+ 8351: 66,78
+ 8352: 69,78
+ 8353: 71,78
+ 8354: 72,80
+ 8355: 74,80
+ 8356: 76,80
+ 8357: 78,80
+ 8358: 80,80
+ 8359: 82,80
+ 8360: 84,80
+ 8361: 86,80
+ 8362: 89,80
+ 8363: 91,80
+ 8364: 93,80
+ 8365: 95,80
+ 8366: 96,81
+ 8367: 96,82
+ 8368: 96,83
+ 8369: 95,84
+ 8370: 95,86
+ 8371: 95,88
+ 8372: 95,90
+ 8373: 95,91
+ 8374: 95,94
+ 8375: 94,94
+ 8376: 92,94
+ 8377: 91,94
+ 8378: 91,96
+ 8379: 91,98
+ 8380: 92,100
+ 8383: 91,103
+ 8384: 91,104
+ 8385: 91,106
+ 8386: 91,108
+ 8387: 92,109
+ 8388: 92,108
+ 8389: 92,106
+ 8390: 91,110
+ 8391: 93,110
+ 8392: 94,110
+ 8393: 95,110
+ 8409: 74,82
+ 8410: 72,82
+ 8411: 74,83
+ 8412: 133,112
+ 8413: 133,113
+ 8414: 132,112
+ 8415: 132,115
+ 8416: 135,115
+ 8417: 137,115
+ 8418: 139,115
+ 8419: 141,115
+ 8420: 144,115
+ 8421: 146,115
+ 8422: 148,115
+ 8423: 151,115
+ 8424: 153,115
+ 8425: 155,115
+ 8426: 158,115
+ 8427: 160,115
+ 8428: 161,115
+ 8429: 161,113
+ 8430: 161,112
+ 8431: 162,112
+ 8432: 160,114
+ 8433: 162,116
+ 8434: 162,117
+ 8435: 162,119
+ 8436: 162,122
+ 8438: 162,123
+ 8439: 161,124
+ 8440: 161,124
+ 8441: 161,126
+ 8442: 161,128
+ 8443: 163,129
+ 8444: 163,130
+ 8445: 162,130
+ 8446: 163,126
+ 8447: 158,130
+ 8448: 156,131
+ 8449: 153,130
+ 8450: 152,129
+ 8451: 152,127
+ 8452: 152,125
+ 8453: 152,124
+ 8454: 153,123
+ 8455: 153,122
+ 8456: 153,121
+ 8457: 159,131
+ 8459: 162,135
+ 8460: 162,135
+ 8461: 162,137
+ 8462: 162,139
+ 8463: 162,141
+ 8464: 162,142
+ 8465: 161,142
+ 8466: 162,144
+ 8467: 162,145
+ 8468: 161,145
+ 8469: 161,146
+ 8470: 159,145
+ 8471: 158,145
+ 8472: 156,145
+ 8473: 154,145
+ 8474: 152,145
+ 8475: 148,145
+ 8476: 150,145
+ 8477: 160,148
+ 8478: 159,149
+ 8494: 154,131
+ 8495: 153,131
+ 8496: 90,56
+ 8497: 91,55
+ 8498: 92,56
+ 8504: 93,55
+ 8505: 94,55
+ 8506: 97,55
+ 8507: 98,55
+ 8508: 99,55
+ 8509: 102,55
+ 8510: 103,54
+ 8511: 103,54
+ 8512: 105,54
+ 8513: 106,54
+ 8514: 107,54
+ 8515: 96,56
+ 8516: 96,57
+ 8517: 96,59
+ 8518: 96,61
+ 8519: 96,63
+ 8520: 96,65
+ 8521: 96,67
+ 8522: 96,69
+ 8523: 96,71
+ 8524: 96,74
+ 8525: 116,74
+ 8526: 116,73
+ 8531: 116,61
+ 8532: 116,59
+ 8533: 116,57
+ 8547: 141,121
+ 8548: 141,123
+ 8549: 141,124
+ 8550: 141,127
+ 8551: 141,128
+ 8552: 141,131
+ 8553: 139,131
+ 8554: 139,133
+ 8555: 138,132
+ 8556: 139,132
+ 8557: 138,134
+ 8558: 138,135
+ 8559: 138,136
+ 8560: 138,138
+ 8561: 138,138
+ 8562: 136,138
+ 8563: 134,138
+ 8564: 134,139
+ 8565: 134,141
+ 8566: 134,143
+ 8567: 134,145
+ 8568: 134,147
+ 8569: 135,148
+ 8570: 136,148
+ 8571: 136,147
+ 8572: 132,148
+ 8573: 131,148
+ 8574: 129,148
+ 8575: 127,148
+ 8576: 125,148
+ 8577: 125,149
+ 8578: 125,151
+ 8579: 125,154
+ 8580: 125,156
+ 8581: 125,158
+ 8582: 124,158
+ 8583: 122,158
+ 8584: 121,158
+ 8585: 121,159
+ 8586: 121,162
+ 8587: 121,163
+ 8588: 121,164
+ 8589: 120,164
+ 8590: 118,164
+ 8591: 116,164
+ 8592: 114,164
+ 8593: 111,164
+ 8594: 109,164
+ 8595: 106,164
+ 8596: 104,164
+ 8597: 104,165
+ 8598: 104,167
+ 8599: 104,169
+ 8600: 103,169
+ 8601: 101,169
+ 8602: 99,169
+ 8603: 96,169
+ 8604: 94,169
+ 8605: 97,170
+ 8606: 99,171
+ 8607: 97,172
+ 8608: 98,171
+ 8609: 98,170
+ 8610: 99,172
+ 8611: 100,170
+ 8612: 94,168
+ 8613: 94,167
+ 8614: 94,164
+ 8615: 94,162
+ 8616: 94,159
+ 8617: 93,159
+ 8618: 91,159
+ 8619: 88,159
+ 8621: 108,168
+ 8622: 108,169
+ 8623: 109,169
+ 8624: 109,170
+ 8625: 108,170
+ 8626: 111,170
+ 8627: 112,170
+ 8628: 113,169
+ 8629: 114,168
+ 8630: 114,167
+ 8632: 111,167
+ 8633: 110,167
+ 8634: 109,167
+ 8661: 120,167
+ 8662: 118,167
+ 8663: 119,169
+ 8664: 118,170
+ 8665: 119,171
+ 8666: 118,169
+ 8667: 117,168
+ 8668: 121,171
+ 8669: 120,169
+ 8686: 74,158
+ 8687: 75,158
+ 8688: 76,160
+ 8689: 78,158
+ 8690: 75,159
+ 8691: 73,161
+ 8692: 74,162
+ 8693: 77,161
+ 8694: 79,160
+ 8695: 81,160
+ 8696: 82,160
+ 8697: 82,158
+ 8698: 78,158
+ 8699: 78,160
+ 8700: 77,160
+ 8701: 81,162
+ 8702: 81,161
+ 8703: 83,160
+ 8704: 83,159
+ 8705: 80,158
+ 8706: 77,160
+ 8707: 76,160
+ 8708: 75,159
+ 8709: 81,162
+ 8710: 82,162
+ 8711: 84,161
+ 8712: 85,161
+ 8713: 85,162
+ 8714: 82,160
+ 8715: 80,159
+ 8716: 89,161
+ 8717: 91,162
+ 8718: 88,163
+ 8719: 87,162
+ 8720: 91,162
+ 8721: 90,161
+ 8722: 88,164
+ 8723: 87,164
+ 8724: 89,165
+ 8725: 91,164
+ 8726: 90,163
+ 8727: 91,163
+ 8728: 91,162
+ 8729: 91,168
+ 8730: 92,168
+ 8731: 92,169
+ 8732: 90,169
+ 8733: 91,170
+ 8734: 92,169
+ 8735: 92,167
+ 8736: 90,167
+ 8737: 92,171
+ 8738: 91,172
+ 8739: 90,172
+ 8740: 92,173
+ 8741: 93,172
+ 8742: 94,172
+ 8743: 95,171
+ 8744: 94,171
+ 8745: 95,173
+ 8746: 95,173
+ 8747: 91,171
+ 8748: 90,171
+ 8749: 99,170
+ 8750: 97,171
+ 8751: 98,172
+ 8820: 91,158
+ 8821: 92,158
+ 8822: 93,159
+ 8823: 93,158
+ 8824: 94,160
+ 8825: 93,161
+ 8827: 94,163
+ 8828: 93,164
+ 8829: 94,165
+ 8830: 93,164
+ 8831: 93,163
+ 8832: 85,156
+ 8833: 84,155
+ 8834: 82,155
+ 8835: 79,155
+ 8836: 77,155
+ 8837: 75,156
+ 8838: 73,155
+ 8839: 73,156
+ 8840: 75,156
+ 8841: 78,155
+ 8842: 81,155
+ 8843: 79,156
+ 8844: 74,155
+ 8846: 71,157
+ 8847: 70,157
+ 8848: 68,157
+ 8849: 65,157
+ 8850: 63,157
+ 8851: 62,160
+ 8852: 63,160
+ 8853: 64,160
+ 8854: 65,159
+ 8855: 64,161
+ 8856: 63,160
+ 8857: 62,159
+ 8858: 68,160
+ 8860: 70,161
+ 8861: 70,163
+ 8862: 69,163
+ 8863: 67,162
+ 8864: 69,161
+ 8865: 70,160
+ 8866: 70,161
+ 8867: 70,163
+ 8868: 69,163
+ 8869: 68,162
+ 8870: 70,161
+ 8871: 88,155
+ 8872: 89,156
+ 8873: 90,156
+ 8874: 91,155
+ 8875: 91,154
+ 8876: 91,152
+ 8877: 91,150
+ 8878: 91,148
+ 8879: 91,147
+ 8880: 91,131
+ 8881: 91,130
+ 8882: 91,128
+ 8883: 91,125
+ 8884: 54,145
+ 8885: 53,145
+ 8886: 54,147
+ 8887: 54,148
+ 8888: 55,149
+ 8890: 52,152
+ 8891: 54,153
+ 8892: 55,154
+ 8893: 54,151
+ 8894: 53,149
+ 8926: 57,137
+ 8929: 58,142
+ 8931: 58,147
+ 8932: 59,148
+ 8933: 58,151
+ 8934: 57,150
+ 8935: 59,148
+ 8936: 59,149
+ 8937: 58,145
+ 8938: 59,154
+ 8939: 58,154
+ 8940: 59,155
+ 8941: 59,157
+ 8942: 58,157
+ 8943: 58,158
+ 8944: 59,158
+ 8945: 58,123
+ 8947: 58,122
+ 8950: 53,122
+ 8951: 55,121
+ 8952: 52,122
+ 8953: 53,125
+ 8954: 54,126
+ 8955: 56,126
+ 8956: 66,116
+ 8957: 66,117
+ 8958: 66,120
+ 8959: 66,121
+ 8960: 63,121
+ 8961: 63,121
+ 8962: 62,121
+ 8963: 61,122
+ 8964: 61,124
+ 8965: 65,121
+ 8966: 63,121
+ 8967: 62,121
+ 8968: 61,121
+ 8969: 61,124
+ 8970: 61,126
+ 8971: 60,126
+ 8972: 60,128
+ 8973: 59,128
+ 8974: 57,129
+ 8975: 55,129
+ 8976: 54,129
+ 8977: 56,128
+ 8978: 55,130
+ 8979: 54,130
+ 8980: 53,130
+ 8981: 53,131
+ 8982: 54,133
+ 8983: 54,134
+ 8984: 53,135
+ 8985: 53,134
+ 8986: 54,133
+ 9013: 52,130
+ 9014: 51,130
+ 9015: 51,132
+ 9016: 52,133
+ 9017: 53,134
+ 9018: 51,134
+ 9134: 39,123
+ 9154: 32,121
+ 9155: 32,123
+ 9156: 33,123
+ 9157: 33,122
+ 9158: 34,121
+ 9159: 31,122
+ 9228: 19,115
+ 9229: 19,116
+ 9230: 20,115
+ 9231: 21,115
+ 9232: 22,116
+ 9233: 23,115
+ 9234: 24,115
+ 9235: 24,116
+ 9236: 23,118
+ 9237: 24,119
+ 9238: 25,119
+ 9239: 23,119
+ 9240: 20,118
+ 9241: 20,119
+ 9242: 19,118
+ 9243: 25,119
+ 9244: 27,119
+ 9245: 29,119
+ 9246: 31,119
+ 9247: 33,119
+ 9248: 35,119
+ 9249: 38,119
+ 9250: 40,119
+ 9251: 41,119
+ 9252: 41,120
+ 9253: 40,120
+ 9254: 38,120
+ 9255: 45,120
+ 9256: 47,120
+ 9257: 49,120
+ 9258: 49,120
+ 9259: 49,119
+ 9260: 47,119
+ 9261: 50,117
+ 9262: 52,118
+ 9263: 52,117
+ 9264: 52,114
+ 9265: 50,113
+ 9266: 50,112
+ 9267: 52,112
+ 9268: 53,114
+ 9269: 53,112
+ 9270: 53,110
+ 9271: 53,109
+ 9272: 50,109
+ 9273: 50,110
+ 9274: 51,109
+ 9275: 24,107
+ 9276: 24,108
+ 9277: 22,108
+ 9278: 21,107
+ 9279: 20,107
+ 9281: 18,108
+ 9282: 18,108
+ 9283: 18,110
+ 9284: 18,112
+ 9285: 22,106
+ 9286: 22,104
+ 9287: 20,104
+ 9290: 18,104
+ 9291: 18,103
+ 9292: 18,101
+ 9293: 18,99
+ 9294: 18,98
+ 9295: 18,96
+ 9296: 19,96
+ 9297: 21,96
+ 9298: 22,96
+ 9300: 22,98
+ 9301: 21,99
+ 9302: 21,101
+ 9303: 20,101
+ 9304: 20,99
+ 9305: 20,98
+ 9306: 21,101
+ 9307: 24,96
+ 9308: 26,97
+ 9309: 28,96
+ 9310: 26,93
+ 9311: 24,92
+ 9312: 25,90
+ 9313: 26,89
+ 9314: 25,87
+ 9315: 25,85
+ 9316: 26,84
+ 9317: 27,84
+ 9318: 27,83
+ 9319: 22,87
+ 9320: 21,87
+ 9321: 21,85
+ 9322: 22,83
+ 9323: 22,82
+ 9324: 24,81
+ 9325: 25,79
+ 9326: 24,79
+ 9327: 22,79
+ 9328: 21,80
+ 9329: 19,79
+ 9330: 18,79
+ 9331: 19,80
+ 9332: 19,86
+ 9333: 18,87
+ 9340: 32,96
+ 9341: 33,97
+ 9342: 34,96
+ 9343: 36,96
+ 9344: 36,97
+ 9345: 31,82
+ 9346: 34,83
+ 9347: 34,82
+ 9348: 32,84
+ 9349: 29,76
+ 9350: 28,76
+ 9351: 28,74
+ 9352: 29,73
+ 9353: 24,69
+ 9354: 22,69
+ 9355: 25,71
+ 9356: 23,72
+ 9357: 21,72
+ 9358: 23,74
+ 9359: 24,75
+ 9360: 23,75
+ 9361: 21,74
+ 9362: 23,71
+ 9363: 22,70
+ 9364: 20,68
+ 9365: 23,70
+ 9366: 25,70
+ 9367: 21,75
+ 9368: 24,76
+ 9369: 32,79
+ 9370: 33,80
+ 9371: 34,79
+ 9374: 39,80
+ 9375: 42,79
+ 9376: 43,80
+ 9377: 43,79
+ 9378: 43,78
+ 9379: 46,78
+ 9380: 47,78
+ 9381: 49,78
+ 9382: 51,78
+ 9383: 52,78
+ 9384: 29,78
+ 9386: 28,75
+ 9387: 29,70
+ 9389: 27,71
+ 9390: 29,67
+ 9391: 27,67
+ 10230: 53,156
+ 10231: 53,157
+ 10232: 53,157
+ 10245: 66,122
+ 10246: 64,121
+ 10248: 60,122
+ 10249: 60,123
+ 10250: 61,125
+ 10251: 60,125
+ 10262: 59,132
+ 10263: 57,133
+ 10264: 59,134
+ 10265: 57,134
+ 10283: 141,123
+ 10284: 140,125
+ 10285: 140,126
+ 10286: 139,125
+ 10287: 141,127
+ 10288: 141,129
+ 10289: 140,128
+ 10290: 140,129
+ 10291: 139,130
+ 10292: 141,131
+ 10312: 125,167
+ 10313: 123,168
+ 10314: 124,169
+ 10315: 125,170
+ 10316: 123,170
+ 10317: 123,170
+ 10318: 122,169
+ 10319: 125,168
+ 10320: 125,165
+ 10321: 124,163
+ 10322: 124,162
+ 10323: 125,161
+ 10324: 123,165
+ 10325: 121,163
+ 10326: 120,165
+ 10327: 122,167
+ 10328: 122,171
+ 10336: 114,168
+ 10337: 110,167
+ 10338: 110,167
+ 10339: 108,170
+ 10340: 108,170
+ 10342: 137,139
+ 10343: 134,140
+ 10344: 136,139
+ 10345: 136,139
+ 10346: 100,165
+ 10347: 100,166
+ 10348: 99,166
+ 10349: 100,168
+ 10350: 97,168
+ 10351: 99,169
+ 10352: 100,169
+ 10353: 102,169
+ 10354: 102,168
+ 10355: 104,168
+ 10356: 104,167
+ 10357: 102,166
+ 10358: 104,167
+ 10359: 105,167
+ 10360: 103,167
+ 10361: 105,168
+ 10362: 103,165
+ 10398: 48,121
+ 10399: 48,120
+ 10400: 48,119
+ 10401: 50,120
+ 10403: 40,125
+ 10404: 42,125
+ 10405: 42,122
+ 10406: 36,125
+ 10407: 37,122
+ 10413: 40,123
+ 10414: 36,125
+ 10415: 40,125
+ 10416: 37,122
+ 10417: 39,119
+ 10479: 21,121
+ 10480: 21,121
+ 10481: 27,121
+ 10482: 29,122
+ 10483: 29,121
+ 10484: 28,121
+ 10485: 28,121
+ 10486: 29,121
+ 10487: 29,122
+ 10488: 24,112
+ 10489: 23,113
+ 10490: 22,112
+ 10491: 21,110
+ 10495: 22,113
+ 10496: 21,112
+ 10497: 21,113
+ 10498: 23,112
+ 10499: 24,112
+ 10501: 19,112
+ 10502: 19,110
+ 10503: 19,109
+ 10504: 18,107
+ 10505: 16,108
+ 10506: 15,107
+ 10534: 164,147
+ 10535: 163,147
+ 10536: 162,148
+ 10537: 164,149
+ 10540: 169,134
+ 10541: 169,135
+ 10542: 167,134
+ 10543: 167,133
+ 10544: 168,133
+ 10545: 167,132
+ 10546: 166,133
+ 10548: 165,134
+ 10549: 165,133
+ 10550: 164,132
+ 10551: 163,132
+ 10552: 162,132
+ 10553: 161,132
+ 10555: 166,137
+ 10557: 167,137
+ 10558: 165,135
+ 10559: 165,134
+ 10560: 166,133
+ 10561: 167,134
+ 10562: 168,133
+ 10705: 87,39
+ 10706: 88,40
+ 10707: 87,42
+ 10708: 88,42
+ 10710: 88,45
+ 10711: 88,48
+ 10712: 87,47
+ 10724: 104,34
+ 10725: 103,36
+ 10726: 102,35
+ 10727: 101,34
+ 10728: 99,35
+ 10729: 98,35
+ 10730: 98,34
+ 10731: 100,37
+ 10732: 99,37
+ 10733: 98,37
+ 10734: 100,36
+ 10735: 102,37
+ 10736: 103,36
+ 10737: 104,36
+ 10743: 95,34
+ 10744: 95,36
+ 10745: 94,37
+ 10746: 93,36
+ 10747: 93,34
+ 10748: 91,37
+ 10749: 90,36
+ 10750: 93,37
+ 10751: 95,36
+ 10752: 96,37
+ 10753: 96,35
+ 10754: 91,34
+ 10755: 87,36
+ 10756: 87,34
+ 10757: 88,34
+ 10758: 88,36
+ 10759: 109,26
+ 10760: 108,27
+ 10761: 108,28
+ 10762: 109,29
+ 10763: 108,30
+ 10764: 109,33
+ 10765: 110,33
+ 10766: 112,33
+ 10767: 114,33
+ 10768: 110,35
+ 10769: 110,36
+ 10770: 109,36
+ 10771: 107,36
+ 10772: 106,35
+ 10773: 106,34
+ 10774: 111,38
+ 10775: 110,38
+ 10776: 111,40
+ 10777: 111,42
+ 10778: 110,42
+ 10779: 110,44
+ 10780: 109,46
+ 10781: 110,48
+ 10782: 111,48
+ 10783: 111,47
+ 10784: 114,44
+ 10785: 115,45
+ 10786: 116,44
+ 10787: 117,45
+ 10788: 119,44
+ 10789: 120,44
+ 10790: 121,44
+ 10791: 123,44
+ 10792: 123,43
+ 10793: 124,43
+ 10795: 126,41
+ 10796: 127,41
+ 10797: 127,43
+ 10798: 126,42
+ 11036: 89,82
+ 11037: 86,81
+ 11038: 90,80
+ 11039: 92,81
+ 11040: 89,79
+ 11041: 95,82
+ 11042: 96,84
+ 11043: 94,84
+ 11044: 94,86
+ 11045: 93,87
+ 11046: 96,87
+ 11238: 59,47
+ 11239: 60,45
+ 11240: 62,46
+ 11241: 62,42
+ 11242: 59,43
+ 11243: 64,42
+ 11244: 64,44
+ 11247: 70,47
+ 11248: 71,48
+ 11249: 72,46
+ 11250: 71,45
+ 11251: 75,45
+ 11252: 77,45
+ 11255: 38,79
+ 11442: 140,44
+ 11541: 38,112
+ 11590: 89,86
+ 11711: 114,150
+ 12127: 115,65
+ 12128: 115,68
+ 12129: 115,69
+ 12130: 116,69
+ 12131: 115,70
+ 12132: 116,73
+ 12133: 115,73
+ 12134: 115,74
+ 12203: 62,80
+ 12204: 60,81
+ 12205: 63,82
+ 12210: 59,83
+ 12211: 62,83
+ 13904: 92,54
+ 13905: 101,54
+ 14732: 129,134
+ 14733: 130,135
+ 14734: 130,137
+ 14735: 129,138
+ 14736: 132,132
+ 14737: 135,132
+ 14738: 136,134
+ 14739: 135,136
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 8044: 144,80
+ 8045: 144,81
+ 8046: 142,81
+ 8047: 140,80
+ 8048: 142,80
+ 8049: 140,82
+ 8050: 141,83
+ 8051: 143,83
+ 8066: 155,44
+ 8067: 156,44
+ 8068: 157,44
+ 8069: 157,43
+ 8070: 157,42
+ 8071: 156,42
+ 8072: 156,43
+ 8073: 155,43
+ 8074: 155,42
+ 8075: 158,43
+ 8076: 154,44
+ 8077: 156,42
+ 8078: 155,43
+ 8079: 157,43
+ 8080: 158,43
+ 8081: 159,42
+ 8082: 161,43
+ 8083: 159,44
+ 8084: 162,44
+ 8085: 163,44
+ 8086: 161,45
+ 8087: 159,46
+ 8088: 161,47
+ 8089: 163,46
+ 8090: 161,46
+ 8091: 160,47
+ 8092: 162,49
+ 8093: 162,50
+ 8094: 160,50
+ 8095: 163,48
+ 8096: 161,51
+ 8097: 162,52
+ 8098: 163,50
+ 8099: 160,52
+ 8148: 155,85
+ 8149: 155,87
+ 8152: 162,61
+ 8153: 161,62
+ 8154: 162,64
+ 8155: 160,65
+ 8156: 162,66
+ 8157: 161,64
+ 8161: 159,62
+ 8162: 158,61
+ 8163: 159,60
+ 8164: 158,59
+ 8165: 158,58
+ 8166: 159,57
+ 8167: 158,57
+ 8168: 157,55
+ 8169: 159,55
+ 8170: 157,54
+ 8171: 157,53
+ 8172: 158,51
+ 8173: 158,50
+ 8174: 157,49
+ 8175: 158,48
+ 8176: 158,47
+ 8178: 155,47
+ 8179: 155,46
+ 8180: 153,47
+ 8181: 153,45
+ 8182: 152,43
+ 8183: 150,45
+ 8184: 148,45
+ 8185: 147,44
+ 8186: 148,44
+ 8187: 147,43
+ 8188: 145,44
+ 8189: 145,44
+ 8190: 145,46
+ 8191: 147,46
+ 8192: 147,46
+ 8193: 149,43
+ 8194: 151,43
+ 8195: 153,43
+ 8225: 140,93
+ 8226: 140,93
+ 8227: 140,91
+ 8228: 140,88
+ 8229: 140,86
+ 8231: 132,86
+ 8233: 137,86
+ 8234: 138,85
+ 8235: 139,86
+ 8236: 143,85
+ 8237: 145,85
+ 8238: 147,85
+ 8240: 152,85
+ 8241: 146,85
+ 8242: 147,84
+ 8243: 146,82
+ 8244: 146,80
+ 8245: 147,79
+ 8246: 147,78
+ 8247: 147,76
+ 8248: 147,75
+ 8249: 147,75
+ 8250: 148,74
+ 8251: 149,75
+ 8252: 146,75
+ 8253: 150,77
+ 8256: 154,76
+ 8257: 155,76
+ 8258: 156,75
+ 8259: 156,74
+ 8260: 156,73
+ 8261: 156,72
+ 8262: 156,70
+ 8263: 156,68
+ 8264: 156,66
+ 8265: 158,66
+ 8266: 158,66
+ 8267: 158,64
+ 8268: 158,62
+ 8269: 158,60
+ 8270: 158,58
+ 8271: 158,56
+ 8272: 158,55
+ 8274: 158,51
+ 10199: 77,156
+ 10200: 80,155
+ 10201: 54,149
+ 13512: 122,116
+ 13514: 127,107
+ 13822: 51,100
+ 13823: 48,102
+ 13824: 47,99
+ 13825: 53,102
+ 14635: 31,103
+ 14636: 30,104
+ 14637: 31,105
+ 14638: 31,104
+ - node:
+ cleanable: True
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: DirtHeavy
+ decals:
+ 10528: 165,144
+ 10529: 164,145
+ 10530: 165,145
+ 10531: 163,141
+ 10532: 163,145
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 4269: 35,114
+ 4270: 35,115
+ 4271: 33,116
+ 4272: 31,116
+ 4273: 31,112
+ 4274: 31,109
+ 4275: 33,110
+ 4276: 33,110
+ 4280: 33,112
+ 4281: 34,112
+ 4282: 34,112
+ 4283: 34,112
+ 10220: 53,154
+ 10221: 53,153
+ 10222: 53,153
+ 10223: 53,152
+ 10224: 53,151
+ 10225: 53,150
+ 10226: 53,150
+ 11574: 71,95
+ 11993: 139,110
+ 11994: 137,111
+ 14724: 129,132
+ 14725: 131,135
+ 14726: 131,138
+ 14727: 130,139
+ 14728: 128,139
+ 14729: 126,137
+ 14730: 126,133
+ 14731: 127,132
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 4257: 27,117
+ 4258: 32,116
+ 4259: 34,116
+ 4260: 35,113
+ 4261: 35,111
+ 4301: 32,117
+ 4302: 33,117
+ 4303: 35,117
+ 4304: 36,115
+ 4305: 36,114
+ 4306: 35,116
+ 4307: 35,116
+ 4308: 35,116
+ 4309: 35,116
+ 4310: 32,114
+ 7555: 92,18
+ 7556: 93,19
+ 7557: 94,18
+ 7558: 97,18
+ 7559: 96,20
+ 7560: 94,20
+ 7561: 93,21
+ 7562: 91,21
+ 7563: 90,19
+ 7564: 91,21
+ 7565: 90,22
+ 7566: 89,20
+ 7567: 90,19
+ 7568: 89,19
+ 7569: 87,20
+ 7570: 87,20
+ 7571: 88,21
+ 7572: 90,20
+ 7573: 90,19
+ 7574: 90,19
+ 7575: 90,23
+ 7576: 88,25
+ 7577: 89,27
+ 7578: 91,27
+ 7579: 94,25
+ 7580: 94,26
+ 7581: 94,29
+ 7582: 95,31
+ 7583: 95,32
+ 7584: 95,31
+ 7585: 94,31
+ 7586: 96,32
+ 7587: 97,31
+ 7588: 100,31
+ 7589: 101,32
+ 7590: 101,30
+ 7591: 103,32
+ 7592: 103,30
+ 7593: 105,31
+ 7594: 106,30
+ 7595: 104,29
+ 7596: 104,29
+ 7597: 104,27
+ 7598: 106,27
+ 7599: 106,27
+ 7600: 105,25
+ 7601: 104,24
+ 7602: 106,24
+ 7603: 104,25
+ 7604: 105,24
+ 7605: 106,23
+ 7606: 104,19
+ 7607: 104,18
+ 7608: 106,18
+ 7609: 108,19
+ 7610: 108,18
+ 7611: 106,18
+ 7612: 105,19
+ 7613: 113,18
+ 7614: 112,19
+ 7615: 113,19
+ 7616: 114,20
+ 7617: 113,18
+ 7618: 113,18
+ 7619: 113,17
+ 7620: 108,22
+ 7621: 108,23
+ 7622: 111,22
+ 7623: 112,22
+ 7624: 113,22
+ 7625: 112,24
+ 7626: 111,25
+ 7627: 112,26
+ 7628: 111,27
+ 7629: 112,29
+ 7630: 111,30
+ 7631: 111,31
+ 7632: 113,30
+ 7633: 114,30
+ 7634: 116,30
+ 7635: 117,31
+ 7636: 119,30
+ 7637: 117,29
+ 7638: 119,30
+ 7639: 119,31
+ 7640: 118,32
+ 7641: 119,33
+ 7642: 119,34
+ 7643: 119,35
+ 7644: 118,36
+ 7645: 119,38
+ 7646: 119,39
+ 7647: 118,38
+ 7648: 120,38
+ 7649: 120,41
+ 7650: 120,42
+ 7651: 115,40
+ 7652: 115,41
+ 7653: 114,41
+ 7654: 113,41
+ 7655: 114,38
+ 7656: 115,36
+ 7657: 114,35
+ 7658: 113,36
+ 7659: 126,35
+ 7660: 125,37
+ 7661: 124,37
+ 7662: 123,39
+ 7663: 124,31
+ 7664: 124,30
+ 7665: 123,28
+ 7666: 123,25
+ 7667: 123,25
+ 7668: 117,25
+ 7669: 117,23
+ 7670: 116,20
+ 7671: 118,19
+ 7672: 117,21
+ 7673: 116,21
+ 7674: 118,21
+ 7675: 118,22
+ 7676: 109,20
+ 8016: 161,79
+ 8017: 160,80
+ 8018: 156,78
+ 8019: 155,80
+ 8020: 158,80
+ 8021: 157,80
+ 8394: 95,106
+ 8397: 95,110
+ 8674: 118,168
+ 8675: 119,168
+ 8676: 119,167
+ 8677: 117,171
+ 8678: 119,170
+ 8679: 120,171
+ 8752: 94,171
+ 8753: 94,173
+ 8754: 92,172
+ 8755: 90,170
+ 8756: 92,168
+ 8757: 91,167
+ 8758: 90,168
+ 8759: 91,165
+ 8760: 89,164
+ 8761: 90,163
+ 8762: 90,165
+ 8763: 91,161
+ 8764: 88,161
+ 8765: 87,163
+ 8766: 84,161
+ 8767: 83,162
+ 8768: 81,161
+ 8769: 81,159
+ 8770: 78,161
+ 8771: 78,161
+ 8772: 80,159
+ 8773: 76,159
+ 8774: 75,162
+ 8775: 74,161
+ 8776: 74,160
+ 8778: 76,159
+ 8779: 77,158
+ 8780: 78,159
+ 8781: 80,158
+ 8782: 81,158
+ 8783: 76,162
+ 8896: 52,145
+ 8897: 53,146
+ 8898: 53,146
+ 8899: 53,147
+ 8900: 54,149
+ 8901: 52,149
+ 8902: 52,152
+ 8904: 55,151
+ 8905: 52,154
+ 8906: 55,154
+ 8907: 55,148
+ 8909: 52,150
+ 8910: 55,150
+ 8912: 58,147
+ 8913: 58,149
+ 8914: 59,151
+ 8915: 58,152
+ 8916: 57,151
+ 8917: 58,151
+ 8918: 58,148
+ 8920: 57,142
+ 8921: 57,140
+ 8922: 57,137
+ 8923: 57,136
+ 8924: 56,137
+ 8987: 52,129
+ 8988: 53,129
+ 8989: 55,128
+ 8990: 56,128
+ 8991: 57,128
+ 8992: 56,130
+ 8997: 52,132
+ 8998: 52,132
+ 8999: 53,133
+ 9000: 53,136
+ 9001: 54,136
+ 9002: 54,135
+ 9003: 54,138
+ 9004: 53,138
+ 9005: 53,140
+ 9006: 52,141
+ 9007: 54,142
+ 9008: 54,143
+ 9011: 52,140
+ 9012: 52,139
+ 9148: 38,122
+ 9163: 31,121
+ 9164: 32,122
+ 9165: 31,123
+ 9166: 33,120
+ 9167: 34,122
+ 9168: 34,120
+ 9169: 32,120
+ 9218: 24,112
+ 9392: 21,70
+ 9393: 20,71
+ 9394: 23,71
+ 9395: 22,72
+ 9396: 22,70
+ 9397: 25,68
+ 9398: 25,68
+ 9399: 28,73
+ 9400: 28,74
+ 9401: 27,76
+ 9403: 28,78
+ 9404: 27,78
+ 9405: 28,76
+ 9406: 29,75
+ 9407: 23,80
+ 9408: 22,82
+ 9409: 20,82
+ 9410: 19,83
+ 9411: 22,87
+ 9412: 22,86
+ 9413: 22,85
+ 9414: 23,82
+ 9415: 23,81
+ 9416: 22,80
+ 9417: 23,80
+ 9418: 26,84
+ 9419: 26,87
+ 9420: 26,88
+ 9421: 21,82
+ 9422: 21,83
+ 9423: 22,84
+ 9429: 25,96
+ 9430: 28,97
+ 9431: 27,96
+ 9432: 32,96
+ 9433: 33,97
+ 9434: 35,96
+ 9435: 36,97
+ 9436: 22,100
+ 9437: 22,102
+ 9438: 21,102
+ 9439: 20,105
+ 9440: 19,104
+ 9441: 18,100
+ 9442: 26,92
+ 9443: 30,83
+ 9444: 32,83
+ 9445: 33,83
+ 9446: 33,82
+ 9447: 34,84
+ 9448: 34,84
+ 9449: 36,79
+ 9450: 38,80
+ 9451: 40,79
+ 9452: 40,79
+ 9453: 42,78
+ 9454: 44,80
+ 9455: 47,78
+ 9456: 48,78
+ 9457: 51,78
+ 9458: 52,78
+ 10254: 64,122
+ 10255: 62,122
+ 10256: 61,124
+ 10257: 61,123
+ 10258: 59,128
+ 10259: 59,129
+ 10260: 60,130
+ 10261: 54,131
+ 10363: 103,166
+ 10364: 99,165
+ 10365: 98,166
+ 10366: 99,167
+ 10367: 98,169
+ 10368: 97,169
+ 10369: 97,170
+ 10370: 100,171
+ 10371: 96,165
+ 10372: 96,166
+ 10373: 95,165
+ 10375: 95,168
+ 10376: 95,169
+ 10563: 169,133
+ 10564: 167,134
+ 10565: 166,134
+ 10568: 167,134
+ 10569: 166,135
+ 10570: 165,136
+ 10571: 168,136
+ 10738: 103,35
+ 10739: 102,34
+ 10740: 98,36
+ 11263: 38,50
+ 11264: 34,51
+ 11265: 38,57
+ 11266: 34,59
+ 11267: 36,62
+ 11268: 43,49
+ 11269: 42,52
+ 11270: 44,54
+ 11271: 42,60
+ 11272: 43,63
+ 11273: 42,68
+ 11274: 44,70
+ 11275: 43,74
+ 11276: 48,69
+ 11277: 51,72
+ 11278: 53,69
+ 11280: 52,75
+ 11281: 49,49
+ 11282: 44,46
+ 11283: 49,41
+ 11284: 46,39
+ 11285: 49,37
+ 11286: 52,29
+ 11287: 56,23
+ 11288: 54,21
+ 11289: 52,23
+ 11290: 48,20
+ 11291: 45,22
+ 11292: 49,28
+ 11293: 57,55
+ 11294: 61,58
+ 11295: 51,59
+ 11296: 52,55
+ 11297: 48,51
+ 11298: 48,63
+ 11299: 54,65
+ 11301: 67,64
+ 11303: 67,59
+ 11309: 67,31
+ 11310: 67,25
+ 11311: 83,25
+ 11318: 81,64
+ 11320: 88,64
+ 11321: 88,66
+ 11322: 91,68
+ 11324: 94,69
+ 11325: 93,72
+ 11326: 93,76
+ 11327: 98,77
+ 11328: 101,76
+ 11329: 100,73
+ 11330: 104,73
+ 11331: 108,77
+ 11332: 112,76
+ 11333: 112,73
+ 11335: 108,72
+ 11337: 100,63
+ 11338: 101,62
+ 11339: 112,63
+ 11341: 112,77
+ 11342: 112,80
+ 11344: 110,87
+ 11345: 102,87
+ 11346: 100,85
+ 11347: 104,94
+ 11348: 95,96
+ 11349: 94,98
+ 11350: 95,101
+ 11351: 98,104
+ 11352: 101,99
+ 11357: 103,98
+ 11358: 120,97
+ 11359: 117,98
+ 11360: 120,101
+ 11361: 118,103
+ 11362: 122,100
+ 11363: 123,99
+ 11366: 113,113
+ 11367: 115,109
+ 11369: 111,113
+ 11370: 99,79
+ 11371: 120,77
+ 11372: 119,69
+ 11373: 119,66
+ 11374: 119,59
+ 11375: 119,55
+ 11376: 117,53
+ 11377: 112,54
+ 11378: 110,52
+ 11379: 105,51
+ 11387: 92,47
+ 11388: 95,48
+ 11389: 96,46
+ 11390: 92,40
+ 11391: 91,43
+ 11392: 98,40
+ 11393: 102,41
+ 11394: 102,47
+ 11395: 116,48
+ 11397: 122,47
+ 11398: 123,50
+ 11399: 129,48
+ 11400: 132,48
+ 11401: 127,52
+ 11402: 123,54
+ 11403: 126,56
+ 11404: 122,58
+ 11405: 123,60
+ 11406: 129,59
+ 11407: 130,57
+ 11408: 130,55
+ 11409: 133,54
+ 11410: 126,60
+ 11411: 127,64
+ 11412: 126,65
+ 11413: 127,69
+ 11414: 127,71
+ 11415: 126,72
+ 11416: 126,73
+ 11417: 127,66
+ 11418: 133,63
+ 11419: 131,69
+ 11420: 134,74
+ 11421: 138,67
+ 11422: 139,70
+ 11423: 145,69
+ 11424: 146,70
+ 11425: 147,68
+ 11426: 148,67
+ 11427: 148,62
+ 11428: 147,59
+ 11429: 148,58
+ 11430: 147,56
+ 11431: 142,57
+ 11432: 139,56
+ 11433: 140,53
+ 11434: 140,52
+ 11435: 136,55
+ 11436: 140,59
+ 11437: 138,61
+ 11438: 141,62
+ 11439: 144,64
+ 11443: 141,45
+ 11444: 140,48
+ 11445: 147,49
+ 11446: 150,50
+ 11447: 147,53
+ 11448: 153,50
+ 11450: 152,56
+ 11451: 154,61
+ 11452: 155,63
+ 11453: 152,63
+ 11454: 153,67
+ 11455: 151,71
+ 11456: 154,72
+ 11458: 135,78
+ 11459: 132,77
+ 11460: 128,78
+ 11461: 123,77
+ 11462: 128,82
+ 11463: 128,84
+ 11464: 128,87
+ 11465: 128,90
+ 11466: 129,91
+ 11467: 128,95
+ 11468: 128,95
+ 11469: 128,99
+ 11472: 128,106
+ 11475: 126,118
+ 11476: 123,118
+ 11477: 119,118
+ 11478: 114,118
+ 11480: 105,118
+ 11482: 96,118
+ 11483: 92,118
+ 11485: 88,114
+ 11487: 78,113
+ 11492: 60,113
+ 11493: 56,113
+ 11494: 56,111
+ 11495: 56,109
+ 11496: 56,106
+ 11497: 56,102
+ 11498: 56,98
+ 11499: 56,95
+ 11500: 56,92
+ 11501: 56,89
+ 11502: 56,86
+ 11503: 57,83
+ 11504: 56,80
+ 11505: 56,77
+ 11507: 56,71
+ 11508: 55,68
+ 11509: 50,80
+ 11510: 47,82
+ 11511: 50,83
+ 11512: 51,82
+ 11513: 52,89
+ 11514: 53,91
+ 11515: 51,91
+ 11516: 52,95
+ 11517: 50,96
+ 11518: 43,84
+ 11519: 42,88
+ 11520: 43,90
+ 11521: 37,88
+ 11522: 39,92
+ 11523: 44,97
+ 11524: 42,98
+ 11525: 43,102
+ 11526: 37,99
+ 11527: 34,100
+ 11528: 33,100
+ 11529: 25,101
+ 11530: 27,103
+ 11532: 50,102
+ 11534: 43,108
+ 11535: 42,106
+ 11536: 44,105
+ 11537: 39,111
+ 11538: 42,113
+ 11539: 44,111
+ 11540: 47,113
+ 11546: 50,105
+ 11548: 67,102
+ 11549: 66,95
+ 11550: 68,87
+ 11551: 69,88
+ 11552: 74,86
+ 11553: 62,84
+ 11555: 77,86
+ 11556: 81,88
+ 11557: 83,82
+ 11558: 81,83
+ 11559: 80,82
+ 11560: 69,80
+ 11561: 67,82
+ 11562: 68,83
+ 11563: 69,84
+ 11564: 83,91
+ 11565: 82,94
+ 11566: 84,94
+ 11567: 82,98
+ 11568: 82,102
+ 11569: 81,103
+ 11570: 77,98
+ 11571: 78,96
+ 11572: 73,95
+ 11573: 71,97
+ 11575: 76,99
+ 11576: 88,100
+ 11577: 86,102
+ 11578: 88,104
+ 11579: 86,107
+ 11580: 88,109
+ 11581: 88,108
+ 11582: 88,97
+ 11583: 89,91
+ 11584: 89,84
+ 11585: 90,84
+ 11586: 87,88
+ 11587: 90,88
+ 11588: 91,86
+ 11589: 86,85
+ 11594: 76,108
+ 11595: 81,107
+ 11596: 67,106
+ 11597: 66,108
+ 11598: 83,109
+ 11599: 70,118
+ 11600: 69,120
+ 11601: 73,123
+ 11602: 83,121
+ 11603: 81,122
+ 11604: 80,121
+ 11605: 78,123
+ 11606: 74,122
+ 11607: 73,121
+ 11610: 69,121
+ 11611: 69,118
+ 11612: 70,119
+ 11779: 108,80
+ 11780: 105,82
+ 11781: 107,84
+ 12024: 133,118
+ 12025: 139,118
+ 12026: 139,118
+ 12027: 142,118
+ 12028: 145,117
+ 12029: 150,118
+ 12030: 154,118
+ 12031: 157,117
+ 12032: 159,118
+ 12033: 159,117
+ 12034: 150,119
+ 12036: 149,123
+ 12037: 149,127
+ 12038: 150,128
+ 12039: 149,132
+ 12040: 145,131
+ 12043: 148,138
+ 12044: 146,138
+ 12045: 146,137
+ 12046: 151,138
+ 12051: 150,142
+ 12052: 141,136
+ 12053: 140,137
+ 12054: 140,140
+ 12055: 139,141
+ 12056: 145,147
+ 12057: 141,148
+ 12058: 140,149
+ 12059: 144,153
+ 12060: 144,150
+ 12061: 144,148
+ 12062: 147,152
+ 12063: 148,150
+ 12064: 148,149
+ 12065: 152,149
+ 12066: 151,152
+ 12067: 154,149
+ 12068: 156,148
+ 12069: 156,151
+ 12070: 155,152
+ 12071: 157,153
+ 12072: 149,155
+ 12199: 62,87
+ 12200: 60,85
+ 12201: 62,84
+ 12202: 63,86
+ 13912: 94,50
+ 13913: 99,52
+ 13914: 102,50
+ 13915: 105,51
+ 14557: 127,114
+ 14558: 129,110
+ 14559: 133,107
+ 14560: 133,105
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 8052: 141,80
+ 8053: 140,81
+ 8054: 143,80
+ 8055: 144,83
+ 8056: 140,83
+ 8057: 140,82
+ 8058: 144,82
+ 8059: 145,80
+ 8104: 160,52
+ 8105: 163,51
+ 8106: 161,48
+ 8107: 161,47
+ 8108: 161,46
+ 8109: 162,46
+ 8110: 161,42
+ 8111: 159,44
+ 8112: 159,43
+ 8113: 161,44
+ 8114: 156,43
+ 8115: 156,42
+ 8275: 146,44
+ 8276: 145,45
+ 8277: 144,45
+ 8278: 149,45
+ 8279: 150,44
+ 8280: 153,44
+ 8281: 151,45
+ 8282: 149,45
+ 8283: 148,45
+ 8284: 155,47
+ 8286: 157,46
+ 8287: 158,46
+ 8288: 160,46
+ 8289: 163,55
+ 8291: 157,57
+ 8292: 157,58
+ 8293: 159,59
+ 8295: 159,56
+ 8296: 159,56
+ 8297: 160,56
+ 8298: 160,56
+ 8299: 160,58
+ 8300: 162,58
+ 8301: 162,56
+ 8302: 162,55
+ 8303: 162,55
+ 8304: 163,58
+ 13470: 63,112
+ 13471: 65,113
+ 13472: 68,113
+ 13473: 72,112
+ 13474: 76,113
+ 13475: 79,112
+ 13476: 80,114
+ 13477: 89,112
+ 13478: 88,115
+ 13479: 89,116
+ 13480: 88,118
+ 13481: 90,119
+ 13482: 93,117
+ 13483: 99,117
+ 13484: 101,120
+ 13485: 104,118
+ 13486: 113,117
+ 13487: 117,119
+ 13488: 123,117
+ 13489: 125,119
+ 13490: 131,117
+ 13491: 132,119
+ 13492: 139,117
+ 13493: 145,119
+ 13494: 148,119
+ 13495: 159,119
+ 13496: 148,122
+ 13497: 148,131
+ 13498: 149,136
+ 13501: 160,139
+ 13502: 145,143
+ 13503: 141,147
+ 13504: 154,149
+ 13505: 139,151
+ 13515: 129,103
+ 13516: 127,99
+ 13517: 132,96
+ 13518: 129,102
+ 13519: 129,106
+ 13520: 129,90
+ 13521: 127,86
+ 13522: 127,83
+ 13523: 129,80
+ 13524: 128,76
+ 13525: 134,76
+ 13526: 136,76
+ 13527: 123,76
+ 13528: 118,78
+ 13529: 120,74
+ 13530: 120,71
+ 13532: 117,66
+ 13533: 118,64
+ 13534: 120,63
+ 13535: 120,68
+ 13536: 120,59
+ 13537: 118,60
+ 13538: 120,55
+ 13539: 114,53
+ 13540: 112,55
+ 13541: 104,50
+ 13553: 81,63
+ 13554: 78,65
+ 13555: 76,64
+ 13556: 75,65
+ 13557: 74,63
+ 13558: 84,65
+ 13559: 85,65
+ 13560: 89,64
+ 13561: 89,63
+ 13562: 92,63
+ 13563: 94,66
+ 13564: 91,69
+ 13565: 88,68
+ 13566: 94,71
+ 13567: 92,74
+ 13568: 93,75
+ 13569: 94,77
+ 13570: 99,74
+ 13571: 99,76
+ 13572: 98,81
+ 13573: 99,83
+ 13574: 100,85
+ 13575: 101,88
+ 13576: 103,87
+ 13577: 106,88
+ 13578: 109,87
+ 13579: 110,86
+ 13580: 113,86
+ 13581: 113,84
+ 13582: 112,82
+ 13583: 113,78
+ 13584: 114,82
+ 13585: 114,85
+ 13586: 66,27
+ 13587: 68,30
+ 13588: 66,32
+ 13589: 67,37
+ 13590: 66,39
+ 13591: 69,42
+ 13592: 70,41
+ 13593: 72,43
+ 13594: 76,43
+ 13595: 78,41
+ 13596: 80,43
+ 13598: 82,41
+ 13599: 83,41
+ 13600: 84,40
+ 13601: 83,37
+ 13602: 84,35
+ 13603: 84,32
+ 13604: 82,31
+ 13605: 83,27
+ 13606: 84,26
+ 13607: 82,25
+ 13609: 67,50
+ 13612: 60,63
+ 13613: 54,65
+ 13614: 52,66
+ 13615: 53,63
+ 13616: 55,72
+ 13617: 57,76
+ 13618: 58,80
+ 13619: 55,82
+ 13620: 55,86
+ 13621: 57,89
+ 13622: 57,87
+ 13623: 55,91
+ 13624: 53,90
+ 13625: 55,95
+ 13626: 57,95
+ 13627: 55,98
+ 13628: 57,100
+ 13629: 57,104
+ 13630: 56,104
+ 13631: 55,107
+ 13632: 55,105
+ 13633: 57,110
+ 13634: 55,111
+ 13635: 57,114
+ 13636: 59,114
+ 13637: 64,112
+ 13638: 64,114
+ 13639: 71,114
+ 13640: 71,112
+ 13836: 49,99
+ 13837: 49,101
+ 13838: 51,102
+ 13839: 53,103
+ 13840: 53,99
+ 13841: 47,102
+ 14639: 30,103
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 8010: 156,79
+ 8011: 157,78
+ 8012: 158,79
+ 8670: 117,167
+ 8671: 120,168
+ 8672: 117,170
+ 8673: 118,171
+ 11440: 140,55
+ 11441: 139,45
+ 11542: 38,111
+ 11543: 39,112
+ 11544: 38,113
+ 11545: 48,111
+ 11591: 91,84
+ 11592: 91,87
+ 11593: 86,85
+ 11613: 89,122
+ 11615: 89,123
+ 11616: 93,128
+ 11617: 95,132
+ 11618: 94,134
+ 11619: 94,141
+ 11620: 95,140
+ 11621: 93,139
+ 11622: 95,136
+ 11623: 95,143
+ 11624: 94,146
+ 11625: 95,147
+ 11626: 93,150
+ 11627: 95,150
+ 11628: 94,154
+ 11629: 96,156
+ 11630: 98,155
+ 11631: 101,155
+ 11632: 100,154
+ 11633: 104,155
+ 11634: 106,155
+ 11635: 105,154
+ 11636: 109,155
+ 11637: 110,154
+ 11638: 112,155
+ 11639: 112,156
+ 11640: 109,156
+ 11641: 101,158
+ 11642: 97,160
+ 11643: 114,154
+ 11644: 117,155
+ 11645: 119,154
+ 11646: 117,154
+ 11647: 120,155
+ 11648: 120,156
+ 11649: 118,158
+ 11650: 115,160
+ 11651: 121,153
+ 11652: 123,154
+ 11653: 122,151
+ 11654: 123,148
+ 11655: 121,147
+ 11656: 122,146
+ 11657: 123,144
+ 11658: 122,141
+ 11659: 121,141
+ 11660: 122,139
+ 11661: 122,138
+ 11662: 122,136
+ 11663: 123,136
+ 11664: 122,137
+ 11665: 122,134
+ 11666: 122,132
+ 11667: 121,131
+ 11668: 121,131
+ 11669: 123,130
+ 11670: 121,129
+ 11671: 122,127
+ 11672: 122,126
+ 11673: 123,123
+ 11674: 121,123
+ 11675: 119,124
+ 11676: 116,123
+ 11677: 127,121
+ 11678: 129,124
+ 11679: 127,125
+ 11680: 125,126
+ 11681: 128,129
+ 11682: 132,125
+ 11683: 135,127
+ 11684: 137,125
+ 11685: 137,127
+ 11686: 135,131
+ 11688: 127,135
+ 11689: 127,136
+ 11690: 126,138
+ 11691: 126,131
+ 11692: 128,132
+ 11693: 131,133
+ 11696: 129,140
+ 11697: 119,134
+ 11698: 119,137
+ 11699: 118,139
+ 11700: 119,140
+ 11701: 112,148
+ 11702: 112,150
+ 11703: 110,151
+ 11704: 106,149
+ 11705: 104,151
+ 11706: 107,152
+ 11707: 118,151
+ 11708: 119,150
+ 11709: 115,150
+ 11710: 114,151
+ 11719: 89,139
+ 11720: 88,142
+ 11721: 85,136
+ 11722: 82,137
+ 11723: 80,139
+ 11724: 83,141
+ 11725: 83,137
+ 11726: 88,144
+ 11727: 87,147
+ 11728: 88,149
+ 11729: 88,152
+ 11730: 86,153
+ 11731: 86,152
+ 11732: 83,151
+ 11733: 82,152
+ 11734: 81,153
+ 11735: 77,151
+ 11736: 74,152
+ 11737: 73,151
+ 11738: 76,149
+ 11739: 73,146
+ 11740: 72,144
+ 11741: 72,142
+ 11742: 75,142
+ 11743: 73,138
+ 11744: 70,139
+ 11745: 72,137
+ 11746: 74,135
+ 11747: 73,133
+ 11748: 74,131
+ 11749: 76,132
+ 11750: 73,134
+ 11751: 74,132
+ 11752: 75,130
+ 11753: 73,128
+ 11754: 76,126
+ 11755: 77,125
+ 11756: 78,126
+ 11757: 82,125
+ 11758: 84,126
+ 11760: 87,125
+ 11761: 87,127
+ 11762: 89,128
+ 11763: 88,129
+ 11764: 88,133
+ 11765: 88,136
+ 11766: 88,135
+ 11767: 84,116
+ 11768: 80,118
+ 11769: 83,119
+ 11770: 84,118
+ 11771: 81,116
+ 11772: 103,124
+ 11773: 113,124
+ 11774: 112,123
+ 11776: 134,122
+ 11777: 138,121
+ 11778: 137,122
+ 11960: 157,107
+ 11961: 155,105
+ 11962: 156,109
+ 11963: 154,110
+ 11964: 150,107
+ 11965: 155,104
+ 11966: 149,104
+ 11967: 154,105
+ 11968: 149,108
+ 11969: 151,110
+ 11970: 149,111
+ 11971: 144,112
+ 11972: 146,112
+ 11973: 146,111
+ 11974: 146,110
+ 11975: 147,110
+ 11976: 147,103
+ 11977: 146,99
+ 11978: 142,100
+ 11979: 140,98
+ 11980: 138,96
+ 11981: 132,97
+ 11982: 134,100
+ 11983: 134,97
+ 11984: 132,103
+ 11985: 132,107
+ 11986: 135,106
+ 11989: 140,109
+ 11990: 138,109
+ 11991: 136,113
+ 11992: 138,113
+ 11995: 143,93
+ 11996: 142,94
+ 11997: 144,90
+ 11998: 142,87
+ 11999: 151,90
+ 12000: 148,90
+ 12001: 150,93
+ 12002: 152,90
+ 12003: 151,88
+ 12004: 152,92
+ 12005: 149,91
+ 12006: 147,93
+ 12007: 150,95
+ 12008: 151,94
+ 12009: 147,91
+ 12010: 147,89
+ 12011: 150,89
+ 12012: 148,88
+ 12013: 152,89
+ 12014: 154,90
+ 12015: 155,90
+ 12016: 155,91
+ 12017: 155,97
+ 12018: 157,99
+ 12019: 158,97
+ 12020: 151,98
+ 12021: 150,100
+ 12197: 63,85
+ 12198: 62,81
+ 14556: 129,113
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 8100: 160,48
+ 8101: 163,45
+ 8102: 160,43
+ 8103: 163,52
+ 8150: 155,86
+ 8151: 161,61
+ 12193: 61,80
+ 12194: 63,81
+ 12195: 61,82
+ 12196: 59,85
+ 13826: 48,99
+ 13827: 47,100
+ 13828: 46,101
+ 13829: 49,102
+ 13830: 51,100
+ 13831: 52,101
+ 13832: 53,100
+ 13833: 48,103
+ 13834: 52,103
+ 13835: 51,99
+ - node:
+ cleanable: True
+ color: '#C6FF91FF'
+ id: Donk
+ decals:
+ 8816: 90,164
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: Donk
+ decals:
+ 7764: 124.70336,35.87109
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBROne
+ decals:
+ 284: 36,56
+ 1902: 75,110
+ 2965: 38,117
+ 4789: 106.97817,93.89426
+ 4792: 111.87399,91.08867
+ 4806: 98.747986,98.95909
+ 5501: 82.42923,67.12222
+ 9028: 45.681576,122.01579
+ 9029: 48.862133,122.18941
+ 9030: 49.598244,123.07135
+ 9031: 48.674633,123.03663
+ 9059: 48.506878,125.518265
+ 10109: 135.98132,81.357765
+ 10110: 136.05635,82.70912
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBRThree
+ decals:
+ 1903: 78,110
+ 2974: 39,116
+ 4808: 96.60833,100.246124
+ 9045: 47.855186,123.772736
+ 9048: 48.744156,123.75056
+ 9058: 47.709854,125.94188
+ 10104: 130.91786,82.62696
+ 10113: 137.92682,82.70197
+ - node:
+ color: '#FFFFFFFF'
+ id: FlowersBRTwo
+ decals:
+ 2975: 39,96
+ 4790: 111.95039,93.519226
+ 5502: 84.04367,67.87236
+ 6324: 108.91639,120.972305
+ 9057: 46.897354,125.93494
+ 13762: 64.065704,59.840702
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr1
+ decals:
+ 1900: 69,110
+ 4788: 107.97122,92.07481
+ 4791: 113.04067,94.012276
+ 4805: 97.21556,101.519264
+ 4813: 97.83664,98.84797
+ 4820: 95.88109,101.80301
+ 5495: 79.07805,67.97021
+ 5496: 79.37158,67.13037
+ 9049: 49.89693,122.0282
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr2
+ decals:
+ 290: 36,59
+ 1901: 72,110
+ 4811: 97.39218,100.49612
+ 4814: 99.079025,99.89848
+ 5497: 80.496796,67.77452
+ 5498: 81.44263,67.09776
+ 10100: 131.83923,79.97959
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersbr3
+ decals:
+ 2971: 48,116
+ 4803: 96.28503,98.172035
+ 4804: 99.02111,101.528534
+ 4817: 95.86561,98.9874
+ 5499: 82.14385,67.91313
+ 5500: 83.42399,67.073296
+ 9060: 49.2291,125.21966
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv1
+ decals:
+ 1904: 79,110
+ 2972: 39,117
+ 2973: 47,116
+ 4778: 107.94343,90.26925
+ 4779: 107.02677,91.64426
+ 4780: 107.20039,93.352585
+ 4781: 112.65178,93.32478
+ 4782: 112.01983,92.269226
+ 4783: 112.74899,90.67895
+ 4801: 98.45632,98.13964
+ 4802: 96.53037,101.88963
+ 4816: 97.414986,97.91332
+ 4819: 99.09652,102.15419
+ 5503: 79.02097,67.31791
+ 5504: 80.89633,67.790825
+ 5505: 83.644135,67.1956
+ 9052: 48.557076,124.4657
+ 9064: 48.520767,125.92799
+ 10108: 135.69595,80.37932
+ 13760: 63.99279,58.037365
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv2
+ decals:
+ 289: 36,57
+ 1905: 74,110
+ 4809: 98.33864,100.23222
+ 5506: 82.99184,67.87236
+ 5507: 80.23588,67.073296
+ 9032: 46.632965,122.13385
+ 9033: 45.473244,122.79357
+ 9034: 46.313522,123.34913
+ 9046: 45.987133,124.960236
+ 9053: 47.862633,124.63237
+ 9063: 49.333267,125.9766
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowerspv3
+ decals:
+ 283: 36,55
+ 1906: 70,110
+ 2968: 48,117
+ 2977: 40,97
+ 4810: 96.725525,99.4313
+ 6323: 107.874725,121.02095
+ 9047: 45.667686,124.05052
+ 9054: 46.786243,125.146255
+ 9062: 50.006878,125.57382
+ 10102: 131.83109,80.955444
+ 10107: 134.35873,81.28438
+ 10112: 138.01651,81.84583
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy1
+ decals:
+ 282: 36,54
+ 1907: 71,110
+ 2964: 39,97
+ 2969: 38,116
+ 2970: 47,117
+ 4787: 112.01982,90.019226
+ 4800: 98.19241,101.03779
+ 4812: 97.54034,99.60722
+ 4815: 98.25449,99.56764
+ 5508: 79.78742,67.8479
+ 5514: 83.317986,67.91313
+ 6322: 106.92333,121.0001
+ 9035: 46.188522,122.65468
+ 9036: 44.95241,123.95329
+ 9037: 45.45241,123.48107
+ 9038: 46.271854,124.14079
+ 9050: 49.980267,123.930984
+ 9051: 49.306656,124.47959
+ 9055: 47.675133,125.13931
+ 9061: 50.07632,124.84466
+ 9065: 50.006878,126.00438
+ 10101: 131.10541,80.640045
+ 10106: 135.02734,80.827774
+ 13761: 64.076126,58.923397
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy2
+ decals:
+ 1908: 73,110
+ 5511: 81.85847,67.048836
+ 5512: 83.97844,67.03253
+ 10103: 131.35,81.60774
+ 10111: 137.1522,82.579666
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy3
+ decals:
+ 291: 36,58
+ 1909: 76,110
+ 4807: 96.38148,101.00075
+ 5510: 81.56493,67.78267
+ 9044: 47.084354,124.272736
+ 10105: 134.23643,80.43639
+ 13763: 64.02405,60.841396
+ - node:
+ color: '#FFFFFFFF'
+ id: Flowersy4
+ decals:
+ 288: 36,60
+ 1910: 77,110
+ 2976: 40,96
+ 4784: 107.8601,91.19286
+ 4785: 107.68651,93.7762
+ 4786: 112.915665,92.53311
+ 4798: 97.04428,98.63037
+ 4799: 95.826675,100.05166
+ 4818: 98.095345,101.9439
+ 4821: 99.15846,98.27523
+ 4822: 99.06701,100.728935
+ 5509: 80.822945,67.01622
+ 5513: 82.836914,67.00807
+ 9039: 47.369076,122.09218
+ 9040: 46.95241,122.98107
+ 9041: 48.13991,122.057465
+ 9042: 47.848244,122.994965
+ 9043: 44.95241,122.057465
+ 9056: 46.008465,125.82382
+ 10114: 136.71825,82.96979
+ - node:
+ color: '#334E6DC8'
+ id: FullTileOverlayGreyscale
+ decals:
+ 119: 40,60
+ 120: 40,56
+ 130: 32,52
+ 131: 32,56
+ 132: 32,60
+ 133: 32,64
+ 134: 40,64
+ 135: 40,48
+ 136: 36,48
+ 182: 40,52
+ 184: 46,56
+ 185: 46,60
+ 216: 49,57
+ 218: 51,56
+ 239: 50,53
+ 268: 60,59
+ 401: 50,17
+ 402: 44,18
+ 403: 44,30
+ 404: 50,31
+ 446: 54,22
+ 447: 54,23
+ 448: 54,25
+ 449: 54,26
+ 605: 32,59
+ 606: 32,58
+ 607: 32,57
+ 2458: 61,60
+ 11230: 62,59
+ 11231: 62,58
+ - node:
+ color: '#3EB38896'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1336: 75,115
+ 1337: 76,115
+ - node:
+ color: '#52B4E996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1221: 72,116
+ 1671: 76,102
+ 1672: 76,103
+ 1673: 76,104
+ 1674: 76,105
+ 1675: 77,105
+ 1855: 92,91
+ 2489: 40,94
+ 2490: 40,86
+ 5009: 109,80
+ 6566: 116,49
+ 6567: 116,48
+ 6568: 115,49
+ 6569: 117,49
+ 6570: 116,50
+ 9598: 84,116
+ 9599: 84,117
+ 9600: 84,118
+ 10646: 91,43
+ 10650: 90,42
+ 10651: 90,43
+ 14156: 124,62
+ 14336: 91,42
+ - node:
+ color: '#79150096'
+ id: FullTileOverlayGreyscale
+ decals:
+ 5428: 77,78
+ 5429: 75,78
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 9991: 153,88
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: FullTileOverlayGreyscale
+ decals:
+ 14633: 114,97
+ 14634: 102,97
+ - node:
+ color: '#A4610696'
+ id: FullTileOverlayGreyscale
+ decals:
+ 2453: 137,102
+ 2454: 137,103
+ 14555: 130,112
+ - node:
+ color: '#D381C996'
+ id: FullTileOverlayGreyscale
+ decals:
+ 2550: 50,91
+ 2551: 50,92
+ 2830: 35,90
+ 2831: 36,90
+ - node:
+ color: '#D4D4D428'
+ id: FullTileOverlayGreyscale
+ decals:
+ 12137: 117,64
+ 12138: 117,65
+ 12139: 117,66
+ 12143: 54,77
+ 12145: 58,80
+ 12146: 58,81
+ 13732: 65,55
+ 13733: 64,55
+ 13734: 63,55
+ 13735: 63,56
+ 13736: 64,56
+ 13737: 65,56
+ 13897: 94,53
+ 13898: 95,53
+ - node:
+ zIndex: 1
+ color: '#D4D4D428'
+ id: FullTileOverlayGreyscale
+ decals:
+ 13506: 122,116
+ 13507: 121,116
+ 13508: 120,116
+ 13643: 54,105
+ 13644: 54,106
+ 13645: 54,107
+ - node:
+ color: '#D4D4D496'
+ id: FullTileOverlayGreyscale
+ decals:
+ 9601: 83,116
+ 9602: 83,117
+ 9603: 83,118
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: FullTileOverlayGreyscale
+ decals:
+ 14211: 95,107
+ - node:
+ color: '#DE3A3A96'
+ id: FullTileOverlayGreyscale
+ decals:
+ 741: 79,116
+ 742: 79,117
+ 743: 79,118
+ 744: 79,119
+ 1222: 73,116
+ 2491: 40,87
+ 2492: 40,93
+ 3114: 132,75
+ 3115: 133,75
+ 3116: 140,73
+ 3117: 140,74
+ 3118: 142,75
+ 3119: 143,75
+ 3398: 138,73
+ 3399: 138,74
+ 3401: 122,59
+ 3402: 123,59
+ 3466: 133,70
+ 3467: 132,70
+ 3468: 132,71
+ 3469: 133,71
+ 3470: 133,72
+ 3471: 132,72
+ 4459: 90,115
+ 5008: 103,84
+ 10807: 96,114
+ 10808: 96,115
+ 14179: 131,61
+ - node:
+ color: '#EFB34196'
+ id: FullTileOverlayGreyscale
+ decals:
+ 1334: 115,122
+ 1335: 116,122
+ 3888: 131,145
+ 9592: 81,116
+ 9593: 81,117
+ 9594: 81,118
+ 10647: 98,43
+ 10648: 99,42
+ 10649: 99,43
+ 14337: 98,42
+ - node:
+ color: '#FA750096'
+ id: FullTileOverlayGreyscale
+ decals:
+ 2455: 84,107
+ 2456: 84,108
+ 2457: 84,109
+ 4823: 89,101
+ 9595: 80,116
+ 9596: 80,117
+ 9597: 80,118
+ - node:
+ cleanable: True
+ color: '#00FFFFFF'
+ id: Gene
+ decals:
+ 7689: 123.48747,38.489807
+ - node:
+ cleanable: True
+ color: '#A020F0FF'
+ id: Gib
+ decals:
+ 7688: 115.60864,36.264915
+ - node:
+ cleanable: True
+ color: '#F98AFFFF'
+ id: Gib
+ decals:
+ 8817: 76,158
+ - node:
+ cleanable: True
+ zIndex: 2
+ color: '#FF17FFFF'
+ id: Gib
+ decals:
+ 10514: 163.70428,147.32538
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc1
+ decals:
+ 302: 36,55
+ 6319: 107.20111,121.02095
+ 6321: 107.86778,121.048744
+ 13767: 63.992798,61.11415
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc2
+ decals:
+ 303: 36,56
+ 10158: 134.54193,79.95234
+ 13769: 64.041405,59.071068
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc3
+ decals:
+ 304: 36,58
+ 10161: 132.1699,79.95929
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassc4
+ decals:
+ 305: 36,59
+ 6320: 108.48583,121.0001
+ 10157: 133.63916,81.10512
+ 10162: 137.78561,80.348175
+ 13768: 64.06224,57.945282
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd1
+ decals:
+ 295: 36,60
+ 306: 36.00832,54.568092
+ 1911: 69,110
+ 1917: 75,110
+ 2978: 39.145184,96.69549
+ 2983: 38.707684,116.40584
+ 2984: 47.546623,116.02042
+ 5515: 78.92041,66.999916
+ 10160: 133.68777,80.723175
+ 13764: 64.05529,58.37093
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd2
+ decals:
+ 296: 36,57
+ 307: 35.945816,55.58198
+ 1912: 70,110
+ 1918: 76,110
+ 2979: 39.4681,96.1434
+ 2980: 39.79102,96.63299
+ 2982: 38.60352,116.957924
+ 2985: 47.05704,116.55167
+ 4793: 107.0013,92.551636
+ 4794: 112.76057,91.63038
+ 5525: 81.473434,68.15638
+ 5526: 79.7926,68.14279
+ 5527: 83.37209,68.17541
+ 5528: 79.51537,67.61279
+ 9066: 44.965942,123.13428
+ 9067: 46.396496,122.09261
+ 9068: 50.035385,123.18289
+ 9069: 49.077053,124.09956
+ 9070: 46.264553,125.73845
+ 10134: 131.0322,81.292465
+ 10135: 130.93036,83.00738
+ 10136: 135.57816,80.05263
+ 10141: 136.34668,80.92606
+ 10142: 136.24945,79.99551
+ 10143: 138.10593,83.1022
+ 10144: 137.54575,82.361465
+ 10145: 135.52776,82.282814
+ 10152: 134.47888,82.957565
+ 10153: 133.93858,82.095634
+ 10154: 132.22758,80.551994
+ 10155: 131.06555,82.17104
+ 13765: 64.034454,59.507137
+ - node:
+ color: '#FFFFFFFF'
+ id: Grassd3
+ decals:
+ 297: 36,54
+ 299: 36,56
+ 308: 35.98748,56.53337
+ 1913: 71,110
+ 1919: 77,110
+ 2986: 47.671623,116.72875
+ 5516: 80.79033,68.152306
+ 5520: 78.93128,68.09795
+ 5521: 84.04639,68.11426
+ 5522: 83.12773,66.97273
+ 9071: 48.29978,125.914795
+ 9072: 49.619225,125.06064
+ 9073: 48.542835,122.39397
+ 9074: 45.890057,122.227295
+ 10146: 135.29628,81.48651
+ 13770: 64.0553,59.877186
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse1
+ decals:
+ 298: 36,55
+ 309: 36.008312,57.52643
+ 1914: 72,110
+ 1920: 78,110
+ 2981: 38.18685,116.37459
+ 4797: 113.01982,93.02621
+ 5523: 82.437386,68.04903
+ 6318: 107.99278,120.99859
+ 9075: 46.012268,124.254196
+ 9076: 47.588657,123.0528
+ 9077: 49.0956,125.650024
+ 9078: 49.915047,122.2403
+ 10140: 137.23557,81.3844
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse2
+ decals:
+ 301: 36,59
+ 310: 36.03609,58.550247
+ 1915: 73,110
+ 1921: 79,110
+ 4796: 112.98859,90.06787
+ 5517: 82.06775,66.92381
+ 5519: 80.24675,66.929245
+ 6317: 109.0275,121.02638
+ 10138: 137.1476,79.95847
+ 10139: 137.92075,80.79643
+ 10151: 134.24739,82.202934
+ 10156: 132.9586,81.37595
+ - node:
+ color: '#FFFFFFFF'
+ id: Grasse3
+ decals:
+ 300: 36,58
+ 311: 35.994423,59.536358
+ 1916: 74,110
+ 4795: 106.98856,93.93243
+ 5518: 84.04639,66.95643
+ 5524: 81.165405,67.46196
+ 6316: 106.999725,121.03333
+ 9079: 49.082237,122.004196
+ 9080: 50.012794,126.01114
+ 9081: 44.9755,124.004196
+ 9082: 45.913,125.92085
+ 9083: 47.308773,125.11696
+ 10137: 138.01334,79.98162
+ 10147: 135.21758,83.019714
+ 10149: 132.9679,82.756226
+ 10150: 133.78271,83.06178
+ 10159: 133.60443,79.96623
+ 13766: 64.013626,60.55995
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 10062: 132,94
+ 10063: 133,94
+ 10064: 134,94
+ 10065: 135,94
+ 10066: 136,94
+ 10080: 136,90
+ 10081: 135,90
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 149: 33,64
+ 151: 35,64
+ 152: 36,64
+ 153: 37,64
+ 154: 38,64
+ 155: 39,64
+ 227: 49,60
+ 228: 50,60
+ 237: 52,61
+ 254: 47,66
+ 255: 48,66
+ 256: 49,66
+ 263: 56,59
+ 264: 57,59
+ 265: 58,59
+ 266: 59,59
+ 345: 48,42
+ 346: 49,42
+ 347: 50,42
+ 366: 46,46
+ 367: 48,46
+ 438: 44,22
+ 439: 42,22
+ 496: 36,76
+ 5604: 44,46
+ 5605: 45,46
+ 6928: 134,153
+ 6929: 135,153
+ 11074: 49,71
+ 11075: 48,71
+ 11076: 47,71
+ 11085: 48,75
+ 11086: 47,75
+ - node:
+ color: '#3EB38896'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 761: 73,123
+ 762: 74,123
+ 763: 78,123
+ 764: 79,123
+ 765: 80,123
+ 766: 81,123
+ 767: 82,123
+ 768: 83,123
+ 769: 84,123
+ 771: 77,123
+ 772: 76,123
+ 773: 75,123
+ 799: 73,119
+ 800: 74,119
+ 801: 75,119
+ 802: 76,119
+ 14152: 70,123
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1371: 76,92
+ 1372: 77,92
+ 1373: 78,92
+ 1374: 73,92
+ 1375: 72,92
+ 1376: 71,92
+ 1386: 73,100
+ 1387: 76,100
+ 1389: 72,96
+ 1390: 73,96
+ 1391: 74,96
+ 1392: 75,96
+ 1393: 76,96
+ 1394: 77,96
+ 1516: 80,84
+ 1517: 81,84
+ 1647: 68,108
+ 1648: 69,108
+ 1649: 70,108
+ 1650: 71,108
+ 1651: 72,108
+ 1652: 73,108
+ 1653: 74,108
+ 1654: 75,108
+ 1655: 76,108
+ 1656: 77,108
+ 1657: 78,108
+ 1658: 80,108
+ 1659: 79,108
+ 1718: 67,84
+ 1719: 68,84
+ 1720: 69,84
+ 1790: 60,104
+ 1791: 61,104
+ 1792: 62,104
+ 1804: 61,110
+ 1805: 62,110
+ 1814: 67,88
+ 1815: 82,88
+ 1816: 80,88
+ 1817: 79,88
+ 1818: 77,88
+ 1819: 72,88
+ 1820: 70,88
+ 1821: 69,88
+ 3596: 123,65
+ 5654: 124,83
+ 5655: 123,83
+ 5661: 125,86
+ 6578: 115,51
+ 6579: 116,51
+ 6580: 119,51
+ 11020: 87,88
+ 11021: 88,88
+ 11022: 89,88
+ 11023: 90,88
+ 11796: 117,86
+ 11797: 118,86
+ 11798: 119,86
+ 11799: 120,86
+ 11806: 121,86
+ 14339: 91,41
+ - node:
+ color: '#79150096'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 5389: 69,76
+ 5392: 70,76
+ 5393: 71,76
+ 5394: 72,76
+ 5395: 73,76
+ 5400: 63,75
+ 5401: 64,75
+ 5440: 87,73
+ 5443: 87,76
+ 5448: 89,77
+ 5455: 82,71
+ 5456: 83,71
+ - node:
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 6765: 158,128
+ 6769: 156,123
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 9977: 147,96
+ 9978: 150,96
+ 10009: 149,90
+ - node:
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 2434: 143,91
+ - node:
+ color: '#979494FF'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 11848: 115,114
+ 11849: 114,114
+ 11850: 113,114
+ 11851: 112,114
+ 11852: 111,114
+ 11853: 110,114
+ 11854: 109,114
+ 11855: 108,114
+ 11856: 107,114
+ 11857: 106,114
+ 11858: 105,114
+ 11859: 104,114
+ 11860: 103,114
+ 11861: 102,114
+ 11862: 101,114
+ 11880: 96,103
+ 11881: 97,103
+ 11882: 98,103
+ 11883: 99,103
+ 11890: 99,93
+ 11913: 111,98
+ 11914: 110,98
+ 11915: 109,98
+ 11916: 105,98
+ 11917: 106,98
+ 11918: 107,98
+ 11919: 108,98
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 3597: 123,74
+ 5180: 107,99
+ 5181: 106,99
+ 5182: 105,99
+ 5183: 109,99
+ 5184: 110,99
+ 5185: 111,99
+ 5216: 94,104
+ 5217: 95,104
+ 5218: 96,104
+ 5219: 97,104
+ 5220: 98,104
+ 5242: 98,94
+ 5243: 100,94
+ 5279: 118,104
+ 5280: 119,104
+ 5281: 120,104
+ 5314: 100,64
+ 5315: 101,64
+ 5318: 112,64
+ 5319: 111,64
+ 7231: 89,28
+ 7232: 90,28
+ 10844: 123,101
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 10017: 144,100
+ 10018: 146,100
+ 10019: 147,100
+ 10020: 151,100
+ 10032: 156,100
+ 10033: 155,100
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 612: 38,48
+ 613: 39,48
+ 2077: 141,100
+ 2078: 142,100
+ 2092: 138,113
+ 2093: 139,113
+ 2156: 131,110
+ 2157: 132,110
+ 2158: 133,110
+ 2159: 134,110
+ 2172: 135,107
+ 2193: 144,106
+ 2452: 37,48
+ 9862: 156,111
+ 9863: 155,111
+ 9864: 154,111
+ 9865: 151,111
+ 9866: 150,111
+ 9885: 151,104
+ 9886: 152,104
+ 9921: 153,104
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 610: 34,49
+ 2515: 43,109
+ 2523: 32,101
+ 2524: 33,101
+ 2525: 34,101
+ 2526: 35,101
+ 2527: 36,101
+ 2532: 41,101
+ 2567: 48,97
+ 2568: 49,97
+ 2569: 50,97
+ 2570: 51,97
+ 2571: 52,97
+ 2572: 53,97
+ 2622: 31,117
+ 2623: 32,117
+ 2624: 33,117
+ 2625: 34,117
+ 2641: 40,111
+ 2642: 41,111
+ 2646: 44,111
+ 2647: 45,111
+ 2648: 46,111
+ 2661: 42,111
+ 2671: 39,108
+ 2672: 38,108
+ 2690: 25,105
+ 2692: 27,105
+ 2702: 25,101
+ 2703: 27,101
+ 2704: 26,103
+ 2705: 47,93
+ 2706: 48,93
+ 2741: 50,84
+ 2742: 51,84
+ 2743: 49,84
+ 2744: 47,84
+ 2745: 48,84
+ 2768: 39,84
+ 2781: 36,94
+ 2786: 39,94
+ 2787: 38,94
+ 2852: 39,114
+ 2853: 40,114
+ 2854: 46,114
+ 2855: 47,114
+ 2918: 46,108
+ 2919: 47,108
+ 2922: 51,107
+ 3024: 38,102
+ 3025: 39,102
+ 3601: 123,68
+ 9537: 47,103
+ 9538: 50,103
+ 13818: 48,103
+ 13819: 49,103
+ 13820: 51,103
+ 13821: 52,103
+ 14605: 26,105
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 14589: 61,91
+ 14590: 62,91
+ - node:
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 5725: 99,115
+ 5726: 100,115
+ 5727: 101,115
+ 5728: 105,115
+ 5729: 106,115
+ 5730: 107,115
+ 5731: 108,115
+ 5732: 109,115
+ 5733: 110,115
+ 5734: 111,115
+ 5735: 115,115
+ 5736: 116,115
+ 5737: 117,115
+ 6010: 58,65
+ 6011: 59,65
+ 6012: 60,65
+ 6013: 61,65
+ 6014: 62,65
+ 6015: 63,65
+ 6016: 65,65
+ 6017: 66,65
+ 6018: 67,65
+ 6019: 68,65
+ 6020: 69,65
+ 6021: 70,65
+ 6022: 71,65
+ 6195: 86,114
+ 6410: 130,78
+ 6411: 131,78
+ 6412: 132,78
+ 6413: 133,78
+ 6414: 136,78
+ 6415: 137,78
+ 6416: 138,78
+ 6417: 139,78
+ 6418: 140,78
+ 6419: 141,78
+ 6420: 142,78
+ 6421: 143,78
+ 6536: 112,55
+ 6537: 113,55
+ 6538: 114,55
+ 6539: 115,55
+ 6540: 116,55
+ 6541: 117,55
+ 6656: 101,52
+ 6657: 102,52
+ 6658: 103,52
+ 6659: 104,52
+ 6660: 105,52
+ 6695: 94,78
+ 6696: 95,78
+ 6803: 140,119
+ 6806: 146,119
+ 6809: 151,119
+ 6810: 153,119
+ 7109: 93,23
+ 7110: 92,23
+ 7111: 91,23
+ 7112: 90,23
+ 7115: 87,20
+ 7134: 95,32
+ 7135: 96,32
+ 7136: 97,32
+ 7137: 90,20
+ 7138: 93,20
+ 7139: 94,20
+ 7140: 96,20
+ 7157: 103,32
+ 7158: 104,32
+ 7159: 105,32
+ 7160: 107,20
+ 7189: 113,31
+ 7190: 114,31
+ 7191: 116,31
+ 7192: 117,31
+ 7797: 70,18
+ 7798: 71,18
+ 7799: 74,18
+ 7800: 75,18
+ 7801: 76,18
+ 7802: 78,18
+ 7803: 79,18
+ 7804: 80,18
+ 7805: 81,18
+ 7806: 85,20
+ 9624: 141,141
+ 13425: 92,78
+ 13889: 93,52
+ 13890: 94,52
+ 13891: 95,52
+ 13892: 96,52
+ 13893: 97,52
+ 13894: 98,52
+ 13895: 99,52
+ 13896: 100,52
+ 14323: 92,52
+ 14362: 107,52
+ 14363: 106,52
+ 14524: 111,55
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 3087: 131,66
+ 3088: 132,66
+ 3089: 133,66
+ 3104: 131,74
+ 3105: 134,74
+ 3129: 134,56
+ 3130: 133,56
+ 3131: 132,56
+ 3135: 129,60
+ 3136: 130,60
+ 3151: 143,60
+ 3152: 145,60
+ 3153: 144,60
+ 3226: 140,71
+ 3227: 141,71
+ 3229: 144,71
+ 3230: 145,71
+ 3263: 142,58
+ 3264: 143,58
+ 3265: 144,58
+ 3266: 145,58
+ 3267: 146,58
+ 3295: 136,56
+ 3306: 146,53
+ 3307: 147,53
+ 3308: 148,53
+ 3309: 149,53
+ 3329: 152,58
+ 3330: 153,58
+ 3331: 154,58
+ 3352: 141,49
+ 3369: 127,52
+ 3370: 128,52
+ 3371: 129,52
+ 3372: 130,52
+ 3373: 131,52
+ 3374: 132,52
+ 3375: 126,56
+ 3376: 125,56
+ 3377: 124,56
+ 3378: 123,56
+ 3403: 138,71
+ 3415: 155,64
+ 3416: 154,64
+ 3417: 153,64
+ 3418: 152,64
+ 3443: 152,74
+ 3444: 153,74
+ 3457: 142,67
+ 3458: 143,67
+ 3459: 144,67
+ 3464: 140,62
+ 3486: 146,49
+ 3487: 147,49
+ 3488: 148,49
+ 3958: 142,71
+ 3966: 148,72
+ 4399: 133,60
+ 4976: 109,78
+ 4977: 108,78
+ 4978: 107,78
+ 4979: 106,78
+ 4980: 105,78
+ 4981: 104,78
+ 4989: 103,78
+ 9649: 152,153
+ 9663: 156,153
+ 10635: 92,41
+ 10638: 94,42
+ 10639: 95,42
+ 10643: 97,41
+ 10680: 102,48
+ 10801: 93,115
+ 10802: 94,115
+ 10803: 95,115
+ 13848: 91,48
+ 13849: 92,48
+ 13850: 93,48
+ 13851: 94,48
+ 13852: 97,48
+ 13853: 98,48
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 10519: 154,149
+ 10520: 156,149
+ - node:
+ color: '#DE3A3ACE'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 14171: 151,69
+ 14172: 152,69
+ 14173: 153,69
+ 14174: 154,69
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 812: 91,123
+ 813: 92,123
+ 822: 96,125
+ 823: 97,125
+ 824: 98,125
+ 825: 99,125
+ 826: 100,125
+ 879: 94,156
+ 880: 95,156
+ 881: 96,156
+ 882: 97,156
+ 883: 98,156
+ 884: 100,156
+ 885: 101,156
+ 886: 102,156
+ 887: 103,156
+ 888: 104,156
+ 889: 106,156
+ 890: 107,156
+ 891: 108,156
+ 892: 109,156
+ 893: 110,156
+ 894: 111,156
+ 895: 112,156
+ 896: 113,156
+ 897: 114,156
+ 898: 115,156
+ 899: 116,156
+ 900: 118,156
+ 901: 119,156
+ 902: 120,156
+ 903: 121,156
+ 904: 122,156
+ 986: 120,125
+ 987: 119,125
+ 988: 118,125
+ 989: 117,125
+ 990: 116,125
+ 1036: 107,152
+ 1037: 106,152
+ 1038: 108,152
+ 1039: 109,152
+ 1040: 110,152
+ 1055: 115,152
+ 1056: 116,152
+ 1070: 127,129
+ 1071: 126,129
+ 1082: 134,129
+ 1083: 133,129
+ 1084: 132,129
+ 1093: 136,129
+ 1108: 126,140
+ 1109: 127,140
+ 1110: 129,140
+ 1111: 130,140
+ 1112: 131,140
+ 1171: 111,162
+ 1172: 110,162
+ 1173: 109,162
+ 1174: 108,162
+ 1175: 107,162
+ 1176: 106,162
+ 1177: 105,162
+ 1192: 116,162
+ 1193: 117,162
+ 1194: 118,162
+ 3600: 123,71
+ 3870: 126,146
+ 3871: 127,146
+ 3887: 131,146
+ 6282: 114,121
+ 6290: 101,121
+ 6291: 102,121
+ 6295: 104,125
+ 6296: 105,125
+ 6297: 106,125
+ 6298: 107,125
+ 6299: 108,125
+ 6300: 109,125
+ 6301: 110,125
+ 6302: 111,125
+ 6303: 112,125
+ 6749: 92,61
+ 6750: 93,61
+ 7058: 145,134
+ 7212: 117,27
+ 7213: 118,27
+ 7214: 119,27
+ 7229: 117,23
+ 7230: 118,23
+ 9579: 92,140
+ 11117: 89,61
+ 11118: 90,61
+ 14044: 132,123
+ 14045: 133,123
+ 14285: 87,61
+ 14286: 88,61
+ 14338: 98,41
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 10179: 97,162
+ 10189: 101,162
+ 14708: 129,133
+ 14709: 128,133
+ 14715: 128,137
+ - node:
+ color: '#FA750096'
+ id: HalfTileOverlayGreyscale
+ decals:
+ 1606: 86,110
+ 1607: 87,110
+ 1608: 88,110
+ 1624: 87,109
+ 1860: 86,104
+ 1861: 88,104
+ 14135: 87,97
+ 14136: 88,97
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 10058: 133,88
+ 10059: 132,88
+ 10060: 135,88
+ 10061: 136,88
+ 10082: 136,92
+ 10083: 135,92
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 124: 34,49
+ 126: 37,48
+ 127: 38,48
+ 128: 39,48
+ 245: 49,48
+ 246: 48,48
+ 275: 60,54
+ 276: 59,54
+ 277: 58,54
+ 278: 56,54
+ 340: 47,35
+ 365: 46,44
+ 369: 48,44
+ 436: 42,26
+ 437: 44,26
+ 5598: 45,44
+ 5599: 44,44
+ 5600: 43,44
+ 6927: 135,150
+ 7090: 99,25
+ 7091: 100,25
+ 7092: 101,25
+ 7103: 98,23
+ 11057: 47,68
+ 11058: 48,68
+ 11059: 49,68
+ 11062: 51,68
+ 11063: 52,68
+ 11083: 48,73
+ 11084: 47,73
+ - node:
+ color: '#3EB38896'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 774: 71,121
+ 775: 72,121
+ 776: 73,121
+ 777: 74,121
+ 778: 75,121
+ 779: 76,121
+ 780: 77,121
+ 781: 78,121
+ 782: 79,121
+ 809: 74,116
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1384: 73,94
+ 1385: 76,94
+ 1397: 72,98
+ 1398: 73,98
+ 1399: 74,98
+ 1400: 75,98
+ 1401: 76,98
+ 1402: 77,98
+ 1467: 73,90
+ 1468: 74,90
+ 1469: 75,90
+ 1472: 76,90
+ 1480: 76,85
+ 1481: 75,85
+ 1482: 74,85
+ 1483: 73,85
+ 1486: 67,86
+ 1487: 68,86
+ 1488: 69,86
+ 1489: 70,86
+ 1490: 71,86
+ 1491: 78,86
+ 1492: 79,86
+ 1493: 80,86
+ 1494: 81,86
+ 1495: 82,86
+ 1513: 82,82
+ 1514: 83,82
+ 1581: 87,90
+ 1582: 88,90
+ 1639: 80,106
+ 1640: 79,106
+ 1641: 78,106
+ 1642: 71,106
+ 1643: 70,106
+ 1644: 69,106
+ 1645: 68,106
+ 1676: 77,102
+ 1678: 73,102
+ 1679: 72,102
+ 1812: 82,90
+ 1813: 67,90
+ 1836: 68,80
+ 1837: 67,80
+ 1838: 66,80
+ 4991: 103,86
+ 4992: 104,86
+ 4993: 105,86
+ 4994: 106,86
+ 4995: 107,86
+ 4996: 108,86
+ 4997: 109,86
+ 5668: 122,80
+ 6581: 114,47
+ 6582: 115,47
+ 6583: 116,47
+ 6584: 117,47
+ 6585: 119,47
+ 11027: 88,84
+ 11028: 89,84
+ 11029: 90,84
+ 11783: 120,80
+ 11784: 119,80
+ 11785: 118,80
+ 11786: 117,80
+ 11807: 121,80
+ 14114: 76,106
+ 14115: 77,106
+ 14139: 61,99
+ - node:
+ zIndex: 1
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 14210: 95,106
+ - node:
+ color: '#79150096'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 5380: 74,67
+ 5381: 75,67
+ 5382: 76,67
+ 5383: 69,72
+ 5384: 70,72
+ 5385: 71,72
+ 5406: 62,72
+ 5407: 63,72
+ 5408: 64,72
+ 5409: 65,72
+ 5436: 87,72
+ 5437: 87,75
+ 5457: 83,77
+ 5458: 82,77
+ - node:
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 6778: 156,121
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 9986: 147,88
+ 9987: 149,88
+ 9988: 148,88
+ 9989: 151,88
+ 10010: 149,94
+ - node:
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 2433: 143,87
+ - node:
+ color: '#979494FF'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 11820: 112,112
+ 11821: 111,112
+ 11822: 110,112
+ 11823: 109,112
+ 11824: 108,112
+ 11825: 107,112
+ 11826: 106,112
+ 11827: 105,112
+ 11828: 104,112
+ 11832: 115,107
+ 11833: 116,107
+ 11834: 100,107
+ 11835: 101,107
+ 11876: 96,97
+ 11877: 97,97
+ 11878: 98,97
+ 11879: 99,97
+ 11891: 99,91
+ 11920: 105,97
+ 11921: 106,97
+ 11922: 107,97
+ 11923: 108,97
+ 11924: 109,97
+ 11925: 110,97
+ 11926: 111,97
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 3059: 123,73
+ 5160: 105,96
+ 5161: 106,96
+ 5162: 108,96
+ 5163: 107,96
+ 5164: 109,96
+ 5166: 111,96
+ 5167: 112,96
+ 5200: 98,96
+ 5201: 97,96
+ 5202: 95,96
+ 5203: 96,96
+ 5204: 94,96
+ 5229: 100,96
+ 5230: 100,90
+ 5231: 99,90
+ 5232: 98,90
+ 5251: 114,106
+ 5252: 115,106
+ 5253: 102,106
+ 5254: 101,106
+ 5284: 116,96
+ 5285: 118,96
+ 5286: 119,96
+ 5287: 120,96
+ 5288: 121,96
+ 5309: 101,62
+ 5312: 111,62
+ 5740: 98,106
+ 5741: 118,106
+ 7236: 90,25
+ 11206: 105,71
+ 11207: 106,71
+ 11208: 107,71
+ 13436: 77,63
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 10013: 141,98
+ 10014: 142,98
+ 10015: 144,98
+ 10016: 147,98
+ 10021: 150,98
+ 10034: 155,96
+ 10035: 156,96
+ 10036: 157,96
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 2081: 139,96
+ 2087: 137,109
+ 2088: 138,109
+ 2166: 136,109
+ 2177: 131,96
+ 2178: 132,96
+ 2179: 133,96
+ 2192: 144,102
+ 2357: 151,102
+ 2359: 153,102
+ 2360: 154,102
+ 2361: 155,102
+ 2362: 156,102
+ 2425: 143,93
+ 9879: 153,109
+ 9880: 154,109
+ 9911: 152,109
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1769: 60,97
+ 1770: 61,97
+ 1771: 62,97
+ 2534: 30,99
+ 2535: 31,99
+ 2536: 32,99
+ 2537: 33,99
+ 2538: 35,99
+ 2539: 36,99
+ 2540: 37,99
+ 2543: 47,95
+ 2544: 48,95
+ 2545: 49,95
+ 2546: 50,95
+ 2564: 53,86
+ 2574: 47,99
+ 2575: 48,99
+ 2576: 49,99
+ 2577: 50,99
+ 2578: 51,99
+ 2579: 52,99
+ 2602: 38,99
+ 2603: 39,99
+ 2604: 40,99
+ 2605: 41,99
+ 2633: 32,107
+ 2634: 33,107
+ 2649: 40,113
+ 2650: 41,113
+ 2651: 42,113
+ 2652: 44,113
+ 2653: 45,113
+ 2654: 46,113
+ 2696: 25,99
+ 2697: 26,99
+ 2698: 27,99
+ 2699: 25,103
+ 2700: 27,103
+ 2701: 26,101
+ 2714: 47,86
+ 2715: 48,86
+ 2732: 47,80
+ 2733: 48,80
+ 2734: 49,80
+ 2735: 50,80
+ 2736: 51,80
+ 2737: 52,80
+ 2773: 38,82
+ 2774: 39,82
+ 2782: 36,86
+ 2784: 37,86
+ 2785: 39,86
+ 3020: 39,104
+ 3045: 123,67
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 14584: 62,89
+ 14585: 61,89
+ - node:
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 5743: 121,109
+ 5744: 122,109
+ 5745: 123,109
+ 5955: 67,24
+ 5956: 65,36
+ 5957: 83,24
+ 5958: 72,44
+ 5959: 65,36
+ 6165: 72,112
+ 6343: 123,117
+ 6344: 124,117
+ 6345: 125,117
+ 6346: 126,117
+ 6347: 130,117
+ 6348: 132,117
+ 6349: 133,117
+ 6350: 134,117
+ 6351: 135,117
+ 6428: 135,76
+ 6528: 117,76
+ 6548: 109,50
+ 6694: 95,76
+ 6817: 159,117
+ 6818: 158,117
+ 6819: 156,117
+ 6820: 155,117
+ 6821: 154,117
+ 6822: 153,117
+ 6823: 152,117
+ 6824: 151,117
+ 6825: 150,117
+ 6826: 149,117
+ 6827: 148,117
+ 6828: 147,117
+ 6829: 146,117
+ 6830: 145,117
+ 6831: 144,117
+ 6832: 143,117
+ 6833: 141,117
+ 6834: 140,117
+ 6835: 139,117
+ 6836: 138,117
+ 6837: 137,117
+ 6972: 141,136
+ 7012: 143,147
+ 7117: 87,18
+ 7118: 88,18
+ 7119: 90,18
+ 7120: 92,18
+ 7121: 94,18
+ 7122: 96,18
+ 7128: 97,30
+ 7141: 90,21
+ 7142: 96,21
+ 7144: 100,30
+ 7145: 101,30
+ 7146: 102,30
+ 7147: 103,30
+ 7149: 105,18
+ 7150: 106,18
+ 7151: 107,18
+ 7152: 108,18
+ 7182: 111,22
+ 7183: 112,22
+ 7207: 116,29
+ 7208: 117,29
+ 7209: 114,29
+ 7781: 73,16
+ 7782: 74,16
+ 7783: 75,16
+ 7784: 76,16
+ 7785: 77,16
+ 7786: 78,16
+ 7787: 79,16
+ 7788: 80,16
+ 7789: 83,16
+ 7790: 70,16
+ 7807: 85,18
+ 8327: 60,77
+ 8328: 61,77
+ 8546: 95,106
+ 10307: 140,140
+ 11018: 125,103
+ 12750: 111,50
+ 14263: 85,50
+ - node:
+ zIndex: 1
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 13509: 122,117
+ 13510: 121,117
+ 13511: 120,117
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 3083: 134,58
+ 3084: 133,62
+ 3085: 132,62
+ 3097: 133,68
+ 3098: 132,68
+ 3099: 131,68
+ 3124: 130,54
+ 3125: 131,54
+ 3126: 132,54
+ 3127: 134,54
+ 3128: 133,54
+ 3141: 127,58
+ 3142: 128,58
+ 3148: 143,62
+ 3150: 145,62
+ 3249: 140,69
+ 3250: 141,69
+ 3251: 142,69
+ 3252: 143,69
+ 3253: 144,69
+ 3254: 145,69
+ 3255: 146,69
+ 3279: 146,55
+ 3280: 148,55
+ 3281: 147,55
+ 3282: 144,55
+ 3283: 143,55
+ 3285: 141,51
+ 3293: 136,54
+ 3294: 137,54
+ 3299: 149,48
+ 3300: 148,48
+ 3301: 147,48
+ 3302: 146,48
+ 3322: 153,49
+ 3323: 154,49
+ 3353: 141,44
+ 3354: 139,44
+ 3355: 132,44
+ 3356: 131,44
+ 3357: 130,44
+ 3364: 127,47
+ 3365: 128,47
+ 3396: 125,54
+ 3423: 152,60
+ 3424: 153,60
+ 3425: 154,60
+ 3426: 152,66
+ 3427: 153,66
+ 3453: 142,64
+ 3454: 143,64
+ 3491: 148,52
+ 3494: 146,52
+ 3495: 147,52
+ 3961: 142,73
+ 3965: 144,62
+ 4400: 133,58
+ 4440: 92,112
+ 4458: 95,112
+ 10625: 98,39
+ 10626: 97,39
+ 10627: 95,39
+ 10628: 96,39
+ 10629: 94,39
+ 10630: 93,39
+ 10631: 92,39
+ 10632: 91,39
+ 10687: 91,45
+ 10688: 92,45
+ 10689: 97,45
+ 10690: 98,45
+ 10693: 94,44
+ 10694: 95,44
+ 10799: 94,112
+ 10806: 93,112
+ 13435: 138,76
+ 14175: 151,69
+ 14176: 153,69
+ 14177: 154,69
+ 14178: 152,69
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 10518: 156,151
+ 10523: 156,148
+ 10524: 155,148
+ 10525: 154,148
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 599: 35,64
+ 600: 36,64
+ 601: 37,64
+ 814: 91,121
+ 815: 92,121
+ 816: 93,121
+ 817: 94,121
+ 818: 95,121
+ 819: 96,121
+ 820: 97,121
+ 829: 99,123
+ 830: 100,123
+ 905: 96,154
+ 906: 97,154
+ 907: 102,154
+ 908: 103,154
+ 909: 104,154
+ 910: 106,154
+ 911: 107,154
+ 912: 108,154
+ 913: 109,154
+ 914: 110,154
+ 915: 112,154
+ 916: 113,154
+ 917: 114,154
+ 918: 115,154
+ 919: 116,154
+ 920: 119,154
+ 921: 120,154
+ 992: 119,121
+ 993: 120,121
+ 994: 121,121
+ 995: 122,121
+ 1048: 105,147
+ 1049: 111,147
+ 1072: 127,121
+ 1073: 126,121
+ 1121: 134,131
+ 1122: 133,131
+ 1123: 132,131
+ 1124: 131,131
+ 1125: 130,131
+ 1126: 129,131
+ 1127: 127,131
+ 1128: 126,131
+ 1164: 106,158
+ 1165: 107,158
+ 1166: 108,158
+ 1167: 109,158
+ 1168: 110,158
+ 1169: 111,158
+ 1170: 112,158
+ 1299: 117,123
+ 3051: 123,70
+ 3865: 126,142
+ 3866: 127,142
+ 3883: 131,144
+ 3949: 116,158
+ 3950: 118,158
+ 4409: 136,125
+ 4410: 135,125
+ 4411: 133,125
+ 4412: 132,125
+ 6757: 92,58
+ 6758: 93,58
+ 7052: 144,130
+ 7053: 145,130
+ 7215: 117,25
+ 7226: 117,19
+ 7227: 118,19
+ 7228: 119,19
+ 9578: 92,138
+ 13919: 116,25
+ 14048: 132,121
+ 14049: 133,121
+ 14050: 134,121
+ 14064: 116,150
+ 14278: 87,59
+ 14279: 88,59
+ 14280: 89,59
+ 14281: 90,59
+ 14399: 128,121
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 10175: 98,158
+ 10176: 97,158
+ 10186: 101,158
+ 10187: 100,158
+ 14704: 129,138
+ 14705: 128,138
+ 14712: 128,134
+ - node:
+ color: '#FA750096'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 1594: 88,96
+ 1626: 87,107
+ 1858: 86,106
+ 1859: 88,106
+ 1865: 87,99
+ - node:
+ color: '#FFFFFFFF'
+ id: HalfTileOverlayGreyscale180
+ decals:
+ 14105: 72,106
+ 14106: 73,106
+ 14108: 75,106
+ 14111: 74,106
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 10050: 131,90
+ 10051: 131,89
+ 10052: 131,92
+ 10053: 131,93
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 48: 42,52
+ 49: 42,53
+ 50: 42,54
+ 51: 42,55
+ 52: 42,57
+ 53: 42,58
+ 54: 42,59
+ 58: 42,56
+ 59: 42,60
+ 79: 42,67
+ 80: 42,68
+ 81: 42,69
+ 82: 42,70
+ 83: 42,71
+ 84: 42,72
+ 86: 42,74
+ 87: 42,75
+ 97: 42,76
+ 104: 42,64
+ 105: 42,66
+ 139: 32,53
+ 140: 32,54
+ 141: 32,55
+ 145: 32,61
+ 146: 32,62
+ 147: 32,63
+ 148: 33,50
+ 187: 46,54
+ 188: 46,55
+ 198: 49,55
+ 199: 49,56
+ 202: 52,55
+ 203: 52,56
+ 204: 52,57
+ 205: 52,58
+ 257: 46,63
+ 258: 46,64
+ 259: 46,65
+ 260: 55,57
+ 261: 55,56
+ 262: 55,55
+ 349: 46,39
+ 350: 46,40
+ 351: 46,36
+ 352: 46,37
+ 380: 47,29
+ 383: 48,25
+ 384: 48,24
+ 385: 48,23
+ 386: 48,22
+ 389: 48,26
+ 390: 52,20
+ 391: 52,21
+ 392: 52,22
+ 393: 52,23
+ 394: 52,25
+ 395: 52,26
+ 396: 52,27
+ 397: 52,28
+ 399: 51,30
+ 400: 51,18
+ 434: 45,23
+ 435: 45,25
+ 450: 47,19
+ 495: 32,72
+ 500: 34,75
+ 4022: 46,49
+ 4023: 46,50
+ 5601: 42,45
+ 6924: 133,151
+ 6925: 133,152
+ 7083: 101,21
+ 7084: 101,22
+ 7093: 98,26
+ 7101: 99,22
+ 7102: 99,21
+ 11071: 51,72
+ 11072: 51,73
+ 11113: 51,74
+ - node:
+ color: '#3EB38896'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 790: 68,120
+ 791: 68,119
+ 792: 68,118
+ 793: 68,117
+ 14151: 68,122
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1338: 65,91
+ 1339: 65,93
+ 1340: 65,95
+ 1341: 65,97
+ 1343: 65,100
+ 1344: 65,101
+ 1345: 65,102
+ 1346: 65,103
+ 1347: 65,98
+ 1348: 65,96
+ 1349: 65,94
+ 1350: 65,92
+ 1353: 81,101
+ 1354: 81,100
+ 1355: 81,99
+ 1356: 81,95
+ 1357: 81,94
+ 1358: 81,93
+ 1359: 81,92
+ 1369: 65,90
+ 1380: 70,90
+ 1381: 70,91
+ 1404: 78,97
+ 1511: 79,83
+ 1571: 67,93
+ 1572: 67,95
+ 1573: 67,97
+ 1574: 67,99
+ 1575: 67,101
+ 1576: 67,103
+ 1578: 86,91
+ 1579: 86,92
+ 1580: 86,93
+ 1662: 81,109
+ 1663: 81,110
+ 1666: 65,109
+ 1667: 65,110
+ 1668: 65,107
+ 1681: 71,103
+ 1698: 70,97
+ 1699: 81,97
+ 1725: 65,81
+ 1726: 65,82
+ 1727: 65,83
+ 1782: 59,100
+ 1783: 59,101
+ 1784: 59,102
+ 1785: 59,103
+ 3038: 126,64
+ 3039: 126,63
+ 4014: 83,96
+ 4016: 83,92
+ 4998: 110,79
+ 4999: 110,80
+ 5000: 110,81
+ 5001: 110,82
+ 5002: 110,83
+ 5003: 110,84
+ 5004: 110,85
+ 6572: 113,48
+ 6573: 113,49
+ 6574: 113,50
+ 11034: 86,85
+ 11035: 86,86
+ 11056: 83,94
+ 11787: 116,81
+ 11788: 116,82
+ 11789: 116,83
+ 11790: 116,84
+ 11791: 116,85
+ 12078: 60,109
+ 14157: 122,63
+ 14158: 122,64
+ 14162: 128,64
+ 14163: 128,65
+ - node:
+ color: '#79150096'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 5386: 68,73
+ 5387: 68,75
+ 5404: 61,73
+ 5405: 61,74
+ 5419: 73,69
+ 5420: 73,70
+ - node:
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 6766: 157,127
+ 6767: 157,125
+ 6768: 157,124
+ 6781: 154,126
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 9980: 146,94
+ 9981: 146,93
+ 9982: 146,92
+ 9983: 146,91
+ 9984: 146,90
+ 10012: 151,92
+ - node:
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 2429: 142,89
+ 2430: 142,88
+ - node:
+ color: '#979494FF'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 11809: 99,108
+ 11810: 99,109
+ 11811: 99,110
+ 11812: 99,111
+ 11813: 99,112
+ 11816: 114,108
+ 11817: 114,109
+ 11818: 114,110
+ 11866: 95,98
+ 11867: 95,99
+ 11868: 95,100
+ 11869: 95,101
+ 11870: 95,102
+ 11894: 98,92
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 3054: 126,72
+ 3055: 126,73
+ 5173: 112,100
+ 5174: 112,101
+ 5175: 112,102
+ 5177: 112,103
+ 5190: 103,99
+ 5191: 103,100
+ 5192: 103,101
+ 5193: 103,102
+ 5207: 94,98
+ 5208: 94,99
+ 5209: 94,102
+ 5233: 97,91
+ 5234: 97,92
+ 5299: 115,103
+ 5300: 115,102
+ 5301: 115,101
+ 5302: 115,100
+ 5303: 115,99
+ 7233: 88,27
+ 11212: 112,69
+ 14168: 128,72
+ 14169: 128,73
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 10037: 154,97
+ 10038: 154,98
+ 10039: 142,95
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 2000: 138,98
+ 2002: 138,100
+ 2003: 138,101
+ 2004: 138,104
+ 2005: 138,105
+ 2006: 138,106
+ 2016: 142,103
+ 2017: 142,104
+ 2018: 142,105
+ 2090: 136,111
+ 2091: 136,112
+ 2147: 131,99
+ 2148: 131,100
+ 2149: 131,101
+ 2150: 131,102
+ 2151: 131,103
+ 2152: 131,104
+ 2155: 131,107
+ 2352: 147,104
+ 2353: 147,103
+ 9853: 148,109
+ 9854: 148,108
+ 9855: 148,107
+ 9856: 147,105
+ 9889: 155,105
+ 9892: 155,108
+ 9922: 153,106
+ 9923: 152,108
+ 14544: 131,105
+ 14545: 131,106
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 9966: 150,106
+ 9967: 150,107
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1745: 59,92
+ 1746: 59,93
+ 1747: 59,94
+ 1748: 59,95
+ 1749: 59,97
+ 2518: 42,106
+ 2519: 42,105
+ 2520: 42,104
+ 2521: 42,103
+ 2522: 42,102
+ 2547: 51,93
+ 2548: 51,94
+ 2553: 51,88
+ 2554: 51,89
+ 2555: 51,90
+ 2588: 42,84
+ 2589: 42,85
+ 2590: 42,86
+ 2591: 42,87
+ 2592: 42,88
+ 2593: 42,89
+ 2594: 42,90
+ 2595: 42,91
+ 2596: 42,93
+ 2597: 42,92
+ 2598: 42,95
+ 2599: 42,96
+ 2600: 42,97
+ 2601: 42,98
+ 2607: 30,103
+ 2608: 30,104
+ 2609: 30,105
+ 2611: 30,109
+ 2612: 30,110
+ 2613: 30,111
+ 2614: 30,113
+ 2615: 30,114
+ 2616: 30,115
+ 2639: 41,116
+ 2656: 47,112
+ 2673: 37,105
+ 2674: 37,106
+ 2675: 37,107
+ 2686: 24,101
+ 2687: 24,102
+ 2688: 24,103
+ 2689: 24,104
+ 2709: 46,91
+ 2710: 46,92
+ 2711: 46,88
+ 2712: 46,87
+ 2746: 46,81
+ 2747: 46,82
+ 2775: 35,88
+ 2776: 35,89
+ 2778: 35,91
+ 2779: 35,92
+ 2828: 39,90
+ 2829: 37,90
+ 2832: 32,108
+ 2833: 32,109
+ 2834: 32,110
+ 2836: 34,109
+ 2837: 34,110
+ 2839: 32,115
+ 2840: 32,116
+ 2842: 34,115
+ 2843: 34,116
+ 2846: 32,112
+ 2850: 34,114
+ 2859: 38,113
+ 2860: 38,111
+ 2869: 41,115
+ 2926: 50,106
+ 2931: 46,106
+ 3029: 37,83
+ 3041: 126,67
+ 3963: 126,66
+ 14164: 128,66
+ 14165: 128,67
+ - node:
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 5709: 98,107
+ 5710: 98,108
+ 5711: 98,109
+ 5712: 98,111
+ 5713: 98,112
+ 5714: 98,113
+ 5715: 98,114
+ 6047: 55,77
+ 6049: 55,79
+ 6050: 55,80
+ 6051: 55,81
+ 6052: 55,83
+ 6053: 55,82
+ 6114: 55,108
+ 6115: 55,109
+ 6116: 55,110
+ 6117: 55,111
+ 6118: 55,112
+ 6220: 87,115
+ 6221: 87,116
+ 6222: 87,117
+ 6444: 127,87
+ 6445: 127,88
+ 6446: 127,89
+ 6447: 127,91
+ 6448: 127,92
+ 6449: 127,93
+ 6515: 118,75
+ 6516: 118,74
+ 6517: 118,72
+ 6518: 118,71
+ 6519: 118,70
+ 6520: 118,69
+ 6521: 118,68
+ 6522: 118,67
+ 6523: 118,66
+ 6524: 118,65
+ 6525: 118,64
+ 6526: 118,63
+ 6530: 118,57
+ 6531: 118,59
+ 6532: 118,60
+ 6533: 118,61
+ 6534: 118,56
+ 6881: 144,137
+ 6882: 144,138
+ 6883: 144,139
+ 6884: 144,140
+ 6887: 148,125
+ 6888: 148,126
+ 6889: 148,127
+ 6890: 148,128
+ 6891: 148,129
+ 6902: 148,142
+ 7105: 94,24
+ 7106: 94,25
+ 7107: 94,26
+ 7108: 94,27
+ 7113: 88,21
+ 7114: 88,22
+ 7130: 94,29
+ 7131: 94,30
+ 7170: 104,29
+ 7171: 104,28
+ 7172: 104,24
+ 7174: 104,20
+ 7175: 104,21
+ 7180: 108,22
+ 7181: 108,23
+ 7185: 111,26
+ 7186: 111,29
+ 7187: 111,30
+ 7193: 118,34
+ 7194: 118,35
+ 7195: 118,36
+ 7196: 118,38
+ 7197: 118,40
+ 7791: 67,20
+ 7792: 67,21
+ 7813: 82,19
+ 7814: 82,20
+ 7815: 82,21
+ 7816: 82,22
+ 12088: 124,107
+ 12089: 124,108
+ 12289: 55,114
+ 13646: 55,105
+ 13647: 55,106
+ 13648: 55,107
+ 13725: 66,50
+ 13726: 66,51
+ 13727: 66,52
+ 13728: 66,53
+ 13729: 66,54
+ 13730: 66,55
+ 13731: 66,56
+ 13753: 66,48
+ 14069: 87,118
+ 14243: 82,48
+ 14360: 109,53
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 14206: 94,107
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 3092: 130,63
+ 3093: 130,64
+ 3094: 130,65
+ 3100: 130,69
+ 3101: 130,70
+ 3103: 130,73
+ 3120: 126,61
+ 3121: 129,56
+ 3122: 129,57
+ 3146: 125,59
+ 3154: 143,61
+ 3215: 137,57
+ 3216: 137,58
+ 3217: 137,60
+ 3218: 137,61
+ 3219: 137,62
+ 3220: 137,63
+ 3221: 137,65
+ 3222: 137,66
+ 3224: 137,69
+ 3241: 147,65
+ 3242: 147,66
+ 3243: 147,67
+ 3244: 147,68
+ 3258: 147,63
+ 3259: 147,62
+ 3260: 147,61
+ 3261: 147,60
+ 3262: 147,59
+ 3291: 138,52
+ 3292: 138,53
+ 3310: 144,52
+ 3311: 144,51
+ 3312: 144,50
+ 3313: 144,49
+ 3324: 152,51
+ 3325: 152,52
+ 3326: 152,53
+ 3344: 138,45
+ 3345: 138,46
+ 3346: 138,47
+ 3347: 138,48
+ 3358: 129,45
+ 3359: 129,46
+ 3360: 126,49
+ 3361: 126,50
+ 3383: 122,47
+ 3384: 122,48
+ 3385: 122,49
+ 3395: 122,55
+ 3420: 151,62
+ 3421: 151,63
+ 3435: 151,73
+ 3436: 151,72
+ 3437: 151,71
+ 3438: 151,70
+ 3440: 151,68
+ 3456: 141,66
+ 3489: 149,50
+ 3490: 149,51
+ 3959: 137,67
+ 4420: 122,54
+ 4439: 91,114
+ 9645: 151,149
+ 9646: 151,150
+ 9647: 151,151
+ 10619: 90,46
+ 10684: 101,46
+ 10699: 101,41
+ 10700: 101,42
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 845: 97,139
+ 850: 97,135
+ 852: 93,131
+ 853: 93,132
+ 854: 93,133
+ 855: 93,137
+ 856: 93,134
+ 857: 93,135
+ 858: 93,136
+ 862: 93,141
+ 863: 93,142
+ 864: 93,143
+ 865: 93,145
+ 866: 93,144
+ 867: 93,146
+ 868: 93,147
+ 869: 93,127
+ 870: 93,128
+ 871: 93,129
+ 872: 93,149
+ 873: 93,150
+ 874: 93,151
+ 875: 93,152
+ 876: 93,153
+ 877: 93,154
+ 945: 93,124
+ 946: 93,125
+ 962: 121,149
+ 963: 121,150
+ 964: 121,151
+ 965: 121,152
+ 966: 121,153
+ 968: 121,143
+ 969: 121,142
+ 970: 121,141
+ 971: 121,140
+ 972: 121,139
+ 974: 121,137
+ 975: 121,135
+ 976: 121,134
+ 977: 121,133
+ 978: 121,132
+ 979: 121,131
+ 982: 120,128
+ 983: 120,129
+ 1022: 120,145
+ 1024: 104,151
+ 1025: 104,150
+ 1026: 104,149
+ 1027: 104,148
+ 1042: 110,148
+ 1043: 110,149
+ 1044: 110,150
+ 1045: 110,151
+ 1063: 125,123
+ 1064: 125,124
+ 1065: 125,125
+ 1066: 125,126
+ 1067: 125,127
+ 1097: 131,128
+ 1102: 125,132
+ 1103: 125,133
+ 1104: 125,135
+ 1105: 125,134
+ 1106: 125,137
+ 1107: 125,139
+ 1151: 120,146
+ 1178: 104,159
+ 1179: 104,160
+ 1180: 104,161
+ 1189: 115,159
+ 1190: 115,160
+ 1191: 115,161
+ 1300: 118,122
+ 1312: 118,135
+ 1313: 118,139
+ 3048: 126,70
+ 3604: 126,69
+ 3867: 125,143
+ 3868: 125,144
+ 3869: 125,145
+ 3951: 131,127
+ 6285: 100,120
+ 6286: 103,122
+ 6287: 103,123
+ 7048: 143,132
+ 7049: 143,133
+ 7218: 116,20
+ 7225: 116,21
+ 14166: 128,69
+ 14167: 128,70
+ 14283: 86,60
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 10180: 96,160
+ 10181: 96,161
+ 14700: 130,134
+ 14701: 130,135
+ 14702: 130,136
+ 14703: 130,137
+ - node:
+ color: '#FA750096'
+ id: HalfTileOverlayGreyscale270
+ decals:
+ 1586: 85,100
+ 1587: 85,101
+ 1588: 85,103
+ 1627: 86,108
+ - node:
+ color: '#00000093'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 3207: 133,44
+ 3208: 133,45
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 10067: 137,89
+ 10068: 137,90
+ 10069: 137,91
+ 10070: 137,92
+ 10071: 137,93
+ 10084: 134,91
+ - node:
+ color: '#334E6DC8'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 64: 44,63
+ 65: 44,62
+ 66: 44,61
+ 67: 44,60
+ 71: 44,56
+ 72: 44,55
+ 73: 44,54
+ 74: 44,53
+ 75: 44,52
+ 88: 44,67
+ 89: 44,68
+ 92: 44,72
+ 93: 44,73
+ 94: 44,75
+ 96: 44,76
+ 106: 44,64
+ 107: 44,66
+ 109: 40,53
+ 110: 40,54
+ 111: 40,55
+ 113: 40,57
+ 114: 40,58
+ 115: 40,59
+ 200: 48,55
+ 201: 48,56
+ 208: 48,57
+ 209: 48,58
+ 212: 51,57
+ 213: 51,58
+ 231: 53,54
+ 232: 53,55
+ 233: 53,56
+ 234: 53,57
+ 235: 53,59
+ 236: 53,60
+ 242: 50,50
+ 243: 50,49
+ 364: 53,39
+ 373: 49,19
+ 374: 49,20
+ 375: 50,22
+ 376: 50,23
+ 377: 50,25
+ 378: 50,26
+ 379: 49,28
+ 405: 49,29
+ 426: 57,23
+ 428: 57,25
+ 429: 46,22
+ 430: 46,23
+ 431: 46,24
+ 432: 46,25
+ 433: 46,26
+ 440: 41,23
+ 441: 41,25
+ 499: 32,75
+ 4019: 44,49
+ 4020: 44,50
+ 4021: 44,51
+ 6922: 136,152
+ 7085: 102,20
+ 7086: 102,21
+ 7087: 102,22
+ 7088: 102,26
+ 7089: 102,27
+ 7099: 97,18
+ 7100: 97,20
+ 11065: 53,69
+ 11066: 53,72
+ 11067: 53,73
+ 11068: 53,74
+ 11114: 44,71
+ 11225: 61,55
+ 11226: 61,56
+ 11227: 61,57
+ 11228: 61,58
+ - node:
+ color: '#3EB38896'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 795: 70,120
+ 796: 70,119
+ 805: 77,117
+ 806: 77,118
+ - node:
+ color: '#52B4E996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 608: 32,54
+ 609: 32,55
+ 1361: 68,92
+ 1362: 68,94
+ 1363: 68,93
+ 1364: 68,95
+ 1365: 68,99
+ 1366: 68,100
+ 1367: 68,101
+ 1382: 79,91
+ 1383: 79,90
+ 1403: 71,97
+ 1473: 84,90
+ 1474: 84,91
+ 1475: 84,92
+ 1476: 84,93
+ 1519: 84,83
+ 1565: 66,102
+ 1566: 66,100
+ 1567: 66,98
+ 1568: 66,96
+ 1569: 66,94
+ 1570: 66,92
+ 1660: 67,109
+ 1661: 67,110
+ 1696: 68,97
+ 1697: 79,97
+ 1721: 70,83
+ 1722: 70,82
+ 1739: 63,86
+ 1786: 63,100
+ 1787: 63,101
+ 1788: 63,102
+ 1789: 63,103
+ 1806: 63,107
+ 1807: 63,109
+ 1847: 89,92
+ 1848: 89,93
+ 1849: 89,94
+ 4017: 82,93
+ 4018: 82,95
+ 5653: 122,84
+ 5658: 125,81
+ 6575: 120,48
+ 6576: 120,49
+ 11030: 91,85
+ 11031: 91,86
+ 11032: 91,87
+ 13917: 63,82
+ 13918: 63,83
+ 14099: 68,102
+ 14100: 68,103
+ 14101: 68,104
+ 14124: 84,95
+ 14159: 123,63
+ - node:
+ color: '#79150096'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 5396: 75,74
+ 5397: 75,71
+ 5398: 66,73
+ 5399: 66,75
+ 5421: 77,68
+ 5422: 77,69
+ - node:
+ color: '#8C347F96'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 6771: 159,127
+ 6772: 159,126
+ 6773: 159,125
+ 6775: 159,123
+ 6776: 159,122
+ 6782: 155,127
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 9974: 144,88
+ 9975: 152,92
+ 9976: 152,95
+ 9993: 152,89
+ 10011: 147,92
+ - node:
+ color: '#8D1C9996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 2435: 144,90
+ - node:
+ color: '#979494FF'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 11838: 102,108
+ 11839: 102,109
+ 11840: 102,110
+ 11841: 117,108
+ 11842: 117,109
+ 11843: 117,110
+ 11844: 117,111
+ 11845: 117,112
+ 11871: 100,98
+ 11872: 100,99
+ 11873: 100,100
+ 11874: 100,101
+ 11875: 100,102
+ 11895: 100,92
+ - node:
+ color: '#9FED5896'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 5169: 113,99
+ 5170: 113,100
+ 5171: 113,101
+ 5172: 113,102
+ 5194: 104,100
+ 5195: 104,101
+ 5196: 104,103
+ 5197: 104,102
+ 5222: 101,103
+ 5223: 101,102
+ 5224: 101,101
+ 5225: 101,100
+ 5226: 101,99
+ 5239: 101,91
+ 5240: 101,92
+ 5241: 101,93
+ 5290: 123,97
+ 7237: 92,26
+ 10842: 122,102
+ 10843: 122,103
+ 11215: 100,69
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 10029: 158,97
+ 10030: 158,98
+ 10031: 158,99
+ 10042: 144,95
+ - node:
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 2008: 140,101
+ 2009: 140,102
+ 2010: 140,103
+ 2011: 140,104
+ 2012: 140,105
+ 2013: 140,106
+ 2094: 140,110
+ 2095: 140,111
+ 2103: 144,94
+ 2160: 136,104
+ 2161: 136,105
+ 2162: 136,106
+ 2164: 134,108
+ 2168: 135,97
+ 2169: 135,98
+ 2170: 136,100
+ 2171: 136,101
+ 2189: 145,103
+ 2190: 145,104
+ 2191: 145,105
+ 2364: 158,103
+ 9859: 157,105
+ 9860: 157,108
+ 9881: 150,108
+ 9884: 150,105
+ 9919: 152,107
+ 9920: 153,105
+ - node:
+ zIndex: 1
+ color: '#A4610696'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 9968: 155,107
+ 9969: 155,106
+ - node:
+ color: '#D381C996'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 1751: 63,90
+ 1753: 63,92
+ 1754: 63,93
+ 1755: 63,94
+ 1756: 63,95
+ 1757: 63,96
+ 1758: 63,97
+ 2493: 40,88
+ 2494: 40,89
+ 2495: 40,90
+ 2496: 40,91
+ 2497: 40,92
+ 2498: 44,84
+ 2499: 44,85
+ 2500: 44,86
+ 2501: 44,87
+ 2502: 44,88
+ 2503: 44,91
+ 2504: 44,92
+ 2505: 44,93
+ 2506: 44,95
+ 2507: 44,98
+ 2508: 44,99
+ 2509: 44,102
+ 2510: 44,103
+ 2511: 44,104
+ 2512: 44,105
+ 2513: 44,106
+ 2558: 53,89
+ 2559: 53,90
+ 2560: 53,91
+ 2561: 53,92
+ 2562: 53,93
+ 2563: 53,94
+ 2581: 53,100
+ 2626: 36,113
+ 2629: 36,116
+ 2630: 36,111
+ 2631: 35,108
+ 2632: 35,109
+ 2637: 45,116
+ 2655: 39,112
+ 2668: 40,105
+ 2669: 40,106
+ 2682: 28,101
+ 2683: 28,102
+ 2684: 28,103
+ 2685: 28,104
+ 2717: 49,88
+ 2718: 49,89
+ 2719: 49,90
+ 2748: 53,81
+ 2749: 53,82
+ 2750: 53,83
+ 2857: 48,113
+ 2858: 48,112
+ 2868: 45,115
+ 2928: 48,106
+ 2929: 48,107
+ 2987: 52,106
+ - node:
+ color: '#D4D4D428'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 5716: 118,107
+ 5717: 118,108
+ 5718: 118,109
+ 5719: 118,111
+ 5720: 118,112
+ 5721: 118,113
+ 5722: 118,114
+ 6023: 57,66
+ 6024: 57,67
+ 6054: 57,83
+ 6055: 57,82
+ 6056: 57,81
+ 6057: 57,80
+ 6058: 57,79
+ 6059: 57,77
+ 6060: 57,76
+ 6061: 57,75
+ 6062: 57,74
+ 6063: 57,73
+ 6064: 57,72
+ 6065: 57,71
+ 6066: 57,70
+ 6067: 57,69
+ 6455: 129,87
+ 6456: 129,86
+ 6457: 129,84
+ 6458: 129,83
+ 6459: 129,82
+ 6460: 129,80
+ 6461: 129,81
+ 6462: 129,79
+ 6682: 94,64
+ 6683: 94,65
+ 6684: 94,66
+ 6685: 94,67
+ 6686: 94,68
+ 6687: 94,69
+ 6688: 94,70
+ 6689: 94,71
+ 6690: 94,72
+ 6691: 94,74
+ 6692: 94,75
+ 6816: 160,118
+ 6842: 150,120
+ 6843: 150,121
+ 6844: 150,122
+ 6845: 150,123
+ 6848: 150,125
+ 6849: 150,126
+ 6850: 150,127
+ 6851: 150,128
+ 6852: 150,129
+ 6853: 150,130
+ 6905: 150,142
+ 6971: 142,137
+ 7124: 96,24
+ 7125: 96,26
+ 7126: 96,28
+ 7127: 96,29
+ 7161: 106,21
+ 7162: 106,22
+ 7163: 106,23
+ 7164: 106,24
+ 7165: 106,25
+ 7166: 106,27
+ 7167: 106,29
+ 7168: 106,30
+ 7169: 106,31
+ 7178: 110,20
+ 7179: 113,23
+ 7200: 120,39
+ 7201: 120,38
+ 7202: 120,35
+ 7203: 120,34
+ 7204: 120,33
+ 7205: 120,32
+ 7206: 120,31
+ 7794: 68,21
+ 7795: 68,22
+ 7808: 84,17
+ 7809: 84,21
+ 7810: 84,22
+ 12084: 125,109
+ 12085: 125,108
+ 12455: 94,63
+ 12836: 144,76
+ 13752: 68,48
+ 14242: 84,48
+ - node:
+ color: '#D4D4D496'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 3191: 133,48
+ 3192: 133,47
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 14207: 96,107
+ - node:
+ color: '#DE3A3A96'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 602: 32,61
+ 603: 32,62
+ 604: 32,63
+ 3061: 128,63
+ 3062: 128,65
+ 3063: 128,64
+ 3064: 128,66
+ 3065: 128,67
+ 3066: 128,68
+ 3067: 128,69
+ 3068: 128,70
+ 3069: 128,72
+ 3070: 128,73
+ 3074: 135,63
+ 3075: 135,64
+ 3076: 135,65
+ 3106: 135,69
+ 3107: 135,70
+ 3108: 135,71
+ 3109: 135,72
+ 3110: 135,73
+ 3132: 131,57
+ 3137: 128,61
+ 3155: 145,61
+ 3235: 149,71
+ 3236: 149,70
+ 3237: 149,69
+ 3238: 149,68
+ 3239: 149,66
+ 3240: 149,65
+ 3245: 139,65
+ 3246: 139,66
+ 3247: 139,67
+ 3248: 139,68
+ 3268: 141,59
+ 3269: 141,60
+ 3273: 149,62
+ 3274: 149,63
+ 3275: 149,60
+ 3276: 149,59
+ 3277: 149,58
+ 3286: 142,52
+ 3287: 142,53
+ 3288: 142,54
+ 3303: 150,49
+ 3304: 150,51
+ 3305: 150,52
+ 3332: 155,57
+ 3333: 155,56
+ 3334: 155,55
+ 3336: 155,53
+ 3337: 155,52
+ 3338: 155,51
+ 3339: 155,50
+ 3340: 142,48
+ 3341: 142,47
+ 3342: 142,46
+ 3343: 142,45
+ 3379: 124,47
+ 3380: 124,48
+ 3381: 124,49
+ 3382: 124,50
+ 3410: 156,62
+ 3428: 154,67
+ 3429: 154,68
+ 3431: 154,70
+ 3432: 154,71
+ 3433: 154,72
+ 3434: 154,73
+ 3461: 145,65
+ 3462: 145,66
+ 3463: 139,63
+ 3496: 145,50
+ 3497: 145,51
+ 4445: 96,113
+ 4982: 102,79
+ 4983: 102,80
+ 4984: 102,81
+ 4985: 102,82
+ 4986: 102,83
+ 4987: 102,84
+ 4988: 102,85
+ 9651: 153,152
+ 9652: 153,151
+ 9653: 153,150
+ 9662: 157,152
+ 10677: 103,46
+ 10678: 103,47
+ 10686: 99,46
+ 10703: 102,41
+ 13434: 120,59
+ 13780: 89,114
+ - node:
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 831: 98,122
+ 835: 96,128
+ 836: 96,129
+ 840: 98,135
+ 842: 98,139
+ 922: 95,149
+ 923: 95,150
+ 924: 95,151
+ 925: 95,152
+ 926: 95,153
+ 928: 95,147
+ 929: 95,146
+ 930: 95,144
+ 931: 95,143
+ 932: 95,142
+ 933: 95,141
+ 934: 95,140
+ 935: 95,139
+ 936: 95,137
+ 937: 95,135
+ 938: 95,131
+ 939: 95,132
+ 940: 95,133
+ 941: 95,134
+ 955: 123,155
+ 956: 123,154
+ 957: 123,153
+ 958: 123,152
+ 959: 123,151
+ 960: 123,150
+ 961: 123,149
+ 997: 123,123
+ 998: 123,124
+ 999: 123,125
+ 1000: 123,127
+ 1001: 123,129
+ 1002: 123,130
+ 1003: 123,131
+ 1004: 123,132
+ 1005: 123,133
+ 1006: 123,134
+ 1007: 123,135
+ 1008: 123,137
+ 1009: 123,139
+ 1010: 123,140
+ 1011: 123,141
+ 1012: 123,143
+ 1013: 123,142
+ 1014: 123,144
+ 1015: 123,145
+ 1016: 123,146
+ 1017: 123,147
+ 1028: 112,148
+ 1029: 112,149
+ 1030: 112,150
+ 1031: 112,151
+ 1032: 106,148
+ 1033: 106,149
+ 1034: 106,150
+ 1035: 106,151
+ 1060: 119,150
+ 1061: 119,151
+ 1075: 129,125
+ 1076: 129,122
+ 1077: 129,123
+ 1078: 129,127
+ 1079: 129,124
+ 1080: 129,128
+ 1116: 136,135
+ 1117: 136,134
+ 1118: 136,133
+ 1119: 136,132
+ 1183: 113,159
+ 1184: 113,160
+ 1185: 113,161
+ 1304: 119,135
+ 1306: 119,139
+ 3855: 132,137
+ 3856: 132,138
+ 3857: 132,139
+ 3863: 128,144
+ 3885: 132,145
+ 3947: 119,159
+ 3948: 119,161
+ 6283: 113,122
+ 6284: 113,123
+ 6751: 94,60
+ 7054: 146,132
+ 7056: 146,133
+ 7222: 120,21
+ 7223: 120,22
+ 7224: 120,20
+ 10280: 137,127
+ 10281: 137,128
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 10182: 102,161
+ 10183: 102,160
+ 10184: 102,159
+ 14713: 129,135
+ 14714: 129,136
+ 14716: 127,138
+ 14717: 127,137
+ 14718: 127,133
+ 14719: 127,134
+ - node:
+ color: '#FA750096'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 1600: 88,101
+ 1601: 88,102
+ 1609: 89,107
+ 1610: 89,108
+ 1611: 89,109
+ 1625: 88,108
+ 1634: 83,110
+ 14142: 83,98
+ 14143: 83,99
+ 14144: 83,100
+ 14145: 83,101
+ 14146: 83,103
+ - node:
+ color: '#FFFFFF93'
+ id: HalfTileOverlayGreyscale90
+ decals:
+ 3202: 133,50
+ 3964: 133,51
+ - node:
+ angle: -3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 9973: 148,99
+ - node:
+ angle: -1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 2196: 135,99
+ 9970: 156,110
+ 9971: 156,106
+ - node:
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 634: 55,62
+ 8818: 90,170
+ 9972: 152,99
+ 10826: 102,145
+ 14153: 69,123
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 708: 109,145
+ 709: 108,145
+ 710: 107,145
+ - node:
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 2197: 135,106
+ - node:
+ zIndex: 1
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 14375: 157,126
+ 14592: 59,89
+ 14593: 59,90
+ 14594: 59,91
+ - node:
+ angle: 3.141592653589793 rad
+ color: '#FFFFFFFF'
+ id: LoadingArea
+ decals:
+ 633: 61,62
+ - node:
+ cleanable: True
+ color: '#FFA500FF'
+ id: Max
+ decals:
+ 7693: 94.34972,27.004776
+ - node:
+ color: '#0000009E'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 623: 59,51
+ - node:
+ color: '#21212193'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 11232: 60,50
+ 11233: 61,50
+ 11234: 61,51
+ 11235: 60,51
+ 11236: 60,52
+ 11237: 61,52
+ - node:
+ color: '#334E6DFF'
+ id: MiniTileCheckerAOverlay
+ decals:
+ 4085: 33,66
+ 4086: 32,66
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: MonoOverlay
+ decals:
+ 10087: 135,91
+ - node:
+ color: '#334E6DC8'
+ id: MonoOverlay
+ decals:
+ 1230: 135,121
+ - node:
+ color: '#52B4E996'
+ id: MonoOverlay
+ decals:
+ 1453: 77,94
+ 1454: 77,95
+ 1455: 78,95
+ 1456: 78,94
+ 1457: 79,94
+ 1458: 79,95
+ 1459: 72,97
+ 1460: 73,97
+ 1461: 74,97
+ 1462: 75,97
+ 1463: 76,97
+ 1464: 77,97
+ 1465: 74,89
+ 1466: 75,89
+ 5611: 120,81
+ 5612: 119,81
+ 5613: 120,82
+ 5614: 119,82
+ 5615: 119,83
+ 5616: 120,83
+ 5617: 118,81
+ 5618: 117,81
+ 5621: 117,82
+ 5622: 118,82
+ 5623: 118,83
+ 5624: 117,83
+ 5625: 117,84
+ 5626: 118,84
+ 5627: 119,84
+ 5628: 120,84
+ 5629: 120,85
+ 5630: 118,85
+ 5631: 117,85
+ 5632: 119,85
+ 10268: 132,126
+ 14102: 69,103
+ 14103: 69,102
+ 14104: 69,104
+ - node:
+ color: '#9FED5896'
+ id: MonoOverlay
+ decals:
+ 1435: 70,94
+ 1436: 71,94
+ 1437: 72,94
+ 1438: 72,95
+ 1439: 71,95
+ 1440: 70,95
+ 10267: 134,126
+ - node:
+ color: '#A4610696'
+ id: MonoOverlay
+ decals:
+ 10271: 136,128
+ - node:
+ color: '#D381C996'
+ id: MonoOverlay
+ decals:
+ 2867: 43,115
+ 10270: 134,128
+ - node:
+ color: '#D4D4D496'
+ id: MonoOverlay
+ decals:
+ 10269: 132,128
+ - node:
+ color: '#DE3A3A96'
+ id: MonoOverlay
+ decals:
+ 1231: 135,123
+ 1441: 77,99
+ 1442: 77,100
+ 1443: 78,100
+ 1444: 78,99
+ 1445: 79,99
+ 1446: 79,100
+ - node:
+ color: '#EFB34196'
+ id: MonoOverlay
+ decals:
+ 1447: 72,99
+ 1448: 71,99
+ 1449: 70,99
+ 1450: 70,100
+ 1451: 71,100
+ 1452: 72,100
+ 10266: 136,126
+ 14051: 131,121
+ 14052: 131,122
+ 14053: 131,123
+ 14054: 127,122
+ 14055: 127,123
+ 14056: 127,124
+ 14057: 127,126
+ 14058: 127,127
+ 14059: 127,128
+ 14060: 117,149
+ 14061: 118,149
+ 14062: 119,149
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: MonoOverlay
+ decals:
+ 10194: 98,161
+ 10195: 100,161
+ 10196: 100,163
+ 10197: 98,163
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: Newton
+ decals:
+ 7694: 105.70206,27.229095
+ - node:
+ cleanable: True
+ color: '#A020F0FF'
+ id: North
+ decals:
+ 7695: 107.56664,20.014
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: Omni
+ decals:
+ 7710: 116.556625,21.019264
+ - node:
+ cleanable: True
+ color: '#00FFFFFF'
+ id: Osiron
+ decals:
+ 7696: 108.37904,23.034836
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: Prima
+ decals:
+ 7699: 97.97611,18.98423
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: Psyke
+ decals:
+ 7698: 101.823135,21.171349
+ - node:
+ color: '#000000C6'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 11014: 118,99
+ - node:
+ color: '#000000C7'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 10930: 121,100
+ 10931: 121,101
+ 10932: 121,102
+ 10933: 122,99
+ 10934: 122,98
+ 10935: 122,97
+ 10936: 121,97
+ 10937: 120,97
+ 10938: 119,97
+ 10939: 118,97
+ 10940: 117,97
+ 10941: 123,99
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 156: 38,52
+ 157: 38,53
+ 158: 38,54
+ 159: 38,55
+ 160: 38,56
+ 161: 38,57
+ 162: 38,58
+ 163: 38,59
+ 164: 38,60
+ 165: 38,61
+ 166: 37,52
+ 167: 36,52
+ 168: 35,52
+ 238: 51,60
+ 387: 48,21
+ 411: 52,19
+ 443: 45,22
+ 498: 33,75
+ 502: 34,74
+ 506: 32,76
+ 11078: 51,71
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1408: 78,96
+ 1664: 81,108
+ 1845: 82,84
+ 5006: 110,78
+ 12081: 60,108
+ 12152: 62,87
+ 13452: 59,116
+ 13453: 60,116
+ 13454: 61,116
+ 13455: 62,116
+ 13456: 63,116
+ 13457: 64,116
+ 13467: 64,119
+ 13468: 62,119
+ 13469: 60,119
+ 13924: 119,49
+ - node:
+ color: '#79150096'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5413: 65,75
+ 5425: 76,70
+ 5466: 84,71
+ - node:
+ color: '#8C347F96'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 6759: 155,122
+ 6770: 157,123
+ - node:
+ color: '#979494FF'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 11865: 100,113
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5186: 112,99
+ 5212: 94,97
+ 11182: 102,71
+ 11183: 101,71
+ 11184: 103,71
+ 11185: 104,71
+ 11186: 108,71
+ 11187: 109,71
+ 11188: 110,71
+ 11189: 111,71
+ 11190: 108,72
+ 11191: 109,72
+ 11192: 110,72
+ 11193: 111,72
+ 11194: 104,72
+ 11195: 103,72
+ 11196: 102,72
+ 11197: 101,72
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 2038: 138,97
+ 2167: 136,110
+ 2176: 131,98
+ 2427: 142,94
+ 9857: 148,106
+ 9870: 152,111
+ 14531: 134,105
+ 14532: 134,104
+ 14533: 134,103
+ 14534: 134,102
+ 14535: 134,101
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 2462: 33,104
+ 2463: 33,105
+ 2464: 34,105
+ 2533: 42,101
+ 2645: 43,112
+ 2660: 43,111
+ 2664: 47,111
+ 2810: 37,91
+ 2811: 37,92
+ 2812: 37,93
+ 2813: 39,91
+ 2814: 39,92
+ 2815: 39,93
+ 2870: 41,114
+ 3023: 37,101
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 5739: 98,106
+ 6026: 55,66
+ 6142: 55,107
+ 6224: 87,114
+ 6273: 102,115
+ 6274: 112,115
+ 6409: 127,114
+ 6471: 127,78
+ 6542: 118,55
+ 6547: 109,52
+ 6706: 92,69
+ 7116: 88,20
+ 7143: 97,20
+ 7177: 108,20
+ 8333: 61,78
+ 12245: 84,114
+ 12246: 83,114
+ 12247: 82,114
+ 12248: 81,114
+ 12249: 80,114
+ 12250: 79,114
+ 12251: 78,114
+ 12252: 77,114
+ 12253: 74,114
+ 12254: 73,114
+ 12255: 72,114
+ 12256: 71,114
+ 12257: 68,114
+ 12258: 67,114
+ 12261: 64,114
+ 12262: 62,114
+ 12290: 56,114
+ 12291: 57,114
+ 12292: 58,114
+ 12293: 59,114
+ 12294: 60,114
+ 12315: 55,85
+ 12316: 55,88
+ 12317: 55,89
+ 12318: 55,90
+ 12319: 55,91
+ 12320: 55,92
+ 12321: 55,93
+ 12322: 55,94
+ 12323: 55,97
+ 12324: 55,98
+ 12341: 55,76
+ 12342: 55,75
+ 12343: 55,74
+ 12344: 55,73
+ 12345: 55,72
+ 12346: 55,69
+ 12362: 55,67
+ 12363: 54,66
+ 12364: 53,66
+ 12365: 52,66
+ 12366: 52,63
+ 12387: 87,68
+ 12388: 86,68
+ 12389: 86,67
+ 12390: 86,66
+ 12396: 90,69
+ 12397: 91,69
+ 12412: 86,65
+ 12420: 79,65
+ 12421: 80,65
+ 12422: 81,65
+ 12423: 82,65
+ 12424: 83,65
+ 12425: 84,65
+ 12426: 85,65
+ 12427: 86,65
+ 12435: 92,66
+ 12436: 92,65
+ 12437: 91,65
+ 12438: 90,65
+ 12733: 100,50
+ 12852: 117,78
+ 12853: 118,78
+ 12854: 119,78
+ 12855: 120,78
+ 12856: 121,78
+ 12857: 122,78
+ 12858: 125,78
+ 12859: 127,79
+ 12860: 127,80
+ 12861: 127,81
+ 12862: 127,82
+ 12863: 127,83
+ 12864: 127,84
+ 12865: 127,85
+ 12866: 127,86
+ 12941: 115,78
+ 12953: 113,88
+ 12954: 112,88
+ 12955: 111,88
+ 12956: 110,88
+ 12957: 109,88
+ 12958: 108,88
+ 12959: 107,88
+ 12960: 106,89
+ 12961: 103,88
+ 12962: 102,88
+ 12963: 101,88
+ 12964: 100,88
+ 12965: 103,89
+ 12966: 103,90
+ 12967: 103,91
+ 12968: 103,92
+ 12969: 103,93
+ 12970: 103,94
+ 12976: 105,94
+ 12977: 106,89
+ 12979: 98,87
+ 12980: 98,86
+ 12981: 98,85
+ 12982: 98,84
+ 12983: 98,83
+ 12984: 98,82
+ 12985: 98,81
+ 12986: 98,80
+ 12987: 98,79
+ 12989: 97,78
+ 12990: 99,69
+ 12991: 99,70
+ 12992: 99,71
+ 12993: 99,72
+ 12994: 99,73
+ 12995: 99,74
+ 12996: 99,75
+ 12999: 98,78
+ 13038: 127,97
+ 13039: 127,101
+ 13040: 127,102
+ 13041: 126,101
+ 13042: 126,98
+ 13051: 127,106
+ 13052: 127,107
+ 13053: 127,108
+ 13054: 127,109
+ 13055: 127,110
+ 13056: 127,111
+ 13057: 127,115
+ 13078: 117,119
+ 13079: 118,119
+ 13080: 120,119
+ 13081: 121,119
+ 13082: 122,119
+ 13083: 123,119
+ 13084: 124,119
+ 13085: 125,119
+ 13086: 126,119
+ 13087: 127,119
+ 13088: 129,119
+ 13089: 130,119
+ 13090: 131,119
+ 13091: 132,119
+ 13092: 133,119
+ 13093: 134,119
+ 13094: 135,119
+ 13095: 137,119
+ 13096: 139,119
+ 13147: 110,119
+ 13148: 109,119
+ 13149: 108,119
+ 13150: 107,119
+ 13151: 106,119
+ 13152: 111,119
+ 13153: 111,120
+ 13154: 111,121
+ 13155: 111,122
+ 13180: 90,119
+ 13181: 91,119
+ 13182: 92,119
+ 13183: 93,119
+ 13184: 94,119
+ 13185: 95,119
+ 13186: 96,119
+ 13187: 98,119
+ 13188: 99,119
+ 13189: 100,119
+ 13225: 159,119
+ 13226: 156,119
+ 13229: 154,119
+ 13230: 160,119
+ 13259: 142,119
+ 13260: 143,119
+ 13261: 145,119
+ 13262: 146,119
+ 13263: 147,119
+ 13264: 148,119
+ 13265: 148,120
+ 13266: 148,121
+ 13267: 148,122
+ 13268: 148,123
+ 13297: 148,130
+ 13298: 148,132
+ 13299: 148,133
+ 13300: 148,134
+ 13301: 148,135
+ 13306: 144,136
+ 13333: 160,139
+ 13339: 151,139
+ 13340: 150,139
+ 13341: 148,139
+ 13342: 147,139
+ 13376: 58,110
+ 13377: 58,111
+ 13410: 73,65
+ 13411: 74,65
+ 13412: 75,65
+ 13413: 76,65
+ 13414: 77,65
+ 13415: 78,65
+ 13426: 92,77
+ 13427: 92,76
+ 13428: 92,75
+ 13429: 92,74
+ 13430: 92,73
+ 13431: 92,72
+ 13432: 92,71
+ 13433: 92,70
+ 13715: 66,57
+ 13716: 66,58
+ 13717: 66,59
+ 13718: 66,60
+ 13719: 66,61
+ 13812: 55,100
+ 13813: 55,103
+ 13814: 55,104
+ 14011: 89,119
+ 14318: 85,52
+ 14319: 86,52
+ 14320: 87,52
+ 14321: 88,52
+ 14322: 90,52
+ 14398: 128,119
+ 14523: 110,54
+ - node:
+ zIndex: 1
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 13641: 65,114
+ 14651: 127,95
+ 14652: 127,105
+ 14653: 127,104
+ 14654: 127,103
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 12569: 66,25
+ 12570: 66,26
+ 12571: 66,27
+ 12572: 66,28
+ 12573: 66,29
+ 12574: 66,30
+ 12575: 66,31
+ 12576: 66,32
+ 12577: 66,33
+ 12578: 66,34
+ 12579: 66,35
+ 12580: 66,37
+ 12581: 66,38
+ 12582: 66,39
+ 12583: 66,40
+ 12584: 66,41
+ 12585: 66,42
+ 12586: 66,43
+ 12587: 69,43
+ 12588: 70,43
+ 12589: 71,43
+ 12590: 73,43
+ 12591: 74,43
+ 12592: 75,43
+ 12593: 76,43
+ 12594: 77,43
+ 12595: 78,43
+ 12596: 79,43
+ 12597: 80,43
+ 12598: 81,43
+ 12602: 82,29
+ 12603: 82,31
+ 12604: 82,30
+ 12605: 82,32
+ 12606: 68,25
+ 12607: 82,25
+ 12608: 68,32
+ 12653: 82,36
+ 12654: 82,37
+ 12655: 82,38
+ 12656: 82,39
+ 12657: 82,40
+ 13746: 66,45
+ 13747: 66,46
+ 14239: 82,46
+ 14240: 82,43
+ 14241: 82,44
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 3233: 146,71
+ 3272: 147,58
+ 3363: 126,48
+ 3455: 141,65
+ 3500: 146,51
+ 3548: 138,55
+ 3549: 138,56
+ 3550: 138,57
+ 3551: 139,57
+ 3552: 140,57
+ 3553: 141,57
+ 3554: 141,56
+ 3555: 140,56
+ 3556: 139,56
+ 3557: 139,55
+ 3558: 140,55
+ 3559: 141,55
+ 3574: 139,54
+ 3575: 140,54
+ 3576: 141,54
+ 3577: 142,56
+ 3578: 142,57
+ 3580: 137,56
+ 3581: 132,64
+ 3582: 133,64
+ 10637: 93,41
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 10516: 155,152
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 947: 93,123
+ 985: 121,125
+ 1020: 121,147
+ 1130: 121,130
+ 6288: 103,121
+ 9581: 93,140
+ 14065: 114,151
+ 14721: 134,132
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 14707: 130,133
+ - node:
+ color: '#FA750096'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 1629: 88,107
+ 1630: 86,109
+ 1631: 87,108
+ - node:
+ color: '#FF5C5C93'
+ id: QuarterTileOverlayGreyscale
+ decals:
+ 9758: 143,148
+ 9759: 143,149
+ 9760: 143,150
+ 9761: 143,151
+ 9762: 142,153
+ 9763: 140,153
+ 9764: 139,153
+ 9765: 138,153
+ 9766: 138,152
+ 9767: 138,150
+ 9768: 138,149
+ 9769: 138,148
+ 9770: 142,148
+ 9771: 146,148
+ 9772: 147,148
+ 9773: 147,149
+ 9774: 147,150
+ 9775: 147,151
+ 9776: 148,153
+ 9777: 147,154
+ 9778: 146,154
+ 9779: 145,154
+ 9780: 145,153
+ 9781: 144,153
+ 9782: 144,142
+ 9783: 144,143
+ 9784: 144,145
+ 9785: 144,146
+ - node:
+ color: '#000000C6'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 11015: 118,99
+ - node:
+ color: '#000000C7'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 10919: 120,103
+ 10920: 119,103
+ 10921: 118,103
+ 10922: 117,103
+ 10923: 116,103
+ 10924: 116,102
+ 10925: 116,101
+ 10926: 116,100
+ 10927: 116,99
+ 10928: 116,98
+ 10929: 121,100
+ 10942: 122,100
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 10086: 134,92
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 169: 34,53
+ 170: 34,54
+ 171: 34,55
+ 172: 34,56
+ 173: 34,57
+ 174: 34,58
+ 175: 34,59
+ 176: 34,60
+ 177: 34,61
+ 178: 34,62
+ 179: 35,62
+ 180: 36,62
+ 181: 37,62
+ 250: 49,63
+ 343: 48,36
+ 408: 49,21
+ 420: 52,18
+ 421: 56,22
+ 445: 41,26
+ 497: 33,75
+ 504: 32,76
+ 505: 34,74
+ - node:
+ color: '#3EB38896'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 797: 70,121
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1406: 71,98
+ 1471: 72,90
+ 1844: 81,82
+ 5659: 125,82
+ 11795: 122,85
+ 13458: 58,117
+ 13459: 59,117
+ 13460: 60,117
+ 13461: 61,117
+ 13462: 62,117
+ 13463: 63,117
+ 13464: 60,119
+ 13465: 62,119
+ 13466: 64,119
+ 13929: 118,50
+ 14160: 123,64
+ - node:
+ color: '#79150096'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 5467: 85,71
+ 5468: 86,71
+ 5469: 87,71
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 9997: 152,93
+ - node:
+ color: '#979494FF'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 11836: 103,112
+ 11837: 102,111
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 5179: 113,103
+ 10838: 123,98
+ 11173: 101,72
+ 11175: 102,72
+ 11176: 103,72
+ 11177: 104,72
+ 11178: 108,72
+ 11179: 109,72
+ 11180: 110,72
+ 11181: 111,72
+ 11198: 101,71
+ 11199: 102,71
+ 11200: 103,71
+ 11201: 104,71
+ 11202: 108,71
+ 11203: 109,71
+ 11204: 110,71
+ 11205: 111,71
+ 11216: 100,70
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 10024: 140,98
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 2082: 138,96
+ 2165: 134,109
+ 9896: 154,105
+ 14536: 134,101
+ 14537: 134,102
+ 14538: 134,103
+ 14539: 134,104
+ 14540: 134,105
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 2465: 34,103
+ 2466: 35,103
+ 2467: 35,104
+ 2566: 53,95
+ 2644: 43,112
+ 2662: 39,113
+ 2816: 37,91
+ 2817: 37,92
+ 2818: 37,93
+ 2819: 39,91
+ 2820: 39,92
+ 2821: 39,93
+ 2845: 31,113
+ 2933: 51,105
+ 3021: 38,104
+ 14516: 43,113
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 14587: 60,89
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 6275: 104,117
+ 6276: 114,117
+ 6353: 129,117
+ 6693: 94,76
+ 7129: 96,30
+ 7210: 113,29
+ 7812: 84,18
+ 12264: 62,112
+ 12265: 63,112
+ 12266: 64,112
+ 12267: 67,112
+ 12268: 68,112
+ 12269: 69,112
+ 12270: 70,112
+ 12271: 71,112
+ 12272: 72,112
+ 12273: 73,112
+ 12274: 74,112
+ 12275: 75,112
+ 12276: 76,112
+ 12277: 77,112
+ 12278: 78,112
+ 12279: 79,112
+ 12280: 80,112
+ 12282: 83,112
+ 12325: 57,98
+ 12326: 57,97
+ 12327: 57,95
+ 12328: 57,94
+ 12329: 57,93
+ 12330: 57,92
+ 12331: 57,88
+ 12332: 57,87
+ 12333: 57,86
+ 12334: 57,85
+ 12367: 52,63
+ 12368: 53,63
+ 12369: 54,63
+ 12370: 56,63
+ 12371: 57,63
+ 12372: 58,63
+ 12373: 59,63
+ 12374: 60,63
+ 12375: 62,63
+ 12376: 63,63
+ 12392: 89,67
+ 12393: 89,66
+ 12394: 90,67
+ 12395: 91,67
+ 12456: 93,63
+ 12457: 92,63
+ 12458: 90,63
+ 12459: 89,63
+ 12460: 88,63
+ 12461: 87,63
+ 12681: 73,63
+ 12682: 74,63
+ 12683: 75,63
+ 12685: 79,63
+ 12686: 80,63
+ 12687: 81,63
+ 12732: 100,50
+ 12734: 101,50
+ 12735: 102,50
+ 12736: 103,50
+ 12737: 104,50
+ 12738: 105,50
+ 12739: 107,50
+ 12751: 111,51
+ 12752: 111,52
+ 12753: 111,53
+ 12754: 112,53
+ 12755: 113,53
+ 12756: 115,53
+ 12757: 116,53
+ 12758: 119,53
+ 12760: 120,53
+ 12786: 120,54
+ 12787: 120,55
+ 12788: 120,56
+ 12789: 120,57
+ 12791: 120,61
+ 12792: 120,63
+ 12793: 120,64
+ 12794: 120,65
+ 12795: 120,66
+ 12796: 120,67
+ 12797: 120,68
+ 12798: 120,69
+ 12799: 120,70
+ 12800: 120,71
+ 12801: 120,72
+ 12802: 120,73
+ 12803: 120,74
+ 12804: 120,75
+ 12805: 120,76
+ 12806: 121,76
+ 12807: 122,76
+ 12808: 123,76
+ 12809: 124,76
+ 12810: 125,76
+ 12825: 127,76
+ 12826: 128,76
+ 12827: 129,76
+ 12828: 130,76
+ 12829: 131,76
+ 12830: 134,76
+ 12831: 135,76
+ 12832: 136,76
+ 12834: 140,76
+ 12835: 141,76
+ 12932: 114,79
+ 12933: 114,80
+ 12934: 114,81
+ 12935: 114,82
+ 12936: 114,83
+ 12937: 114,84
+ 12938: 114,85
+ 12939: 114,86
+ 12940: 114,87
+ 12942: 113,70
+ 12943: 113,71
+ 12944: 113,72
+ 12945: 113,73
+ 12946: 113,74
+ 12947: 113,75
+ 12948: 113,76
+ 12949: 114,76
+ 12950: 115,76
+ 12971: 105,90
+ 12972: 105,91
+ 12973: 105,92
+ 12974: 105,93
+ 12975: 105,94
+ 12978: 106,89
+ 12997: 97,76
+ 12998: 98,76
+ 13005: 129,88
+ 13006: 129,89
+ 13007: 129,90
+ 13008: 129,92
+ 13009: 129,93
+ 13027: 129,111
+ 13028: 129,107
+ 13029: 129,106
+ 13030: 129,105
+ 13031: 129,104
+ 13032: 129,103
+ 13033: 129,102
+ 13034: 129,101
+ 13035: 129,100
+ 13036: 129,99
+ 13037: 129,95
+ 13043: 126,98
+ 13113: 118,117
+ 13114: 117,117
+ 13115: 116,117
+ 13116: 115,117
+ 13117: 111,117
+ 13118: 110,117
+ 13119: 109,117
+ 13120: 108,117
+ 13121: 107,117
+ 13122: 106,117
+ 13123: 105,117
+ 13124: 101,117
+ 13125: 100,117
+ 13126: 99,117
+ 13127: 98,117
+ 13156: 110,123
+ 13157: 109,123
+ 13158: 108,123
+ 13159: 107,123
+ 13160: 106,123
+ 13161: 105,123
+ 13162: 105,122
+ 13163: 105,121
+ 13164: 105,120
+ 13198: 84,112
+ 13199: 86,112
+ 13200: 87,112
+ 13201: 88,112
+ 13203: 89,112
+ 13214: 89,116
+ 13215: 89,117
+ 13216: 90,117
+ 13217: 91,117
+ 13218: 92,117
+ 13219: 93,117
+ 13220: 94,117
+ 13221: 95,117
+ 13222: 96,117
+ 13231: 160,119
+ 13302: 147,136
+ 13303: 146,136
+ 13304: 145,136
+ 13305: 144,136
+ 13324: 150,137
+ 13325: 151,137
+ 13331: 160,137
+ 13343: 160,139
+ 13346: 146,140
+ 13352: 150,136
+ 13353: 150,135
+ 13354: 150,134
+ 13355: 150,133
+ 13356: 150,132
+ 13378: 58,110
+ 13379: 58,111
+ 13380: 58,112
+ 13381: 57,112
+ 13382: 57,111
+ 13383: 57,110
+ 13384: 57,109
+ 13385: 57,108
+ 13386: 59,112
+ 13387: 60,112
+ 13388: 57,106
+ 13389: 57,105
+ 13390: 57,104
+ 13391: 57,103
+ 13392: 57,102
+ 13393: 57,101
+ 13394: 57,100
+ 13688: 68,50
+ 13689: 68,51
+ 13690: 68,52
+ 13691: 68,53
+ 13692: 68,54
+ 13693: 68,55
+ 13694: 68,56
+ 13695: 68,57
+ 13696: 68,58
+ 13697: 68,59
+ 13698: 68,60
+ 13699: 68,61
+ 13700: 68,63
+ 13701: 69,63
+ 13702: 70,63
+ 13703: 71,63
+ 13704: 65,63
+ 13708: 64,63
+ 13872: 90,50
+ 13873: 91,50
+ 13874: 92,50
+ 13875: 93,50
+ 13876: 94,50
+ 13877: 97,50
+ 13878: 98,50
+ 13879: 99,50
+ 14304: 86,63
+ 14305: 85,63
+ 14306: 84,63
+ 14307: 84,62
+ 14308: 84,60
+ 14309: 84,59
+ 14310: 84,58
+ 14311: 84,57
+ 14312: 84,56
+ 14313: 84,55
+ 14314: 84,54
+ 14315: 84,53
+ 14324: 84,50
+ 14549: 129,112
+ 14550: 129,114
+ 14551: 129,115
+ 14771: 87,50
+ 14772: 88,50
+ 14773: 89,50
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 12609: 82,25
+ 12610: 84,25
+ 12611: 82,29
+ 12612: 84,26
+ 12613: 84,27
+ 12614: 84,28
+ 12615: 84,29
+ 12616: 84,30
+ 12618: 84,31
+ 12619: 84,32
+ 12620: 84,33
+ 12621: 84,34
+ 12623: 84,36
+ 12624: 84,37
+ 12625: 84,38
+ 12626: 84,39
+ 12627: 84,40
+ 12628: 84,41
+ 12629: 84,42
+ 12631: 81,41
+ 12632: 80,41
+ 12633: 79,41
+ 12634: 78,41
+ 12635: 77,41
+ 12636: 76,41
+ 12637: 75,41
+ 12638: 74,41
+ 12639: 73,41
+ 12640: 72,41
+ 12641: 71,41
+ 12642: 70,41
+ 12643: 69,41
+ 12644: 68,41
+ 12645: 68,40
+ 12648: 68,38
+ 12649: 68,37
+ 12650: 68,36
+ 12652: 68,39
+ 12658: 82,36
+ 12659: 66,25
+ 13447: 60,116
+ 13751: 68,45
+ 13757: 68,46
+ 14236: 84,43
+ 14237: 84,44
+ 14238: 84,46
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 3144: 126,58
+ 3257: 139,69
+ 3270: 141,61
+ 3289: 142,55
+ 3397: 124,54
+ 3413: 155,61
+ 3414: 156,63
+ 3501: 148,50
+ 3560: 141,55
+ 3561: 140,55
+ 3562: 139,55
+ 3563: 138,55
+ 3564: 138,56
+ 3565: 139,56
+ 3566: 140,56
+ 3567: 141,56
+ 3568: 141,57
+ 3569: 140,57
+ 3570: 139,57
+ 3571: 138,57
+ 3572: 138,58
+ 3573: 139,58
+ 3583: 132,64
+ 3584: 133,64
+ 3962: 141,73
+ 4401: 131,58
+ 5007: 102,86
+ 10692: 96,45
+ 10702: 102,42
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 10527: 152,148
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 833: 98,123
+ 927: 95,154
+ 6281: 116,120
+ 14035: 95,127
+ - node:
+ color: '#FA750096'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 1603: 88,103
+ 1623: 86,109
+ 1632: 87,108
+ 1633: 88,107
+ 14137: 87,96
+ - node:
+ color: '#FF5C5C93'
+ id: QuarterTileOverlayGreyscale180
+ decals:
+ 9787: 146,142
+ 9788: 146,143
+ 9789: 146,144
+ 9790: 146,146
+ 9791: 146,147
+ 9792: 147,147
+ 9793: 148,147
+ 9794: 149,147
+ 9795: 149,149
+ 9796: 149,150
+ 9797: 149,151
+ 9798: 149,152
+ 9799: 146,152
+ 9800: 145,152
+ 9801: 145,151
+ 9802: 145,150
+ 9803: 145,149
+ 9804: 141,149
+ 9805: 141,150
+ 9806: 141,151
+ 9807: 141,152
+ 9808: 142,152
+ 9809: 141,147
+ 9810: 142,147
+ 9811: 143,147
+ 9844: 147,154
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 137: 35,49
+ 138: 33,51
+ 354: 46,42
+ 355: 46,41
+ 356: 47,41
+ 357: 48,41
+ 358: 49,41
+ 359: 49,40
+ 360: 49,39
+ 361: 49,38
+ 362: 49,37
+ 363: 49,36
+ 388: 48,27
+ 410: 52,29
+ 442: 45,26
+ 503: 34,76
+ 7104: 99,23
+ 11087: 48,70
+ 11088: 49,70
+ 11089: 50,70
+ 11090: 51,70
+ 11091: 52,70
+ 11098: 47,70
+ 11104: 52,71
+ 11105: 52,72
+ 11106: 52,73
+ 11107: 52,74
+ 12335: 55,69
+ 12336: 55,72
+ 12337: 55,73
+ 12338: 55,74
+ 12339: 55,75
+ 12340: 55,76
+ 12347: 56,63
+ 12348: 57,63
+ 12349: 58,63
+ 12350: 59,63
+ 12351: 60,63
+ 12352: 62,63
+ 12353: 63,63
+ 12354: 55,67
+ 12355: 54,63
+ 12356: 53,63
+ 12357: 52,63
+ 12361: 52,66
+ 13706: 65,63
+ 13707: 64,63
+ 13709: 66,63
+ 13710: 66,57
+ 13711: 66,58
+ 13712: 66,59
+ 13713: 66,60
+ 13714: 66,61
+ 14767: 43,79
+ - node:
+ color: '#334E6DFF'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 4117: 48,49
+ 4118: 48,50
+ 4119: 48,51
+ 4120: 48,52
+ 4122: 49,49
+ 4123: 49,50
+ 4124: 49,51
+ 4125: 49,52
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1407: 78,98
+ 1470: 77,90
+ 1504: 72,86
+ 1688: 81,102
+ 1701: 73,104
+ 1703: 75,105
+ 1797: 61,101
+ 1798: 61,100
+ 1830: 68,82
+ 1831: 68,83
+ 1835: 68,81
+ 1840: 69,80
+ 5005: 110,86
+ 12151: 60,83
+ 12212: 62,112
+ 12213: 63,112
+ 12214: 64,112
+ 12215: 65,112
+ 12216: 68,112
+ 12217: 70,112
+ 12218: 69,112
+ 12219: 71,112
+ 12220: 72,112
+ 12221: 73,112
+ 12222: 74,112
+ 12223: 75,112
+ 12224: 76,112
+ 12225: 77,112
+ 12226: 78,112
+ 12227: 79,112
+ 12228: 80,112
+ 12230: 81,112
+ 12470: 84,25
+ 12517: 82,32
+ 12518: 82,31
+ 12519: 82,30
+ 12520: 82,29
+ 12526: 82,36
+ 12527: 82,37
+ 12528: 82,38
+ 12529: 82,39
+ 12530: 82,40
+ 12531: 82,41
+ 12532: 81,41
+ 12533: 80,41
+ 12534: 79,41
+ 12535: 78,41
+ 12536: 77,41
+ 12537: 76,41
+ 12538: 75,41
+ 12539: 74,41
+ 12540: 73,41
+ 12541: 72,41
+ 12542: 71,41
+ 12543: 70,41
+ 12544: 69,41
+ 12545: 66,43
+ 12546: 66,42
+ 12547: 66,41
+ 12548: 66,40
+ 12549: 66,39
+ 12550: 66,38
+ 12551: 66,37
+ 12552: 66,35
+ 12553: 66,34
+ 12554: 66,33
+ 12555: 66,32
+ 12556: 66,31
+ 12557: 68,36
+ 12558: 66,30
+ 12559: 66,29
+ 12560: 66,28
+ 12561: 66,27
+ 12562: 66,26
+ 12563: 66,25
+ 12564: 68,25
+ 12565: 82,25
+ 12743: 112,53
+ 12744: 113,53
+ 12745: 115,53
+ 12746: 116,53
+ 12747: 119,53
+ 12759: 120,53
+ 13357: 58,110
+ 13358: 58,111
+ 13360: 58,112
+ 13361: 59,112
+ 13362: 60,112
+ 13744: 66,46
+ 13745: 66,45
+ 14138: 62,99
+ 14231: 82,44
+ 14232: 82,46
+ - node:
+ color: '#79150096'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 5417: 72,72
+ 5418: 73,71
+ 5465: 84,77
+ 12377: 86,66
+ 12378: 86,67
+ 12379: 86,68
+ 12380: 90,67
+ 12381: 91,67
+ 12428: 92,67
+ 13416: 92,70
+ 13417: 92,71
+ 13418: 92,72
+ 13419: 92,73
+ 13420: 92,74
+ 13421: 92,75
+ 13422: 92,76
+ 13423: 92,77
+ 13424: 92,78
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 9979: 146,95
+ - node:
+ color: '#8D1C9996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 2437: 142,90
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 5199: 103,103
+ 5215: 94,103
+ 11217: 112,70
+ 12674: 81,63
+ 12675: 80,63
+ 12676: 79,63
+ 12678: 75,63
+ 12679: 74,63
+ 12680: 73,63
+ 12897: 98,79
+ 12898: 98,80
+ 12899: 98,81
+ 12900: 98,82
+ 12901: 98,83
+ 12902: 98,84
+ 12903: 98,85
+ 12904: 98,86
+ 12905: 98,87
+ 12906: 103,89
+ 12907: 103,90
+ 12908: 103,91
+ 12909: 103,92
+ 12910: 103,93
+ 12911: 103,94
+ 12912: 99,70
+ 12913: 99,71
+ 12914: 99,72
+ 12915: 99,73
+ 12916: 99,74
+ 12917: 99,75
+ 12918: 99,76
+ 12919: 98,76
+ 12920: 97,76
+ 12951: 115,76
+ 12952: 114,76
+ 13010: 127,97
+ 13011: 127,98
+ 13012: 126,98
+ 13013: 126,101
+ 13014: 127,102
+ 13097: 118,117
+ 13098: 117,117
+ 13099: 116,117
+ 13100: 115,117
+ 13101: 98,117
+ 13102: 99,117
+ 13103: 100,117
+ 13104: 100,117
+ 13105: 101,117
+ 13106: 105,117
+ 13107: 106,117
+ 13108: 107,117
+ 13109: 108,117
+ 13110: 109,117
+ 13111: 110,117
+ 13112: 111,117
+ 13135: 111,120
+ 13673: 71,63
+ 13674: 70,63
+ 13675: 69,63
+ 14249: 82,63
+ 14250: 82,62
+ 14251: 82,60
+ 14252: 82,59
+ 14253: 82,58
+ 14254: 82,57
+ 14255: 82,56
+ 14256: 82,50
+ 14257: 82,51
+ 14258: 82,52
+ 14259: 82,53
+ 14260: 82,54
+ 14261: 82,55
+ 14761: 92,100
+ - node:
+ zIndex: 1
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 14650: 127,95
+ 14655: 127,103
+ 14656: 127,104
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 2028: 143,109
+ 2029: 144,110
+ 2030: 142,108
+ 2031: 143,110
+ 2175: 131,108
+ 2180: 134,96
+ 9895: 151,105
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1765: 61,92
+ 1766: 61,93
+ 1767: 61,94
+ 1768: 61,95
+ 2549: 51,95
+ 2663: 47,113
+ 2665: 42,99
+ 2720: 48,88
+ 2721: 47,89
+ 2722: 47,90
+ 2723: 47,91
+ 2724: 48,89
+ 2725: 48,90
+ 2804: 37,87
+ 2805: 37,88
+ 2806: 37,89
+ 2807: 39,87
+ 2808: 39,88
+ 2809: 39,89
+ 2932: 47,105
+ 12295: 55,85
+ 12296: 55,89
+ 12297: 55,90
+ 12298: 55,91
+ 12299: 55,92
+ 12300: 55,93
+ 12301: 55,94
+ 12302: 55,95
+ 12303: 55,98
+ 12304: 55,86
+ 13810: 55,100
+ 13811: 55,103
+ 13815: 55,104
+ 14765: 43,80
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 6106: 55,95
+ 6144: 55,105
+ 6277: 112,117
+ 6278: 102,117
+ 6352: 127,117
+ 6406: 127,112
+ 6527: 118,76
+ 7123: 97,18
+ 12090: 124,109
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 9731: 147,149
+ 9732: 147,150
+ 9733: 147,151
+ 9734: 147,152
+ 9735: 146,152
+ 9736: 142,152
+ 9737: 143,152
+ 9738: 143,151
+ 9739: 143,150
+ 9740: 143,149
+ 9741: 144,142
+ 9742: 144,143
+ 9743: 144,145
+ 9744: 144,146
+ 9746: 143,147
+ 9747: 142,147
+ 9748: 141,147
+ 9749: 138,148
+ 9750: 138,149
+ 9751: 138,150
+ 9752: 138,152
+ 9753: 138,153
+ 9754: 145,154
+ 9755: 149,147
+ 9756: 148,147
+ 9757: 147,147
+ 9812: 144,147
+ 12844: 127,86
+ 12845: 127,85
+ 12846: 127,84
+ 12847: 127,83
+ 12848: 127,82
+ 12849: 127,81
+ 12850: 127,80
+ 12851: 127,79
+ 13044: 127,106
+ 13045: 127,107
+ 13046: 127,115
+ 13047: 127,111
+ 13048: 127,110
+ 13049: 127,109
+ 13050: 127,108
+ 13250: 148,123
+ 13251: 148,122
+ 13252: 148,121
+ 13253: 148,120
+ 13307: 151,137
+ 13313: 160,137
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 14657: 127,105
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 3143: 129,58
+ 3156: 144,61
+ 3256: 147,69
+ 3297: 138,54
+ 3328: 152,55
+ 3362: 126,51
+ 3366: 129,47
+ 3367: 133,44
+ 3479: 154,56
+ 3480: 154,55
+ 3481: 154,57
+ 3482: 154,54
+ 3483: 154,53
+ 3484: 154,52
+ 3485: 154,51
+ 3499: 146,50
+ 3506: 140,45
+ 3507: 140,46
+ 3508: 140,47
+ 3509: 140,48
+ 3520: 131,51
+ 3521: 131,50
+ 3522: 131,49
+ 3523: 131,48
+ 3524: 131,47
+ 3525: 131,46
+ 3526: 131,45
+ 3960: 137,70
+ 9650: 151,152
+ 10691: 93,45
+ 12704: 107,50
+ 12706: 105,50
+ 12707: 104,50
+ 12708: 103,50
+ 12709: 102,50
+ 12710: 101,50
+ 12711: 100,50
+ 12781: 121,76
+ 12782: 122,76
+ 12783: 123,76
+ 12784: 124,76
+ 12785: 125,76
+ 12811: 144,76
+ 12814: 141,76
+ 12815: 140,76
+ 12817: 136,76
+ 12818: 135,76
+ 12819: 134,76
+ 12820: 131,76
+ 12821: 130,76
+ 12822: 129,76
+ 12823: 128,76
+ 12824: 127,76
+ 13206: 90,117
+ 13207: 91,117
+ 13208: 92,117
+ 13209: 93,117
+ 13210: 94,117
+ 13211: 95,117
+ 13212: 96,117
+ 13854: 99,50
+ 13855: 98,50
+ 13856: 97,50
+ 13857: 94,50
+ 13858: 93,50
+ 13859: 92,50
+ 13860: 91,50
+ 13861: 90,50
+ 14768: 89,50
+ 14769: 88,50
+ 14770: 87,50
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 967: 121,154
+ 984: 121,127
+ 1021: 121,144
+ 1302: 118,123
+ 9580: 93,138
+ 10276: 137,122
+ 12434: 92,66
+ 12446: 87,63
+ 12447: 88,63
+ 12448: 89,63
+ 12451: 90,63
+ 12452: 92,63
+ 12453: 93,63
+ 12454: 94,63
+ 13136: 111,121
+ 13137: 111,122
+ 13138: 111,123
+ 13139: 110,123
+ 13140: 109,123
+ 13141: 108,123
+ 13142: 107,123
+ 13143: 106,123
+ 13287: 144,136
+ 13288: 145,136
+ 13289: 146,136
+ 13290: 147,136
+ 13291: 148,136
+ 13292: 148,135
+ 13293: 148,134
+ 13294: 148,133
+ 13295: 148,132
+ 13296: 148,130
+ 14063: 117,150
+ 14302: 85,63
+ 14303: 86,63
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 14706: 130,138
+ - node:
+ color: '#FA750096'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 1618: 87,103
+ 1619: 87,102
+ 1620: 87,101
+ 1621: 87,100
+ 1622: 88,109
+ 13193: 89,112
+ 13194: 88,112
+ 13195: 87,112
+ 13196: 86,112
+ 13197: 84,112
+ 14762: 91,100
+ - node:
+ color: '#FFFFFFC6'
+ id: QuarterTileOverlayGreyscale270
+ decals:
+ 10943: 117,98
+ 10944: 118,98
+ 10945: 117,99
+ 10947: 118,100
+ 10948: 117,100
+ 10949: 117,101
+ 10950: 118,101
+ 10951: 118,102
+ 10952: 117,102
+ 10953: 117,103
+ 10954: 118,103
+ 10955: 119,103
+ 10956: 119,102
+ 10957: 120,103
+ 10958: 121,103
+ 10959: 121,102
+ 10960: 120,102
+ 10961: 120,101
+ 10962: 119,101
+ 10963: 119,100
+ 10964: 119,99
+ 10965: 119,98
+ 10966: 120,98
+ 10967: 121,98
+ 10968: 122,99
+ 10969: 120,99
+ 10970: 122,98
+ 10971: 123,100
+ 10972: 122,100
+ 10973: 121,100
+ 10974: 120,100
+ 10975: 121,101
+ 10976: 121,99
+ 11013: 118,99
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10085: 134,90
+ - node:
+ color: '#334E6DC8'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 409: 49,27
+ 422: 52,30
+ 423: 56,26
+ 444: 41,22
+ 501: 32,74
+ 11092: 47,69
+ 11093: 48,69
+ 11094: 49,69
+ 11095: 50,69
+ 11096: 51,69
+ 11097: 52,69
+ 11099: 52,70
+ 11100: 52,71
+ 11101: 52,72
+ 11102: 52,73
+ 11103: 52,74
+ 12358: 54,66
+ 12359: 53,66
+ 12360: 52,66
+ 13000: 129,93
+ 13001: 129,92
+ 13002: 129,90
+ 13003: 129,89
+ 13004: 129,88
+ 14766: 43,78
+ - node:
+ color: '#334E6DFF'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 4112: 48,49
+ 4113: 48,50
+ 4114: 48,51
+ 4115: 48,52
+ 4127: 47,49
+ 4128: 47,50
+ 4129: 47,51
+ 4130: 47,52
+ - node:
+ color: '#3EB38896'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 12231: 67,114
+ 12232: 68,114
+ 12233: 71,114
+ 12234: 72,114
+ 12235: 73,114
+ 12236: 74,114
+ 12237: 77,114
+ 12238: 78,114
+ 12239: 79,114
+ 12240: 80,114
+ 12241: 81,114
+ 12242: 82,114
+ 12243: 83,114
+ 12244: 84,114
+ - node:
+ color: '#52B4E996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1370: 68,91
+ 1405: 71,96
+ 1665: 67,108
+ 1702: 72,103
+ 1705: 74,104
+ 1729: 70,81
+ 1795: 61,101
+ 1796: 61,100
+ 1832: 67,81
+ 1833: 67,82
+ 1834: 67,83
+ 5656: 122,83
+ 12471: 84,25
+ 12472: 84,26
+ 12473: 84,27
+ 12474: 84,28
+ 12476: 84,30
+ 12477: 84,31
+ 12478: 84,32
+ 12479: 84,33
+ 12480: 84,34
+ 12482: 84,36
+ 12483: 84,37
+ 12484: 84,38
+ 12485: 84,39
+ 12486: 84,40
+ 12487: 84,41
+ 12488: 84,42
+ 12492: 81,43
+ 12493: 80,43
+ 12494: 79,43
+ 12495: 78,43
+ 12496: 77,43
+ 12497: 76,43
+ 12498: 75,43
+ 12499: 74,43
+ 12500: 73,43
+ 12501: 71,43
+ 12502: 70,43
+ 12503: 69,43
+ 12504: 68,43
+ 12505: 68,36
+ 12506: 68,37
+ 12507: 68,38
+ 12509: 68,40
+ 12510: 82,32
+ 12511: 82,25
+ 12512: 68,25
+ 12513: 68,29
+ 12514: 68,30
+ 12515: 68,31
+ 12516: 68,32
+ 12617: 84,29
+ 12651: 68,39
+ 12740: 111,50
+ 12741: 111,51
+ 12742: 111,52
+ 13363: 57,100
+ 13364: 57,101
+ 13365: 57,102
+ 13366: 57,103
+ 13367: 57,104
+ 13368: 57,105
+ 13369: 57,106
+ 13370: 57,108
+ 13371: 57,109
+ 13372: 57,110
+ 13373: 57,111
+ 13374: 58,111
+ 13375: 58,110
+ 13738: 68,45
+ 13756: 68,46
+ 14233: 84,43
+ 14234: 84,44
+ 14235: 84,46
+ - node:
+ color: '#79150096'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 5424: 75,70
+ 5470: 85,77
+ 5471: 86,77
+ 5472: 87,77
+ 12382: 89,66
+ 12383: 86,68
+ 12384: 87,68
+ 12385: 90,69
+ 12386: 91,69
+ 12413: 85,65
+ 12414: 84,65
+ 12415: 83,65
+ 12416: 81,65
+ 12417: 82,65
+ 12418: 80,65
+ 12419: 79,65
+ 13404: 78,65
+ 13405: 77,65
+ 13406: 76,65
+ 13407: 75,65
+ 13408: 74,65
+ 13409: 73,65
+ - node:
+ color: '#8C347F96'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 13223: 159,119
+ 13224: 156,119
+ 13227: 160,119
+ 13228: 154,119
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 9996: 152,94
+ - node:
+ color: '#9FED5896'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 5187: 104,99
+ 10840: 122,101
+ 12867: 113,69
+ 12868: 113,70
+ 12869: 113,71
+ 12870: 113,72
+ 12871: 113,73
+ 12872: 113,74
+ 12873: 113,75
+ 12877: 111,88
+ 12878: 112,88
+ 12879: 110,88
+ 12880: 109,88
+ 12881: 108,88
+ 12882: 107,88
+ 12883: 106,88
+ 12884: 106,89
+ 12885: 105,89
+ 12886: 105,90
+ 12887: 105,91
+ 12888: 105,92
+ 12889: 105,93
+ 12890: 105,94
+ 12891: 103,94
+ 12892: 99,88
+ 12893: 100,88
+ 12894: 101,88
+ 12895: 102,88
+ 12896: 97,78
+ 13015: 126,101
+ 13128: 105,120
+ 13129: 105,119
+ 13130: 106,119
+ 13131: 107,119
+ 13132: 108,119
+ 13133: 109,119
+ 13134: 110,119
+ 13676: 68,61
+ 13677: 68,60
+ 13678: 68,59
+ 13679: 68,58
+ 13680: 68,57
+ 13681: 68,55
+ 13682: 68,56
+ 13683: 68,54
+ 13684: 68,53
+ 13685: 68,52
+ 13686: 68,51
+ 13687: 68,50
+ 14760: 91,100
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10023: 140,97
+ - node:
+ color: '#A4610696'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 2025: 142,108
+ 2026: 143,109
+ 2027: 144,110
+ 2083: 140,100
+ 2174: 134,107
+ 3952: 143,108
+ 9858: 157,104
+ 9869: 153,111
+ 9893: 154,108
+ 13016: 129,95
+ 13017: 129,107
+ 13018: 129,106
+ 13019: 129,105
+ 13020: 129,104
+ 13021: 129,103
+ 13022: 129,102
+ 13023: 129,101
+ 13024: 129,100
+ 13025: 129,99
+ 13026: 129,111
+ 14552: 129,112
+ 14553: 129,114
+ 14554: 129,115
+ - node:
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 611: 33,49
+ 1759: 61,95
+ 1760: 61,94
+ 1761: 61,93
+ 1762: 61,92
+ 2565: 53,88
+ 2573: 47,97
+ 2657: 39,111
+ 2726: 47,89
+ 2727: 48,88
+ 2728: 48,89
+ 2729: 48,90
+ 2730: 47,90
+ 2731: 47,91
+ 2822: 37,87
+ 2823: 37,88
+ 2824: 37,89
+ 2825: 39,87
+ 2826: 39,88
+ 2827: 39,89
+ 2844: 31,111
+ 2871: 45,114
+ 3022: 40,101
+ 12305: 57,85
+ 12306: 57,86
+ 12307: 57,87
+ 12308: 57,88
+ 12309: 57,92
+ 12310: 57,93
+ 12311: 57,94
+ 12312: 57,95
+ 12313: 57,97
+ 12314: 57,98
+ 14764: 43,79
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 14588: 60,91
+ - node:
+ color: '#D4D4D428'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 5738: 118,106
+ 6025: 57,65
+ 6463: 129,78
+ 6846: 150,119
+ 7032: 140,149
+ 7176: 106,20
+ 7796: 68,18
+ 7811: 84,20
+ 8332: 60,78
+ 12087: 125,107
+ - node:
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 9703: 138,153
+ 9704: 139,153
+ 9705: 140,153
+ 9706: 142,153
+ 9707: 144,153
+ 9708: 146,154
+ 9709: 145,154
+ 9710: 147,154
+ 9711: 147,153
+ 9712: 148,153
+ 9713: 149,151
+ 9714: 149,150
+ 9715: 149,149
+ 9716: 149,147
+ 9717: 145,149
+ 9718: 145,150
+ 9719: 145,151
+ 9720: 146,148
+ 9721: 145,148
+ 9722: 142,148
+ 9723: 141,148
+ 9724: 141,149
+ 9725: 141,150
+ 9726: 141,151
+ 9727: 146,146
+ 9728: 146,144
+ 9729: 146,143
+ 9730: 146,142
+ 12259: 62,114
+ 12260: 64,114
+ 12283: 60,114
+ 12284: 59,114
+ 12285: 58,114
+ 12286: 57,114
+ 12287: 56,114
+ 12288: 55,114
+ 12837: 125,78
+ 12838: 117,78
+ 12839: 118,78
+ 12840: 119,78
+ 12841: 120,78
+ 12842: 121,78
+ 12843: 122,78
+ 12921: 115,78
+ 12922: 114,78
+ 12923: 114,79
+ 12924: 114,80
+ 12925: 114,81
+ 12926: 114,82
+ 12927: 114,83
+ 12928: 114,84
+ 12929: 114,85
+ 12930: 114,86
+ 12931: 114,87
+ 13254: 147,119
+ 13255: 146,119
+ 13256: 145,119
+ 13257: 143,119
+ 13258: 142,119
+ 13314: 147,139
+ 13315: 148,139
+ 13316: 150,139
+ 13317: 151,139
+ 13323: 160,139
+ 13332: 160,137
+ 13344: 146,140
+ 13345: 146,139
+ 13347: 150,132
+ 13348: 150,133
+ 13349: 150,134
+ 13350: 150,135
+ 13351: 150,136
+ - node:
+ zIndex: 1
+ color: '#D4D4D496'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 13642: 65,114
+ - node:
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 3071: 127,74
+ 3138: 128,60
+ 3139: 131,56
+ 3157: 144,61
+ 3271: 141,58
+ 3465: 139,62
+ 3472: 153,50
+ 3473: 153,51
+ 3474: 153,52
+ 3475: 153,53
+ 3476: 153,54
+ 3477: 153,55
+ 3478: 153,56
+ 3498: 148,51
+ 3502: 140,45
+ 3503: 140,46
+ 3504: 140,47
+ 3505: 140,48
+ 3510: 131,45
+ 3511: 131,46
+ 3512: 131,47
+ 3513: 131,48
+ 3514: 131,49
+ 3515: 131,50
+ 3516: 131,51
+ 4990: 102,78
+ 10636: 96,41
+ 10805: 92,115
+ 12761: 120,53
+ 12762: 120,54
+ 12763: 120,55
+ 12764: 120,56
+ 12765: 120,57
+ 12767: 120,61
+ 12768: 120,63
+ 12769: 120,64
+ 12770: 120,65
+ 12771: 120,66
+ 12772: 120,67
+ 12773: 120,68
+ 12774: 120,69
+ 12775: 120,70
+ 12776: 120,71
+ 12777: 120,72
+ 12778: 120,73
+ 12779: 120,74
+ 12780: 120,75
+ 13202: 89,112
+ 13205: 89,116
+ 14287: 90,52
+ 14288: 88,52
+ 14289: 87,52
+ 14290: 86,52
+ 14291: 85,52
+ 14293: 84,53
+ 14294: 84,54
+ 14295: 84,55
+ 14296: 84,56
+ 14297: 84,57
+ 14298: 84,58
+ 14299: 84,59
+ 14300: 84,60
+ 14317: 84,52
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10526: 153,149
+ - node:
+ color: '#EFB34196'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 944: 95,125
+ 3859: 132,136
+ 3864: 128,143
+ 6289: 113,121
+ 7059: 144,134
+ 10278: 138,122
+ 10279: 137,126
+ 12430: 89,65
+ 12431: 90,65
+ 12432: 91,65
+ 13058: 139,119
+ 13059: 137,119
+ 13060: 116,119
+ 13061: 117,119
+ 13062: 118,119
+ 13063: 120,119
+ 13064: 121,119
+ 13065: 122,119
+ 13066: 123,119
+ 13067: 124,119
+ 13068: 125,119
+ 13069: 126,119
+ 13070: 127,119
+ 13071: 129,119
+ 13072: 130,119
+ 13073: 131,119
+ 13074: 132,119
+ 13075: 133,119
+ 13076: 134,119
+ 13077: 135,119
+ 13144: 105,122
+ 13145: 105,121
+ 13166: 91,119
+ 13167: 92,119
+ 13168: 93,119
+ 13169: 94,119
+ 13170: 95,119
+ 13171: 96,119
+ 13172: 98,119
+ 13173: 99,119
+ 13179: 90,119
+ 14010: 89,119
+ 14301: 84,62
+ 14397: 128,119
+ 14720: 133,132
+ - node:
+ color: '#FA750096'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 1614: 86,100
+ 1615: 86,101
+ 1616: 86,102
+ 1628: 86,107
+ 14148: 83,97
+ 14763: 90,100
+ - node:
+ color: '#FFFFFFC6'
+ id: QuarterTileOverlayGreyscale90
+ decals:
+ 10977: 116,102
+ 10978: 116,101
+ 10979: 116,100
+ 10980: 116,99
+ 10981: 116,98
+ 10982: 116,97
+ 10983: 117,97
+ 10984: 117,98
+ 10985: 117,99
+ 10986: 117,100
+ 10987: 117,101
+ 10988: 117,102
+ 10989: 118,102
+ 10990: 118,101
+ 10991: 118,100
+ 10994: 118,98
+ 10995: 118,97
+ 10996: 119,97
+ 10997: 119,98
+ 10998: 119,99
+ 10999: 119,100
+ 11000: 119,101
+ 11001: 119,102
+ 11002: 120,102
+ 11003: 120,101
+ 11004: 120,100
+ 11005: 120,99
+ 11006: 121,99
+ 11007: 122,99
+ 11008: 121,98
+ 11009: 120,98
+ 11010: 120,97
+ 11011: 121,97
+ 11012: 118,99
+ - node:
+ cleanable: True
+ zIndex: 2
+ color: '#FFFFFFFF'
+ id: Remains
+ decals:
+ 10515: 163.5468,148.1768
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: Rock07
+ decals:
+ 10163: 131.50783,80.3331
+ - node:
+ cleanable: True
+ color: '#FFA500FF'
+ id: Sirius
+ decals:
+ 7702: 99.973526,25.08815
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign1
+ decals:
+ 8043: 103,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign2
+ decals:
+ 8042: 104,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign3
+ decals:
+ 8041: 105,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign4
+ decals:
+ 8040: 106,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign5
+ decals:
+ 8039: 107,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign6
+ decals:
+ 8038: 108,76
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: SpaceStationSign7
+ decals:
+ 8037: 109,76
+ - node:
+ color: '#FFFFFFFF'
+ id: StandClear
+ decals:
+ 7704: 94,18
+ - node:
+ color: '#00000093'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3594: 135,46
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 10054: 131,94
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 229: 51,61
+ 251: 46,66
+ 280: 55,59
+ 412: 51,19
+ 5602: 42,46
+ 6930: 133,153
+ 7094: 98,28
+ 11070: 51,75
+ 11077: 46,71
+ 11079: 46,75
+ - node:
+ color: '#334E6DFF'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 4109: 46,51
+ - node:
+ color: '#3EB38896'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 14008: 87,123
+ 14150: 68,123
+ 14154: 72,119
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 1377: 70,92
+ 1515: 79,84
+ 1682: 71,104
+ 1686: 80,104
+ 1700: 73,103
+ 1793: 59,104
+ 1822: 65,88
+ 1841: 65,84
+ 1852: 91,92
+ 3033: 122,65
+ 5660: 124,86
+ 6571: 113,51
+ 11024: 86,88
+ 11793: 116,86
+ 12079: 59,108
+ 12080: 60,110
+ 12155: 59,87
+ 14098: 65,104
+ - node:
+ color: '#79150096'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 5388: 68,76
+ 5402: 61,75
+ 5411: 65,76
+ 5460: 81,71
+ 5461: 84,76
+ 5462: 84,73
+ - node:
+ color: '#8C347F96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 6760: 155,123
+ 6761: 154,128
+ 6764: 157,128
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 10000: 150,90
+ - node:
+ color: '#979494FF'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 11863: 99,113
+ 11864: 100,114
+ 11884: 95,103
+ 11889: 98,93
+ 11928: 104,98
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3057: 122,74
+ 5178: 112,104
+ 5211: 93,97
+ 5214: 93,104
+ 5235: 97,94
+ 5298: 115,104
+ 7238: 88,28
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 10027: 154,100
+ 10040: 142,96
+ - node:
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 2020: 138,107
+ 2024: 142,110
+ 2033: 142,106
+ 2037: 137,97
+ 2084: 136,113
+ 9851: 147,106
+ 9852: 148,111
+ 9867: 152,112
+ 9924: 154,104
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 2606: 30,101
+ 2617: 30,117
+ 2676: 37,108
+ 2693: 24,105
+ 2708: 46,93
+ 2739: 46,84
+ 2780: 35,94
+ 2851: 38,114
+ 2872: 41,117
+ 3026: 37,102
+ 3028: 37,84
+ 3602: 122,68
+ 14603: 50,107
+ - node:
+ color: '#D4D4D428'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 5723: 98,115
+ 6897: 148,143
+ 6967: 140,138
+ 7156: 94,32
+ 7188: 111,31
+ 7198: 118,42
+ 7793: 66,23
+ 11017: 124,104
+ 13176: 87,119
+ 14522: 110,55
+ - node:
+ color: '#D4D4D496'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3593: 135,49
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3090: 130,66
+ 3112: 130,74
+ 3232: 146,72
+ 3315: 144,53
+ 3319: 151,58
+ 3348: 138,49
+ 3386: 122,51
+ 3394: 122,56
+ 3419: 151,64
+ 3442: 151,74
+ 3451: 141,67
+ 9656: 155,153
+ 10640: 93,42
+ 10681: 101,48
+ 10701: 101,43
+ 13847: 90,48
+ - node:
+ zIndex: 1
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 14204: 94,108
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 878: 93,156
+ 980: 120,130
+ 1018: 120,147
+ 1052: 104,152
+ 1068: 125,129
+ 1096: 131,129
+ 1114: 125,140
+ 1181: 104,162
+ 1195: 115,162
+ 1320: 118,132
+ 1321: 118,140
+ 1330: 97,132
+ 1332: 97,140
+ 3050: 122,71
+ 3861: 125,146
+ 3872: 130,146
+ 3937: 115,125
+ 6292: 100,121
+ 6293: 103,125
+ 7220: 115,23
+ 13920: 115,27
+ 14066: 114,152
+ 14284: 86,61
+ 14722: 134,136
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 10178: 96,162
+ - node:
+ color: '#FA750096'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 1857: 85,110
+ 1862: 85,104
+ - node:
+ color: '#FFFFFF93'
+ id: ThreeQuarterTileOverlayGreyscale
+ decals:
+ 3592: 135,52
+ - node:
+ color: '#00000093'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3204: 136,45
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 10056: 137,88
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 76: 44,48
+ 244: 50,48
+ 248: 49,62
+ 249: 50,63
+ 342: 48,35
+ 407: 50,21
+ 416: 53,18
+ 417: 52,17
+ 418: 56,21
+ 424: 57,22
+ 6926: 136,150
+ 11064: 53,68
+ 11224: 61,54
+ 13845: 49,73
+ - node:
+ color: '#3EB38896'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 803: 77,116
+ 3940: 85,121
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 1508: 84,86
+ 1509: 84,82
+ 1684: 78,102
+ 1704: 74,105
+ 1810: 63,106
+ 1850: 89,90
+ 1851: 93,90
+ 3035: 124,64
+ 5657: 125,80
+ 6586: 120,47
+ 11025: 91,84
+ 14161: 123,62
+ - node:
+ zIndex: 1
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 14208: 96,106
+ - node:
+ color: '#79150096'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 5410: 66,72
+ 5423: 77,67
+ 5449: 90,71
+ 5473: 90,72
+ 5474: 90,75
+ - node:
+ color: '#8C347F96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 6777: 159,121
+ 6779: 155,125
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 9992: 152,88
+ 9994: 153,93
+ 10002: 148,94
+ - node:
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 2431: 144,87
+ - node:
+ color: '#979494FF'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 11829: 102,107
+ 11830: 103,111
+ 11831: 117,107
+ 11885: 100,97
+ 11892: 100,91
+ 11927: 112,97
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3056: 124,73
+ 5165: 113,96
+ 5228: 101,96
+ 5238: 101,90
+ 5289: 123,96
+ 7235: 92,25
+ 10837: 124,98
+ 11209: 101,70
+ 11214: 100,68
+ 11257: 113,62
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 10022: 152,98
+ 10025: 158,96
+ - node:
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 2023: 144,108
+ 2035: 145,102
+ 2086: 140,109
+ 2365: 158,102
+ 2426: 144,93
+ 9918: 151,109
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 2580: 53,99
+ 2619: 35,107
+ 2620: 36,110
+ 2681: 28,99
+ 2713: 49,86
+ 2738: 53,80
+ 2765: 44,82
+ 2766: 40,82
+ 3019: 40,104
+ 3044: 124,67
+ 14604: 52,105
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 14583: 63,89
+ - node:
+ color: '#D4D4D428'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 6814: 160,117
+ 6904: 150,141
+ 6968: 142,136
+ 7153: 110,18
+ 7184: 113,22
+ 8329: 63,77
+ 9620: 142,140
+ - node:
+ color: '#D4D4D496'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3193: 136,48
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3077: 135,62
+ 3078: 135,58
+ 3278: 149,55
+ 3284: 142,51
+ 3298: 150,48
+ 3320: 155,49
+ 3349: 142,44
+ 3387: 124,46
+ 3392: 127,54
+ 3393: 124,53
+ 3406: 144,73
+ 3411: 155,60
+ 3412: 156,61
+ 3445: 154,66
+ 3452: 145,64
+ 4447: 96,112
+ 10622: 96,44
+ 10623: 99,45
+ 10624: 99,39
+ 10685: 103,45
+ 10704: 102,39
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 10517: 157,151
+ 10522: 157,148
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 832: 98,121
+ 996: 123,121
+ 1047: 106,147
+ 1050: 112,147
+ 1081: 129,121
+ 1120: 136,131
+ 1187: 113,158
+ 1316: 119,142
+ 1318: 119,134
+ 1327: 98,142
+ 1333: 98,134
+ 3052: 124,70
+ 3881: 132,144
+ 3935: 101,123
+ 3945: 119,158
+ 6755: 94,58
+ 7051: 146,130
+ 7211: 120,25
+ 7221: 120,19
+ 14009: 89,121
+ 14034: 96,127
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 10185: 102,158
+ 14711: 129,134
+ - node:
+ color: '#FA750096'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 1590: 89,96
+ 1602: 89,103
+ 1604: 89,106
+ 1670: 83,106
+ 1866: 88,99
+ - node:
+ color: '#FFFFFF93'
+ id: ThreeQuarterTileOverlayGreyscale180
+ decals:
+ 3200: 136,51
+ - node:
+ color: '#00000093'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3205: 135,45
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 10057: 131,88
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 77: 42,48
+ 121: 32,51
+ 122: 33,49
+ 123: 35,48
+ 217: 50,57
+ 219: 49,58
+ 247: 46,48
+ 252: 46,62
+ 279: 55,54
+ 339: 46,35
+ 398: 51,29
+ 451: 50,33
+ 5603: 42,44
+ 6923: 133,150
+ 7082: 101,18
+ 11061: 46,68
+ 11080: 46,73
+ - node:
+ color: '#334E6DFF'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 4111: 46,53
+ - node:
+ color: '#3EB38896'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 6157: 68,116
+ 14007: 87,121
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 1503: 72,85
+ 1506: 65,86
+ 1584: 86,90
+ 1669: 65,106
+ 1680: 71,102
+ 1687: 80,102
+ 1811: 59,106
+ 1839: 65,80
+ 1842: 79,82
+ 1854: 91,90
+ 5662: 124,85
+ 6565: 113,47
+ 11026: 86,84
+ 11792: 116,80
+ 12150: 59,83
+ 13928: 119,50
+ 14140: 59,99
+ 14155: 122,62
+ - node:
+ zIndex: 1
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 14209: 94,106
+ - node:
+ color: '#79150096'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 5403: 61,72
+ 5414: 68,72
+ 5415: 72,71
+ 5416: 73,67
+ 5459: 81,77
+ 5463: 84,72
+ 5464: 84,75
+ - node:
+ color: '#8C347F96'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 6780: 154,125
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 9985: 146,88
+ 10001: 150,94
+ - node:
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 2432: 142,87
+ - node:
+ color: '#979494FF'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 11814: 99,107
+ 11815: 114,107
+ 11819: 113,111
+ 11886: 95,97
+ 11893: 98,91
+ 11930: 104,97
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3060: 122,73
+ 5188: 103,96
+ 5210: 93,96
+ 5213: 93,103
+ 5237: 97,90
+ 5305: 115,96
+ 7234: 88,25
+ 11210: 111,70
+ 11213: 112,68
+ 11256: 99,62
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 10026: 154,96
+ - node:
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 2036: 142,102
+ 2354: 147,102
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 2542: 46,95
+ 2556: 51,86
+ 2585: 46,99
+ 2618: 30,107
+ 2695: 24,99
+ 2716: 46,86
+ 2751: 46,80
+ 2764: 42,82
+ 2783: 35,86
+ 2930: 46,105
+ 3030: 37,82
+ 3043: 122,67
+ - node:
+ color: '#D4D4D428'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 5764: 120,109
+ 6903: 148,141
+ 6969: 140,136
+ 7154: 104,18
+ 10306: 139,140
+ 11019: 124,103
+ - node:
+ color: '#D4D4D496'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3194: 135,48
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3091: 130,62
+ 3113: 130,68
+ 3123: 129,54
+ 3290: 138,51
+ 3314: 144,48
+ 3318: 151,55
+ 3321: 152,49
+ 3350: 138,44
+ 3368: 129,44
+ 3388: 122,46
+ 3389: 122,53
+ 3422: 151,60
+ 3446: 151,66
+ 10620: 90,45
+ 10621: 93,44
+ 10633: 90,39
+ 10682: 101,45
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 981: 120,127
+ 1019: 120,144
+ 1046: 110,147
+ 1051: 104,147
+ 1074: 125,121
+ 1129: 125,131
+ 1182: 104,158
+ 1301: 118,121
+ 1319: 118,134
+ 1323: 118,142
+ 1324: 97,142
+ 1325: 97,134
+ 3049: 122,70
+ 3860: 125,142
+ 3882: 130,144
+ 3944: 115,158
+ 4406: 137,121
+ 4413: 131,125
+ 7050: 143,130
+ 7217: 116,19
+ 7219: 115,22
+ 14282: 86,59
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 10177: 96,158
+ - node:
+ color: '#FA750096'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 1585: 85,99
+ 1856: 85,106
+ - node:
+ color: '#FFFFFF93'
+ id: ThreeQuarterTileOverlayGreyscale270
+ decals:
+ 3201: 135,51
+ - node:
+ color: '#00000093'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3206: 136,46
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 10055: 137,94
+ - node:
+ color: '#334E6DC8'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 214: 51,55
+ 215: 50,56
+ 230: 53,61
+ 253: 50,66
+ 406: 50,27
+ 413: 52,31
+ 414: 53,30
+ 415: 56,27
+ 425: 57,26
+ 452: 51,34
+ 6931: 136,153
+ 7095: 102,28
+ 11069: 53,75
+ 11229: 61,59
+ 13846: 49,75
+ - node:
+ color: '#334E6DFF'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 4110: 50,51
+ - node:
+ color: '#3EB38896'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 804: 77,119
+ 3941: 85,123
+ - node:
+ color: '#52B4E996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 1379: 79,92
+ 1683: 78,104
+ 1730: 70,84
+ 1794: 63,104
+ 1808: 63,110
+ 1823: 84,88
+ 1843: 84,84
+ 1853: 93,92
+ 3595: 124,65
+ 6577: 120,51
+ 11033: 91,88
+ - node:
+ color: '#79150096'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 5412: 66,76
+ 5450: 90,77
+ 5475: 90,73
+ 5476: 90,76
+ - node:
+ color: '#8C347F96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 6762: 155,128
+ 6763: 159,128
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 9995: 153,94
+ 9998: 152,96
+ 9999: 148,90
+ - node:
+ color: '#8D1C9996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 2436: 144,91
+ - node:
+ color: '#979494FF'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 11846: 116,114
+ 11847: 117,113
+ 11887: 100,103
+ 11888: 100,93
+ 11929: 112,98
+ - node:
+ color: '#9FED5896'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3598: 124,74
+ 5198: 104,104
+ 5221: 101,104
+ 5236: 101,94
+ 10839: 124,101
+ 10841: 122,104
+ - node:
+ angle: -6.283185307179586 rad
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 10028: 158,100
+ 10041: 144,96
+ - node:
+ color: '#A4610696'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 2021: 140,107
+ 2034: 145,106
+ 2085: 140,113
+ 2173: 136,107
+ 2367: 158,104
+ 9861: 157,111
+ 9868: 153,112
+ - node:
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 2459: 35,105
+ 2460: 34,104
+ 2461: 33,103
+ 2621: 36,117
+ 2670: 40,108
+ 2694: 28,105
+ 2707: 49,93
+ 2740: 53,84
+ 2767: 40,84
+ 2856: 48,114
+ 2873: 45,117
+ 2927: 48,108
+ 2989: 52,107
+ 3027: 40,102
+ 3603: 124,68
+ 9539: 53,103
+ - node:
+ zIndex: 1
+ color: '#D381C996'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 14591: 63,91
+ - node:
+ color: '#D4D4D428'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 5724: 118,115
+ 6423: 144,78
+ 6898: 150,143
+ 6970: 142,138
+ 7155: 106,32
+ 7199: 120,42
+ 9625: 142,141
+ - node:
+ color: '#D4D4D496'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3197: 136,49
+ - node:
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3072: 128,74
+ 3073: 135,66
+ 3081: 135,60
+ 3111: 135,74
+ 3234: 149,72
+ 3316: 150,53
+ 3317: 155,58
+ 3351: 142,49
+ 3390: 124,51
+ 3391: 127,56
+ 3408: 144,74
+ 3441: 154,74
+ 3460: 145,67
+ 9655: 153,153
+ 9664: 157,153
+ 10641: 96,42
+ 10679: 103,48
+ 10695: 99,48
+ - node:
+ zIndex: 1
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 14205: 96,108
+ - node:
+ zIndex: 2
+ color: '#DE3A3A96'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 10521: 157,149
+ - node:
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 811: 89,123
+ 954: 123,156
+ 1053: 112,152
+ 1057: 119,152
+ 1069: 129,129
+ 1186: 113,162
+ 1317: 119,132
+ 1322: 119,140
+ 1326: 98,140
+ 1331: 98,132
+ 3599: 124,71
+ 3852: 136,136
+ 3858: 132,140
+ 3862: 128,146
+ 3886: 132,146
+ 3936: 101,125
+ 3946: 119,162
+ 6294: 113,125
+ 6748: 94,61
+ 7057: 146,134
+ 10277: 138,123
+ 10282: 137,129
+ 14723: 133,136
+ - node:
+ zIndex: 1
+ color: '#EFB34196'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 10188: 102,162
+ 14710: 129,137
+ - node:
+ color: '#FA750096'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 1612: 89,110
+ 1863: 89,104
+ 14134: 89,97
+ 14141: 84,97
+ 14147: 83,104
+ - node:
+ color: '#FFFFFF93'
+ id: ThreeQuarterTileOverlayGreyscale90
+ decals:
+ 3198: 136,52
+ - node:
+ cleanable: True
+ color: '#00FFFFFF'
+ id: Tunnel
+ decals:
+ 7707: 101.97727,27.120975
+ - node:
+ color: '#FFFFFFFF'
+ id: VentSmall
+ decals:
+ 13437: 56,119
+ 13438: 55,119
+ 13439: 54,119
+ - node:
+ cleanable: True
+ color: '#A020F0FF'
+ id: Waffle
+ decals:
+ 7708: 88.022026,27.985554
+ - node:
+ color: '#439909FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13986: 66,148
+ - node:
+ color: '#52B4E9FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13943: 67,128
+ - node:
+ color: '#707070FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13981: 65,144
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13958: 65,136
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13957: 66,132
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13998: 67,152
+ - node:
+ color: '#FA7500FF'
+ id: WarnCornerGreyscaleNE
+ decals:
+ 13970: 64,140
+ - node:
+ color: '#439909FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13985: 64,148
+ - node:
+ color: '#52B4E9FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13944: 65,128
+ - node:
+ color: '#707070FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13980: 63,144
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13964: 63,136
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13956: 64,132
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13997: 65,152
+ - node:
+ color: '#FA7500FF'
+ id: WarnCornerGreyscaleNW
+ decals:
+ 13969: 62,140
+ - node:
+ color: '#439909FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13990: 66,146
+ - node:
+ color: '#52B4E9FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13945: 67,126
+ - node:
+ color: '#707070FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13976: 65,142
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13961: 65,134
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13951: 66,130
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13991: 67,150
+ - node:
+ color: '#FA7500FF'
+ id: WarnCornerGreyscaleSE
+ decals:
+ 13967: 64,138
+ - node:
+ color: '#439909FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13983: 64,146
+ - node:
+ color: '#52B4E9FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13946: 65,126
+ - node:
+ color: '#707070FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13982: 63,142
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13962: 63,134
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13952: 64,130
+ - node:
+ color: '#EFB341FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13993: 65,150
+ - node:
+ color: '#FA7500FF'
+ id: WarnCornerGreyscaleSW
+ decals:
+ 13968: 62,138
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 5: 44,29
+ 6: 56,20
+ 7: 44,21
+ 8: 48,18
+ 318: 53,38
+ 319: 53,42
+ 706: 109,151
+ 10612: 162,57
+ 14027: 102,152
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerNE
+ decals:
+ 723: 109,138
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 1: 54,20
+ 2: 54,30
+ 3: 42,21
+ 4: 46,18
+ 322: 51,38
+ 323: 51,42
+ 332: 44,40
+ 333: 43,39
+ 705: 107,151
+ 5610: 49,46
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerNW
+ decals:
+ 722: 107,138
+ 10395: 53,142
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 15: 44,27
+ 16: 48,30
+ 17: 56,28
+ 33: 44,19
+ 314: 53,36
+ 315: 53,40
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSE
+ decals:
+ 721: 109,136
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 13: 42,27
+ 14: 54,18
+ 18: 46,30
+ 19: 54,28
+ 324: 51,36
+ 325: 51,40
+ 334: 43,37
+ 335: 44,36
+ 5609: 49,44
+ 14019: 97,147
+ 14500: 28,69
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnCornerSW
+ decals:
+ 720: 107,136
+ 10390: 53,139
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerSmallNE
+ decals:
+ 11112: 48,73
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallNW
+ decals:
+ 337: 44,39
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnCornerSmallSE
+ decals:
+ 11111: 48,75
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnCornerSmallSW
+ decals:
+ 338: 44,37
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnEndE
+ decals:
+ 645: 119,133
+ 646: 119,141
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnEndS
+ decals:
+ 10203: 53,150
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnEndW
+ decals:
+ 648: 97,133
+ 649: 97,141
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineE
+ decals:
+ 11109: 48,74
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 23: 44,20
+ 24: 44,28
+ 25: 48,31
+ 26: 48,17
+ 320: 53,37
+ 321: 53,41
+ 681: 109,129
+ 682: 109,130
+ 684: 109,131
+ 685: 109,143
+ 686: 109,144
+ 701: 109,148
+ 702: 109,149
+ 703: 109,150
+ 2444: 130,108
+ 2445: 130,109
+ 2446: 130,110
+ 2447: 130,96
+ 2448: 130,97
+ 2449: 130,98
+ 2877: 54,86
+ 2878: 54,87
+ 2879: 54,88
+ 2880: 54,95
+ 2881: 54,96
+ 2882: 54,97
+ 3169: 135,54
+ 3170: 135,55
+ 3171: 135,56
+ 4031: 41,49
+ 4032: 41,50
+ 4033: 41,51
+ 4034: 45,57
+ 4035: 45,58
+ 4036: 45,59
+ 4395: 132,58
+ 4396: 132,59
+ 4865: 126,112
+ 4866: 126,113
+ 4867: 126,114
+ 5856: 96,76
+ 5857: 96,77
+ 5858: 96,78
+ 5859: 116,76
+ 5860: 116,77
+ 5861: 116,78
+ 6031: 72,63
+ 6032: 72,64
+ 6033: 72,65
+ 6077: 58,89
+ 6078: 58,90
+ 6079: 58,91
+ 6148: 61,112
+ 6149: 61,113
+ 6150: 61,114
+ 6151: 85,112
+ 6152: 85,113
+ 6153: 85,114
+ 6307: 97,117
+ 6308: 97,118
+ 6309: 97,119
+ 6310: 119,117
+ 6311: 119,118
+ 6312: 119,119
+ 6365: 136,117
+ 6366: 136,118
+ 6367: 136,119
+ 6467: 126,76
+ 6468: 126,77
+ 6469: 126,78
+ 6594: 108,50
+ 6596: 108,51
+ 6598: 108,52
+ 7242: 86,18
+ 7243: 86,19
+ 7244: 86,20
+ 7245: 99,30
+ 7246: 99,31
+ 7247: 99,32
+ 9536: 132,60
+ 9569: 84,130
+ 9570: 84,131
+ 9571: 84,132
+ 9572: 91,138
+ 9573: 91,139
+ 9574: 91,140
+ 9585: 77,138
+ 9586: 77,139
+ 9587: 77,140
+ 9848: 145,98
+ 9849: 145,99
+ 9850: 145,100
+ 10609: 162,54
+ 10610: 162,55
+ 10611: 162,56
+ 10812: 80,130
+ 10813: 80,131
+ 10814: 80,132
+ 13792: 54,101
+ 13793: 54,102
+ 14023: 102,148
+ 14024: 102,149
+ 14025: 102,150
+ 14026: 102,151
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineE
+ decals:
+ 714: 109,145
+ 715: 109,147
+ 8683: 116,168
+ 8684: 116,169
+ 8685: 116,170
+ 10208: 53,151
+ 10210: 53,153
+ 10214: 53,156
+ 10215: 53,157
+ 10216: 53,152
+ 10217: 53,154
+ 14095: 41,61
+ 14096: 41,62
+ 14097: 41,63
+ - node:
+ color: '#439909FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13989: 66,147
+ - node:
+ color: '#52B4E9FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13947: 67,127
+ - node:
+ color: '#707070FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13975: 65,143
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13960: 65,135
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13955: 66,131
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13996: 67,151
+ - node:
+ color: '#FA7500FF'
+ id: WarnLineGreyscaleE
+ decals:
+ 13973: 64,139
+ - node:
+ color: '#439909FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13987: 65,148
+ - node:
+ color: '#52B4E9FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13949: 66,128
+ - node:
+ color: '#707070FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13979: 64,144
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13965: 64,136
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13950: 65,132
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13995: 66,152
+ - node:
+ color: '#FA7500FF'
+ id: WarnLineGreyscaleN
+ decals:
+ 13966: 63,140
+ - node:
+ color: '#439909FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13988: 65,146
+ - node:
+ color: '#52B4E9FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13942: 66,126
+ - node:
+ color: '#707070FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13977: 64,142
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13963: 64,134
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13953: 65,130
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13992: 66,150
+ - node:
+ color: '#FA7500FF'
+ id: WarnLineGreyscaleS
+ decals:
+ 13971: 63,138
+ - node:
+ color: '#439909FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13984: 64,147
+ - node:
+ color: '#52B4E9FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13948: 65,127
+ - node:
+ color: '#707070FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13978: 63,143
+ - node:
+ color: '#D4D4D4FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13959: 63,135
+ - node:
+ color: '#DE3A3AFF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13954: 64,131
+ - node:
+ color: '#EFB341FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13994: 65,151
+ - node:
+ color: '#FA7500FF'
+ id: WarnLineGreyscaleW
+ decals:
+ 13972: 62,139
+ - node:
+ zIndex: 1
+ color: '#DE3A3AFF'
+ id: WarnLineN
+ decals:
+ 13844: 49,75
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 9: 43,19
+ 10: 55,28
+ 11: 43,27
+ 12: 47,30
+ 98: 43,65
+ 99: 42,65
+ 100: 44,65
+ 326: 52,36
+ 329: 52,40
+ 654: 98,133
+ 655: 98,141
+ 656: 118,141
+ 657: 118,133
+ 658: 116,133
+ 659: 116,141
+ 660: 100,133
+ 661: 100,141
+ 669: 114,136
+ 670: 115,136
+ 671: 116,136
+ 672: 102,136
+ 673: 101,136
+ 674: 100,136
+ 1197: 93,126
+ 1198: 94,126
+ 1199: 95,126
+ 1206: 93,148
+ 1207: 94,148
+ 1208: 95,148
+ 1209: 121,148
+ 1210: 122,148
+ 1211: 123,148
+ 1218: 121,126
+ 1219: 122,126
+ 1220: 123,126
+ 1706: 65,111
+ 1707: 66,111
+ 1708: 67,111
+ 1715: 81,111
+ 1716: 82,111
+ 1717: 83,111
+ 2883: 42,94
+ 2884: 43,94
+ 2885: 44,94
+ 3172: 126,62
+ 3173: 127,62
+ 3174: 128,62
+ 3185: 137,64
+ 3186: 138,64
+ 3187: 139,64
+ 3188: 147,64
+ 3189: 148,64
+ 3190: 149,64
+ 4856: 102,116
+ 4857: 103,116
+ 4858: 104,116
+ 4859: 112,116
+ 4860: 113,116
+ 4861: 114,116
+ 5608: 50,44
+ 5862: 66,44
+ 5863: 67,44
+ 5864: 68,44
+ 5960: 66,62
+ 5961: 67,62
+ 5962: 68,62
+ 6037: 55,68
+ 6038: 56,68
+ 6039: 57,68
+ 6068: 55,84
+ 6069: 56,84
+ 6070: 57,84
+ 6080: 55,99
+ 6081: 56,99
+ 6082: 57,99
+ 6356: 127,116
+ 6357: 128,116
+ 6358: 129,116
+ 6368: 127,94
+ 6369: 128,94
+ 6370: 129,94
+ 6587: 118,62
+ 6588: 119,62
+ 6589: 120,62
+ 6599: 84,61
+ 6608: 148,124
+ 6609: 149,124
+ 6610: 150,124
+ 6611: 146,141
+ 6612: 145,141
+ 6613: 144,141
+ 6622: 157,120
+ 6623: 158,120
+ 7251: 108,21
+ 7252: 109,21
+ 7253: 110,21
+ 9604: 80,120
+ 9605: 81,120
+ 9606: 82,120
+ 9607: 83,120
+ 9608: 84,120
+ 13395: 150,101
+ 13396: 149,101
+ 13397: 148,101
+ 13785: 98,153
+ 13786: 99,153
+ 13787: 100,153
+ 13788: 101,153
+ 14015: 101,147
+ 14016: 100,147
+ 14017: 99,147
+ 14018: 98,147
+ 14266: 82,49
+ 14267: 83,49
+ 14268: 84,49
+ 14274: 82,61
+ 14275: 83,61
+ 14501: 29,69
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineN
+ decals:
+ 10391: 54,139
+ 14578: 59,92
+ 14579: 60,92
+ 14580: 61,92
+ 14581: 62,92
+ 14582: 63,92
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 27: 42,20
+ 28: 42,28
+ 29: 46,31
+ 30: 54,29
+ 31: 54,19
+ 32: 46,17
+ 330: 51,37
+ 331: 51,41
+ 336: 43,38
+ 678: 107,129
+ 679: 107,130
+ 680: 107,131
+ 688: 107,143
+ 689: 107,144
+ 697: 107,149
+ 698: 107,148
+ 700: 107,150
+ 2438: 130,96
+ 2439: 130,97
+ 2440: 130,98
+ 2441: 130,108
+ 2442: 130,109
+ 2443: 130,110
+ 2889: 54,86
+ 2890: 54,87
+ 2891: 54,88
+ 2892: 54,95
+ 2893: 54,96
+ 2894: 54,97
+ 3166: 135,54
+ 3167: 135,55
+ 3168: 135,56
+ 4025: 45,57
+ 4026: 45,58
+ 4027: 45,59
+ 4028: 41,49
+ 4029: 41,50
+ 4030: 41,51
+ 4392: 132,58
+ 4393: 132,59
+ 4862: 126,112
+ 4863: 126,113
+ 4864: 126,114
+ 5606: 49,45
+ 5849: 96,76
+ 5850: 96,77
+ 5851: 96,78
+ 5853: 116,76
+ 5854: 116,77
+ 5855: 116,78
+ 6028: 72,63
+ 6029: 72,64
+ 6030: 72,65
+ 6074: 58,89
+ 6075: 58,90
+ 6076: 58,91
+ 6145: 61,112
+ 6146: 61,113
+ 6147: 61,114
+ 6154: 85,112
+ 6155: 85,113
+ 6156: 85,114
+ 6304: 97,117
+ 6305: 97,118
+ 6306: 97,119
+ 6313: 119,117
+ 6314: 119,118
+ 6315: 119,119
+ 6362: 136,117
+ 6363: 136,118
+ 6364: 136,119
+ 6464: 126,76
+ 6465: 126,77
+ 6470: 126,78
+ 6593: 108,50
+ 6595: 108,51
+ 6597: 108,52
+ 7062: 143,134
+ 7239: 86,18
+ 7240: 86,19
+ 7241: 86,20
+ 7248: 99,30
+ 7249: 99,31
+ 7250: 99,32
+ 9535: 132,60
+ 9566: 84,130
+ 9567: 84,131
+ 9568: 84,132
+ 9575: 91,138
+ 9576: 91,139
+ 9577: 91,140
+ 9582: 77,138
+ 9583: 77,139
+ 9584: 77,140
+ 9845: 145,98
+ 9846: 145,99
+ 9847: 145,100
+ 10809: 80,130
+ 10810: 80,131
+ 10811: 80,132
+ 13789: 54,101
+ 13790: 54,102
+ 14020: 97,148
+ 14021: 97,149
+ 14022: 97,150
+ 14498: 28,70
+ 14499: 28,71
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineS
+ decals:
+ 716: 107,145
+ 717: 107,147
+ 8680: 116,168
+ 8681: 116,169
+ 8682: 116,170
+ 10204: 53,151
+ 10206: 53,153
+ 10212: 53,156
+ 10213: 53,157
+ 10218: 53,152
+ 10219: 53,154
+ 10392: 53,140
+ 10396: 53,141
+ 14092: 41,61
+ 14093: 41,62
+ 14094: 41,63
+ - node:
+ zIndex: 1
+ color: '#DE3A3AFF'
+ id: WarnLineW
+ decals:
+ 13843: 49,73
+ - node:
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 20: 47,18
+ 21: 43,21
+ 22: 55,20
+ 34: 43,29
+ 101: 42,65
+ 102: 43,65
+ 103: 44,65
+ 327: 52,38
+ 328: 52,42
+ 650: 98,141
+ 651: 118,141
+ 652: 118,133
+ 653: 98,133
+ 662: 100,133
+ 663: 100,141
+ 664: 116,141
+ 665: 116,133
+ 666: 114,138
+ 667: 115,138
+ 668: 116,138
+ 675: 100,138
+ 676: 101,138
+ 677: 102,138
+ 707: 108,151
+ 1200: 93,126
+ 1201: 94,126
+ 1202: 95,126
+ 1203: 95,148
+ 1204: 94,148
+ 1205: 93,148
+ 1212: 121,148
+ 1213: 122,148
+ 1214: 123,148
+ 1215: 123,126
+ 1216: 122,126
+ 1217: 121,126
+ 1709: 65,111
+ 1710: 66,111
+ 1711: 67,111
+ 1712: 81,111
+ 1713: 82,111
+ 1714: 83,111
+ 2451: 155,89
+ 2886: 42,94
+ 2887: 43,94
+ 2888: 44,94
+ 3175: 126,62
+ 3176: 127,62
+ 3177: 128,62
+ 3178: 148,64
+ 3179: 149,64
+ 3180: 147,64
+ 3182: 139,64
+ 3183: 138,64
+ 3184: 137,64
+ 4868: 102,116
+ 4869: 103,116
+ 4870: 104,116
+ 4871: 112,116
+ 4872: 113,116
+ 4873: 114,116
+ 5607: 50,46
+ 5865: 66,44
+ 5866: 67,44
+ 5867: 68,44
+ 5963: 66,62
+ 5964: 67,62
+ 5965: 68,62
+ 6034: 55,68
+ 6035: 57,68
+ 6036: 56,68
+ 6071: 55,84
+ 6072: 56,84
+ 6073: 57,84
+ 6083: 55,99
+ 6084: 56,99
+ 6085: 57,99
+ 6359: 127,116
+ 6360: 128,116
+ 6361: 129,116
+ 6371: 128,94
+ 6372: 129,94
+ 6373: 127,94
+ 6590: 118,62
+ 6591: 119,62
+ 6592: 120,62
+ 6602: 84,61
+ 6614: 148,124
+ 6615: 149,124
+ 6616: 150,124
+ 6617: 146,141
+ 6618: 145,141
+ 6619: 144,141
+ 6620: 157,120
+ 6621: 158,120
+ 7061: 141,133
+ 7254: 108,21
+ 7255: 109,21
+ 7256: 110,21
+ 9609: 80,120
+ 9610: 81,120
+ 9611: 82,120
+ 9612: 83,120
+ 9613: 84,120
+ 10608: 161,57
+ 13398: 150,101
+ 13399: 149,101
+ 13400: 148,101
+ 13781: 98,153
+ 13782: 99,153
+ 13783: 100,153
+ 13784: 101,153
+ 14269: 82,49
+ 14270: 83,49
+ 14271: 84,49
+ 14272: 83,61
+ 14273: 82,61
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WarnLineW
+ decals:
+ 8026: 155,80
+ 8027: 156,80
+ 8028: 157,80
+ 8029: 158,80
+ 8030: 159,80
+ 8031: 160,80
+ 8032: 161,80
+ 10394: 54,142
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinBox
+ decals:
+ 5372: 83,74
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 466: 40,76
+ 493: 40,68
+ 570: 58,52
+ 4629: 110,104
+ 4906: 113,59
+ 5356: 71,69
+ 5357: 70,70
+ 5368: 83,76
+ 5597: 80,49
+ 8660: 115,171
+ 9637: 142,145
+ 10599: 159,143
+ 10600: 159,135
+ 10601: 156,135
+ 10602: 153,135
+ 10603: 153,143
+ 10604: 156,143
+ 10657: 107,48
+ 11134: 109,69
+ 11135: 110,68
+ 12096: 125,115
+ 13272: 146,125
+ 13283: 146,128
+ 13669: 65,54
+ 14330: 89,57
+ 14450: 108,41
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNe
+ decals:
+ 8129: 161,76
+ 8130: 161,71
+ 14214: 80,53
+ 14228: 80,61
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 458: 37,76
+ 459: 32,71
+ 490: 37,68
+ 571: 54,52
+ 4628: 106,104
+ 4905: 111,59
+ 5355: 68,70
+ 5378: 81,76
+ 5573: 75,52
+ 5574: 76,53
+ 5594: 74,49
+ 9633: 136,145
+ 10424: 36,126
+ 10605: 158,143
+ 10606: 155,143
+ 10607: 152,143
+ 10655: 104,48
+ 11132: 102,68
+ 11133: 103,69
+ 12097: 124,115
+ 12098: 120,114
+ 13271: 143,125
+ 13649: 70,61
+ 13668: 63,54
+ 14329: 86,57
+ 14454: 104,41
+ 14742: 152,139
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerNw
+ decals:
+ 8127: 158,76
+ 8128: 158,71
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 491: 40,66
+ 572: 58,49
+ 4594: 111,106
+ 4621: 105,109
+ 4627: 110,101
+ 4902: 113,58
+ 4909: 108,61
+ 5359: 71,67
+ 5369: 83,72
+ 5568: 74,54
+ 5577: 79,51
+ 5578: 80,47
+ 5592: 80,47
+ 8654: 115,167
+ 10590: 156,133
+ 10591: 153,133
+ 10592: 159,133
+ 10660: 107,44
+ 10675: 108,38
+ 12095: 125,110
+ 13269: 146,121
+ 13284: 146,127
+ 13671: 65,51
+ 14421: 141,143
+ 14470: 40,71
+ 14745: 159,137
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSe
+ decals:
+ 8131: 161,68
+ 8132: 161,73
+ 14215: 80,52
+ 14222: 80,55
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 478: 32,70
+ 492: 37,66
+ 4593: 105,106
+ 4620: 111,109
+ 4626: 106,101
+ 4901: 111,58
+ 4907: 104,61
+ 5360: 68,67
+ 5379: 81,72
+ 5593: 74,47
+ 10301: 136,143
+ 10308: 107,167
+ 10584: 152,141
+ 10585: 155,141
+ 10586: 158,141
+ 10587: 152,133
+ 10588: 155,133
+ 10589: 158,133
+ 10661: 104,44
+ 10665: 104,38
+ 13270: 143,121
+ 13285: 143,127
+ 13661: 70,51
+ 13672: 63,51
+ 14328: 86,54
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinCornerSw
+ decals:
+ 8125: 158,68
+ 8126: 158,73
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndE
+ decals:
+ 13899: 99,54
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndE
+ decals:
+ 14220: 78,54
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndS
+ decals:
+ 10436: 43,121
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndW
+ decals:
+ 8647: 106,171
+ 13900: 97,54
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinEndW
+ decals:
+ 14217: 76,54
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNe
+ decals:
+ 5358: 70,69
+ 11137: 109,68
+ 12126: 120,110
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerNw
+ decals:
+ 477: 37,71
+ 581: 54,49
+ 5581: 76,52
+ 11136: 103,68
+ 12099: 124,114
+ 12122: 120,110
+ 12123: 125,110
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSe
+ decals:
+ 4610: 104,109
+ 4611: 105,110
+ 4625: 111,107
+ 5571: 73,54
+ 5572: 74,55
+ 12125: 120,114
+ 14423: 141,144
+ 14472: 39,71
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSe
+ decals:
+ 14216: 79,52
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinInnerSw
+ decals:
+ 4597: 112,109
+ 4609: 111,110
+ 4624: 105,107
+ 8648: 107,171
+ 10437: 43,122
+ 12124: 125,114
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 461: 40,75
+ 462: 40,74
+ 463: 40,73
+ 464: 40,72
+ 494: 40,67
+ 576: 58,50
+ 4605: 104,108
+ 4634: 110,102
+ 4635: 110,103
+ 4771: 111,91
+ 4772: 111,92
+ 4773: 111,94
+ 5370: 83,73
+ 5371: 83,75
+ 5539: 73,52
+ 5540: 73,53
+ 5596: 80,48
+ 7081: 104,107
+ 10432: 43,125
+ 10433: 43,124
+ 10434: 43,123
+ 10435: 43,122
+ 10578: 153,142
+ 10579: 156,142
+ 10580: 159,142
+ 10581: 159,134
+ 10582: 156,134
+ 10583: 153,134
+ 10593: 159,134
+ 10594: 156,134
+ 10595: 153,134
+ 10596: 153,142
+ 10597: 156,142
+ 10598: 159,142
+ 10658: 107,47
+ 10659: 107,45
+ 10673: 108,40
+ 10674: 108,39
+ 11145: 110,67
+ 12091: 120,111
+ 12092: 120,112
+ 12093: 120,113
+ 12094: 125,111
+ 13273: 146,122
+ 13274: 146,123
+ 13275: 146,124
+ 13666: 65,52
+ 13667: 65,53
+ 14331: 89,56
+ 14471: 39,70
+ 14743: 159,138
+ 14744: 159,139
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineE
+ decals:
+ 8139: 161,69
+ 8140: 161,70
+ 8141: 161,74
+ 8142: 161,75
+ 14201: 122,111
+ 14202: 122,112
+ 14203: 122,113
+ 14223: 80,56
+ 14224: 80,57
+ 14225: 80,58
+ 14226: 80,59
+ 14227: 80,60
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 467: 39,76
+ 468: 38,76
+ 473: 33,71
+ 474: 34,71
+ 475: 35,71
+ 476: 36,71
+ 488: 38,68
+ 577: 55,52
+ 578: 56,52
+ 4612: 105,108
+ 4614: 107,109
+ 4615: 108,109
+ 4616: 109,109
+ 4617: 110,109
+ 4618: 111,108
+ 4619: 106,109
+ 4630: 107,104
+ 4631: 109,104
+ 4904: 112,59
+ 4913: 104,64
+ 4914: 105,64
+ 4915: 106,64
+ 4916: 107,64
+ 4917: 108,64
+ 5365: 69,70
+ 5366: 82,76
+ 5558: 73,61
+ 5559: 74,61
+ 5560: 75,61
+ 5561: 77,61
+ 5579: 77,53
+ 5588: 75,49
+ 5589: 76,49
+ 5590: 78,49
+ 5591: 79,49
+ 8639: 107,171
+ 8640: 108,171
+ 8641: 109,171
+ 8642: 110,171
+ 8643: 111,171
+ 8644: 112,171
+ 8645: 113,171
+ 8646: 114,171
+ 9614: 139,142
+ 9615: 140,142
+ 9634: 137,145
+ 9635: 138,145
+ 9636: 141,145
+ 10425: 37,126
+ 10426: 38,126
+ 10427: 39,126
+ 10428: 40,126
+ 10429: 41,126
+ 10430: 42,126
+ 10431: 43,126
+ 10656: 105,48
+ 11147: 104,69
+ 11148: 105,69
+ 11149: 106,69
+ 11150: 108,69
+ 11151: 107,69
+ 11260: 103,64
+ 11261: 109,64
+ 12100: 121,114
+ 12101: 122,114
+ 12102: 123,114
+ 12103: 121,110
+ 12104: 122,110
+ 12105: 123,110
+ 12106: 124,110
+ 13276: 145,125
+ 13281: 144,128
+ 13282: 145,128
+ 13650: 72,61
+ 13651: 71,61
+ 13670: 64,54
+ 13902: 98,54
+ 14334: 87,57
+ 14335: 88,57
+ 14451: 107,41
+ 14452: 106,41
+ 14453: 105,41
+ 14750: 154,139
+ 14751: 155,139
+ 14752: 158,139
+ 14753: 157,139
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineN
+ decals:
+ 8143: 160,71
+ 8144: 159,76
+ 8145: 160,76
+ 14212: 78,53
+ 14213: 79,53
+ 14219: 77,54
+ 14229: 79,61
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 479: 33,70
+ 480: 34,70
+ 481: 35,70
+ 482: 36,70
+ 483: 37,70
+ 485: 38,70
+ 486: 38,66
+ 487: 39,66
+ 573: 55,49
+ 574: 56,49
+ 575: 57,49
+ 4589: 106,106
+ 4590: 107,106
+ 4591: 109,106
+ 4592: 110,106
+ 4599: 110,110
+ 4600: 109,110
+ 4601: 108,110
+ 4602: 107,110
+ 4603: 106,110
+ 4632: 107,101
+ 4633: 109,101
+ 4903: 112,58
+ 4919: 105,61
+ 4920: 107,61
+ 5361: 69,67
+ 5362: 70,67
+ 5373: 82,72
+ 5550: 75,55
+ 5551: 76,55
+ 5552: 77,55
+ 5553: 78,55
+ 5554: 79,55
+ 5582: 76,51
+ 5583: 78,51
+ 5584: 76,47
+ 5585: 77,47
+ 5586: 78,47
+ 5587: 79,47
+ 9629: 140,143
+ 9630: 139,143
+ 9631: 138,143
+ 10309: 108,167
+ 10310: 112,167
+ 10311: 113,167
+ 10421: 41,122
+ 10422: 38,122
+ 10438: 40,122
+ 10439: 39,122
+ 10662: 105,44
+ 10663: 105,38
+ 10664: 106,38
+ 11138: 103,66
+ 11139: 104,66
+ 11140: 105,66
+ 11141: 106,66
+ 11142: 107,66
+ 11143: 108,66
+ 11144: 109,66
+ 11258: 103,62
+ 11259: 109,62
+ 12107: 121,114
+ 12108: 122,114
+ 12109: 123,114
+ 12110: 124,114
+ 12117: 120,110
+ 12118: 121,110
+ 12119: 122,110
+ 12120: 123,110
+ 12121: 124,110
+ 13277: 145,121
+ 13286: 145,127
+ 13662: 71,51
+ 13663: 64,51
+ 13901: 98,54
+ 14326: 88,54
+ 14327: 87,54
+ 14422: 142,144
+ 14746: 153,137
+ 14747: 154,137
+ 14748: 156,137
+ 14749: 157,137
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineS
+ decals:
+ 8133: 159,68
+ 8134: 160,68
+ 8135: 160,73
+ 14218: 77,54
+ - node:
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 469: 37,72
+ 470: 37,73
+ 471: 37,74
+ 472: 37,75
+ 579: 54,51
+ 580: 54,50
+ 4596: 112,108
+ 4636: 106,102
+ 4637: 106,103
+ 4768: 109,90
+ 4769: 109,92
+ 4770: 109,93
+ 5363: 68,68
+ 5364: 68,69
+ 5375: 81,73
+ 5376: 81,74
+ 5377: 81,75
+ 5595: 74,48
+ 7080: 112,107
+ 8649: 107,169
+ 8650: 107,170
+ 10423: 36,124
+ 10572: 152,142
+ 10573: 155,142
+ 10574: 158,142
+ 10575: 158,134
+ 10576: 155,134
+ 10577: 152,134
+ 10652: 104,45
+ 10653: 104,46
+ 10654: 104,47
+ 10666: 104,39
+ 11146: 102,67
+ 12111: 125,111
+ 12112: 125,112
+ 12113: 125,113
+ 12114: 120,113
+ 12115: 120,112
+ 12116: 120,111
+ 13278: 143,122
+ 13279: 143,123
+ 13280: 143,124
+ 13652: 70,60
+ 13653: 70,59
+ 13654: 70,58
+ 13655: 70,57
+ 13656: 70,56
+ 13657: 70,55
+ 13658: 70,54
+ 13659: 70,53
+ 13660: 70,52
+ 13664: 63,52
+ 13665: 63,53
+ 14332: 86,55
+ 14333: 86,56
+ 14740: 152,137
+ 14741: 152,138
+ - node:
+ zIndex: 1
+ color: '#FFFFFFFF'
+ id: WoodTrimThinLineW
+ decals:
+ 8136: 158,69
+ 8137: 158,74
+ 8138: 158,75
+ 14198: 123,111
+ 14199: 123,112
+ 14200: 123,113
+ - node:
+ cleanable: True
+ color: '#A020F0FF'
+ id: amyjon
+ decals:
+ 7677: 92.96522,18.294617
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FF0000FF'
+ id: amyjon
+ decals:
+ 8116: 162.99345,49.051983
+ - node:
+ cleanable: True
+ color: '#FFFFF0FF'
+ id: body
+ decals:
+ 7678: 90.62904,23.147133
+ 7679: 94.43799,30.009949
+ 7680: 119.95131,31.943363
+ 7681: 118.26381,30.582253
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: burnt1
+ decals:
+ 4138: 28,107
+ 4139: 28,108
+ 4140: 26,108
+ 4141: 28,109
+ 4153: 32,107
+ 4154: 33,108
+ 4155: 34,109
+ 4157: 36,110
+ 4158: 35,110
+ 4198: 27,117
+ 4199: 27,117
+ 4200: 26,116
+ 4201: 27,115
+ 4202: 28,115
+ 4203: 28,117
+ 4204: 27,117
+ 4205: 26,116
+ 4206: 27,116
+ 4207: 27,116
+ 4208: 28,115
+ 4209: 27,115
+ 4210: 26,116
+ 4211: 27,117
+ 4212: 27,117
+ 4213: 28,117
+ 4214: 30,116
+ 4215: 30,115
+ 4216: 31,115
+ 4217: 31,116
+ 4218: 32,116
+ 4219: 32,115
+ 4220: 31,114
+ 4221: 33,111
+ 4222: 32,110
+ 4223: 32,109
+ 4224: 31,109
+ 4225: 28,111
+ 4226: 26,112
+ 4227: 27,113
+ 4228: 36,114
+ 4229: 35,112
+ 4230: 33,112
+ 4231: 35,110
+ 4232: 35,116
+ 4233: 36,117
+ 4234: 33,113
+ 4235: 30,107
+ 7731: 122,30
+ 7732: 122,31
+ 7733: 123,32
+ 7734: 124,31
+ 7735: 124,30
+ 7736: 123,30
+ 7737: 123,32
+ 7738: 124,32
+ 7739: 124,31
+ 7740: 122,28
+ 7741: 123,27
+ 7742: 124,26
+ 7743: 119,30
+ 7744: 119,30
+ 7745: 120,32
+ 7746: 119,33
+ 7747: 116,30
+ 7748: 122,33
+ 7749: 124,33
+ 7750: 124,33
+ 7751: 124,33
+ 7752: 123,31
+ 7753: 123,31
+ 7754: 123,31
+ 7755: 123,31
+ 7756: 123,32
+ 7757: 123,32
+ 7758: 122,31
+ 7759: 122,31
+ 7760: 123,30
+ 7761: 123,30
+ 7762: 124,31
+ 7763: 124,31
+ 8799: 82,162
+ 8801: 83,162
+ 8809: 83,159
+ 8810: 82,158
+ 8811: 87,162
+ 8812: 88,162
+ 8813: 88,162
+ 10242: 53,154
+ 10243: 53,157
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: burnt2
+ decals:
+ 4150: 33,107
+ 4151: 34,108
+ 4152: 35,109
+ 7726: 122,29
+ 7727: 123,28
+ 7728: 124,29
+ 7729: 123,33
+ 7730: 120,31
+ 8797: 82,160
+ 8802: 84,162
+ 8803: 84,162
+ 10241: 53,153
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: burnt3
+ decals:
+ 4145: 26,109
+ 4146: 28,109
+ 4149: 35,108
+ 4182: 26,115
+ 4183: 26,116
+ 4184: 27,115
+ 4185: 27,115
+ 4186: 28,115
+ 4187: 28,115
+ 4188: 28,116
+ 4190: 26,117
+ 4191: 27,116
+ 4192: 27,116
+ 4193: 27,116
+ 4194: 27,116
+ 4195: 30,116
+ 4196: 31,117
+ 4197: 31,115
+ 7713: 123,31
+ 7714: 123,31
+ 7719: 122,30
+ 7720: 123,29
+ 7721: 124,30
+ 7722: 124,32
+ 7723: 122,32
+ 7724: 123,33
+ 7725: 121,31
+ 8798: 82,161
+ 8804: 85,162
+ 10239: 53,152
+ 10240: 53,152
+ - node:
+ cleanable: True
+ color: '#FFFFFFFF'
+ id: burnt4
+ decals:
+ 4142: 27,108
+ 4143: 27,107
+ 4144: 26,107
+ 4147: 35,107
+ 4159: 31,110
+ 4160: 32,114
+ 4161: 35,116
+ 4162: 36,114
+ 4163: 26,115
+ 4164: 26,116
+ 4165: 27,115
+ 4167: 27,117
+ 4168: 26,117
+ 4169: 26,116
+ 4171: 27,115
+ 4172: 26,115
+ 4173: 28,115
+ 4174: 28,116
+ 4175: 28,116
+ 4176: 28,117
+ 4178: 29,116
+ 4179: 30,117
+ 4180: 30,116
+ 4181: 30,115
+ 4236: 32,112
+ 7711: 123,31
+ 7712: 123,31
+ 7715: 123,30
+ 7716: 124,31
+ 7717: 123,32
+ 7718: 122,31
+ 8796: 83,160
+ 8800: 83,161
+ 8805: 85,161
+ 8806: 84,161
+ 8807: 82,161
+ 8808: 83,162
+ 10233: 53,151
+ 10234: 53,151
+ 10235: 53,151
+ 10236: 53,150
+ 10237: 53,150
+ 10238: 53,150
+ 10244: 53,156
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#00FFFFFF'
+ id: cyka
+ decals:
+ 8117: 159.40845,43.81839
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: cyka
+ decals:
+ 7685: 116.968155,28.88358
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: electricdanger
+ decals:
+ 10386: 98.2068,165.0918
+ 10387: 95.87911,164.49387
+ - node:
+ cleanable: True
+ color: '#FF9821FF'
+ id: end
+ decals:
+ 8815: 90.19159,171.35666
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: end
+ decals:
+ 7765: 113.91199,41.070557
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: engie
+ decals:
+ 7687: 119.03187,24.875328
+ - node:
+ cleanable: True
+ color: '#0096FFFF'
+ id: ghost
+ decals:
+ 7690: 122.351364,27.107048
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: guy
+ decals:
+ 7691: 89.99586,25.904415
+ - node:
+ cleanable: True
+ color: '#DE3A3AFF'
+ id: matt
+ decals:
+ 8819: 80.71868,161.97488
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: matt
+ decals:
+ 7692: 98.07179,27.071083
+ - node:
+ cleanable: True
+ color: '#0096FFFF'
+ id: prolizard
+ decals:
+ 7697: 112.27426,22.31491
+ - node:
+ cleanable: True
+ color: '#FFA500FF'
+ id: revolution
+ decals:
+ 7700: 89.38472,20.951363
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: skull
+ decals:
+ 7701: 120.021675,30.848217
+ - node:
+ cleanable: True
+ color: '#FFFF00FF'
+ id: space
+ decals:
+ 7703: 95.06352,17.901512
+ - node:
+ cleanable: True
+ color: '#A2764432'
+ id: splatter
+ decals:
+ 7777: 91.3746,21.588058
+ 7778: 91.15653,26.232841
+ - node:
+ cleanable: True
+ color: '#FF00000F'
+ id: splatter
+ decals:
+ 7771: 119.15314,28.941982
+ 7772: 101.5521,25.421951
+ 7773: 98.61691,27.646725
+ - node:
+ cleanable: True
+ color: '#FF000023'
+ id: splatter
+ decals:
+ 7766: 119.9598,29.758423
+ 7767: 119.51536,31.63805
+ 7768: 117.86258,29.911198
+ 7769: 118.26073,30.272308
+ 7770: 120.51227,31.533112
+ - node:
+ cleanable: True
+ color: '#FF000030'
+ id: splatter
+ decals:
+ 7779: 95.010735,28.974556
+ - node:
+ cleanable: True
+ color: '#FF000041'
+ id: splatter
+ decals:
+ 7780: 91.958725,22.24057
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FF170008'
+ id: splatter
+ decals:
+ 10507: 163.3699,147.21634
+ 10508: 162.57951,147.52437
+ 10509: 162.94208,148.08969
+ 10510: 163.45331,147.97372
+ - node:
+ cleanable: True
+ zIndex: 1
+ color: '#FF17000F'
+ id: splatter
+ decals:
+ 10511: 163.12698,147.67657
+ 10512: 162.51425,148.32887
+ 10513: 163.23938,148.64415
+ - node:
+ cleanable: True
+ color: '#FFA4000F'
+ id: splatter
+ decals:
+ 7774: 98.521255,25.277252
+ 7775: 101.549034,27.593563
+ 7776: 101.28977,19.12555
+ - node:
+ cleanable: True
+ color: '#0096FFFF'
+ id: star
+ decals:
+ 7706: 105.77632,30.774948
+ - node:
+ cleanable: True
+ color: '#32CD32FF'
+ id: stickman
+ decals:
+ 7705: 104.05757,28.591457
+ - node:
+ cleanable: True
+ color: '#FF0000FF'
+ id: toolbox
+ decals:
+ 7709: 118.49398,19.071342
+ - type: OccluderTree
+ - type: Shuttle
+ - type: GridPathfinding
+ - type: SpreaderGrid
+ - type: GravityShake
+ shakeTimes: 10
+ - type: GasTileOverlay
+ - type: RadiationGridResistance
+ - type: GridAtmosphere
+ version: 2
+ data:
+ tiles:
+ 4,5:
+ 0: 34816
+ 5,5:
+ 0: 3840
+ 4,6:
+ 0: 34952
+ 4,7:
+ 0: 34952
+ 5,7:
+ 0: 10018
+ 1: 34952
+ 4,8:
+ 0: 34952
+ 5,6:
+ 0: 8750
+ 1: 34816
+ 5,8:
+ 0: 8738
+ 1: 34952
+ 6,5:
+ 0: 7936
+ 6,6:
+ 0: 4383
+ 1: 43520
+ 6,7:
+ 0: 5393
+ 1: 43690
+ 6,8:
+ 0: 4369
+ 1: 43690
+ 7,5:
+ 0: 7936
+ 7,6:
+ 0: 4383
+ 1: 43520
+ 7,7:
+ 0: 5393
+ 1: 43690
+ 7,8:
+ 0: 4369
+ 1: 43690
+ 8,5:
+ 0: 7936
+ 8,6:
+ 0: 4383
+ 1: 43520
+ 8,7:
+ 0: 5393
+ 1: 43690
+ 4,9:
+ 0: 34952
+ 5,9:
+ 0: 61410
+ 4,10:
+ 0: 34952
+ 4,11:
+ 0: 34952
+ 5,11:
+ 0: 8818
+ 1: 34952
+ 4,12:
+ 0: 11791
+ 5,10:
+ 0: 8738
+ 1: 34944
+ 5,12:
+ 0: 4898
+ 1: 2184
+ 6,9:
+ 0: 65521
+ 6,10:
+ 0: 4369
+ 1: 8736
+ 6,11:
+ 0: 37329
+ 1: 8738
+ 6,12:
+ 0: 39321
+ 1: 546
+ 7,9:
+ 0: 65521
+ 7,11:
+ 0: 32767
+ 7,10:
+ 0: 37137
+ 7,12:
+ 0: 13119
+ 8,8:
+ 0: 4369
+ 1: 43690
+ 8,9:
+ 0: 65521
+ 8,10:
+ 0: 63897
+ 8,11:
+ 0: 4607
+ 3,12:
+ 0: 34952
+ 4,13:
+ 0: 11002
+ 3,13:
+ 0: 34952
+ 4,14:
+ 0: 36622
+ 3,14:
+ 0: 2184
+ 5,13:
+ 0: 8191
+ 5,14:
+ 0: 8739
+ 1: 34952
+ 4,15:
+ 0: 34952
+ 5,15:
+ 0: 8818
+ 1: 34952
+ 4,16:
+ 0: 10984
+ 5,16:
+ 0: 546
+ 1: 136
+ 6,13:
+ 0: 40959
+ 6,14:
+ 0: 39321
+ 1: 8738
+ 6,15:
+ 0: 39385
+ 1: 8738
+ 6,16:
+ 0: 409
+ 1: 32802
+ 7,13:
+ 0: 13111
+ 7,14:
+ 0: 13111
+ 7,15:
+ 0: 13111
+ 7,16:
+ 0: 51
+ 1: 12544
+ 8,12:
+ 1: 65256
+ 8,13:
+ 1: 30591
+ 8,14:
+ 1: 30583
+ 8,15:
+ 1: 65399
+ 4,17:
+ 0: 8738
+ 4,18:
+ 0: 8802
+ 4,19:
+ 1: 52736
+ 4,20:
+ 1: 34830
+ 5,17:
+ 1: 65535
+ 5,18:
+ 1: 65535
+ 5,19:
+ 1: 61263
+ 5,20:
+ 1: 32751
+ 6,17:
+ 1: 48051
+ 6,18:
+ 1: 64435
+ 6,19:
+ 1: 48011
+ 6,20:
+ 1: 41915
+ 7,17:
+ 1: 13105
+ 7,18:
+ 1: 13105
+ 7,19:
+ 1: 62227
+ 7,20:
+ 1: 56603
+ 8,16:
+ 1: 65359
+ 8,17:
+ 1: 65295
+ 8,18:
+ 1: 65519
+ 8,19:
+ 1: 61455
+ 4,21:
+ 1: 52744
+ 4,22:
+ 1: 52238
+ 4,23:
+ 1: 3276
+ 4,24:
+ 1: 50188
+ 5,21:
+ 1: 61423
+ 5,22:
+ 1: 30543
+ 5,23:
+ 1: 18295
+ 5,24:
+ 1: 30591
+ 6,22:
+ 1: 29542
+ 6,23:
+ 1: 29303
+ 6,21:
+ 1: 26222
+ 6,24:
+ 1: 61695
+ 7,21:
+ 1: 34829
+ 0: 8704
+ 7,22:
+ 0: 8994
+ 1: 32904
+ 7,24:
+ 1: 53499
+ 7,23:
+ 0: 546
+ 1: 2184
+ 8,20:
+ 1: 65311
+ 8,21:
+ 1: 64271
+ 8,22:
+ 1: 47291
+ 8,23:
+ 1: 3067
+ 4,25:
+ 0: 4097
+ 1: 17484
+ 3,25:
+ 0: 63496
+ 4,26:
+ 1: 62732
+ 3,26:
+ 1: 51200
+ 0: 21
+ 4,27:
+ 1: 52429
+ 3,27:
+ 1: 8
+ 0: 62736
+ 4,28:
+ 1: 50380
+ 5,25:
+ 1: 1919
+ 5,26:
+ 1: 62551
+ 5,27:
+ 1: 11791
+ 5,28:
+ 1: 63726
+ 6,25:
+ 1: 65535
+ 6,26:
+ 1: 53503
+ 6,27:
+ 1: 49613
+ 6,28:
+ 1: 53469
+ 7,25:
+ 1: 55775
+ 7,26:
+ 1: 55517
+ 7,27:
+ 1: 56543
+ 7,28:
+ 1: 56543
+ 8,24:
+ 1: 62591
+ 8,25:
+ 1: 57599
+ 8,26:
+ 1: 61678
+ 8,27:
+ 1: 65535
+ 4,29:
+ 0: 16
+ 1: 52236
+ 3,29:
+ 0: 34952
+ 4,30:
+ 0: 62688
+ 1: 4
+ 3,30:
+ 0: 34952
+ 4,31:
+ 0: 50244
+ 5,29:
+ 1: 48031
+ 5,31:
+ 0: 61440
+ 1: 12
+ 5,30:
+ 1: 60576
+ 6,29:
+ 1: 61917
+ 6,30:
+ 1: 63409
+ 6,31:
+ 1: 13
+ 0: 61952
+ 7,29:
+ 1: 61663
+ 7,30:
+ 1: 40632
+ 7,31:
+ 1: 3
+ 0: 61440
+ 8,28:
+ 1: 65535
+ 8,29:
+ 1: 63743
+ 8,30:
+ 1: 32639
+ 8,31:
+ 0: 12832
+ 7,34:
+ 0: 43566
+ 7,35:
+ 0: 43754
+ 7,36:
+ 0: 3626
+ 8,34:
+ 0: 20363
+ 8,35:
+ 0: 20222
+ 8,36:
+ 0: 43919
+ 40,9:
+ 0: 3840
+ 39,9:
+ 0: 20224
+ 40,10:
+ 1: 13056
+ 39,10:
+ 1: 64256
+ 0: 4
+ 40,11:
+ 1: 65471
+ 39,11:
+ 1: 32523
+ 40,12:
+ 1: 65535
+ 41,9:
+ 0: 8960
+ 41,10:
+ 0: 57570
+ 42,10:
+ 0: 62192
+ 42,11:
+ 1: 21840
+ 0: 8738
+ 42,12:
+ 1: 21845
+ 0: 8866
+ 43,10:
+ 0: 62192
+ 43,11:
+ 1: 21840
+ 0: 8738
+ 43,12:
+ 1: 21845
+ 0: 8866
+ 44,10:
+ 0: 62192
+ 40,13:
+ 1: 60943
+ 39,13:
+ 1: 60966
+ 40,14:
+ 1: 61182
+ 39,14:
+ 1: 59118
+ 40,15:
+ 1: 9840
+ 39,15:
+ 1: 24028
+ 40,16:
+ 1: 1911
+ 41,14:
+ 1: 112
+ 0: 2184
+ 41,12:
+ 0: 224
+ 42,14:
+ 0: 12287
+ 42,13:
+ 1: 1365
+ 0: 8738
+ 42,15:
+ 1: 21845
+ 0: 8738
+ 42,16:
+ 1: 21845
+ 0: 8866
+ 43,14:
+ 0: 12287
+ 43,13:
+ 1: 1365
+ 0: 8738
+ 43,15:
+ 1: 21845
+ 0: 8738
+ 43,16:
+ 1: 21845
+ 0: 8866
+ 44,12:
+ 1: 21845
+ 0: 8866
+ 44,14:
+ 0: 12287
+ 40,17:
+ 1: 13107
+ 0: 32768
+ 39,17:
+ 1: 57309
+ 40,18:
+ 1: 13104
+ 39,18:
+ 1: 56785
+ 40,19:
+ 1: 64259
+ 39,19:
+ 1: 65309
+ 40,20:
+ 1: 4155
+ 0: 16384
+ 41,16:
+ 0: 240
+ 41,17:
+ 0: 61440
+ 41,19:
+ 1: 12544
+ 0: 50176
+ 41,20:
+ 1: 1
+ 0: 4
+ 42,17:
+ 0: 61986
+ 1: 85
+ 42,19:
+ 0: 4369
+ 42,18:
+ 0: 4594
+ 43,17:
+ 0: 61986
+ 1: 85
+ 43,18:
+ 0: 242
+ 44,16:
+ 1: 21845
+ 0: 8866
+ 44,17:
+ 0: 61986
+ 1: 85
+ 44,18:
+ 0: 242
+ 39,20:
+ 1: 61695
+ 40,21:
+ 0: 19708
+ 40,22:
+ 0: 65516
+ 39,22:
+ 0: 60960
+ 1: 4352
+ 40,23:
+ 0: 29902
+ 40,24:
+ 0: 17476
+ 40,25:
+ 0: 17524
+ 40,26:
+ 1: 63232
+ 0: 4
+ 39,26:
+ 1: 64311
+ 40,27:
+ 1: 2032
+ 39,27:
+ 1: 15347
+ 40,28:
+ 1: 30071
+ 39,28:
+ 1: 65272
+ 40,29:
+ 1: 21844
+ 39,29:
+ 1: 65522
+ 40,30:
+ 1: 26212
+ 39,30:
+ 1: 65520
+ 40,31:
+ 1: 43559
+ 39,31:
+ 1: 61422
+ 40,32:
+ 1: 61418
+ 41,30:
+ 0: 57906
+ 41,31:
+ 1: 256
+ 0: 44712
+ 41,32:
+ 0: 8
+ 1: 12288
+ 39,32:
+ 1: 65294
+ 40,33:
+ 1: 60942
+ 39,33:
+ 1: 56784
+ 40,34:
+ 1: 57308
+ 39,34:
+ 1: 65524
+ 39,35:
+ 1: 56793
+ 40,35:
+ 1: 61152
+ 40,36:
+ 1: 51708
+ 41,34:
+ 1: 4575
+ 41,35:
+ 1: 12561
+ 0: 32768
+ 41,33:
+ 1: 61166
+ 41,36:
+ 1: 4147
+ 42,32:
+ 0: 497
+ 42,33:
+ 1: 13104
+ 0: 8
+ 42,34:
+ 1: 3
+ 0: 49152
+ 42,35:
+ 0: 4375
+ 42,36:
+ 0: 4369
+ 43,32:
+ 0: 4368
+ 43,33:
+ 0: 4369
+ 43,34:
+ 0: 4369
+ 39,36:
+ 1: 36848
+ 40,37:
+ 1: 221
+ 39,37:
+ 1: 12475
+ 40,38:
+ 0: 4383
+ 39,38:
+ 0: 8
+ 1: 51
+ 40,39:
+ 0: 1
+ 39,39:
+ 0: 15
+ 41,37:
+ 1: 17
+ 0: 43144
+ 41,38:
+ 0: 15
+ 42,37:
+ 0: 1
+ 44,11:
+ 1: 21840
+ 0: 8738
+ 45,10:
+ 0: 47344
+ 45,11:
+ 0: 43690
+ 45,12:
+ 0: 43770
+ 44,13:
+ 1: 1365
+ 0: 8738
+ 44,15:
+ 1: 21845
+ 0: 8738
+ 45,14:
+ 0: 10231
+ 45,15:
+ 0: 23839
+ 45,16:
+ 0: 21877
+ 45,13:
+ 0: 11818
+ 46,13:
+ 0: 21831
+ 46,14:
+ 0: 21877
+ 46,15:
+ 0: 1861
+ 45,17:
+ 0: 21845
+ 45,18:
+ 0: 116
+ 9,3:
+ 0: 4383
+ 9,4:
+ 0: 4369
+ 10,3:
+ 0: 15
+ 11,3:
+ 0: 57391
+ 10,4:
+ 0: 4712
+ 1: 32768
+ 11,4:
+ 0: 1
+ 1: 40384
+ 12,3:
+ 0: 61455
+ 9,5:
+ 0: 39323
+ 9,6:
+ 0: 39323
+ 1: 8704
+ 9,7:
+ 0: 4377
+ 1: 8738
+ 9,8:
+ 0: 4369
+ 1: 8738
+ 10,5:
+ 0: 1
+ 1: 11980
+ 10,7:
+ 0: 25105
+ 1: 140
+ 10,6:
+ 1: 52778
+ 11,5:
+ 1: 26431
+ 11,6:
+ 1: 14183
+ 11,7:
+ 1: 52639
+ 10,8:
+ 0: 18440
+ 11,8:
+ 0: 481
+ 1: 49152
+ 12,4:
+ 1: 47568
+ 12,5:
+ 1: 30579
+ 12,6:
+ 1: 30591
+ 12,7:
+ 1: 55731
+ 9,9:
+ 0: 13105
+ 9,10:
+ 0: 62259
+ 9,11:
+ 0: 511
+ 9,12:
+ 1: 65535
+ 10,10:
+ 0: 7234
+ 10,11:
+ 0: 273
+ 1: 36044
+ 10,9:
+ 0: 8738
+ 1: 34944
+ 10,12:
+ 1: 65533
+ 11,9:
+ 1: 57309
+ 11,10:
+ 1: 36045
+ 0: 256
+ 11,11:
+ 1: 36863
+ 11,12:
+ 1: 56797
+ 12,8:
+ 0: 16
+ 1: 23752
+ 12,9:
+ 1: 65535
+ 12,10:
+ 1: 4095
+ 12,11:
+ 1: 1911
+ 9,13:
+ 1: 56799
+ 9,14:
+ 1: 56797
+ 9,15:
+ 1: 65485
+ 9,16:
+ 1: 65039
+ 10,13:
+ 1: 56797
+ 10,14:
+ 1: 56797
+ 10,15:
+ 1: 65533
+ 10,16:
+ 1: 56781
+ 11,13:
+ 1: 56793
+ 11,14:
+ 1: 65533
+ 11,15:
+ 1: 56733
+ 11,16:
+ 1: 7645
+ 12,12:
+ 1: 30583
+ 12,13:
+ 1: 65395
+ 12,14:
+ 1: 65535
+ 12,15:
+ 1: 29599
+ 9,17:
+ 1: 65422
+ 9,18:
+ 1: 65535
+ 9,19:
+ 1: 53263
+ 9,20:
+ 1: 60943
+ 10,17:
+ 1: 56781
+ 10,18:
+ 1: 56829
+ 10,19:
+ 1: 56461
+ 10,20:
+ 1: 64911
+ 11,17:
+ 1: 57341
+ 11,18:
+ 1: 56785
+ 11,19:
+ 1: 7937
+ 11,20:
+ 1: 64973
+ 12,16:
+ 1: 2047
+ 12,17:
+ 1: 49147
+ 12,18:
+ 1: 48056
+ 12,19:
+ 1: 3968
+ 9,21:
+ 1: 65358
+ 9,22:
+ 1: 65535
+ 9,23:
+ 1: 12287
+ 9,24:
+ 1: 61627
+ 10,21:
+ 1: 56781
+ 10,22:
+ 1: 56797
+ 10,23:
+ 1: 52701
+ 10,24:
+ 1: 64733
+ 11,21:
+ 1: 56605
+ 11,22:
+ 1: 57341
+ 11,23:
+ 1: 53725
+ 11,24:
+ 1: 53759
+ 12,20:
+ 1: 65535
+ 12,21:
+ 1: 64271
+ 12,22:
+ 1: 64443
+ 12,23:
+ 1: 63679
+ 9,25:
+ 1: 3839
+ 9,26:
+ 1: 61167
+ 9,27:
+ 1: 56590
+ 9,28:
+ 1: 7647
+ 10,25:
+ 1: 52735
+ 10,26:
+ 1: 64989
+ 10,27:
+ 1: 62925
+ 10,28:
+ 1: 61439
+ 11,25:
+ 1: 56831
+ 11,26:
+ 1: 64977
+ 11,27:
+ 1: 64797
+ 11,28:
+ 1: 16383
+ 12,24:
+ 1: 61695
+ 12,25:
+ 1: 65535
+ 12,26:
+ 1: 56816
+ 12,27:
+ 1: 64961
+ 8,32:
+ 0: 43690
+ 9,29:
+ 1: 61661
+ 9,30:
+ 1: 65486
+ 9,31:
+ 1: 4095
+ 9,32:
+ 0: 17476
+ 1: 43680
+ 10,29:
+ 1: 28910
+ 10,30:
+ 1: 65427
+ 10,31:
+ 1: 4095
+ 10,32:
+ 0: 17476
+ 1: 43680
+ 11,29:
+ 1: 45243
+ 11,31:
+ 1: 4046
+ 11,30:
+ 1: 60942
+ 11,32:
+ 0: 17476
+ 1: 43680
+ 12,28:
+ 1: 36317
+ 12,29:
+ 1: 64733
+ 12,30:
+ 1: 30487
+ 12,31:
+ 1: 1911
+ 8,33:
+ 0: 43754
+ 9,33:
+ 0: 17492
+ 1: 43690
+ 9,35:
+ 0: 20479
+ 9,34:
+ 1: 2730
+ 0: 17476
+ 9,36:
+ 0: 17476
+ 1: 43690
+ 10,33:
+ 0: 17492
+ 1: 43690
+ 10,35:
+ 0: 20479
+ 10,34:
+ 1: 2730
+ 0: 17476
+ 10,36:
+ 0: 17476
+ 1: 43690
+ 11,33:
+ 0: 17492
+ 1: 43690
+ 11,35:
+ 0: 20479
+ 11,34:
+ 1: 2730
+ 0: 17476
+ 11,36:
+ 0: 17476
+ 1: 43690
+ 12,33:
+ 0: 48
+ 1: 2184
+ 12,35:
+ 0: 273
+ 1: 224
+ 8,37:
+ 0: 43754
+ 8,38:
+ 0: 43690
+ 8,39:
+ 0: 226
+ 9,37:
+ 0: 17492
+ 1: 43690
+ 9,38:
+ 0: 62532
+ 1: 170
+ 9,39:
+ 0: 244
+ 10,37:
+ 0: 17492
+ 1: 43690
+ 10,38:
+ 0: 62532
+ 1: 170
+ 10,39:
+ 0: 244
+ 11,37:
+ 0: 17492
+ 1: 43690
+ 11,38:
+ 0: 62532
+ 1: 170
+ 11,39:
+ 0: 244
+ 12,37:
+ 0: 112
+ 12,38:
+ 0: 28672
+ 12,39:
+ 0: 240
+ 13,3:
+ 0: 12335
+ 13,4:
+ 0: 12
+ 1: 63248
+ 14,3:
+ 0: 7
+ 14,2:
+ 0: 49152
+ 15,2:
+ 0: 61440
+ 15,3:
+ 1: 32768
+ 0: 128
+ 16,2:
+ 0: 61440
+ 16,3:
+ 0: 49
+ 1: 12544
+ 15,4:
+ 1: 32904
+ 13,5:
+ 1: 65535
+ 13,6:
+ 1: 65535
+ 13,7:
+ 1: 6143
+ 13,8:
+ 0: 556
+ 1: 34816
+ 14,4:
+ 0: 16944
+ 14,5:
+ 1: 13073
+ 0: 34956
+ 14,6:
+ 1: 4915
+ 0: 34952
+ 14,7:
+ 1: 32769
+ 0: 12868
+ 15,7:
+ 1: 61814
+ 14,8:
+ 1: 4072
+ 15,5:
+ 1: 43694
+ 15,6:
+ 1: 10922
+ 15,8:
+ 1: 36189
+ 16,4:
+ 1: 63931
+ 16,5:
+ 1: 56475
+ 16,6:
+ 1: 56793
+ 16,7:
+ 1: 56797
+ 13,40:
+ 0: 3140
+ 13,39:
+ 0: 17621
+ 1: 34
+ 14,40:
+ 0: 20302
+ 14,39:
+ 1: 20196
+ 14,41:
+ 0: 12
+ 15,41:
+ 0: 15
+ 15,40:
+ 1: 238
+ 15,39:
+ 1: 58094
+ 16,40:
+ 1: 35067
+ 16,41:
+ 0: 61715
+ 1: 8
+ 13,9:
+ 1: 48059
+ 13,10:
+ 1: 35771
+ 13,11:
+ 1: 65535
+ 13,12:
+ 1: 56789
+ 14,9:
+ 1: 61422
+ 14,10:
+ 1: 48910
+ 14,11:
+ 1: 47419
+ 15,9:
+ 1: 48059
+ 15,10:
+ 1: 65451
+ 15,11:
+ 1: 16247
+ 15,12:
+ 1: 45963
+ 16,8:
+ 1: 56781
+ 16,9:
+ 1: 56799
+ 16,10:
+ 1: 56781
+ 16,11:
+ 1: 56781
+ 13,13:
+ 1: 47901
+ 13,14:
+ 1: 49083
+ 13,15:
+ 1: 63667
+ 13,16:
+ 1: 36863
+ 14,12:
+ 1: 63344
+ 14,13:
+ 1: 65319
+ 14,14:
+ 1: 65535
+ 14,15:
+ 1: 61680
+ 14,16:
+ 1: 46079
+ 15,13:
+ 1: 48011
+ 15,14:
+ 1: 30523
+ 15,15:
+ 1: 62066
+ 15,16:
+ 1: 61695
+ 16,12:
+ 1: 64765
+ 16,13:
+ 1: 65535
+ 16,14:
+ 1: 56783
+ 16,15:
+ 1: 64733
+ 13,17:
+ 1: 65467
+ 13,18:
+ 1: 48059
+ 13,19:
+ 1: 36825
+ 13,20:
+ 1: 48059
+ 14,17:
+ 1: 48059
+ 14,18:
+ 1: 48059
+ 14,19:
+ 1: 16315
+ 14,20:
+ 1: 45943
+ 15,17:
+ 1: 3995
+ 15,19:
+ 1: 20468
+ 15,18:
+ 1: 61166
+ 15,20:
+ 1: 65535
+ 16,16:
+ 1: 20991
+ 16,17:
+ 1: 1367
+ 16,18:
+ 1: 32631
+ 16,19:
+ 1: 3846
+ 13,21:
+ 1: 65435
+ 13,22:
+ 1: 48063
+ 13,23:
+ 1: 64443
+ 13,24:
+ 1: 47359
+ 14,21:
+ 1: 48059
+ 14,22:
+ 1: 48051
+ 14,23:
+ 1: 48059
+ 14,24:
+ 1: 46015
+ 15,21:
+ 1: 65535
+ 15,22:
+ 1: 65520
+ 15,23:
+ 1: 65535
+ 15,24:
+ 1: 61951
+ 16,21:
+ 1: 65102
+ 13,25:
+ 1: 48059
+ 13,26:
+ 1: 56792
+ 13,27:
+ 1: 35752
+ 13,28:
+ 1: 3067
+ 14,25:
+ 1: 48059
+ 14,26:
+ 1: 64315
+ 14,27:
+ 1: 30523
+ 14,28:
+ 1: 4095
+ 15,25:
+ 1: 65535
+ 15,26:
+ 1: 65295
+ 15,27:
+ 1: 4095
+ 15,28:
+ 1: 36863
+ 16,24:
+ 1: 65262
+ 16,27:
+ 1: 61167
+ 13,29:
+ 1: 57309
+ 13,30:
+ 1: 65521
+ 13,31:
+ 1: 3967
+ 12,32:
+ 1: 34952
+ 13,32:
+ 1: 32767
+ 14,29:
+ 1: 21983
+ 14,31:
+ 1: 3846
+ 14,30:
+ 1: 26212
+ 14,32:
+ 1: 4027
+ 15,29:
+ 1: 22015
+ 15,30:
+ 1: 14320
+ 15,31:
+ 1: 4915
+ 0: 34952
+ 15,32:
+ 1: 273
+ 0: 17484
+ 16,28:
+ 1: 20479
+ 16,29:
+ 1: 21845
+ 16,30:
+ 1: 2036
+ 16,31:
+ 0: 7
+ 5: 60928
+ 13,33:
+ 1: 30583
+ 13,34:
+ 1: 63247
+ 13,35:
+ 1: 30583
+ 14,33:
+ 1: 20479
+ 14,34:
+ 1: 30071
+ 14,35:
+ 1: 5991
+ 14,36:
+ 1: 61437
+ 15,34:
+ 0: 4371
+ 2: 52224
+ 3: 8
+ 15,35:
+ 0: 8977
+ 2: 12
+ 3: 34816
+ 15,33:
+ 0: 8742
+ 3: 34816
+ 15,36:
+ 0: 17954
+ 3: 8
+ 16,32:
+ 4: 30464
+ 5: 14
+ 16,33:
+ 4: 7
+ 3: 13056
+ 0: 34816
+ 16,34:
+ 3: 3
+ 2: 4352
+ 0: 52360
+ 16,35:
+ 2: 1
+ 3: 13056
+ 0: 34956
+ 13,36:
+ 1: 32624
+ 13,37:
+ 1: 65535
+ 13,38:
+ 1: 4095
+ 14,37:
+ 1: 61070
+ 14,38:
+ 1: 61006
+ 15,37:
+ 1: 4369
+ 0: 35908
+ 15,38:
+ 1: 8739
+ 0: 2184
+ 16,36:
+ 3: 30467
+ 0: 8
+ 16,37:
+ 3: 60935
+ 16,38:
+ 0: 3840
+ 3: 14
+ 16,39:
+ 1: 47295
+ 17,2:
+ 0: 4096
+ 17,3:
+ 0: 497
+ 17,4:
+ 1: 8191
+ 18,3:
+ 0: 240
+ 18,4:
+ 1: 4095
+ 19,3:
+ 0: 752
+ 19,4:
+ 1: 4095
+ 17,5:
+ 1: 4369
+ 0: 4
+ 17,6:
+ 1: 28688
+ 0: 64
+ 17,7:
+ 1: 4368
+ 0: 64
+ 17,8:
+ 1: 1793
+ 20,4:
+ 1: 53247
+ 17,40:
+ 1: 65535
+ 17,41:
+ 1: 15
+ 0: 63488
+ 17,39:
+ 1: 44768
+ 18,41:
+ 0: 29888
+ 18,40:
+ 1: 3822
+ 18,39:
+ 1: 52639
+ 19,40:
+ 1: 4095
+ 19,41:
+ 0: 248
+ 19,39:
+ 1: 65291
+ 20,40:
+ 1: 4095
+ 20,41:
+ 0: 240
+ 17,9:
+ 1: 4369
+ 0: 16388
+ 17,10:
+ 1: 65521
+ 17,11:
+ 1: 54737
+ 17,12:
+ 1: 53757
+ 18,10:
+ 1: 65520
+ 18,11:
+ 1: 55793
+ 18,12:
+ 1: 61917
+ 19,10:
+ 1: 65520
+ 19,11:
+ 1: 61680
+ 19,12:
+ 1: 62207
+ 20,10:
+ 1: 65532
+ 20,11:
+ 1: 56572
+ 17,13:
+ 1: 56797
+ 17,14:
+ 1: 56797
+ 17,15:
+ 1: 61917
+ 17,16:
+ 1: 61695
+ 18,13:
+ 1: 65535
+ 18,14:
+ 1: 65535
+ 18,15:
+ 1: 61695
+ 18,16:
+ 1: 57599
+ 19,13:
+ 1: 65535
+ 19,14:
+ 1: 65535
+ 19,15:
+ 1: 62975
+ 19,16:
+ 1: 45311
+ 20,12:
+ 1: 56541
+ 20,13:
+ 1: 56797
+ 20,14:
+ 1: 56797
+ 20,15:
+ 1: 64733
+ 16,20:
+ 1: 61166
+ 17,17:
+ 1: 2047
+ 17,18:
+ 1: 65535
+ 17,19:
+ 1: 3855
+ 17,20:
+ 1: 30591
+ 18,17:
+ 1: 65263
+ 18,18:
+ 1: 65535
+ 18,19:
+ 1: 7439
+ 18,20:
+ 1: 30543
+ 19,17:
+ 1: 3899
+ 19,18:
+ 0: 2570
+ 19,19:
+ 0: 10
+ 1: 2560
+ 19,20:
+ 1: 47935
+ 20,16:
+ 1: 61695
+ 20,17:
+ 1: 61231
+ 20,19:
+ 1: 4078
+ 16,22:
+ 1: 61006
+ 16,23:
+ 1: 61166
+ 17,21:
+ 1: 65287
+ 17,22:
+ 1: 56735
+ 17,23:
+ 1: 56605
+ 17,24:
+ 1: 57311
+ 18,21:
+ 1: 65520
+ 18,22:
+ 1: 65473
+ 18,23:
+ 1: 65487
+ 18,24:
+ 1: 65535
+ 19,21:
+ 1: 65338
+ 19,22:
+ 1: 65358
+ 19,23:
+ 1: 65295
+ 19,24:
+ 1: 65535
+ 20,20:
+ 1: 65311
+ 20,21:
+ 1: 65423
+ 20,22:
+ 1: 61103
+ 16,25:
+ 1: 61166
+ 16,26:
+ 1: 61134
+ 17,25:
+ 1: 47901
+ 17,26:
+ 1: 65291
+ 17,27:
+ 1: 3599
+ 17,28:
+ 1: 28671
+ 18,25:
+ 1: 65487
+ 18,26:
+ 1: 65535
+ 18,27:
+ 1: 3855
+ 18,28:
+ 1: 36863
+ 19,25:
+ 1: 63247
+ 19,26:
+ 1: 65335
+ 19,27:
+ 1: 3855
+ 19,28:
+ 1: 8191
+ 20,24:
+ 1: 61423
+ 20,25:
+ 1: 65518
+ 20,26:
+ 1: 65391
+ 20,27:
+ 1: 61167
+ 17,29:
+ 1: 32759
+ 17,30:
+ 1: 65527
+ 17,31:
+ 1: 34984
+ 0: 8704
+ 17,32:
+ 0: 4898
+ 1: 34952
+ 18,29:
+ 1: 65535
+ 18,30:
+ 1: 65520
+ 18,31:
+ 1: 65521
+ 18,32:
+ 1: 65535
+ 19,29:
+ 1: 48059
+ 19,30:
+ 1: 65520
+ 19,31:
+ 1: 32752
+ 19,32:
+ 1: 13107
+ 0: 34944
+ 20,28:
+ 1: 4095
+ 20,29:
+ 1: 65535
+ 20,30:
+ 1: 65520
+ 20,31:
+ 1: 65520
+ 17,33:
+ 0: 273
+ 1: 52428
+ 17,34:
+ 1: 61166
+ 17,35:
+ 1: 52974
+ 17,36:
+ 0: 4369
+ 1: 36044
+ 18,33:
+ 1: 65535
+ 18,34:
+ 1: 65535
+ 18,35:
+ 1: 65535
+ 18,36:
+ 1: 65535
+ 19,33:
+ 1: 45875
+ 0: 136
+ 19,34:
+ 1: 65435
+ 19,35:
+ 1: 48031
+ 19,36:
+ 1: 13107
+ 0: 34944
+ 20,32:
+ 3: 65504
+ 20,33:
+ 3: 239
+ 1: 61440
+ 20,34:
+ 1: 65535
+ 20,35:
+ 1: 65535
+ 17,37:
+ 0: 8739
+ 1: 34952
+ 17,38:
+ 0: 34
+ 1: 57992
+ 18,37:
+ 1: 65535
+ 18,38:
+ 1: 53503
+ 19,37:
+ 1: 29491
+ 0: 136
+ 19,38:
+ 1: 61695
+ 20,36:
+ 0: 65520
+ 20,37:
+ 0: 255
+ 1: 61440
+ 20,38:
+ 1: 28927
+ 20,39:
+ 1: 65295
+ 21,3:
+ 0: 35072
+ 21,4:
+ 1: 65297
+ 22,3:
+ 0: 62464
+ 22,4:
+ 0: 2
+ 1: 65280
+ 23,3:
+ 1: 59904
+ 23,4:
+ 1: 65454
+ 20,5:
+ 0: 1
+ 1: 52428
+ 20,6:
+ 0: 16
+ 1: 63688
+ 20,7:
+ 0: 16
+ 1: 52424
+ 20,8:
+ 1: 36748
+ 21,5:
+ 1: 29983
+ 21,6:
+ 1: 21844
+ 21,7:
+ 1: 56661
+ 21,8:
+ 1: 64977
+ 22,5:
+ 1: 65535
+ 22,6:
+ 1: 65522
+ 22,7:
+ 1: 64911
+ 22,8:
+ 1: 64797
+ 23,5:
+ 1: 65535
+ 23,6:
+ 1: 56796
+ 23,7:
+ 1: 64973
+ 23,8:
+ 1: 65293
+ 24,4:
+ 1: 65280
+ 0: 8
+ 24,5:
+ 1: 65535
+ 24,6:
+ 1: 64977
+ 24,7:
+ 1: 65309
+ 21,40:
+ 1: 36784
+ 21,41:
+ 0: 4400
+ 1: 136
+ 21,42:
+ 0: 34959
+ 21,39:
+ 1: 58287
+ 22,40:
+ 1: 65528
+ 22,41:
+ 1: 51455
+ 22,42:
+ 0: 256
+ 1: 52428
+ 21,43:
+ 0: 34952
+ 21,44:
+ 0: 8
+ 22,39:
+ 1: 63551
+ 22,43:
+ 1: 204
+ 0: 8192
+ 22,44:
+ 0: 15
+ 23,41:
+ 1: 23791
+ 23,42:
+ 1: 53727
+ 23,43:
+ 1: 255
+ 0: 32768
+ 23,39:
+ 1: 63246
+ 23,40:
+ 1: 25702
+ 24,40:
+ 1: 53247
+ 24,41:
+ 1: 52721
+ 24,43:
+ 1: 15
+ 0: 49152
+ 23,44:
+ 0: 15
+ 20,9:
+ 0: 4097
+ 1: 52428
+ 21,9:
+ 1: 53725
+ 21,10:
+ 1: 24029
+ 21,11:
+ 1: 54645
+ 21,12:
+ 1: 65373
+ 22,9:
+ 1: 53727
+ 22,10:
+ 1: 56799
+ 22,11:
+ 1: 64721
+ 22,12:
+ 1: 65293
+ 23,9:
+ 1: 61695
+ 23,10:
+ 1: 3839
+ 23,11:
+ 1: 65534
+ 23,12:
+ 1: 65423
+ 24,8:
+ 1: 56591
+ 24,9:
+ 1: 61663
+ 24,10:
+ 1: 52735
+ 24,11:
+ 1: 65521
+ 21,13:
+ 1: 56607
+ 21,14:
+ 1: 53725
+ 21,15:
+ 1: 61917
+ 21,16:
+ 1: 56575
+ 22,13:
+ 1: 64431
+ 22,14:
+ 1: 63675
+ 22,15:
+ 1: 63743
+ 22,16:
+ 1: 62463
+ 23,13:
+ 1: 49615
+ 23,14:
+ 1: 63247
+ 23,15:
+ 1: 28791
+ 23,16:
+ 1: 30583
+ 24,12:
+ 1: 65311
+ 24,13:
+ 1: 65039
+ 24,14:
+ 1: 56793
+ 24,15:
+ 1: 64285
+ 20,18:
+ 1: 61166
+ 21,17:
+ 1: 63245
+ 21,18:
+ 1: 65535
+ 21,19:
+ 1: 2047
+ 21,20:
+ 1: 40399
+ 22,17:
+ 1: 29695
+ 22,18:
+ 1: 30583
+ 22,19:
+ 1: 29047
+ 22,20:
+ 1: 3071
+ 23,17:
+ 1: 30583
+ 23,18:
+ 1: 30711
+ 23,19:
+ 1: 12287
+ 23,20:
+ 1: 12283
+ 24,16:
+ 1: 47803
+ 24,17:
+ 1: 39867
+ 24,18:
+ 1: 35771
+ 24,19:
+ 1: 53247
+ 20,23:
+ 1: 61166
+ 21,21:
+ 1: 64973
+ 21,22:
+ 1: 56589
+ 21,23:
+ 1: 8157
+ 21,24:
+ 1: 58591
+ 22,21:
+ 1: 65535
+ 22,22:
+ 1: 64271
+ 22,23:
+ 1: 35643
+ 22,24:
+ 1: 55483
+ 23,22:
+ 1: 48010
+ 23,23:
+ 1: 3979
+ 23,21:
+ 1: 44686
+ 23,24:
+ 1: 56558
+ 24,20:
+ 1: 56797
+ 24,21:
+ 1: 56781
+ 24,22:
+ 1: 60943
+ 24,23:
+ 1: 36606
+ 21,25:
+ 1: 61422
+ 21,26:
+ 1: 65166
+ 21,27:
+ 1: 3839
+ 21,28:
+ 1: 36863
+ 22,25:
+ 1: 47615
+ 22,26:
+ 1: 48011
+ 22,27:
+ 1: 35771
+ 22,28:
+ 1: 64507
+ 23,25:
+ 1: 60671
+ 23,26:
+ 1: 56590
+ 23,27:
+ 1: 3997
+ 23,28:
+ 1: 65535
+ 24,24:
+ 1: 65535
+ 24,25:
+ 1: 65535
+ 24,26:
+ 1: 56719
+ 24,27:
+ 1: 53197
+ 21,29:
+ 1: 48059
+ 21,30:
+ 1: 49072
+ 21,31:
+ 1: 65520
+ 22,29:
+ 1: 65523
+ 22,30:
+ 1: 49073
+ 22,31:
+ 1: 49073
+ 21,32:
+ 1: 34952
+ 3: 4352
+ 0: 8736
+ 22,32:
+ 1: 48059
+ 23,29:
+ 1: 65520
+ 23,30:
+ 1: 65520
+ 23,31:
+ 1: 61166
+ 23,32:
+ 1: 61422
+ 24,28:
+ 1: 56797
+ 24,29:
+ 1: 65520
+ 24,30:
+ 1: 63344
+ 24,31:
+ 1: 53503
+ 21,33:
+ 3: 1
+ 1: 64136
+ 0: 34
+ 21,34:
+ 1: 65535
+ 21,35:
+ 1: 65535
+ 21,36:
+ 1: 34954
+ 0: 13104
+ 22,33:
+ 1: 13107
+ 0: 34944
+ 22,34:
+ 1: 65331
+ 0: 8
+ 22,35:
+ 1: 13119
+ 0: 34816
+ 22,36:
+ 1: 45875
+ 0: 136
+ 23,34:
+ 1: 65518
+ 23,35:
+ 1: 61167
+ 23,33:
+ 1: 61166
+ 23,36:
+ 1: 61166
+ 24,32:
+ 1: 3861
+ 24,34:
+ 1: 26471
+ 21,37:
+ 0: 51
+ 1: 63624
+ 21,38:
+ 1: 45311
+ 22,37:
+ 1: 48063
+ 22,38:
+ 1: 63675
+ 23,38:
+ 1: 65262
+ 23,37:
+ 1: 61166
+ 24,36:
+ 1: 57462
+ 24,38:
+ 1: 65294
+ 24,39:
+ 1: 65423
+ 24,3:
+ 0: 58368
+ 25,3:
+ 0: 61440
+ 26,3:
+ 0: 61440
+ 26,4:
+ 0: 1
+ 1: 65280
+ 27,3:
+ 0: 29888
+ 28,3:
+ 0: 272
+ 1: 16384
+ 25,5:
+ 1: 30310
+ 25,6:
+ 1: 32628
+ 25,7:
+ 1: 65287
+ 25,4:
+ 1: 58880
+ 25,8:
+ 1: 65455
+ 26,5:
+ 1: 30591
+ 26,6:
+ 1: 30583
+ 26,7:
+ 1: 30591
+ 26,8:
+ 1: 62743
+ 27,4:
+ 1: 63232
+ 27,5:
+ 1: 65399
+ 27,6:
+ 1: 64399
+ 27,7:
+ 1: 48059
+ 27,8:
+ 1: 63987
+ 28,4:
+ 1: 30566
+ 28,5:
+ 1: 47879
+ 28,6:
+ 1: 49075
+ 28,7:
+ 1: 65523
+ 24,42:
+ 1: 61166
+ 24,44:
+ 0: 7
+ 25,40:
+ 1: 6007
+ 25,41:
+ 1: 52636
+ 25,42:
+ 1: 55805
+ 25,43:
+ 1: 141
+ 0: 12544
+ 25,39:
+ 1: 30479
+ 26,40:
+ 1: 4095
+ 26,41:
+ 1: 46079
+ 26,42:
+ 1: 55487
+ 26,43:
+ 1: 1
+ 0: 60480
+ 26,39:
+ 1: 65327
+ 27,40:
+ 1: 4095
+ 27,41:
+ 1: 61695
+ 27,42:
+ 1: 65535
+ 27,43:
+ 0: 3904
+ 27,39:
+ 1: 65295
+ 28,40:
+ 1: 7099
+ 28,41:
+ 1: 61823
+ 28,42:
+ 1: 65535
+ 28,43:
+ 0: 3840
+ 25,9:
+ 1: 25215
+ 25,10:
+ 1: 26223
+ 25,11:
+ 1: 65252
+ 25,12:
+ 1: 65294
+ 26,9:
+ 1: 65421
+ 26,10:
+ 1: 20479
+ 26,11:
+ 1: 65535
+ 26,12:
+ 1: 65359
+ 27,9:
+ 1: 40399
+ 27,10:
+ 1: 52701
+ 27,11:
+ 1: 59366
+ 27,12:
+ 1: 65358
+ 28,8:
+ 1: 57592
+ 28,9:
+ 1: 61422
+ 28,11:
+ 1: 57598
+ 25,13:
+ 1: 32271
+ 25,14:
+ 1: 30576
+ 25,15:
+ 1: 65303
+ 25,16:
+ 1: 53007
+ 26,13:
+ 1: 7951
+ 26,14:
+ 1: 65535
+ 26,15:
+ 1: 65524
+ 26,16:
+ 1: 65295
+ 27,13:
+ 1: 53231
+ 27,14:
+ 1: 56785
+ 27,15:
+ 1: 65308
+ 27,16:
+ 1: 32527
+ 28,13:
+ 1: 65524
+ 28,14:
+ 1: 30704
+ 28,15:
+ 1: 64279
+ 25,17:
+ 1: 62365
+ 25,18:
+ 1: 65535
+ 25,19:
+ 1: 32767
+ 25,20:
+ 1: 30583
+ 26,17:
+ 1: 61695
+ 26,18:
+ 1: 65535
+ 26,19:
+ 1: 4095
+ 26,20:
+ 1: 65535
+ 27,17:
+ 1: 63543
+ 27,18:
+ 1: 65535
+ 27,19:
+ 1: 53247
+ 27,20:
+ 1: 56799
+ 28,16:
+ 1: 43947
+ 28,17:
+ 1: 15291
+ 28,18:
+ 1: 15291
+ 28,19:
+ 1: 32767
+ 25,21:
+ 1: 65407
+ 25,22:
+ 1: 48015
+ 25,23:
+ 1: 3003
+ 25,24:
+ 1: 49147
+ 26,21:
+ 1: 65295
+ 26,22:
+ 1: 45951
+ 26,23:
+ 1: 7099
+ 26,24:
+ 1: 65535
+ 27,21:
+ 1: 65485
+ 27,22:
+ 1: 65295
+ 27,23:
+ 1: 20479
+ 27,24:
+ 1: 65535
+ 28,20:
+ 1: 30583
+ 28,21:
+ 1: 30583
+ 28,22:
+ 1: 13071
+ 6: 34816
+ 28,23:
+ 1: 819
+ 6: 2184
+ 25,25:
+ 1: 48059
+ 25,26:
+ 1: 65435
+ 25,27:
+ 1: 65535
+ 25,28:
+ 1: 65535
+ 26,25:
+ 1: 56785
+ 26,26:
+ 1: 65037
+ 26,27:
+ 1: 65535
+ 26,28:
+ 1: 65535
+ 27,25:
+ 1: 30577
+ 27,26:
+ 1: 65303
+ 27,27:
+ 1: 65535
+ 27,28:
+ 1: 65535
+ 28,24:
+ 1: 49147
+ 28,25:
+ 1: 48059
+ 28,26:
+ 1: 65067
+ 28,27:
+ 1: 65535
+ 25,29:
+ 1: 65532
+ 25,30:
+ 1: 47359
+ 25,31:
+ 1: 45247
+ 26,29:
+ 1: 65521
+ 26,30:
+ 1: 62387
+ 26,31:
+ 1: 61695
+ 27,29:
+ 1: 65520
+ 27,30:
+ 1: 63672
+ 27,31:
+ 1: 61695
+ 28,28:
+ 1: 65535
+ 28,29:
+ 1: 65527
+ 28,30:
+ 1: 48127
+ 28,31:
+ 1: 45247
+ 24,33:
+ 1: 26214
+ 24,35:
+ 1: 1638
+ 25,32:
+ 3: 4592
+ 0: 58880
+ 25,33:
+ 3: 4369
+ 0: 25828
+ 25,34:
+ 3: 6007
+ 0: 24576
+ 25,35:
+ 3: 4369
+ 0: 58596
+ 25,36:
+ 3: 241
+ 0: 6
+ 1: 28672
+ 26,32:
+ 3: 35056
+ 0: 29952
+ 26,33:
+ 0: 4593
+ 26,35:
+ 0: 29169
+ 3: 32768
+ 26,34:
+ 0: 4465
+ 3: 2184
+ 26,36:
+ 0: 5
+ 3: 248
+ 1: 61440
+ 27,32:
+ 3: 13296
+ 0: 50176
+ 27,33:
+ 0: 4592
+ 27,34:
+ 3: 819
+ 0: 4288
+ 27,35:
+ 0: 49393
+ 3: 12288
+ 27,36:
+ 3: 243
+ 0: 4
+ 1: 61440
+ 28,32:
+ 3: 240
+ 0: 64768
+ 28,33:
+ 0: 54773
+ 28,34:
+ 0: 53521
+ 3: 3276
+ 28,35:
+ 0: 62965
+ 24,37:
+ 1: 61166
+ 25,37:
+ 1: 30583
+ 25,38:
+ 1: 65287
+ 26,37:
+ 1: 65535
+ 26,38:
+ 1: 65327
+ 27,37:
+ 1: 65535
+ 27,38:
+ 1: 65423
+ 28,36:
+ 3: 240
+ 1: 56320
+ 0: 13
+ 28,37:
+ 1: 56797
+ 28,38:
+ 1: 65293
+ 28,39:
+ 1: 47887
+ 29,4:
+ 1: 61440
+ 0: 14
+ 29,5:
+ 1: 65535
+ 29,6:
+ 1: 65528
+ 29,7:
+ 1: 65520
+ 29,3:
+ 0: 12848
+ 29,8:
+ 1: 56540
+ 30,4:
+ 0: 51359
+ 1: 4096
+ 30,5:
+ 1: 4369
+ 0: 2184
+ 30,6:
+ 1: 57296
+ 30,7:
+ 1: 64988
+ 30,8:
+ 1: 55775
+ 31,5:
+ 0: 40704
+ 31,6:
+ 1: 4368
+ 0: 34952
+ 31,7:
+ 1: 4369
+ 0: 35016
+ 31,8:
+ 1: 28689
+ 0: 8
+ 29,40:
+ 1: 4095
+ 29,41:
+ 1: 60671
+ 29,42:
+ 1: 61439
+ 29,43:
+ 0: 3856
+ 29,39:
+ 1: 65327
+ 30,40:
+ 1: 44719
+ 30,41:
+ 1: 55487
+ 30,42:
+ 1: 56829
+ 30,43:
+ 0: 3872
+ 30,39:
+ 1: 11791
+ 31,40:
+ 1: 12595
+ 31,41:
+ 1: 12339
+ 0: 2048
+ 31,42:
+ 1: 4915
+ 31,43:
+ 0: 3968
+ 31,39:
+ 1: 8994
+ 0: 2048
+ 32,41:
+ 0: 4369
+ 32,43:
+ 0: 17
+ 28,10:
+ 1: 3822
+ 28,12:
+ 1: 61166
+ 29,9:
+ 1: 64989
+ 29,10:
+ 1: 36317
+ 29,11:
+ 1: 62719
+ 29,12:
+ 1: 65535
+ 30,9:
+ 1: 56797
+ 30,10:
+ 1: 52729
+ 30,11:
+ 1: 56479
+ 30,12:
+ 1: 57309
+ 31,9:
+ 1: 30583
+ 31,10:
+ 1: 56816
+ 31,11:
+ 1: 54721
+ 31,12:
+ 1: 56797
+ 32,8:
+ 0: 8995
+ 32,11:
+ 1: 65262
+ 29,13:
+ 1: 65526
+ 29,14:
+ 1: 57308
+ 29,15:
+ 1: 52701
+ 29,16:
+ 1: 52974
+ 30,13:
+ 1: 56792
+ 30,14:
+ 1: 57117
+ 30,15:
+ 1: 56607
+ 30,16:
+ 1: 53725
+ 31,13:
+ 1: 65372
+ 31,14:
+ 1: 61199
+ 31,15:
+ 1: 52687
+ 31,16:
+ 1: 56573
+ 32,12:
+ 1: 65535
+ 32,13:
+ 1: 65039
+ 32,14:
+ 1: 65518
+ 32,15:
+ 1: 56735
+ 29,17:
+ 1: 56797
+ 29,18:
+ 1: 52733
+ 29,19:
+ 1: 4095
+ 29,20:
+ 1: 65535
+ 30,17:
+ 1: 56605
+ 30,18:
+ 1: 7633
+ 30,19:
+ 1: 36863
+ 30,20:
+ 1: 65535
+ 31,17:
+ 1: 64975
+ 31,18:
+ 1: 4060
+ 31,19:
+ 1: 40959
+ 31,20:
+ 1: 48059
+ 32,16:
+ 1: 7645
+ 32,17:
+ 1: 64989
+ 32,18:
+ 1: 3549
+ 32,19:
+ 1: 16383
+ 29,21:
+ 1: 4095
+ 29,22:
+ 1: 47
+ 6: 65280
+ 29,23:
+ 6: 4095
+ 1: 8192
+ 29,24:
+ 1: 65535
+ 30,21:
+ 1: 18295
+ 30,22:
+ 1: 57575
+ 30,23:
+ 1: 20192
+ 30,24:
+ 1: 65535
+ 31,21:
+ 1: 35770
+ 31,22:
+ 1: 49083
+ 31,23:
+ 1: 43931
+ 31,24:
+ 1: 56718
+ 32,20:
+ 1: 48059
+ 32,21:
+ 1: 15347
+ 32,22:
+ 1: 64443
+ 32,23:
+ 1: 15291
+ 29,25:
+ 1: 65535
+ 29,26:
+ 1: 30527
+ 29,27:
+ 1: 32631
+ 29,28:
+ 1: 30583
+ 30,25:
+ 1: 30719
+ 30,26:
+ 1: 32551
+ 30,27:
+ 1: 65527
+ 30,28:
+ 1: 4095
+ 31,25:
+ 1: 47325
+ 31,26:
+ 1: 48043
+ 31,27:
+ 1: 48059
+ 31,28:
+ 1: 49151
+ 32,24:
+ 1: 49151
+ 32,25:
+ 1: 48059
+ 32,26:
+ 1: 48059
+ 32,27:
+ 1: 16383
+ 29,29:
+ 1: 65520
+ 29,30:
+ 1: 64977
+ 29,31:
+ 1: 28927
+ 29,32:
+ 1: 1092
+ 3: 4368
+ 30,29:
+ 1: 65527
+ 30,30:
+ 1: 65520
+ 30,31:
+ 1: 65279
+ 30,32:
+ 1: 61439
+ 31,29:
+ 1: 65528
+ 31,30:
+ 1: 61408
+ 31,31:
+ 1: 61166
+ 31,32:
+ 1: 57583
+ 32,28:
+ 1: 45943
+ 32,29:
+ 1: 65531
+ 32,30:
+ 1: 48048
+ 32,31:
+ 1: 49075
+ 29,33:
+ 3: 4369
+ 1: 52428
+ 29,34:
+ 3: 4369
+ 1: 52428
+ 29,35:
+ 3: 4369
+ 1: 3276
+ 29,36:
+ 3: 17
+ 1: 25668
+ 30,34:
+ 1: 61423
+ 30,33:
+ 1: 61166
+ 30,35:
+ 1: 61166
+ 30,36:
+ 1: 65535
+ 31,34:
+ 1: 61423
+ 31,33:
+ 1: 61166
+ 31,35:
+ 1: 60942
+ 31,36:
+ 1: 3822
+ 32,32:
+ 1: 61883
+ 32,33:
+ 1: 65535
+ 32,34:
+ 1: 65535
+ 32,35:
+ 1: 7455
+ 29,37:
+ 1: 65504
+ 29,38:
+ 1: 65391
+ 30,38:
+ 1: 65518
+ 30,37:
+ 1: 61166
+ 31,37:
+ 1: 43566
+ 31,38:
+ 1: 10990
+ 32,36:
+ 1: 3581
+ 32,37:
+ 1: 65391
+ 32,38:
+ 1: 4095
+ 32,39:
+ 0: 4592
+ 32,10:
+ 0: 2274
+ 32,9:
+ 0: 11810
+ 33,9:
+ 0: 3840
+ 33,10:
+ 0: 112
+ 1: 32768
+ 33,11:
+ 1: 16315
+ 33,12:
+ 1: 46075
+ 34,9:
+ 0: 3840
+ 34,10:
+ 1: 4096
+ 0: 8
+ 34,11:
+ 1: 52700
+ 34,12:
+ 1: 55517
+ 35,9:
+ 0: 7936
+ 35,10:
+ 0: 2051
+ 1: 4880
+ 35,11:
+ 1: 30583
+ 35,12:
+ 1: 29047
+ 36,9:
+ 0: 12032
+ 36,11:
+ 1: 12287
+ 33,13:
+ 1: 65295
+ 33,14:
+ 1: 60943
+ 33,15:
+ 1: 65294
+ 33,16:
+ 1: 4095
+ 34,13:
+ 1: 65485
+ 34,14:
+ 1: 61167
+ 34,15:
+ 1: 61166
+ 34,16:
+ 1: 61166
+ 35,13:
+ 1: 63351
+ 35,14:
+ 1: 16383
+ 35,15:
+ 1: 11195
+ 35,16:
+ 1: 61166
+ 36,12:
+ 1: 65535
+ 36,13:
+ 1: 62207
+ 36,14:
+ 1: 36863
+ 36,15:
+ 1: 39867
+ 33,17:
+ 1: 65535
+ 33,18:
+ 1: 16383
+ 33,19:
+ 1: 4095
+ 33,20:
+ 1: 65535
+ 34,17:
+ 1: 61167
+ 34,19:
+ 1: 4095
+ 34,18:
+ 1: 44778
+ 34,20:
+ 1: 30583
+ 35,17:
+ 1: 65520
+ 35,18:
+ 1: 53240
+ 35,19:
+ 1: 4095
+ 35,20:
+ 1: 45567
+ 36,16:
+ 1: 48059
+ 36,17:
+ 1: 65528
+ 36,18:
+ 1: 52636
+ 36,19:
+ 1: 51709
+ 33,21:
+ 1: 20408
+ 33,22:
+ 1: 65535
+ 33,23:
+ 1: 4095
+ 33,24:
+ 1: 65535
+ 34,21:
+ 1: 35824
+ 34,22:
+ 1: 48059
+ 34,23:
+ 1: 3003
+ 34,24:
+ 1: 64751
+ 35,21:
+ 1: 49648
+ 35,22:
+ 1: 56797
+ 35,23:
+ 1: 56789
+ 35,24:
+ 1: 65437
+ 36,20:
+ 1: 24031
+ 36,21:
+ 1: 7420
+ 36,22:
+ 1: 56829
+ 36,23:
+ 1: 56796
+ 33,25:
+ 1: 65535
+ 33,26:
+ 1: 65535
+ 33,27:
+ 1: 1911
+ 33,28:
+ 1: 62071
+ 34,25:
+ 1: 65501
+ 34,26:
+ 1: 56797
+ 34,27:
+ 1: 65528
+ 34,28:
+ 1: 62207
+ 35,25:
+ 1: 56735
+ 35,26:
+ 1: 40413
+ 35,27:
+ 1: 7644
+ 35,28:
+ 1: 64543
+ 36,24:
+ 1: 65357
+ 36,25:
+ 1: 47887
+ 36,26:
+ 1: 3003
+ 36,27:
+ 1: 19733
+ 33,29:
+ 1: 65520
+ 33,30:
+ 1: 65520
+ 33,31:
+ 1: 65524
+ 33,32:
+ 1: 63743
+ 34,29:
+ 1: 65520
+ 34,31:
+ 1: 15282
+ 34,30:
+ 1: 26212
+ 34,32:
+ 1: 55483
+ 35,29:
+ 1: 65524
+ 35,30:
+ 1: 47538
+ 35,31:
+ 1: 46011
+ 35,32:
+ 1: 63807
+ 36,28:
+ 1: 61255
+ 36,29:
+ 1: 65520
+ 36,30:
+ 1: 30577
+ 36,31:
+ 1: 29047
+ 33,33:
+ 1: 65535
+ 33,34:
+ 1: 56735
+ 33,35:
+ 1: 18381
+ 33,36:
+ 1: 50525
+ 34,33:
+ 1: 24029
+ 34,34:
+ 1: 14277
+ 34,35:
+ 1: 64232
+ 34,36:
+ 1: 63743
+ 35,34:
+ 1: 10103
+ 35,35:
+ 1: 29047
+ 35,33:
+ 1: 2728
+ 35,36:
+ 1: 61823
+ 36,32:
+ 1: 63239
+ 36,33:
+ 1: 1911
+ 36,34:
+ 1: 65535
+ 36,35:
+ 1: 30583
+ 32,40:
+ 0: 4369
+ 33,37:
+ 1: 61007
+ 33,39:
+ 0: 125
+ 33,38:
+ 1: 238
+ 34,37:
+ 1: 64973
+ 34,38:
+ 1: 221
+ 0: 16384
+ 34,39:
+ 0: 15
+ 35,37:
+ 1: 48063
+ 35,38:
+ 1: 43775
+ 35,39:
+ 1: 170
+ 36,36:
+ 1: 63479
+ 36,37:
+ 1: 48063
+ 36,38:
+ 1: 3839
+ 36,10:
+ 1: 57344
+ 0: 34
+ 37,9:
+ 0: 20224
+ 37,10:
+ 1: 61440
+ 0: 68
+ 37,11:
+ 1: 4095
+ 37,12:
+ 1: 32631
+ 38,9:
+ 0: 3840
+ 38,10:
+ 1: 47104
+ 38,11:
+ 1: 48959
+ 39,12:
+ 1: 26212
+ 37,13:
+ 1: 45175
+ 37,14:
+ 1: 15359
+ 37,15:
+ 1: 48123
+ 37,16:
+ 1: 64315
+ 38,12:
+ 1: 65520
+ 38,13:
+ 1: 63231
+ 38,14:
+ 1: 4095
+ 38,15:
+ 1: 65535
+ 38,16:
+ 1: 30479
+ 39,16:
+ 1: 5973
+ 37,17:
+ 1: 48059
+ 37,18:
+ 1: 15243
+ 37,19:
+ 1: 58107
+ 37,20:
+ 1: 61166
+ 38,17:
+ 1: 30583
+ 38,18:
+ 1: 1911
+ 38,19:
+ 1: 47167
+ 38,20:
+ 1: 48059
+ 37,21:
+ 1: 20432
+ 37,22:
+ 1: 65535
+ 37,23:
+ 1: 65535
+ 37,24:
+ 1: 65471
+ 38,21:
+ 1: 35762
+ 38,22:
+ 1: 65427
+ 38,23:
+ 1: 7089
+ 38,24:
+ 1: 64973
+ 39,23:
+ 0: 2
+ 39,24:
+ 1: 30583
+ 37,25:
+ 1: 65407
+ 37,26:
+ 1: 65535
+ 37,27:
+ 1: 65535
+ 37,28:
+ 1: 57202
+ 38,25:
+ 1: 65309
+ 38,26:
+ 1: 65535
+ 38,27:
+ 1: 65535
+ 38,28:
+ 1: 65155
+ 39,25:
+ 1: 30503
+ 37,29:
+ 1: 65520
+ 37,30:
+ 1: 30583
+ 37,31:
+ 1: 30583
+ 37,32:
+ 1: 63351
+ 38,29:
+ 1: 65520
+ 38,30:
+ 1: 48057
+ 38,31:
+ 1: 64977
+ 38,32:
+ 1: 64285
+ 37,33:
+ 1: 30583
+ 37,34:
+ 1: 65527
+ 37,35:
+ 1: 30578
+ 37,36:
+ 1: 14578
+ 38,33:
+ 1: 48048
+ 38,34:
+ 1: 65529
+ 38,35:
+ 1: 48050
+ 36,39:
+ 0: 224
+ 37,37:
+ 1: 48063
+ 37,38:
+ 1: 43707
+ 37,39:
+ 1: 170
+ 38,36:
+ 1: 12144
+ 38,37:
+ 1: 48127
+ 38,38:
+ 1: 187
+ 0: 16384
+ 38,39:
+ 0: 14
+ 3,24:
+ 0: 32768
+ 3,28:
+ 0: 34952
+ 32,42:
+ 0: 4369
+ uniqueMixes:
+ - volume: 2500
+ immutable: True
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 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:
+ - 0
+ - 0
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 0
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 6666.982
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - volume: 2500
+ temperature: 235
+ moles:
+ - 21.824879
+ - 82.10312
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ chunkSize: 4
+ - type: NavMap
+ - type: BecomesStation
+ id: Convex
+ - uid: 353
+ components:
+ - type: MetaData
+ name: Map Entity
+ - type: Transform
+ - type: Map
+ mapPaused: True
+ - type: PhysicsMap
+ - type: GridTree
+ - type: MovedGrids
+ - type: Broadphase
+ - type: OccluderTree
+ - type: LoadedMap
+- proto: AcousticGuitarInstrument
+ entities:
+ - uid: 16154
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 127.41155,144.67415
+ parent: 1
+- proto: ActionToggleBlock
+ entities:
+ - uid: 5660
+ components:
+ - type: Transform
+ parent: 5657
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 5657
+ - uid: 22656
+ components:
+ - type: Transform
+ parent: 22655
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22655
+ - uid: 22747
+ components:
+ - type: Transform
+ parent: 22746
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22746
+ - uid: 22767
+ components:
+ - type: Transform
+ parent: 22766
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22766
+- proto: ActionToggleInternals
+ entities:
+ - uid: 3364
+ components:
+ - type: Transform
+ parent: 20941
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 20941
+ - uid: 19390
+ components:
+ - type: Transform
+ parent: 329
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 329
+ - uid: 26838
+ components:
+ - type: Transform
+ parent: 19098
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 19098
+ - uid: 32012
+ components:
+ - type: Transform
+ parent: 32011
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 32011
+- proto: ActionToggleJetpack
+ entities:
+ - uid: 19389
+ components:
+ - type: Transform
+ parent: 329
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 329
+ - uid: 23342
+ components:
+ - type: Transform
+ parent: 19098
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 19098
+- proto: ActionToggleLight
+ entities:
+ - uid: 5305
+ components:
+ - type: Transform
+ parent: 20929
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 20929
+ - uid: 12660
+ components:
+ - type: Transform
+ parent: 36727
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 36727
+ - uid: 12661
+ components:
+ - type: Transform
+ parent: 36726
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 36726
+ - uid: 12663
+ components:
+ - type: Transform
+ parent: 36563
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 36563
+ - uid: 13521
+ components:
+ - type: Transform
+ parent: 13520
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 13520
+ - uid: 13523
+ components:
+ - type: Transform
+ parent: 13522
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 13522
+ - uid: 13526
+ components:
+ - type: Transform
+ parent: 13525
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 13525
+ - uid: 18796
+ components:
+ - type: Transform
+ parent: 20881
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 20881
+ - uid: 19386
+ components:
+ - type: Transform
+ parent: 19385
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 19385
+ - uid: 19863
+ components:
+ - type: Transform
+ parent: 36664
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 36664
+ - uid: 20506
+ components:
+ - type: Transform
+ parent: 22657
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22657
+ - uid: 20855
+ components:
+ - type: Transform
+ parent: 22658
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 22658
+ - uid: 24287
+ components:
+ - type: Transform
+ parent: 27182
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 27182
+ - uid: 26840
+ components:
+ - type: Transform
+ parent: 19358
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 19358
+ - uid: 26940
+ components:
+ - type: Transform
+ parent: 26939
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 26939
+ - uid: 27185
+ components:
+ - type: Transform
+ parent: 27184
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 27184
+ - uid: 27187
+ components:
+ - type: Transform
+ parent: 27186
+ - type: InstantAction
+ originalIconColor: '#FFFFFFFF'
+ container: 27186
+- proto: AirAlarm
+ entities:
+ - uid: 143
+ components:
+ - type: MetaData
+ name: kitchen air alarm
+ - type: Transform
+ pos: 120.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5335
+ - 5048
+ - 4863
+ - 25712
+ - 25713
+ - 25698
+ - 26177
+ - 25699
+ - 32008
+ - 20755
+ - uid: 1303
+ components:
+ - type: MetaData
+ name: hallway 3 air alarm
+ - type: Transform
+ pos: 54.5,67.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2537
+ - 2536
+ - 2535
+ - 10747
+ - 10748
+ - 10749
+ - 2034
+ - 1270
+ - 1269
+ - 27815
+ - 27816
+ - 27817
+ - 10792
+ - 27814
+ - 1038
+ - 1243
+ - uid: 1588
+ components:
+ - type: MetaData
+ name: tech vault air alarm
+ - type: Transform
+ pos: 143.5,135.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 8673
+ - 11366
+ - 29812
+ - 1587
+ - 1577
+ - uid: 1676
+ components:
+ - type: MetaData
+ name: atmospherics canister storage air alarm
+ - type: Transform
+ pos: 85.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21593
+ - 21592
+ - 19478
+ - 3158
+ - 3102
+ - 3047
+ - 2985
+ - 2906
+ - uid: 2464
+ components:
+ - type: MetaData
+ name: atmospherics hallway air alarm
+ - type: Transform
+ pos: 79.5,124.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 15410
+ - 15409
+ - 15411
+ - 2516
+ - 2458
+ - 2906
+ - 2985
+ - 3047
+ - 3102
+ - 3158
+ - 3300
+ - 15434
+ - 15435
+ - 2423
+ - 2319
+ - 2207
+ - uid: 2486
+ components:
+ - type: MetaData
+ name: atmpsherics front desk air alarm
+ - type: Transform
+ pos: 74.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 15434
+ - 15435
+ - 15423
+ - 15433
+ - 15430
+ - 15936
+ - 15937
+ - uid: 2722
+ components:
+ - type: MetaData
+ name: atmospherics and engineering air alarm
+ - type: Transform
+ pos: 89.5,124.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 11043
+ - 13828
+ - 25779
+ - 3524
+ - 3300
+ - 3385
+ - uid: 2997
+ components:
+ - type: MetaData
+ name: tool shed air alarm
+ - type: Transform
+ pos: 94.5,62.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4705
+ - 2952
+ - 37466
+ - 3855
+ - 3601
+ - 36282
+ - uid: 3059
+ components:
+ - type: MetaData
+ name: pool air alarm
+ - type: Transform
+ pos: 120.5,87.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5380
+ - 5466
+ - 25739
+ - 3057
+ - 25738
+ - 5338
+ - uid: 3062
+ components:
+ - type: Transform
+ pos: 135.5,75.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6356
+ - 5985
+ - 5687
+ - 22276
+ - 22275
+ - 21750
+ - 32262
+ - 12396
+ - uid: 3112
+ components:
+ - type: MetaData
+ name: clown's room air alarm
+ - type: Transform
+ pos: 108.5,60.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4371
+ - 25835
+ - 4527
+ - 25943
+ - 4472
+ - uid: 3113
+ components:
+ - type: MetaData
+ name: mime's room air alarm
+ - type: Transform
+ pos: 102.5,61.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4109
+ - 25836
+ - 3111
+ - 25834
+ - 4169
+ - uid: 3121
+ components:
+ - type: MetaData
+ name: theater air alarm
+ - type: Transform
+ pos: 110.5,65.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1846
+ - 1847
+ - 1780
+ - 4764
+ - 4472
+ - 4169
+ - 1845
+ - 25772
+ - 3119
+ - 25766
+ - 25831
+ - 3126
+ - 25830
+ - uid: 3344
+ components:
+ - type: MetaData
+ name: reporter's office air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,125.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6337
+ - 855
+ - 29254
+ - 29253
+ - 23856
+ - uid: 4625
+ components:
+ - type: MetaData
+ name: musician's room air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,58.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4949
+ - 25837
+ - 3110
+ - 25944
+ - 4764
+ - uid: 10326
+ components:
+ - type: MetaData
+ name: combo cafe air alarm
+ - type: Transform
+ pos: 137.5,146.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6278
+ - 6127
+ - 1471
+ - 1498
+ - 30126
+ - 10316
+ - 30127
+ - 4883
+ - 30040
+ - uid: 10683
+ components:
+ - type: MetaData
+ name: bridge air alarm
+ - type: Transform
+ pos: 39.5,65.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 813
+ - 812
+ - 811
+ - 10679
+ - 10680
+ - 10738
+ - 10739
+ - 10706
+ - 10702
+ - 14866
+ - 15015
+ - 14973
+ - 27271
+ - uid: 10684
+ components:
+ - type: MetaData
+ name: AI dome 1 air alarm
+ - type: Transform
+ pos: 43.5,30.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1033
+ - 12922
+ - 13225
+ - 12920
+ - 1028
+ - uid: 10685
+ components:
+ - type: MetaData
+ name: AI dome 2 air alarm
+ - type: Transform
+ pos: 47.5,32.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1033
+ - 1292
+ - 12923
+ - 13226
+ - 12921
+ - 1028
+ - uid: 10686
+ components:
+ - type: MetaData
+ name: AI dome 3 air alarm
+ - type: Transform
+ pos: 54.5,31.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1292
+ - 13162
+ - 13227
+ - 10691
+ - 1283
+ - uid: 10730
+ components:
+ - type: MetaData
+ name: captain's room air alarm
+ - type: Transform
+ pos: 37.5,77.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 666
+ - 6048
+ - 10568
+ - 10741
+ - 10703
+ - uid: 10732
+ components:
+ - type: MetaData
+ name: bridge hallway south air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,61.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 813
+ - 812
+ - 811
+ - 5822
+ - 5826
+ - 5920
+ - 10681
+ - 10737
+ - 10682
+ - 891
+ - 862
+ - 834
+ - 718
+ - 14866
+ - 15015
+ - 14973
+ - uid: 10733
+ components:
+ - type: MetaData
+ name: bridge hallway north air alarm
+ - type: Transform
+ pos: 44.5,77.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 834
+ - 862
+ - 891
+ - 10735
+ - 10736
+ - 10734
+ - 6048
+ - 23644
+ - 32244
+ - 861
+ - 34188
+ - uid: 10746
+ components:
+ - type: MetaData
+ name: bridge entrance air alarm
+ - type: Transform
+ pos: 48.5,67.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1054
+ - 1099
+ - 10743
+ - 10744
+ - 10745
+ - 1270
+ - 1269
+ - uid: 10750
+ components:
+ - type: MetaData
+ name: bridge common room air alarm
+ - type: Transform
+ pos: 50.5,61.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4302
+ - 7232
+ - 5822
+ - 5826
+ - 7183
+ - 10742
+ - 5920
+ - 1099
+ - 1054
+ - 1318
+ - 1435
+ - uid: 10751
+ components:
+ - type: MetaData
+ name: HOP's office air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1561
+ - 7233
+ - 10788
+ - 7228
+ - 1435
+ - 10792
+ - uid: 10752
+ components:
+ - type: MetaData
+ name: HOP's room air alarm
+ - type: Transform
+ pos: 56.5,53.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1441
+ - 10764
+ - 10789
+ - 1700
+ - 1561
+ - uid: 13229
+ components:
+ - type: MetaData
+ name: AI upload air alarm
+ - type: Transform
+ pos: 49.5,43.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 466
+ - 12945
+ - 13224
+ - 10692
+ - 1056
+ - uid: 13230
+ components:
+ - type: MetaData
+ name: AI entrance air alarm
+ - type: Transform
+ pos: 45.5,47.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 13231
+ - 1056
+ - 13228
+ - 13215
+ - 718
+ - 4302
+ - uid: 14520
+ components:
+ - type: MetaData
+ name: emitters west air alarm
+ - type: Transform
+ pos: 98.5,143.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14277
+ - 3894
+ - 3892
+ - 37269
+ - 4278
+ - uid: 14573
+ components:
+ - type: MetaData
+ name: engineering hallway north air alarm
+ - type: Transform
+ pos: 103.5,157.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3737
+ - 3773
+ - 3822
+ - 14514
+ - 14518
+ - 14513
+ - 3623
+ - 4013
+ - 4062
+ - 4144
+ - 4187
+ - 4061
+ - 4393
+ - 4706
+ - 4392
+ - 5002
+ - 5003
+ - 5087
+ - 14515
+ - 14517
+ - 14516
+ - 5246
+ - 5327
+ - 5363
+ - uid: 14574
+ components:
+ - type: MetaData
+ name: PA air alarm
+ - type: Transform
+ pos: 110.5,153.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14583
+ - 14585
+ - 14584
+ - 4393
+ - 4706
+ - uid: 14594
+ components:
+ - type: MetaData
+ name: emitters east air alarm
+ - type: Transform
+ pos: 118.5,143.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5188
+ - 4829
+ - 5732
+ - 4279
+ - 5186
+ - uid: 14595
+ components:
+ - type: MetaData
+ name: engineering hallway east air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,146.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5248
+ - 5328
+ - 5365
+ - 4603
+ - 4602
+ - 5188
+ - 5186
+ - 5246
+ - 5327
+ - 5363
+ - 14523
+ - 14521
+ - 14522
+ - uid: 14596
+ components:
+ - type: MetaData
+ name: engineering east station and front desk air alarm
+ - type: Transform
+ pos: 118.5,126.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4856
+ - 14525
+ - 14527
+ - 14526
+ - 9300
+ - 5365
+ - 5328
+ - 5248
+ - 16581
+ - 16582
+ - uid: 14597
+ components:
+ - type: MetaData
+ name: engineering west station air alarm
+ - type: Transform
+ pos: 98.5,126.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3524
+ - 3739
+ - 3774
+ - 3824
+ - 14569
+ - 14571
+ - 14570
+ - 4233
+ - uid: 14598
+ components:
+ - type: MetaData
+ name: SMES array air alarm
+ - type: Transform
+ pos: 129.5,130.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 9300
+ - 5428
+ - 5649
+ - 15181
+ - 14567
+ - 14553
+ - 5711
+ - uid: 14599
+ components:
+ - type: MetaData
+ name: telecommunications air alarm
+ - type: Transform
+ pos: 133.5,130.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5870
+ - 5711
+ - 14560
+ - 14568
+ - 14561
+ - 5919
+ - 360
+ - uid: 14600
+ components:
+ - type: MetaData
+ name: engineering locker room air alarm
+ - type: Transform
+ pos: 133.5,137.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4603
+ - 4602
+ - 5648
+ - 5918
+ - 5919
+ - 5649
+ - 15347
+ - 15350
+ - 15349
+ - uid: 14601
+ components:
+ - type: MetaData
+ name: CE's room air alarm
+ - type: Transform
+ pos: 126.5,147.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 15274
+ - 15276
+ - 5648
+ - 5669
+ - 3092
+ - uid: 14603
+ components:
+ - type: MetaData
+ name: engineering hallway west air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,146.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3894
+ - 3892
+ - 3824
+ - 3774
+ - 3739
+ - 3657
+ - 3882
+ - 3822
+ - 3773
+ - 3737
+ - 14275
+ - 14276
+ - 13971
+ - 36757
+ - 15984
+ - 16017
+ - uid: 14667
+ components:
+ - type: MetaData
+ name: containment storage air alarm
+ - type: Transform
+ pos: 97.5,153.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14586
+ - 14666
+ - 14587
+ - 4187
+ - 4144
+ - 4062
+ - 4013
+ - uid: 14669
+ components:
+ - type: MetaData
+ name: gravity air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,160.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14671
+ - 14668
+ - 14659
+ - 3819
+ - 4061
+ - uid: 14840
+ components:
+ - type: MetaData
+ name: AME air alarm
+ - type: Transform
+ pos: 109.5,163.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4392
+ - 14843
+ - 15980
+ - 14842
+ - 4736
+ - uid: 14846
+ components:
+ - type: MetaData
+ name: containment entrance air alarm
+ - type: Transform
+ pos: 119.5,153.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 14621
+ - 14622
+ - 14623
+ - 5087
+ - 5003
+ - uid: 15521
+ components:
+ - type: MetaData
+ name: atmospherics central air alarm
+ - type: Transform
+ pos: 72.5,154.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2830
+ - 2829
+ - 2848
+ - 2847
+ - 15519
+ - 16009
+ - 36755
+ - 2516
+ - 2458
+ - 7390
+ - 15510
+ - 15437
+ - 15450
+ - 15448
+ - 15507
+ - uid: 15662
+ components:
+ - type: MetaData
+ name: salvage bay air alarm
+ - type: Transform
+ pos: 147.5,97.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 18415
+ - 29309
+ - 25080
+ - 6702
+ - 6703
+ - 22419
+ - 6828
+ - 1363
+ - 266
+ - 23406
+ - 1362
+ - uid: 15935
+ components:
+ - type: MetaData
+ name: arcade air alarm
+ - type: Transform
+ pos: 123.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 25724
+ - 36613
+ - 36637
+ - 3667
+ - 23848
+ - 23847
+ - 5578
+ - 32008
+ - uid: 16599
+ components:
+ - type: MetaData
+ name: library air alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,50.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2493
+ - 26139
+ - 26233
+ - 26128
+ - 2704
+ - 2815
+ - 26148
+ - 4065
+ - 27117
+ - uid: 17077
+ components:
+ - type: MetaData
+ name: morgue air alarm
+ - type: Transform
+ pos: 62.5,88.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1198
+ - 16794
+ - 17078
+ - 16795
+ - 2021
+ - uid: 17080
+ components:
+ - type: MetaData
+ name: medical locker room air alarm
+ - type: Transform
+ pos: 68.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 17023
+ - 17079
+ - 17024
+ - 2165
+ - 2479
+ - uid: 17081
+ components:
+ - type: MetaData
+ name: medical break room air alarm
+ - type: Transform
+ pos: 82.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3439
+ - 17026
+ - 17082
+ - 17025
+ - 3107
+ - uid: 17089
+ components:
+ - type: MetaData
+ name: CMO's room air alarm
+ - type: Transform
+ pos: 88.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3550
+ - 37411
+ - 10971
+ - 17038
+ - 3228
+ - uid: 17091
+ components:
+ - type: MetaData
+ name: chemistry desk south air alarm
+ - type: Transform
+ pos: 89.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3312
+ - 17075
+ - 17092
+ - 16993
+ - uid: 17097
+ components:
+ - type: MetaData
+ name: medical hallway east air alarm
+ - type: Transform
+ pos: 84.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2989
+ - 3106
+ - 3228
+ - 2918
+ - 2915
+ - 2858
+ - 2988
+ - 3050
+ - 3169
+ - 17006
+ - 17098
+ - 17008
+ - uid: 17102
+ components:
+ - type: MetaData
+ name: medical hallway south air alarm
+ - type: Transform
+ pos: 69.5,89.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2165
+ - 2021
+ - 2164
+ - 2279
+ - 2473
+ - 2749
+ - 3107
+ - 3238
+ - 3106
+ - 2989
+ - 2795
+ - 17101
+ - 17099
+ - 17100
+ - uid: 17103
+ components:
+ - type: MetaData
+ name: medical hallway west air alarm
+ - type: Transform
+ pos: 68.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2279
+ - 2164
+ - 2331
+ - 2328
+ - 2009
+ - 3333
+ - 1809
+ - 17005
+ - 17104
+ - 17007
+ - uid: 17106
+ components:
+ - type: MetaData
+ name: cryogenics air alarm
+ - type: Transform
+ pos: 73.5,93.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2473
+ - 16967
+ - 19623
+ - 16962
+ - 2795
+ - 2636
+ - 2596
+ - uid: 17107
+ components:
+ - type: MetaData
+ name: surgery theater air alarm
+ - type: Transform
+ pos: 62.5,111.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 16753
+ - 17108
+ - 16752
+ - 2000
+ - uid: 17109
+ components:
+ - type: MetaData
+ name: medical front entrance air alarm
+ - type: Transform
+ pos: 68.5,109.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2594
+ - 2634
+ - 2858
+ - 2988
+ - 3050
+ - 17019
+ - 17022
+ - 17021
+ - 3104
+ - 3049
+ - 2987
+ - 2214
+ - 2162
+ - 2072
+ - 2000
+ - 3333
+ - 1809
+ - 16977
+ - 17110
+ - 16976
+ - uid: 17112
+ components:
+ - type: MetaData
+ name: surgery air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,102.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2009
+ - 1750
+ - 16782
+ - 17111
+ - 16762
+ - uid: 17614
+ components:
+ - type: MetaData
+ name: robotics air alarm
+ - type: Transform
+ pos: 62.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1615
+ - 1614
+ - 1613
+ - 16774
+ - 17615
+ - 16775
+ - 1605
+ - 1750
+ - uid: 18183
+ components:
+ - type: MetaData
+ name: EVA air alarm
+ - type: Transform
+ pos: 49.5,72.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 32244
+ - 23644
+ - 32366
+ - 29537
+ - 32367
+ - 23375
+ - 23637
+ - 23633
+ - uid: 18539
+ components:
+ - type: MetaData
+ name: hallway 10 air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,97.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 505
+ - 506
+ - 507
+ - 5745
+ - 5744
+ - 5743
+ - 5726
+ - 5725
+ - 5724
+ - 23848
+ - 23847
+ - 5578
+ - 28128
+ - 28129
+ - 28130
+ - 28346
+ - 2129
+ - 1163
+ - 26556
+ - uid: 18610
+ components:
+ - type: MetaData
+ name: cargo storage room air alarm
+ - type: Transform
+ pos: 139.5,114.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6109
+ - 5929
+ - 5928
+ - 6022
+ - 6178
+ - 18502
+ - 18609
+ - 18501
+ - uid: 18612
+ components:
+ - type: MetaData
+ name: QM's room air alarm
+ - type: Transform
+ pos: 145.5,107.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6300
+ - 18601
+ - 18611
+ - 18602
+ - 6298
+ - uid: 18616
+ components:
+ - type: MetaData
+ name: cargo front desk air alarm
+ - type: Transform
+ pos: 140.5,108.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6256
+ - 6036
+ - 5427
+ - 30843
+ - 21677
+ - 35996
+ - 6300
+ - 6109
+ - 18503
+ - 18613
+ - 18504
+ - 30687
+ - 18632
+ - 18633
+ - uid: 18621
+ components:
+ - type: MetaData
+ name: cargo hallway air alarm
+ - type: Transform
+ pos: 146.5,101.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6928
+ - 22190
+ - 6929
+ - 6192
+ - 16223
+ - 11539
+ - 1362
+ - 23406
+ - 266
+ - 21677
+ - 35996
+ - 30687
+ - 1363
+ - 11484
+ - 30203
+ - uid: 18634
+ components:
+ - type: MetaData
+ name: cargo front entrance air alarm
+ - type: Transform
+ pos: 135.5,108.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5745
+ - 5744
+ - 5743
+ - 6256
+ - 6036
+ - 2809
+ - 18629
+ - 6025
+ - 18632
+ - 18633
+ - 5929
+ - 5928
+ - 18628
+ - 18631
+ - 18627
+ - 5726
+ - 5725
+ - 5724
+ - uid: 19097
+ components:
+ - type: MetaData
+ name: vault air alarm
+ - type: Transform
+ pos: 49.5,76.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2855
+ - 32584
+ - 2853
+ - 34188
+ - uid: 20038
+ components:
+ - type: MetaData
+ name: cargo bay air alarm
+ - type: Transform
+ pos: 157.5,112.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 11520
+ - 16223
+ - 6192
+ - 6929
+ - 6928
+ - 30688
+ - 3608
+ - 6921
+ - 6923
+ - 6924
+ - 6920
+ - 23365
+ - 29311
+ - 25145
+ - 18541
+ - 32940
+ - 32939
+ - uid: 20331
+ components:
+ - type: MetaData
+ name: xenoarcheology air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,90.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20332
+ - 20333
+ - uid: 20334
+ components:
+ - type: MetaData
+ name: xenoarcheology air alarm
+ - type: Transform
+ pos: 39.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19613
+ - 20330
+ - 19614
+ - 1381
+ - 631
+ - 479
+ - 489
+ - uid: 20336
+ components:
+ - type: MetaData
+ name: xenoarcheology airlock air alarm
+ - type: Transform
+ pos: 40.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 221
+ - 21070
+ - 5286
+ - 770
+ - 631
+ - uid: 20340
+ components:
+ - type: MetaData
+ name: science hallway south air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 860
+ - 939
+ - 770
+ - 933
+ - 932
+ - 19750
+ - 19751
+ - 19752
+ - 20337
+ - 20339
+ - 20338
+ - uid: 20343
+ components:
+ - type: MetaData
+ name: science storage room air alarm
+ - type: Transform
+ pos: 50.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 939
+ - 19612
+ - 20342
+ - 19611
+ - 1313
+ - uid: 20345
+ components:
+ - type: MetaData
+ name: research and development air alarm
+ - type: Transform
+ pos: 46.5,94.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1181
+ - 933
+ - 932
+ - 293
+ - 20346
+ - uid: 20352
+ components:
+ - type: MetaData
+ name: science front entrance air alarm
+ - type: Transform
+ pos: 52.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1181
+ - 1313
+ - 1404
+ - 1403
+ - 1402
+ - 20346
+ - 293
+ - 1391
+ - 1390
+ - 1389
+ - 926
+ - 925
+ - 19600
+ - 20351
+ - 19601
+ - uid: 20353
+ components:
+ - type: MetaData
+ name: science hallway north air alarm
+ - type: Transform
+ pos: 41.5,102.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 327
+ - 380
+ - 736
+ - 831
+ - 888
+ - 915
+ - 922
+ - 921
+ - 926
+ - 925
+ - 19750
+ - 19751
+ - 19752
+ - 20355
+ - 20354
+ - 20356
+ - 1256
+ - uid: 20359
+ components:
+ - type: MetaData
+ name: science canister storage air alarm
+ - type: Transform
+ pos: 49.5,104.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19721
+ - 20358
+ - 19722
+ - 922
+ - 921
+ - uid: 20362
+ components:
+ - type: MetaData
+ name: server room air alarm
+ - type: Transform
+ pos: 47.5,109.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 915
+ - 19741
+ - 20361
+ - 1131
+ - 19836
+ - uid: 20363
+ components:
+ - type: MetaData
+ name: RD's room air alarm
+ - type: Transform
+ pos: 37.5,109.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 556
+ - 19834
+ - 274
+ - 36634
+ - 736
+ - uid: 20372
+ components:
+ - type: MetaData
+ name: xenobiology lab chamber 3 air alarm
+ - type: Transform
+ pos: 26.5,110.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19816
+ - 20369
+ - 317
+ - 19810
+ - uid: 20373
+ components:
+ - type: MetaData
+ name: xenobiology lab chamber 2 air alarm
+ - type: Transform
+ pos: 26.5,114.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19817
+ - 20368
+ - 19814
+ - 310
+ - uid: 20374
+ components:
+ - type: MetaData
+ name: xenobiology lab chamber 1 air alarm
+ - type: Transform
+ pos: 26.5,118.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19818
+ - 20370
+ - 19815
+ - 303
+ - uid: 20375
+ components:
+ - type: MetaData
+ name: xenobiology lab air alarm
+ - type: Transform
+ pos: 33.5,118.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 19808
+ - 20371
+ - 19809
+ - 379
+ - 317
+ - 310
+ - 303
+ - 1311
+ - uid: 20376
+ components:
+ - type: MetaData
+ name: science break room air alarm
+ - type: Transform
+ pos: 25.5,106.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 327
+ - 19840
+ - 171
+ - 20377
+ - 3722
+ - uid: 20378
+ components:
+ - type: MetaData
+ name: xenobiology lab airlock air alarm
+ - type: Transform
+ pos: 30.5,106.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 380
+ - 19820
+ - 20379
+ - 379
+ - uid: 22154
+ components:
+ - type: MetaData
+ name: brig air alarm
+ - type: Transform
+ pos: 127.5,75.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21573
+ - 21572
+ - 21571
+ - 5687
+ - 22156
+ - 22157
+ - 22155
+ - 15976
+ - 20504
+ - 20502
+ - 20400
+ - 15972
+ - 20496
+ - 15973
+ - 8554
+ - uid: 22160
+ components:
+ - type: MetaData
+ name: security west hallway air alarm
+ - type: Transform
+ pos: 132.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21622
+ - 21623
+ - 22159
+ - 21574
+ - 21575
+ - 5655
+ - 21576
+ - 21573
+ - 21572
+ - 21571
+ - 5473
+ - 5476
+ - uid: 22164
+ components:
+ - type: MetaData
+ name: security hallway south air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,54.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6117
+ - 21576
+ - 21575
+ - 21574
+ - 6413
+ - 6605
+ - 6604
+ - 5994
+ - 21577
+ - 21578
+ - 21579
+ - 6207
+ - 21580
+ - 21581
+ - 21582
+ - 6600
+ - 21624
+ - 22162
+ - 21625
+ - 22230
+ - uid: 22209
+ components:
+ - type: MetaData
+ name: security breakroom air alarm
+ - type: Transform
+ pos: 150.5,54.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6414
+ - 22172
+ - 22208
+ - 22173
+ - 6413
+ - 7102
+ - uid: 22229
+ components:
+ - type: MetaData
+ name: security locker room air alarm
+ - type: Transform
+ pos: 154.5,59.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 7102
+ - 22226
+ - 22228
+ - 22225
+ - 6605
+ - 6604
+ - uid: 22246
+ components:
+ - type: MetaData
+ name: interrogation air alarm
+ - type: Transform
+ pos: 154.5,65.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6600
+ - 21699
+ - 22245
+ - 21700
+ - 6837
+ - uid: 22252
+ components:
+ - type: MetaData
+ name: security EVA air alarm
+ - type: Transform
+ pos: 142.5,50.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6117
+ - 22230
+ - 22244
+ - 22251
+ - 22248
+ - uid: 22258
+ components:
+ - type: MetaData
+ name: shooting range air alarm
+ - type: Transform
+ pos: 154.5,75.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6592
+ - 21717
+ - 22257
+ - 21716
+ - uid: 22263
+ components:
+ - type: MetaData
+ name: security front desk air alarm
+ - type: Transform
+ pos: 144.5,75.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21389
+ - 22264
+ - 5016
+ - 21726
+ - 22259
+ - 22260
+ - 22261
+ - 22262
+ - uid: 22267
+ components:
+ - type: MetaData
+ name: security hallway north air alarm
+ - type: Transform
+ pos: 149.5,73.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21580
+ - 21581
+ - 21582
+ - 6592
+ - 6511
+ - 21389
+ - 6116
+ - 6054
+ - 5985
+ - 21577
+ - 21578
+ - 21579
+ - 21718
+ - 22266
+ - 21719
+ - uid: 22269
+ components:
+ - type: MetaData
+ name: HOS's room air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,64.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6360
+ - 6207
+ - 21760
+ - 22268
+ - 21777
+ - uid: 22270
+ components:
+ - type: MetaData
+ name: armory entrance air alarm
+ - type: Transform
+ pos: 135.5,61.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 12432
+ - 23110
+ - 5889
+ - 5994
+ - 22277
+ - uid: 22271
+ components:
+ - type: MetaData
+ name: armory air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,63.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21732
+ - 8158
+ - 21733
+ - 6356
+ - 5889
+ - uid: 22634
+ components:
+ - type: MetaData
+ name: perma air alarm
+ - type: Transform
+ pos: 128.5,53.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21233
+ - 22633
+ - 22630
+ - 22602
+ - 22603
+ - 22601
+ - 5616
+ - 5617
+ - uid: 22635
+ components:
+ - type: MetaData
+ name: perma transfer air alarm
+ - type: Transform
+ pos: 123.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5388
+ - 22598
+ - 22631
+ - 22599
+ - 5655
+ - 5616
+ - uid: 22636
+ components:
+ - type: MetaData
+ name: perma EVA air alarm
+ - type: Transform
+ pos: 124.5,52.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5389
+ - 22588
+ - 22632
+ - 22587
+ - 5299
+ - 5388
+ - uid: 23328
+ components:
+ - type: MetaData
+ name: conference room air alarm
+ - type: Transform
+ pos: 136.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 35646
+ - 21066
+ - 18355
+ - 30391
+ - 23329
+ - uid: 23351
+ components:
+ - type: MetaData
+ name: lawyer's office south air alarm
+ - type: Transform
+ pos: 108.5,43.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 23442
+ - 30372
+ - 30030
+ - 36016
+ - 883
+ - uid: 25419
+ components:
+ - type: MetaData
+ name: hallway 14 air alarm
+ - type: Transform
+ pos: 99.5,53.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 16030
+ - 2077
+ - 10727
+ - 10726
+ - 3181
+ - 1385
+ - 1884
+ - 30043
+ - 27518
+ - 27517
+ - 27516
+ - 25488
+ - 25487
+ - 1904
+ - 4960
+ - 4360
+ - 6611
+ - 30188
+ - uid: 25478
+ components:
+ - type: MetaData
+ name: arrivals air alarm
+ - type: Transform
+ pos: 80.5,44.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2290
+ - 2233
+ - 3141
+ - 3069
+ - 3066
+ - 2287
+ - 2285
+ - 2232
+ - 2172
+ - 2540
+ - 6730
+ - 2455
+ - 27413
+ - 2507
+ - 2506
+ - 339
+ - 2349
+ - 6011
+ - 751
+ - 6611
+ - 4360
+ - 4960
+ - 5992
+ - uid: 25534
+ components:
+ - type: MetaData
+ name: security checkpoint air alarm
+ - type: Transform
+ pos: 91.5,116.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 25505
+ - 4357
+ - 25537
+ - 25521
+ - 25523
+ - 25535
+ - uid: 25615
+ components:
+ - type: MetaData
+ name: canteen air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,109.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4564
+ - 24349
+ - 18093
+ - 4236
+ - 4298
+ - 4353
+ - 4745
+ - 4818
+ - 4859
+ - 25609
+ - 3667
+ - 25599
+ - 25594
+ - 4523
+ - 25591
+ - 25593
+ - 25589
+ - 25715
+ - 25714
+ - 25712
+ - 25713
+ - uid: 26180
+ components:
+ - type: MetaData
+ name: ranch air alarm
+ - type: Transform
+ pos: 112.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 25747
+ - 26179
+ - 25751
+ - 4671
+ - uid: 26182
+ components:
+ - type: MetaData
+ name: bartender's room air alarm
+ - type: Transform
+ pos: 110.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20798
+ - 26181
+ - 20797
+ - 4564
+ - 4565
+ - uid: 26183
+ components:
+ - type: MetaData
+ name: botany air alarm
+ - type: Transform
+ pos: 97.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4103
+ - 4240
+ - 26420
+ - 26422
+ - 25660
+ - 3226
+ - 16979
+ - 25715
+ - 25714
+ - 16639
+ - uid: 26186
+ components:
+ - type: MetaData
+ name: botany locker room air alarm
+ - type: Transform
+ pos: 101.5,95.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 25661
+ - 26185
+ - 25662
+ - 3916
+ - 4103
+ - uid: 26188
+ components:
+ - type: MetaData
+ name: service hall air alarm
+ - type: Transform
+ pos: 110.5,100.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4361
+ - 4240
+ - 24349
+ - 4565
+ - 25609
+ - 4863
+ - 4671
+ - 25686
+ - 26187
+ - 25632
+ - 16639
+ - 20755
+ - uid: 26190
+ components:
+ - type: MetaData
+ name: boxing ring air alarm
+ - type: Transform
+ pos: 101.5,89.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3925
+ - 3924
+ - 3923
+ - 1846
+ - 1847
+ - 4985
+ - 4984
+ - 4983
+ - 4624
+ - 4308
+ - 4921
+ - 4361
+ - 26102
+ - 26191
+ - 26101
+ - 26103
+ - 26192
+ - 26059
+ - 26089
+ - 25976
+ - 1495
+ - uid: 26214
+ components:
+ - type: MetaData
+ name: crematorium air alarm
+ - type: Transform
+ pos: 64.5,76.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2223
+ - 25964
+ - 26213
+ - 25965
+ - 1867
+ - uid: 26215
+ components:
+ - type: MetaData
+ name: chaplain's office air alarm
+ - type: Transform
+ pos: 70.5,77.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5170
+ - 25979
+ - 2810
+ - 2223
+ - 25985
+ - 26211
+ - uid: 26231
+ components:
+ - type: MetaData
+ name: librarian's room air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,48.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 26127
+ - 26232
+ - 26141
+ - 24312
+ - 2758
+ - uid: 26965
+ components:
+ - type: MetaData
+ name: chapel air alarm
+ - type: Transform
+ pos: 89.5,78.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3402
+ - 3452
+ - 2810
+ - 25959
+ - 26212
+ - 25960
+ - 4677
+ - uid: 27355
+ components:
+ - type: MetaData
+ name: triage air alarm
+ - type: Transform
+ pos: 79.5,101.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2636
+ - 2596
+ - 2331
+ - 2328
+ - 2594
+ - 2634
+ - 2918
+ - 2915
+ - 16791
+ - 17114
+ - 16789
+ - 16792
+ - 17113
+ - 16788
+ - uid: 27728
+ components:
+ - type: MetaData
+ name: hallway 5 air alarm
+ - type: Transform
+ pos: 55.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20738
+ - 20737
+ - 20736
+ - 1373
+ - 20739
+ - 20740
+ - 20741
+ - 27933
+ - 27935
+ - 27934
+ - 28230
+ - uid: 27729
+ components:
+ - type: MetaData
+ name: hallway 1 air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,50.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2285
+ - 2232
+ - 2172
+ - 10749
+ - 10748
+ - 10747
+ - 1849
+ - 6729
+ - 27725
+ - 27730
+ - 27727
+ - uid: 27831
+ components:
+ - type: MetaData
+ name: hallway 3 air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,80.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27817
+ - 27816
+ - 27815
+ - 1626
+ - 122
+ - 27820
+ - 27819
+ - 27818
+ - 258
+ - 241
+ - 27821
+ - 23633
+ - 23637
+ - uid: 27854
+ components:
+ - type: MetaData
+ name: hallway 4 air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,97.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27820
+ - 27819
+ - 27818
+ - 1404
+ - 1403
+ - 1402
+ - 1391
+ - 1390
+ - 1389
+ - 20736
+ - 20737
+ - 20738
+ - 1605
+ - 1615
+ - 1614
+ - 1613
+ - 27851
+ - 4138
+ - 27848
+ - uid: 27986
+ components:
+ - type: MetaData
+ name: hallway 6 air alarm
+ - type: Transform
+ pos: 67.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20739
+ - 20740
+ - 20741
+ - 2072
+ - 2162
+ - 2214
+ - 2987
+ - 3049
+ - 3104
+ - 27977
+ - 27978
+ - 27979
+ - 2423
+ - 2319
+ - 2161
+ - 1927
+ - 15936
+ - 15937
+ - 674
+ - 577
+ - 616
+ - uid: 28247
+ components:
+ - type: MetaData
+ name: engineering front entrance air alarm
+ - type: Transform
+ pos: 118.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4511
+ - 3808
+ - 297
+ - 4233
+ - 4856
+ - 16581
+ - 16582
+ - 296
+ - 282
+ - 27980
+ - 4859
+ - 4818
+ - 4745
+ - 4353
+ - 4298
+ - 4236
+ - 28233
+ - 28235
+ - 28232
+ - 28234
+ - 28236
+ - 28231
+ - uid: 28288
+ components:
+ - type: MetaData
+ name: hallway 8 air alarm
+ - type: Transform
+ pos: 134.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28130
+ - 28128
+ - 28129
+ - 296
+ - 282
+ - 27980
+ - 11687
+ - 28133
+ - 28132
+ - 28131
+ - 28290
+ - 28292
+ - 28291
+ - uid: 28486
+ components:
+ - type: MetaData
+ name: hallway 11 air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,87.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6115
+ - 6053
+ - 23305
+ - 23306
+ - 23307
+ - 22261
+ - 22262
+ - 6799
+ - 5756
+ - 5602
+ - 21066
+ - 505
+ - 506
+ - 507
+ - 28485
+ - 65
+ - 6
+ - uid: 28594
+ components:
+ - type: MetaData
+ name: green house air alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,81.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28504
+ - 4058
+ - 28503
+ - 28531
+ - uid: 28597
+ components:
+ - type: MetaData
+ name: hallway 12 air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,71.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27513
+ - 27514
+ - 27515
+ - 5055
+ - 5380
+ - 5466
+ - 23305
+ - 23306
+ - 23307
+ - 4985
+ - 4984
+ - 4983
+ - 28506
+ - 28502
+ - 28507
+ - uid: 28634
+ components:
+ - type: MetaData
+ name: hallway 13 air alarm
+ - type: Transform
+ pos: 113.5,56.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28437
+ - 28438
+ - 5291
+ - 5288
+ - 27513
+ - 27514
+ - 27515
+ - 26174
+ - 4882
+ - 27516
+ - 27517
+ - 27518
+ - 950
+ - 28631
+ - 28632
+ - 28630
+ - 1641
+ - uid: 28638
+ components:
+ - type: MetaData
+ name: medical clinic air alarm
+ - type: Transform
+ pos: 120.5,52.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5299
+ - 28438
+ - 28437
+ - 4882
+ - 5103
+ - 28636
+ - 28637
+ - 28635
+ - uid: 28741
+ components:
+ - type: MetaData
+ name: court north air alarm
+ - type: Transform
+ pos: 91.5,49.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 30037
+ - 19496
+ - 34474
+ - 35065
+ - 23364
+ - uid: 28908
+ components:
+ - type: MetaData
+ name: hallway 15 air alarm
+ - type: Transform
+ pos: 78.5,66.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3181
+ - 10726
+ - 10727
+ - 3601
+ - 2815
+ - 2704
+ - 2537
+ - 2536
+ - 2535
+ - 3402
+ - 3452
+ - 3841
+ - 3925
+ - 3924
+ - 3923
+ - 3754
+ - 28905
+ - 28906
+ - 28904
+ - uid: 29236
+ components:
+ - type: MetaData
+ name: janitor's closet air alarm
+ - type: Transform
+ pos: 158.5,129.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6787
+ - 6869
+ - 6916
+ - 6820
+ - 29233
+ - 29234
+ - 29232
+ - 35800
+ - uid: 29340
+ components:
+ - type: MetaData
+ name: lawyer's office north air alarm
+ - type: Transform
+ pos: 101.5,49.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 23380
+ - 883
+ - 18865
+ - 32439
+ - 874
+ - 30037
+ - 30043
+ - 33845
+ - uid: 29481
+ components:
+ - type: MetaData
+ name: dorms air alarm
+ - type: Transform
+ pos: 157.5,140.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27984
+ - 27983
+ - 27982
+ - 6624
+ - 8673
+ - 13735
+ - 13734
+ - 13733
+ - 5239
+ - 6688
+ - 6667
+ - 6783
+ - 6913
+ - 7044
+ - 6944
+ - 6814
+ - 29478
+ - 29480
+ - 29479
+ - uid: 29545
+ components:
+ - type: MetaData
+ name: hallway 9 air alarm
+ - type: Transform
+ pos: 153.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6243
+ - 28133
+ - 28132
+ - 28131
+ - 6475
+ - 6174
+ - 6337
+ - 6669
+ - 6787
+ - 6869
+ - 6916
+ - 6870
+ - 27984
+ - 27983
+ - 27982
+ - 3424
+ - 29229
+ - 1721
+ - uid: 29830
+ components:
+ - type: MetaData
+ name: evac air alarm
+ - type: Transform
+ pos: 144.5,154.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6009
+ - 1471
+ - 6127
+ - 6278
+ - 6005
+ - 6168
+ - 6272
+ - 6542
+ - 29822
+ - 13733
+ - 13734
+ - 13735
+ - 4007
+ - 8197
+ - 8194
+ - 29832
+ - 8140
+ - 8193
+ - 8172
+ - uid: 30227
+ components:
+ - type: MetaData
+ name: hallway 7 air alarm
+ - type: Transform
+ pos: 86.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4357
+ - 25537
+ - 27977
+ - 27978
+ - 27979
+ - 4511
+ - 3808
+ - 297
+ - 28225
+ - 28226
+ - 27932
+ - uid: 30395
+ components:
+ - type: MetaData
+ name: court south air alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,38.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 550
+ - 35064
+ - 36014
+ - 18863
+ - 32979
+ - 35025
+ - 36004
+ - uid: 30728
+ components:
+ - type: MetaData
+ name: cloning lab air alarm
+ - type: Transform
+ pos: 89.5,89.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 18844
+ - 3238
+ - 35410
+ - 35224
+ - uid: 34374
+ components:
+ - type: MetaData
+ name: disposals air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,80.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 34373
+ - 34364
+ - uid: 34743
+ components:
+ - type: MetaData
+ name: evac holding cell air alarm
+ - type: Transform
+ pos: 155.5,154.5
+ parent: 1
+ - uid: 34969
+ components:
+ - type: MetaData
+ name: evac security checkpoint air alarm
+ - type: Transform
+ pos: 152.5,154.5
+ parent: 1
+ - uid: 35464
+ components:
+ - type: MetaData
+ name: atmospherics storage chambers air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,141.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 35465
+ - 35466
+ - 35467
+ - 35468
+ - 35469
+ - 35470
+ - 35471
+ - uid: 36741
+ components:
+ - type: MetaData
+ name: burn chamber air alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,134.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 9371
+ - uid: 36756
+ components:
+ - type: MetaData
+ name: thermo-electric generator air alarm
+ - type: Transform
+ pos: 88.5,154.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2848
+ - 2847
+ - 3385
+ - 3519
+ - 15514
+ - 15511
+ - 15513
+ - 3488
+ - 15515
+ - 15512
+ - 15516
+ - 2830
+ - 2829
+ - 36757
+ - 15984
+ - 16017
+ - 15519
+ - 16009
+ - 36755
+ - uid: 36963
+ components:
+ - type: MetaData
+ name: station anchor air alarm
+ - type: Transform
+ pos: 116.5,163.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5002
+ - 5168
+ - 36961
+ - 36960
+ - 36962
+ - uid: 37335
+ components:
+ - type: MetaData
+ name: anomaly lab air alarm
+ - type: Transform
+ pos: 45.5,118.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 888
+ - 831
+ - 19697
+ - 20364
+ - 19696
+ - 10700
+ - 13207
+ - uid: 37358
+ components:
+ - type: MetaData
+ name: cargo control room air alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,97.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 34731
+ - 19369
+ - 29396
+ - 11539
+ - 11520
+ - uid: 37459
+ components:
+ - type: MetaData
+ name: detective's office air alarm
+ - type: Transform
+ pos: 87.5,58.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2077
+ - 8635
+ - 37455
+ - 19002
+ - 1361
+- proto: AirAlarmAssembly
+ entities:
+ - uid: 3803
+ components:
+ - type: Transform
+ pos: 112.5,32.5
+ parent: 1
+ - uid: 12730
+ components:
+ - type: Transform
+ pos: 97.5,24.5
+ parent: 1
+- proto: AirAlarmVox
+ entities:
+ - uid: 17093
+ components:
+ - type: MetaData
+ name: chemistry air alarm
+ - type: Transform
+ pos: 88.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3312
+ - 17003
+ - 18048
+ - 17004
+ - 17020
+ - 2013
+ - 3332
+ - 3169
+ - uid: 17096
+ components:
+ - type: MetaData
+ name: chemistry desk north air alarm
+ - type: Transform
+ pos: 85.5,111.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3332
+ - 17019
+ - 17022
+ - 17021
+ - 17076
+ - 17095
+ - 17074
+- proto: AirCanister
+ entities:
+ - uid: 2716
+ components:
+ - type: Transform
+ pos: 57.5,152.5
+ parent: 1
+ - uid: 12942
+ components:
+ - type: Transform
+ pos: 46.5,105.5
+ parent: 1
+ - uid: 13718
+ components:
+ - type: Transform
+ pos: 89.5,144.5
+ parent: 1
+ - uid: 13747
+ components:
+ - type: Transform
+ pos: 89.5,134.5
+ parent: 1
+ - uid: 15702
+ components:
+ - type: Transform
+ pos: 160.5,115.5
+ parent: 1
+ - uid: 15957
+ components:
+ - type: Transform
+ pos: 72.5,116.5
+ parent: 1
+ - uid: 16520
+ components:
+ - type: Transform
+ pos: 116.5,74.5
+ parent: 1
+ - uid: 18891
+ components:
+ - type: Transform
+ pos: 148.5,85.5
+ parent: 1
+ - uid: 22736
+ components:
+ - type: Transform
+ pos: 83.5,117.5
+ parent: 1
+ - uid: 22738
+ components:
+ - type: Transform
+ pos: 83.5,116.5
+ parent: 1
+ - uid: 22739
+ components:
+ - type: Transform
+ pos: 83.5,118.5
+ parent: 1
+ - uid: 25176
+ components:
+ - type: Transform
+ pos: 161.5,121.5
+ parent: 1
+ - uid: 26184
+ components:
+ - type: Transform
+ pos: 119.5,90.5
+ parent: 1
+ - uid: 26693
+ components:
+ - type: Transform
+ pos: 110.5,38.5
+ parent: 1
+ - uid: 28736
+ components:
+ - type: Transform
+ pos: 48.5,102.5
+ parent: 1
+ - uid: 30197
+ components:
+ - type: Transform
+ pos: 64.5,34.5
+ parent: 1
+ - uid: 30657
+ components:
+ - type: Transform
+ pos: 114.5,165.5
+ parent: 1
+ - uid: 30717
+ components:
+ - type: Transform
+ pos: 88.5,157.5
+ parent: 1
+ - uid: 32933
+ components:
+ - type: Transform
+ pos: 92.5,61.5
+ parent: 1
+ - uid: 34082
+ components:
+ - type: Transform
+ pos: 124.5,46.5
+ parent: 1
+ - uid: 34085
+ components:
+ - type: Transform
+ pos: 90.5,32.5
+ parent: 1
+ - uid: 34611
+ components:
+ - type: Transform
+ pos: 147.5,43.5
+ parent: 1
+ - uid: 34754
+ components:
+ - type: Transform
+ pos: 96.5,107.5
+ parent: 1
+ - uid: 34763
+ components:
+ - type: Transform
+ pos: 59.5,67.5
+ parent: 1
+ - uid: 34972
+ components:
+ - type: Transform
+ pos: 160.5,146.5
+ parent: 1
+ - uid: 35850
+ components:
+ - type: Transform
+ pos: 51.5,134.5
+ parent: 1
+ - uid: 36142
+ components:
+ - type: Transform
+ pos: 89.5,157.5
+ parent: 1
+ - uid: 36158
+ components:
+ - type: Transform
+ pos: 26.5,89.5
+ parent: 1
+ - uid: 37051
+ components:
+ - type: Transform
+ pos: 19.5,112.5
+ parent: 1
+ - uid: 37271
+ components:
+ - type: Transform
+ pos: 51.5,100.5
+ parent: 1
+- proto: Airlock
+ entities:
+ - uid: 5611
+ components:
+ - type: Transform
+ pos: 53.5,118.5
+ parent: 1
+ - uid: 22981
+ components:
+ - type: MetaData
+ name: bathroom airlock
+ - type: Transform
+ pos: 126.5,46.5
+ parent: 1
+ - uid: 28151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,118.5
+ parent: 1
+ - uid: 28154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,118.5
+ parent: 1
+ - uid: 28155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,118.5
+ parent: 1
+ - uid: 28156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,118.5
+ parent: 1
+ - uid: 28160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,115.5
+ parent: 1
+ - uid: 28161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,116.5
+ parent: 1
+ - uid: 28883
+ components:
+ - type: Transform
+ pos: 81.5,69.5
+ parent: 1
+ - uid: 29740
+ components:
+ - type: MetaData
+ name: dorm six airlock
+ - type: Transform
+ pos: 158.5,136.5
+ parent: 1
+ - uid: 29741
+ components:
+ - type: MetaData
+ name: dorm four airlock
+ - type: Transform
+ pos: 155.5,136.5
+ parent: 1
+ - uid: 29742
+ components:
+ - type: MetaData
+ name: dorm two airlock
+ - type: Transform
+ pos: 152.5,136.5
+ parent: 1
+ - uid: 29743
+ components:
+ - type: MetaData
+ name: dorm one airlock
+ - type: Transform
+ pos: 153.5,140.5
+ parent: 1
+ - uid: 29744
+ components:
+ - type: MetaData
+ name: dorm three airlock
+ - type: Transform
+ pos: 156.5,140.5
+ parent: 1
+ - uid: 29745
+ components:
+ - type: MetaData
+ name: dorm five airlock
+ - type: Transform
+ pos: 159.5,140.5
+ parent: 1
+ - uid: 30116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,139.5
+ parent: 1
+ - uid: 33059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,24.5
+ parent: 1
+ - uid: 33312
+ components:
+ - type: Transform
+ pos: 103.5,19.5
+ parent: 1
+ - uid: 33314
+ components:
+ - type: Transform
+ pos: 111.5,19.5
+ parent: 1
+ - uid: 33316
+ components:
+ - type: Transform
+ pos: 119.5,24.5
+ parent: 1
+ - uid: 33317
+ components:
+ - type: Transform
+ pos: 121.5,26.5
+ parent: 1
+ - uid: 33318
+ components:
+ - type: Transform
+ pos: 123.5,34.5
+ parent: 1
+ - uid: 34380
+ components:
+ - type: Transform
+ pos: 140.5,82.5
+ parent: 1
+ - uid: 34382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,82.5
+ parent: 1
+ - uid: 35512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,142.5
+ parent: 1
+- proto: AirlockArmoryGlassLocked
+ entities:
+ - uid: 407
+ components:
+ - type: MetaData
+ name: warden office glass airlock
+ - type: Transform
+ pos: 136.5,68.5
+ parent: 1
+ - uid: 422
+ components:
+ - type: MetaData
+ name: warden office glass airlock
+ - type: Transform
+ pos: 129.5,71.5
+ parent: 1
+- proto: AirlockAtmosphericsGlassLocked
+ entities:
+ - uid: 790
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,152.5
+ parent: 1
+ - uid: 791
+ components:
+ - type: MetaData
+ name: atmospherics glass airlock
+ - type: Transform
+ pos: 86.5,122.5
+ parent: 1
+ - uid: 792
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,153.5
+ parent: 1
+ - uid: 793
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,125.5
+ parent: 1
+ - uid: 795
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,126.5
+ parent: 1
+ - uid: 16128
+ components:
+ - type: MetaData
+ name: front desk glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,118.5
+ parent: 1
+ - uid: 16129
+ components:
+ - type: MetaData
+ name: front desk glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,117.5
+ parent: 1
+- proto: AirlockAtmosphericsLocked
+ entities:
+ - uid: 15947
+ components:
+ - type: MetaData
+ name: atmospherics airlock
+ - type: Transform
+ pos: 71.5,124.5
+ parent: 1
+ - uid: 15948
+ components:
+ - type: MetaData
+ name: atmospherics airlock
+ - type: Transform
+ pos: 72.5,124.5
+ parent: 1
+ - uid: 27987
+ components:
+ - type: MetaData
+ name: atmospherics hallway airlock
+ - type: Transform
+ pos: 70.5,115.5
+ parent: 1
+ - uid: 27988
+ components:
+ - type: MetaData
+ name: atmospherics hallway airlock
+ - type: Transform
+ pos: 69.5,115.5
+ parent: 1
+ - uid: 36768
+ components:
+ - type: MetaData
+ name: thermo-electric generator airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,138.5
+ parent: 1
+ - uid: 36769
+ components:
+ - type: MetaData
+ name: thermo-electric generator airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,139.5
+ parent: 1
+ - uid: 36770
+ components:
+ - type: MetaData
+ name: thermo-electric generator airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,140.5
+ parent: 1
+- proto: AirlockBarLocked
+ entities:
+ - uid: 26535
+ components:
+ - type: MetaData
+ name: bartender's room airlock
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - uid: 26536
+ components:
+ - type: MetaData
+ name: bar airlock
+ - type: Transform
+ pos: 108.5,105.5
+ parent: 1
+- proto: AirlockBrigGlassLocked
+ entities:
+ - uid: 771
+ components:
+ - type: MetaData
+ name: locker room glass airlock
+ - type: Transform
+ pos: 150.5,56.5
+ parent: 1
+ - uid: 772
+ components:
+ - type: MetaData
+ name: locker room glass airlock
+ - type: Transform
+ pos: 150.5,57.5
+ parent: 1
+ - uid: 828
+ components:
+ - type: MetaData
+ name: front desk glass airlock
+ - type: Transform
+ pos: 143.5,72.5
+ parent: 1
+ - uid: 22853
+ components:
+ - type: Transform
+ pos: 124.5,58.5
+ parent: 1
+ - uid: 22854
+ components:
+ - type: Transform
+ pos: 124.5,60.5
+ parent: 1
+ - uid: 22855
+ components:
+ - type: Transform
+ pos: 137.5,72.5
+ parent: 1
+ - uid: 22856
+ components:
+ - type: Transform
+ pos: 139.5,72.5
+ parent: 1
+ - uid: 22857
+ components:
+ - type: Transform
+ pos: 135.5,54.5
+ parent: 1
+ - uid: 22858
+ components:
+ - type: Transform
+ pos: 135.5,55.5
+ parent: 1
+ - uid: 22859
+ components:
+ - type: Transform
+ pos: 135.5,56.5
+ parent: 1
+ - uid: 22866
+ components:
+ - type: MetaData
+ name: security breakroom glass airlock
+ - type: Transform
+ pos: 145.5,54.5
+ parent: 1
+ - uid: 28607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,75.5
+ parent: 1
+ - uid: 28608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,75.5
+ parent: 1
+ - uid: 28644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,58.5
+ parent: 1
+ - uid: 28645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,60.5
+ parent: 1
+- proto: AirlockBrigLocked
+ entities:
+ - uid: 8163
+ components:
+ - type: MetaData
+ name: evac security checkpoint airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,148.5
+ parent: 1
+- proto: AirlockCaptainLocked
+ entities:
+ - uid: 13465
+ components:
+ - type: MetaData
+ name: captain's bathroom airlock
+ - type: Transform
+ pos: 36.5,67.5
+ parent: 1
+ - uid: 13466
+ components:
+ - type: MetaData
+ name: captain's bedroom airlock
+ - type: Transform
+ pos: 39.5,69.5
+ parent: 1
+ - uid: 13467
+ components:
+ - type: MetaData
+ name: captain's office airlock
+ - type: Transform
+ pos: 41.5,73.5
+ parent: 1
+ - uid: 18993
+ components:
+ - type: MetaData
+ name: captain's bathroom airlock
+ - type: Transform
+ pos: 34.5,65.5
+ parent: 1
+- proto: AirlockCargoGlassLocked
+ entities:
+ - uid: 321
+ components:
+ - type: MetaData
+ name: storage room glass airlock
+ - type: Transform
+ pos: 139.5,108.5
+ parent: 1
+ - uid: 322
+ components:
+ - type: MetaData
+ name: control room glass airlock
+ - type: Transform
+ pos: 153.5,99.5
+ parent: 1
+ - uid: 423
+ components:
+ - type: MetaData
+ name: cargo break room glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,97.5
+ parent: 1
+ - uid: 19343
+ components:
+ - type: MetaData
+ name: cargo bay glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,101.5
+ parent: 1
+ - uid: 19344
+ components:
+ - type: MetaData
+ name: cargo bay glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,101.5
+ parent: 1
+ - uid: 19345
+ components:
+ - type: MetaData
+ name: cargo bay glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,101.5
+ parent: 1
+- proto: AirlockCargoLocked
+ entities:
+ - uid: 19220
+ components:
+ - type: MetaData
+ name: cargo bay airlock
+ - type: Transform
+ pos: 157.5,101.5
+ parent: 1
+ - uid: 19337
+ components:
+ - type: MetaData
+ name: cargo front desk airlock
+ - type: Transform
+ pos: 136.5,96.5
+ parent: 1
+- proto: AirlockChapelLocked
+ entities:
+ - uid: 27050
+ components:
+ - type: MetaData
+ name: chaplain's room airlock
+ - type: Transform
+ pos: 72.5,68.5
+ parent: 1
+ - uid: 27051
+ components:
+ - type: MetaData
+ name: chaplain's office airlock
+ - type: Transform
+ pos: 78.5,70.5
+ parent: 1
+ - uid: 27052
+ components:
+ - type: MetaData
+ name: crematorium airlock
+ - type: Transform
+ pos: 67.5,74.5
+ parent: 1
+- proto: AirlockChemistryGlassLocked
+ entities:
+ - uid: 18037
+ components:
+ - type: MetaData
+ name: chemistry from desk glass airlock
+ - type: Transform
+ pos: 87.5,105.5
+ parent: 1
+- proto: AirlockChemistryLocked
+ entities:
+ - uid: 18049
+ components:
+ - type: MetaData
+ name: chemistry storage room airlock
+ - type: Transform
+ pos: 86.5,98.5
+ parent: 1
+ - uid: 18050
+ components:
+ - type: MetaData
+ name: chemistry airlock
+ - type: Transform
+ pos: 84.5,102.5
+ parent: 1
+ - uid: 18051
+ components:
+ - type: MetaData
+ name: chemistry airlock
+ - type: Transform
+ pos: 89.5,100.5
+ parent: 1
+- proto: AirlockChiefEngineerLocked
+ entities:
+ - uid: 15395
+ components:
+ - type: MetaData
+ name: CE's office airlock
+ - type: Transform
+ pos: 128.5,141.5
+ parent: 1
+ - uid: 15396
+ components:
+ - type: MetaData
+ name: CE's bedroom airlock
+ - type: Transform
+ pos: 129.5,145.5
+ parent: 1
+- proto: AirlockChiefMedicalOfficerLocked
+ entities:
+ - uid: 18126
+ components:
+ - type: MetaData
+ name: CMO's office airlock
+ - type: Transform
+ pos: 85.5,94.5
+ parent: 1
+ - uid: 18127
+ components:
+ - type: MetaData
+ name: CMO's bedroom airlock
+ - type: Transform
+ pos: 90.5,91.5
+ parent: 1
+- proto: AirlockCommandGlassLocked
+ entities:
+ - uid: 7105
+ components:
+ - type: MetaData
+ name: bridge common room glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,58.5
+ parent: 1
+ - uid: 7182
+ components:
+ - type: MetaData
+ name: bridge common room glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,59.5
+ parent: 1
+ - uid: 9758
+ components:
+ - type: MetaData
+ name: bridge common room glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,57.5
+ parent: 1
+ - uid: 13236
+ components:
+ - type: MetaData
+ name: inner AI core glass airlock
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 1
+ - uid: 13237
+ components:
+ - type: MetaData
+ name: inner AI core glass airlock
+ - type: Transform
+ pos: 46.5,28.5
+ parent: 1
+ - uid: 13238
+ components:
+ - type: MetaData
+ name: outer AI core glass airlock
+ - type: Transform
+ pos: 51.5,24.5
+ parent: 1
+ - uid: 13244
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,49.5
+ parent: 1
+ - uid: 13245
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,50.5
+ parent: 1
+ - uid: 13246
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,51.5
+ parent: 1
+ - uid: 13270
+ components:
+ - type: MetaData
+ name: law board storage glass airlock
+ - type: Transform
+ pos: 45.5,38.5
+ parent: 1
+ - uid: 14278
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,63.5
+ parent: 1
+ - uid: 27857
+ components:
+ - type: MetaData
+ name: bridge entrance glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,64.5
+ parent: 1
+ - uid: 27858
+ components:
+ - type: MetaData
+ name: bridge entrance glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,65.5
+ parent: 1
+ - uid: 28628
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,61.5
+ parent: 1
+ - uid: 36015
+ components:
+ - type: MetaData
+ name: command green room glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,53.5
+ parent: 1
+ - uid: 37329
+ components:
+ - type: MetaData
+ name: bridge glass airlock
+ - type: Transform
+ pos: 41.5,62.5
+ parent: 1
+- proto: AirlockCommandLocked
+ entities:
+ - uid: 839
+ components:
+ - type: MetaData
+ name: AI core airlock
+ - type: Transform
+ pos: 50.5,35.5
+ parent: 1
+ - uid: 4099
+ components:
+ - type: MetaData
+ name: AI entrance airlock
+ - type: Transform
+ pos: 47.5,47.5
+ parent: 1
+ - uid: 8072
+ components:
+ - type: MetaData
+ name: AI entrance airlock
+ - type: Transform
+ pos: 43.5,47.5
+ parent: 1
+ - uid: 13232
+ components:
+ - type: MetaData
+ name: bridge entrance airlock
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - uid: 13233
+ components:
+ - type: MetaData
+ name: bridge entrance airlock
+ - type: Transform
+ pos: 48.5,61.5
+ parent: 1
+ - uid: 13239
+ components:
+ - type: MetaData
+ name: AI core airlock
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - uid: 13252
+ components:
+ - type: MetaData
+ name: AI upload airlock
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - uid: 15367
+ components:
+ - type: MetaData
+ name: secure telecommunications airlock
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - uid: 30302
+ components:
+ - type: MetaData
+ name: evac command longue airlock
+ - type: Transform
+ pos: 137.5,151.5
+ parent: 1
+ - uid: 30692
+ components:
+ - type: MetaData
+ name: conference room airlock
+ - type: Transform
+ pos: 130.5,91.5
+ parent: 1
+ - uid: 32981
+ components:
+ - type: MetaData
+ name: EVA airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,69.5
+ parent: 1
+ - uid: 33809
+ components:
+ - type: MetaData
+ name: EVA airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,70.5
+ parent: 1
+- proto: AirlockDetectiveLocked
+ entities:
+ - uid: 37469
+ components:
+ - type: MetaData
+ name: detective's office airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,53.5
+ parent: 1
+- proto: AirlockEngineeringGlassLocked
+ entities:
+ - uid: 323
+ components:
+ - type: MetaData
+ name: station anchor glass airlock
+ - type: Transform
+ pos: 117.5,157.5
+ parent: 1
+ - uid: 1123
+ components:
+ - type: MetaData
+ name: engineering west station glass airlock
+ - type: Transform
+ pos: 95.5,126.5
+ parent: 1
+ - uid: 1185
+ components:
+ - type: MetaData
+ name: engineering west station glass airlock
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - uid: 1600
+ components:
+ - type: MetaData
+ name: engineering west station glass airlock
+ - type: Transform
+ pos: 90.5,122.5
+ parent: 1
+ - uid: 1761
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,139.5
+ parent: 1
+ - uid: 1774
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,140.5
+ parent: 1
+ - uid: 1843
+ components:
+ - type: MetaData
+ name: thermo-electric generator glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,138.5
+ parent: 1
+ - uid: 14988
+ components:
+ - type: MetaData
+ name: containment entrance glass airlock
+ - type: Transform
+ pos: 118.5,153.5
+ parent: 1
+ - uid: 14989
+ components:
+ - type: MetaData
+ name: containment entrance glass airlock
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - uid: 14995
+ components:
+ - type: MetaData
+ name: AME glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,157.5
+ parent: 1
+ - uid: 14996
+ components:
+ - type: MetaData
+ name: gravity glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,157.5
+ parent: 1
+ - uid: 14999
+ components:
+ - type: MetaData
+ name: locker room glass airlock
+ - type: Transform
+ pos: 124.5,138.5
+ parent: 1
+ - uid: 15000
+ components:
+ - type: MetaData
+ name: locker room glass airlock
+ - type: Transform
+ pos: 124.5,136.5
+ parent: 1
+ - uid: 15001
+ components:
+ - type: MetaData
+ name: engineering east station and front desk glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,126.5
+ parent: 1
+ - uid: 15002
+ components:
+ - type: MetaData
+ name: engineering east station and front desk glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,126.5
+ parent: 1
+ - uid: 15003
+ components:
+ - type: MetaData
+ name: engineering east station and front desk glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,126.5
+ parent: 1
+ - uid: 15005
+ components:
+ - type: MetaData
+ name: SMES array glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,128.5
+ parent: 1
+ - uid: 15008
+ components:
+ - type: MetaData
+ name: engineering hallway east glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,148.5
+ parent: 1
+ - uid: 15009
+ components:
+ - type: MetaData
+ name: engineering hallway east glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,148.5
+ parent: 1
+ - uid: 15010
+ components:
+ - type: MetaData
+ name: engineering hallway east glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,148.5
+ parent: 1
+ - uid: 15011
+ components:
+ - type: MetaData
+ name: engineering hallway west glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,148.5
+ parent: 1
+ - uid: 15012
+ components:
+ - type: MetaData
+ name: engineering hallway west glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,148.5
+ parent: 1
+ - uid: 15013
+ components:
+ - type: MetaData
+ name: engineering hallway west glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,148.5
+ parent: 1
+ - uid: 15364
+ components:
+ - type: MetaData
+ name: SMES array glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,130.5
+ parent: 1
+ - uid: 15365
+ components:
+ - type: MetaData
+ name: telecommunications glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,130.5
+ parent: 1
+ - uid: 26979
+ components:
+ - type: MetaData
+ name: atmospherics and engineering glass airlock
+ - type: Transform
+ pos: 88.5,120.5
+ parent: 1
+ - uid: 36123
+ components:
+ - type: MetaData
+ name: engineering west station glass airlock
+ - type: Transform
+ pos: 93.5,126.5
+ parent: 1
+- proto: AirlockEngineeringLocked
+ entities:
+ - uid: 249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 1412
+ components:
+ - type: MetaData
+ name: thermo-electric generator airlock
+ - type: Transform
+ pos: 88.5,124.5
+ parent: 1
+ - type: Door
+ secondsUntilStateChange: -28749.21
+ state: Opening
+ - type: DeviceLinkSource
+ lastSignals:
+ DoorStatus: True
+ - uid: 2530
+ components:
+ - type: MetaData
+ name: tech vault airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,131.5
+ parent: 1
+ - uid: 5501
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 9685
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 14149
+ components:
+ - type: MetaData
+ name: emitters east airlock
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - uid: 14990
+ components:
+ - type: MetaData
+ name: emitters west airlock
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - uid: 14991
+ components:
+ - type: MetaData
+ name: emitters west airlock
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - uid: 14993
+ components:
+ - type: MetaData
+ name: PA airlock
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - uid: 14994
+ components:
+ - type: MetaData
+ name: PA airlock
+ - type: Transform
+ pos: 105.5,153.5
+ parent: 1
+ - uid: 14997
+ components:
+ - type: MetaData
+ name: emitters east airlock
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - uid: 15004
+ components:
+ - type: MetaData
+ name: SMES array airlock
+ - type: Transform
+ pos: 124.5,122.5
+ parent: 1
+ - uid: 15133
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 15366
+ components:
+ - type: MetaData
+ name: telecommunications airlock
+ - type: Transform
+ pos: 130.5,126.5
+ parent: 1
+ - uid: 16089
+ components:
+ - type: MetaData
+ name: substation airlock
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - uid: 23412
+ components:
+ - type: MetaData
+ name: telecommunications airlock
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - uid: 28271
+ components:
+ - type: MetaData
+ name: engineering west station airlock
+ - type: Transform
+ pos: 102.5,124.5
+ parent: 1
+ - uid: 28272
+ components:
+ - type: MetaData
+ name: engineering east station and front desk airlock
+ - type: Transform
+ pos: 114.5,124.5
+ parent: 1
+ - uid: 29548
+ components:
+ - type: MetaData
+ name: telecommunications entrance airlock
+ - type: Transform
+ pos: 138.5,120.5
+ parent: 1
+ - uid: 29550
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 29551
+ components:
+ - type: Transform
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 30872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,139.5
+ parent: 1
+ - uid: 31145
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 31148
+ components:
+ - type: Transform
+ pos: 28.5,72.5
+ parent: 1
+ - uid: 33822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,91.5
+ parent: 1
+- proto: AirlockEVAGlassLocked
+ entities:
+ - uid: 2975
+ components:
+ - type: MetaData
+ name: EVA glass airlock
+ - type: Transform
+ pos: 54.5,70.5
+ parent: 1
+ - uid: 30732
+ components:
+ - type: MetaData
+ name: EVA glass airlock
+ - type: Transform
+ pos: 54.5,71.5
+ parent: 1
+- proto: AirlockExternalAtmosphericsLocked
+ entities:
+ - uid: 179
+ components:
+ - type: MetaData
+ name: atmospherics storage chambers airlock
+ - type: Transform
+ pos: 71.5,155.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 192:
+ - DoorStatus: DoorBolt
+ - uid: 192
+ components:
+ - type: Transform
+ pos: 69.5,154.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 179:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalEngineeringLocked
+ entities:
+ - uid: 15025
+ components:
+ - type: Transform
+ pos: 114.5,146.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15394:
+ - DoorStatus: InputA
+ - uid: 15026
+ components:
+ - type: Transform
+ pos: 115.5,146.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15394:
+ - DoorStatus: InputB
+ - uid: 15027
+ components:
+ - type: Transform
+ pos: 115.5,149.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15393:
+ - DoorStatus: InputB
+ - uid: 15028
+ components:
+ - type: Transform
+ pos: 114.5,149.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15393:
+ - DoorStatus: InputA
+ - uid: 27046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,130.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 27316:
+ - DoorStatus: DoorBolt
+ - uid: 27316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,130.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 27046:
+ - DoorStatus: DoorBolt
+ - uid: 31149
+ components:
+ - type: Transform
+ pos: 28.5,66.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 160:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlass
+ entities:
+ - uid: 103
+ components:
+ - type: Transform
+ pos: 68.5,27.5
+ parent: 1
+ - uid: 259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,78.5
+ parent: 1
+ - uid: 1470
+ components:
+ - type: Transform
+ pos: 151.5,154.5
+ parent: 1
+ - uid: 27672
+ components:
+ - type: Transform
+ pos: 68.5,34.5
+ parent: 1
+ - uid: 27674
+ components:
+ - type: Transform
+ pos: 82.5,34.5
+ parent: 1
+ - uid: 27675
+ components:
+ - type: Transform
+ pos: 82.5,27.5
+ parent: 1
+ - uid: 29154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,154.5
+ parent: 1
+ - uid: 29155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,154.5
+ parent: 1
+ - uid: 29156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,154.5
+ parent: 1
+ - uid: 29204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,80.5
+ parent: 1
+ - uid: 29205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,86.5
+ parent: 1
+ - uid: 29206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,88.5
+ parent: 1
+ - uid: 29207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,17.5
+ parent: 1
+ - uid: 29208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,17.5
+ parent: 1
+- proto: AirlockExternalGlassAtmosphericsLocked
+ entities:
+ - uid: 37267
+ components:
+ - type: MetaData
+ name: emergency airlock
+ - type: Transform
+ pos: 69.5,125.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+- proto: AirlockExternalGlassCargoLocked
+ entities:
+ - uid: 6971
+ components:
+ - type: Transform
+ pos: 153.5,90.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19497:
+ - DoorStatus: InputB
+ - uid: 19305
+ components:
+ - type: Transform
+ pos: 158.5,107.5
+ parent: 1
+ - uid: 19306
+ components:
+ - type: Transform
+ pos: 158.5,109.5
+ parent: 1
+ - uid: 19494
+ components:
+ - type: Transform
+ pos: 153.5,91.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19497:
+ - DoorStatus: InputA
+- proto: AirlockExternalGlassEngineeringLocked
+ entities:
+ - uid: 160
+ components:
+ - type: Transform
+ pos: 28.5,68.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 31149:
+ - DoorStatus: DoorBolt
+ - uid: 30873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,141.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30874:
+ - DoorStatus: DoorBolt
+ - uid: 30874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,141.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30873:
+ - DoorStatus: DoorBolt
+ - uid: 31756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 166.5,57.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 31759:
+ - DoorStatus: DoorBolt
+ - uid: 31759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,57.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 31756:
+ - DoorStatus: DoorBolt
+- proto: AirlockExternalGlassLocked
+ entities:
+ - uid: 3
+ components:
+ - type: Transform
+ pos: 140.5,41.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2:
+ - DoorStatus: DoorBolt
+ - uid: 147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,120.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 207:
+ - DoorStatus: DoorBolt
+ - uid: 908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,79.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20:
+ - DoorStatus: DoorBolt
+ - uid: 1075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,126.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 5486:
+ - DoorStatus: DoorBolt
+ - uid: 23361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,91.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 35643:
+ - DoorStatus: InputA
+ - uid: 28729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,159.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 131:
+ - DoorStatus: DoorBolt
+ - uid: 29210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,14.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29209:
+ - DoorStatus: DoorBolt
+ - uid: 30453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,90.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 35643:
+ - DoorStatus: InputB
+- proto: AirlockExternalGlassShuttleArrivals
+ entities:
+ - uid: 1811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,27.5
+ parent: 1
+ - uid: 1861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,34.5
+ parent: 1
+ - uid: 1863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,34.5
+ parent: 1
+ - uid: 1930
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,27.5
+ parent: 1
+- proto: AirlockExternalGlassShuttleEmergencyLocked
+ entities:
+ - uid: 29158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,157.5
+ parent: 1
+ - uid: 29159
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,157.5
+ parent: 1
+ - uid: 29160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,157.5
+ parent: 1
+ - uid: 29161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,157.5
+ parent: 1
+- proto: AirlockExternalGlassShuttleEscape
+ entities:
+ - uid: 7561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,173.5
+ parent: 1
+ - uid: 29183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,107.5
+ parent: 1
+ - uid: 29190
+ components:
+ - type: Transform
+ pos: 114.5,15.5
+ parent: 1
+- proto: AirlockExternalGlassShuttleLocked
+ entities:
+ - uid: 125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,86.5
+ parent: 1
+ - uid: 127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,88.5
+ parent: 1
+ - uid: 129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,78.5
+ parent: 1
+ - uid: 130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,80.5
+ parent: 1
+ - uid: 298
+ components:
+ - type: Transform
+ pos: 95.5,14.5
+ parent: 1
+ - uid: 300
+ components:
+ - type: Transform
+ pos: 93.5,14.5
+ parent: 1
+ - uid: 19273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,107.5
+ parent: 1
+ - uid: 19274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,109.5
+ parent: 1
+- proto: AirlockExternalLocked
+ entities:
+ - uid: 20
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,79.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 908:
+ - DoorStatus: DoorBolt
+ - uid: 131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,156.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28729:
+ - DoorStatus: DoorBolt
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,117.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 147:
+ - DoorStatus: DoorBolt
+ - uid: 5486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,128.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1075:
+ - DoorStatus: DoorBolt
+ - uid: 29209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,18.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29210:
+ - DoorStatus: DoorBolt
+- proto: AirlockFreezer
+ entities:
+ - uid: 34516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,43.5
+ parent: 1
+- proto: AirlockFreezerLocked
+ entities:
+ - uid: 25929
+ components:
+ - type: MetaData
+ name: freezer airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,95.5
+ parent: 1
+- proto: AirlockGlass
+ entities:
+ - uid: 661
+ components:
+ - type: MetaData
+ name: lawer's office glass airlock
+ - type: Transform
+ pos: 100.5,47.5
+ parent: 1
+ - uid: 768
+ components:
+ - type: MetaData
+ name: lawyer's office glass airlock
+ - type: Transform
+ pos: 106.5,49.5
+ parent: 1
+ - uid: 3122
+ components:
+ - type: Transform
+ pos: 84.5,49.5
+ parent: 1
+ - uid: 3182
+ components:
+ - type: Transform
+ pos: 139.5,146.5
+ parent: 1
+ - uid: 3284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,113.5
+ parent: 1
+ - uid: 3285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,112.5
+ parent: 1
+ - uid: 3719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,114.5
+ parent: 1
+ - uid: 5041
+ components:
+ - type: Transform
+ pos: 83.5,49.5
+ parent: 1
+ - uid: 8425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,141.5
+ parent: 1
+ - uid: 15320
+ components:
+ - type: Transform
+ pos: 82.5,61.5
+ parent: 1
+ - uid: 15326
+ components:
+ - type: Transform
+ pos: 83.5,61.5
+ parent: 1
+ - uid: 21751
+ components:
+ - type: Transform
+ pos: 82.5,49.5
+ parent: 1
+ - uid: 22778
+ components:
+ - type: Transform
+ pos: 84.5,61.5
+ parent: 1
+ - uid: 26690
+ components:
+ - type: MetaData
+ name: arcade glass airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,110.5
+ parent: 1
+ - uid: 26836
+ components:
+ - type: MetaData
+ name: red side glass airlock
+ - type: Transform
+ pos: 103.5,84.5
+ parent: 1
+ - uid: 26837
+ components:
+ - type: MetaData
+ name: blue side glass airlock
+ - type: Transform
+ pos: 109.5,80.5
+ parent: 1
+ - uid: 27755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,44.5
+ parent: 1
+ - uid: 27756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,44.5
+ parent: 1
+ - uid: 27757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,44.5
+ parent: 1
+ - uid: 27828
+ components:
+ - type: Transform
+ pos: 66.5,62.5
+ parent: 1
+ - uid: 27829
+ components:
+ - type: Transform
+ pos: 67.5,62.5
+ parent: 1
+ - uid: 27830
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 1
+ - uid: 27834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,68.5
+ parent: 1
+ - uid: 27835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,68.5
+ parent: 1
+ - uid: 27836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,68.5
+ parent: 1
+ - uid: 27942
+ components:
+ - type: Transform
+ pos: 57.5,99.5
+ parent: 1
+ - uid: 27943
+ components:
+ - type: Transform
+ pos: 56.5,99.5
+ parent: 1
+ - uid: 27944
+ components:
+ - type: Transform
+ pos: 55.5,99.5
+ parent: 1
+ - uid: 28244
+ components:
+ - type: Transform
+ pos: 85.5,113.5
+ parent: 1
+ - uid: 28245
+ components:
+ - type: Transform
+ pos: 85.5,114.5
+ parent: 1
+ - uid: 28248
+ components:
+ - type: Transform
+ pos: 85.5,112.5
+ parent: 1
+ - uid: 28270
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 104.5,116.5
+ parent: 1
+ - uid: 28273
+ components:
+ - type: Transform
+ pos: 97.5,117.5
+ parent: 1
+ - uid: 28274
+ components:
+ - type: Transform
+ pos: 97.5,118.5
+ parent: 1
+ - uid: 28275
+ components:
+ - type: Transform
+ pos: 97.5,119.5
+ parent: 1
+ - uid: 28276
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 103.5,116.5
+ parent: 1
+ - uid: 28277
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 102.5,116.5
+ parent: 1
+ - uid: 28278
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 114.5,116.5
+ parent: 1
+ - uid: 28279
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 113.5,116.5
+ parent: 1
+ - uid: 28280
+ components:
+ - type: MetaData
+ name: canteen glass airlock
+ - type: Transform
+ pos: 112.5,116.5
+ parent: 1
+ - uid: 28350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,117.5
+ parent: 1
+ - uid: 28351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,118.5
+ parent: 1
+ - uid: 28352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,119.5
+ parent: 1
+ - uid: 28509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,94.5
+ parent: 1
+ - uid: 28510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,94.5
+ parent: 1
+ - uid: 28511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,94.5
+ parent: 1
+ - uid: 28601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,79.5
+ parent: 1
+ - uid: 28602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,79.5
+ parent: 1
+ - uid: 28603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,76.5
+ parent: 1
+ - uid: 28604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,77.5
+ parent: 1
+ - uid: 28605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,78.5
+ parent: 1
+ - uid: 28646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,62.5
+ parent: 1
+ - uid: 28647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,62.5
+ parent: 1
+ - uid: 28648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,62.5
+ parent: 1
+ - uid: 28758
+ components:
+ - type: MetaData
+ name: court glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,49.5
+ parent: 1
+ - uid: 28759
+ components:
+ - type: MetaData
+ name: court glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,49.5
+ parent: 1
+ - uid: 28909
+ components:
+ - type: MetaData
+ name: tool shed glass airlock
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 1
+ - uid: 28917
+ components:
+ - type: Transform
+ pos: 96.5,76.5
+ parent: 1
+ - uid: 28918
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 1
+ - uid: 28919
+ components:
+ - type: Transform
+ pos: 96.5,78.5
+ parent: 1
+ - uid: 28922
+ components:
+ - type: MetaData
+ name: chapel glass airlock
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - uid: 28923
+ components:
+ - type: MetaData
+ name: chapel glass airlock
+ - type: Transform
+ pos: 89.5,70.5
+ parent: 1
+ - uid: 28925
+ components:
+ - type: MetaData
+ name: library glass airlock
+ - type: Transform
+ pos: 76.5,62.5
+ parent: 1
+ - uid: 28926
+ components:
+ - type: MetaData
+ name: library glass airlock
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 1
+ - uid: 29231
+ components:
+ - type: Transform
+ pos: 136.5,117.5
+ parent: 1
+ - uid: 29546
+ components:
+ - type: Transform
+ pos: 136.5,118.5
+ parent: 1
+ - uid: 29547
+ components:
+ - type: Transform
+ pos: 136.5,119.5
+ parent: 1
+ - uid: 29721
+ components:
+ - type: MetaData
+ name: cryosleep glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,140.5
+ parent: 1
+ - uid: 29824
+ components:
+ - type: Transform
+ pos: 143.5,144.5
+ parent: 1
+ - uid: 30193
+ components:
+ - type: Transform
+ pos: 140.5,146.5
+ parent: 1
+ - uid: 33291
+ components:
+ - type: Transform
+ pos: 86.5,18.5
+ parent: 1
+ - uid: 33292
+ components:
+ - type: Transform
+ pos: 86.5,19.5
+ parent: 1
+ - uid: 33293
+ components:
+ - type: Transform
+ pos: 86.5,20.5
+ parent: 1
+ - uid: 33294
+ components:
+ - type: Transform
+ pos: 89.5,24.5
+ parent: 1
+ - uid: 33298
+ components:
+ - type: Transform
+ pos: 97.5,27.5
+ parent: 1
+ - uid: 33299
+ components:
+ - type: Transform
+ pos: 99.5,30.5
+ parent: 1
+ - uid: 33300
+ components:
+ - type: Transform
+ pos: 99.5,32.5
+ parent: 1
+ - uid: 33301
+ components:
+ - type: Transform
+ pos: 99.5,31.5
+ parent: 1
+ - uid: 33302
+ components:
+ - type: Transform
+ pos: 108.5,21.5
+ parent: 1
+ - uid: 33303
+ components:
+ - type: Transform
+ pos: 109.5,21.5
+ parent: 1
+ - uid: 33304
+ components:
+ - type: Transform
+ pos: 110.5,21.5
+ parent: 1
+ - uid: 33315
+ components:
+ - type: Transform
+ pos: 114.5,26.5
+ parent: 1
+ - uid: 33325
+ components:
+ - type: Transform
+ pos: 117.5,39.5
+ parent: 1
+ - uid: 35156
+ components:
+ - type: Transform
+ pos: 116.5,168.5
+ parent: 1
+ - uid: 35157
+ components:
+ - type: Transform
+ pos: 116.5,169.5
+ parent: 1
+ - uid: 35158
+ components:
+ - type: Transform
+ pos: 116.5,170.5
+ parent: 1
+ - uid: 36545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,141.5
+ parent: 1
+ - uid: 36546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,141.5
+ parent: 1
+- proto: AirlockHeadOfPersonnelLocked
+ entities:
+ - uid: 13664
+ components:
+ - type: MetaData
+ name: HOP's office airlock
+ - type: Transform
+ pos: 54.5,58.5
+ parent: 1
+ - uid: 13665
+ components:
+ - type: MetaData
+ name: HOP's bedroom airlock
+ - type: Transform
+ pos: 57.5,53.5
+ parent: 1
+ - uid: 13666
+ components:
+ - type: MetaData
+ name: HOP's bathroom airlock
+ - type: Transform
+ pos: 59.5,51.5
+ parent: 1
+- proto: AirlockHeadOfSecurityLocked
+ entities:
+ - uid: 22932
+ components:
+ - type: MetaData
+ name: HOS office airlock
+ - type: Transform
+ pos: 141.5,63.5
+ parent: 1
+ - uid: 22933
+ components:
+ - type: MetaData
+ name: HOS bedroom airlock
+ - type: Transform
+ pos: 144.5,63.5
+ parent: 1
+- proto: AirlockHydroponicsLocked
+ entities:
+ - uid: 26601
+ components:
+ - type: MetaData
+ name: bontanist's room airlock
+ - type: Transform
+ pos: 99.5,95.5
+ parent: 1
+ - uid: 26602
+ components:
+ - type: MetaData
+ name: hydroponics airlock
+ - type: Transform
+ pos: 102.5,98.5
+ parent: 1
+ - uid: 26603
+ components:
+ - type: MetaData
+ name: hydroponics airlock
+ - type: Transform
+ pos: 93.5,100.5
+ parent: 1
+- proto: AirlockJanitorLocked
+ entities:
+ - uid: 29552
+ components:
+ - type: MetaData
+ name: janitor garage airlock
+ - type: Transform
+ pos: 155.5,120.5
+ parent: 1
+ - uid: 29553
+ components:
+ - type: MetaData
+ name: janitor garage airlock
+ - type: Transform
+ pos: 156.5,126.5
+ parent: 1
+- proto: AirlockKitchenLocked
+ entities:
+ - uid: 26565
+ components:
+ - type: MetaData
+ name: kitchen airlock
+ - type: Transform
+ pos: 114.5,98.5
+ parent: 1
+ - uid: 35547
+ components:
+ - type: MetaData
+ desc: Solely made for the transition of pizza from the oven to the arcade.
+ name: pizza airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,105.5
+ parent: 1
+- proto: AirlockLawyerGlassLocked
+ entities:
+ - uid: 37478
+ components:
+ - type: MetaData
+ name: lawyer's office glass airlock
+ - type: Transform
+ pos: 103.5,40.5
+ parent: 1
+- proto: AirlockMaintAtmoLocked
+ entities:
+ - uid: 16012
+ components:
+ - type: MetaData
+ name: atmospherics hallway maintenance access
+ - type: Transform
+ pos: 67.5,121.5
+ parent: 1
+- proto: AirlockMaintCargoLocked
+ entities:
+ - uid: 19525
+ components:
+ - type: MetaData
+ name: storage room maintenance access
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - uid: 19528
+ components:
+ - type: MetaData
+ name: cargo front desk maintenance access
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - uid: 28294
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - uid: 30229
+ components:
+ - type: MetaData
+ name: conveyor maintenance access
+ - type: Transform
+ pos: 146.5,113.5
+ parent: 1
+ - uid: 35650
+ components:
+ - type: MetaData
+ name: cargo bay maintenance access
+ - type: Transform
+ pos: 149.5,112.5
+ parent: 1
+- proto: AirlockMaintChapelLocked
+ entities:
+ - uid: 26934
+ components:
+ - type: MetaData
+ name: crematorium maintenance access
+ - type: Transform
+ pos: 62.5,76.5
+ parent: 1
+- proto: AirlockMaintCommandLocked
+ entities:
+ - uid: 1356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,38.5
+ parent: 1
+ - uid: 13254
+ components:
+ - type: MetaData
+ name: bridge hallway maintenance access
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - uid: 13255
+ components:
+ - type: MetaData
+ name: bridge common room maintenance access
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - uid: 13257
+ components:
+ - type: Transform
+ pos: 62.5,20.5
+ parent: 1
+ - uid: 29079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,42.5
+ parent: 1
+ - uid: 29343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,31.5
+ parent: 1
+ - uid: 29828
+ components:
+ - type: MetaData
+ name: EVA maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,76.5
+ parent: 1
+ - uid: 30303
+ components:
+ - type: MetaData
+ name: evac command longue maintenance access
+ - type: Transform
+ pos: 134.5,149.5
+ parent: 1
+ - uid: 30840
+ components:
+ - type: MetaData
+ name: conference room maintenance access
+ - type: Transform
+ pos: 134.5,87.5
+ parent: 1
+- proto: AirlockMaintDetectiveLocked
+ entities:
+ - uid: 37470
+ components:
+ - type: MetaData
+ name: detective's office maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,55.5
+ parent: 1
+- proto: AirlockMaintEngiLocked
+ entities:
+ - uid: 781
+ components:
+ - type: MetaData
+ name: tech vault maintenance access
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,131.5
+ parent: 1
+ - uid: 906
+ components:
+ - type: MetaData
+ name: thermo-electric generator maintenance access
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,126.5
+ parent: 1
+ - uid: 953
+ components:
+ - type: MetaData
+ name: thermo-electric generator maintenance access
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,148.5
+ parent: 1
+ - uid: 15104
+ components:
+ - type: MetaData
+ name: station anchor maintenance access
+ - type: Transform
+ pos: 120.5,160.5
+ parent: 1
+ - uid: 15105
+ components:
+ - type: MetaData
+ name: AME maintenance access
+ - type: Transform
+ pos: 112.5,163.5
+ parent: 1
+ - uid: 15106
+ components:
+ - type: MetaData
+ name: gravity maintenance access
+ - type: Transform
+ pos: 95.5,159.5
+ parent: 1
+ - uid: 15107
+ components:
+ - type: Transform
+ pos: 86.5,156.5
+ parent: 1
+ - uid: 15363
+ components:
+ - type: MetaData
+ name: locker room maintenance access
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - uid: 15986
+ components:
+ - type: MetaData
+ name: engineering hallway west maintenance access
+ - type: Transform
+ pos: 92.5,130.5
+ parent: 1
+ - uid: 15987
+ components:
+ - type: MetaData
+ name: engineering hallway north maintenance access
+ - type: Transform
+ pos: 92.5,155.5
+ parent: 1
+ - uid: 34872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,162.5
+ parent: 1
+ - uid: 35339
+ components:
+ - type: Transform
+ pos: 84.5,158.5
+ parent: 1
+ - uid: 35340
+ components:
+ - type: Transform
+ pos: 75.5,157.5
+ parent: 1
+- proto: AirlockMaintHOPLocked
+ entities:
+ - uid: 13663
+ components:
+ - type: MetaData
+ name: HOP's bedroom maintenance access
+ - type: Transform
+ pos: 54.5,48.5
+ parent: 1
+- proto: AirlockMaintHydroLocked
+ entities:
+ - uid: 26467
+ components:
+ - type: MetaData
+ name: bontanist's room maintenance access
+ - type: Transform
+ pos: 96.5,93.5
+ parent: 1
+- proto: AirlockMaintJanitorLocked
+ entities:
+ - uid: 29554
+ components:
+ - type: MetaData
+ name: janitor closet maintenance access
+ - type: Transform
+ pos: 153.5,127.5
+ parent: 1
+ - uid: 29600
+ components:
+ - type: MetaData
+ name: reporter's office maintenance access
+ - type: Transform
+ pos: 142.5,128.5
+ parent: 1
+ - uid: 37158
+ components:
+ - type: MetaData
+ name: janitor garage maintenance access
+ - type: Transform
+ pos: 160.5,124.5
+ parent: 1
+- proto: AirlockMaintKitchenLocked
+ entities:
+ - uid: 26566
+ components:
+ - type: MetaData
+ name: kitchen maintenance access
+ - type: Transform
+ pos: 122.5,95.5
+ parent: 1
+ - uid: 37424
+ components:
+ - type: MetaData
+ name: freezer maintenance access
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,89.5
+ parent: 1
+- proto: AirlockMaintLawyerLocked
+ entities:
+ - uid: 24757
+ components:
+ - type: Transform
+ pos: 107.5,37.5
+ parent: 1
+- proto: AirlockMaintLocked
+ entities:
+ - uid: 184
+ components:
+ - type: Transform
+ pos: 64.5,66.5
+ parent: 1
+ - uid: 359
+ components:
+ - type: Transform
+ pos: 52.5,120.5
+ parent: 1
+ - uid: 687
+ components:
+ - type: MetaData
+ name: lawyer's office maintenance access
+ - type: Transform
+ pos: 108.5,46.5
+ parent: 1
+ - uid: 1423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,135.5
+ parent: 1
+ - uid: 1442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,23.5
+ parent: 1
+ - uid: 1625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,78.5
+ parent: 1
+ - uid: 1906
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,35.5
+ parent: 1
+ - uid: 1961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,41.5
+ parent: 1
+ - uid: 2083
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - uid: 3073
+ components:
+ - type: Transform
+ pos: 66.5,19.5
+ parent: 1
+ - uid: 3124
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 1
+ - uid: 3187
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - uid: 3436
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 3985
+ components:
+ - type: MetaData
+ name: tool shed maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,59.5
+ parent: 1
+ - uid: 4056
+ components:
+ - type: Transform
+ pos: 149.5,144.5
+ parent: 1
+ - uid: 4376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,46.5
+ parent: 1
+ - uid: 4694
+ components:
+ - type: Transform
+ pos: 126.5,96.5
+ parent: 1
+ - uid: 4903
+ components:
+ - type: Transform
+ pos: 106.5,168.5
+ parent: 1
+ - uid: 5042
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 85.5,45.5
+ parent: 1
+ - uid: 5361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,109.5
+ parent: 1
+ - uid: 5538
+ components:
+ - type: Transform
+ pos: 149.5,78.5
+ parent: 1
+ - uid: 5820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,49.5
+ parent: 1
+ - uid: 6510
+ components:
+ - type: Transform
+ pos: 153.5,84.5
+ parent: 1
+ - uid: 6570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,144.5
+ parent: 1
+ - uid: 8153
+ components:
+ - type: MetaData
+ name: evac maintenance access
+ - type: Transform
+ pos: 147.5,145.5
+ parent: 1
+ - uid: 8448
+ components:
+ - type: MetaData
+ name: library maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,50.5
+ parent: 1
+ - uid: 9669
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,49.5
+ parent: 1
+ - uid: 12692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,49.5
+ parent: 1
+ - uid: 13491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,57.5
+ parent: 1
+ - uid: 13575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 17648
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 18267
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 19116
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 22771
+ components:
+ - type: Transform
+ pos: 97.5,88.5
+ parent: 1
+ - uid: 22772
+ components:
+ - type: Transform
+ pos: 95.5,85.5
+ parent: 1
+ - uid: 23674
+ components:
+ - type: Transform
+ pos: 71.5,159.5
+ parent: 1
+ - uid: 24518
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 1
+ - uid: 24655
+ components:
+ - type: MetaData
+ name: chapel maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,78.5
+ parent: 1
+ - uid: 24689
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,41.5
+ parent: 1
+ - uid: 25292
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 26220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,49.5
+ parent: 1
+ - uid: 26692
+ components:
+ - type: Transform
+ pos: 122.5,87.5
+ parent: 1
+ - uid: 27385
+ components:
+ - type: Transform
+ pos: 115.5,88.5
+ parent: 1
+ - uid: 27677
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 65.5,36.5
+ parent: 1
+ - uid: 27717
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 1
+ - uid: 27718
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - uid: 27720
+ components:
+ - type: MetaData
+ name: arrivals maintenance access
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - uid: 27833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,78.5
+ parent: 1
+ - uid: 27976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,113.5
+ parent: 1
+ - uid: 28138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,115.5
+ parent: 1
+ - uid: 28281
+ components:
+ - type: MetaData
+ name: canteen maintenance access
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - uid: 28512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,90.5
+ parent: 1
+ - uid: 28513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,85.5
+ parent: 1
+ - uid: 28514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,77.5
+ parent: 1
+ - uid: 28606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,73.5
+ parent: 1
+ - uid: 28643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,58.5
+ parent: 1
+ - uid: 28769
+ components:
+ - type: Transform
+ pos: 123.5,40.5
+ parent: 1
+ - uid: 28920
+ components:
+ - type: Transform
+ pos: 93.5,79.5
+ parent: 1
+ - uid: 28921
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 1
+ - uid: 29328
+ components:
+ - type: Transform
+ pos: 142.5,116.5
+ parent: 1
+ - uid: 29330
+ components:
+ - type: Transform
+ pos: 152.5,120.5
+ parent: 1
+ - uid: 29483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,120.5
+ parent: 1
+ - uid: 29726
+ components:
+ - type: MetaData
+ name: dorms maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,138.5
+ parent: 1
+ - uid: 29727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,131.5
+ parent: 1
+ - uid: 30124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,137.5
+ parent: 1
+ - uid: 30183
+ components:
+ - type: MetaData
+ name: evac maintenance access
+ - type: Transform
+ pos: 137.5,147.5
+ parent: 1
+ - uid: 30753
+ components:
+ - type: MetaData
+ name: court maintenance access
+ - type: Transform
+ pos: 89.5,47.5
+ parent: 1
+ - uid: 31768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,77.5
+ parent: 1
+ - uid: 32298
+ components:
+ - type: Transform
+ pos: 125.5,41.5
+ parent: 1
+ - uid: 32832
+ components:
+ - type: Transform
+ pos: 135.5,84.5
+ parent: 1
+ - uid: 33295
+ components:
+ - type: Transform
+ pos: 89.5,31.5
+ parent: 1
+ - uid: 33296
+ components:
+ - type: Transform
+ pos: 91.5,29.5
+ parent: 1
+ - uid: 33297
+ components:
+ - type: Transform
+ pos: 93.5,31.5
+ parent: 1
+ - uid: 33305
+ components:
+ - type: Transform
+ pos: 107.5,28.5
+ parent: 1
+ - uid: 33306
+ components:
+ - type: Transform
+ pos: 110.5,27.5
+ parent: 1
+ - uid: 33307
+ components:
+ - type: Transform
+ pos: 115.5,32.5
+ parent: 1
+ - uid: 33308
+ components:
+ - type: Transform
+ pos: 112.5,38.5
+ parent: 1
+ - uid: 33309
+ components:
+ - type: Transform
+ pos: 119.5,43.5
+ parent: 1
+ - uid: 33311
+ components:
+ - type: Transform
+ pos: 121.5,41.5
+ parent: 1
+ - uid: 34392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,80.5
+ parent: 1
+ - uid: 34529
+ components:
+ - type: Transform
+ pos: 154.5,44.5
+ parent: 1
+ - uid: 34530
+ components:
+ - type: Transform
+ pos: 159.5,46.5
+ parent: 1
+ - uid: 34580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,70.5
+ parent: 1
+ - uid: 34639
+ components:
+ - type: Transform
+ pos: 160.5,61.5
+ parent: 1
+ - uid: 34742
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 34782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,166.5
+ parent: 1
+ - uid: 34833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,169.5
+ parent: 1
+ - uid: 34892
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - uid: 34893
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 35013
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 35154
+ components:
+ - type: Transform
+ pos: 118.5,166.5
+ parent: 1
+ - uid: 35191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,164.5
+ parent: 1
+ - uid: 35192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,160.5
+ parent: 1
+ - uid: 35193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,166.5
+ parent: 1
+ - uid: 35194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 35195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,170.5
+ parent: 1
+ - uid: 35612
+ components:
+ - type: Transform
+ pos: 61.5,158.5
+ parent: 1
+ - uid: 35613
+ components:
+ - type: Transform
+ pos: 66.5,161.5
+ parent: 1
+ - uid: 35627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,153.5
+ parent: 1
+ - uid: 35639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,146.5
+ parent: 1
+ - uid: 35665
+ components:
+ - type: Transform
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 35666
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 35887
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 35984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,114.5
+ parent: 1
+ - uid: 35985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,114.5
+ parent: 1
+ - uid: 35986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,120.5
+ parent: 1
+ - uid: 35987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,122.5
+ parent: 1
+ - uid: 36179
+ components:
+ - type: Transform
+ pos: 17.5,107.5
+ parent: 1
+ - uid: 36366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,95.5
+ parent: 1
+ - uid: 36367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,94.5
+ parent: 1
+ - uid: 36368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,97.5
+ parent: 1
+ - uid: 36369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,83.5
+ parent: 1
+ - uid: 36370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,89.5
+ parent: 1
+ - uid: 36371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,81.5
+ parent: 1
+ - uid: 36372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 36373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,78.5
+ parent: 1
+ - uid: 36496
+ components:
+ - type: Transform
+ pos: 22.5,77.5
+ parent: 1
+ - uid: 36497
+ components:
+ - type: Transform
+ pos: 26.5,75.5
+ parent: 1
+ - uid: 36548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,166.5
+ parent: 1
+ - uid: 36983
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 36995
+ components:
+ - type: Transform
+ pos: 93.5,168.5
+ parent: 1
+ - uid: 37147
+ components:
+ - type: Transform
+ pos: 163.5,146.5
+ parent: 1
+ - uid: 37467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,53.5
+ parent: 1
+ - uid: 37468
+ components:
+ - type: MetaData
+ name: tool shed maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,57.5
+ parent: 1
+- proto: AirlockMaintMedLocked
+ entities:
+ - uid: 2094
+ components:
+ - type: MetaData
+ name: morgue maintenance access
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,79.5
+ parent: 1
+ - uid: 17747
+ components:
+ - type: MetaData
+ name: medical locker room maintenance access
+ - type: Transform
+ pos: 71.5,80.5
+ parent: 1
+ - uid: 17748
+ components:
+ - type: MetaData
+ name: medical hallway maintenance access
+ - type: Transform
+ pos: 77.5,84.5
+ parent: 1
+ - uid: 17749
+ components:
+ - type: MetaData
+ name: break room maintenance access
+ - type: Transform
+ pos: 80.5,81.5
+ parent: 1
+ - uid: 23344
+ components:
+ - type: MetaData
+ name: cloning lab maintenance access
+ - type: Transform
+ pos: 87.5,83.5
+ parent: 1
+ - uid: 28722
+ components:
+ - type: MetaData
+ name: medical checkpoint maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,46.5
+ parent: 1
+- proto: AirlockMaintRnDLocked
+ entities:
+ - uid: 72
+ components:
+ - type: MetaData
+ name: anomaly lab maintenance access
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,111.5
+ parent: 1
+ - uid: 20746
+ components:
+ - type: MetaData
+ name: science hallway maintenance access
+ - type: Transform
+ pos: 43.5,81.5
+ parent: 1
+ - uid: 20747
+ components:
+ - type: MetaData
+ name: xenoarchaeology lab maintenance access
+ - type: Transform
+ pos: 37.5,95.5
+ parent: 1
+ - uid: 20748
+ components:
+ - type: MetaData
+ name: science hallway maintenance access
+ - type: Transform
+ pos: 34.5,98.5
+ parent: 1
+ - uid: 20749
+ components:
+ - type: MetaData
+ name: break room maintenance access
+ - type: Transform
+ pos: 23.5,100.5
+ parent: 1
+ - uid: 20750
+ components:
+ - type: MetaData
+ name: xenobiology lab maintenance access
+ - type: Transform
+ pos: 35.5,118.5
+ parent: 1
+- proto: AirlockMaintSalvageLocked
+ entities:
+ - uid: 25197
+ components:
+ - type: MetaData
+ name: salvage bay maintenance access
+ - type: Transform
+ pos: 150.5,87.5
+ parent: 1
+- proto: AirlockMaintSecLocked
+ entities:
+ - uid: 23664
+ components:
+ - type: MetaData
+ name: perma EVA maintenance access
+ - type: Transform
+ pos: 123.5,45.5
+ parent: 1
+ - uid: 23665
+ components:
+ - type: MetaData
+ name: security breakroom maintenance access
+ - type: Transform
+ pos: 145.5,47.5
+ parent: 1
+ - uid: 23666
+ components:
+ - type: MetaData
+ name: interrogation maintenance access
+ - type: Transform
+ pos: 156.5,65.5
+ parent: 1
+ - uid: 23667
+ components:
+ - type: MetaData
+ name: security hallway maintenance access
+ - type: Transform
+ pos: 147.5,73.5
+ parent: 1
+ - uid: 28228
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - uid: 33869
+ components:
+ - type: MetaData
+ name: court maintenance access
+ - type: Transform
+ pos: 89.5,40.5
+ parent: 1
+ - uid: 34168
+ components:
+ - type: MetaData
+ name: court hallway maintenance access
+ - type: Transform
+ pos: 101.5,38.5
+ parent: 1
+ - uid: 35088
+ components:
+ - type: MetaData
+ name: evac security checkpoint maintenance access
+ - type: Transform
+ pos: 153.5,147.5
+ parent: 1
+- proto: AirlockMaintServiceLocked
+ entities:
+ - uid: 27284
+ components:
+ - type: MetaData
+ name: librarian's room maintenance access
+ - type: Transform
+ pos: 75.5,46.5
+ parent: 1
+- proto: AirlockMaintTheatreLocked
+ entities:
+ - uid: 24687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,63.5
+ parent: 1
+ - uid: 26792
+ components:
+ - type: MetaData
+ name: mime's room maintenance access
+ - type: Transform
+ pos: 99.5,56.5
+ parent: 1
+ - uid: 26793
+ components:
+ - type: MetaData
+ name: clown's room maintenance access
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - uid: 26794
+ components:
+ - type: MetaData
+ name: musician's room maintenance access
+ - type: Transform
+ pos: 115.5,57.5
+ parent: 1
+ - uid: 31838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,63.5
+ parent: 1
+- proto: AirlockMedical
+ entities:
+ - uid: 111
+ components:
+ - type: MetaData
+ name: surgery theater airlock
+ - type: Transform
+ pos: 58.5,107.5
+ parent: 1
+- proto: AirlockMedicalGlass
+ entities:
+ - uid: 18154
+ components:
+ - type: MetaData
+ name: surgery theater glass airlock
+ - type: Transform
+ pos: 64.5,108.5
+ parent: 1
+- proto: AirlockMedicalGlassLocked
+ entities:
+ - uid: 354
+ components:
+ - type: MetaData
+ name: medical locker room glass airlock
+ - type: Transform
+ pos: 66.5,85.5
+ parent: 1
+ - uid: 522
+ components:
+ - type: MetaData
+ name: break room glass airlock
+ - type: Transform
+ pos: 83.5,85.5
+ parent: 1
+ - uid: 17765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,89.5
+ parent: 1
+ - uid: 17766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,89.5
+ parent: 1
+ - uid: 17769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,89.5
+ parent: 1
+ - uid: 17770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,89.5
+ parent: 1
+ - uid: 17782
+ components:
+ - type: MetaData
+ name: triage glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,96.5
+ parent: 1
+ - uid: 17783
+ components:
+ - type: MetaData
+ name: triage glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,98.5
+ parent: 1
+ - uid: 17784
+ components:
+ - type: MetaData
+ name: cryogenics glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,93.5
+ parent: 1
+ - uid: 17785
+ components:
+ - type: MetaData
+ name: cryogenics glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,93.5
+ parent: 1
+ - uid: 17786
+ components:
+ - type: MetaData
+ name: triage glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,96.5
+ parent: 1
+ - uid: 17787
+ components:
+ - type: MetaData
+ name: triage glass airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,98.5
+ parent: 1
+- proto: AirlockMedicalLocked
+ entities:
+ - uid: 17696
+ components:
+ - type: MetaData
+ name: triage airlock
+ - type: Transform
+ pos: 75.5,101.5
+ parent: 1
+ - uid: 17697
+ components:
+ - type: MetaData
+ name: triage airlock
+ - type: Transform
+ pos: 74.5,101.5
+ parent: 1
+ - uid: 17763
+ components:
+ - type: MetaData
+ name: morgue airlock
+ - type: Transform
+ pos: 64.5,87.5
+ parent: 1
+ - uid: 17767
+ components:
+ - type: MetaData
+ name: cryogenics airlock
+ - type: Transform
+ pos: 71.5,89.5
+ parent: 1
+ - uid: 17768
+ components:
+ - type: MetaData
+ name: cryogenics airlock
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 1
+ - uid: 17772
+ components:
+ - type: MetaData
+ name: medical hallway airlock
+ - type: Transform
+ pos: 67.5,105.5
+ parent: 1
+ - uid: 17773
+ components:
+ - type: MetaData
+ name: medical hallway airlock
+ - type: Transform
+ pos: 66.5,105.5
+ parent: 1
+ - uid: 17774
+ components:
+ - type: MetaData
+ name: medical hallway airlock
+ - type: Transform
+ pos: 82.5,105.5
+ parent: 1
+ - uid: 17775
+ components:
+ - type: MetaData
+ name: medical hallway airlock
+ - type: Transform
+ pos: 81.5,105.5
+ parent: 1
+ - uid: 17776
+ components:
+ - type: MetaData
+ name: front desk airlock
+ - type: Transform
+ pos: 79.5,103.5
+ parent: 1
+ - uid: 17777
+ components:
+ - type: MetaData
+ name: surgery airlock
+ - type: Transform
+ pos: 64.5,99.5
+ parent: 1
+ - uid: 28661
+ components:
+ - type: MetaData
+ name: medical checkpoint airlock
+ - type: Transform
+ pos: 114.5,52.5
+ parent: 1
+ - uid: 31762
+ components:
+ - type: MetaData
+ name: cloning lab airlock
+ - type: Transform
+ pos: 85.5,87.5
+ parent: 1
+- proto: AirlockMedicalScienceLocked
+ entities:
+ - uid: 17778
+ components:
+ - type: MetaData
+ name: robotics airlock
+ - type: Transform
+ pos: 60.5,98.5
+ parent: 1
+- proto: AirlockQuartermasterGlassLocked
+ entities:
+ - uid: 19375
+ components:
+ - type: MetaData
+ name: QM's office glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,101.5
+ parent: 1
+- proto: AirlockQuartermasterLocked
+ entities:
+ - uid: 19374
+ components:
+ - type: MetaData
+ name: QM's bedroom airlock
+ - type: Transform
+ pos: 143.5,107.5
+ parent: 1
+- proto: AirlockResearchDirectorGlassLocked
+ entities:
+ - uid: 552
+ components:
+ - type: MetaData
+ name: server room glass airlock
+ - type: Transform
+ pos: 45.5,107.5
+ parent: 1
+ - uid: 562
+ components:
+ - type: MetaData
+ name: server room glass airlock
+ - type: Transform
+ pos: 49.5,105.5
+ parent: 1
+ - uid: 20407
+ components:
+ - type: MetaData
+ name: RD's office glass airlock
+ - type: Transform
+ pos: 41.5,107.5
+ parent: 1
+- proto: AirlockResearchDirectorLocked
+ entities:
+ - uid: 20870
+ components:
+ - type: MetaData
+ name: RD's bedroom airlock
+ - type: Transform
+ pos: 36.5,104.5
+ parent: 1
+- proto: AirlockSalvageGlassLocked
+ entities:
+ - uid: 30363
+ components:
+ - type: MetaData
+ name: salvage bay glass airlock
+ - type: Transform
+ pos: 151.5,97.5
+ parent: 1
+- proto: AirlockSalvageLocked
+ entities:
+ - uid: 1113
+ components:
+ - type: MetaData
+ name: salvage bay airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,97.5
+ parent: 1
+ - uid: 19450
+ components:
+ - type: MetaData
+ name: salvage locker room airlock
+ - type: Transform
+ pos: 145.5,89.5
+ parent: 1
+ - uid: 19451
+ components:
+ - type: MetaData
+ name: cargo break room airlock
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+- proto: AirlockScienceGlassLocked
+ entities:
+ - uid: 563
+ components:
+ - type: MetaData
+ name: xenobiology lab glass airlock
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - uid: 572
+ components:
+ - type: MetaData
+ name: break room glass airlock
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 1
+ - uid: 663
+ components:
+ - type: MetaData
+ name: science hallway glass airlock
+ - type: Transform
+ pos: 45.5,97.5
+ parent: 1
+ - uid: 694
+ components:
+ - type: MetaData
+ name: science hallway glass airlock
+ - type: Transform
+ pos: 45.5,96.5
+ parent: 1
+ - uid: 749
+ components:
+ - type: MetaData
+ name: storage room glass airlock
+ - type: Transform
+ pos: 45.5,83.5
+ parent: 1
+ - uid: 20742
+ components:
+ - type: MetaData
+ name: anomaly lab glass airlock
+ - type: Transform
+ pos: 42.5,110.5
+ parent: 1
+ - uid: 20743
+ components:
+ - type: MetaData
+ name: anomaly lab glass airlock
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - uid: 20744
+ components:
+ - type: MetaData
+ name: xenoarchaeology lab glass airlock
+ - type: Transform
+ pos: 41.5,83.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 20745
+ components:
+ - type: MetaData
+ name: xenoarchaeology lab glass airlock
+ - type: Transform
+ pos: 38.5,85.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 20761
+ components:
+ - type: MetaData
+ name: test chamber glass airlock
+ - type: Transform
+ pos: 34.5,87.5
+ parent: 1
+ - uid: 20762
+ components:
+ - type: MetaData
+ name: test chamber glass airlock
+ - type: Transform
+ pos: 34.5,93.5
+ parent: 1
+ - uid: 37558
+ components:
+ - type: MetaData
+ name: canister storage glass airlock
+ - type: Transform
+ pos: 45.5,100.5
+ parent: 1
+ - uid: 37559
+ components:
+ - type: MetaData
+ name: canister storage glass airlock
+ - type: Transform
+ pos: 45.5,101.5
+ parent: 1
+- proto: AirlockScienceLocked
+ entities:
+ - uid: 216
+ components:
+ - type: MetaData
+ name: xenobiology lab airlock
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - uid: 217
+ components:
+ - type: MetaData
+ name: xenobiology lab airlock
+ - type: Transform
+ pos: 37.5,112.5
+ parent: 1
+ - uid: 20756
+ components:
+ - type: MetaData
+ name: R&D airlock
+ - type: Transform
+ pos: 45.5,89.5
+ parent: 1
+ - uid: 20757
+ components:
+ - type: MetaData
+ name: R&D airlock
+ - type: Transform
+ pos: 45.5,90.5
+ parent: 1
+ - uid: 20758
+ components:
+ - type: MetaData
+ name: R&D airlock
+ - type: Transform
+ pos: 50.5,87.5
+ parent: 1
+ - uid: 20759
+ components:
+ - type: MetaData
+ name: storage airlock
+ - type: Transform
+ pos: 52.5,85.5
+ parent: 1
+ - uid: 20862
+ components:
+ - type: MetaData
+ name: robotics airlock
+ - type: Transform
+ pos: 58.5,96.5
+ parent: 1
+- proto: AirlockSecurityLawyerLocked
+ entities:
+ - uid: 23352
+ components:
+ - type: MetaData
+ name: court hallway airlock
+ - type: Transform
+ pos: 102.5,44.5
+ parent: 1
+ - uid: 30734
+ components:
+ - type: MetaData
+ name: court airlock
+ - type: Transform
+ pos: 100.5,40.5
+ parent: 1
+ - uid: 37479
+ components:
+ - type: MetaData
+ name: lawyer's office airlock
+ - type: Transform
+ pos: 106.5,43.5
+ parent: 1
+- proto: AirlockSecurityLocked
+ entities:
+ - uid: 2
+ components:
+ - type: MetaData
+ name: external security airlock
+ - type: Transform
+ pos: 140.5,43.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3:
+ - DoorStatus: DoorBolt
+ - uid: 22926
+ components:
+ - type: MetaData
+ name: interrogation airlock
+ - type: Transform
+ pos: 150.5,61.5
+ parent: 1
+ - uid: 22929
+ components:
+ - type: MetaData
+ name: security breakroom airlock
+ - type: Transform
+ pos: 151.5,50.5
+ parent: 1
+ - uid: 22930
+ components:
+ - type: MetaData
+ name: security EVA airlock
+ - type: Transform
+ pos: 139.5,50.5
+ parent: 1
+ - uid: 22931
+ components:
+ - type: MetaData
+ name: security EVA airlock
+ - type: Transform
+ pos: 140.5,50.5
+ parent: 1
+ - uid: 22949
+ components:
+ - type: MetaData
+ name: shooting range airlock
+ - type: Transform
+ pos: 150.5,67.5
+ parent: 1
+ - uid: 22978
+ components:
+ - type: MetaData
+ name: perma transfer airlock
+ - type: Transform
+ pos: 126.5,53.5
+ parent: 1
+ - uid: 22979
+ components:
+ - type: MetaData
+ name: perma EVA airlock
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - uid: 22980
+ components:
+ - type: MetaData
+ name: perma transfer airlock
+ - type: Transform
+ pos: 128.5,55.5
+ parent: 1
+ - uid: 23543
+ components:
+ - type: MetaData
+ name: holding cell airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,150.5
+ parent: 1
+ - uid: 28227
+ components:
+ - type: MetaData
+ name: checkpoint airlock
+ - type: Transform
+ pos: 90.5,113.5
+ parent: 1
+ - uid: 28640
+ components:
+ - type: MetaData
+ name: perma EVA airlock
+ - type: Transform
+ pos: 121.5,50.5
+ parent: 1
+- proto: AirlockServiceGlassLocked
+ entities:
+ - uid: 912
+ components:
+ - type: MetaData
+ name: reporter's office glass airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,126.5
+ parent: 1
+ - uid: 26525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,106.5
+ parent: 1
+- proto: AirlockServiceLocked
+ entities:
+ - uid: 782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,84.5
+ parent: 1
+ - uid: 23399
+ components:
+ - type: MetaData
+ name: arcade storage airlock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,105.5
+ parent: 1
+ - uid: 26513
+ components:
+ - type: MetaData
+ name: service hall airlock
+ - type: Transform
+ pos: 113.5,105.5
+ parent: 1
+ - uid: 26514
+ components:
+ - type: MetaData
+ name: service hall airlock
+ - type: Transform
+ pos: 103.5,105.5
+ parent: 1
+ - uid: 26515
+ components:
+ - type: MetaData
+ name: service hall airlock
+ - type: Transform
+ pos: 104.5,95.5
+ parent: 1
+ - uid: 26516
+ components:
+ - type: MetaData
+ name: ranch airlock
+ - type: Transform
+ pos: 110.5,95.5
+ parent: 1
+ - uid: 27281
+ components:
+ - type: MetaData
+ name: librarian's room airlock
+ - type: Transform
+ pos: 77.5,50.5
+ parent: 1
+ - uid: 27282
+ components:
+ - type: MetaData
+ name: library desk airlock
+ - type: Transform
+ pos: 74.5,51.5
+ parent: 1
+ - uid: 29713
+ components:
+ - type: MetaData
+ name: news office airlock
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,120.5
+ parent: 1
+- proto: AirlockTheatreLocked
+ entities:
+ - uid: 25864
+ components:
+ - type: MetaData
+ name: theater airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,67.5
+ parent: 1
+ - uid: 26795
+ components:
+ - type: MetaData
+ name: musician's room airlock
+ - type: Transform
+ pos: 112.5,61.5
+ parent: 1
+ - uid: 26796
+ components:
+ - type: MetaData
+ name: clown's room airlock
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 1
+ - uid: 26797
+ components:
+ - type: MetaData
+ name: mime's room airlock
+ - type: Transform
+ pos: 100.5,61.5
+ parent: 1
+ - uid: 31855
+ components:
+ - type: MetaData
+ name: theater airlock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,67.5
+ parent: 1
+- proto: AirSensor
+ entities:
+ - uid: 65
+ components:
+ - type: Transform
+ pos: 128.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28486
+ - uid: 241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27831
+ - uid: 274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20363
+ - uid: 339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,31.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - uid: 577
+ components:
+ - type: Transform
+ pos: 74.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27986
+ - uid: 1038
+ components:
+ - type: Transform
+ pos: 62.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1303
+ - uid: 1163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18539
+ - uid: 1587
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,133.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1588
+ - uid: 3057
+ components:
+ - type: Transform
+ pos: 123.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - uid: 3092
+ components:
+ - type: Transform
+ pos: 128.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14601
+ - uid: 3110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 4625
+ - uid: 3111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3113
+ - uid: 3119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - uid: 3126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - uid: 4058
+ components:
+ - type: Transform
+ pos: 135.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28594
+ - uid: 4065
+ components:
+ - type: Transform
+ pos: 77.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - uid: 4138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27854
+ - uid: 4278
+ components:
+ - type: Transform
+ pos: 97.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - uid: 4279
+ components:
+ - type: Transform
+ pos: 119.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14594
+ - uid: 4527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3112
+ - uid: 5286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20336
+ - uid: 8140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - uid: 8158
+ components:
+ - type: Transform
+ pos: 133.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - uid: 9371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36741
+ - uid: 10316
+ components:
+ - type: Transform
+ pos: 139.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - uid: 10736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - uid: 10737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - uid: 10738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - uid: 10739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - uid: 10741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10730
+ - uid: 10742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - uid: 10743
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - uid: 10788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - uid: 10789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10752
+ - uid: 10971
+ components:
+ - type: Transform
+ pos: 86.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - uid: 11484
+ components:
+ - type: Transform
+ pos: 148.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - uid: 12396
+ components:
+ - type: Transform
+ pos: 134.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - uid: 13224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,38.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - uid: 13225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - uid: 13226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10685
+ - uid: 13227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10686
+ - uid: 13231
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - uid: 13971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - uid: 14517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - uid: 14518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - uid: 14521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14595
+ - uid: 14527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - uid: 14567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,125.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - uid: 14568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - uid: 14571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - uid: 14585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - uid: 14622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14846
+ - uid: 14666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14667
+ - uid: 14668
+ components:
+ - type: Transform
+ pos: 99.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14669
+ - uid: 15350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - uid: 15409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - uid: 15433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - uid: 15448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - uid: 15510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - uid: 15511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - uid: 15512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - uid: 15980
+ components:
+ - type: Transform
+ pos: 109.5,158.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14840
+ - uid: 17078
+ components:
+ - type: Transform
+ pos: 62.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - uid: 17079
+ components:
+ - type: Transform
+ pos: 67.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - uid: 17082
+ components:
+ - type: Transform
+ pos: 82.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - uid: 17092
+ components:
+ - type: Transform
+ pos: 87.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17091
+ - uid: 17095
+ components:
+ - type: Transform
+ pos: 87.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - uid: 17098
+ components:
+ - type: Transform
+ pos: 82.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17097
+ - uid: 17099
+ components:
+ - type: Transform
+ pos: 74.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17102
+ - uid: 17104
+ components:
+ - type: Transform
+ pos: 67.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17103
+ - uid: 17108
+ components:
+ - type: Transform
+ pos: 61.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17107
+ - uid: 17110
+ components:
+ - type: Transform
+ pos: 74.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17109
+ - uid: 17111
+ components:
+ - type: Transform
+ pos: 61.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17112
+ - uid: 17113
+ components:
+ - type: Transform
+ pos: 71.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - uid: 17114
+ components:
+ - type: Transform
+ pos: 78.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - uid: 17615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - uid: 18048
+ components:
+ - type: Transform
+ pos: 86.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - uid: 18609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - uid: 18611
+ components:
+ - type: Transform
+ pos: 145.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - uid: 18613
+ components:
+ - type: Transform
+ pos: 139.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18616
+ - uid: 18629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - uid: 18631
+ components:
+ - type: Transform
+ pos: 132.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - uid: 18863
+ components:
+ - type: Transform
+ pos: 94.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - uid: 18865
+ components:
+ - type: Transform
+ pos: 103.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - uid: 19369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37358
+ - uid: 19623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - uid: 20330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - uid: 20332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20331
+ - uid: 20333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20331
+ - uid: 20339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20340
+ - uid: 20342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20343
+ - uid: 20344
+ components:
+ - type: Transform
+ pos: 47.5,89.5
+ parent: 1
+ - uid: 20351
+ components:
+ - type: Transform
+ pos: 52.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20352
+ - uid: 20354
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20353
+ - uid: 20358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20359
+ - uid: 20364
+ components:
+ - type: Transform
+ pos: 43.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - uid: 20368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20373
+ - uid: 20369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20372
+ - uid: 20370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20374
+ - uid: 20371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - uid: 20377
+ components:
+ - type: Transform
+ pos: 26.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20376
+ - uid: 20379
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20378
+ - uid: 21593
+ components:
+ - type: Transform
+ pos: 82.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - uid: 22157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - uid: 22159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - uid: 22162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22164
+ - uid: 22208
+ components:
+ - type: Transform
+ pos: 147.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - uid: 22228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22229
+ - uid: 22245
+ components:
+ - type: Transform
+ pos: 152.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22246
+ - uid: 22251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22252
+ - uid: 22257
+ components:
+ - type: Transform
+ pos: 153.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22258
+ - uid: 22264
+ components:
+ - type: Transform
+ pos: 143.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - uid: 22266
+ components:
+ - type: Transform
+ pos: 143.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22267
+ - uid: 22268
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22269
+ - uid: 22277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22270
+ - uid: 22631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22635
+ - uid: 22632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - uid: 22633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - uid: 25487
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25419
+ - uid: 25535
+ components:
+ - type: Transform
+ pos: 92.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - uid: 25593
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - uid: 25594
+ components:
+ - type: Transform
+ pos: 114.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - uid: 25779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - uid: 26177
+ components:
+ - type: Transform
+ pos: 119.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - uid: 26179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26180
+ - uid: 26181
+ components:
+ - type: Transform
+ pos: 108.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26182
+ - uid: 26185
+ components:
+ - type: Transform
+ pos: 99.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26186
+ - uid: 26187
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26188
+ - uid: 26191
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - uid: 26192
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - uid: 26211
+ components:
+ - type: Transform
+ pos: 73.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - uid: 26212
+ components:
+ - type: Transform
+ pos: 87.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - uid: 26213
+ components:
+ - type: Transform
+ pos: 63.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26214
+ - uid: 26232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - uid: 26233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - uid: 26420
+ components:
+ - type: Transform
+ pos: 98.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - uid: 27413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,31.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - uid: 27730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - uid: 27935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27728
+ - uid: 28226
+ components:
+ - type: Transform
+ pos: 89.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30227
+ - uid: 28235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - uid: 28236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - uid: 28292
+ components:
+ - type: Transform
+ pos: 129.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28288
+ - uid: 28502
+ components:
+ - type: Transform
+ pos: 119.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28597
+ - uid: 28632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28634
+ - uid: 28637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28638
+ - uid: 28906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - uid: 29229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29545
+ - uid: 29234
+ components:
+ - type: Transform
+ pos: 158.5,125.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - uid: 29254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3344
+ - uid: 29309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 29311
+ components:
+ - type: Transform
+ pos: 153.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 29480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29481
+ - uid: 29537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,69.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18183
+ - uid: 29829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,150.5
+ parent: 1
+ - uid: 29832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - uid: 30391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23328
+ - uid: 32584
+ components:
+ - type: Transform
+ pos: 48.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 19097
+ - uid: 32940
+ components:
+ - type: Transform
+ pos: 153.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 34373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 34374
+ - uid: 34474
+ components:
+ - type: Transform
+ pos: 95.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28741
+ - uid: 35224
+ components:
+ - type: Transform
+ pos: 88.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30728
+ - uid: 35465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,135.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,143.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,147.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 35471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 35464
+ - uid: 36613
+ components:
+ - type: Transform
+ pos: 121.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15935
+ - uid: 36962
+ components:
+ - type: Transform
+ pos: 116.5,161.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36963
+ - uid: 37162
+ components:
+ - type: Transform
+ pos: 156.5,152.5
+ parent: 1
+ - uid: 37455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37459
+ - uid: 37466
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - uid: 37476
+ components:
+ - type: Transform
+ pos: 106.5,41.5
+ parent: 1
+- proto: AirSensorVox
+ entities:
+ - uid: 20361
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20362
+- proto: AirTank
+ entities:
+ - uid: 20941
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 46.558414,103.22654
+ parent: 1
+ - type: GasTank
+ toggleActionEntity: 3364
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 3364
+- proto: AltarSpawner
+ entities:
+ - uid: 25492
+ components:
+ - type: Transform
+ pos: 83.5,74.5
+ parent: 1
+- proto: AmeController
+ entities:
+ - uid: 15044
+ components:
+ - type: Transform
+ pos: 106.5,162.5
+ parent: 1
+- proto: APCBasic
+ entities:
+ - uid: 67
+ components:
+ - type: MetaData
+ name: triage APC
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 1
+ - uid: 220
+ components:
+ - type: MetaData
+ name: xenobiology lab APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,115.5
+ parent: 1
+ - uid: 277
+ components:
+ - type: MetaData
+ name: arcade APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,105.5
+ parent: 1
+ - uid: 630
+ components:
+ - type: MetaData
+ name: court north APC
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 1
+ - uid: 752
+ components:
+ - type: MetaData
+ name: solars northwest APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,139.5
+ parent: 1
+ - uid: 2648
+ components:
+ - type: MetaData
+ name: cargo front entrance APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,95.5
+ parent: 1
+ - uid: 3120
+ components:
+ - type: MetaData
+ name: hallway 1 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,51.5
+ parent: 1
+ - uid: 3350
+ components:
+ - type: MetaData
+ name: maintance 20 APC
+ - type: Transform
+ pos: 120.5,89.5
+ parent: 1
+ - uid: 3518
+ components:
+ - type: MetaData
+ name: cloning lab APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,85.5
+ parent: 1
+ - uid: 3531
+ components:
+ - type: MetaData
+ name: solars southwest APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,69.5
+ parent: 1
+ - uid: 3594
+ components:
+ - type: MetaData
+ name: telecommunications APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,127.5
+ parent: 1
+ - uid: 3673
+ components:
+ - type: MetaData
+ name: canteen east APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,111.5
+ parent: 1
+ - uid: 3727
+ components:
+ - type: MetaData
+ name: maintance 12 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,95.5
+ parent: 1
+ - uid: 4761
+ components:
+ - type: MetaData
+ name: HOP's office APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,57.5
+ parent: 1
+ - uid: 5237
+ components:
+ - type: MetaData
+ name: evac APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,149.5
+ parent: 1
+ - uid: 6097
+ components:
+ - type: MetaData
+ name: maintance 18 APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,33.5
+ parent: 1
+ - uid: 6528
+ components:
+ - type: MetaData
+ name: maintance 6 APC
+ - type: Transform
+ pos: 89.5,166.5
+ parent: 1
+ - uid: 7998
+ components:
+ - type: MetaData
+ name: security locker room APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,53.5
+ parent: 1
+ - uid: 10794
+ components:
+ - type: MetaData
+ name: canteen west APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,111.5
+ parent: 1
+ - uid: 10972
+ components:
+ - type: MetaData
+ name: bridge common room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,60.5
+ parent: 1
+ - uid: 10973
+ components:
+ - type: MetaData
+ name: bridge entrance APC
+ - type: Transform
+ pos: 49.5,67.5
+ parent: 1
+ - uid: 10975
+ components:
+ - type: MetaData
+ name: captain's room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,69.5
+ parent: 1
+ - uid: 10976
+ components:
+ - type: MetaData
+ name: captain's bedroom APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,66.5
+ parent: 1
+ - uid: 10977
+ components:
+ - type: MetaData
+ name: bridge APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,50.5
+ parent: 1
+ - uid: 10979
+ components:
+ - type: MetaData
+ name: bridge hallway north APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,67.5
+ parent: 1
+ - uid: 11338
+ components:
+ - type: MetaData
+ name: maintance 19 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,43.5
+ parent: 1
+ - uid: 12414
+ components:
+ - type: MetaData
+ name: research and development APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,88.5
+ parent: 1
+ - uid: 13021
+ components:
+ - type: MetaData
+ name: AI core APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,24.5
+ parent: 1
+ - uid: 13088
+ components:
+ - type: MetaData
+ name: AI upload APC
+ - type: Transform
+ pos: 51.5,43.5
+ parent: 1
+ - uid: 13089
+ components:
+ - type: MetaData
+ name: AI entrance APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,46.5
+ parent: 1
+ - uid: 13133
+ components:
+ - type: MetaData
+ name: AI dome APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,24.5
+ parent: 1
+ - uid: 13217
+ components:
+ - type: MetaData
+ name: theater APC
+ - type: Transform
+ pos: 104.5,65.5
+ parent: 1
+ - uid: 14251
+ components:
+ - type: MetaData
+ name: containment entrance APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 14308
+ components:
+ - type: MetaData
+ name: engineering east station and front desk APC
+ - type: Transform
+ pos: 120.5,126.5
+ parent: 1
+ - uid: 14309
+ components:
+ - type: MetaData
+ name: engineering west station APC
+ - type: Transform
+ pos: 96.5,126.5
+ parent: 1
+ - uid: 14310
+ components:
+ - type: MetaData
+ name: engineering hallway west APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,132.5
+ parent: 1
+ - uid: 14313
+ components:
+ - type: MetaData
+ name: engineering hallway north APC
+ - type: Transform
+ pos: 114.5,157.5
+ parent: 1
+ - uid: 14724
+ components:
+ - type: MetaData
+ name: maintance 14 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,74.5
+ parent: 1
+ - uid: 14955
+ components:
+ - type: MetaData
+ name: engineering hallway east APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,140.5
+ parent: 1
+ - uid: 15114
+ components:
+ - type: MetaData
+ name: maintance 8 APC
+ - type: Transform
+ pos: 90.5,157.5
+ parent: 1
+ - uid: 15173
+ components:
+ - type: MetaData
+ name: SMES array APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,122.5
+ parent: 1
+ - uid: 15214
+ components:
+ - type: MetaData
+ name: CE's room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,143.5
+ parent: 1
+ - uid: 15230
+ components:
+ - type: MetaData
+ name: engineering locker room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,138.5
+ parent: 1
+ - uid: 15389
+ components:
+ - type: MetaData
+ name: PA APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,149.5
+ parent: 1
+ - uid: 15518
+ components:
+ - type: MetaData
+ name: atmospherics front desk APC
+ - type: Transform
+ pos: 73.5,120.5
+ parent: 1
+ - uid: 15597
+ components:
+ - type: MetaData
+ name: thermo-electric generator APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,130.5
+ parent: 1
+ - uid: 15688
+ components:
+ - type: MetaData
+ name: atmospherics central APC
+ - type: Transform
+ pos: 73.5,154.5
+ parent: 1
+ - uid: 15877
+ components:
+ - type: MetaData
+ name: atmospherics canister storage APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,117.5
+ parent: 1
+ - uid: 17228
+ components:
+ - type: MetaData
+ name: surgery APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,101.5
+ parent: 1
+ - uid: 17229
+ components:
+ - type: MetaData
+ name: medical hallway west APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,101.5
+ parent: 1
+ - uid: 17230
+ components:
+ - type: MetaData
+ name: medical hallway east APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,101.5
+ parent: 1
+ - uid: 17231
+ components:
+ - type: MetaData
+ name: chemistry APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,102.5
+ parent: 1
+ - uid: 17232
+ components:
+ - type: MetaData
+ name: medical hallway south APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,85.5
+ parent: 1
+ - uid: 17234
+ components:
+ - type: MetaData
+ name: medical locker room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,81.5
+ parent: 1
+ - uid: 17236
+ components:
+ - type: MetaData
+ name: CMO's room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,93.5
+ parent: 1
+ - uid: 17378
+ components:
+ - type: MetaData
+ name: medical front entrance APC
+ - type: Transform
+ pos: 80.5,109.5
+ parent: 1
+ - uid: 17534
+ components:
+ - type: MetaData
+ name: cryogenics APC
+ - type: Transform
+ pos: 76.5,93.5
+ parent: 1
+ - uid: 17590
+ components:
+ - type: MetaData
+ name: robotics APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,89.5
+ parent: 1
+ - uid: 17896
+ components:
+ - type: MetaData
+ name: morgue APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,83.5
+ parent: 1
+ - uid: 18388
+ components:
+ - type: MetaData
+ name: cargo break room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,95.5
+ parent: 1
+ - uid: 18815
+ components:
+ - type: MetaData
+ name: anomaly lab APC
+ - type: Transform
+ pos: 41.5,118.5
+ parent: 1
+ - uid: 18908
+ components:
+ - type: MetaData
+ name: maintance 9 APC
+ - type: Transform
+ pos: 60.5,131.5
+ parent: 1
+ - uid: 18917
+ components:
+ - type: MetaData
+ name: cargo bay APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,105.5
+ parent: 1
+ - uid: 18932
+ components:
+ - type: MetaData
+ name: salvage bay APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,92.5
+ parent: 1
+ - uid: 18934
+ components:
+ - type: MetaData
+ name: cargo front desk APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,100.5
+ parent: 1
+ - uid: 18936
+ components:
+ - type: MetaData
+ name: QM's room APC
+ - type: Transform
+ pos: 144.5,107.5
+ parent: 1
+ - uid: 18937
+ components:
+ - type: MetaData
+ name: cargo control room APC
+ - type: Transform
+ pos: 158.5,101.5
+ parent: 1
+ - uid: 19860
+ components:
+ - type: MetaData
+ name: science break room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,102.5
+ parent: 1
+ - uid: 19862
+ components:
+ - type: MetaData
+ name: RD's room APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,106.5
+ parent: 1
+ - uid: 19865
+ components:
+ - type: MetaData
+ name: science canister storage APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,98.5
+ parent: 1
+ - uid: 19866
+ components:
+ - type: MetaData
+ name: science hallway north APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,98.5
+ parent: 1
+ - uid: 19921
+ components:
+ - type: MetaData
+ name: xenoarcheology APC
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 1
+ - uid: 21781
+ components:
+ - type: MetaData
+ name: security breakroom APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,50.5
+ parent: 1
+ - uid: 21783
+ components:
+ - type: MetaData
+ name: interrogation APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,59.5
+ parent: 1
+ - uid: 21784
+ components:
+ - type: MetaData
+ name: shooting range APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,68.5
+ parent: 1
+ - uid: 21785
+ components:
+ - type: MetaData
+ name: security hallway north APC
+ - type: Transform
+ pos: 145.5,72.5
+ parent: 1
+ - uid: 21786
+ components:
+ - type: MetaData
+ name: security hallway south APC
+ - type: Transform
+ pos: 142.5,59.5
+ parent: 1
+ - uid: 21787
+ components:
+ - type: MetaData
+ name: security west hallway APC
+ - type: Transform
+ pos: 129.5,61.5
+ parent: 1
+ - uid: 21788
+ components:
+ - type: MetaData
+ name: brig APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,66.5
+ parent: 1
+ - uid: 21789
+ components:
+ - type: MetaData
+ name: armory APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,64.5
+ parent: 1
+ - uid: 21790
+ components:
+ - type: MetaData
+ name: warden office APC
+ - type: Transform
+ pos: 130.5,75.5
+ parent: 1
+ - uid: 21791
+ components:
+ - type: MetaData
+ name: perma APC
+ - type: Transform
+ pos: 125.5,57.5
+ parent: 1
+ - uid: 21857
+ components:
+ - type: MetaData
+ name: security EVA APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,47.5
+ parent: 1
+ - uid: 22076
+ components:
+ - type: MetaData
+ name: HOS's room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,63.5
+ parent: 1
+ - uid: 23462
+ components:
+ - type: MetaData
+ name: vault APC
+ - type: Transform
+ pos: 47.5,76.5
+ parent: 1
+ - uid: 23638
+ components:
+ - type: MetaData
+ name: EVA APC
+ - type: Transform
+ pos: 46.5,72.5
+ parent: 1
+ - uid: 23780
+ components:
+ - type: MetaData
+ name: kitchen APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,95.5
+ parent: 1
+ - uid: 23781
+ components:
+ - type: MetaData
+ name: service hall APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,95.5
+ parent: 1
+ - uid: 23985
+ components:
+ - type: MetaData
+ name: botany locker room APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,91.5
+ parent: 1
+ - uid: 24067
+ components:
+ - type: MetaData
+ name: HOP's room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,48.5
+ parent: 1
+ - uid: 24107
+ components:
+ - type: MetaData
+ name: pool APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,84.5
+ parent: 1
+ - uid: 24504
+ components:
+ - type: MetaData
+ name: mime's room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,60.5
+ parent: 1
+ - uid: 24505
+ components:
+ - type: MetaData
+ name: musician's room APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,60.5
+ parent: 1
+ - uid: 24506
+ components:
+ - type: MetaData
+ name: clown's room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,55.5
+ parent: 1
+ - uid: 24780
+ components:
+ - type: MetaData
+ name: boxing ring north APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,86.5
+ parent: 1
+ - uid: 24921
+ components:
+ - type: MetaData
+ name: chapel APC
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 1
+ - uid: 24964
+ components:
+ - type: MetaData
+ name: crematorium APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,71.5
+ parent: 1
+ - uid: 24965
+ components:
+ - type: MetaData
+ name: chaplain's office APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,71.5
+ parent: 1
+ - uid: 25543
+ components:
+ - type: MetaData
+ name: security checkpoint APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,112.5
+ parent: 1
+ - uid: 25958
+ components:
+ - type: MetaData
+ name: cargo storage room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,110.5
+ parent: 1
+ - uid: 26319
+ components:
+ - type: MetaData
+ name: science hallway south APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,86.5
+ parent: 1
+ - uid: 26394
+ components:
+ - type: MetaData
+ name: botany APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,102.5
+ parent: 1
+ - uid: 26446
+ components:
+ - type: MetaData
+ name: science storage room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,84.5
+ parent: 1
+ - uid: 26548
+ components:
+ - type: MetaData
+ name: bartender's room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,103.5
+ parent: 1
+ - uid: 26720
+ components:
+ - type: MetaData
+ name: boxing ring south APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,75.5
+ parent: 1
+ - uid: 26842
+ components:
+ - type: MetaData
+ name: gravity APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,158.5
+ parent: 1
+ - uid: 27363
+ components:
+ - type: MetaData
+ name: bridge hallway south APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,47.5
+ parent: 1
+ - uid: 27678
+ components:
+ - type: MetaData
+ name: hallway 2 APC
+ - type: Transform
+ pos: 60.5,66.5
+ parent: 1
+ - uid: 27921
+ components:
+ - type: MetaData
+ name: hallway 5 APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,108.5
+ parent: 1
+ - uid: 28031
+ components:
+ - type: MetaData
+ name: hallway 7 APC
+ - type: Transform
+ pos: 93.5,120.5
+ parent: 1
+ - uid: 28071
+ components:
+ - type: MetaData
+ name: hallway 8 APC
+ - type: Transform
+ pos: 124.5,120.5
+ parent: 1
+ - uid: 28343
+ components:
+ - type: MetaData
+ name: hallway 10 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,111.5
+ parent: 1
+ - uid: 28480
+ components:
+ - type: MetaData
+ name: hallway 12 APC
+ - type: Transform
+ pos: 122.5,79.5
+ parent: 1
+ - uid: 28481
+ components:
+ - type: MetaData
+ name: hallway 11 APC
+ - type: Transform
+ pos: 139.5,79.5
+ parent: 1
+ - uid: 28560
+ components:
+ - type: MetaData
+ name: green house APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,82.5
+ parent: 1
+ - uid: 28698
+ components:
+ - type: MetaData
+ name: medical clinic APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,46.5
+ parent: 1
+ - uid: 28747
+ components:
+ - type: MetaData
+ name: hallway 14 APC
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 1
+ - uid: 29017
+ components:
+ - type: MetaData
+ name: hallway 15 APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,73.5
+ parent: 1
+ - uid: 29327
+ components:
+ - type: MetaData
+ name: hallway 9 APC
+ - type: Transform
+ pos: 142.5,120.5
+ parent: 1
+ - uid: 29366
+ components:
+ - type: MetaData
+ name: janitor's closet APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,127.5
+ parent: 1
+ - uid: 29402
+ components:
+ - type: MetaData
+ name: maintance 2 APC
+ - type: Transform
+ pos: 157.5,132.5
+ parent: 1
+ - uid: 29443
+ components:
+ - type: MetaData
+ name: cryosleep APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,142.5
+ parent: 1
+ - uid: 29705
+ components:
+ - type: MetaData
+ name: library APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,61.5
+ parent: 1
+ - uid: 29836
+ components:
+ - type: MetaData
+ name: tool shed APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,61.5
+ parent: 1
+ - uid: 29970
+ components:
+ - type: MetaData
+ name: combo cafe APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,139.5
+ parent: 1
+ - uid: 29993
+ components:
+ - type: MetaData
+ name: tech vault APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,133.5
+ parent: 1
+ - uid: 30417
+ components:
+ - type: MetaData
+ name: lawyer's office APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,45.5
+ parent: 1
+ - uid: 30511
+ components:
+ - type: MetaData
+ name: maintance 3 APC
+ - type: Transform
+ pos: 132.5,149.5
+ parent: 1
+ - uid: 32311
+ components:
+ - type: MetaData
+ name: arrivals APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,40.5
+ parent: 1
+ - uid: 33089
+ components:
+ - type: MetaData
+ name: evac security checkpoint APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,150.5
+ parent: 1
+ - uid: 33941
+ components:
+ - type: MetaData
+ name: maintance 17 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,41.5
+ parent: 1
+ - uid: 34279
+ components:
+ - type: MetaData
+ name: solars southeast APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,53.5
+ parent: 1
+ - uid: 34302
+ components:
+ - type: MetaData
+ name: maintance 1 APC
+ - type: Transform
+ pos: 137.5,87.5
+ parent: 1
+ - uid: 34607
+ components:
+ - type: MetaData
+ name: conference room APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,93.5
+ parent: 1
+ - uid: 34698
+ components:
+ - type: MetaData
+ name: court south APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,42.5
+ parent: 1
+ - uid: 34818
+ components:
+ - type: MetaData
+ name: maintance 15 APC
+ - type: Transform
+ pos: 64.5,79.5
+ parent: 1
+ - uid: 34821
+ components:
+ - type: MetaData
+ name: maintance 16 APC
+ - type: Transform
+ pos: 85.5,81.5
+ parent: 1
+ - uid: 35037
+ components:
+ - type: MetaData
+ name: maintance 4 APC
+ - type: Transform
+ pos: 117.5,172.5
+ parent: 1
+ - uid: 35122
+ components:
+ - type: MetaData
+ name: maintance 7 APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,158.5
+ parent: 1
+ - uid: 35872
+ components:
+ - type: MetaData
+ name: maintance 10 APC
+ - type: Transform
+ pos: 51.5,120.5
+ parent: 1
+ - uid: 35954
+ components:
+ - type: MetaData
+ name: maintance 11 APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,119.5
+ parent: 1
+ - uid: 35989
+ components:
+ - type: MetaData
+ name: bathroom APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,117.5
+ parent: 1
+ - uid: 36236
+ components:
+ - type: MetaData
+ name: maintance 13 APC
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,80.5
+ parent: 1
+ - uid: 36666
+ components:
+ - type: MetaData
+ name: server room APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,104.5
+ parent: 1
+ - uid: 36680
+ components:
+ - type: MetaData
+ name: AME APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,160.5
+ parent: 1
+ - uid: 36710
+ components:
+ - type: MetaData
+ name: station anchor APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,159.5
+ parent: 1
+ - uid: 37460
+ components:
+ - type: MetaData
+ name: detective's office APC
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,53.5
+ parent: 1
+ - uid: 37499
+ components:
+ - type: MetaData
+ name: reporter's office APC
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,123.5
+ parent: 1
+- proto: ArrivalsShuttleTimer
+ entities:
+ - uid: 2558
+ components:
+ - type: Transform
+ pos: 82.5,28.5
+ parent: 1
+ - uid: 2560
+ components:
+ - type: Transform
+ pos: 80.5,40.5
+ parent: 1
+ - uid: 2562
+ components:
+ - type: Transform
+ pos: 68.5,28.5
+ parent: 1
+ - uid: 16659
+ components:
+ - type: Transform
+ pos: 70.5,40.5
+ parent: 1
+ - uid: 16660
+ components:
+ - type: Transform
+ pos: 82.5,35.5
+ parent: 1
+ - uid: 16661
+ components:
+ - type: Transform
+ pos: 68.5,35.5
+ parent: 1
+- proto: ArtistCircuitBoard
+ entities:
+ - uid: 13260
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.632015,39.492775
+ parent: 1
+- proto: Ash
+ entities:
+ - uid: 30527
+ components:
+ - type: Transform
+ pos: 53.5,157.5
+ parent: 1
+ - uid: 36343
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 55.461277,150.62411
+ parent: 1
+- proto: Ashtray
+ entities:
+ - uid: 18248
+ components:
+ - type: Transform
+ pos: 88.97407,57.510235
+ parent: 1
+ - uid: 26596
+ components:
+ - type: Transform
+ pos: 108.5,110.5
+ parent: 1
+ - uid: 26744
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 106.463486,72.622665
+ parent: 1
+ - uid: 30173
+ components:
+ - type: Transform
+ pos: 135.00697,153.7087
+ parent: 1
+- proto: AsimovCircuitBoard
+ entities:
+ - uid: 13261
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.361183,39.273872
+ parent: 1
+- proto: AtmosDeviceFanDirectional
+ entities:
+ - uid: 279
+ components:
+ - type: Transform
+ pos: 114.5,15.5
+ parent: 1
+ - uid: 336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,27.5
+ parent: 1
+ - uid: 518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,89.5
+ parent: 1
+ - uid: 2824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,34.5
+ parent: 1
+ - uid: 2999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,34.5
+ parent: 1
+ - uid: 3002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,27.5
+ parent: 1
+ - uid: 19275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,107.5
+ parent: 1
+ - uid: 19276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,109.5
+ parent: 1
+ - uid: 26451
+ components:
+ - type: Transform
+ pos: 117.5,95.5
+ parent: 1
+ - uid: 29165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,157.5
+ parent: 1
+ - uid: 29166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,157.5
+ parent: 1
+ - uid: 29167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,157.5
+ parent: 1
+ - uid: 29168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,157.5
+ parent: 1
+ - uid: 29170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,173.5
+ parent: 1
+ - uid: 29184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,107.5
+ parent: 1
+ - uid: 29192
+ components:
+ - type: Transform
+ pos: 95.5,14.5
+ parent: 1
+ - uid: 29193
+ components:
+ - type: Transform
+ pos: 93.5,14.5
+ parent: 1
+ - uid: 29194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,78.5
+ parent: 1
+ - uid: 29195
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,80.5
+ parent: 1
+ - uid: 29196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,86.5
+ parent: 1
+ - uid: 29197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,88.5
+ parent: 1
+- proto: AtmosFixBlockerMarker
+ entities:
+ - uid: 2420
+ components:
+ - type: Transform
+ pos: 101.5,137.5
+ parent: 1
+ - uid: 7266
+ components:
+ - type: Transform
+ pos: 65.5,134.5
+ parent: 1
+ - uid: 7267
+ components:
+ - type: Transform
+ pos: 65.5,135.5
+ parent: 1
+ - uid: 7268
+ components:
+ - type: Transform
+ pos: 65.5,136.5
+ parent: 1
+ - uid: 7269
+ components:
+ - type: Transform
+ pos: 64.5,134.5
+ parent: 1
+ - uid: 7270
+ components:
+ - type: Transform
+ pos: 64.5,135.5
+ parent: 1
+ - uid: 7271
+ components:
+ - type: Transform
+ pos: 64.5,136.5
+ parent: 1
+ - uid: 7272
+ components:
+ - type: Transform
+ pos: 65.5,142.5
+ parent: 1
+ - uid: 7273
+ components:
+ - type: Transform
+ pos: 65.5,143.5
+ parent: 1
+ - uid: 7274
+ components:
+ - type: Transform
+ pos: 65.5,144.5
+ parent: 1
+ - uid: 7275
+ components:
+ - type: Transform
+ pos: 64.5,142.5
+ parent: 1
+ - uid: 7276
+ components:
+ - type: Transform
+ pos: 64.5,143.5
+ parent: 1
+ - uid: 7277
+ components:
+ - type: Transform
+ pos: 64.5,144.5
+ parent: 1
+ - uid: 7278
+ components:
+ - type: Transform
+ pos: 66.5,146.5
+ parent: 1
+ - uid: 7279
+ components:
+ - type: Transform
+ pos: 66.5,147.5
+ parent: 1
+ - uid: 7280
+ components:
+ - type: Transform
+ pos: 66.5,148.5
+ parent: 1
+ - uid: 7281
+ components:
+ - type: Transform
+ pos: 65.5,146.5
+ parent: 1
+ - uid: 7282
+ components:
+ - type: Transform
+ pos: 65.5,147.5
+ parent: 1
+ - uid: 7283
+ components:
+ - type: Transform
+ pos: 65.5,148.5
+ parent: 1
+ - uid: 7284
+ components:
+ - type: Transform
+ pos: 67.5,150.5
+ parent: 1
+ - uid: 7285
+ components:
+ - type: Transform
+ pos: 67.5,151.5
+ parent: 1
+ - uid: 7286
+ components:
+ - type: Transform
+ pos: 67.5,152.5
+ parent: 1
+ - uid: 7287
+ components:
+ - type: Transform
+ pos: 66.5,150.5
+ parent: 1
+ - uid: 7288
+ components:
+ - type: Transform
+ pos: 66.5,151.5
+ parent: 1
+ - uid: 7289
+ components:
+ - type: Transform
+ pos: 66.5,152.5
+ parent: 1
+ - uid: 14265
+ components:
+ - type: Transform
+ pos: 100.5,136.5
+ parent: 1
+ - uid: 14266
+ components:
+ - type: Transform
+ pos: 101.5,136.5
+ parent: 1
+ - uid: 14849
+ components:
+ - type: Transform
+ pos: 100.5,129.5
+ parent: 1
+ - uid: 14850
+ components:
+ - type: Transform
+ pos: 100.5,130.5
+ parent: 1
+ - uid: 14851
+ components:
+ - type: Transform
+ pos: 100.5,131.5
+ parent: 1
+ - uid: 14852
+ components:
+ - type: Transform
+ pos: 100.5,132.5
+ parent: 1
+ - uid: 14853
+ components:
+ - type: Transform
+ pos: 100.5,133.5
+ parent: 1
+ - uid: 14854
+ components:
+ - type: Transform
+ pos: 100.5,134.5
+ parent: 1
+ - uid: 14855
+ components:
+ - type: Transform
+ pos: 100.5,135.5
+ parent: 1
+ - uid: 14857
+ components:
+ - type: Transform
+ pos: 100.5,137.5
+ parent: 1
+ - uid: 14858
+ components:
+ - type: Transform
+ pos: 100.5,138.5
+ parent: 1
+ - uid: 14859
+ components:
+ - type: Transform
+ pos: 100.5,139.5
+ parent: 1
+ - uid: 14860
+ components:
+ - type: Transform
+ pos: 100.5,140.5
+ parent: 1
+ - uid: 14861
+ components:
+ - type: Transform
+ pos: 100.5,141.5
+ parent: 1
+ - uid: 14862
+ components:
+ - type: Transform
+ pos: 100.5,143.5
+ parent: 1
+ - uid: 14863
+ components:
+ - type: Transform
+ pos: 100.5,142.5
+ parent: 1
+ - uid: 14864
+ components:
+ - type: Transform
+ pos: 100.5,144.5
+ parent: 1
+ - uid: 14865
+ components:
+ - type: Transform
+ pos: 100.5,145.5
+ parent: 1
+ - uid: 14867
+ components:
+ - type: Transform
+ pos: 101.5,138.5
+ parent: 1
+ - uid: 14868
+ components:
+ - type: Transform
+ pos: 102.5,136.5
+ parent: 1
+ - uid: 14869
+ components:
+ - type: Transform
+ pos: 102.5,137.5
+ parent: 1
+ - uid: 14870
+ components:
+ - type: Transform
+ pos: 102.5,138.5
+ parent: 1
+ - uid: 14871
+ components:
+ - type: Transform
+ pos: 116.5,135.5
+ parent: 1
+ - uid: 14872
+ components:
+ - type: Transform
+ pos: 114.5,138.5
+ parent: 1
+ - uid: 14873
+ components:
+ - type: Transform
+ pos: 114.5,137.5
+ parent: 1
+ - uid: 14874
+ components:
+ - type: Transform
+ pos: 114.5,136.5
+ parent: 1
+ - uid: 14875
+ components:
+ - type: Transform
+ pos: 115.5,138.5
+ parent: 1
+ - uid: 14876
+ components:
+ - type: Transform
+ pos: 115.5,137.5
+ parent: 1
+ - uid: 14877
+ components:
+ - type: Transform
+ pos: 115.5,136.5
+ parent: 1
+ - uid: 14878
+ components:
+ - type: Transform
+ pos: 116.5,138.5
+ parent: 1
+ - uid: 14879
+ components:
+ - type: Transform
+ pos: 116.5,137.5
+ parent: 1
+ - uid: 14880
+ components:
+ - type: Transform
+ pos: 116.5,136.5
+ parent: 1
+ - uid: 14881
+ components:
+ - type: Transform
+ pos: 116.5,134.5
+ parent: 1
+ - uid: 14882
+ components:
+ - type: Transform
+ pos: 116.5,133.5
+ parent: 1
+ - uid: 14883
+ components:
+ - type: Transform
+ pos: 116.5,132.5
+ parent: 1
+ - uid: 14884
+ components:
+ - type: Transform
+ pos: 116.5,131.5
+ parent: 1
+ - uid: 14885
+ components:
+ - type: Transform
+ pos: 116.5,130.5
+ parent: 1
+ - uid: 14886
+ components:
+ - type: Transform
+ pos: 116.5,129.5
+ parent: 1
+ - uid: 14887
+ components:
+ - type: Transform
+ pos: 115.5,129.5
+ parent: 1
+ - uid: 14888
+ components:
+ - type: Transform
+ pos: 114.5,129.5
+ parent: 1
+ - uid: 14889
+ components:
+ - type: Transform
+ pos: 113.5,129.5
+ parent: 1
+ - uid: 14890
+ components:
+ - type: Transform
+ pos: 112.5,129.5
+ parent: 1
+ - uid: 14891
+ components:
+ - type: Transform
+ pos: 111.5,129.5
+ parent: 1
+ - uid: 14892
+ components:
+ - type: Transform
+ pos: 110.5,129.5
+ parent: 1
+ - uid: 14893
+ components:
+ - type: Transform
+ pos: 109.5,129.5
+ parent: 1
+ - uid: 14894
+ components:
+ - type: Transform
+ pos: 108.5,129.5
+ parent: 1
+ - uid: 14895
+ components:
+ - type: Transform
+ pos: 107.5,129.5
+ parent: 1
+ - uid: 14896
+ components:
+ - type: Transform
+ pos: 105.5,129.5
+ parent: 1
+ - uid: 14897
+ components:
+ - type: Transform
+ pos: 106.5,129.5
+ parent: 1
+ - uid: 14898
+ components:
+ - type: Transform
+ pos: 104.5,129.5
+ parent: 1
+ - uid: 14899
+ components:
+ - type: Transform
+ pos: 103.5,129.5
+ parent: 1
+ - uid: 14900
+ components:
+ - type: Transform
+ pos: 102.5,129.5
+ parent: 1
+ - uid: 14901
+ components:
+ - type: Transform
+ pos: 101.5,129.5
+ parent: 1
+ - uid: 14902
+ components:
+ - type: Transform
+ pos: 108.5,130.5
+ parent: 1
+ - uid: 14903
+ components:
+ - type: Transform
+ pos: 108.5,131.5
+ parent: 1
+ - uid: 14904
+ components:
+ - type: Transform
+ pos: 109.5,130.5
+ parent: 1
+ - uid: 14905
+ components:
+ - type: Transform
+ pos: 109.5,131.5
+ parent: 1
+ - uid: 14906
+ components:
+ - type: Transform
+ pos: 107.5,130.5
+ parent: 1
+ - uid: 14907
+ components:
+ - type: Transform
+ pos: 107.5,131.5
+ parent: 1
+ - uid: 14908
+ components:
+ - type: Transform
+ pos: 107.5,145.5
+ parent: 1
+ - uid: 14909
+ components:
+ - type: Transform
+ pos: 109.5,136.5
+ parent: 1
+ - uid: 14910
+ components:
+ - type: Transform
+ pos: 109.5,137.5
+ parent: 1
+ - uid: 14911
+ components:
+ - type: Transform
+ pos: 109.5,138.5
+ parent: 1
+ - uid: 14912
+ components:
+ - type: Transform
+ pos: 108.5,136.5
+ parent: 1
+ - uid: 14913
+ components:
+ - type: Transform
+ pos: 108.5,137.5
+ parent: 1
+ - uid: 14914
+ components:
+ - type: Transform
+ pos: 107.5,136.5
+ parent: 1
+ - uid: 14915
+ components:
+ - type: Transform
+ pos: 108.5,138.5
+ parent: 1
+ - uid: 14916
+ components:
+ - type: Transform
+ pos: 107.5,138.5
+ parent: 1
+ - uid: 14917
+ components:
+ - type: Transform
+ pos: 107.5,137.5
+ parent: 1
+ - uid: 14918
+ components:
+ - type: Transform
+ pos: 109.5,144.5
+ parent: 1
+ - uid: 14919
+ components:
+ - type: Transform
+ pos: 108.5,144.5
+ parent: 1
+ - uid: 14920
+ components:
+ - type: Transform
+ pos: 107.5,144.5
+ parent: 1
+ - uid: 14921
+ components:
+ - type: Transform
+ pos: 108.5,145.5
+ parent: 1
+ - uid: 14922
+ components:
+ - type: Transform
+ pos: 109.5,145.5
+ parent: 1
+ - uid: 14923
+ components:
+ - type: Transform
+ pos: 110.5,145.5
+ parent: 1
+ - uid: 14924
+ components:
+ - type: Transform
+ pos: 111.5,145.5
+ parent: 1
+ - uid: 14925
+ components:
+ - type: Transform
+ pos: 112.5,145.5
+ parent: 1
+ - uid: 14926
+ components:
+ - type: Transform
+ pos: 113.5,145.5
+ parent: 1
+ - uid: 14927
+ components:
+ - type: Transform
+ pos: 114.5,145.5
+ parent: 1
+ - uid: 14928
+ components:
+ - type: Transform
+ pos: 115.5,145.5
+ parent: 1
+ - uid: 14929
+ components:
+ - type: Transform
+ pos: 116.5,145.5
+ parent: 1
+ - uid: 14930
+ components:
+ - type: Transform
+ pos: 116.5,144.5
+ parent: 1
+ - uid: 14931
+ components:
+ - type: Transform
+ pos: 116.5,143.5
+ parent: 1
+ - uid: 14932
+ components:
+ - type: Transform
+ pos: 116.5,142.5
+ parent: 1
+ - uid: 14933
+ components:
+ - type: Transform
+ pos: 116.5,141.5
+ parent: 1
+ - uid: 14934
+ components:
+ - type: Transform
+ pos: 116.5,140.5
+ parent: 1
+ - uid: 14935
+ components:
+ - type: Transform
+ pos: 116.5,139.5
+ parent: 1
+ - uid: 14936
+ components:
+ - type: Transform
+ pos: 106.5,145.5
+ parent: 1
+ - uid: 14937
+ components:
+ - type: Transform
+ pos: 105.5,145.5
+ parent: 1
+ - uid: 14938
+ components:
+ - type: Transform
+ pos: 104.5,145.5
+ parent: 1
+ - uid: 14939
+ components:
+ - type: Transform
+ pos: 103.5,145.5
+ parent: 1
+ - uid: 14940
+ components:
+ - type: Transform
+ pos: 102.5,145.5
+ parent: 1
+ - uid: 14941
+ components:
+ - type: Transform
+ pos: 101.5,145.5
+ parent: 1
+ - uid: 14942
+ components:
+ - type: Transform
+ pos: 107.5,143.5
+ parent: 1
+ - uid: 14943
+ components:
+ - type: Transform
+ pos: 108.5,143.5
+ parent: 1
+ - uid: 14944
+ components:
+ - type: Transform
+ pos: 109.5,143.5
+ parent: 1
+ - uid: 15312
+ components:
+ - type: Transform
+ pos: 63.5,142.5
+ parent: 1
+ - uid: 30256
+ components:
+ - type: Transform
+ pos: 80.5,131.5
+ parent: 1
+ - uid: 30797
+ components:
+ - type: Transform
+ pos: 64.5,146.5
+ parent: 1
+ - uid: 30798
+ components:
+ - type: Transform
+ pos: 65.5,150.5
+ parent: 1
+ - uid: 32353
+ components:
+ - type: Transform
+ pos: 80.5,132.5
+ parent: 1
+ - uid: 32354
+ components:
+ - type: Transform
+ pos: 84.5,131.5
+ parent: 1
+ - uid: 32355
+ components:
+ - type: Transform
+ pos: 80.5,130.5
+ parent: 1
+ - uid: 32986
+ components:
+ - type: Transform
+ pos: 64.5,147.5
+ parent: 1
+ - uid: 32987
+ components:
+ - type: Transform
+ pos: 65.5,151.5
+ parent: 1
+ - uid: 34288
+ components:
+ - type: Transform
+ pos: 65.5,152.5
+ parent: 1
+ - uid: 34297
+ components:
+ - type: Transform
+ pos: 63.5,143.5
+ parent: 1
+ - uid: 34305
+ components:
+ - type: Transform
+ pos: 63.5,144.5
+ parent: 1
+ - uid: 34328
+ components:
+ - type: Transform
+ pos: 64.5,148.5
+ parent: 1
+ - uid: 34920
+ components:
+ - type: Transform
+ pos: 63.5,135.5
+ parent: 1
+ - uid: 35069
+ components:
+ - type: Transform
+ pos: 63.5,136.5
+ parent: 1
+ - uid: 35940
+ components:
+ - type: Transform
+ pos: 63.5,134.5
+ parent: 1
+ - uid: 36790
+ components:
+ - type: Transform
+ pos: 81.5,129.5
+ parent: 1
+ - uid: 36791
+ components:
+ - type: Transform
+ pos: 81.5,130.5
+ parent: 1
+ - uid: 36792
+ components:
+ - type: Transform
+ pos: 81.5,131.5
+ parent: 1
+ - uid: 36793
+ components:
+ - type: Transform
+ pos: 81.5,132.5
+ parent: 1
+ - uid: 36794
+ components:
+ - type: Transform
+ pos: 81.5,133.5
+ parent: 1
+ - uid: 36795
+ components:
+ - type: Transform
+ pos: 82.5,130.5
+ parent: 1
+ - uid: 36796
+ components:
+ - type: Transform
+ pos: 82.5,131.5
+ parent: 1
+ - uid: 36797
+ components:
+ - type: Transform
+ pos: 82.5,129.5
+ parent: 1
+ - uid: 36798
+ components:
+ - type: Transform
+ pos: 82.5,132.5
+ parent: 1
+ - uid: 36799
+ components:
+ - type: Transform
+ pos: 82.5,133.5
+ parent: 1
+ - uid: 36800
+ components:
+ - type: Transform
+ pos: 83.5,129.5
+ parent: 1
+ - uid: 36801
+ components:
+ - type: Transform
+ pos: 83.5,130.5
+ parent: 1
+ - uid: 36802
+ components:
+ - type: Transform
+ pos: 83.5,131.5
+ parent: 1
+ - uid: 36803
+ components:
+ - type: Transform
+ pos: 83.5,132.5
+ parent: 1
+ - uid: 36804
+ components:
+ - type: Transform
+ pos: 83.5,133.5
+ parent: 1
+ - uid: 36805
+ components:
+ - type: Transform
+ pos: 84.5,130.5
+ parent: 1
+ - uid: 36807
+ components:
+ - type: Transform
+ pos: 84.5,132.5
+ parent: 1
+- proto: AtmosFixFreezerMarker
+ entities:
+ - uid: 25673
+ components:
+ - type: Transform
+ pos: 119.5,94.5
+ parent: 1
+ - uid: 26421
+ components:
+ - type: Transform
+ pos: 119.5,92.5
+ parent: 1
+ - uid: 26423
+ components:
+ - type: Transform
+ pos: 119.5,93.5
+ parent: 1
+ - uid: 26424
+ components:
+ - type: Transform
+ pos: 119.5,91.5
+ parent: 1
+ - uid: 26425
+ components:
+ - type: Transform
+ pos: 119.5,90.5
+ parent: 1
+ - uid: 26426
+ components:
+ - type: Transform
+ pos: 118.5,94.5
+ parent: 1
+ - uid: 26427
+ components:
+ - type: Transform
+ pos: 118.5,93.5
+ parent: 1
+ - uid: 26428
+ components:
+ - type: Transform
+ pos: 118.5,92.5
+ parent: 1
+ - uid: 26429
+ components:
+ - type: Transform
+ pos: 118.5,91.5
+ parent: 1
+ - uid: 26430
+ components:
+ - type: Transform
+ pos: 118.5,90.5
+ parent: 1
+ - uid: 26431
+ components:
+ - type: Transform
+ pos: 117.5,94.5
+ parent: 1
+ - uid: 26432
+ components:
+ - type: Transform
+ pos: 117.5,92.5
+ parent: 1
+ - uid: 26433
+ components:
+ - type: Transform
+ pos: 117.5,91.5
+ parent: 1
+ - uid: 26434
+ components:
+ - type: Transform
+ pos: 117.5,90.5
+ parent: 1
+ - uid: 26435
+ components:
+ - type: Transform
+ pos: 117.5,93.5
+ parent: 1
+ - uid: 26436
+ components:
+ - type: Transform
+ pos: 116.5,93.5
+ parent: 1
+ - uid: 26437
+ components:
+ - type: Transform
+ pos: 116.5,92.5
+ parent: 1
+ - uid: 26438
+ components:
+ - type: Transform
+ pos: 116.5,91.5
+ parent: 1
+ - uid: 26439
+ components:
+ - type: Transform
+ pos: 116.5,90.5
+ parent: 1
+ - uid: 26440
+ components:
+ - type: Transform
+ pos: 115.5,94.5
+ parent: 1
+ - uid: 26441
+ components:
+ - type: Transform
+ pos: 116.5,94.5
+ parent: 1
+ - uid: 26442
+ components:
+ - type: Transform
+ pos: 115.5,93.5
+ parent: 1
+ - uid: 26443
+ components:
+ - type: Transform
+ pos: 115.5,92.5
+ parent: 1
+ - uid: 26444
+ components:
+ - type: Transform
+ pos: 115.5,91.5
+ parent: 1
+ - uid: 26445
+ components:
+ - type: Transform
+ pos: 115.5,90.5
+ parent: 1
+- proto: AtmosFixNitrogenMarker
+ entities:
+ - uid: 5679
+ components:
+ - type: Transform
+ pos: 66.5,130.5
+ parent: 1
+ - uid: 5884
+ components:
+ - type: Transform
+ pos: 66.5,131.5
+ parent: 1
+ - uid: 7252
+ components:
+ - type: Transform
+ pos: 66.5,132.5
+ parent: 1
+ - uid: 7263
+ components:
+ - type: Transform
+ pos: 65.5,130.5
+ parent: 1
+ - uid: 7264
+ components:
+ - type: Transform
+ pos: 65.5,131.5
+ parent: 1
+ - uid: 7265
+ components:
+ - type: Transform
+ pos: 65.5,132.5
+ parent: 1
+ - uid: 23446
+ components:
+ - type: Transform
+ pos: 64.5,132.5
+ parent: 1
+ - uid: 30596
+ components:
+ - type: Transform
+ pos: 64.5,131.5
+ parent: 1
+ - uid: 30808
+ components:
+ - type: Transform
+ pos: 64.5,130.5
+ parent: 1
+- proto: AtmosFixOxygenMarker
+ entities:
+ - uid: 5708
+ components:
+ - type: Transform
+ pos: 66.5,127.5
+ parent: 1
+ - uid: 5781
+ components:
+ - type: Transform
+ pos: 67.5,126.5
+ parent: 1
+ - uid: 5885
+ components:
+ - type: Transform
+ pos: 67.5,127.5
+ parent: 1
+ - uid: 5957
+ components:
+ - type: Transform
+ pos: 66.5,128.5
+ parent: 1
+ - uid: 5972
+ components:
+ - type: Transform
+ pos: 67.5,128.5
+ parent: 1
+ - uid: 6015
+ components:
+ - type: Transform
+ pos: 66.5,126.5
+ parent: 1
+ - uid: 30809
+ components:
+ - type: Transform
+ pos: 65.5,126.5
+ parent: 1
+ - uid: 34921
+ components:
+ - type: Transform
+ pos: 65.5,128.5
+ parent: 1
+ - uid: 35070
+ components:
+ - type: Transform
+ pos: 65.5,127.5
+ parent: 1
+- proto: AtmosFixPlasmaMarker
+ entities:
+ - uid: 5803
+ components:
+ - type: Transform
+ pos: 63.5,139.5
+ parent: 1
+ - uid: 6020
+ components:
+ - type: Transform
+ pos: 63.5,140.5
+ parent: 1
+ - uid: 6079
+ components:
+ - type: Transform
+ pos: 64.5,139.5
+ parent: 1
+ - uid: 6080
+ components:
+ - type: Transform
+ pos: 64.5,140.5
+ parent: 1
+ - uid: 6081
+ components:
+ - type: Transform
+ pos: 64.5,138.5
+ parent: 1
+ - uid: 6083
+ components:
+ - type: Transform
+ pos: 63.5,138.5
+ parent: 1
+ - uid: 34334
+ components:
+ - type: Transform
+ pos: 62.5,140.5
+ parent: 1
+ - uid: 34409
+ components:
+ - type: Transform
+ pos: 62.5,139.5
+ parent: 1
+ - uid: 35905
+ components:
+ - type: Transform
+ pos: 62.5,138.5
+ parent: 1
+- proto: Autolathe
+ entities:
+ - uid: 12475
+ components:
+ - type: Transform
+ pos: 140.5,101.5
+ parent: 1
+ - uid: 16052
+ components:
+ - type: Transform
+ pos: 125.5,134.5
+ parent: 1
+ - uid: 20405
+ components:
+ - type: Transform
+ pos: 48.5,86.5
+ parent: 1
+ - uid: 27974
+ components:
+ - type: Transform
+ pos: 122.5,121.5
+ parent: 1
+- proto: BananaPhoneInstrument
+ entities:
+ - uid: 26775
+ components:
+ - type: Transform
+ pos: 106.76346,56.43621
+ parent: 1
+- proto: BannerCargo
+ entities:
+ - uid: 19353
+ components:
+ - type: Transform
+ pos: 136.5,107.5
+ parent: 1
+ - uid: 19354
+ components:
+ - type: Transform
+ pos: 135.5,98.5
+ parent: 1
+- proto: BannerEngineering
+ entities:
+ - uid: 15006
+ components:
+ - type: Transform
+ pos: 113.5,125.5
+ parent: 1
+ - uid: 15007
+ components:
+ - type: Transform
+ pos: 103.5,125.5
+ parent: 1
+- proto: BannerMedical
+ entities:
+ - uid: 17743
+ components:
+ - type: Transform
+ pos: 83.5,106.5
+ parent: 1
+ - uid: 17744
+ components:
+ - type: Transform
+ pos: 65.5,106.5
+ parent: 1
+- proto: BannerSecurity
+ entities:
+ - uid: 23131
+ components:
+ - type: Transform
+ pos: 143.5,58.5
+ parent: 1
+- proto: BarberScissors
+ entities:
+ - uid: 33458
+ components:
+ - type: Transform
+ pos: 89.5,28.5
+ parent: 1
+- proto: Barricade
+ entities:
+ - uid: 11333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,26.5
+ parent: 1
+ - uid: 33161
+ components:
+ - type: Transform
+ pos: 121.5,32.5
+ parent: 1
+ - uid: 33494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,21.5
+ parent: 1
+ - uid: 33495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,22.5
+ parent: 1
+ - uid: 33496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,21.5
+ parent: 1
+ - uid: 33730
+ components:
+ - type: Transform
+ pos: 86.5,20.5
+ parent: 1
+ - uid: 37022
+ components:
+ - type: Transform
+ pos: 98.5,166.5
+ parent: 1
+- proto: BarricadeBlock
+ entities:
+ - uid: 453
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - uid: 5824
+ components:
+ - type: Transform
+ pos: 37.5,112.5
+ parent: 1
+ - uid: 33482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,24.5
+ parent: 1
+ - uid: 33483
+ components:
+ - type: Transform
+ pos: 91.5,29.5
+ parent: 1
+ - uid: 33551
+ components:
+ - type: Transform
+ pos: 97.5,27.5
+ parent: 1
+ - uid: 33729
+ components:
+ - type: Transform
+ pos: 86.5,18.5
+ parent: 1
+ - uid: 35341
+ components:
+ - type: Transform
+ pos: 75.5,157.5
+ parent: 1
+ - uid: 35342
+ components:
+ - type: Transform
+ pos: 84.5,158.5
+ parent: 1
+ - uid: 35660
+ components:
+ - type: Transform
+ pos: 55.5,146.5
+ parent: 1
+ - uid: 36310
+ components:
+ - type: Transform
+ pos: 58.5,135.5
+ parent: 1
+ - uid: 36587
+ components:
+ - type: Transform
+ pos: 110.5,166.5
+ parent: 1
+- proto: BarSign
+ entities:
+ - uid: 8162
+ components:
+ - type: Transform
+ pos: 119.5,172.5
+ parent: 1
+ - uid: 13796
+ components:
+ - type: Transform
+ pos: 108.5,116.5
+ parent: 1
+- proto: BarSignComboCafe
+ entities:
+ - uid: 6567
+ components:
+ - type: Transform
+ pos: 142.5,146.5
+ parent: 1
+- proto: BeachBall
+ entities:
+ - uid: 27403
+ components:
+ - type: Transform
+ pos: 118.255745,82.44549
+ parent: 1
+- proto: Beaker
+ entities:
+ - uid: 23042
+ components:
+ - type: Transform
+ pos: 128.6419,50.416183
+ parent: 1
+ - uid: 26351
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 93.942,104.71045
+ parent: 1
+ - uid: 27383
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 121.31486,98.78589
+ parent: 1
+- proto: Bed
+ entities:
+ - uid: 1095
+ components:
+ - type: Transform
+ pos: 40.5,66.5
+ parent: 1
+ - uid: 2794
+ components:
+ - type: Transform
+ pos: 71.5,92.5
+ parent: 1
+ - uid: 3165
+ components:
+ - type: Transform
+ pos: 78.5,92.5
+ parent: 1
+ - uid: 5316
+ components:
+ - type: Transform
+ pos: 116.5,47.5
+ parent: 1
+ - uid: 13661
+ components:
+ - type: Transform
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 16146
+ components:
+ - type: Transform
+ pos: 131.5,146.5
+ parent: 1
+ - uid: 16433
+ components:
+ - type: Transform
+ pos: 114.5,60.5
+ parent: 1
+ - uid: 18096
+ components:
+ - type: Transform
+ pos: 93.5,90.5
+ parent: 1
+ - uid: 19383
+ components:
+ - type: Transform
+ pos: 144.5,110.5
+ parent: 1
+ - uid: 20878
+ components:
+ - type: Transform
+ pos: 33.5,103.5
+ parent: 1
+ - uid: 22810
+ components:
+ - type: Transform
+ pos: 122.5,65.5
+ parent: 1
+ - uid: 22811
+ components:
+ - type: Transform
+ pos: 122.5,68.5
+ parent: 1
+ - uid: 22812
+ components:
+ - type: Transform
+ pos: 122.5,71.5
+ parent: 1
+ - uid: 22813
+ components:
+ - type: Transform
+ pos: 122.5,74.5
+ parent: 1
+ - uid: 22814
+ components:
+ - type: Transform
+ pos: 136.5,46.5
+ parent: 1
+ - uid: 22815
+ components:
+ - type: Transform
+ pos: 136.5,49.5
+ parent: 1
+ - uid: 22816
+ components:
+ - type: Transform
+ pos: 136.5,52.5
+ parent: 1
+ - uid: 22826
+ components:
+ - type: Transform
+ pos: 143.5,60.5
+ parent: 1
+ - uid: 22993
+ components:
+ - type: Transform
+ pos: 136.5,43.5
+ parent: 1
+ - uid: 26756
+ components:
+ - type: Transform
+ pos: 108.5,59.5
+ parent: 1
+ - uid: 26757
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+ - uid: 26936
+ components:
+ - type: Transform
+ pos: 68.5,70.5
+ parent: 1
+ - uid: 27308
+ components:
+ - type: Transform
+ pos: 76.5,47.5
+ parent: 1
+ - uid: 28656
+ components:
+ - type: Transform
+ pos: 113.5,49.5
+ parent: 1
+ - uid: 29764
+ components:
+ - type: Transform
+ pos: 159.5,134.5
+ parent: 1
+ - uid: 29765
+ components:
+ - type: Transform
+ pos: 156.5,134.5
+ parent: 1
+ - uid: 29766
+ components:
+ - type: Transform
+ pos: 153.5,134.5
+ parent: 1
+ - uid: 29767
+ components:
+ - type: Transform
+ pos: 152.5,142.5
+ parent: 1
+ - uid: 29768
+ components:
+ - type: Transform
+ pos: 155.5,142.5
+ parent: 1
+ - uid: 29769
+ components:
+ - type: Transform
+ pos: 158.5,142.5
+ parent: 1
+- proto: BedsheetBlack
+ entities:
+ - uid: 22817
+ components:
+ - type: Transform
+ pos: 136.5,46.5
+ parent: 1
+- proto: BedsheetBlue
+ entities:
+ - uid: 22823
+ components:
+ - type: Transform
+ pos: 122.5,65.5
+ parent: 1
+ - uid: 29758
+ components:
+ - type: Transform
+ pos: 153.5,134.5
+ parent: 1
+ - uid: 37189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 166.5,137.5
+ parent: 1
+- proto: BedsheetBrown
+ entities:
+ - uid: 26937
+ components:
+ - type: Transform
+ pos: 68.5,70.5
+ parent: 1
+- proto: BedsheetCaptain
+ entities:
+ - uid: 13654
+ components:
+ - type: Transform
+ pos: 40.5,66.5
+ parent: 1
+- proto: BedsheetCE
+ entities:
+ - uid: 16147
+ components:
+ - type: Transform
+ pos: 131.5,146.5
+ parent: 1
+- proto: BedsheetClown
+ entities:
+ - uid: 26758
+ components:
+ - type: Transform
+ pos: 108.5,59.5
+ parent: 1
+- proto: BedsheetCMO
+ entities:
+ - uid: 18099
+ components:
+ - type: Transform
+ pos: 93.5,90.5
+ parent: 1
+- proto: BedsheetGreen
+ entities:
+ - uid: 22820
+ components:
+ - type: Transform
+ pos: 122.5,74.5
+ parent: 1
+ - uid: 27309
+ components:
+ - type: Transform
+ pos: 76.5,47.5
+ parent: 1
+ - uid: 29761
+ components:
+ - type: Transform
+ pos: 158.5,142.5
+ parent: 1
+ - uid: 37190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 169.5,133.5
+ parent: 1
+- proto: BedsheetGrey
+ entities:
+ - uid: 22819
+ components:
+ - type: Transform
+ pos: 136.5,49.5
+ parent: 1
+- proto: BedsheetHOP
+ entities:
+ - uid: 13662
+ components:
+ - type: Transform
+ pos: 56.5,49.5
+ parent: 1
+- proto: BedsheetHOS
+ entities:
+ - uid: 22827
+ components:
+ - type: Transform
+ pos: 143.5,60.5
+ parent: 1
+- proto: BedsheetMedical
+ entities:
+ - uid: 17654
+ components:
+ - type: Transform
+ pos: 72.5,94.5
+ parent: 1
+ - uid: 17655
+ components:
+ - type: Transform
+ pos: 70.5,100.5
+ parent: 1
+ - uid: 17656
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 1
+ - uid: 17657
+ components:
+ - type: Transform
+ pos: 79.5,94.5
+ parent: 1
+ - uid: 17661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,100.5
+ parent: 1
+ - uid: 17663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,94.5
+ parent: 1
+ - uid: 28246
+ components:
+ - type: Transform
+ pos: 78.5,92.5
+ parent: 1
+ - uid: 28249
+ components:
+ - type: Transform
+ pos: 71.5,92.5
+ parent: 1
+ - uid: 28723
+ components:
+ - type: Transform
+ pos: 116.5,47.5
+ parent: 1
+ - uid: 28724
+ components:
+ - type: Transform
+ pos: 113.5,49.5
+ parent: 1
+- proto: BedsheetMime
+ entities:
+ - uid: 26754
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+- proto: BedsheetOrange
+ entities:
+ - uid: 29762
+ components:
+ - type: Transform
+ pos: 155.5,142.5
+ parent: 1
+- proto: BedsheetPurple
+ entities:
+ - uid: 22822
+ components:
+ - type: Transform
+ pos: 122.5,68.5
+ parent: 1
+ - uid: 29763
+ components:
+ - type: Transform
+ pos: 152.5,142.5
+ parent: 1
+- proto: BedsheetQM
+ entities:
+ - uid: 19379
+ components:
+ - type: Transform
+ pos: 144.5,110.5
+ parent: 1
+- proto: BedsheetRD
+ entities:
+ - uid: 20879
+ components:
+ - type: Transform
+ pos: 33.5,103.5
+ parent: 1
+- proto: BedsheetRed
+ entities:
+ - uid: 29759
+ components:
+ - type: Transform
+ pos: 156.5,134.5
+ parent: 1
+- proto: BedsheetSpawner
+ entities:
+ - uid: 16846
+ components:
+ - type: Transform
+ pos: 114.5,60.5
+ parent: 1
+- proto: BedsheetSyndie
+ entities:
+ - uid: 22990
+ components:
+ - type: Transform
+ pos: 136.5,43.5
+ parent: 1
+- proto: BedsheetWhite
+ entities:
+ - uid: 22818
+ components:
+ - type: Transform
+ pos: 136.5,52.5
+ parent: 1
+ - uid: 29760
+ components:
+ - type: Transform
+ pos: 159.5,134.5
+ parent: 1
+- proto: BedsheetYellow
+ entities:
+ - uid: 22821
+ components:
+ - type: Transform
+ pos: 122.5,71.5
+ parent: 1
+- proto: BigBox
+ entities:
+ - uid: 3401
+ components:
+ - type: Transform
+ pos: 87.5,88.5
+ parent: 1
+- proto: BikeHorn
+ entities:
+ - uid: 26776
+ components:
+ - type: Transform
+ pos: 108.35666,59.403328
+ parent: 1
+- proto: Biogenerator
+ entities:
+ - uid: 23013
+ components:
+ - type: Transform
+ pos: 129.5,46.5
+ parent: 1
+ - uid: 27379
+ components:
+ - type: Transform
+ pos: 101.5,102.5
+ parent: 1
+- proto: BlankFlag
+ entities:
+ - uid: 27726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,42.5
+ parent: 1
+- proto: BlastDoor
+ entities:
+ - uid: 4387
+ components:
+ - type: Transform
+ pos: 80.5,120.5
+ parent: 1
+ - uid: 15029
+ components:
+ - type: Transform
+ pos: 98.5,153.5
+ parent: 1
+ - uid: 15030
+ components:
+ - type: Transform
+ pos: 99.5,153.5
+ parent: 1
+ - uid: 15031
+ components:
+ - type: Transform
+ pos: 100.5,153.5
+ parent: 1
+ - uid: 15032
+ components:
+ - type: Transform
+ pos: 101.5,153.5
+ parent: 1
+ - uid: 15967
+ components:
+ - type: Transform
+ pos: 83.5,120.5
+ parent: 1
+ - uid: 15969
+ components:
+ - type: Transform
+ pos: 84.5,120.5
+ parent: 1
+ - uid: 15978
+ components:
+ - type: Transform
+ pos: 82.5,120.5
+ parent: 1
+ - uid: 15979
+ components:
+ - type: Transform
+ pos: 81.5,120.5
+ parent: 1
+ - uid: 19529
+ components:
+ - type: Transform
+ pos: 158.5,106.5
+ parent: 1
+ - uid: 19532
+ components:
+ - type: Transform
+ pos: 158.5,110.5
+ parent: 1
+ - uid: 19533
+ components:
+ - type: Transform
+ pos: 163.5,110.5
+ parent: 1
+ - uid: 19534
+ components:
+ - type: Transform
+ pos: 163.5,106.5
+ parent: 1
+ - uid: 19666
+ components:
+ - type: Transform
+ pos: 30.5,86.5
+ parent: 1
+ - uid: 19667
+ components:
+ - type: Transform
+ pos: 30.5,87.5
+ parent: 1
+ - uid: 19668
+ components:
+ - type: Transform
+ pos: 30.5,88.5
+ parent: 1
+ - uid: 19669
+ components:
+ - type: Transform
+ pos: 30.5,89.5
+ parent: 1
+ - uid: 19670
+ components:
+ - type: Transform
+ pos: 30.5,91.5
+ parent: 1
+ - uid: 19671
+ components:
+ - type: Transform
+ pos: 30.5,93.5
+ parent: 1
+ - uid: 19672
+ components:
+ - type: Transform
+ pos: 30.5,94.5
+ parent: 1
+ - uid: 19673
+ components:
+ - type: Transform
+ pos: 30.5,92.5
+ parent: 1
+ - uid: 34326
+ components:
+ - type: Transform
+ pos: 160.5,82.5
+ parent: 1
+ - uid: 34327
+ components:
+ - type: Transform
+ pos: 160.5,84.5
+ parent: 1
+- proto: BlastDoorBridge
+ entities:
+ - uid: 1418
+ components:
+ - type: Transform
+ pos: 132.5,58.5
+ parent: 1
+ - uid: 1509
+ components:
+ - type: Transform
+ pos: 132.5,59.5
+ parent: 1
+ - uid: 1510
+ components:
+ - type: Transform
+ pos: 132.5,60.5
+ parent: 1
+ - uid: 23360
+ components:
+ - type: MetaData
+ name: emergency containment access blast door
+ - type: Transform
+ pos: 102.5,146.5
+ parent: 1
+- proto: BlastDoorBridgeOpen
+ entities:
+ - uid: 1420
+ components:
+ - type: Transform
+ pos: 50.5,74.5
+ parent: 1
+ - uid: 37366
+ components:
+ - type: Transform
+ pos: 131.5,61.5
+ parent: 1
+- proto: BlastDoorEngineering
+ entities:
+ - uid: 23097
+ components:
+ - type: MetaData
+ name: emergency blast door
+ - type: Transform
+ pos: 69.5,124.5
+ parent: 1
+- proto: BlastDoorOpen
+ entities:
+ - uid: 1820
+ components:
+ - type: Transform
+ pos: 80.5,130.5
+ parent: 1
+ - uid: 3358
+ components:
+ - type: Transform
+ pos: 80.5,131.5
+ parent: 1
+ - uid: 3642
+ components:
+ - type: Transform
+ pos: 84.5,131.5
+ parent: 1
+ - uid: 3878
+ components:
+ - type: Transform
+ pos: 84.5,132.5
+ parent: 1
+ - uid: 15764
+ components:
+ - type: Transform
+ pos: 84.5,130.5
+ parent: 1
+ - uid: 30218
+ components:
+ - type: Transform
+ pos: 80.5,132.5
+ parent: 1
+- proto: BlockGameArcade
+ entities:
+ - uid: 4216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,110.5
+ parent: 1
+ - uid: 4341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,111.5
+ parent: 1
+ - uid: 4383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,112.5
+ parent: 1
+ - uid: 4403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,112.5
+ parent: 1
+- proto: Bloodpack
+ entities:
+ - uid: 17679
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 74.01784,97.61638
+ parent: 1
+- proto: Blunt
+ entities:
+ - uid: 37152
+ components:
+ - type: Transform
+ pos: 167.87863,135.80937
+ parent: 1
+- proto: BodyBag
+ entities:
+ - uid: 33532
+ components:
+ - type: Transform
+ pos: 92.499886,22.935501
+ parent: 1
+ - uid: 33627
+ components:
+ - type: Transform
+ pos: 119.86151,29.864613
+ parent: 1
+- proto: BodyBagFolded
+ entities:
+ - uid: 17690
+ components:
+ - type: Transform
+ pos: 75.854324,97.67393
+ parent: 1
+ - uid: 26991
+ components:
+ - type: Transform
+ pos: 61.51531,75.246796
+ parent: 1
+ - uid: 28658
+ components:
+ - type: Transform
+ pos: 120.509995,48.82377
+ parent: 1
+- proto: BookAtmosAirAlarms
+ entities:
+ - uid: 27305
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookAtmosDistro
+ entities:
+ - uid: 27304
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookAtmosVentsMore
+ entities:
+ - uid: 27303
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookAtmosWaste
+ entities:
+ - uid: 27302
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookBartendersManual
+ entities:
+ - uid: 26540
+ components:
+ - type: Transform
+ rot: -100.53096491487331 rad
+ pos: 104.53802,107.54664
+ parent: 1
+ - uid: 27295
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookChemicalCompendium
+ entities:
+ - uid: 27291
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookEngineersHandbook
+ entities:
+ - uid: 27290
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookHowToCookForFortySpaceman
+ entities:
+ - uid: 27289
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookHowToKeepStationClean
+ entities:
+ - uid: 27297
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookHowToRockAndStone
+ entities:
+ - uid: 27298
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookHowToSurvive
+ entities:
+ - uid: 27300
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookJanitorTale
+ entities:
+ - uid: 34569
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 153.42917,130.58275
+ parent: 1
+- proto: BookLeafLoversSecret
+ entities:
+ - uid: 27301
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookMedicalReferenceBook
+ entities:
+ - uid: 23683
+ components:
+ - type: Transform
+ pos: 84.5,92.5
+ parent: 1
+ - uid: 27299
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookNames
+ entities:
+ - uid: 34565
+ components:
+ - type: Transform
+ pos: 161.5,74.5
+ parent: 1
+ - uid: 34567
+ components:
+ - type: Transform
+ pos: 158.5,68.5
+ parent: 1
+- proto: BookNarsieLegend
+ entities:
+ - uid: 27926
+ components:
+ - type: Transform
+ pos: 66.5,70.5
+ parent: 1
+- proto: BooksBag
+ entities:
+ - uid: 27307
+ components:
+ - type: Transform
+ pos: 80.522736,49.414192
+ parent: 1
+- proto: BookScientistsGuidebook
+ entities:
+ - uid: 27294
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookSecurity
+ entities:
+ - uid: 27293
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: Bookshelf
+ entities:
+ - uid: 27287
+ components:
+ - type: Transform
+ pos: 78.5,47.5
+ parent: 1
+ - type: Storage
+ storedItems:
+ 27288:
+ position: 0,0
+ _rotation: South
+ 27289:
+ position: 1,0
+ _rotation: South
+ 27290:
+ position: 2,0
+ _rotation: South
+ 27291:
+ position: 3,0
+ _rotation: South
+ 27292:
+ position: 4,0
+ _rotation: South
+ 27293:
+ position: 5,0
+ _rotation: South
+ 27294:
+ position: 6,0
+ _rotation: South
+ 27295:
+ position: 7,0
+ _rotation: South
+ 27296:
+ position: 8,0
+ _rotation: South
+ 27297:
+ position: 9,0
+ _rotation: South
+ 27298:
+ position: 10,0
+ _rotation: South
+ 27299:
+ position: 11,0
+ _rotation: South
+ 27300:
+ position: 12,0
+ _rotation: South
+ 27301:
+ position: 13,0
+ _rotation: South
+ 27302:
+ position: 14,0
+ _rotation: South
+ 27303:
+ position: 15,0
+ _rotation: South
+ 27304:
+ position: 0,2
+ _rotation: South
+ 27305:
+ position: 1,2
+ _rotation: South
+ - type: ContainerContainer
+ containers:
+ storagebase: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27288
+ - 27289
+ - 27290
+ - 27291
+ - 27292
+ - 27293
+ - 27294
+ - 27295
+ - 27296
+ - 27297
+ - 27298
+ - 27299
+ - 27300
+ - 27301
+ - 27302
+ - 27303
+ - 27304
+ - 27305
+- proto: BookshelfFilled
+ entities:
+ - uid: 262
+ components:
+ - type: Transform
+ pos: 58.5,120.5
+ parent: 1
+ - uid: 783
+ components:
+ - type: Transform
+ pos: 74.5,61.5
+ parent: 1
+ - uid: 859
+ components:
+ - type: Transform
+ pos: 40.5,76.5
+ parent: 1
+ - uid: 1194
+ components:
+ - type: Transform
+ pos: 32.5,70.5
+ parent: 1
+ - uid: 2357
+ components:
+ - type: Transform
+ pos: 72.5,54.5
+ parent: 1
+ - uid: 6412
+ components:
+ - type: Transform
+ pos: 135.5,44.5
+ parent: 1
+ - uid: 6477
+ components:
+ - type: Transform
+ pos: 80.5,51.5
+ parent: 1
+ - uid: 7578
+ components:
+ - type: Transform
+ pos: 72.5,55.5
+ parent: 1
+ - uid: 7579
+ components:
+ - type: Transform
+ pos: 72.5,57.5
+ parent: 1
+ - uid: 7581
+ components:
+ - type: Transform
+ pos: 72.5,59.5
+ parent: 1
+ - uid: 7583
+ components:
+ - type: Transform
+ pos: 72.5,53.5
+ parent: 1
+ - uid: 23394
+ components:
+ - type: Transform
+ pos: 80.5,54.5
+ parent: 1
+ - uid: 23416
+ components:
+ - type: Transform
+ pos: 75.5,54.5
+ parent: 1
+ - uid: 23819
+ components:
+ - type: Transform
+ pos: 72.5,61.5
+ parent: 1
+ - uid: 24296
+ components:
+ - type: Transform
+ pos: 72.5,58.5
+ parent: 1
+ - uid: 24762
+ components:
+ - type: Transform
+ pos: 70.5,51.5
+ parent: 1
+ - uid: 25310
+ components:
+ - type: Transform
+ pos: 74.5,52.5
+ parent: 1
+ - uid: 25613
+ components:
+ - type: Transform
+ pos: 110.5,101.5
+ parent: 1
+ - uid: 26534
+ components:
+ - type: Transform
+ pos: 109.5,101.5
+ parent: 1
+ - uid: 26930
+ components:
+ - type: Transform
+ pos: 70.5,67.5
+ parent: 1
+ - uid: 26931
+ components:
+ - type: Transform
+ pos: 68.5,67.5
+ parent: 1
+ - uid: 26932
+ components:
+ - type: Transform
+ pos: 69.5,67.5
+ parent: 1
+ - uid: 26942
+ components:
+ - type: Transform
+ pos: 85.5,70.5
+ parent: 1
+ - uid: 26945
+ components:
+ - type: Transform
+ pos: 85.5,78.5
+ parent: 1
+ - uid: 26958
+ components:
+ - type: Transform
+ pos: 86.5,78.5
+ parent: 1
+ - uid: 26964
+ components:
+ - type: Transform
+ pos: 86.5,70.5
+ parent: 1
+ - uid: 27109
+ components:
+ - type: Transform
+ pos: 73.5,61.5
+ parent: 1
+ - uid: 27110
+ components:
+ - type: Transform
+ pos: 80.5,61.5
+ parent: 1
+ - uid: 27599
+ components:
+ - type: Transform
+ pos: 71.5,51.5
+ parent: 1
+ - uid: 34545
+ components:
+ - type: Transform
+ pos: 158.5,76.5
+ parent: 1
+ - uid: 34546
+ components:
+ - type: Transform
+ pos: 161.5,76.5
+ parent: 1
+ - uid: 34547
+ components:
+ - type: Transform
+ pos: 161.5,73.5
+ parent: 1
+ - uid: 34548
+ components:
+ - type: Transform
+ pos: 158.5,73.5
+ parent: 1
+ - uid: 34549
+ components:
+ - type: Transform
+ pos: 160.5,73.5
+ parent: 1
+ - uid: 34550
+ components:
+ - type: Transform
+ pos: 158.5,71.5
+ parent: 1
+ - uid: 34551
+ components:
+ - type: Transform
+ pos: 159.5,71.5
+ parent: 1
+ - uid: 34552
+ components:
+ - type: Transform
+ pos: 160.5,71.5
+ parent: 1
+ - uid: 34553
+ components:
+ - type: Transform
+ pos: 161.5,71.5
+ parent: 1
+ - uid: 34554
+ components:
+ - type: Transform
+ pos: 161.5,70.5
+ parent: 1
+ - uid: 34555
+ components:
+ - type: Transform
+ pos: 161.5,69.5
+ parent: 1
+ - uid: 34556
+ components:
+ - type: Transform
+ pos: 161.5,68.5
+ parent: 1
+ - uid: 35213
+ components:
+ - type: Transform
+ pos: 74.5,53.5
+ parent: 1
+ - uid: 35419
+ components:
+ - type: Transform
+ pos: 75.5,53.5
+ parent: 1
+ - uid: 35425
+ components:
+ - type: Transform
+ pos: 79.5,54.5
+ parent: 1
+- proto: BookSpaceEncyclopedia
+ entities:
+ - uid: 27296
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BookSpaceLaw
+ entities:
+ - uid: 3404
+ components:
+ - type: Transform
+ pos: 155.5,49.5
+ parent: 1
+ - uid: 23057
+ components:
+ - type: Transform
+ pos: 135.49847,45.54976
+ parent: 1
+ - uid: 27292
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+ - uid: 33870
+ components:
+ - type: Transform
+ pos: 104.57031,41.499874
+ parent: 1
+ - uid: 35619
+ components:
+ - type: Transform
+ pos: 63.538307,159.75052
+ parent: 1
+- proto: BookTemple
+ entities:
+ - uid: 34568
+ components:
+ - type: Transform
+ pos: 83.5,75.5
+ parent: 1
+- proto: BookTheBookOfControl
+ entities:
+ - uid: 27288
+ components:
+ - type: Transform
+ parent: 27287
+ - type: Physics
+ canCollide: False
+- proto: BoozeDispenser
+ entities:
+ - uid: 2959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,106.5
+ parent: 1
+ - uid: 32102
+ components:
+ - type: Transform
+ pos: 107.5,108.5
+ parent: 1
+- proto: BoozeDispenserEmpty
+ entities:
+ - uid: 35140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,169.5
+ parent: 1
+- proto: BorgCharger
+ entities:
+ - uid: 4928
+ components:
+ - type: Transform
+ pos: 54.5,116.5
+ parent: 1
+ - uid: 6136
+ components:
+ - type: Transform
+ pos: 48.5,35.5
+ parent: 1
+ - uid: 6137
+ components:
+ - type: Transform
+ pos: 46.5,35.5
+ parent: 1
+ - uid: 13543
+ components:
+ - type: Transform
+ pos: 44.5,18.5
+ parent: 1
+ - uid: 13544
+ components:
+ - type: Transform
+ pos: 44.5,30.5
+ parent: 1
+ - uid: 20896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,93.5
+ parent: 1
+ - uid: 20897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,94.5
+ parent: 1
+ - uid: 22740
+ components:
+ - type: Transform
+ pos: 124.5,83.5
+ parent: 1
+ - uid: 23938
+ components:
+ - type: Transform
+ pos: 42.5,44.5
+ parent: 1
+ - uid: 24718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,67.5
+ parent: 1
+- proto: BoxBeaker
+ entities:
+ - uid: 18057
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 88.592926,106.61727
+ parent: 1
+ - uid: 18058
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 89.50947,101.514656
+ parent: 1
+ - uid: 18212
+ components:
+ - type: Transform
+ pos: 65.58365,96.59052
+ parent: 1
+ - uid: 20473
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 35.060738,110.85934
+ parent: 1
+- proto: BoxBeanbag
+ entities:
+ - uid: 22781
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 135.69716,63.84542
+ parent: 1
+ - uid: 22788
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 135.31812,63.877724
+ parent: 1
+ - uid: 26644
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 110.34818,104.72892
+ parent: 1
+- proto: BoxBodyBag
+ entities:
+ - uid: 17974
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.523254,82.9161
+ parent: 1
+ - uid: 18094
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 65.53573,92.77651
+ parent: 1
+- proto: BoxCandle
+ entities:
+ - uid: 27062
+ components:
+ - type: Transform
+ pos: 72.56927,74.39125
+ parent: 1
+- proto: BoxFlashbang
+ entities:
+ - uid: 22803
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 135.31812,63.44717
+ parent: 1
+- proto: BoxFolderBase
+ entities:
+ - uid: 4524
+ components:
+ - type: Transform
+ pos: 101.40392,46.406807
+ parent: 1
+ - uid: 4532
+ components:
+ - type: Transform
+ pos: 101.54976,46.594307
+ parent: 1
+ - uid: 18935
+ components:
+ - type: Transform
+ pos: 106.90365,39.72788
+ parent: 1
+ - uid: 23099
+ components:
+ - type: Transform
+ pos: 101.664345,46.438057
+ parent: 1
+- proto: BoxFolderBlack
+ entities:
+ - uid: 4422
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 94.75453,42.530785
+ parent: 1
+- proto: BoxFolderBlue
+ entities:
+ - uid: 4412
+ components:
+ - type: Transform
+ pos: 91.56149,43.48955
+ parent: 1
+ - uid: 13642
+ components:
+ - type: Transform
+ pos: 32.5,56.5
+ parent: 1
+ - uid: 33545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.68781,22.167282
+ parent: 1
+- proto: BoxFolderClipboard
+ entities:
+ - uid: 4479
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 96.47501,41.751804
+ parent: 1
+ - uid: 4480
+ components:
+ - type: Transform
+ pos: 101.49985,43.48957
+ parent: 1
+ - uid: 4481
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 93.18654,48.61397
+ parent: 1
+ - uid: 4483
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 93.57811,48.393818
+ parent: 1
+ - uid: 4525
+ components:
+ - type: Transform
+ pos: 71.52162,61.557404
+ parent: 1
+ - uid: 13537
+ components:
+ - type: Transform
+ pos: 40.484188,58.718796
+ parent: 1
+ - uid: 13631
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 136.69763,90.41654
+ parent: 1
+ - uid: 13633
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 134.36858,92.19319
+ parent: 1
+ - uid: 18148
+ components:
+ - type: Transform
+ pos: 61.86632,110.61483
+ parent: 1
+ - uid: 18149
+ components:
+ - type: Transform
+ pos: 62.477432,110.510666
+ parent: 1
+ - uid: 19518
+ components:
+ - type: Transform
+ pos: 143.5,110.5
+ parent: 1
+ - uid: 19539
+ components:
+ - type: Transform
+ pos: 137.5,97.5
+ parent: 1
+ - uid: 21007
+ components:
+ - type: Transform
+ pos: 40.5824,91.72987
+ parent: 1
+ - uid: 21008
+ components:
+ - type: Transform
+ pos: 35.540737,89.58404
+ parent: 1
+ - uid: 21009
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 36.200592,113.804245
+ parent: 1
+ - uid: 21010
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 33.474518,114.85446
+ parent: 1
+ - uid: 23274
+ components:
+ - type: Transform
+ pos: 77.51595,54.507233
+ parent: 1
+ - uid: 23772
+ components:
+ - type: Transform
+ pos: 59.678555,57.596046
+ parent: 1
+ - uid: 27072
+ components:
+ - type: Transform
+ pos: 72.64537,75.59257
+ parent: 1
+ - uid: 33160
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 101.91225,19.403854
+ parent: 1
+ - uid: 35618
+ components:
+ - type: Transform
+ pos: 68.6225,160.56998
+ parent: 1
+- proto: BoxFolderGrey
+ entities:
+ - uid: 965
+ components:
+ - type: Transform
+ pos: 34.5,113.5
+ parent: 1
+- proto: BoxFolderRed
+ entities:
+ - uid: 4478
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 93.539665,41.662113
+ parent: 1
+ - uid: 13643
+ components:
+ - type: Transform
+ pos: 32.5,64.5
+ parent: 1
+ - uid: 23102
+ components:
+ - type: Transform
+ pos: 153.4666,63.480404
+ parent: 1
+- proto: BoxFolderYellow
+ entities:
+ - uid: 4420
+ components:
+ - type: Transform
+ pos: 98.50941,43.479153
+ parent: 1
+ - uid: 13641
+ components:
+ - type: Transform
+ pos: 36.56971,48.55757
+ parent: 1
+- proto: BoxHandcuff
+ entities:
+ - uid: 22721
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 153.83658,58.557808
+ parent: 1
+ - uid: 22806
+ components:
+ - type: Transform
+ pos: 135.56174,72.2539
+ parent: 1
+ - uid: 23138
+ components:
+ - type: Transform
+ pos: 142.50137,52.19984
+ parent: 1
+- proto: BoxInflatable
+ entities:
+ - uid: 4735
+ components:
+ - type: Transform
+ pos: 94.5,107.5
+ parent: 1
+- proto: BoxingBell
+ entities:
+ - uid: 26835
+ components:
+ - type: Transform
+ pos: 102.5,89.5
+ parent: 1
+- proto: BoxLatexGloves
+ entities:
+ - uid: 17700
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 65.4576,93.57337
+ parent: 1
+- proto: BoxLightbulb
+ entities:
+ - uid: 29649
+ components:
+ - type: Transform
+ pos: 159.48875,127.97202
+ parent: 1
+- proto: BoxLightMixed
+ entities:
+ - uid: 29650
+ components:
+ - type: Transform
+ rot: -119.380520836412 rad
+ pos: 159.55157,126.8925
+ parent: 1
+- proto: BoxLighttube
+ entities:
+ - uid: 29648
+ components:
+ - type: Transform
+ pos: 159.67625,127.97202
+ parent: 1
+- proto: BoxMouthSwab
+ entities:
+ - uid: 23067
+ components:
+ - type: Transform
+ pos: 128.44514,49.81559
+ parent: 1
+- proto: BoxPillCanister
+ entities:
+ - uid: 18059
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 87.43667,110.63811
+ parent: 1
+- proto: BoxShotgunPractice
+ entities:
+ - uid: 22697
+ components:
+ - type: Transform
+ pos: 152.47392,66.59027
+ parent: 1
+- proto: BoxSyringe
+ entities:
+ - uid: 17695
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 74.541824,97.56976
+ parent: 1
+- proto: BoxZiptie
+ entities:
+ - uid: 22722
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 155.5877,57.619534
+ parent: 1
+ - uid: 22758
+ components:
+ - type: Transform
+ pos: 135.43674,73.41015
+ parent: 1
+- proto: BriefcaseBrownFilled
+ entities:
+ - uid: 1889
+ components:
+ - type: Transform
+ rot: -113.09733552923244 rad
+ pos: 105.440575,44.543713
+ parent: 1
+ - uid: 13611
+ components:
+ - type: Transform
+ pos: 34.48313,70.586555
+ parent: 1
+- proto: BrigTimer
+ entities:
+ - uid: 22837
+ components:
+ - type: MetaData
+ name: cell 1 green brig timer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,72.5
+ parent: 1
+ - uid: 22838
+ components:
+ - type: MetaData
+ name: cell 2 orange brig timer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,69.5
+ parent: 1
+ - uid: 22839
+ components:
+ - type: MetaData
+ name: cell 3 purple brig timer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,66.5
+ parent: 1
+ - uid: 22840
+ components:
+ - type: MetaData
+ name: cell 4 blue brig timer
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,63.5
+ parent: 1
+- proto: BrokenBottle
+ entities:
+ - uid: 33540
+ components:
+ - type: Transform
+ pos: 101.46009,28.48259
+ parent: 1
+- proto: Brutepack10Lingering
+ entities:
+ - uid: 17677
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 71.46992,94.604095
+ parent: 1
+- proto: Bucket
+ entities:
+ - uid: 26635
+ components:
+ - type: Transform
+ pos: 109.5,90.5
+ parent: 1
+ - uid: 26664
+ components:
+ - type: Transform
+ pos: 101.641075,91.62194
+ parent: 1
+- proto: ButtonFrameCaution
+ entities:
+ - uid: 7722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,146.5
+ parent: 1
+ - uid: 9389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,120.5
+ parent: 1
+ - uid: 13202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,144.5
+ parent: 1
+ - uid: 15033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,153.5
+ parent: 1
+ - uid: 15039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,153.5
+ parent: 1
+ - uid: 15040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,153.5
+ parent: 1
+ - uid: 15041
+ components:
+ - type: MetaData
+ name: button frame
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,139.5
+ parent: 1
+ - uid: 15042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,139.5
+ parent: 1
+ - uid: 19537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,111.5
+ parent: 1
+ - uid: 19538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,111.5
+ parent: 1
+ - uid: 19674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,85.5
+ parent: 1
+ - uid: 19675
+ components:
+ - type: Transform
+ pos: 35.5,95.5
+ parent: 1
+ - uid: 20905
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,88.5
+ parent: 1
+ - uid: 22947
+ components:
+ - type: Transform
+ pos: 153.5,65.5
+ parent: 1
+ - uid: 23620
+ components:
+ - type: Transform
+ pos: 70.5,124.5
+ parent: 1
+ - uid: 29090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,95.5
+ parent: 1
+ - uid: 33910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,100.5
+ parent: 1
+ - uid: 35230
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,141.5
+ parent: 1
+ - uid: 36774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,134.5
+ parent: 1
+ - uid: 37305
+ components:
+ - type: Transform
+ pos: 78.5,154.5
+ parent: 1
+ - uid: 37306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,124.5
+ parent: 1
+- proto: ButtonFrameCautionSecurity
+ entities:
+ - uid: 74
+ components:
+ - type: Transform
+ pos: 48.5,76.5
+ parent: 1
+ - uid: 2547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,61.5
+ parent: 1
+ - uid: 37368
+ components:
+ - type: Transform
+ pos: 133.5,61.5
+ parent: 1
+- proto: ButtonFrameExit
+ entities:
+ - uid: 22927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,73.5
+ parent: 1
+ - uid: 25493
+ components:
+ - type: Transform
+ pos: 76.5,101.5
+ parent: 1
+ - uid: 31969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,102.5
+ parent: 1
+ - uid: 37372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,67.5
+ parent: 1
+- proto: ButtonFrameGrey
+ entities:
+ - uid: 95
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,91.5
+ parent: 1
+ - uid: 2610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,96.5
+ parent: 1
+ - uid: 4927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,119.5
+ parent: 1
+ - uid: 5735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,56.5
+ parent: 1
+ - uid: 14519
+ components:
+ - type: Transform
+ pos: 75.5,77.5
+ parent: 1
+ - uid: 21065
+ components:
+ - type: Transform
+ pos: 123.5,102.5
+ parent: 1
+ - uid: 23276
+ components:
+ - type: MetaData
+ name: button frame
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,61.5
+ parent: 1
+ - uid: 25502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,61.5
+ parent: 1
+ - uid: 26491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,104.5
+ parent: 1
+ - uid: 28137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,96.5
+ parent: 1
+ - uid: 29590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,125.5
+ parent: 1
+ - uid: 29746
+ components:
+ - type: Transform
+ pos: 153.5,136.5
+ parent: 1
+ - uid: 29747
+ components:
+ - type: Transform
+ pos: 156.5,136.5
+ parent: 1
+ - uid: 29748
+ components:
+ - type: Transform
+ pos: 159.5,136.5
+ parent: 1
+ - uid: 29749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,140.5
+ parent: 1
+ - uid: 29750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,140.5
+ parent: 1
+ - uid: 29751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,140.5
+ parent: 1
+ - uid: 34636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,62.5
+ parent: 1
+ - uid: 34909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,119.5
+ parent: 1
+ - uid: 34910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,119.5
+ parent: 1
+ - uid: 34936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,119.5
+ parent: 1
+ - uid: 37409
+ components:
+ - type: Transform
+ pos: 111.5,65.5
+ parent: 1
+ - uid: 37422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,104.5
+ parent: 1
+ - uid: 37564
+ components:
+ - type: Transform
+ pos: 50.5,104.5
+ parent: 1
+- proto: ButtonFrameJanitor
+ entities:
+ - uid: 23316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,95.5
+ parent: 1
+ - uid: 36816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,101.5
+ parent: 1
+ - uid: 36823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,122.5
+ parent: 1
+ - uid: 36833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,104.5
+ parent: 1
+ - uid: 36836
+ components:
+ - type: Transform
+ pos: 47.5,94.5
+ parent: 1
+ - uid: 36840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,62.5
+ parent: 1
+ - uid: 36842
+ components:
+ - type: Transform
+ pos: 144.5,72.5
+ parent: 1
+- proto: CableApcExtension
+ entities:
+ - uid: 4
+ components:
+ - type: Transform
+ pos: 128.5,115.5
+ parent: 1
+ - uid: 5
+ components:
+ - type: Transform
+ pos: 129.5,111.5
+ parent: 1
+ - uid: 7
+ components:
+ - type: Transform
+ pos: 119.5,58.5
+ parent: 1
+ - uid: 8
+ components:
+ - type: Transform
+ pos: 120.5,58.5
+ parent: 1
+ - uid: 17
+ components:
+ - type: Transform
+ pos: 119.5,60.5
+ parent: 1
+ - uid: 18
+ components:
+ - type: Transform
+ pos: 119.5,59.5
+ parent: 1
+ - uid: 19
+ components:
+ - type: Transform
+ pos: 90.5,51.5
+ parent: 1
+ - uid: 140
+ components:
+ - type: Transform
+ pos: 72.5,157.5
+ parent: 1
+ - uid: 144
+ components:
+ - type: Transform
+ pos: 153.5,146.5
+ parent: 1
+ - uid: 247
+ components:
+ - type: Transform
+ pos: 137.5,142.5
+ parent: 1
+ - uid: 326
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 1
+ - uid: 340
+ components:
+ - type: Transform
+ pos: 135.5,118.5
+ parent: 1
+ - uid: 341
+ components:
+ - type: Transform
+ pos: 132.5,118.5
+ parent: 1
+ - uid: 352
+ components:
+ - type: Transform
+ pos: 133.5,118.5
+ parent: 1
+ - uid: 436
+ components:
+ - type: Transform
+ pos: 72.5,158.5
+ parent: 1
+ - uid: 875
+ components:
+ - type: Transform
+ pos: 77.5,151.5
+ parent: 1
+ - uid: 979
+ components:
+ - type: Transform
+ pos: 47.5,51.5
+ parent: 1
+ - uid: 1018
+ components:
+ - type: Transform
+ pos: 71.5,56.5
+ parent: 1
+ - uid: 1142
+ components:
+ - type: Transform
+ pos: 59.5,107.5
+ parent: 1
+ - uid: 1235
+ components:
+ - type: Transform
+ pos: 56.5,80.5
+ parent: 1
+ - uid: 1245
+ components:
+ - type: Transform
+ pos: 56.5,81.5
+ parent: 1
+ - uid: 1422
+ components:
+ - type: Transform
+ pos: 46.5,72.5
+ parent: 1
+ - uid: 1551
+ components:
+ - type: Transform
+ pos: 54.5,117.5
+ parent: 1
+ - uid: 1564
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 1
+ - uid: 1565
+ components:
+ - type: Transform
+ pos: 64.5,27.5
+ parent: 1
+ - uid: 1566
+ components:
+ - type: Transform
+ pos: 64.5,24.5
+ parent: 1
+ - uid: 1607
+ components:
+ - type: Transform
+ pos: 39.5,103.5
+ parent: 1
+ - uid: 1647
+ components:
+ - type: Transform
+ pos: 63.5,21.5
+ parent: 1
+ - uid: 1651
+ components:
+ - type: Transform
+ pos: 61.5,37.5
+ parent: 1
+ - uid: 1652
+ components:
+ - type: Transform
+ pos: 60.5,36.5
+ parent: 1
+ - uid: 1653
+ components:
+ - type: Transform
+ pos: 57.5,36.5
+ parent: 1
+ - uid: 1656
+ components:
+ - type: Transform
+ pos: 58.5,36.5
+ parent: 1
+ - uid: 1659
+ components:
+ - type: Transform
+ pos: 57.5,37.5
+ parent: 1
+ - uid: 1662
+ components:
+ - type: Transform
+ pos: 57.5,38.5
+ parent: 1
+ - uid: 1704
+ components:
+ - type: Transform
+ pos: 59.5,36.5
+ parent: 1
+ - uid: 1705
+ components:
+ - type: Transform
+ pos: 75.5,17.5
+ parent: 1
+ - uid: 1706
+ components:
+ - type: Transform
+ pos: 70.5,17.5
+ parent: 1
+ - uid: 1711
+ components:
+ - type: Transform
+ pos: 71.5,17.5
+ parent: 1
+ - uid: 1752
+ components:
+ - type: Transform
+ pos: 116.5,72.5
+ parent: 1
+ - uid: 1770
+ components:
+ - type: Transform
+ pos: 72.5,17.5
+ parent: 1
+ - uid: 1771
+ components:
+ - type: Transform
+ pos: 73.5,17.5
+ parent: 1
+ - uid: 1779
+ components:
+ - type: Transform
+ pos: 74.5,17.5
+ parent: 1
+ - uid: 1781
+ components:
+ - type: Transform
+ pos: 76.5,17.5
+ parent: 1
+ - uid: 1782
+ components:
+ - type: Transform
+ pos: 77.5,17.5
+ parent: 1
+ - uid: 1787
+ components:
+ - type: Transform
+ pos: 78.5,17.5
+ parent: 1
+ - uid: 1789
+ components:
+ - type: Transform
+ pos: 79.5,17.5
+ parent: 1
+ - uid: 1790
+ components:
+ - type: Transform
+ pos: 80.5,17.5
+ parent: 1
+ - uid: 1792
+ components:
+ - type: Transform
+ pos: 81.5,17.5
+ parent: 1
+ - uid: 1794
+ components:
+ - type: Transform
+ pos: 82.5,17.5
+ parent: 1
+ - uid: 1823
+ components:
+ - type: Transform
+ pos: 83.5,17.5
+ parent: 1
+ - uid: 1824
+ components:
+ - type: Transform
+ pos: 64.5,28.5
+ parent: 1
+ - uid: 1831
+ components:
+ - type: Transform
+ pos: 123.5,170.5
+ parent: 1
+ - uid: 1832
+ components:
+ - type: Transform
+ pos: 101.5,42.5
+ parent: 1
+ - uid: 1833
+ components:
+ - type: Transform
+ pos: 102.5,42.5
+ parent: 1
+ - uid: 1855
+ components:
+ - type: Transform
+ pos: 64.5,25.5
+ parent: 1
+ - uid: 1878
+ components:
+ - type: Transform
+ pos: 64.5,15.5
+ parent: 1
+ - uid: 1897
+ components:
+ - type: Transform
+ pos: 101.5,39.5
+ parent: 1
+ - uid: 1921
+ components:
+ - type: Transform
+ pos: 87.5,85.5
+ parent: 1
+ - uid: 1922
+ components:
+ - type: Transform
+ pos: 88.5,87.5
+ parent: 1
+ - uid: 1923
+ components:
+ - type: Transform
+ pos: 90.5,85.5
+ parent: 1
+ - uid: 1934
+ components:
+ - type: Transform
+ pos: 62.5,34.5
+ parent: 1
+ - uid: 1942
+ components:
+ - type: Transform
+ pos: 76.5,133.5
+ parent: 1
+ - uid: 1951
+ components:
+ - type: Transform
+ pos: 76.5,128.5
+ parent: 1
+ - uid: 1953
+ components:
+ - type: Transform
+ pos: 64.5,17.5
+ parent: 1
+ - uid: 1958
+ components:
+ - type: Transform
+ pos: 64.5,30.5
+ parent: 1
+ - uid: 1959
+ components:
+ - type: Transform
+ pos: 76.5,129.5
+ parent: 1
+ - uid: 1969
+ components:
+ - type: Transform
+ pos: 78.5,130.5
+ parent: 1
+ - uid: 1993
+ components:
+ - type: Transform
+ pos: 81.5,149.5
+ parent: 1
+ - uid: 2139
+ components:
+ - type: Transform
+ pos: 76.5,132.5
+ parent: 1
+ - uid: 2202
+ components:
+ - type: Transform
+ pos: 76.5,131.5
+ parent: 1
+ - uid: 2213
+ components:
+ - type: Transform
+ pos: 42.5,48.5
+ parent: 1
+ - uid: 2283
+ components:
+ - type: Transform
+ pos: 64.5,20.5
+ parent: 1
+ - uid: 2288
+ components:
+ - type: Transform
+ pos: 61.5,38.5
+ parent: 1
+ - uid: 2425
+ components:
+ - type: Transform
+ pos: 64.5,52.5
+ parent: 1
+ - uid: 2427
+ components:
+ - type: Transform
+ pos: 78.5,129.5
+ parent: 1
+ - uid: 2440
+ components:
+ - type: Transform
+ pos: 78.5,133.5
+ parent: 1
+ - uid: 2441
+ components:
+ - type: Transform
+ pos: 61.5,39.5
+ parent: 1
+ - uid: 2463
+ components:
+ - type: Transform
+ pos: 76.5,135.5
+ parent: 1
+ - uid: 2465
+ components:
+ - type: Transform
+ pos: 78.5,132.5
+ parent: 1
+ - uid: 2466
+ components:
+ - type: Transform
+ pos: 76.5,139.5
+ parent: 1
+ - uid: 2483
+ components:
+ - type: Transform
+ pos: 75.5,148.5
+ parent: 1
+ - uid: 2484
+ components:
+ - type: Transform
+ pos: 75.5,125.5
+ parent: 1
+ - uid: 2487
+ components:
+ - type: Transform
+ pos: 76.5,137.5
+ parent: 1
+ - uid: 2492
+ components:
+ - type: Transform
+ pos: 70.5,64.5
+ parent: 1
+ - uid: 2497
+ components:
+ - type: Transform
+ pos: 56.5,116.5
+ parent: 1
+ - uid: 2514
+ components:
+ - type: Transform
+ pos: 76.5,146.5
+ parent: 1
+ - uid: 2545
+ components:
+ - type: Transform
+ pos: 59.5,40.5
+ parent: 1
+ - uid: 2549
+ components:
+ - type: Transform
+ pos: 76.5,147.5
+ parent: 1
+ - uid: 2614
+ components:
+ - type: Transform
+ pos: 57.5,39.5
+ parent: 1
+ - uid: 2629
+ components:
+ - type: Transform
+ pos: 134.5,95.5
+ parent: 1
+ - uid: 2631
+ components:
+ - type: Transform
+ pos: 106.5,41.5
+ parent: 1
+ - uid: 2645
+ components:
+ - type: Transform
+ pos: 80.5,58.5
+ parent: 1
+ - uid: 2646
+ components:
+ - type: Transform
+ pos: 80.5,59.5
+ parent: 1
+ - uid: 2647
+ components:
+ - type: Transform
+ pos: 74.5,57.5
+ parent: 1
+ - uid: 2649
+ components:
+ - type: Transform
+ pos: 80.5,56.5
+ parent: 1
+ - uid: 2652
+ components:
+ - type: Transform
+ pos: 80.5,57.5
+ parent: 1
+ - uid: 2666
+ components:
+ - type: Transform
+ pos: 74.5,56.5
+ parent: 1
+ - uid: 2687
+ components:
+ - type: Transform
+ pos: 74.5,58.5
+ parent: 1
+ - uid: 2705
+ components:
+ - type: Transform
+ pos: 74.5,59.5
+ parent: 1
+ - uid: 2718
+ components:
+ - type: Transform
+ pos: 76.5,138.5
+ parent: 1
+ - uid: 2719
+ components:
+ - type: Transform
+ pos: 79.5,139.5
+ parent: 1
+ - uid: 2723
+ components:
+ - type: Transform
+ pos: 157.5,150.5
+ parent: 1
+ - uid: 2726
+ components:
+ - type: Transform
+ pos: 85.5,150.5
+ parent: 1
+ - uid: 2727
+ components:
+ - type: Transform
+ pos: 85.5,142.5
+ parent: 1
+ - uid: 2728
+ components:
+ - type: Transform
+ pos: 84.5,150.5
+ parent: 1
+ - uid: 2729
+ components:
+ - type: Transform
+ pos: 83.5,150.5
+ parent: 1
+ - uid: 2730
+ components:
+ - type: Transform
+ pos: 79.5,149.5
+ parent: 1
+ - uid: 2733
+ components:
+ - type: Transform
+ pos: 76.5,145.5
+ parent: 1
+ - uid: 2734
+ components:
+ - type: Transform
+ pos: 76.5,144.5
+ parent: 1
+ - uid: 2735
+ components:
+ - type: Transform
+ pos: 80.5,149.5
+ parent: 1
+ - uid: 2739
+ components:
+ - type: Transform
+ pos: 99.5,130.5
+ parent: 1
+ - uid: 2757
+ components:
+ - type: Transform
+ pos: 76.5,51.5
+ parent: 1
+ - uid: 2764
+ components:
+ - type: Transform
+ pos: 61.5,40.5
+ parent: 1
+ - uid: 2765
+ components:
+ - type: Transform
+ pos: 61.5,36.5
+ parent: 1
+ - uid: 2770
+ components:
+ - type: Transform
+ pos: 82.5,150.5
+ parent: 1
+ - uid: 2772
+ components:
+ - type: Transform
+ pos: 77.5,127.5
+ parent: 1
+ - uid: 2773
+ components:
+ - type: Transform
+ pos: 77.5,128.5
+ parent: 1
+ - uid: 2774
+ components:
+ - type: Transform
+ pos: 77.5,126.5
+ parent: 1
+ - uid: 2776
+ components:
+ - type: Transform
+ pos: 85.5,136.5
+ parent: 1
+ - uid: 2777
+ components:
+ - type: Transform
+ pos: 85.5,137.5
+ parent: 1
+ - uid: 2802
+ components:
+ - type: Transform
+ pos: 75.5,51.5
+ parent: 1
+ - uid: 2816
+ components:
+ - type: Transform
+ pos: 74.5,51.5
+ parent: 1
+ - uid: 2826
+ components:
+ - type: Transform
+ pos: 57.5,40.5
+ parent: 1
+ - uid: 2834
+ components:
+ - type: Transform
+ pos: 85.5,141.5
+ parent: 1
+ - uid: 2836
+ components:
+ - type: Transform
+ pos: 86.5,132.5
+ parent: 1
+ - uid: 2837
+ components:
+ - type: Transform
+ pos: 86.5,133.5
+ parent: 1
+ - uid: 2840
+ components:
+ - type: Transform
+ pos: 85.5,133.5
+ parent: 1
+ - uid: 2841
+ components:
+ - type: Transform
+ pos: 85.5,134.5
+ parent: 1
+ - uid: 2843
+ components:
+ - type: Transform
+ pos: 86.5,131.5
+ parent: 1
+ - uid: 2844
+ components:
+ - type: Transform
+ pos: 85.5,129.5
+ parent: 1
+ - uid: 2880
+ components:
+ - type: Transform
+ pos: 45.5,88.5
+ parent: 1
+ - uid: 2881
+ components:
+ - type: Transform
+ pos: 46.5,88.5
+ parent: 1
+ - uid: 2883
+ components:
+ - type: Transform
+ pos: 88.5,75.5
+ parent: 1
+ - uid: 2885
+ components:
+ - type: Transform
+ pos: 88.5,76.5
+ parent: 1
+ - uid: 2897
+ components:
+ - type: Transform
+ pos: 80.5,145.5
+ parent: 1
+ - uid: 2898
+ components:
+ - type: Transform
+ pos: 79.5,145.5
+ parent: 1
+ - uid: 2899
+ components:
+ - type: Transform
+ pos: 86.5,129.5
+ parent: 1
+ - uid: 2902
+ components:
+ - type: Transform
+ pos: 82.5,134.5
+ parent: 1
+ - uid: 2903
+ components:
+ - type: Transform
+ pos: 83.5,134.5
+ parent: 1
+ - uid: 2947
+ components:
+ - type: Transform
+ pos: 88.5,77.5
+ parent: 1
+ - uid: 2949
+ components:
+ - type: Transform
+ pos: 88.5,72.5
+ parent: 1
+ - uid: 2981
+ components:
+ - type: Transform
+ pos: 71.5,54.5
+ parent: 1
+ - uid: 3042
+ components:
+ - type: Transform
+ pos: 85.5,144.5
+ parent: 1
+ - uid: 3079
+ components:
+ - type: Transform
+ pos: 109.5,147.5
+ parent: 1
+ - uid: 3081
+ components:
+ - type: Transform
+ pos: 110.5,147.5
+ parent: 1
+ - uid: 3128
+ components:
+ - type: Transform
+ pos: 106.5,103.5
+ parent: 1
+ - uid: 3135
+ components:
+ - type: Transform
+ pos: 78.5,51.5
+ parent: 1
+ - uid: 3151
+ components:
+ - type: Transform
+ pos: 133.5,125.5
+ parent: 1
+ - uid: 3179
+ components:
+ - type: Transform
+ pos: 79.5,51.5
+ parent: 1
+ - uid: 3201
+ components:
+ - type: Transform
+ pos: 76.5,141.5
+ parent: 1
+ - uid: 3203
+ components:
+ - type: Transform
+ pos: 99.5,160.5
+ parent: 1
+ - uid: 3209
+ components:
+ - type: Transform
+ pos: 76.5,140.5
+ parent: 1
+ - uid: 3211
+ components:
+ - type: Transform
+ pos: 76.5,136.5
+ parent: 1
+ - uid: 3212
+ components:
+ - type: Transform
+ pos: 84.5,127.5
+ parent: 1
+ - uid: 3262
+ components:
+ - type: Transform
+ pos: 113.5,170.5
+ parent: 1
+ - uid: 3268
+ components:
+ - type: Transform
+ pos: 71.5,159.5
+ parent: 1
+ - uid: 3288
+ components:
+ - type: Transform
+ pos: 71.5,160.5
+ parent: 1
+ - uid: 3319
+ components:
+ - type: Transform
+ pos: 144.5,127.5
+ parent: 1
+ - uid: 3339
+ components:
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - uid: 3345
+ components:
+ - type: Transform
+ pos: 144.5,126.5
+ parent: 1
+ - uid: 3347
+ components:
+ - type: Transform
+ pos: 113.5,65.5
+ parent: 1
+ - uid: 3352
+ components:
+ - type: Transform
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 3355
+ components:
+ - type: Transform
+ pos: 76.5,134.5
+ parent: 1
+ - uid: 3356
+ components:
+ - type: Transform
+ pos: 76.5,150.5
+ parent: 1
+ - uid: 3363
+ components:
+ - type: Transform
+ pos: 74.5,156.5
+ parent: 1
+ - uid: 3386
+ components:
+ - type: Transform
+ pos: 113.5,64.5
+ parent: 1
+ - uid: 3400
+ components:
+ - type: Transform
+ pos: 80.5,156.5
+ parent: 1
+ - uid: 3407
+ components:
+ - type: Transform
+ pos: 77.5,155.5
+ parent: 1
+ - uid: 3423
+ components:
+ - type: Transform
+ pos: 148.5,131.5
+ parent: 1
+ - uid: 3446
+ components:
+ - type: Transform
+ pos: 108.5,165.5
+ parent: 1
+ - uid: 3447
+ components:
+ - type: Transform
+ pos: 110.5,165.5
+ parent: 1
+ - uid: 3455
+ components:
+ - type: Transform
+ pos: 99.5,64.5
+ parent: 1
+ - uid: 3468
+ components:
+ - type: Transform
+ pos: 63.5,20.5
+ parent: 1
+ - uid: 3469
+ components:
+ - type: Transform
+ pos: 65.5,19.5
+ parent: 1
+ - uid: 3470
+ components:
+ - type: Transform
+ pos: 64.5,19.5
+ parent: 1
+ - uid: 3482
+ components:
+ - type: Transform
+ pos: 157.5,149.5
+ parent: 1
+ - uid: 3497
+ components:
+ - type: Transform
+ pos: 85.5,128.5
+ parent: 1
+ - uid: 3502
+ components:
+ - type: Transform
+ pos: 83.5,128.5
+ parent: 1
+ - uid: 3503
+ components:
+ - type: Transform
+ pos: 82.5,128.5
+ parent: 1
+ - uid: 3527
+ components:
+ - type: Transform
+ pos: 91.5,52.5
+ parent: 1
+ - uid: 3558
+ components:
+ - type: Transform
+ pos: 115.5,68.5
+ parent: 1
+ - uid: 3566
+ components:
+ - type: Transform
+ pos: 148.5,99.5
+ parent: 1
+ - uid: 3574
+ components:
+ - type: Transform
+ pos: 94.5,162.5
+ parent: 1
+ - uid: 3575
+ components:
+ - type: Transform
+ pos: 147.5,99.5
+ parent: 1
+ - uid: 3580
+ components:
+ - type: Transform
+ pos: 146.5,99.5
+ parent: 1
+ - uid: 3610
+ components:
+ - type: Transform
+ pos: 150.5,114.5
+ parent: 1
+ - uid: 3613
+ components:
+ - type: Transform
+ pos: 64.5,16.5
+ parent: 1
+ - uid: 3614
+ components:
+ - type: Transform
+ pos: 64.5,18.5
+ parent: 1
+ - uid: 3620
+ components:
+ - type: Transform
+ pos: 86.5,159.5
+ parent: 1
+ - uid: 3628
+ components:
+ - type: Transform
+ pos: 133.5,122.5
+ parent: 1
+ - uid: 3639
+ components:
+ - type: Transform
+ pos: 78.5,139.5
+ parent: 1
+ - uid: 3645
+ components:
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 1
+ - uid: 3646
+ components:
+ - type: Transform
+ pos: 85.5,149.5
+ parent: 1
+ - uid: 3648
+ components:
+ - type: Transform
+ pos: 86.5,149.5
+ parent: 1
+ - uid: 3649
+ components:
+ - type: Transform
+ pos: 82.5,144.5
+ parent: 1
+ - uid: 3668
+ components:
+ - type: Transform
+ pos: 120.5,110.5
+ parent: 1
+ - uid: 3675
+ components:
+ - type: Transform
+ pos: 121.5,110.5
+ parent: 1
+ - uid: 3693
+ components:
+ - type: Transform
+ pos: 83.5,51.5
+ parent: 1
+ - uid: 3694
+ components:
+ - type: Transform
+ pos: 83.5,52.5
+ parent: 1
+ - uid: 3698
+ components:
+ - type: Transform
+ pos: 156.5,98.5
+ parent: 1
+ - uid: 3712
+ components:
+ - type: Transform
+ pos: 83.5,53.5
+ parent: 1
+ - uid: 3724
+ components:
+ - type: Transform
+ pos: 53.5,131.5
+ parent: 1
+ - uid: 3729
+ components:
+ - type: Transform
+ pos: 53.5,130.5
+ parent: 1
+ - uid: 3730
+ components:
+ - type: Transform
+ pos: 95.5,109.5
+ parent: 1
+ - uid: 3732
+ components:
+ - type: Transform
+ pos: 95.5,107.5
+ parent: 1
+ - uid: 3751
+ components:
+ - type: Transform
+ pos: 146.5,89.5
+ parent: 1
+ - uid: 3752
+ components:
+ - type: Transform
+ pos: 144.5,89.5
+ parent: 1
+ - uid: 3753
+ components:
+ - type: Transform
+ pos: 150.5,88.5
+ parent: 1
+ - uid: 3759
+ components:
+ - type: Transform
+ pos: 83.5,54.5
+ parent: 1
+ - uid: 3760
+ components:
+ - type: Transform
+ pos: 150.5,89.5
+ parent: 1
+ - uid: 3768
+ components:
+ - type: Transform
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 3771
+ components:
+ - type: Transform
+ pos: 151.5,94.5
+ parent: 1
+ - uid: 3778
+ components:
+ - type: Transform
+ pos: 151.5,95.5
+ parent: 1
+ - uid: 3786
+ components:
+ - type: Transform
+ pos: 149.5,95.5
+ parent: 1
+ - uid: 3787
+ components:
+ - type: Transform
+ pos: 147.5,95.5
+ parent: 1
+ - uid: 3800
+ components:
+ - type: Transform
+ pos: 95.5,56.5
+ parent: 1
+ - uid: 3830
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 1
+ - uid: 3831
+ components:
+ - type: Transform
+ pos: 98.5,113.5
+ parent: 1
+ - uid: 3844
+ components:
+ - type: Transform
+ pos: 108.5,167.5
+ parent: 1
+ - uid: 3856
+ components:
+ - type: Transform
+ pos: 86.5,147.5
+ parent: 1
+ - uid: 3859
+ components:
+ - type: Transform
+ pos: 88.5,51.5
+ parent: 1
+ - uid: 3906
+ components:
+ - type: Transform
+ pos: 95.5,110.5
+ parent: 1
+ - uid: 3907
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - uid: 3908
+ components:
+ - type: Transform
+ pos: 98.5,109.5
+ parent: 1
+ - uid: 3909
+ components:
+ - type: Transform
+ pos: 98.5,110.5
+ parent: 1
+ - uid: 3910
+ components:
+ - type: Transform
+ pos: 118.5,108.5
+ parent: 1
+ - uid: 3911
+ components:
+ - type: Transform
+ pos: 118.5,109.5
+ parent: 1
+ - uid: 3927
+ components:
+ - type: Transform
+ pos: 89.5,51.5
+ parent: 1
+ - uid: 3928
+ components:
+ - type: Transform
+ pos: 92.5,51.5
+ parent: 1
+ - uid: 3941
+ components:
+ - type: Transform
+ pos: 64.5,14.5
+ parent: 1
+ - uid: 3945
+ components:
+ - type: Transform
+ pos: 158.5,152.5
+ parent: 1
+ - uid: 3981
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 1
+ - uid: 3982
+ components:
+ - type: Transform
+ pos: 83.5,55.5
+ parent: 1
+ - uid: 3983
+ components:
+ - type: Transform
+ pos: 83.5,57.5
+ parent: 1
+ - uid: 3984
+ components:
+ - type: Transform
+ pos: 93.5,56.5
+ parent: 1
+ - uid: 3991
+ components:
+ - type: Transform
+ pos: 83.5,56.5
+ parent: 1
+ - uid: 4000
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - uid: 4002
+ components:
+ - type: Transform
+ pos: 97.5,51.5
+ parent: 1
+ - uid: 4003
+ components:
+ - type: Transform
+ pos: 133.5,86.5
+ parent: 1
+ - uid: 4034
+ components:
+ - type: Transform
+ pos: 99.5,51.5
+ parent: 1
+ - uid: 4045
+ components:
+ - type: Transform
+ pos: 97.5,64.5
+ parent: 1
+ - uid: 4101
+ components:
+ - type: Transform
+ pos: 83.5,58.5
+ parent: 1
+ - uid: 4105
+ components:
+ - type: Transform
+ pos: 97.5,69.5
+ parent: 1
+ - uid: 4113
+ components:
+ - type: Transform
+ pos: 83.5,59.5
+ parent: 1
+ - uid: 4215
+ components:
+ - type: Transform
+ pos: 64.5,31.5
+ parent: 1
+ - uid: 4222
+ components:
+ - type: Transform
+ pos: 83.5,60.5
+ parent: 1
+ - uid: 4235
+ components:
+ - type: Transform
+ pos: 95.5,130.5
+ parent: 1
+ - uid: 4267
+ components:
+ - type: Transform
+ pos: 114.5,39.5
+ parent: 1
+ - uid: 4301
+ components:
+ - type: Transform
+ pos: 43.5,46.5
+ parent: 1
+ - uid: 4304
+ components:
+ - type: Transform
+ pos: 83.5,63.5
+ parent: 1
+ - uid: 4311
+ components:
+ - type: Transform
+ pos: 83.5,62.5
+ parent: 1
+ - uid: 4331
+ components:
+ - type: Transform
+ pos: 105.5,40.5
+ parent: 1
+ - uid: 4333
+ components:
+ - type: Transform
+ pos: 106.5,39.5
+ parent: 1
+ - uid: 4337
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - uid: 4338
+ components:
+ - type: Transform
+ pos: 63.5,23.5
+ parent: 1
+ - uid: 4339
+ components:
+ - type: Transform
+ pos: 64.5,23.5
+ parent: 1
+ - uid: 4362
+ components:
+ - type: Transform
+ pos: 86.5,35.5
+ parent: 1
+ - uid: 4384
+ components:
+ - type: Transform
+ pos: 95.5,108.5
+ parent: 1
+ - uid: 4390
+ components:
+ - type: Transform
+ pos: 114.5,168.5
+ parent: 1
+ - uid: 4423
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+ - uid: 4489
+ components:
+ - type: Transform
+ pos: 60.5,40.5
+ parent: 1
+ - uid: 4533
+ components:
+ - type: Transform
+ pos: 87.5,35.5
+ parent: 1
+ - uid: 4539
+ components:
+ - type: Transform
+ pos: 58.5,40.5
+ parent: 1
+ - uid: 4545
+ components:
+ - type: Transform
+ pos: 93.5,46.5
+ parent: 1
+ - uid: 4573
+ components:
+ - type: Transform
+ pos: 94.5,46.5
+ parent: 1
+ - uid: 4580
+ components:
+ - type: Transform
+ pos: 95.5,46.5
+ parent: 1
+ - uid: 4582
+ components:
+ - type: Transform
+ pos: 96.5,46.5
+ parent: 1
+ - uid: 4586
+ components:
+ - type: Transform
+ pos: 91.5,46.5
+ parent: 1
+ - uid: 4591
+ components:
+ - type: Transform
+ pos: 92.5,46.5
+ parent: 1
+ - uid: 4612
+ components:
+ - type: Transform
+ pos: 91.5,47.5
+ parent: 1
+ - uid: 4627
+ components:
+ - type: Transform
+ pos: 91.5,48.5
+ parent: 1
+ - uid: 4642
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - uid: 4651
+ components:
+ - type: Transform
+ pos: 94.5,48.5
+ parent: 1
+ - uid: 4667
+ components:
+ - type: Transform
+ pos: 93.5,48.5
+ parent: 1
+ - uid: 4682
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 1
+ - uid: 4686
+ components:
+ - type: Transform
+ pos: 78.5,131.5
+ parent: 1
+ - uid: 4687
+ components:
+ - type: Transform
+ pos: 124.5,92.5
+ parent: 1
+ - uid: 4724
+ components:
+ - type: Transform
+ pos: 56.5,50.5
+ parent: 1
+ - uid: 4726
+ components:
+ - type: Transform
+ pos: 106.5,42.5
+ parent: 1
+ - uid: 4733
+ components:
+ - type: Transform
+ pos: 103.5,170.5
+ parent: 1
+ - uid: 4734
+ components:
+ - type: Transform
+ pos: 110.5,170.5
+ parent: 1
+ - uid: 4752
+ components:
+ - type: Transform
+ pos: 44.5,45.5
+ parent: 1
+ - uid: 4757
+ components:
+ - type: Transform
+ pos: 104.5,65.5
+ parent: 1
+ - uid: 4760
+ components:
+ - type: Transform
+ pos: 76.5,149.5
+ parent: 1
+ - uid: 4822
+ components:
+ - type: Transform
+ pos: 45.5,86.5
+ parent: 1
+ - uid: 4837
+ components:
+ - type: Transform
+ pos: 139.5,139.5
+ parent: 1
+ - uid: 4924
+ components:
+ - type: Transform
+ pos: 57.5,116.5
+ parent: 1
+ - uid: 4932
+ components:
+ - type: Transform
+ pos: 92.5,56.5
+ parent: 1
+ - uid: 4933
+ components:
+ - type: Transform
+ pos: 106.5,44.5
+ parent: 1
+ - uid: 4969
+ components:
+ - type: Transform
+ pos: 148.5,149.5
+ parent: 1
+ - uid: 5015
+ components:
+ - type: Transform
+ pos: 72.5,46.5
+ parent: 1
+ - uid: 5040
+ components:
+ - type: Transform
+ pos: 106.5,43.5
+ parent: 1
+ - uid: 5044
+ components:
+ - type: Transform
+ pos: 71.5,49.5
+ parent: 1
+ - uid: 5136
+ components:
+ - type: Transform
+ pos: 157.5,114.5
+ parent: 1
+ - uid: 5159
+ components:
+ - type: Transform
+ pos: 85.5,19.5
+ parent: 1
+ - uid: 5160
+ components:
+ - type: Transform
+ pos: 86.5,19.5
+ parent: 1
+ - uid: 5217
+ components:
+ - type: Transform
+ pos: 147.5,114.5
+ parent: 1
+ - uid: 5227
+ components:
+ - type: Transform
+ pos: 87.5,19.5
+ parent: 1
+ - uid: 5228
+ components:
+ - type: Transform
+ pos: 88.5,19.5
+ parent: 1
+ - uid: 5240
+ components:
+ - type: Transform
+ pos: 137.5,149.5
+ parent: 1
+ - uid: 5255
+ components:
+ - type: Transform
+ pos: 153.5,131.5
+ parent: 1
+ - uid: 5256
+ components:
+ - type: Transform
+ pos: 154.5,131.5
+ parent: 1
+ - uid: 5257
+ components:
+ - type: Transform
+ pos: 156.5,131.5
+ parent: 1
+ - uid: 5258
+ components:
+ - type: Transform
+ pos: 155.5,131.5
+ parent: 1
+ - uid: 5308
+ components:
+ - type: Transform
+ pos: 69.5,61.5
+ parent: 1
+ - uid: 5322
+ components:
+ - type: Transform
+ pos: 164.5,131.5
+ parent: 1
+ - uid: 5324
+ components:
+ - type: Transform
+ pos: 165.5,132.5
+ parent: 1
+ - uid: 5325
+ components:
+ - type: Transform
+ pos: 164.5,137.5
+ parent: 1
+ - uid: 5336
+ components:
+ - type: Transform
+ pos: 164.5,138.5
+ parent: 1
+ - uid: 5337
+ components:
+ - type: Transform
+ pos: 164.5,139.5
+ parent: 1
+ - uid: 5344
+ components:
+ - type: Transform
+ pos: 70.5,61.5
+ parent: 1
+ - uid: 5350
+ components:
+ - type: Transform
+ pos: 97.5,67.5
+ parent: 1
+ - uid: 5354
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - uid: 5356
+ components:
+ - type: Transform
+ pos: 57.5,42.5
+ parent: 1
+ - uid: 5366
+ components:
+ - type: Transform
+ pos: 71.5,55.5
+ parent: 1
+ - uid: 5375
+ components:
+ - type: Transform
+ pos: 158.5,146.5
+ parent: 1
+ - uid: 5385
+ components:
+ - type: Transform
+ pos: 88.5,55.5
+ parent: 1
+ - uid: 5390
+ components:
+ - type: Transform
+ pos: 154.5,146.5
+ parent: 1
+ - uid: 5391
+ components:
+ - type: Transform
+ pos: 156.5,146.5
+ parent: 1
+ - uid: 5417
+ components:
+ - type: Transform
+ pos: 121.5,160.5
+ parent: 1
+ - uid: 5418
+ components:
+ - type: Transform
+ pos: 123.5,161.5
+ parent: 1
+ - uid: 5419
+ components:
+ - type: Transform
+ pos: 122.5,164.5
+ parent: 1
+ - uid: 5442
+ components:
+ - type: Transform
+ pos: 98.5,108.5
+ parent: 1
+ - uid: 5443
+ components:
+ - type: Transform
+ pos: 98.5,112.5
+ parent: 1
+ - uid: 5444
+ components:
+ - type: Transform
+ pos: 118.5,110.5
+ parent: 1
+ - uid: 5445
+ components:
+ - type: Transform
+ pos: 118.5,112.5
+ parent: 1
+ - uid: 5446
+ components:
+ - type: Transform
+ pos: 118.5,113.5
+ parent: 1
+ - uid: 5449
+ components:
+ - type: Transform
+ pos: 55.5,130.5
+ parent: 1
+ - uid: 5459
+ components:
+ - type: Transform
+ pos: 57.5,141.5
+ parent: 1
+ - uid: 5462
+ components:
+ - type: Transform
+ pos: 57.5,147.5
+ parent: 1
+ - uid: 5464
+ components:
+ - type: Transform
+ pos: 58.5,148.5
+ parent: 1
+ - uid: 5499
+ components:
+ - type: Transform
+ pos: 128.5,93.5
+ parent: 1
+ - uid: 5500
+ components:
+ - type: Transform
+ pos: 128.5,92.5
+ parent: 1
+ - uid: 5593
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 1
+ - uid: 5594
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 1
+ - uid: 5595
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+ - uid: 5776
+ components:
+ - type: Transform
+ pos: 122.5,91.5
+ parent: 1
+ - uid: 5816
+ components:
+ - type: Transform
+ pos: 110.5,50.5
+ parent: 1
+ - uid: 5823
+ components:
+ - type: Transform
+ pos: 47.5,52.5
+ parent: 1
+ - uid: 5834
+ components:
+ - type: Transform
+ pos: 110.5,45.5
+ parent: 1
+ - uid: 5914
+ components:
+ - type: Transform
+ pos: 110.5,46.5
+ parent: 1
+ - uid: 5916
+ components:
+ - type: Transform
+ pos: 110.5,43.5
+ parent: 1
+ - uid: 5954
+ components:
+ - type: Transform
+ pos: 76.5,116.5
+ parent: 1
+ - uid: 6075
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 6077
+ components:
+ - type: Transform
+ pos: 90.5,35.5
+ parent: 1
+ - uid: 6082
+ components:
+ - type: Transform
+ pos: 89.5,35.5
+ parent: 1
+ - uid: 6086
+ components:
+ - type: Transform
+ pos: 106.5,35.5
+ parent: 1
+ - uid: 6105
+ components:
+ - type: Transform
+ pos: 100.5,35.5
+ parent: 1
+ - uid: 6110
+ components:
+ - type: Transform
+ pos: 101.5,35.5
+ parent: 1
+ - uid: 6112
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 6217
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 1
+ - uid: 6231
+ components:
+ - type: Transform
+ pos: 71.5,53.5
+ parent: 1
+ - uid: 6234
+ components:
+ - type: Transform
+ pos: 71.5,52.5
+ parent: 1
+ - uid: 6245
+ components:
+ - type: Transform
+ pos: 88.5,32.5
+ parent: 1
+ - uid: 6249
+ components:
+ - type: Transform
+ pos: 147.5,82.5
+ parent: 1
+ - uid: 6252
+ components:
+ - type: Transform
+ pos: 140.5,80.5
+ parent: 1
+ - uid: 6275
+ components:
+ - type: Transform
+ pos: 147.5,81.5
+ parent: 1
+ - uid: 6280
+ components:
+ - type: Transform
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 6301
+ components:
+ - type: Transform
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 6323
+ components:
+ - type: Transform
+ pos: 72.5,52.5
+ parent: 1
+ - uid: 6345
+ components:
+ - type: Transform
+ pos: 72.5,51.5
+ parent: 1
+ - uid: 6352
+ components:
+ - type: Transform
+ pos: 150.5,86.5
+ parent: 1
+ - uid: 6390
+ components:
+ - type: Transform
+ pos: 73.5,51.5
+ parent: 1
+ - uid: 6394
+ components:
+ - type: Transform
+ pos: 159.5,61.5
+ parent: 1
+ - uid: 6430
+ components:
+ - type: Transform
+ pos: 139.5,92.5
+ parent: 1
+ - uid: 6433
+ components:
+ - type: Transform
+ pos: 139.5,89.5
+ parent: 1
+ - uid: 6478
+ components:
+ - type: Transform
+ pos: 73.5,60.5
+ parent: 1
+ - uid: 6479
+ components:
+ - type: Transform
+ pos: 72.5,60.5
+ parent: 1
+ - uid: 6480
+ components:
+ - type: Transform
+ pos: 71.5,60.5
+ parent: 1
+ - uid: 6482
+ components:
+ - type: Transform
+ pos: 70.5,60.5
+ parent: 1
+ - uid: 6515
+ components:
+ - type: Transform
+ pos: 157.5,53.5
+ parent: 1
+ - uid: 6530
+ components:
+ - type: Transform
+ pos: 158.5,47.5
+ parent: 1
+ - uid: 6578
+ components:
+ - type: Transform
+ pos: 93.5,81.5
+ parent: 1
+ - uid: 6641
+ components:
+ - type: Transform
+ pos: 90.5,168.5
+ parent: 1
+ - uid: 6779
+ components:
+ - type: Transform
+ pos: 158.5,154.5
+ parent: 1
+ - uid: 6811
+ components:
+ - type: Transform
+ pos: 158.5,153.5
+ parent: 1
+ - uid: 6871
+ components:
+ - type: Transform
+ pos: 57.5,148.5
+ parent: 1
+ - uid: 6873
+ components:
+ - type: Transform
+ pos: 44.5,126.5
+ parent: 1
+ - uid: 6911
+ components:
+ - type: Transform
+ pos: 47.5,126.5
+ parent: 1
+ - uid: 6982
+ components:
+ - type: Transform
+ pos: 68.5,51.5
+ parent: 1
+ - uid: 7022
+ components:
+ - type: Transform
+ pos: 69.5,51.5
+ parent: 1
+ - uid: 7108
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 1
+ - uid: 7116
+ components:
+ - type: Transform
+ pos: 19.5,100.5
+ parent: 1
+ - uid: 7171
+ components:
+ - type: Transform
+ pos: 20.5,100.5
+ parent: 1
+ - uid: 7219
+ components:
+ - type: Transform
+ pos: 27.5,76.5
+ parent: 1
+ - uid: 7230
+ components:
+ - type: Transform
+ pos: 47.5,50.5
+ parent: 1
+ - uid: 7235
+ components:
+ - type: Transform
+ pos: 27.5,77.5
+ parent: 1
+ - uid: 7239
+ components:
+ - type: Transform
+ pos: 27.5,78.5
+ parent: 1
+ - uid: 7244
+ components:
+ - type: Transform
+ pos: 27.5,79.5
+ parent: 1
+ - uid: 7247
+ components:
+ - type: Transform
+ pos: 33.5,79.5
+ parent: 1
+ - uid: 7248
+ components:
+ - type: Transform
+ pos: 34.5,79.5
+ parent: 1
+ - uid: 7249
+ components:
+ - type: Transform
+ pos: 35.5,79.5
+ parent: 1
+ - uid: 7290
+ components:
+ - type: Transform
+ pos: 36.5,79.5
+ parent: 1
+ - uid: 7293
+ components:
+ - type: Transform
+ pos: 163.5,57.5
+ parent: 1
+ - uid: 7298
+ components:
+ - type: Transform
+ pos: 165.5,136.5
+ parent: 1
+ - uid: 7299
+ components:
+ - type: Transform
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 7412
+ components:
+ - type: Transform
+ pos: 97.5,130.5
+ parent: 1
+ - uid: 7489
+ components:
+ - type: Transform
+ pos: 163.5,138.5
+ parent: 1
+ - uid: 7587
+ components:
+ - type: Transform
+ pos: 100.5,51.5
+ parent: 1
+ - uid: 7588
+ components:
+ - type: Transform
+ pos: 98.5,51.5
+ parent: 1
+ - uid: 7589
+ components:
+ - type: Transform
+ pos: 96.5,51.5
+ parent: 1
+ - uid: 7591
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 1
+ - uid: 7592
+ components:
+ - type: Transform
+ pos: 93.5,51.5
+ parent: 1
+ - uid: 7593
+ components:
+ - type: Transform
+ pos: 91.5,51.5
+ parent: 1
+ - uid: 7594
+ components:
+ - type: Transform
+ pos: 87.5,51.5
+ parent: 1
+ - uid: 7596
+ components:
+ - type: Transform
+ pos: 85.5,51.5
+ parent: 1
+ - uid: 7600
+ components:
+ - type: Transform
+ pos: 96.5,50.5
+ parent: 1
+ - uid: 7605
+ components:
+ - type: Transform
+ pos: 165.5,134.5
+ parent: 1
+ - uid: 8141
+ components:
+ - type: Transform
+ pos: 138.5,149.5
+ parent: 1
+ - uid: 8148
+ components:
+ - type: Transform
+ pos: 96.5,83.5
+ parent: 1
+ - uid: 8149
+ components:
+ - type: Transform
+ pos: 94.5,82.5
+ parent: 1
+ - uid: 8152
+ components:
+ - type: Transform
+ pos: 148.5,145.5
+ parent: 1
+ - uid: 8159
+ components:
+ - type: Transform
+ pos: 138.5,147.5
+ parent: 1
+ - uid: 8161
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - uid: 8164
+ components:
+ - type: Transform
+ pos: 95.5,82.5
+ parent: 1
+ - uid: 8206
+ components:
+ - type: Transform
+ pos: 79.5,156.5
+ parent: 1
+ - uid: 8222
+ components:
+ - type: Transform
+ pos: 83.5,156.5
+ parent: 1
+ - uid: 8237
+ components:
+ - type: Transform
+ pos: 102.5,20.5
+ parent: 1
+ - uid: 8516
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - uid: 8638
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 1
+ - uid: 8701
+ components:
+ - type: Transform
+ pos: 140.5,124.5
+ parent: 1
+ - uid: 8703
+ components:
+ - type: Transform
+ pos: 139.5,131.5
+ parent: 1
+ - uid: 8705
+ components:
+ - type: Transform
+ pos: 139.5,128.5
+ parent: 1
+ - uid: 8708
+ components:
+ - type: Transform
+ pos: 140.5,123.5
+ parent: 1
+ - uid: 8710
+ components:
+ - type: Transform
+ pos: 131.5,127.5
+ parent: 1
+ - uid: 8735
+ components:
+ - type: Transform
+ pos: 132.5,127.5
+ parent: 1
+ - uid: 8744
+ components:
+ - type: Transform
+ pos: 133.5,127.5
+ parent: 1
+ - uid: 8747
+ components:
+ - type: Transform
+ pos: 134.5,127.5
+ parent: 1
+ - uid: 8765
+ components:
+ - type: Transform
+ pos: 137.5,123.5
+ parent: 1
+ - uid: 9116
+ components:
+ - type: Transform
+ pos: 46.5,126.5
+ parent: 1
+ - uid: 9253
+ components:
+ - type: Transform
+ pos: 51.5,106.5
+ parent: 1
+ - uid: 9263
+ components:
+ - type: Transform
+ pos: 48.5,119.5
+ parent: 1
+ - uid: 9418
+ components:
+ - type: Transform
+ pos: 35.5,96.5
+ parent: 1
+ - uid: 9420
+ components:
+ - type: Transform
+ pos: 86.5,145.5
+ parent: 1
+ - uid: 9421
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 1
+ - uid: 9423
+ components:
+ - type: Transform
+ pos: 77.5,150.5
+ parent: 1
+ - uid: 9427
+ components:
+ - type: Transform
+ pos: 76.5,148.5
+ parent: 1
+ - uid: 9441
+ components:
+ - type: Transform
+ pos: 97.5,68.5
+ parent: 1
+ - uid: 9484
+ components:
+ - type: Transform
+ pos: 127.5,96.5
+ parent: 1
+ - uid: 9672
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - uid: 9684
+ components:
+ - type: Transform
+ pos: 94.5,56.5
+ parent: 1
+ - uid: 9697
+ components:
+ - type: Transform
+ pos: 131.5,85.5
+ parent: 1
+ - uid: 9740
+ components:
+ - type: Transform
+ pos: 102.5,21.5
+ parent: 1
+ - uid: 9808
+ components:
+ - type: Transform
+ pos: 114.5,41.5
+ parent: 1
+ - uid: 9995
+ components:
+ - type: Transform
+ pos: 131.5,86.5
+ parent: 1
+ - uid: 10044
+ components:
+ - type: Transform
+ pos: 115.5,66.5
+ parent: 1
+ - uid: 10321
+ components:
+ - type: Transform
+ pos: 157.5,148.5
+ parent: 1
+ - uid: 10384
+ components:
+ - type: Transform
+ pos: 57.5,140.5
+ parent: 1
+ - uid: 10387
+ components:
+ - type: Transform
+ pos: 56.5,142.5
+ parent: 1
+ - uid: 10441
+ components:
+ - type: Transform
+ pos: 105.5,165.5
+ parent: 1
+ - uid: 10442
+ components:
+ - type: Transform
+ pos: 109.5,165.5
+ parent: 1
+ - uid: 10443
+ components:
+ - type: Transform
+ pos: 111.5,165.5
+ parent: 1
+ - uid: 10463
+ components:
+ - type: Transform
+ pos: 123.5,160.5
+ parent: 1
+ - uid: 10487
+ components:
+ - type: Transform
+ pos: 144.5,114.5
+ parent: 1
+ - uid: 10493
+ components:
+ - type: Transform
+ pos: 143.5,114.5
+ parent: 1
+ - uid: 10561
+ components:
+ - type: Transform
+ pos: 159.5,113.5
+ parent: 1
+ - uid: 10719
+ components:
+ - type: Transform
+ pos: 72.5,48.5
+ parent: 1
+ - uid: 10720
+ components:
+ - type: Transform
+ pos: 88.5,36.5
+ parent: 1
+ - uid: 10721
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 1
+ - uid: 10791
+ components:
+ - type: Transform
+ pos: 63.5,40.5
+ parent: 1
+ - uid: 10901
+ components:
+ - type: Transform
+ pos: 63.5,37.5
+ parent: 1
+ - uid: 11118
+ components:
+ - type: Transform
+ pos: 36.5,66.5
+ parent: 1
+ - uid: 11119
+ components:
+ - type: Transform
+ pos: 36.5,67.5
+ parent: 1
+ - uid: 11120
+ components:
+ - type: Transform
+ pos: 33.5,67.5
+ parent: 1
+ - uid: 11121
+ components:
+ - type: Transform
+ pos: 34.5,67.5
+ parent: 1
+ - uid: 11122
+ components:
+ - type: Transform
+ pos: 35.5,67.5
+ parent: 1
+ - uid: 11123
+ components:
+ - type: Transform
+ pos: 37.5,67.5
+ parent: 1
+ - uid: 11124
+ components:
+ - type: Transform
+ pos: 38.5,67.5
+ parent: 1
+ - uid: 11125
+ components:
+ - type: Transform
+ pos: 40.5,67.5
+ parent: 1
+ - uid: 11126
+ components:
+ - type: Transform
+ pos: 39.5,67.5
+ parent: 1
+ - uid: 11127
+ components:
+ - type: Transform
+ pos: 36.5,69.5
+ parent: 1
+ - uid: 11128
+ components:
+ - type: Transform
+ pos: 36.5,71.5
+ parent: 1
+ - uid: 11129
+ components:
+ - type: Transform
+ pos: 36.5,70.5
+ parent: 1
+ - uid: 11130
+ components:
+ - type: Transform
+ pos: 35.5,71.5
+ parent: 1
+ - uid: 11131
+ components:
+ - type: Transform
+ pos: 34.5,71.5
+ parent: 1
+ - uid: 11132
+ components:
+ - type: Transform
+ pos: 33.5,71.5
+ parent: 1
+ - uid: 11133
+ components:
+ - type: Transform
+ pos: 33.5,72.5
+ parent: 1
+ - uid: 11134
+ components:
+ - type: Transform
+ pos: 33.5,73.5
+ parent: 1
+ - uid: 11135
+ components:
+ - type: Transform
+ pos: 33.5,74.5
+ parent: 1
+ - uid: 11136
+ components:
+ - type: Transform
+ pos: 33.5,75.5
+ parent: 1
+ - uid: 11137
+ components:
+ - type: Transform
+ pos: 34.5,75.5
+ parent: 1
+ - uid: 11138
+ components:
+ - type: Transform
+ pos: 35.5,75.5
+ parent: 1
+ - uid: 11139
+ components:
+ - type: Transform
+ pos: 36.5,75.5
+ parent: 1
+ - uid: 11140
+ components:
+ - type: Transform
+ pos: 37.5,75.5
+ parent: 1
+ - uid: 11141
+ components:
+ - type: Transform
+ pos: 39.5,75.5
+ parent: 1
+ - uid: 11142
+ components:
+ - type: Transform
+ pos: 38.5,75.5
+ parent: 1
+ - uid: 11143
+ components:
+ - type: Transform
+ pos: 39.5,74.5
+ parent: 1
+ - uid: 11144
+ components:
+ - type: Transform
+ pos: 39.5,73.5
+ parent: 1
+ - uid: 11145
+ components:
+ - type: Transform
+ pos: 39.5,72.5
+ parent: 1
+ - uid: 11146
+ components:
+ - type: Transform
+ pos: 39.5,71.5
+ parent: 1
+ - uid: 11147
+ components:
+ - type: Transform
+ pos: 38.5,71.5
+ parent: 1
+ - uid: 11148
+ components:
+ - type: Transform
+ pos: 37.5,71.5
+ parent: 1
+ - uid: 11149
+ components:
+ - type: Transform
+ pos: 45.5,67.5
+ parent: 1
+ - uid: 11150
+ components:
+ - type: Transform
+ pos: 44.5,67.5
+ parent: 1
+ - uid: 11151
+ components:
+ - type: Transform
+ pos: 43.5,67.5
+ parent: 1
+ - uid: 11152
+ components:
+ - type: Transform
+ pos: 43.5,68.5
+ parent: 1
+ - uid: 11153
+ components:
+ - type: Transform
+ pos: 43.5,69.5
+ parent: 1
+ - uid: 11154
+ components:
+ - type: Transform
+ pos: 43.5,70.5
+ parent: 1
+ - uid: 11155
+ components:
+ - type: Transform
+ pos: 43.5,71.5
+ parent: 1
+ - uid: 11156
+ components:
+ - type: Transform
+ pos: 43.5,72.5
+ parent: 1
+ - uid: 11157
+ components:
+ - type: Transform
+ pos: 43.5,73.5
+ parent: 1
+ - uid: 11158
+ components:
+ - type: Transform
+ pos: 43.5,74.5
+ parent: 1
+ - uid: 11159
+ components:
+ - type: Transform
+ pos: 43.5,75.5
+ parent: 1
+ - uid: 11171
+ components:
+ - type: Transform
+ pos: 99.5,36.5
+ parent: 1
+ - uid: 11184
+ components:
+ - type: Transform
+ pos: 49.5,67.5
+ parent: 1
+ - uid: 11185
+ components:
+ - type: Transform
+ pos: 49.5,66.5
+ parent: 1
+ - uid: 11186
+ components:
+ - type: Transform
+ pos: 49.5,65.5
+ parent: 1
+ - uid: 11187
+ components:
+ - type: Transform
+ pos: 49.5,64.5
+ parent: 1
+ - uid: 11188
+ components:
+ - type: Transform
+ pos: 48.5,64.5
+ parent: 1
+ - uid: 11189
+ components:
+ - type: Transform
+ pos: 47.5,64.5
+ parent: 1
+ - uid: 11190
+ components:
+ - type: Transform
+ pos: 47.5,63.5
+ parent: 1
+ - uid: 11191
+ components:
+ - type: Transform
+ pos: 50.5,64.5
+ parent: 1
+ - uid: 11192
+ components:
+ - type: Transform
+ pos: 43.5,63.5
+ parent: 1
+ - uid: 11193
+ components:
+ - type: Transform
+ pos: 43.5,62.5
+ parent: 1
+ - uid: 11194
+ components:
+ - type: Transform
+ pos: 43.5,61.5
+ parent: 1
+ - uid: 11195
+ components:
+ - type: Transform
+ pos: 43.5,60.5
+ parent: 1
+ - uid: 11196
+ components:
+ - type: Transform
+ pos: 43.5,59.5
+ parent: 1
+ - uid: 11197
+ components:
+ - type: Transform
+ pos: 43.5,58.5
+ parent: 1
+ - uid: 11198
+ components:
+ - type: Transform
+ pos: 43.5,57.5
+ parent: 1
+ - uid: 11199
+ components:
+ - type: Transform
+ pos: 43.5,56.5
+ parent: 1
+ - uid: 11200
+ components:
+ - type: Transform
+ pos: 43.5,55.5
+ parent: 1
+ - uid: 11201
+ components:
+ - type: Transform
+ pos: 43.5,54.5
+ parent: 1
+ - uid: 11202
+ components:
+ - type: Transform
+ pos: 43.5,52.5
+ parent: 1
+ - uid: 11203
+ components:
+ - type: Transform
+ pos: 43.5,51.5
+ parent: 1
+ - uid: 11204
+ components:
+ - type: Transform
+ pos: 43.5,53.5
+ parent: 1
+ - uid: 11205
+ components:
+ - type: Transform
+ pos: 43.5,49.5
+ parent: 1
+ - uid: 11206
+ components:
+ - type: Transform
+ pos: 43.5,50.5
+ parent: 1
+ - uid: 11208
+ components:
+ - type: Transform
+ pos: 43.5,48.5
+ parent: 1
+ - uid: 11209
+ components:
+ - type: Transform
+ pos: 32.5,50.5
+ parent: 1
+ - uid: 11210
+ components:
+ - type: Transform
+ pos: 33.5,50.5
+ parent: 1
+ - uid: 11211
+ components:
+ - type: Transform
+ pos: 34.5,50.5
+ parent: 1
+ - uid: 11212
+ components:
+ - type: Transform
+ pos: 34.5,51.5
+ parent: 1
+ - uid: 11213
+ components:
+ - type: Transform
+ pos: 34.5,52.5
+ parent: 1
+ - uid: 11214
+ components:
+ - type: Transform
+ pos: 34.5,53.5
+ parent: 1
+ - uid: 11215
+ components:
+ - type: Transform
+ pos: 34.5,54.5
+ parent: 1
+ - uid: 11216
+ components:
+ - type: Transform
+ pos: 34.5,55.5
+ parent: 1
+ - uid: 11217
+ components:
+ - type: Transform
+ pos: 34.5,56.5
+ parent: 1
+ - uid: 11218
+ components:
+ - type: Transform
+ pos: 34.5,58.5
+ parent: 1
+ - uid: 11219
+ components:
+ - type: Transform
+ pos: 34.5,59.5
+ parent: 1
+ - uid: 11220
+ components:
+ - type: Transform
+ pos: 34.5,60.5
+ parent: 1
+ - uid: 11221
+ components:
+ - type: Transform
+ pos: 34.5,61.5
+ parent: 1
+ - uid: 11222
+ components:
+ - type: Transform
+ pos: 34.5,62.5
+ parent: 1
+ - uid: 11223
+ components:
+ - type: Transform
+ pos: 34.5,57.5
+ parent: 1
+ - uid: 11224
+ components:
+ - type: Transform
+ pos: 35.5,62.5
+ parent: 1
+ - uid: 11225
+ components:
+ - type: Transform
+ pos: 36.5,62.5
+ parent: 1
+ - uid: 11226
+ components:
+ - type: Transform
+ pos: 37.5,62.5
+ parent: 1
+ - uid: 11227
+ components:
+ - type: Transform
+ pos: 38.5,62.5
+ parent: 1
+ - uid: 11228
+ components:
+ - type: Transform
+ pos: 38.5,61.5
+ parent: 1
+ - uid: 11229
+ components:
+ - type: Transform
+ pos: 38.5,60.5
+ parent: 1
+ - uid: 11230
+ components:
+ - type: Transform
+ pos: 38.5,59.5
+ parent: 1
+ - uid: 11231
+ components:
+ - type: Transform
+ pos: 38.5,58.5
+ parent: 1
+ - uid: 11232
+ components:
+ - type: Transform
+ pos: 38.5,57.5
+ parent: 1
+ - uid: 11233
+ components:
+ - type: Transform
+ pos: 38.5,56.5
+ parent: 1
+ - uid: 11234
+ components:
+ - type: Transform
+ pos: 38.5,54.5
+ parent: 1
+ - uid: 11235
+ components:
+ - type: Transform
+ pos: 38.5,55.5
+ parent: 1
+ - uid: 11236
+ components:
+ - type: Transform
+ pos: 38.5,53.5
+ parent: 1
+ - uid: 11237
+ components:
+ - type: Transform
+ pos: 38.5,52.5
+ parent: 1
+ - uid: 11238
+ components:
+ - type: Transform
+ pos: 37.5,52.5
+ parent: 1
+ - uid: 11239
+ components:
+ - type: Transform
+ pos: 36.5,52.5
+ parent: 1
+ - uid: 11240
+ components:
+ - type: Transform
+ pos: 35.5,52.5
+ parent: 1
+ - uid: 11241
+ components:
+ - type: Transform
+ pos: 38.5,51.5
+ parent: 1
+ - uid: 11242
+ components:
+ - type: Transform
+ pos: 38.5,50.5
+ parent: 1
+ - uid: 11243
+ components:
+ - type: Transform
+ pos: 39.5,50.5
+ parent: 1
+ - uid: 11244
+ components:
+ - type: Transform
+ pos: 54.5,60.5
+ parent: 1
+ - uid: 11245
+ components:
+ - type: Transform
+ pos: 53.5,60.5
+ parent: 1
+ - uid: 11246
+ components:
+ - type: Transform
+ pos: 52.5,60.5
+ parent: 1
+ - uid: 11247
+ components:
+ - type: Transform
+ pos: 52.5,59.5
+ parent: 1
+ - uid: 11248
+ components:
+ - type: Transform
+ pos: 52.5,58.5
+ parent: 1
+ - uid: 11249
+ components:
+ - type: Transform
+ pos: 52.5,57.5
+ parent: 1
+ - uid: 11250
+ components:
+ - type: Transform
+ pos: 52.5,56.5
+ parent: 1
+ - uid: 11251
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 1
+ - uid: 11252
+ components:
+ - type: Transform
+ pos: 50.5,55.5
+ parent: 1
+ - uid: 11253
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 1
+ - uid: 11254
+ components:
+ - type: Transform
+ pos: 48.5,55.5
+ parent: 1
+ - uid: 11255
+ components:
+ - type: Transform
+ pos: 47.5,55.5
+ parent: 1
+ - uid: 11259
+ components:
+ - type: Transform
+ pos: 47.5,49.5
+ parent: 1
+ - uid: 11261
+ components:
+ - type: Transform
+ pos: 47.5,56.5
+ parent: 1
+ - uid: 11262
+ components:
+ - type: Transform
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 11263
+ components:
+ - type: Transform
+ pos: 47.5,58.5
+ parent: 1
+ - uid: 11264
+ components:
+ - type: Transform
+ pos: 47.5,59.5
+ parent: 1
+ - uid: 11265
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 1
+ - uid: 11267
+ components:
+ - type: Transform
+ pos: 62.5,57.5
+ parent: 1
+ - uid: 11268
+ components:
+ - type: Transform
+ pos: 61.5,57.5
+ parent: 1
+ - uid: 11269
+ components:
+ - type: Transform
+ pos: 61.5,58.5
+ parent: 1
+ - uid: 11270
+ components:
+ - type: Transform
+ pos: 60.5,58.5
+ parent: 1
+ - uid: 11271
+ components:
+ - type: Transform
+ pos: 59.5,58.5
+ parent: 1
+ - uid: 11272
+ components:
+ - type: Transform
+ pos: 58.5,58.5
+ parent: 1
+ - uid: 11273
+ components:
+ - type: Transform
+ pos: 57.5,58.5
+ parent: 1
+ - uid: 11274
+ components:
+ - type: Transform
+ pos: 56.5,58.5
+ parent: 1
+ - uid: 11275
+ components:
+ - type: Transform
+ pos: 56.5,57.5
+ parent: 1
+ - uid: 11276
+ components:
+ - type: Transform
+ pos: 56.5,56.5
+ parent: 1
+ - uid: 11277
+ components:
+ - type: Transform
+ pos: 56.5,55.5
+ parent: 1
+ - uid: 11278
+ components:
+ - type: Transform
+ pos: 57.5,55.5
+ parent: 1
+ - uid: 11279
+ components:
+ - type: Transform
+ pos: 58.5,55.5
+ parent: 1
+ - uid: 11280
+ components:
+ - type: Transform
+ pos: 59.5,55.5
+ parent: 1
+ - uid: 11281
+ components:
+ - type: Transform
+ pos: 60.5,55.5
+ parent: 1
+ - uid: 11282
+ components:
+ - type: Transform
+ pos: 61.5,55.5
+ parent: 1
+ - uid: 11283
+ components:
+ - type: Transform
+ pos: 61.5,56.5
+ parent: 1
+ - uid: 11285
+ components:
+ - type: Transform
+ pos: 54.5,51.5
+ parent: 1
+ - uid: 11286
+ components:
+ - type: Transform
+ pos: 55.5,51.5
+ parent: 1
+ - uid: 11287
+ components:
+ - type: Transform
+ pos: 56.5,51.5
+ parent: 1
+ - uid: 11288
+ components:
+ - type: Transform
+ pos: 57.5,51.5
+ parent: 1
+ - uid: 11289
+ components:
+ - type: Transform
+ pos: 58.5,51.5
+ parent: 1
+ - uid: 11290
+ components:
+ - type: Transform
+ pos: 59.5,51.5
+ parent: 1
+ - uid: 11291
+ components:
+ - type: Transform
+ pos: 60.5,51.5
+ parent: 1
+ - uid: 11293
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 11294
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 11295
+ components:
+ - type: Transform
+ pos: 52.5,48.5
+ parent: 1
+ - uid: 11296
+ components:
+ - type: Transform
+ pos: 52.5,47.5
+ parent: 1
+ - uid: 11297
+ components:
+ - type: Transform
+ pos: 53.5,47.5
+ parent: 1
+ - uid: 11298
+ components:
+ - type: Transform
+ pos: 55.5,47.5
+ parent: 1
+ - uid: 11299
+ components:
+ - type: Transform
+ pos: 54.5,47.5
+ parent: 1
+ - uid: 11300
+ components:
+ - type: Transform
+ pos: 55.5,46.5
+ parent: 1
+ - uid: 11301
+ components:
+ - type: Transform
+ pos: 55.5,45.5
+ parent: 1
+ - uid: 11302
+ components:
+ - type: Transform
+ pos: 55.5,44.5
+ parent: 1
+ - uid: 11303
+ components:
+ - type: Transform
+ pos: 55.5,43.5
+ parent: 1
+ - uid: 11304
+ components:
+ - type: Transform
+ pos: 55.5,42.5
+ parent: 1
+ - uid: 11305
+ components:
+ - type: Transform
+ pos: 55.5,41.5
+ parent: 1
+ - uid: 11306
+ components:
+ - type: Transform
+ pos: 55.5,40.5
+ parent: 1
+ - uid: 11307
+ components:
+ - type: Transform
+ pos: 55.5,38.5
+ parent: 1
+ - uid: 11308
+ components:
+ - type: Transform
+ pos: 55.5,39.5
+ parent: 1
+ - uid: 11309
+ components:
+ - type: Transform
+ pos: 55.5,36.5
+ parent: 1
+ - uid: 11310
+ components:
+ - type: Transform
+ pos: 55.5,35.5
+ parent: 1
+ - uid: 11311
+ components:
+ - type: Transform
+ pos: 55.5,34.5
+ parent: 1
+ - uid: 11312
+ components:
+ - type: Transform
+ pos: 55.5,37.5
+ parent: 1
+ - uid: 11313
+ components:
+ - type: Transform
+ pos: 56.5,34.5
+ parent: 1
+ - uid: 11314
+ components:
+ - type: Transform
+ pos: 57.5,34.5
+ parent: 1
+ - uid: 11315
+ components:
+ - type: Transform
+ pos: 57.5,33.5
+ parent: 1
+ - uid: 11316
+ components:
+ - type: Transform
+ pos: 58.5,33.5
+ parent: 1
+ - uid: 11317
+ components:
+ - type: Transform
+ pos: 59.5,33.5
+ parent: 1
+ - uid: 11318
+ components:
+ - type: Transform
+ pos: 59.5,32.5
+ parent: 1
+ - uid: 11319
+ components:
+ - type: Transform
+ pos: 59.5,31.5
+ parent: 1
+ - uid: 11320
+ components:
+ - type: Transform
+ pos: 60.5,31.5
+ parent: 1
+ - uid: 11321
+ components:
+ - type: Transform
+ pos: 60.5,30.5
+ parent: 1
+ - uid: 11322
+ components:
+ - type: Transform
+ pos: 60.5,29.5
+ parent: 1
+ - uid: 11323
+ components:
+ - type: Transform
+ pos: 61.5,29.5
+ parent: 1
+ - uid: 11324
+ components:
+ - type: Transform
+ pos: 61.5,28.5
+ parent: 1
+ - uid: 11325
+ components:
+ - type: Transform
+ pos: 61.5,27.5
+ parent: 1
+ - uid: 11326
+ components:
+ - type: Transform
+ pos: 61.5,26.5
+ parent: 1
+ - uid: 11327
+ components:
+ - type: Transform
+ pos: 61.5,25.5
+ parent: 1
+ - uid: 11328
+ components:
+ - type: Transform
+ pos: 61.5,24.5
+ parent: 1
+ - uid: 11329
+ components:
+ - type: Transform
+ pos: 61.5,23.5
+ parent: 1
+ - uid: 11330
+ components:
+ - type: Transform
+ pos: 61.5,22.5
+ parent: 1
+ - uid: 11331
+ components:
+ - type: Transform
+ pos: 61.5,21.5
+ parent: 1
+ - uid: 11332
+ components:
+ - type: Transform
+ pos: 61.5,20.5
+ parent: 1
+ - uid: 11369
+ components:
+ - type: Transform
+ pos: 139.5,86.5
+ parent: 1
+ - uid: 11370
+ components:
+ - type: Transform
+ pos: 139.5,88.5
+ parent: 1
+ - uid: 11421
+ components:
+ - type: Transform
+ pos: 95.5,106.5
+ parent: 1
+ - uid: 11509
+ components:
+ - type: Transform
+ pos: 47.5,62.5
+ parent: 1
+ - uid: 11510
+ components:
+ - type: Transform
+ pos: 43.5,64.5
+ parent: 1
+ - uid: 11511
+ components:
+ - type: Transform
+ pos: 43.5,66.5
+ parent: 1
+ - uid: 11513
+ components:
+ - type: Transform
+ pos: 43.5,76.5
+ parent: 1
+ - uid: 11514
+ components:
+ - type: Transform
+ pos: 40.5,73.5
+ parent: 1
+ - uid: 11515
+ components:
+ - type: Transform
+ pos: 39.5,68.5
+ parent: 1
+ - uid: 11516
+ components:
+ - type: Transform
+ pos: 40.5,50.5
+ parent: 1
+ - uid: 11517
+ components:
+ - type: Transform
+ pos: 42.5,73.5
+ parent: 1
+ - uid: 11518
+ components:
+ - type: Transform
+ pos: 44.5,58.5
+ parent: 1
+ - uid: 11519
+ components:
+ - type: Transform
+ pos: 46.5,49.5
+ parent: 1
+ - uid: 11532
+ components:
+ - type: Transform
+ pos: 115.5,62.5
+ parent: 1
+ - uid: 11864
+ components:
+ - type: Transform
+ pos: 157.5,99.5
+ parent: 1
+ - uid: 11865
+ components:
+ - type: Transform
+ pos: 156.5,99.5
+ parent: 1
+ - uid: 11866
+ components:
+ - type: Transform
+ pos: 155.5,99.5
+ parent: 1
+ - uid: 11902
+ components:
+ - type: Transform
+ pos: 90.5,34.5
+ parent: 1
+ - uid: 11959
+ components:
+ - type: Transform
+ pos: 47.5,70.5
+ parent: 1
+ - uid: 11963
+ components:
+ - type: Transform
+ pos: 46.5,70.5
+ parent: 1
+ - uid: 12013
+ components:
+ - type: Transform
+ pos: 135.5,138.5
+ parent: 1
+ - uid: 12014
+ components:
+ - type: Transform
+ pos: 135.5,139.5
+ parent: 1
+ - uid: 12015
+ components:
+ - type: Transform
+ pos: 135.5,140.5
+ parent: 1
+ - uid: 12042
+ components:
+ - type: Transform
+ pos: 146.5,114.5
+ parent: 1
+ - uid: 12057
+ components:
+ - type: Transform
+ pos: 159.5,112.5
+ parent: 1
+ - uid: 12058
+ components:
+ - type: Transform
+ pos: 158.5,113.5
+ parent: 1
+ - uid: 12059
+ components:
+ - type: Transform
+ pos: 156.5,113.5
+ parent: 1
+ - uid: 12060
+ components:
+ - type: Transform
+ pos: 157.5,113.5
+ parent: 1
+ - uid: 12062
+ components:
+ - type: Transform
+ pos: 155.5,113.5
+ parent: 1
+ - uid: 12171
+ components:
+ - type: Transform
+ pos: 144.5,99.5
+ parent: 1
+ - uid: 12172
+ components:
+ - type: Transform
+ pos: 142.5,99.5
+ parent: 1
+ - uid: 12173
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 12174
+ components:
+ - type: Transform
+ pos: 141.5,99.5
+ parent: 1
+ - uid: 12181
+ components:
+ - type: Transform
+ pos: 144.5,95.5
+ parent: 1
+ - uid: 12182
+ components:
+ - type: Transform
+ pos: 150.5,99.5
+ parent: 1
+ - uid: 12183
+ components:
+ - type: Transform
+ pos: 151.5,99.5
+ parent: 1
+ - uid: 12212
+ components:
+ - type: Transform
+ pos: 152.5,99.5
+ parent: 1
+ - uid: 12476
+ components:
+ - type: Transform
+ pos: 156.5,97.5
+ parent: 1
+ - uid: 12486
+ components:
+ - type: Transform
+ pos: 147.5,96.5
+ parent: 1
+ - uid: 12496
+ components:
+ - type: Transform
+ pos: 147.5,94.5
+ parent: 1
+ - uid: 12498
+ components:
+ - type: Transform
+ pos: 148.5,95.5
+ parent: 1
+ - uid: 12499
+ components:
+ - type: Transform
+ pos: 150.5,95.5
+ parent: 1
+ - uid: 12500
+ components:
+ - type: Transform
+ pos: 148.5,89.5
+ parent: 1
+ - uid: 12502
+ components:
+ - type: Transform
+ pos: 149.5,89.5
+ parent: 1
+ - uid: 12509
+ components:
+ - type: Transform
+ pos: 37.5,122.5
+ parent: 1
+ - uid: 12549
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 12550
+ components:
+ - type: Transform
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 12555
+ components:
+ - type: Transform
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 12575
+ components:
+ - type: Transform
+ pos: 157.5,55.5
+ parent: 1
+ - uid: 12576
+ components:
+ - type: Transform
+ pos: 158.5,48.5
+ parent: 1
+ - uid: 12580
+ components:
+ - type: Transform
+ pos: 88.5,34.5
+ parent: 1
+ - uid: 12581
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - uid: 12632
+ components:
+ - type: Transform
+ pos: 102.5,35.5
+ parent: 1
+ - uid: 12633
+ components:
+ - type: Transform
+ pos: 104.5,35.5
+ parent: 1
+ - uid: 12634
+ components:
+ - type: Transform
+ pos: 103.5,35.5
+ parent: 1
+ - uid: 12635
+ components:
+ - type: Transform
+ pos: 90.5,33.5
+ parent: 1
+ - uid: 12636
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 12637
+ components:
+ - type: Transform
+ pos: 88.5,35.5
+ parent: 1
+ - uid: 12638
+ components:
+ - type: Transform
+ pos: 107.5,35.5
+ parent: 1
+ - uid: 12639
+ components:
+ - type: Transform
+ pos: 99.5,35.5
+ parent: 1
+ - uid: 12640
+ components:
+ - type: Transform
+ pos: 93.5,35.5
+ parent: 1
+ - uid: 12641
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 12642
+ components:
+ - type: Transform
+ pos: 93.5,36.5
+ parent: 1
+ - uid: 12644
+ components:
+ - type: Transform
+ pos: 88.5,33.5
+ parent: 1
+ - uid: 12702
+ components:
+ - type: Transform
+ pos: 107.5,41.5
+ parent: 1
+ - uid: 12705
+ components:
+ - type: Transform
+ pos: 105.5,39.5
+ parent: 1
+ - uid: 12728
+ components:
+ - type: Transform
+ pos: 115.5,39.5
+ parent: 1
+ - uid: 13022
+ components:
+ - type: Transform
+ pos: 42.5,24.5
+ parent: 1
+ - uid: 13023
+ components:
+ - type: Transform
+ pos: 43.5,24.5
+ parent: 1
+ - uid: 13024
+ components:
+ - type: Transform
+ pos: 44.5,24.5
+ parent: 1
+ - uid: 13025
+ components:
+ - type: Transform
+ pos: 45.5,24.5
+ parent: 1
+ - uid: 13026
+ components:
+ - type: Transform
+ pos: 45.5,23.5
+ parent: 1
+ - uid: 13027
+ components:
+ - type: Transform
+ pos: 45.5,22.5
+ parent: 1
+ - uid: 13028
+ components:
+ - type: Transform
+ pos: 45.5,21.5
+ parent: 1
+ - uid: 13029
+ components:
+ - type: Transform
+ pos: 44.5,21.5
+ parent: 1
+ - uid: 13030
+ components:
+ - type: Transform
+ pos: 43.5,21.5
+ parent: 1
+ - uid: 13031
+ components:
+ - type: Transform
+ pos: 45.5,25.5
+ parent: 1
+ - uid: 13032
+ components:
+ - type: Transform
+ pos: 45.5,26.5
+ parent: 1
+ - uid: 13033
+ components:
+ - type: Transform
+ pos: 45.5,27.5
+ parent: 1
+ - uid: 13034
+ components:
+ - type: Transform
+ pos: 44.5,27.5
+ parent: 1
+ - uid: 13035
+ components:
+ - type: Transform
+ pos: 43.5,27.5
+ parent: 1
+ - uid: 13036
+ components:
+ - type: Transform
+ pos: 46.5,24.5
+ parent: 1
+ - uid: 13037
+ components:
+ - type: Transform
+ pos: 48.5,31.5
+ parent: 1
+ - uid: 13038
+ components:
+ - type: Transform
+ pos: 48.5,31.5
+ parent: 1
+ - uid: 13039
+ components:
+ - type: Transform
+ pos: 48.5,29.5
+ parent: 1
+ - uid: 13040
+ components:
+ - type: Transform
+ pos: 48.5,28.5
+ parent: 1
+ - uid: 13041
+ components:
+ - type: Transform
+ pos: 48.5,30.5
+ parent: 1
+ - uid: 13042
+ components:
+ - type: Transform
+ pos: 49.5,28.5
+ parent: 1
+ - uid: 13043
+ components:
+ - type: Transform
+ pos: 49.5,27.5
+ parent: 1
+ - uid: 13044
+ components:
+ - type: Transform
+ pos: 49.5,26.5
+ parent: 1
+ - uid: 13045
+ components:
+ - type: Transform
+ pos: 49.5,25.5
+ parent: 1
+ - uid: 13046
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 1
+ - uid: 13047
+ components:
+ - type: Transform
+ pos: 49.5,23.5
+ parent: 1
+ - uid: 13048
+ components:
+ - type: Transform
+ pos: 49.5,22.5
+ parent: 1
+ - uid: 13049
+ components:
+ - type: Transform
+ pos: 49.5,20.5
+ parent: 1
+ - uid: 13050
+ components:
+ - type: Transform
+ pos: 49.5,21.5
+ parent: 1
+ - uid: 13051
+ components:
+ - type: Transform
+ pos: 48.5,20.5
+ parent: 1
+ - uid: 13052
+ components:
+ - type: Transform
+ pos: 48.5,19.5
+ parent: 1
+ - uid: 13053
+ components:
+ - type: Transform
+ pos: 48.5,18.5
+ parent: 1
+ - uid: 13054
+ components:
+ - type: Transform
+ pos: 48.5,17.5
+ parent: 1
+ - uid: 13055
+ components:
+ - type: Transform
+ pos: 50.5,24.5
+ parent: 1
+ - uid: 13056
+ components:
+ - type: Transform
+ pos: 51.5,24.5
+ parent: 1
+ - uid: 13057
+ components:
+ - type: Transform
+ pos: 52.5,24.5
+ parent: 1
+ - uid: 13058
+ components:
+ - type: Transform
+ pos: 53.5,24.5
+ parent: 1
+ - uid: 13059
+ components:
+ - type: Transform
+ pos: 54.5,24.5
+ parent: 1
+ - uid: 13060
+ components:
+ - type: Transform
+ pos: 54.5,23.5
+ parent: 1
+ - uid: 13061
+ components:
+ - type: Transform
+ pos: 54.5,22.5
+ parent: 1
+ - uid: 13062
+ components:
+ - type: Transform
+ pos: 54.5,21.5
+ parent: 1
+ - uid: 13063
+ components:
+ - type: Transform
+ pos: 54.5,20.5
+ parent: 1
+ - uid: 13064
+ components:
+ - type: Transform
+ pos: 54.5,19.5
+ parent: 1
+ - uid: 13065
+ components:
+ - type: Transform
+ pos: 53.5,19.5
+ parent: 1
+ - uid: 13066
+ components:
+ - type: Transform
+ pos: 52.5,19.5
+ parent: 1
+ - uid: 13067
+ components:
+ - type: Transform
+ pos: 55.5,19.5
+ parent: 1
+ - uid: 13068
+ components:
+ - type: Transform
+ pos: 55.5,29.5
+ parent: 1
+ - uid: 13069
+ components:
+ - type: Transform
+ pos: 54.5,29.5
+ parent: 1
+ - uid: 13070
+ components:
+ - type: Transform
+ pos: 53.5,29.5
+ parent: 1
+ - uid: 13071
+ components:
+ - type: Transform
+ pos: 52.5,29.5
+ parent: 1
+ - uid: 13072
+ components:
+ - type: Transform
+ pos: 54.5,28.5
+ parent: 1
+ - uid: 13073
+ components:
+ - type: Transform
+ pos: 54.5,27.5
+ parent: 1
+ - uid: 13074
+ components:
+ - type: Transform
+ pos: 54.5,26.5
+ parent: 1
+ - uid: 13075
+ components:
+ - type: Transform
+ pos: 54.5,25.5
+ parent: 1
+ - uid: 13076
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - uid: 13077
+ components:
+ - type: Transform
+ pos: 51.5,33.5
+ parent: 1
+ - uid: 13078
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 1
+ - uid: 13079
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 13080
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 1
+ - uid: 13081
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1
+ - uid: 13082
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+ - uid: 13083
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1
+ - uid: 13084
+ components:
+ - type: Transform
+ pos: 51.5,41.5
+ parent: 1
+ - uid: 13085
+ components:
+ - type: Transform
+ pos: 51.5,37.5
+ parent: 1
+ - uid: 13086
+ components:
+ - type: Transform
+ pos: 51.5,42.5
+ parent: 1
+ - uid: 13087
+ components:
+ - type: Transform
+ pos: 51.5,43.5
+ parent: 1
+ - uid: 13135
+ components:
+ - type: Transform
+ pos: 55.5,24.5
+ parent: 1
+ - uid: 13136
+ components:
+ - type: Transform
+ pos: 56.5,24.5
+ parent: 1
+ - uid: 13137
+ components:
+ - type: Transform
+ pos: 57.5,24.5
+ parent: 1
+ - uid: 13138
+ components:
+ - type: Transform
+ pos: 58.5,24.5
+ parent: 1
+ - uid: 13178
+ components:
+ - type: Transform
+ pos: 49.5,38.5
+ parent: 1
+ - uid: 13180
+ components:
+ - type: Transform
+ pos: 50.5,38.5
+ parent: 1
+ - uid: 13181
+ components:
+ - type: Transform
+ pos: 48.5,38.5
+ parent: 1
+ - uid: 13182
+ components:
+ - type: Transform
+ pos: 47.5,38.5
+ parent: 1
+ - uid: 13183
+ components:
+ - type: Transform
+ pos: 46.5,38.5
+ parent: 1
+ - uid: 13184
+ components:
+ - type: Transform
+ pos: 44.5,38.5
+ parent: 1
+ - uid: 13185
+ components:
+ - type: Transform
+ pos: 45.5,38.5
+ parent: 1
+ - uid: 13186
+ components:
+ - type: Transform
+ pos: 47.5,39.5
+ parent: 1
+ - uid: 13187
+ components:
+ - type: Transform
+ pos: 47.5,40.5
+ parent: 1
+ - uid: 13188
+ components:
+ - type: Transform
+ pos: 47.5,41.5
+ parent: 1
+ - uid: 13189
+ components:
+ - type: Transform
+ pos: 47.5,42.5
+ parent: 1
+ - uid: 13190
+ components:
+ - type: Transform
+ pos: 47.5,37.5
+ parent: 1
+ - uid: 13191
+ components:
+ - type: Transform
+ pos: 47.5,36.5
+ parent: 1
+ - uid: 13192
+ components:
+ - type: Transform
+ pos: 51.5,46.5
+ parent: 1
+ - uid: 13193
+ components:
+ - type: Transform
+ pos: 50.5,46.5
+ parent: 1
+ - uid: 13194
+ components:
+ - type: Transform
+ pos: 49.5,46.5
+ parent: 1
+ - uid: 13195
+ components:
+ - type: Transform
+ pos: 48.5,46.5
+ parent: 1
+ - uid: 13196
+ components:
+ - type: Transform
+ pos: 47.5,46.5
+ parent: 1
+ - uid: 13197
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - uid: 13198
+ components:
+ - type: Transform
+ pos: 46.5,45.5
+ parent: 1
+ - uid: 13199
+ components:
+ - type: Transform
+ pos: 45.5,45.5
+ parent: 1
+ - uid: 13200
+ components:
+ - type: Transform
+ pos: 47.5,44.5
+ parent: 1
+ - uid: 13304
+ components:
+ - type: Transform
+ pos: 97.5,48.5
+ parent: 1
+ - uid: 13306
+ components:
+ - type: Transform
+ pos: 124.5,93.5
+ parent: 1
+ - uid: 13307
+ components:
+ - type: Transform
+ pos: 124.5,90.5
+ parent: 1
+ - uid: 13622
+ components:
+ - type: Transform
+ pos: 155.5,146.5
+ parent: 1
+ - uid: 13623
+ components:
+ - type: Transform
+ pos: 157.5,146.5
+ parent: 1
+ - uid: 13624
+ components:
+ - type: Transform
+ pos: 152.5,146.5
+ parent: 1
+ - uid: 13625
+ components:
+ - type: Transform
+ pos: 151.5,146.5
+ parent: 1
+ - uid: 13630
+ components:
+ - type: Transform
+ pos: 137.5,85.5
+ parent: 1
+ - uid: 13683
+ components:
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 1
+ - uid: 13922
+ components:
+ - type: Transform
+ pos: 95.5,124.5
+ parent: 1
+ - uid: 14050
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - uid: 14052
+ components:
+ - type: Transform
+ pos: 97.5,65.5
+ parent: 1
+ - uid: 14053
+ components:
+ - type: Transform
+ pos: 97.5,66.5
+ parent: 1
+ - uid: 14058
+ components:
+ - type: Transform
+ pos: 164.5,141.5
+ parent: 1
+ - uid: 14103
+ components:
+ - type: Transform
+ pos: 114.5,132.5
+ parent: 1
+ - uid: 14176
+ components:
+ - type: Transform
+ pos: 164.5,136.5
+ parent: 1
+ - uid: 14178
+ components:
+ - type: Transform
+ pos: 36.5,122.5
+ parent: 1
+ - uid: 14183
+ components:
+ - type: Transform
+ pos: 165.5,133.5
+ parent: 1
+ - uid: 14189
+ components:
+ - type: Transform
+ pos: 102.5,143.5
+ parent: 1
+ - uid: 14190
+ components:
+ - type: Transform
+ pos: 102.5,142.5
+ parent: 1
+ - uid: 14191
+ components:
+ - type: Transform
+ pos: 102.5,141.5
+ parent: 1
+ - uid: 14192
+ components:
+ - type: Transform
+ pos: 102.5,140.5
+ parent: 1
+ - uid: 14193
+ components:
+ - type: Transform
+ pos: 102.5,139.5
+ parent: 1
+ - uid: 14194
+ components:
+ - type: Transform
+ pos: 102.5,138.5
+ parent: 1
+ - uid: 14195
+ components:
+ - type: Transform
+ pos: 102.5,137.5
+ parent: 1
+ - uid: 14196
+ components:
+ - type: Transform
+ pos: 102.5,136.5
+ parent: 1
+ - uid: 14197
+ components:
+ - type: Transform
+ pos: 102.5,135.5
+ parent: 1
+ - uid: 14198
+ components:
+ - type: Transform
+ pos: 102.5,134.5
+ parent: 1
+ - uid: 14199
+ components:
+ - type: Transform
+ pos: 102.5,133.5
+ parent: 1
+ - uid: 14200
+ components:
+ - type: Transform
+ pos: 102.5,132.5
+ parent: 1
+ - uid: 14201
+ components:
+ - type: Transform
+ pos: 102.5,131.5
+ parent: 1
+ - uid: 14202
+ components:
+ - type: Transform
+ pos: 103.5,131.5
+ parent: 1
+ - uid: 14203
+ components:
+ - type: Transform
+ pos: 104.5,131.5
+ parent: 1
+ - uid: 14204
+ components:
+ - type: Transform
+ pos: 105.5,131.5
+ parent: 1
+ - uid: 14205
+ components:
+ - type: Transform
+ pos: 106.5,131.5
+ parent: 1
+ - uid: 14206
+ components:
+ - type: Transform
+ pos: 107.5,131.5
+ parent: 1
+ - uid: 14207
+ components:
+ - type: Transform
+ pos: 108.5,131.5
+ parent: 1
+ - uid: 14208
+ components:
+ - type: Transform
+ pos: 109.5,131.5
+ parent: 1
+ - uid: 14209
+ components:
+ - type: Transform
+ pos: 110.5,131.5
+ parent: 1
+ - uid: 14210
+ components:
+ - type: Transform
+ pos: 111.5,131.5
+ parent: 1
+ - uid: 14211
+ components:
+ - type: Transform
+ pos: 113.5,131.5
+ parent: 1
+ - uid: 14212
+ components:
+ - type: Transform
+ pos: 114.5,131.5
+ parent: 1
+ - uid: 14213
+ components:
+ - type: Transform
+ pos: 112.5,131.5
+ parent: 1
+ - uid: 14214
+ components:
+ - type: Transform
+ pos: 114.5,133.5
+ parent: 1
+ - uid: 14215
+ components:
+ - type: Transform
+ pos: 114.5,134.5
+ parent: 1
+ - uid: 14216
+ components:
+ - type: Transform
+ pos: 114.5,135.5
+ parent: 1
+ - uid: 14217
+ components:
+ - type: Transform
+ pos: 114.5,136.5
+ parent: 1
+ - uid: 14218
+ components:
+ - type: Transform
+ pos: 114.5,137.5
+ parent: 1
+ - uid: 14219
+ components:
+ - type: Transform
+ pos: 114.5,138.5
+ parent: 1
+ - uid: 14220
+ components:
+ - type: Transform
+ pos: 114.5,139.5
+ parent: 1
+ - uid: 14221
+ components:
+ - type: Transform
+ pos: 114.5,140.5
+ parent: 1
+ - uid: 14222
+ components:
+ - type: Transform
+ pos: 114.5,141.5
+ parent: 1
+ - uid: 14223
+ components:
+ - type: Transform
+ pos: 114.5,142.5
+ parent: 1
+ - uid: 14224
+ components:
+ - type: Transform
+ pos: 114.5,143.5
+ parent: 1
+ - uid: 14225
+ components:
+ - type: Transform
+ pos: 113.5,143.5
+ parent: 1
+ - uid: 14226
+ components:
+ - type: Transform
+ pos: 112.5,143.5
+ parent: 1
+ - uid: 14227
+ components:
+ - type: Transform
+ pos: 111.5,143.5
+ parent: 1
+ - uid: 14228
+ components:
+ - type: Transform
+ pos: 110.5,143.5
+ parent: 1
+ - uid: 14229
+ components:
+ - type: Transform
+ pos: 109.5,143.5
+ parent: 1
+ - uid: 14230
+ components:
+ - type: Transform
+ pos: 108.5,143.5
+ parent: 1
+ - uid: 14231
+ components:
+ - type: Transform
+ pos: 107.5,143.5
+ parent: 1
+ - uid: 14232
+ components:
+ - type: Transform
+ pos: 105.5,143.5
+ parent: 1
+ - uid: 14233
+ components:
+ - type: Transform
+ pos: 104.5,143.5
+ parent: 1
+ - uid: 14234
+ components:
+ - type: Transform
+ pos: 103.5,143.5
+ parent: 1
+ - uid: 14235
+ components:
+ - type: Transform
+ pos: 106.5,143.5
+ parent: 1
+ - uid: 14237
+ components:
+ - type: Transform
+ pos: 114.5,144.5
+ parent: 1
+ - uid: 14238
+ components:
+ - type: Transform
+ pos: 114.5,145.5
+ parent: 1
+ - uid: 14239
+ components:
+ - type: Transform
+ pos: 114.5,146.5
+ parent: 1
+ - uid: 14240
+ components:
+ - type: Transform
+ pos: 114.5,147.5
+ parent: 1
+ - uid: 14241
+ components:
+ - type: Transform
+ pos: 114.5,148.5
+ parent: 1
+ - uid: 14242
+ components:
+ - type: Transform
+ pos: 114.5,149.5
+ parent: 1
+ - uid: 14243
+ components:
+ - type: Transform
+ pos: 114.5,150.5
+ parent: 1
+ - uid: 14244
+ components:
+ - type: Transform
+ pos: 114.5,151.5
+ parent: 1
+ - uid: 14245
+ components:
+ - type: Transform
+ pos: 115.5,151.5
+ parent: 1
+ - uid: 14246
+ components:
+ - type: Transform
+ pos: 116.5,151.5
+ parent: 1
+ - uid: 14247
+ components:
+ - type: Transform
+ pos: 117.5,151.5
+ parent: 1
+ - uid: 14248
+ components:
+ - type: Transform
+ pos: 118.5,151.5
+ parent: 1
+ - uid: 14249
+ components:
+ - type: Transform
+ pos: 119.5,151.5
+ parent: 1
+ - uid: 14250
+ components:
+ - type: Transform
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 14281
+ components:
+ - type: Transform
+ pos: 74.5,115.5
+ parent: 1
+ - uid: 14282
+ components:
+ - type: Transform
+ pos: 74.5,116.5
+ parent: 1
+ - uid: 14311
+ components:
+ - type: Transform
+ pos: 94.5,149.5
+ parent: 1
+ - uid: 14314
+ components:
+ - type: Transform
+ pos: 94.5,150.5
+ parent: 1
+ - uid: 14315
+ components:
+ - type: Transform
+ pos: 94.5,151.5
+ parent: 1
+ - uid: 14316
+ components:
+ - type: Transform
+ pos: 94.5,153.5
+ parent: 1
+ - uid: 14317
+ components:
+ - type: Transform
+ pos: 94.5,154.5
+ parent: 1
+ - uid: 14318
+ components:
+ - type: Transform
+ pos: 94.5,155.5
+ parent: 1
+ - uid: 14319
+ components:
+ - type: Transform
+ pos: 94.5,152.5
+ parent: 1
+ - uid: 14320
+ components:
+ - type: Transform
+ pos: 95.5,155.5
+ parent: 1
+ - uid: 14321
+ components:
+ - type: Transform
+ pos: 96.5,155.5
+ parent: 1
+ - uid: 14322
+ components:
+ - type: Transform
+ pos: 97.5,155.5
+ parent: 1
+ - uid: 14323
+ components:
+ - type: Transform
+ pos: 98.5,155.5
+ parent: 1
+ - uid: 14324
+ components:
+ - type: Transform
+ pos: 99.5,155.5
+ parent: 1
+ - uid: 14325
+ components:
+ - type: Transform
+ pos: 100.5,155.5
+ parent: 1
+ - uid: 14326
+ components:
+ - type: Transform
+ pos: 101.5,155.5
+ parent: 1
+ - uid: 14327
+ components:
+ - type: Transform
+ pos: 102.5,155.5
+ parent: 1
+ - uid: 14328
+ components:
+ - type: Transform
+ pos: 103.5,155.5
+ parent: 1
+ - uid: 14329
+ components:
+ - type: Transform
+ pos: 104.5,155.5
+ parent: 1
+ - uid: 14330
+ components:
+ - type: Transform
+ pos: 105.5,155.5
+ parent: 1
+ - uid: 14331
+ components:
+ - type: Transform
+ pos: 107.5,155.5
+ parent: 1
+ - uid: 14332
+ components:
+ - type: Transform
+ pos: 108.5,155.5
+ parent: 1
+ - uid: 14333
+ components:
+ - type: Transform
+ pos: 106.5,155.5
+ parent: 1
+ - uid: 14334
+ components:
+ - type: Transform
+ pos: 109.5,155.5
+ parent: 1
+ - uid: 14335
+ components:
+ - type: Transform
+ pos: 110.5,155.5
+ parent: 1
+ - uid: 14336
+ components:
+ - type: Transform
+ pos: 111.5,155.5
+ parent: 1
+ - uid: 14337
+ components:
+ - type: Transform
+ pos: 112.5,155.5
+ parent: 1
+ - uid: 14338
+ components:
+ - type: Transform
+ pos: 113.5,155.5
+ parent: 1
+ - uid: 14339
+ components:
+ - type: Transform
+ pos: 114.5,155.5
+ parent: 1
+ - uid: 14340
+ components:
+ - type: Transform
+ pos: 115.5,155.5
+ parent: 1
+ - uid: 14341
+ components:
+ - type: Transform
+ pos: 116.5,155.5
+ parent: 1
+ - uid: 14342
+ components:
+ - type: Transform
+ pos: 117.5,155.5
+ parent: 1
+ - uid: 14343
+ components:
+ - type: Transform
+ pos: 119.5,155.5
+ parent: 1
+ - uid: 14344
+ components:
+ - type: Transform
+ pos: 120.5,155.5
+ parent: 1
+ - uid: 14345
+ components:
+ - type: Transform
+ pos: 121.5,155.5
+ parent: 1
+ - uid: 14346
+ components:
+ - type: Transform
+ pos: 122.5,155.5
+ parent: 1
+ - uid: 14347
+ components:
+ - type: Transform
+ pos: 118.5,155.5
+ parent: 1
+ - uid: 14348
+ components:
+ - type: Transform
+ pos: 122.5,154.5
+ parent: 1
+ - uid: 14349
+ components:
+ - type: Transform
+ pos: 122.5,153.5
+ parent: 1
+ - uid: 14350
+ components:
+ - type: Transform
+ pos: 122.5,152.5
+ parent: 1
+ - uid: 14351
+ components:
+ - type: Transform
+ pos: 122.5,151.5
+ parent: 1
+ - uid: 14352
+ components:
+ - type: Transform
+ pos: 122.5,150.5
+ parent: 1
+ - uid: 14353
+ components:
+ - type: Transform
+ pos: 122.5,149.5
+ parent: 1
+ - uid: 14354
+ components:
+ - type: Transform
+ pos: 114.5,156.5
+ parent: 1
+ - uid: 14355
+ components:
+ - type: Transform
+ pos: 114.5,157.5
+ parent: 1
+ - uid: 14365
+ components:
+ - type: Transform
+ pos: 95.5,136.5
+ parent: 1
+ - uid: 14367
+ components:
+ - type: Transform
+ pos: 96.5,126.5
+ parent: 1
+ - uid: 14368
+ components:
+ - type: Transform
+ pos: 96.5,125.5
+ parent: 1
+ - uid: 14369
+ components:
+ - type: Transform
+ pos: 96.5,124.5
+ parent: 1
+ - uid: 14370
+ components:
+ - type: Transform
+ pos: 97.5,124.5
+ parent: 1
+ - uid: 14371
+ components:
+ - type: Transform
+ pos: 98.5,124.5
+ parent: 1
+ - uid: 14372
+ components:
+ - type: Transform
+ pos: 99.5,124.5
+ parent: 1
+ - uid: 14373
+ components:
+ - type: Transform
+ pos: 100.5,124.5
+ parent: 1
+ - uid: 14374
+ components:
+ - type: Transform
+ pos: 101.5,124.5
+ parent: 1
+ - uid: 14375
+ components:
+ - type: Transform
+ pos: 94.5,124.5
+ parent: 1
+ - uid: 14376
+ components:
+ - type: Transform
+ pos: 94.5,123.5
+ parent: 1
+ - uid: 14377
+ components:
+ - type: Transform
+ pos: 94.5,122.5
+ parent: 1
+ - uid: 14378
+ components:
+ - type: Transform
+ pos: 93.5,122.5
+ parent: 1
+ - uid: 14379
+ components:
+ - type: Transform
+ pos: 92.5,122.5
+ parent: 1
+ - uid: 14380
+ components:
+ - type: Transform
+ pos: 92.5,132.5
+ parent: 1
+ - uid: 14381
+ components:
+ - type: Transform
+ pos: 94.5,132.5
+ parent: 1
+ - uid: 14382
+ components:
+ - type: Transform
+ pos: 93.5,132.5
+ parent: 1
+ - uid: 14383
+ components:
+ - type: Transform
+ pos: 94.5,131.5
+ parent: 1
+ - uid: 14384
+ components:
+ - type: Transform
+ pos: 94.5,130.5
+ parent: 1
+ - uid: 14385
+ components:
+ - type: Transform
+ pos: 94.5,129.5
+ parent: 1
+ - uid: 14386
+ components:
+ - type: Transform
+ pos: 94.5,128.5
+ parent: 1
+ - uid: 14387
+ components:
+ - type: Transform
+ pos: 94.5,127.5
+ parent: 1
+ - uid: 14388
+ components:
+ - type: Transform
+ pos: 94.5,133.5
+ parent: 1
+ - uid: 14389
+ components:
+ - type: Transform
+ pos: 94.5,134.5
+ parent: 1
+ - uid: 14390
+ components:
+ - type: Transform
+ pos: 94.5,135.5
+ parent: 1
+ - uid: 14391
+ components:
+ - type: Transform
+ pos: 94.5,136.5
+ parent: 1
+ - uid: 14392
+ components:
+ - type: Transform
+ pos: 94.5,137.5
+ parent: 1
+ - uid: 14393
+ components:
+ - type: Transform
+ pos: 94.5,138.5
+ parent: 1
+ - uid: 14394
+ components:
+ - type: Transform
+ pos: 94.5,139.5
+ parent: 1
+ - uid: 14395
+ components:
+ - type: Transform
+ pos: 94.5,140.5
+ parent: 1
+ - uid: 14396
+ components:
+ - type: Transform
+ pos: 94.5,141.5
+ parent: 1
+ - uid: 14397
+ components:
+ - type: Transform
+ pos: 94.5,142.5
+ parent: 1
+ - uid: 14398
+ components:
+ - type: Transform
+ pos: 94.5,144.5
+ parent: 1
+ - uid: 14399
+ components:
+ - type: Transform
+ pos: 94.5,145.5
+ parent: 1
+ - uid: 14400
+ components:
+ - type: Transform
+ pos: 94.5,146.5
+ parent: 1
+ - uid: 14401
+ components:
+ - type: Transform
+ pos: 94.5,147.5
+ parent: 1
+ - uid: 14402
+ components:
+ - type: Transform
+ pos: 94.5,143.5
+ parent: 1
+ - uid: 14403
+ components:
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - uid: 14404
+ components:
+ - type: Transform
+ pos: 97.5,136.5
+ parent: 1
+ - uid: 14405
+ components:
+ - type: Transform
+ pos: 97.5,137.5
+ parent: 1
+ - uid: 14406
+ components:
+ - type: Transform
+ pos: 97.5,138.5
+ parent: 1
+ - uid: 14407
+ components:
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - uid: 14408
+ components:
+ - type: Transform
+ pos: 95.5,138.5
+ parent: 1
+ - uid: 14410
+ components:
+ - type: Transform
+ pos: 95.5,145.5
+ parent: 1
+ - uid: 14411
+ components:
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - uid: 14412
+ components:
+ - type: Transform
+ pos: 97.5,145.5
+ parent: 1
+ - uid: 14413
+ components:
+ - type: Transform
+ pos: 98.5,145.5
+ parent: 1
+ - uid: 14414
+ components:
+ - type: Transform
+ pos: 115.5,124.5
+ parent: 1
+ - uid: 14415
+ components:
+ - type: Transform
+ pos: 116.5,124.5
+ parent: 1
+ - uid: 14416
+ components:
+ - type: Transform
+ pos: 117.5,124.5
+ parent: 1
+ - uid: 14417
+ components:
+ - type: Transform
+ pos: 118.5,124.5
+ parent: 1
+ - uid: 14418
+ components:
+ - type: Transform
+ pos: 119.5,124.5
+ parent: 1
+ - uid: 14419
+ components:
+ - type: Transform
+ pos: 120.5,124.5
+ parent: 1
+ - uid: 14420
+ components:
+ - type: Transform
+ pos: 121.5,124.5
+ parent: 1
+ - uid: 14421
+ components:
+ - type: Transform
+ pos: 122.5,124.5
+ parent: 1
+ - uid: 14422
+ components:
+ - type: Transform
+ pos: 122.5,123.5
+ parent: 1
+ - uid: 14423
+ components:
+ - type: Transform
+ pos: 122.5,122.5
+ parent: 1
+ - uid: 14424
+ components:
+ - type: Transform
+ pos: 123.5,122.5
+ parent: 1
+ - uid: 14425
+ components:
+ - type: Transform
+ pos: 120.5,125.5
+ parent: 1
+ - uid: 14426
+ components:
+ - type: Transform
+ pos: 120.5,126.5
+ parent: 1
+ - uid: 14427
+ components:
+ - type: Transform
+ pos: 122.5,127.5
+ parent: 1
+ - uid: 14428
+ components:
+ - type: Transform
+ pos: 122.5,128.5
+ parent: 1
+ - uid: 14429
+ components:
+ - type: Transform
+ pos: 122.5,129.5
+ parent: 1
+ - uid: 14430
+ components:
+ - type: Transform
+ pos: 122.5,131.5
+ parent: 1
+ - uid: 14431
+ components:
+ - type: Transform
+ pos: 122.5,132.5
+ parent: 1
+ - uid: 14432
+ components:
+ - type: Transform
+ pos: 122.5,130.5
+ parent: 1
+ - uid: 14433
+ components:
+ - type: Transform
+ pos: 122.5,134.5
+ parent: 1
+ - uid: 14434
+ components:
+ - type: Transform
+ pos: 122.5,135.5
+ parent: 1
+ - uid: 14435
+ components:
+ - type: Transform
+ pos: 122.5,136.5
+ parent: 1
+ - uid: 14436
+ components:
+ - type: Transform
+ pos: 122.5,137.5
+ parent: 1
+ - uid: 14437
+ components:
+ - type: Transform
+ pos: 122.5,133.5
+ parent: 1
+ - uid: 14438
+ components:
+ - type: Transform
+ pos: 122.5,138.5
+ parent: 1
+ - uid: 14439
+ components:
+ - type: Transform
+ pos: 122.5,140.5
+ parent: 1
+ - uid: 14440
+ components:
+ - type: Transform
+ pos: 122.5,141.5
+ parent: 1
+ - uid: 14441
+ components:
+ - type: Transform
+ pos: 122.5,142.5
+ parent: 1
+ - uid: 14442
+ components:
+ - type: Transform
+ pos: 122.5,143.5
+ parent: 1
+ - uid: 14443
+ components:
+ - type: Transform
+ pos: 122.5,145.5
+ parent: 1
+ - uid: 14444
+ components:
+ - type: Transform
+ pos: 122.5,146.5
+ parent: 1
+ - uid: 14445
+ components:
+ - type: Transform
+ pos: 122.5,139.5
+ parent: 1
+ - uid: 14446
+ components:
+ - type: Transform
+ pos: 122.5,147.5
+ parent: 1
+ - uid: 14447
+ components:
+ - type: Transform
+ pos: 122.5,144.5
+ parent: 1
+ - uid: 14481
+ components:
+ - type: Transform
+ pos: 77.5,115.5
+ parent: 1
+ - uid: 14485
+ components:
+ - type: Transform
+ pos: 134.5,122.5
+ parent: 1
+ - uid: 14486
+ components:
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - uid: 14487
+ components:
+ - type: Transform
+ pos: 134.5,125.5
+ parent: 1
+ - uid: 14488
+ components:
+ - type: Transform
+ pos: 162.5,131.5
+ parent: 1
+ - uid: 14491
+ components:
+ - type: Transform
+ pos: 134.5,123.5
+ parent: 1
+ - uid: 14494
+ components:
+ - type: Transform
+ pos: 135.5,127.5
+ parent: 1
+ - uid: 14495
+ components:
+ - type: Transform
+ pos: 136.5,127.5
+ parent: 1
+ - uid: 14496
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - uid: 14501
+ components:
+ - type: Transform
+ pos: 138.5,122.5
+ parent: 1
+ - uid: 14502
+ components:
+ - type: Transform
+ pos: 138.5,121.5
+ parent: 1
+ - uid: 14504
+ components:
+ - type: Transform
+ pos: 133.5,126.5
+ parent: 1
+ - uid: 14505
+ components:
+ - type: Transform
+ pos: 131.5,126.5
+ parent: 1
+ - uid: 14507
+ components:
+ - type: Transform
+ pos: 135.5,128.5
+ parent: 1
+ - uid: 14508
+ components:
+ - type: Transform
+ pos: 135.5,129.5
+ parent: 1
+ - uid: 14647
+ components:
+ - type: Transform
+ pos: 56.5,144.5
+ parent: 1
+ - uid: 14648
+ components:
+ - type: Transform
+ pos: 56.5,145.5
+ parent: 1
+ - uid: 14656
+ components:
+ - type: Transform
+ pos: 76.5,155.5
+ parent: 1
+ - uid: 14657
+ components:
+ - type: Transform
+ pos: 78.5,155.5
+ parent: 1
+ - uid: 14658
+ components:
+ - type: Transform
+ pos: 81.5,156.5
+ parent: 1
+ - uid: 14689
+ components:
+ - type: Transform
+ pos: 32.5,79.5
+ parent: 1
+ - uid: 14690
+ components:
+ - type: Transform
+ pos: 31.5,79.5
+ parent: 1
+ - uid: 14691
+ components:
+ - type: Transform
+ pos: 30.5,79.5
+ parent: 1
+ - uid: 14692
+ components:
+ - type: Transform
+ pos: 29.5,79.5
+ parent: 1
+ - uid: 14720
+ components:
+ - type: Transform
+ pos: 27.5,74.5
+ parent: 1
+ - uid: 14725
+ components:
+ - type: Transform
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 14958
+ components:
+ - type: Transform
+ pos: 124.5,140.5
+ parent: 1
+ - uid: 14984
+ components:
+ - type: Transform
+ pos: 123.5,163.5
+ parent: 1
+ - uid: 15036
+ components:
+ - type: Transform
+ pos: 111.5,147.5
+ parent: 1
+ - uid: 15045
+ components:
+ - type: Transform
+ pos: 96.5,158.5
+ parent: 1
+ - uid: 15056
+ components:
+ - type: Transform
+ pos: 95.5,158.5
+ parent: 1
+ - uid: 15073
+ components:
+ - type: Transform
+ pos: 111.5,170.5
+ parent: 1
+ - uid: 15084
+ components:
+ - type: Transform
+ pos: 99.5,159.5
+ parent: 1
+ - uid: 15085
+ components:
+ - type: Transform
+ pos: 100.5,159.5
+ parent: 1
+ - uid: 15086
+ components:
+ - type: Transform
+ pos: 101.5,159.5
+ parent: 1
+ - uid: 15088
+ components:
+ - type: Transform
+ pos: 97.5,159.5
+ parent: 1
+ - uid: 15089
+ components:
+ - type: Transform
+ pos: 98.5,159.5
+ parent: 1
+ - uid: 15090
+ components:
+ - type: Transform
+ pos: 96.5,159.5
+ parent: 1
+ - uid: 15097
+ components:
+ - type: Transform
+ pos: 48.5,120.5
+ parent: 1
+ - uid: 15115
+ components:
+ - type: Transform
+ pos: 87.5,156.5
+ parent: 1
+ - uid: 15116
+ components:
+ - type: Transform
+ pos: 88.5,156.5
+ parent: 1
+ - uid: 15117
+ components:
+ - type: Transform
+ pos: 89.5,156.5
+ parent: 1
+ - uid: 15118
+ components:
+ - type: Transform
+ pos: 90.5,156.5
+ parent: 1
+ - uid: 15119
+ components:
+ - type: Transform
+ pos: 90.5,157.5
+ parent: 1
+ - uid: 15121
+ components:
+ - type: Transform
+ pos: 91.5,155.5
+ parent: 1
+ - uid: 15122
+ components:
+ - type: Transform
+ pos: 91.5,154.5
+ parent: 1
+ - uid: 15123
+ components:
+ - type: Transform
+ pos: 91.5,153.5
+ parent: 1
+ - uid: 15124
+ components:
+ - type: Transform
+ pos: 91.5,152.5
+ parent: 1
+ - uid: 15125
+ components:
+ - type: Transform
+ pos: 91.5,151.5
+ parent: 1
+ - uid: 15126
+ components:
+ - type: Transform
+ pos: 91.5,150.5
+ parent: 1
+ - uid: 15127
+ components:
+ - type: Transform
+ pos: 91.5,149.5
+ parent: 1
+ - uid: 15128
+ components:
+ - type: Transform
+ pos: 91.5,148.5
+ parent: 1
+ - uid: 15174
+ components:
+ - type: Transform
+ pos: 130.5,122.5
+ parent: 1
+ - uid: 15175
+ components:
+ - type: Transform
+ pos: 129.5,122.5
+ parent: 1
+ - uid: 15177
+ components:
+ - type: Transform
+ pos: 128.5,122.5
+ parent: 1
+ - uid: 15178
+ components:
+ - type: Transform
+ pos: 128.5,121.5
+ parent: 1
+ - uid: 15179
+ components:
+ - type: Transform
+ pos: 128.5,125.5
+ parent: 1
+ - uid: 15183
+ components:
+ - type: Transform
+ pos: 128.5,129.5
+ parent: 1
+ - uid: 15184
+ components:
+ - type: Transform
+ pos: 129.5,132.5
+ parent: 1
+ - uid: 15185
+ components:
+ - type: Transform
+ pos: 128.5,131.5
+ parent: 1
+ - uid: 15186
+ components:
+ - type: Transform
+ pos: 128.5,132.5
+ parent: 1
+ - uid: 15187
+ components:
+ - type: Transform
+ pos: 127.5,125.5
+ parent: 1
+ - uid: 15188
+ components:
+ - type: Transform
+ pos: 126.5,125.5
+ parent: 1
+ - uid: 15189
+ components:
+ - type: Transform
+ pos: 125.5,125.5
+ parent: 1
+ - uid: 15190
+ components:
+ - type: Transform
+ pos: 125.5,126.5
+ parent: 1
+ - uid: 15191
+ components:
+ - type: Transform
+ pos: 125.5,127.5
+ parent: 1
+ - uid: 15192
+ components:
+ - type: Transform
+ pos: 125.5,128.5
+ parent: 1
+ - uid: 15193
+ components:
+ - type: Transform
+ pos: 125.5,124.5
+ parent: 1
+ - uid: 15194
+ components:
+ - type: Transform
+ pos: 125.5,123.5
+ parent: 1
+ - uid: 15195
+ components:
+ - type: Transform
+ pos: 125.5,122.5
+ parent: 1
+ - uid: 15196
+ components:
+ - type: Transform
+ pos: 129.5,123.5
+ parent: 1
+ - uid: 15197
+ components:
+ - type: Transform
+ pos: 129.5,124.5
+ parent: 1
+ - uid: 15198
+ components:
+ - type: Transform
+ pos: 129.5,125.5
+ parent: 1
+ - uid: 15199
+ components:
+ - type: Transform
+ pos: 129.5,126.5
+ parent: 1
+ - uid: 15200
+ components:
+ - type: Transform
+ pos: 129.5,127.5
+ parent: 1
+ - uid: 15201
+ components:
+ - type: Transform
+ pos: 129.5,128.5
+ parent: 1
+ - uid: 15202
+ components:
+ - type: Transform
+ pos: 129.5,129.5
+ parent: 1
+ - uid: 15215
+ components:
+ - type: Transform
+ pos: 129.5,143.5
+ parent: 1
+ - uid: 15216
+ components:
+ - type: Transform
+ pos: 128.5,143.5
+ parent: 1
+ - uid: 15217
+ components:
+ - type: Transform
+ pos: 128.5,142.5
+ parent: 1
+ - uid: 15218
+ components:
+ - type: Transform
+ pos: 128.5,144.5
+ parent: 1
+ - uid: 15219
+ components:
+ - type: Transform
+ pos: 128.5,145.5
+ parent: 1
+ - uid: 15220
+ components:
+ - type: Transform
+ pos: 129.5,145.5
+ parent: 1
+ - uid: 15221
+ components:
+ - type: Transform
+ pos: 130.5,145.5
+ parent: 1
+ - uid: 15222
+ components:
+ - type: Transform
+ pos: 131.5,145.5
+ parent: 1
+ - uid: 15223
+ components:
+ - type: Transform
+ pos: 127.5,144.5
+ parent: 1
+ - uid: 15224
+ components:
+ - type: Transform
+ pos: 126.5,144.5
+ parent: 1
+ - uid: 15231
+ components:
+ - type: Transform
+ pos: 133.5,138.5
+ parent: 1
+ - uid: 15232
+ components:
+ - type: Transform
+ pos: 132.5,138.5
+ parent: 1
+ - uid: 15233
+ components:
+ - type: Transform
+ pos: 131.5,138.5
+ parent: 1
+ - uid: 15234
+ components:
+ - type: Transform
+ pos: 130.5,138.5
+ parent: 1
+ - uid: 15235
+ components:
+ - type: Transform
+ pos: 129.5,138.5
+ parent: 1
+ - uid: 15236
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - uid: 15237
+ components:
+ - type: Transform
+ pos: 128.5,139.5
+ parent: 1
+ - uid: 15238
+ components:
+ - type: Transform
+ pos: 127.5,139.5
+ parent: 1
+ - uid: 15239
+ components:
+ - type: Transform
+ pos: 126.5,139.5
+ parent: 1
+ - uid: 15240
+ components:
+ - type: Transform
+ pos: 125.5,138.5
+ parent: 1
+ - uid: 15241
+ components:
+ - type: Transform
+ pos: 125.5,136.5
+ parent: 1
+ - uid: 15242
+ components:
+ - type: Transform
+ pos: 126.5,138.5
+ parent: 1
+ - uid: 15243
+ components:
+ - type: Transform
+ pos: 126.5,137.5
+ parent: 1
+ - uid: 15244
+ components:
+ - type: Transform
+ pos: 126.5,136.5
+ parent: 1
+ - uid: 15245
+ components:
+ - type: Transform
+ pos: 126.5,135.5
+ parent: 1
+ - uid: 15246
+ components:
+ - type: Transform
+ pos: 126.5,134.5
+ parent: 1
+ - uid: 15247
+ components:
+ - type: Transform
+ pos: 126.5,133.5
+ parent: 1
+ - uid: 15248
+ components:
+ - type: Transform
+ pos: 126.5,132.5
+ parent: 1
+ - uid: 15249
+ components:
+ - type: Transform
+ pos: 127.5,132.5
+ parent: 1
+ - uid: 15250
+ components:
+ - type: Transform
+ pos: 130.5,132.5
+ parent: 1
+ - uid: 15251
+ components:
+ - type: Transform
+ pos: 131.5,132.5
+ parent: 1
+ - uid: 15252
+ components:
+ - type: Transform
+ pos: 132.5,132.5
+ parent: 1
+ - uid: 15253
+ components:
+ - type: Transform
+ pos: 133.5,132.5
+ parent: 1
+ - uid: 15254
+ components:
+ - type: Transform
+ pos: 134.5,132.5
+ parent: 1
+ - uid: 15255
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - uid: 15256
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - uid: 15257
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - uid: 15258
+ components:
+ - type: Transform
+ pos: 135.5,135.5
+ parent: 1
+ - uid: 15259
+ components:
+ - type: Transform
+ pos: 135.5,136.5
+ parent: 1
+ - uid: 15260
+ components:
+ - type: Transform
+ pos: 134.5,135.5
+ parent: 1
+ - uid: 15261
+ components:
+ - type: Transform
+ pos: 133.5,135.5
+ parent: 1
+ - uid: 15262
+ components:
+ - type: Transform
+ pos: 132.5,135.5
+ parent: 1
+ - uid: 15263
+ components:
+ - type: Transform
+ pos: 131.5,135.5
+ parent: 1
+ - uid: 15264
+ components:
+ - type: Transform
+ pos: 131.5,136.5
+ parent: 1
+ - uid: 15265
+ components:
+ - type: Transform
+ pos: 131.5,137.5
+ parent: 1
+ - uid: 15268
+ components:
+ - type: Transform
+ pos: 35.5,119.5
+ parent: 1
+ - uid: 15269
+ components:
+ - type: Transform
+ pos: 134.5,141.5
+ parent: 1
+ - uid: 15270
+ components:
+ - type: Transform
+ pos: 134.5,142.5
+ parent: 1
+ - uid: 15271
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 15272
+ components:
+ - type: Transform
+ pos: 132.5,142.5
+ parent: 1
+ - uid: 15273
+ components:
+ - type: Transform
+ pos: 131.5,142.5
+ parent: 1
+ - uid: 15369
+ components:
+ - type: Transform
+ pos: 108.5,147.5
+ parent: 1
+ - uid: 15370
+ components:
+ - type: Transform
+ pos: 107.5,147.5
+ parent: 1
+ - uid: 15371
+ components:
+ - type: Transform
+ pos: 106.5,147.5
+ parent: 1
+ - uid: 15372
+ components:
+ - type: Transform
+ pos: 105.5,147.5
+ parent: 1
+ - uid: 15373
+ components:
+ - type: Transform
+ pos: 105.5,148.5
+ parent: 1
+ - uid: 15374
+ components:
+ - type: Transform
+ pos: 105.5,149.5
+ parent: 1
+ - uid: 15375
+ components:
+ - type: Transform
+ pos: 105.5,150.5
+ parent: 1
+ - uid: 15376
+ components:
+ - type: Transform
+ pos: 105.5,151.5
+ parent: 1
+ - uid: 15377
+ components:
+ - type: Transform
+ pos: 105.5,152.5
+ parent: 1
+ - uid: 15378
+ components:
+ - type: Transform
+ pos: 106.5,152.5
+ parent: 1
+ - uid: 15379
+ components:
+ - type: Transform
+ pos: 107.5,152.5
+ parent: 1
+ - uid: 15380
+ components:
+ - type: Transform
+ pos: 108.5,152.5
+ parent: 1
+ - uid: 15381
+ components:
+ - type: Transform
+ pos: 109.5,152.5
+ parent: 1
+ - uid: 15382
+ components:
+ - type: Transform
+ pos: 110.5,152.5
+ parent: 1
+ - uid: 15383
+ components:
+ - type: Transform
+ pos: 111.5,152.5
+ parent: 1
+ - uid: 15384
+ components:
+ - type: Transform
+ pos: 111.5,151.5
+ parent: 1
+ - uid: 15385
+ components:
+ - type: Transform
+ pos: 111.5,150.5
+ parent: 1
+ - uid: 15386
+ components:
+ - type: Transform
+ pos: 111.5,149.5
+ parent: 1
+ - uid: 15387
+ components:
+ - type: Transform
+ pos: 111.5,148.5
+ parent: 1
+ - uid: 15391
+ components:
+ - type: Transform
+ pos: 103.5,149.5
+ parent: 1
+ - uid: 15392
+ components:
+ - type: Transform
+ pos: 104.5,149.5
+ parent: 1
+ - uid: 15418
+ components:
+ - type: Transform
+ pos: 148.5,150.5
+ parent: 1
+ - uid: 15522
+ components:
+ - type: Transform
+ pos: 71.5,125.5
+ parent: 1
+ - uid: 15523
+ components:
+ - type: Transform
+ pos: 71.5,126.5
+ parent: 1
+ - uid: 15524
+ components:
+ - type: Transform
+ pos: 71.5,127.5
+ parent: 1
+ - uid: 15525
+ components:
+ - type: Transform
+ pos: 71.5,128.5
+ parent: 1
+ - uid: 15526
+ components:
+ - type: Transform
+ pos: 71.5,129.5
+ parent: 1
+ - uid: 15527
+ components:
+ - type: Transform
+ pos: 71.5,130.5
+ parent: 1
+ - uid: 15528
+ components:
+ - type: Transform
+ pos: 71.5,131.5
+ parent: 1
+ - uid: 15529
+ components:
+ - type: Transform
+ pos: 71.5,132.5
+ parent: 1
+ - uid: 15530
+ components:
+ - type: Transform
+ pos: 70.5,132.5
+ parent: 1
+ - uid: 15531
+ components:
+ - type: Transform
+ pos: 70.5,133.5
+ parent: 1
+ - uid: 15532
+ components:
+ - type: Transform
+ pos: 70.5,134.5
+ parent: 1
+ - uid: 15533
+ components:
+ - type: Transform
+ pos: 70.5,135.5
+ parent: 1
+ - uid: 15534
+ components:
+ - type: Transform
+ pos: 70.5,136.5
+ parent: 1
+ - uid: 15535
+ components:
+ - type: Transform
+ pos: 69.5,136.5
+ parent: 1
+ - uid: 15536
+ components:
+ - type: Transform
+ pos: 69.5,137.5
+ parent: 1
+ - uid: 15537
+ components:
+ - type: Transform
+ pos: 69.5,138.5
+ parent: 1
+ - uid: 15538
+ components:
+ - type: Transform
+ pos: 69.5,139.5
+ parent: 1
+ - uid: 15539
+ components:
+ - type: Transform
+ pos: 69.5,140.5
+ parent: 1
+ - uid: 15540
+ components:
+ - type: Transform
+ pos: 69.5,141.5
+ parent: 1
+ - uid: 15541
+ components:
+ - type: Transform
+ pos: 69.5,142.5
+ parent: 1
+ - uid: 15542
+ components:
+ - type: Transform
+ pos: 70.5,142.5
+ parent: 1
+ - uid: 15543
+ components:
+ - type: Transform
+ pos: 70.5,143.5
+ parent: 1
+ - uid: 15544
+ components:
+ - type: Transform
+ pos: 70.5,144.5
+ parent: 1
+ - uid: 15545
+ components:
+ - type: Transform
+ pos: 70.5,145.5
+ parent: 1
+ - uid: 15546
+ components:
+ - type: Transform
+ pos: 70.5,146.5
+ parent: 1
+ - uid: 15547
+ components:
+ - type: Transform
+ pos: 70.5,127.5
+ parent: 1
+ - uid: 15548
+ components:
+ - type: Transform
+ pos: 69.5,127.5
+ parent: 1
+ - uid: 15549
+ components:
+ - type: Transform
+ pos: 68.5,127.5
+ parent: 1
+ - uid: 15550
+ components:
+ - type: Transform
+ pos: 67.5,127.5
+ parent: 1
+ - uid: 15551
+ components:
+ - type: Transform
+ pos: 66.5,127.5
+ parent: 1
+ - uid: 15552
+ components:
+ - type: Transform
+ pos: 70.5,131.5
+ parent: 1
+ - uid: 15553
+ components:
+ - type: Transform
+ pos: 69.5,131.5
+ parent: 1
+ - uid: 15554
+ components:
+ - type: Transform
+ pos: 68.5,131.5
+ parent: 1
+ - uid: 15555
+ components:
+ - type: Transform
+ pos: 67.5,131.5
+ parent: 1
+ - uid: 15556
+ components:
+ - type: Transform
+ pos: 66.5,131.5
+ parent: 1
+ - uid: 15557
+ components:
+ - type: Transform
+ pos: 65.5,131.5
+ parent: 1
+ - uid: 15558
+ components:
+ - type: Transform
+ pos: 69.5,135.5
+ parent: 1
+ - uid: 15559
+ components:
+ - type: Transform
+ pos: 68.5,135.5
+ parent: 1
+ - uid: 15560
+ components:
+ - type: Transform
+ pos: 67.5,135.5
+ parent: 1
+ - uid: 15561
+ components:
+ - type: Transform
+ pos: 66.5,135.5
+ parent: 1
+ - uid: 15562
+ components:
+ - type: Transform
+ pos: 65.5,135.5
+ parent: 1
+ - uid: 15563
+ components:
+ - type: Transform
+ pos: 64.5,135.5
+ parent: 1
+ - uid: 15564
+ components:
+ - type: Transform
+ pos: 63.5,139.5
+ parent: 1
+ - uid: 15565
+ components:
+ - type: Transform
+ pos: 64.5,139.5
+ parent: 1
+ - uid: 15566
+ components:
+ - type: Transform
+ pos: 65.5,139.5
+ parent: 1
+ - uid: 15567
+ components:
+ - type: Transform
+ pos: 66.5,139.5
+ parent: 1
+ - uid: 15568
+ components:
+ - type: Transform
+ pos: 67.5,139.5
+ parent: 1
+ - uid: 15569
+ components:
+ - type: Transform
+ pos: 68.5,139.5
+ parent: 1
+ - uid: 15570
+ components:
+ - type: Transform
+ pos: 69.5,143.5
+ parent: 1
+ - uid: 15571
+ components:
+ - type: Transform
+ pos: 68.5,143.5
+ parent: 1
+ - uid: 15572
+ components:
+ - type: Transform
+ pos: 67.5,143.5
+ parent: 1
+ - uid: 15573
+ components:
+ - type: Transform
+ pos: 66.5,143.5
+ parent: 1
+ - uid: 15574
+ components:
+ - type: Transform
+ pos: 65.5,143.5
+ parent: 1
+ - uid: 15575
+ components:
+ - type: Transform
+ pos: 64.5,143.5
+ parent: 1
+ - uid: 15576
+ components:
+ - type: Transform
+ pos: 65.5,147.5
+ parent: 1
+ - uid: 15577
+ components:
+ - type: Transform
+ pos: 66.5,147.5
+ parent: 1
+ - uid: 15578
+ components:
+ - type: Transform
+ pos: 68.5,147.5
+ parent: 1
+ - uid: 15579
+ components:
+ - type: Transform
+ pos: 69.5,147.5
+ parent: 1
+ - uid: 15580
+ components:
+ - type: Transform
+ pos: 70.5,147.5
+ parent: 1
+ - uid: 15581
+ components:
+ - type: Transform
+ pos: 67.5,147.5
+ parent: 1
+ - uid: 15582
+ components:
+ - type: Transform
+ pos: 71.5,146.5
+ parent: 1
+ - uid: 15583
+ components:
+ - type: Transform
+ pos: 71.5,147.5
+ parent: 1
+ - uid: 15584
+ components:
+ - type: Transform
+ pos: 71.5,148.5
+ parent: 1
+ - uid: 15585
+ components:
+ - type: Transform
+ pos: 71.5,149.5
+ parent: 1
+ - uid: 15586
+ components:
+ - type: Transform
+ pos: 71.5,150.5
+ parent: 1
+ - uid: 15587
+ components:
+ - type: Transform
+ pos: 71.5,151.5
+ parent: 1
+ - uid: 15588
+ components:
+ - type: Transform
+ pos: 71.5,152.5
+ parent: 1
+ - uid: 15589
+ components:
+ - type: Transform
+ pos: 71.5,153.5
+ parent: 1
+ - uid: 15590
+ components:
+ - type: Transform
+ pos: 70.5,151.5
+ parent: 1
+ - uid: 15591
+ components:
+ - type: Transform
+ pos: 69.5,151.5
+ parent: 1
+ - uid: 15592
+ components:
+ - type: Transform
+ pos: 68.5,151.5
+ parent: 1
+ - uid: 15593
+ components:
+ - type: Transform
+ pos: 67.5,151.5
+ parent: 1
+ - uid: 15594
+ components:
+ - type: Transform
+ pos: 66.5,151.5
+ parent: 1
+ - uid: 15595
+ components:
+ - type: Transform
+ pos: 72.5,153.5
+ parent: 1
+ - uid: 15596
+ components:
+ - type: Transform
+ pos: 74.5,153.5
+ parent: 1
+ - uid: 15598
+ components:
+ - type: Transform
+ pos: 73.5,153.5
+ parent: 1
+ - uid: 15599
+ components:
+ - type: Transform
+ pos: 77.5,153.5
+ parent: 1
+ - uid: 15600
+ components:
+ - type: Transform
+ pos: 78.5,153.5
+ parent: 1
+ - uid: 15601
+ components:
+ - type: Transform
+ pos: 83.5,144.5
+ parent: 1
+ - uid: 15602
+ components:
+ - type: Transform
+ pos: 80.5,153.5
+ parent: 1
+ - uid: 15603
+ components:
+ - type: Transform
+ pos: 81.5,153.5
+ parent: 1
+ - uid: 15604
+ components:
+ - type: Transform
+ pos: 82.5,153.5
+ parent: 1
+ - uid: 15605
+ components:
+ - type: Transform
+ pos: 83.5,153.5
+ parent: 1
+ - uid: 15606
+ components:
+ - type: Transform
+ pos: 84.5,153.5
+ parent: 1
+ - uid: 15607
+ components:
+ - type: Transform
+ pos: 85.5,153.5
+ parent: 1
+ - uid: 15608
+ components:
+ - type: Transform
+ pos: 86.5,153.5
+ parent: 1
+ - uid: 15609
+ components:
+ - type: Transform
+ pos: 87.5,153.5
+ parent: 1
+ - uid: 15610
+ components:
+ - type: Transform
+ pos: 88.5,153.5
+ parent: 1
+ - uid: 15611
+ components:
+ - type: Transform
+ pos: 89.5,153.5
+ parent: 1
+ - uid: 15612
+ components:
+ - type: Transform
+ pos: 76.5,153.5
+ parent: 1
+ - uid: 15613
+ components:
+ - type: Transform
+ pos: 89.5,152.5
+ parent: 1
+ - uid: 15614
+ components:
+ - type: Transform
+ pos: 89.5,151.5
+ parent: 1
+ - uid: 15615
+ components:
+ - type: Transform
+ pos: 89.5,150.5
+ parent: 1
+ - uid: 15616
+ components:
+ - type: Transform
+ pos: 89.5,149.5
+ parent: 1
+ - uid: 15617
+ components:
+ - type: Transform
+ pos: 89.5,148.5
+ parent: 1
+ - uid: 15618
+ components:
+ - type: Transform
+ pos: 89.5,147.5
+ parent: 1
+ - uid: 15619
+ components:
+ - type: Transform
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 15620
+ components:
+ - type: Transform
+ pos: 89.5,145.5
+ parent: 1
+ - uid: 15621
+ components:
+ - type: Transform
+ pos: 89.5,144.5
+ parent: 1
+ - uid: 15622
+ components:
+ - type: Transform
+ pos: 89.5,143.5
+ parent: 1
+ - uid: 15623
+ components:
+ - type: Transform
+ pos: 89.5,142.5
+ parent: 1
+ - uid: 15624
+ components:
+ - type: Transform
+ pos: 89.5,141.5
+ parent: 1
+ - uid: 15625
+ components:
+ - type: Transform
+ pos: 89.5,140.5
+ parent: 1
+ - uid: 15626
+ components:
+ - type: Transform
+ pos: 89.5,139.5
+ parent: 1
+ - uid: 15627
+ components:
+ - type: Transform
+ pos: 89.5,138.5
+ parent: 1
+ - uid: 15628
+ components:
+ - type: Transform
+ pos: 89.5,137.5
+ parent: 1
+ - uid: 15629
+ components:
+ - type: Transform
+ pos: 89.5,136.5
+ parent: 1
+ - uid: 15630
+ components:
+ - type: Transform
+ pos: 89.5,135.5
+ parent: 1
+ - uid: 15631
+ components:
+ - type: Transform
+ pos: 89.5,134.5
+ parent: 1
+ - uid: 15632
+ components:
+ - type: Transform
+ pos: 89.5,133.5
+ parent: 1
+ - uid: 15633
+ components:
+ - type: Transform
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 15634
+ components:
+ - type: Transform
+ pos: 89.5,130.5
+ parent: 1
+ - uid: 15635
+ components:
+ - type: Transform
+ pos: 89.5,129.5
+ parent: 1
+ - uid: 15636
+ components:
+ - type: Transform
+ pos: 89.5,128.5
+ parent: 1
+ - uid: 15637
+ components:
+ - type: Transform
+ pos: 89.5,127.5
+ parent: 1
+ - uid: 15638
+ components:
+ - type: Transform
+ pos: 89.5,131.5
+ parent: 1
+ - uid: 15639
+ components:
+ - type: Transform
+ pos: 89.5,125.5
+ parent: 1
+ - uid: 15640
+ components:
+ - type: Transform
+ pos: 89.5,126.5
+ parent: 1
+ - uid: 15641
+ components:
+ - type: Transform
+ pos: 88.5,125.5
+ parent: 1
+ - uid: 15642
+ components:
+ - type: Transform
+ pos: 87.5,125.5
+ parent: 1
+ - uid: 15643
+ components:
+ - type: Transform
+ pos: 86.5,125.5
+ parent: 1
+ - uid: 15644
+ components:
+ - type: Transform
+ pos: 85.5,125.5
+ parent: 1
+ - uid: 15645
+ components:
+ - type: Transform
+ pos: 84.5,125.5
+ parent: 1
+ - uid: 15646
+ components:
+ - type: Transform
+ pos: 83.5,125.5
+ parent: 1
+ - uid: 15647
+ components:
+ - type: Transform
+ pos: 82.5,125.5
+ parent: 1
+ - uid: 15648
+ components:
+ - type: Transform
+ pos: 81.5,125.5
+ parent: 1
+ - uid: 15649
+ components:
+ - type: Transform
+ pos: 80.5,125.5
+ parent: 1
+ - uid: 15651
+ components:
+ - type: Transform
+ pos: 78.5,125.5
+ parent: 1
+ - uid: 15652
+ components:
+ - type: Transform
+ pos: 77.5,125.5
+ parent: 1
+ - uid: 15653
+ components:
+ - type: Transform
+ pos: 76.5,125.5
+ parent: 1
+ - uid: 15655
+ components:
+ - type: Transform
+ pos: 74.5,125.5
+ parent: 1
+ - uid: 15656
+ components:
+ - type: Transform
+ pos: 73.5,125.5
+ parent: 1
+ - uid: 15657
+ components:
+ - type: Transform
+ pos: 72.5,125.5
+ parent: 1
+ - uid: 15658
+ components:
+ - type: Transform
+ pos: 72.5,130.5
+ parent: 1
+ - uid: 15659
+ components:
+ - type: Transform
+ pos: 73.5,130.5
+ parent: 1
+ - uid: 15660
+ components:
+ - type: Transform
+ pos: 74.5,130.5
+ parent: 1
+ - uid: 15671
+ components:
+ - type: Transform
+ pos: 86.5,130.5
+ parent: 1
+ - uid: 15672
+ components:
+ - type: Transform
+ pos: 87.5,130.5
+ parent: 1
+ - uid: 15673
+ components:
+ - type: Transform
+ pos: 88.5,130.5
+ parent: 1
+ - uid: 15675
+ components:
+ - type: Transform
+ pos: 88.5,135.5
+ parent: 1
+ - uid: 15676
+ components:
+ - type: Transform
+ pos: 87.5,135.5
+ parent: 1
+ - uid: 15677
+ components:
+ - type: Transform
+ pos: 86.5,135.5
+ parent: 1
+ - uid: 15678
+ components:
+ - type: Transform
+ pos: 85.5,135.5
+ parent: 1
+ - uid: 15679
+ components:
+ - type: Transform
+ pos: 84.5,135.5
+ parent: 1
+ - uid: 15680
+ components:
+ - type: Transform
+ pos: 83.5,135.5
+ parent: 1
+ - uid: 15681
+ components:
+ - type: Transform
+ pos: 81.5,135.5
+ parent: 1
+ - uid: 15689
+ components:
+ - type: Transform
+ pos: 74.5,135.5
+ parent: 1
+ - uid: 15690
+ components:
+ - type: Transform
+ pos: 73.5,135.5
+ parent: 1
+ - uid: 15691
+ components:
+ - type: Transform
+ pos: 72.5,135.5
+ parent: 1
+ - uid: 15692
+ components:
+ - type: Transform
+ pos: 71.5,135.5
+ parent: 1
+ - uid: 15693
+ components:
+ - type: Transform
+ pos: 88.5,143.5
+ parent: 1
+ - uid: 15694
+ components:
+ - type: Transform
+ pos: 87.5,143.5
+ parent: 1
+ - uid: 15695
+ components:
+ - type: Transform
+ pos: 86.5,143.5
+ parent: 1
+ - uid: 15697
+ components:
+ - type: Transform
+ pos: 84.5,143.5
+ parent: 1
+ - uid: 15698
+ components:
+ - type: Transform
+ pos: 83.5,143.5
+ parent: 1
+ - uid: 15700
+ components:
+ - type: Transform
+ pos: 81.5,143.5
+ parent: 1
+ - uid: 15707
+ components:
+ - type: Transform
+ pos: 74.5,143.5
+ parent: 1
+ - uid: 15708
+ components:
+ - type: Transform
+ pos: 73.5,143.5
+ parent: 1
+ - uid: 15709
+ components:
+ - type: Transform
+ pos: 72.5,143.5
+ parent: 1
+ - uid: 15710
+ components:
+ - type: Transform
+ pos: 71.5,143.5
+ parent: 1
+ - uid: 15712
+ components:
+ - type: Transform
+ pos: 77.5,152.5
+ parent: 1
+ - uid: 15716
+ components:
+ - type: Transform
+ pos: 75.5,153.5
+ parent: 1
+ - uid: 15718
+ components:
+ - type: Transform
+ pos: 81.5,139.5
+ parent: 1
+ - uid: 15719
+ components:
+ - type: Transform
+ pos: 80.5,139.5
+ parent: 1
+ - uid: 15722
+ components:
+ - type: Transform
+ pos: 75.5,143.5
+ parent: 1
+ - uid: 15724
+ components:
+ - type: Transform
+ pos: 74.5,139.5
+ parent: 1
+ - uid: 15726
+ components:
+ - type: Transform
+ pos: 73.5,139.5
+ parent: 1
+ - uid: 15727
+ components:
+ - type: Transform
+ pos: 72.5,139.5
+ parent: 1
+ - uid: 15728
+ components:
+ - type: Transform
+ pos: 71.5,139.5
+ parent: 1
+ - uid: 15729
+ components:
+ - type: Transform
+ pos: 70.5,139.5
+ parent: 1
+ - uid: 15730
+ components:
+ - type: Transform
+ pos: 87.5,148.5
+ parent: 1
+ - uid: 15731
+ components:
+ - type: Transform
+ pos: 86.5,148.5
+ parent: 1
+ - uid: 15733
+ components:
+ - type: Transform
+ pos: 163.5,131.5
+ parent: 1
+ - uid: 15741
+ components:
+ - type: Transform
+ pos: 90.5,130.5
+ parent: 1
+ - uid: 15742
+ components:
+ - type: Transform
+ pos: 74.5,148.5
+ parent: 1
+ - uid: 15743
+ components:
+ - type: Transform
+ pos: 73.5,148.5
+ parent: 1
+ - uid: 15744
+ components:
+ - type: Transform
+ pos: 72.5,148.5
+ parent: 1
+ - uid: 15745
+ components:
+ - type: Transform
+ pos: 164.5,142.5
+ parent: 1
+ - uid: 15746
+ components:
+ - type: Transform
+ pos: 88.5,148.5
+ parent: 1
+ - uid: 15747
+ components:
+ - type: Transform
+ pos: 81.5,152.5
+ parent: 1
+ - uid: 15748
+ components:
+ - type: Transform
+ pos: 81.5,151.5
+ parent: 1
+ - uid: 15749
+ components:
+ - type: Transform
+ pos: 81.5,150.5
+ parent: 1
+ - uid: 15750
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - uid: 15754
+ components:
+ - type: Transform
+ pos: 81.5,144.5
+ parent: 1
+ - uid: 15755
+ components:
+ - type: Transform
+ pos: 81.5,142.5
+ parent: 1
+ - uid: 15756
+ components:
+ - type: Transform
+ pos: 81.5,140.5
+ parent: 1
+ - uid: 15757
+ components:
+ - type: Transform
+ pos: 81.5,141.5
+ parent: 1
+ - uid: 15758
+ components:
+ - type: Transform
+ pos: 81.5,138.5
+ parent: 1
+ - uid: 15759
+ components:
+ - type: Transform
+ pos: 81.5,137.5
+ parent: 1
+ - uid: 15760
+ components:
+ - type: Transform
+ pos: 81.5,136.5
+ parent: 1
+ - uid: 15761
+ components:
+ - type: Transform
+ pos: 81.5,134.5
+ parent: 1
+ - uid: 15766
+ components:
+ - type: Transform
+ pos: 81.5,128.5
+ parent: 1
+ - uid: 15767
+ components:
+ - type: Transform
+ pos: 81.5,127.5
+ parent: 1
+ - uid: 15768
+ components:
+ - type: Transform
+ pos: 81.5,126.5
+ parent: 1
+ - uid: 15819
+ components:
+ - type: Transform
+ pos: 148.5,151.5
+ parent: 1
+ - uid: 15878
+ components:
+ - type: Transform
+ pos: 78.5,117.5
+ parent: 1
+ - uid: 15879
+ components:
+ - type: Transform
+ pos: 79.5,117.5
+ parent: 1
+ - uid: 15880
+ components:
+ - type: Transform
+ pos: 80.5,117.5
+ parent: 1
+ - uid: 15881
+ components:
+ - type: Transform
+ pos: 81.5,117.5
+ parent: 1
+ - uid: 15882
+ components:
+ - type: Transform
+ pos: 82.5,117.5
+ parent: 1
+ - uid: 15883
+ components:
+ - type: Transform
+ pos: 83.5,117.5
+ parent: 1
+ - uid: 15884
+ components:
+ - type: Transform
+ pos: 84.5,117.5
+ parent: 1
+ - uid: 15885
+ components:
+ - type: Transform
+ pos: 82.5,118.5
+ parent: 1
+ - uid: 15886
+ components:
+ - type: Transform
+ pos: 82.5,119.5
+ parent: 1
+ - uid: 15887
+ components:
+ - type: Transform
+ pos: 82.5,120.5
+ parent: 1
+ - uid: 15888
+ components:
+ - type: Transform
+ pos: 82.5,121.5
+ parent: 1
+ - uid: 15889
+ components:
+ - type: Transform
+ pos: 82.5,122.5
+ parent: 1
+ - uid: 15890
+ components:
+ - type: Transform
+ pos: 83.5,122.5
+ parent: 1
+ - uid: 15891
+ components:
+ - type: Transform
+ pos: 84.5,122.5
+ parent: 1
+ - uid: 15892
+ components:
+ - type: Transform
+ pos: 85.5,122.5
+ parent: 1
+ - uid: 15893
+ components:
+ - type: Transform
+ pos: 86.5,122.5
+ parent: 1
+ - uid: 15894
+ components:
+ - type: Transform
+ pos: 87.5,122.5
+ parent: 1
+ - uid: 15895
+ components:
+ - type: Transform
+ pos: 88.5,122.5
+ parent: 1
+ - uid: 15896
+ components:
+ - type: Transform
+ pos: 88.5,123.5
+ parent: 1
+ - uid: 15897
+ components:
+ - type: Transform
+ pos: 89.5,122.5
+ parent: 1
+ - uid: 15898
+ components:
+ - type: Transform
+ pos: 73.5,120.5
+ parent: 1
+ - uid: 15899
+ components:
+ - type: Transform
+ pos: 73.5,119.5
+ parent: 1
+ - uid: 15900
+ components:
+ - type: Transform
+ pos: 73.5,118.5
+ parent: 1
+ - uid: 15901
+ components:
+ - type: Transform
+ pos: 73.5,117.5
+ parent: 1
+ - uid: 15902
+ components:
+ - type: Transform
+ pos: 74.5,117.5
+ parent: 1
+ - uid: 15903
+ components:
+ - type: Transform
+ pos: 76.5,117.5
+ parent: 1
+ - uid: 15904
+ components:
+ - type: Transform
+ pos: 75.5,117.5
+ parent: 1
+ - uid: 15905
+ components:
+ - type: Transform
+ pos: 72.5,117.5
+ parent: 1
+ - uid: 15906
+ components:
+ - type: Transform
+ pos: 71.5,117.5
+ parent: 1
+ - uid: 15907
+ components:
+ - type: Transform
+ pos: 70.5,117.5
+ parent: 1
+ - uid: 15908
+ components:
+ - type: Transform
+ pos: 69.5,117.5
+ parent: 1
+ - uid: 15909
+ components:
+ - type: Transform
+ pos: 69.5,118.5
+ parent: 1
+ - uid: 15910
+ components:
+ - type: Transform
+ pos: 69.5,119.5
+ parent: 1
+ - uid: 15911
+ components:
+ - type: Transform
+ pos: 69.5,120.5
+ parent: 1
+ - uid: 15912
+ components:
+ - type: Transform
+ pos: 69.5,121.5
+ parent: 1
+ - uid: 15913
+ components:
+ - type: Transform
+ pos: 69.5,122.5
+ parent: 1
+ - uid: 15914
+ components:
+ - type: Transform
+ pos: 70.5,122.5
+ parent: 1
+ - uid: 15915
+ components:
+ - type: Transform
+ pos: 71.5,122.5
+ parent: 1
+ - uid: 15916
+ components:
+ - type: Transform
+ pos: 72.5,122.5
+ parent: 1
+ - uid: 15917
+ components:
+ - type: Transform
+ pos: 73.5,122.5
+ parent: 1
+ - uid: 15918
+ components:
+ - type: Transform
+ pos: 74.5,122.5
+ parent: 1
+ - uid: 15919
+ components:
+ - type: Transform
+ pos: 75.5,122.5
+ parent: 1
+ - uid: 15920
+ components:
+ - type: Transform
+ pos: 76.5,122.5
+ parent: 1
+ - uid: 15921
+ components:
+ - type: Transform
+ pos: 77.5,122.5
+ parent: 1
+ - uid: 15922
+ components:
+ - type: Transform
+ pos: 78.5,122.5
+ parent: 1
+ - uid: 15923
+ components:
+ - type: Transform
+ pos: 79.5,122.5
+ parent: 1
+ - uid: 15924
+ components:
+ - type: Transform
+ pos: 80.5,122.5
+ parent: 1
+ - uid: 15925
+ components:
+ - type: Transform
+ pos: 68.5,121.5
+ parent: 1
+ - uid: 15926
+ components:
+ - type: Transform
+ pos: 69.5,117.5
+ parent: 1
+ - uid: 15927
+ components:
+ - type: Transform
+ pos: 69.5,116.5
+ parent: 1
+ - uid: 15928
+ components:
+ - type: Transform
+ pos: 70.5,116.5
+ parent: 1
+ - uid: 15929
+ components:
+ - type: Transform
+ pos: 73.5,154.5
+ parent: 1
+ - uid: 16008
+ components:
+ - type: Transform
+ pos: 75.5,139.5
+ parent: 1
+ - uid: 16023
+ components:
+ - type: Transform
+ pos: 86.5,146.5
+ parent: 1
+ - uid: 16216
+ components:
+ - type: Transform
+ pos: 86.5,156.5
+ parent: 1
+ - uid: 16217
+ components:
+ - type: Transform
+ pos: 85.5,156.5
+ parent: 1
+ - uid: 16218
+ components:
+ - type: Transform
+ pos: 84.5,156.5
+ parent: 1
+ - uid: 16224
+ components:
+ - type: Transform
+ pos: 148.5,114.5
+ parent: 1
+ - uid: 16230
+ components:
+ - type: Transform
+ pos: 72.5,156.5
+ parent: 1
+ - uid: 16235
+ components:
+ - type: Transform
+ pos: 85.5,157.5
+ parent: 1
+ - uid: 16236
+ components:
+ - type: Transform
+ pos: 85.5,158.5
+ parent: 1
+ - uid: 16237
+ components:
+ - type: Transform
+ pos: 85.5,159.5
+ parent: 1
+ - uid: 16240
+ components:
+ - type: Transform
+ pos: 88.5,159.5
+ parent: 1
+ - uid: 16241
+ components:
+ - type: Transform
+ pos: 89.5,159.5
+ parent: 1
+ - uid: 16242
+ components:
+ - type: Transform
+ pos: 90.5,159.5
+ parent: 1
+ - uid: 16243
+ components:
+ - type: Transform
+ pos: 91.5,159.5
+ parent: 1
+ - uid: 16244
+ components:
+ - type: Transform
+ pos: 92.5,159.5
+ parent: 1
+ - uid: 16245
+ components:
+ - type: Transform
+ pos: 93.5,159.5
+ parent: 1
+ - uid: 16246
+ components:
+ - type: Transform
+ pos: 94.5,159.5
+ parent: 1
+ - uid: 16247
+ components:
+ - type: Transform
+ pos: 94.5,160.5
+ parent: 1
+ - uid: 16248
+ components:
+ - type: Transform
+ pos: 94.5,161.5
+ parent: 1
+ - uid: 16249
+ components:
+ - type: Transform
+ pos: 94.5,168.5
+ parent: 1
+ - uid: 16250
+ components:
+ - type: Transform
+ pos: 94.5,163.5
+ parent: 1
+ - uid: 16251
+ components:
+ - type: Transform
+ pos: 94.5,164.5
+ parent: 1
+ - uid: 16252
+ components:
+ - type: Transform
+ pos: 94.5,165.5
+ parent: 1
+ - uid: 16253
+ components:
+ - type: Transform
+ pos: 94.5,166.5
+ parent: 1
+ - uid: 16254
+ components:
+ - type: Transform
+ pos: 94.5,167.5
+ parent: 1
+ - uid: 16257
+ components:
+ - type: Transform
+ pos: 141.5,121.5
+ parent: 1
+ - uid: 16258
+ components:
+ - type: Transform
+ pos: 98.5,169.5
+ parent: 1
+ - uid: 16259
+ components:
+ - type: Transform
+ pos: 99.5,169.5
+ parent: 1
+ - uid: 16260
+ components:
+ - type: Transform
+ pos: 100.5,169.5
+ parent: 1
+ - uid: 16261
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 16263
+ components:
+ - type: Transform
+ pos: 103.5,169.5
+ parent: 1
+ - uid: 16264
+ components:
+ - type: Transform
+ pos: 104.5,169.5
+ parent: 1
+ - uid: 16265
+ components:
+ - type: Transform
+ pos: 102.5,169.5
+ parent: 1
+ - uid: 16266
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - uid: 16267
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - uid: 16268
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - uid: 16269
+ components:
+ - type: Transform
+ pos: 104.5,165.5
+ parent: 1
+ - uid: 16270
+ components:
+ - type: Transform
+ pos: 140.5,121.5
+ parent: 1
+ - uid: 16272
+ components:
+ - type: Transform
+ pos: 141.5,126.5
+ parent: 1
+ - uid: 16273
+ components:
+ - type: Transform
+ pos: 141.5,128.5
+ parent: 1
+ - uid: 16274
+ components:
+ - type: Transform
+ pos: 139.5,129.5
+ parent: 1
+ - uid: 16275
+ components:
+ - type: Transform
+ pos: 138.5,132.5
+ parent: 1
+ - uid: 16276
+ components:
+ - type: Transform
+ pos: 138.5,131.5
+ parent: 1
+ - uid: 16277
+ components:
+ - type: Transform
+ pos: 138.5,133.5
+ parent: 1
+ - uid: 16278
+ components:
+ - type: Transform
+ pos: 112.5,164.5
+ parent: 1
+ - uid: 16279
+ components:
+ - type: Transform
+ pos: 113.5,164.5
+ parent: 1
+ - uid: 16280
+ components:
+ - type: Transform
+ pos: 114.5,164.5
+ parent: 1
+ - uid: 16291
+ components:
+ - type: Transform
+ pos: 91.5,156.5
+ parent: 1
+ - uid: 16294
+ components:
+ - type: Transform
+ pos: 138.5,134.5
+ parent: 1
+ - uid: 16296
+ components:
+ - type: Transform
+ pos: 138.5,136.5
+ parent: 1
+ - uid: 16297
+ components:
+ - type: Transform
+ pos: 138.5,135.5
+ parent: 1
+ - uid: 16302
+ components:
+ - type: Transform
+ pos: 138.5,137.5
+ parent: 1
+ - uid: 16303
+ components:
+ - type: Transform
+ pos: 138.5,138.5
+ parent: 1
+ - uid: 16594
+ components:
+ - type: Transform
+ pos: 70.5,49.5
+ parent: 1
+ - uid: 16595
+ components:
+ - type: Transform
+ pos: 67.5,159.5
+ parent: 1
+ - uid: 16611
+ components:
+ - type: Transform
+ pos: 137.5,138.5
+ parent: 1
+ - uid: 16688
+ components:
+ - type: Transform
+ pos: 136.5,138.5
+ parent: 1
+ - uid: 16830
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - uid: 16875
+ components:
+ - type: Transform
+ pos: 124.5,160.5
+ parent: 1
+ - uid: 16876
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - uid: 16954
+ components:
+ - type: Transform
+ pos: 75.5,156.5
+ parent: 1
+ - uid: 17239
+ components:
+ - type: Transform
+ pos: 62.5,85.5
+ parent: 1
+ - uid: 17240
+ components:
+ - type: Transform
+ pos: 62.5,86.5
+ parent: 1
+ - uid: 17241
+ components:
+ - type: Transform
+ pos: 61.5,86.5
+ parent: 1
+ - uid: 17242
+ components:
+ - type: Transform
+ pos: 60.5,86.5
+ parent: 1
+ - uid: 17243
+ components:
+ - type: Transform
+ pos: 60.5,85.5
+ parent: 1
+ - uid: 17244
+ components:
+ - type: Transform
+ pos: 60.5,84.5
+ parent: 1
+ - uid: 17245
+ components:
+ - type: Transform
+ pos: 60.5,83.5
+ parent: 1
+ - uid: 17246
+ components:
+ - type: Transform
+ pos: 60.5,82.5
+ parent: 1
+ - uid: 17247
+ components:
+ - type: Transform
+ pos: 61.5,82.5
+ parent: 1
+ - uid: 17248
+ components:
+ - type: Transform
+ pos: 62.5,82.5
+ parent: 1
+ - uid: 17249
+ components:
+ - type: Transform
+ pos: 62.5,83.5
+ parent: 1
+ - uid: 17250
+ components:
+ - type: Transform
+ pos: 62.5,84.5
+ parent: 1
+ - uid: 17251
+ components:
+ - type: Transform
+ pos: 71.5,81.5
+ parent: 1
+ - uid: 17252
+ components:
+ - type: Transform
+ pos: 70.5,81.5
+ parent: 1
+ - uid: 17253
+ components:
+ - type: Transform
+ pos: 69.5,81.5
+ parent: 1
+ - uid: 17254
+ components:
+ - type: Transform
+ pos: 68.5,81.5
+ parent: 1
+ - uid: 17255
+ components:
+ - type: Transform
+ pos: 67.5,81.5
+ parent: 1
+ - uid: 17256
+ components:
+ - type: Transform
+ pos: 66.5,81.5
+ parent: 1
+ - uid: 17257
+ components:
+ - type: Transform
+ pos: 66.5,82.5
+ parent: 1
+ - uid: 17258
+ components:
+ - type: Transform
+ pos: 66.5,83.5
+ parent: 1
+ - uid: 17259
+ components:
+ - type: Transform
+ pos: 67.5,83.5
+ parent: 1
+ - uid: 17260
+ components:
+ - type: Transform
+ pos: 68.5,83.5
+ parent: 1
+ - uid: 17261
+ components:
+ - type: Transform
+ pos: 69.5,83.5
+ parent: 1
+ - uid: 17262
+ components:
+ - type: Transform
+ pos: 69.5,82.5
+ parent: 1
+ - uid: 17263
+ components:
+ - type: Transform
+ pos: 66.5,84.5
+ parent: 1
+ - uid: 17264
+ components:
+ - type: Transform
+ pos: 62.5,87.5
+ parent: 1
+ - uid: 17265
+ components:
+ - type: Transform
+ pos: 63.5,87.5
+ parent: 1
+ - uid: 17266
+ components:
+ - type: Transform
+ pos: 62.5,81.5
+ parent: 1
+ - uid: 17267
+ components:
+ - type: Transform
+ pos: 71.5,85.5
+ parent: 1
+ - uid: 17268
+ components:
+ - type: Transform
+ pos: 71.5,86.5
+ parent: 1
+ - uid: 17269
+ components:
+ - type: Transform
+ pos: 71.5,87.5
+ parent: 1
+ - uid: 17270
+ components:
+ - type: Transform
+ pos: 70.5,87.5
+ parent: 1
+ - uid: 17271
+ components:
+ - type: Transform
+ pos: 69.5,87.5
+ parent: 1
+ - uid: 17272
+ components:
+ - type: Transform
+ pos: 68.5,87.5
+ parent: 1
+ - uid: 17273
+ components:
+ - type: Transform
+ pos: 67.5,87.5
+ parent: 1
+ - uid: 17274
+ components:
+ - type: Transform
+ pos: 66.5,87.5
+ parent: 1
+ - uid: 17275
+ components:
+ - type: Transform
+ pos: 72.5,87.5
+ parent: 1
+ - uid: 17276
+ components:
+ - type: Transform
+ pos: 72.5,86.5
+ parent: 1
+ - uid: 17277
+ components:
+ - type: Transform
+ pos: 73.5,86.5
+ parent: 1
+ - uid: 17278
+ components:
+ - type: Transform
+ pos: 74.5,86.5
+ parent: 1
+ - uid: 17279
+ components:
+ - type: Transform
+ pos: 75.5,86.5
+ parent: 1
+ - uid: 17280
+ components:
+ - type: Transform
+ pos: 76.5,86.5
+ parent: 1
+ - uid: 17281
+ components:
+ - type: Transform
+ pos: 77.5,86.5
+ parent: 1
+ - uid: 17282
+ components:
+ - type: Transform
+ pos: 77.5,87.5
+ parent: 1
+ - uid: 17283
+ components:
+ - type: Transform
+ pos: 78.5,87.5
+ parent: 1
+ - uid: 17284
+ components:
+ - type: Transform
+ pos: 79.5,87.5
+ parent: 1
+ - uid: 17285
+ components:
+ - type: Transform
+ pos: 80.5,87.5
+ parent: 1
+ - uid: 17286
+ components:
+ - type: Transform
+ pos: 81.5,87.5
+ parent: 1
+ - uid: 17287
+ components:
+ - type: Transform
+ pos: 82.5,87.5
+ parent: 1
+ - uid: 17288
+ components:
+ - type: Transform
+ pos: 82.5,88.5
+ parent: 1
+ - uid: 17306
+ components:
+ - type: Transform
+ pos: 83.5,87.5
+ parent: 1
+ - uid: 17307
+ components:
+ - type: Transform
+ pos: 83.5,86.5
+ parent: 1
+ - uid: 17308
+ components:
+ - type: Transform
+ pos: 83.5,85.5
+ parent: 1
+ - uid: 17309
+ components:
+ - type: Transform
+ pos: 83.5,84.5
+ parent: 1
+ - uid: 17310
+ components:
+ - type: Transform
+ pos: 83.5,83.5
+ parent: 1
+ - uid: 17311
+ components:
+ - type: Transform
+ pos: 82.5,83.5
+ parent: 1
+ - uid: 17312
+ components:
+ - type: Transform
+ pos: 81.5,83.5
+ parent: 1
+ - uid: 17313
+ components:
+ - type: Transform
+ pos: 80.5,83.5
+ parent: 1
+ - uid: 17314
+ components:
+ - type: Transform
+ pos: 80.5,82.5
+ parent: 1
+ - uid: 17315
+ components:
+ - type: Transform
+ pos: 84.5,87.5
+ parent: 1
+ - uid: 17316
+ components:
+ - type: Transform
+ pos: 67.5,88.5
+ parent: 1
+ - uid: 17317
+ components:
+ - type: Transform
+ pos: 71.5,88.5
+ parent: 1
+ - uid: 17318
+ components:
+ - type: Transform
+ pos: 78.5,88.5
+ parent: 1
+ - uid: 17319
+ components:
+ - type: Transform
+ pos: 77.5,85.5
+ parent: 1
+ - uid: 17343
+ components:
+ - type: Transform
+ pos: 54.5,130.5
+ parent: 1
+ - uid: 17381
+ components:
+ - type: Transform
+ pos: 60.5,108.5
+ parent: 1
+ - uid: 17383
+ components:
+ - type: Transform
+ pos: 62.5,108.5
+ parent: 1
+ - uid: 17384
+ components:
+ - type: Transform
+ pos: 63.5,108.5
+ parent: 1
+ - uid: 17385
+ components:
+ - type: Transform
+ pos: 64.5,108.5
+ parent: 1
+ - uid: 17386
+ components:
+ - type: Transform
+ pos: 65.5,108.5
+ parent: 1
+ - uid: 17387
+ components:
+ - type: Transform
+ pos: 66.5,108.5
+ parent: 1
+ - uid: 17388
+ components:
+ - type: Transform
+ pos: 66.5,109.5
+ parent: 1
+ - uid: 17389
+ components:
+ - type: Transform
+ pos: 66.5,110.5
+ parent: 1
+ - uid: 17390
+ components:
+ - type: Transform
+ pos: 66.5,107.5
+ parent: 1
+ - uid: 17391
+ components:
+ - type: Transform
+ pos: 67.5,107.5
+ parent: 1
+ - uid: 17392
+ components:
+ - type: Transform
+ pos: 68.5,107.5
+ parent: 1
+ - uid: 17393
+ components:
+ - type: Transform
+ pos: 69.5,107.5
+ parent: 1
+ - uid: 17394
+ components:
+ - type: Transform
+ pos: 70.5,107.5
+ parent: 1
+ - uid: 17395
+ components:
+ - type: Transform
+ pos: 71.5,107.5
+ parent: 1
+ - uid: 17396
+ components:
+ - type: Transform
+ pos: 72.5,107.5
+ parent: 1
+ - uid: 17397
+ components:
+ - type: Transform
+ pos: 73.5,107.5
+ parent: 1
+ - uid: 17398
+ components:
+ - type: Transform
+ pos: 74.5,107.5
+ parent: 1
+ - uid: 17399
+ components:
+ - type: Transform
+ pos: 75.5,107.5
+ parent: 1
+ - uid: 17400
+ components:
+ - type: Transform
+ pos: 77.5,107.5
+ parent: 1
+ - uid: 17401
+ components:
+ - type: Transform
+ pos: 78.5,107.5
+ parent: 1
+ - uid: 17402
+ components:
+ - type: Transform
+ pos: 79.5,107.5
+ parent: 1
+ - uid: 17403
+ components:
+ - type: Transform
+ pos: 76.5,107.5
+ parent: 1
+ - uid: 17404
+ components:
+ - type: Transform
+ pos: 81.5,107.5
+ parent: 1
+ - uid: 17405
+ components:
+ - type: Transform
+ pos: 80.5,107.5
+ parent: 1
+ - uid: 17406
+ components:
+ - type: Transform
+ pos: 82.5,107.5
+ parent: 1
+ - uid: 17407
+ components:
+ - type: Transform
+ pos: 82.5,108.5
+ parent: 1
+ - uid: 17408
+ components:
+ - type: Transform
+ pos: 82.5,109.5
+ parent: 1
+ - uid: 17409
+ components:
+ - type: Transform
+ pos: 82.5,110.5
+ parent: 1
+ - uid: 17410
+ components:
+ - type: Transform
+ pos: 74.5,106.5
+ parent: 1
+ - uid: 17411
+ components:
+ - type: Transform
+ pos: 74.5,105.5
+ parent: 1
+ - uid: 17412
+ components:
+ - type: Transform
+ pos: 74.5,104.5
+ parent: 1
+ - uid: 17413
+ components:
+ - type: Transform
+ pos: 74.5,103.5
+ parent: 1
+ - uid: 17414
+ components:
+ - type: Transform
+ pos: 75.5,103.5
+ parent: 1
+ - uid: 17415
+ components:
+ - type: Transform
+ pos: 76.5,103.5
+ parent: 1
+ - uid: 17416
+ components:
+ - type: Transform
+ pos: 77.5,103.5
+ parent: 1
+ - uid: 17417
+ components:
+ - type: Transform
+ pos: 73.5,103.5
+ parent: 1
+ - uid: 17418
+ components:
+ - type: Transform
+ pos: 72.5,103.5
+ parent: 1
+ - uid: 17419
+ components:
+ - type: Transform
+ pos: 80.5,108.5
+ parent: 1
+ - uid: 17420
+ components:
+ - type: Transform
+ pos: 80.5,109.5
+ parent: 1
+ - uid: 17421
+ components:
+ - type: Transform
+ pos: 89.5,102.5
+ parent: 1
+ - uid: 17422
+ components:
+ - type: Transform
+ pos: 88.5,102.5
+ parent: 1
+ - uid: 17423
+ components:
+ - type: Transform
+ pos: 87.5,102.5
+ parent: 1
+ - uid: 17424
+ components:
+ - type: Transform
+ pos: 87.5,103.5
+ parent: 1
+ - uid: 17425
+ components:
+ - type: Transform
+ pos: 87.5,104.5
+ parent: 1
+ - uid: 17426
+ components:
+ - type: Transform
+ pos: 87.5,105.5
+ parent: 1
+ - uid: 17427
+ components:
+ - type: Transform
+ pos: 87.5,106.5
+ parent: 1
+ - uid: 17428
+ components:
+ - type: Transform
+ pos: 87.5,107.5
+ parent: 1
+ - uid: 17429
+ components:
+ - type: Transform
+ pos: 86.5,110.5
+ parent: 1
+ - uid: 17430
+ components:
+ - type: Transform
+ pos: 87.5,101.5
+ parent: 1
+ - uid: 17431
+ components:
+ - type: Transform
+ pos: 86.5,107.5
+ parent: 1
+ - uid: 17432
+ components:
+ - type: Transform
+ pos: 86.5,108.5
+ parent: 1
+ - uid: 17433
+ components:
+ - type: Transform
+ pos: 86.5,109.5
+ parent: 1
+ - uid: 17434
+ components:
+ - type: Transform
+ pos: 88.5,107.5
+ parent: 1
+ - uid: 17435
+ components:
+ - type: Transform
+ pos: 88.5,108.5
+ parent: 1
+ - uid: 17436
+ components:
+ - type: Transform
+ pos: 88.5,109.5
+ parent: 1
+ - uid: 17437
+ components:
+ - type: Transform
+ pos: 86.5,111.5
+ parent: 1
+ - uid: 17438
+ components:
+ - type: Transform
+ pos: 87.5,111.5
+ parent: 1
+ - uid: 17439
+ components:
+ - type: Transform
+ pos: 88.5,111.5
+ parent: 1
+ - uid: 17440
+ components:
+ - type: Transform
+ pos: 88.5,110.5
+ parent: 1
+ - uid: 17441
+ components:
+ - type: Transform
+ pos: 87.5,99.5
+ parent: 1
+ - uid: 17442
+ components:
+ - type: Transform
+ pos: 87.5,100.5
+ parent: 1
+ - uid: 17443
+ components:
+ - type: Transform
+ pos: 86.5,99.5
+ parent: 1
+ - uid: 17444
+ components:
+ - type: Transform
+ pos: 86.5,98.5
+ parent: 1
+ - uid: 17445
+ components:
+ - type: Transform
+ pos: 86.5,97.5
+ parent: 1
+ - uid: 17446
+ components:
+ - type: Transform
+ pos: 86.5,96.5
+ parent: 1
+ - uid: 17447
+ components:
+ - type: Transform
+ pos: 87.5,96.5
+ parent: 1
+ - uid: 17448
+ components:
+ - type: Transform
+ pos: 88.5,96.5
+ parent: 1
+ - uid: 17449
+ components:
+ - type: Transform
+ pos: 90.5,93.5
+ parent: 1
+ - uid: 17450
+ components:
+ - type: Transform
+ pos: 89.5,93.5
+ parent: 1
+ - uid: 17451
+ components:
+ - type: Transform
+ pos: 88.5,93.5
+ parent: 1
+ - uid: 17452
+ components:
+ - type: Transform
+ pos: 87.5,93.5
+ parent: 1
+ - uid: 17453
+ components:
+ - type: Transform
+ pos: 86.5,93.5
+ parent: 1
+ - uid: 17454
+ components:
+ - type: Transform
+ pos: 86.5,92.5
+ parent: 1
+ - uid: 17455
+ components:
+ - type: Transform
+ pos: 85.5,92.5
+ parent: 1
+ - uid: 17456
+ components:
+ - type: Transform
+ pos: 85.5,91.5
+ parent: 1
+ - uid: 17457
+ components:
+ - type: Transform
+ pos: 85.5,90.5
+ parent: 1
+ - uid: 17458
+ components:
+ - type: Transform
+ pos: 89.5,92.5
+ parent: 1
+ - uid: 17459
+ components:
+ - type: Transform
+ pos: 89.5,91.5
+ parent: 1
+ - uid: 17460
+ components:
+ - type: Transform
+ pos: 90.5,91.5
+ parent: 1
+ - uid: 17461
+ components:
+ - type: Transform
+ pos: 91.5,91.5
+ parent: 1
+ - uid: 17462
+ components:
+ - type: Transform
+ pos: 92.5,91.5
+ parent: 1
+ - uid: 17463
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 1
+ - uid: 17464
+ components:
+ - type: Transform
+ pos: 85.5,102.5
+ parent: 1
+ - uid: 17465
+ components:
+ - type: Transform
+ pos: 80.5,101.5
+ parent: 1
+ - uid: 17466
+ components:
+ - type: Transform
+ pos: 81.5,101.5
+ parent: 1
+ - uid: 17467
+ components:
+ - type: Transform
+ pos: 82.5,101.5
+ parent: 1
+ - uid: 17468
+ components:
+ - type: Transform
+ pos: 82.5,102.5
+ parent: 1
+ - uid: 17469
+ components:
+ - type: Transform
+ pos: 82.5,103.5
+ parent: 1
+ - uid: 17470
+ components:
+ - type: Transform
+ pos: 82.5,104.5
+ parent: 1
+ - uid: 17471
+ components:
+ - type: Transform
+ pos: 83.5,102.5
+ parent: 1
+ - uid: 17472
+ components:
+ - type: Transform
+ pos: 81.5,103.5
+ parent: 1
+ - uid: 17473
+ components:
+ - type: Transform
+ pos: 80.5,103.5
+ parent: 1
+ - uid: 17474
+ components:
+ - type: Transform
+ pos: 78.5,103.5
+ parent: 1
+ - uid: 17475
+ components:
+ - type: Transform
+ pos: 82.5,106.5
+ parent: 1
+ - uid: 17476
+ components:
+ - type: Transform
+ pos: 82.5,100.5
+ parent: 1
+ - uid: 17477
+ components:
+ - type: Transform
+ pos: 82.5,99.5
+ parent: 1
+ - uid: 17478
+ components:
+ - type: Transform
+ pos: 82.5,98.5
+ parent: 1
+ - uid: 17479
+ components:
+ - type: Transform
+ pos: 82.5,97.5
+ parent: 1
+ - uid: 17480
+ components:
+ - type: Transform
+ pos: 82.5,95.5
+ parent: 1
+ - uid: 17481
+ components:
+ - type: Transform
+ pos: 82.5,94.5
+ parent: 1
+ - uid: 17482
+ components:
+ - type: Transform
+ pos: 82.5,93.5
+ parent: 1
+ - uid: 17483
+ components:
+ - type: Transform
+ pos: 82.5,92.5
+ parent: 1
+ - uid: 17484
+ components:
+ - type: Transform
+ pos: 82.5,91.5
+ parent: 1
+ - uid: 17485
+ components:
+ - type: Transform
+ pos: 82.5,90.5
+ parent: 1
+ - uid: 17486
+ components:
+ - type: Transform
+ pos: 82.5,96.5
+ parent: 1
+ - uid: 17487
+ components:
+ - type: Transform
+ pos: 83.5,94.5
+ parent: 1
+ - uid: 17488
+ components:
+ - type: Transform
+ pos: 84.5,94.5
+ parent: 1
+ - uid: 17489
+ components:
+ - type: Transform
+ pos: 81.5,97.5
+ parent: 1
+ - uid: 17490
+ components:
+ - type: Transform
+ pos: 68.5,97.5
+ parent: 1
+ - uid: 17491
+ components:
+ - type: Transform
+ pos: 67.5,90.5
+ parent: 1
+ - uid: 17492
+ components:
+ - type: Transform
+ pos: 67.5,91.5
+ parent: 1
+ - uid: 17493
+ components:
+ - type: Transform
+ pos: 67.5,92.5
+ parent: 1
+ - uid: 17494
+ components:
+ - type: Transform
+ pos: 67.5,93.5
+ parent: 1
+ - uid: 17495
+ components:
+ - type: Transform
+ pos: 67.5,94.5
+ parent: 1
+ - uid: 17496
+ components:
+ - type: Transform
+ pos: 67.5,95.5
+ parent: 1
+ - uid: 17497
+ components:
+ - type: Transform
+ pos: 67.5,96.5
+ parent: 1
+ - uid: 17498
+ components:
+ - type: Transform
+ pos: 67.5,97.5
+ parent: 1
+ - uid: 17499
+ components:
+ - type: Transform
+ pos: 67.5,98.5
+ parent: 1
+ - uid: 17500
+ components:
+ - type: Transform
+ pos: 67.5,99.5
+ parent: 1
+ - uid: 17501
+ components:
+ - type: Transform
+ pos: 67.5,100.5
+ parent: 1
+ - uid: 17502
+ components:
+ - type: Transform
+ pos: 67.5,101.5
+ parent: 1
+ - uid: 17503
+ components:
+ - type: Transform
+ pos: 67.5,102.5
+ parent: 1
+ - uid: 17504
+ components:
+ - type: Transform
+ pos: 67.5,103.5
+ parent: 1
+ - uid: 17505
+ components:
+ - type: Transform
+ pos: 67.5,104.5
+ parent: 1
+ - uid: 17506
+ components:
+ - type: Transform
+ pos: 68.5,101.5
+ parent: 1
+ - uid: 17507
+ components:
+ - type: Transform
+ pos: 69.5,101.5
+ parent: 1
+ - uid: 17508
+ components:
+ - type: Transform
+ pos: 71.5,99.5
+ parent: 1
+ - uid: 17509
+ components:
+ - type: Transform
+ pos: 71.5,98.5
+ parent: 1
+ - uid: 17510
+ components:
+ - type: Transform
+ pos: 71.5,97.5
+ parent: 1
+ - uid: 17511
+ components:
+ - type: Transform
+ pos: 71.5,96.5
+ parent: 1
+ - uid: 17512
+ components:
+ - type: Transform
+ pos: 71.5,95.5
+ parent: 1
+ - uid: 17513
+ components:
+ - type: Transform
+ pos: 72.5,95.5
+ parent: 1
+ - uid: 17514
+ components:
+ - type: Transform
+ pos: 73.5,95.5
+ parent: 1
+ - uid: 17515
+ components:
+ - type: Transform
+ pos: 74.5,95.5
+ parent: 1
+ - uid: 17516
+ components:
+ - type: Transform
+ pos: 75.5,95.5
+ parent: 1
+ - uid: 17517
+ components:
+ - type: Transform
+ pos: 76.5,95.5
+ parent: 1
+ - uid: 17518
+ components:
+ - type: Transform
+ pos: 77.5,95.5
+ parent: 1
+ - uid: 17519
+ components:
+ - type: Transform
+ pos: 78.5,95.5
+ parent: 1
+ - uid: 17520
+ components:
+ - type: Transform
+ pos: 78.5,96.5
+ parent: 1
+ - uid: 17521
+ components:
+ - type: Transform
+ pos: 78.5,97.5
+ parent: 1
+ - uid: 17522
+ components:
+ - type: Transform
+ pos: 78.5,98.5
+ parent: 1
+ - uid: 17523
+ components:
+ - type: Transform
+ pos: 78.5,99.5
+ parent: 1
+ - uid: 17524
+ components:
+ - type: Transform
+ pos: 77.5,99.5
+ parent: 1
+ - uid: 17525
+ components:
+ - type: Transform
+ pos: 76.5,99.5
+ parent: 1
+ - uid: 17526
+ components:
+ - type: Transform
+ pos: 75.5,99.5
+ parent: 1
+ - uid: 17527
+ components:
+ - type: Transform
+ pos: 74.5,99.5
+ parent: 1
+ - uid: 17528
+ components:
+ - type: Transform
+ pos: 73.5,99.5
+ parent: 1
+ - uid: 17529
+ components:
+ - type: Transform
+ pos: 72.5,99.5
+ parent: 1
+ - uid: 17532
+ components:
+ - type: Transform
+ pos: 79.5,97.5
+ parent: 1
+ - uid: 17533
+ components:
+ - type: Transform
+ pos: 70.5,97.5
+ parent: 1
+ - uid: 17543
+ components:
+ - type: Transform
+ pos: 76.5,93.5
+ parent: 1
+ - uid: 17544
+ components:
+ - type: Transform
+ pos: 76.5,92.5
+ parent: 1
+ - uid: 17545
+ components:
+ - type: Transform
+ pos: 76.5,91.5
+ parent: 1
+ - uid: 17546
+ components:
+ - type: Transform
+ pos: 77.5,91.5
+ parent: 1
+ - uid: 17547
+ components:
+ - type: Transform
+ pos: 78.5,91.5
+ parent: 1
+ - uid: 17548
+ components:
+ - type: Transform
+ pos: 75.5,91.5
+ parent: 1
+ - uid: 17549
+ components:
+ - type: Transform
+ pos: 74.5,91.5
+ parent: 1
+ - uid: 17550
+ components:
+ - type: Transform
+ pos: 73.5,91.5
+ parent: 1
+ - uid: 17551
+ components:
+ - type: Transform
+ pos: 72.5,91.5
+ parent: 1
+ - uid: 17552
+ components:
+ - type: Transform
+ pos: 71.5,91.5
+ parent: 1
+ - uid: 17553
+ components:
+ - type: Transform
+ pos: 71.5,90.5
+ parent: 1
+ - uid: 17554
+ components:
+ - type: Transform
+ pos: 78.5,90.5
+ parent: 1
+ - uid: 17555
+ components:
+ - type: Transform
+ pos: 64.5,101.5
+ parent: 1
+ - uid: 17556
+ components:
+ - type: Transform
+ pos: 63.5,101.5
+ parent: 1
+ - uid: 17557
+ components:
+ - type: Transform
+ pos: 62.5,101.5
+ parent: 1
+ - uid: 17558
+ components:
+ - type: Transform
+ pos: 62.5,100.5
+ parent: 1
+ - uid: 17559
+ components:
+ - type: Transform
+ pos: 61.5,100.5
+ parent: 1
+ - uid: 17560
+ components:
+ - type: Transform
+ pos: 60.5,100.5
+ parent: 1
+ - uid: 17561
+ components:
+ - type: Transform
+ pos: 60.5,101.5
+ parent: 1
+ - uid: 17562
+ components:
+ - type: Transform
+ pos: 60.5,102.5
+ parent: 1
+ - uid: 17563
+ components:
+ - type: Transform
+ pos: 60.5,103.5
+ parent: 1
+ - uid: 17564
+ components:
+ - type: Transform
+ pos: 61.5,103.5
+ parent: 1
+ - uid: 17565
+ components:
+ - type: Transform
+ pos: 62.5,103.5
+ parent: 1
+ - uid: 17566
+ components:
+ - type: Transform
+ pos: 62.5,102.5
+ parent: 1
+ - uid: 17567
+ components:
+ - type: Transform
+ pos: 62.5,99.5
+ parent: 1
+ - uid: 17568
+ components:
+ - type: Transform
+ pos: 63.5,99.5
+ parent: 1
+ - uid: 17569
+ components:
+ - type: Transform
+ pos: 60.5,99.5
+ parent: 1
+ - uid: 17570
+ components:
+ - type: Transform
+ pos: 62.5,107.5
+ parent: 1
+ - uid: 17571
+ components:
+ - type: Transform
+ pos: 61.5,107.5
+ parent: 1
+ - uid: 17572
+ components:
+ - type: Transform
+ pos: 60.5,107.5
+ parent: 1
+ - uid: 17573
+ components:
+ - type: Transform
+ pos: 60.5,109.5
+ parent: 1
+ - uid: 17574
+ components:
+ - type: Transform
+ pos: 61.5,109.5
+ parent: 1
+ - uid: 17575
+ components:
+ - type: Transform
+ pos: 62.5,109.5
+ parent: 1
+ - uid: 17591
+ components:
+ - type: Transform
+ pos: 64.5,89.5
+ parent: 1
+ - uid: 17592
+ components:
+ - type: Transform
+ pos: 63.5,89.5
+ parent: 1
+ - uid: 17593
+ components:
+ - type: Transform
+ pos: 62.5,89.5
+ parent: 1
+ - uid: 17594
+ components:
+ - type: Transform
+ pos: 61.5,89.5
+ parent: 1
+ - uid: 17595
+ components:
+ - type: Transform
+ pos: 60.5,89.5
+ parent: 1
+ - uid: 17596
+ components:
+ - type: Transform
+ pos: 60.5,90.5
+ parent: 1
+ - uid: 17597
+ components:
+ - type: Transform
+ pos: 59.5,90.5
+ parent: 1
+ - uid: 17598
+ components:
+ - type: Transform
+ pos: 60.5,91.5
+ parent: 1
+ - uid: 17599
+ components:
+ - type: Transform
+ pos: 60.5,92.5
+ parent: 1
+ - uid: 17600
+ components:
+ - type: Transform
+ pos: 60.5,93.5
+ parent: 1
+ - uid: 17601
+ components:
+ - type: Transform
+ pos: 60.5,94.5
+ parent: 1
+ - uid: 17602
+ components:
+ - type: Transform
+ pos: 60.5,95.5
+ parent: 1
+ - uid: 17603
+ components:
+ - type: Transform
+ pos: 60.5,96.5
+ parent: 1
+ - uid: 17604
+ components:
+ - type: Transform
+ pos: 61.5,96.5
+ parent: 1
+ - uid: 17605
+ components:
+ - type: Transform
+ pos: 62.5,96.5
+ parent: 1
+ - uid: 17606
+ components:
+ - type: Transform
+ pos: 62.5,95.5
+ parent: 1
+ - uid: 17607
+ components:
+ - type: Transform
+ pos: 62.5,94.5
+ parent: 1
+ - uid: 17608
+ components:
+ - type: Transform
+ pos: 62.5,93.5
+ parent: 1
+ - uid: 17609
+ components:
+ - type: Transform
+ pos: 62.5,92.5
+ parent: 1
+ - uid: 17610
+ components:
+ - type: Transform
+ pos: 62.5,91.5
+ parent: 1
+ - uid: 17611
+ components:
+ - type: Transform
+ pos: 62.5,90.5
+ parent: 1
+ - uid: 17612
+ components:
+ - type: Transform
+ pos: 59.5,96.5
+ parent: 1
+ - uid: 17613
+ components:
+ - type: Transform
+ pos: 60.5,97.5
+ parent: 1
+ - uid: 18022
+ components:
+ - type: Transform
+ pos: 88.5,41.5
+ parent: 1
+ - uid: 18089
+ components:
+ - type: Transform
+ pos: 88.5,42.5
+ parent: 1
+ - uid: 18171
+ components:
+ - type: Transform
+ pos: 58.5,120.5
+ parent: 1
+ - uid: 18207
+ components:
+ - type: Transform
+ pos: 58.5,116.5
+ parent: 1
+ - uid: 18234
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 18235
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 1
+ - uid: 18250
+ components:
+ - type: Transform
+ pos: 110.5,35.5
+ parent: 1
+ - uid: 18279
+ components:
+ - type: Transform
+ pos: 110.5,44.5
+ parent: 1
+ - uid: 18280
+ components:
+ - type: Transform
+ pos: 110.5,47.5
+ parent: 1
+ - uid: 18282
+ components:
+ - type: Transform
+ pos: 110.5,48.5
+ parent: 1
+ - uid: 18283
+ components:
+ - type: Transform
+ pos: 111.5,45.5
+ parent: 1
+ - uid: 18308
+ components:
+ - type: Transform
+ pos: 61.5,43.5
+ parent: 1
+ - uid: 18325
+ components:
+ - type: Transform
+ pos: 62.5,31.5
+ parent: 1
+ - uid: 18332
+ components:
+ - type: Transform
+ pos: 63.5,41.5
+ parent: 1
+ - uid: 18345
+ components:
+ - type: Transform
+ pos: 110.5,33.5
+ parent: 1
+ - uid: 18354
+ components:
+ - type: Transform
+ pos: 136.5,85.5
+ parent: 1
+ - uid: 18358
+ components:
+ - type: Transform
+ pos: 138.5,85.5
+ parent: 1
+ - uid: 18378
+ components:
+ - type: Transform
+ pos: 151.5,96.5
+ parent: 1
+ - uid: 18379
+ components:
+ - type: Transform
+ pos: 146.5,96.5
+ parent: 1
+ - uid: 18426
+ components:
+ - type: Transform
+ pos: 157.5,54.5
+ parent: 1
+ - uid: 18456
+ components:
+ - type: Transform
+ pos: 148.5,86.5
+ parent: 1
+ - uid: 18457
+ components:
+ - type: Transform
+ pos: 151.5,86.5
+ parent: 1
+ - uid: 18458
+ components:
+ - type: Transform
+ pos: 149.5,86.5
+ parent: 1
+ - uid: 18480
+ components:
+ - type: Transform
+ pos: 91.5,81.5
+ parent: 1
+ - uid: 18481
+ components:
+ - type: Transform
+ pos: 91.5,82.5
+ parent: 1
+ - uid: 18546
+ components:
+ - type: Transform
+ pos: 73.5,156.5
+ parent: 1
+ - uid: 18547
+ components:
+ - type: Transform
+ pos: 72.5,155.5
+ parent: 1
+ - uid: 18572
+ components:
+ - type: Transform
+ pos: 22.5,110.5
+ parent: 1
+ - uid: 18573
+ components:
+ - type: Transform
+ pos: 23.5,110.5
+ parent: 1
+ - uid: 18579
+ components:
+ - type: Transform
+ pos: 24.5,110.5
+ parent: 1
+ - uid: 18711
+ components:
+ - type: Transform
+ pos: 34.5,96.5
+ parent: 1
+ - uid: 18793
+ components:
+ - type: Transform
+ pos: 108.5,35.5
+ parent: 1
+ - uid: 18867
+ components:
+ - type: Transform
+ pos: 90.5,47.5
+ parent: 1
+ - uid: 18872
+ components:
+ - type: Transform
+ pos: 99.5,47.5
+ parent: 1
+ - uid: 18938
+ components:
+ - type: Transform
+ pos: 137.5,100.5
+ parent: 1
+ - uid: 18940
+ components:
+ - type: Transform
+ pos: 135.5,100.5
+ parent: 1
+ - uid: 18941
+ components:
+ - type: Transform
+ pos: 134.5,100.5
+ parent: 1
+ - uid: 18943
+ components:
+ - type: Transform
+ pos: 132.5,100.5
+ parent: 1
+ - uid: 18944
+ components:
+ - type: Transform
+ pos: 132.5,99.5
+ parent: 1
+ - uid: 18945
+ components:
+ - type: Transform
+ pos: 132.5,98.5
+ parent: 1
+ - uid: 18946
+ components:
+ - type: Transform
+ pos: 132.5,97.5
+ parent: 1
+ - uid: 18948
+ components:
+ - type: Transform
+ pos: 134.5,97.5
+ parent: 1
+ - uid: 18949
+ components:
+ - type: Transform
+ pos: 134.5,98.5
+ parent: 1
+ - uid: 18950
+ components:
+ - type: Transform
+ pos: 134.5,99.5
+ parent: 1
+ - uid: 18951
+ components:
+ - type: Transform
+ pos: 135.5,101.5
+ parent: 1
+ - uid: 18952
+ components:
+ - type: Transform
+ pos: 135.5,102.5
+ parent: 1
+ - uid: 18953
+ components:
+ - type: Transform
+ pos: 135.5,103.5
+ parent: 1
+ - uid: 18954
+ components:
+ - type: Transform
+ pos: 135.5,104.5
+ parent: 1
+ - uid: 18955
+ components:
+ - type: Transform
+ pos: 135.5,105.5
+ parent: 1
+ - uid: 18956
+ components:
+ - type: Transform
+ pos: 135.5,106.5
+ parent: 1
+ - uid: 18957
+ components:
+ - type: Transform
+ pos: 132.5,101.5
+ parent: 1
+ - uid: 18958
+ components:
+ - type: Transform
+ pos: 132.5,102.5
+ parent: 1
+ - uid: 18959
+ components:
+ - type: Transform
+ pos: 132.5,104.5
+ parent: 1
+ - uid: 18960
+ components:
+ - type: Transform
+ pos: 132.5,103.5
+ parent: 1
+ - uid: 18961
+ components:
+ - type: Transform
+ pos: 132.5,105.5
+ parent: 1
+ - uid: 18962
+ components:
+ - type: Transform
+ pos: 132.5,106.5
+ parent: 1
+ - uid: 18963
+ components:
+ - type: Transform
+ pos: 132.5,107.5
+ parent: 1
+ - uid: 18964
+ components:
+ - type: Transform
+ pos: 132.5,109.5
+ parent: 1
+ - uid: 18965
+ components:
+ - type: Transform
+ pos: 132.5,108.5
+ parent: 1
+ - uid: 18966
+ components:
+ - type: Transform
+ pos: 133.5,109.5
+ parent: 1
+ - uid: 18967
+ components:
+ - type: Transform
+ pos: 134.5,109.5
+ parent: 1
+ - uid: 18968
+ components:
+ - type: Transform
+ pos: 134.5,108.5
+ parent: 1
+ - uid: 18969
+ components:
+ - type: Transform
+ pos: 134.5,107.5
+ parent: 1
+ - uid: 18970
+ components:
+ - type: Transform
+ pos: 135.5,107.5
+ parent: 1
+ - uid: 18971
+ components:
+ - type: Transform
+ pos: 136.5,105.5
+ parent: 1
+ - uid: 18972
+ components:
+ - type: Transform
+ pos: 137.5,105.5
+ parent: 1
+ - uid: 18974
+ components:
+ - type: Transform
+ pos: 137.5,106.5
+ parent: 1
+ - uid: 18976
+ components:
+ - type: Transform
+ pos: 138.5,100.5
+ parent: 1
+ - uid: 18977
+ components:
+ - type: Transform
+ pos: 139.5,100.5
+ parent: 1
+ - uid: 18978
+ components:
+ - type: Transform
+ pos: 139.5,101.5
+ parent: 1
+ - uid: 18979
+ components:
+ - type: Transform
+ pos: 139.5,103.5
+ parent: 1
+ - uid: 18980
+ components:
+ - type: Transform
+ pos: 139.5,104.5
+ parent: 1
+ - uid: 18981
+ components:
+ - type: Transform
+ pos: 139.5,105.5
+ parent: 1
+ - uid: 18982
+ components:
+ - type: Transform
+ pos: 139.5,106.5
+ parent: 1
+ - uid: 18983
+ components:
+ - type: Transform
+ pos: 139.5,107.5
+ parent: 1
+ - uid: 18984
+ components:
+ - type: Transform
+ pos: 139.5,102.5
+ parent: 1
+ - uid: 18985
+ components:
+ - type: Transform
+ pos: 139.5,99.5
+ parent: 1
+ - uid: 18986
+ components:
+ - type: Transform
+ pos: 139.5,98.5
+ parent: 1
+ - uid: 18987
+ components:
+ - type: Transform
+ pos: 139.5,97.5
+ parent: 1
+ - uid: 18988
+ components:
+ - type: Transform
+ pos: 139.5,96.5
+ parent: 1
+ - uid: 18989
+ components:
+ - type: Transform
+ pos: 138.5,96.5
+ parent: 1
+ - uid: 18990
+ components:
+ - type: Transform
+ pos: 132.5,96.5
+ parent: 1
+ - uid: 18991
+ components:
+ - type: Transform
+ pos: 133.5,96.5
+ parent: 1
+ - uid: 18992
+ components:
+ - type: Transform
+ pos: 135.5,96.5
+ parent: 1
+ - uid: 18994
+ components:
+ - type: Transform
+ pos: 137.5,96.5
+ parent: 1
+ - uid: 18995
+ components:
+ - type: Transform
+ pos: 134.5,96.5
+ parent: 1
+ - uid: 18997
+ components:
+ - type: Transform
+ pos: 143.5,98.5
+ parent: 1
+ - uid: 18999
+ components:
+ - type: Transform
+ pos: 143.5,99.5
+ parent: 1
+ - uid: 19000
+ components:
+ - type: Transform
+ pos: 143.5,97.5
+ parent: 1
+ - uid: 19003
+ components:
+ - type: Transform
+ pos: 137.5,112.5
+ parent: 1
+ - uid: 19004
+ components:
+ - type: Transform
+ pos: 138.5,112.5
+ parent: 1
+ - uid: 19005
+ components:
+ - type: Transform
+ pos: 139.5,112.5
+ parent: 1
+ - uid: 19006
+ components:
+ - type: Transform
+ pos: 139.5,111.5
+ parent: 1
+ - uid: 19007
+ components:
+ - type: Transform
+ pos: 139.5,110.5
+ parent: 1
+ - uid: 19008
+ components:
+ - type: Transform
+ pos: 137.5,110.5
+ parent: 1
+ - uid: 19009
+ components:
+ - type: Transform
+ pos: 137.5,111.5
+ parent: 1
+ - uid: 19010
+ components:
+ - type: Transform
+ pos: 138.5,110.5
+ parent: 1
+ - uid: 19011
+ components:
+ - type: Transform
+ pos: 140.5,112.5
+ parent: 1
+ - uid: 19012
+ components:
+ - type: Transform
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 19013
+ components:
+ - type: Transform
+ pos: 142.5,112.5
+ parent: 1
+ - uid: 19014
+ components:
+ - type: Transform
+ pos: 143.5,112.5
+ parent: 1
+ - uid: 19015
+ components:
+ - type: Transform
+ pos: 144.5,112.5
+ parent: 1
+ - uid: 19016
+ components:
+ - type: Transform
+ pos: 145.5,112.5
+ parent: 1
+ - uid: 19018
+ components:
+ - type: Transform
+ pos: 133.5,112.5
+ parent: 1
+ - uid: 19019
+ components:
+ - type: Transform
+ pos: 132.5,112.5
+ parent: 1
+ - uid: 19021
+ components:
+ - type: Transform
+ pos: 133.5,113.5
+ parent: 1
+ - uid: 19022
+ components:
+ - type: Transform
+ pos: 158.5,105.5
+ parent: 1
+ - uid: 19023
+ components:
+ - type: Transform
+ pos: 157.5,105.5
+ parent: 1
+ - uid: 19024
+ components:
+ - type: Transform
+ pos: 156.5,105.5
+ parent: 1
+ - uid: 19025
+ components:
+ - type: Transform
+ pos: 156.5,104.5
+ parent: 1
+ - uid: 19026
+ components:
+ - type: Transform
+ pos: 156.5,103.5
+ parent: 1
+ - uid: 19027
+ components:
+ - type: Transform
+ pos: 155.5,103.5
+ parent: 1
+ - uid: 19028
+ components:
+ - type: Transform
+ pos: 154.5,103.5
+ parent: 1
+ - uid: 19029
+ components:
+ - type: Transform
+ pos: 153.5,103.5
+ parent: 1
+ - uid: 19030
+ components:
+ - type: Transform
+ pos: 152.5,103.5
+ parent: 1
+ - uid: 19031
+ components:
+ - type: Transform
+ pos: 151.5,103.5
+ parent: 1
+ - uid: 19032
+ components:
+ - type: Transform
+ pos: 150.5,103.5
+ parent: 1
+ - uid: 19033
+ components:
+ - type: Transform
+ pos: 149.5,103.5
+ parent: 1
+ - uid: 19034
+ components:
+ - type: Transform
+ pos: 148.5,103.5
+ parent: 1
+ - uid: 19035
+ components:
+ - type: Transform
+ pos: 148.5,104.5
+ parent: 1
+ - uid: 19036
+ components:
+ - type: Transform
+ pos: 148.5,105.5
+ parent: 1
+ - uid: 19037
+ components:
+ - type: Transform
+ pos: 148.5,106.5
+ parent: 1
+ - uid: 19038
+ components:
+ - type: Transform
+ pos: 148.5,107.5
+ parent: 1
+ - uid: 19039
+ components:
+ - type: Transform
+ pos: 148.5,108.5
+ parent: 1
+ - uid: 19040
+ components:
+ - type: Transform
+ pos: 148.5,109.5
+ parent: 1
+ - uid: 19052
+ components:
+ - type: Transform
+ pos: 156.5,111.5
+ parent: 1
+ - uid: 19053
+ components:
+ - type: Transform
+ pos: 156.5,110.5
+ parent: 1
+ - uid: 19054
+ components:
+ - type: Transform
+ pos: 156.5,109.5
+ parent: 1
+ - uid: 19055
+ components:
+ - type: Transform
+ pos: 156.5,108.5
+ parent: 1
+ - uid: 19056
+ components:
+ - type: Transform
+ pos: 156.5,107.5
+ parent: 1
+ - uid: 19057
+ components:
+ - type: Transform
+ pos: 156.5,106.5
+ parent: 1
+ - uid: 19058
+ components:
+ - type: Transform
+ pos: 157.5,109.5
+ parent: 1
+ - uid: 19059
+ components:
+ - type: Transform
+ pos: 159.5,109.5
+ parent: 1
+ - uid: 19060
+ components:
+ - type: Transform
+ pos: 160.5,109.5
+ parent: 1
+ - uid: 19061
+ components:
+ - type: Transform
+ pos: 161.5,109.5
+ parent: 1
+ - uid: 19062
+ components:
+ - type: Transform
+ pos: 162.5,109.5
+ parent: 1
+ - uid: 19063
+ components:
+ - type: Transform
+ pos: 158.5,109.5
+ parent: 1
+ - uid: 19064
+ components:
+ - type: Transform
+ pos: 157.5,107.5
+ parent: 1
+ - uid: 19065
+ components:
+ - type: Transform
+ pos: 158.5,107.5
+ parent: 1
+ - uid: 19066
+ components:
+ - type: Transform
+ pos: 159.5,107.5
+ parent: 1
+ - uid: 19067
+ components:
+ - type: Transform
+ pos: 160.5,107.5
+ parent: 1
+ - uid: 19068
+ components:
+ - type: Transform
+ pos: 161.5,107.5
+ parent: 1
+ - uid: 19069
+ components:
+ - type: Transform
+ pos: 162.5,107.5
+ parent: 1
+ - uid: 19072
+ components:
+ - type: Transform
+ pos: 158.5,101.5
+ parent: 1
+ - uid: 19073
+ components:
+ - type: Transform
+ pos: 158.5,100.5
+ parent: 1
+ - uid: 19074
+ components:
+ - type: Transform
+ pos: 122.5,169.5
+ parent: 1
+ - uid: 19075
+ components:
+ - type: Transform
+ pos: 124.5,168.5
+ parent: 1
+ - uid: 19076
+ components:
+ - type: Transform
+ pos: 158.5,99.5
+ parent: 1
+ - uid: 19077
+ components:
+ - type: Transform
+ pos: 155.5,109.5
+ parent: 1
+ - uid: 19078
+ components:
+ - type: Transform
+ pos: 154.5,109.5
+ parent: 1
+ - uid: 19079
+ components:
+ - type: Transform
+ pos: 153.5,109.5
+ parent: 1
+ - uid: 19080
+ components:
+ - type: Transform
+ pos: 152.5,109.5
+ parent: 1
+ - uid: 19081
+ components:
+ - type: Transform
+ pos: 151.5,109.5
+ parent: 1
+ - uid: 19082
+ components:
+ - type: Transform
+ pos: 150.5,109.5
+ parent: 1
+ - uid: 19083
+ components:
+ - type: Transform
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 19084
+ components:
+ - type: Transform
+ pos: 149.5,106.5
+ parent: 1
+ - uid: 19085
+ components:
+ - type: Transform
+ pos: 150.5,106.5
+ parent: 1
+ - uid: 19086
+ components:
+ - type: Transform
+ pos: 151.5,106.5
+ parent: 1
+ - uid: 19087
+ components:
+ - type: Transform
+ pos: 152.5,106.5
+ parent: 1
+ - uid: 19088
+ components:
+ - type: Transform
+ pos: 153.5,106.5
+ parent: 1
+ - uid: 19089
+ components:
+ - type: Transform
+ pos: 154.5,106.5
+ parent: 1
+ - uid: 19090
+ components:
+ - type: Transform
+ pos: 155.5,106.5
+ parent: 1
+ - uid: 19091
+ components:
+ - type: Transform
+ pos: 125.5,168.5
+ parent: 1
+ - uid: 19095
+ components:
+ - type: Transform
+ pos: 150.5,98.5
+ parent: 1
+ - uid: 19099
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 19101
+ components:
+ - type: Transform
+ pos: 91.5,85.5
+ parent: 1
+ - uid: 19102
+ components:
+ - type: Transform
+ pos: 145.5,92.5
+ parent: 1
+ - uid: 19103
+ components:
+ - type: Transform
+ pos: 146.5,92.5
+ parent: 1
+ - uid: 19104
+ components:
+ - type: Transform
+ pos: 147.5,92.5
+ parent: 1
+ - uid: 19105
+ components:
+ - type: Transform
+ pos: 147.5,93.5
+ parent: 1
+ - uid: 19108
+ components:
+ - type: Transform
+ pos: 151.5,93.5
+ parent: 1
+ - uid: 19110
+ components:
+ - type: Transform
+ pos: 151.5,92.5
+ parent: 1
+ - uid: 19111
+ components:
+ - type: Transform
+ pos: 151.5,91.5
+ parent: 1
+ - uid: 19112
+ components:
+ - type: Transform
+ pos: 151.5,90.5
+ parent: 1
+ - uid: 19113
+ components:
+ - type: Transform
+ pos: 151.5,89.5
+ parent: 1
+ - uid: 19114
+ components:
+ - type: Transform
+ pos: 93.5,40.5
+ parent: 1
+ - uid: 19115
+ components:
+ - type: Transform
+ pos: 90.5,41.5
+ parent: 1
+ - uid: 19119
+ components:
+ - type: Transform
+ pos: 147.5,89.5
+ parent: 1
+ - uid: 19120
+ components:
+ - type: Transform
+ pos: 147.5,90.5
+ parent: 1
+ - uid: 19121
+ components:
+ - type: Transform
+ pos: 147.5,91.5
+ parent: 1
+ - uid: 19122
+ components:
+ - type: Transform
+ pos: 152.5,91.5
+ parent: 1
+ - uid: 19123
+ components:
+ - type: Transform
+ pos: 153.5,91.5
+ parent: 1
+ - uid: 19124
+ components:
+ - type: Transform
+ pos: 154.5,91.5
+ parent: 1
+ - uid: 19125
+ components:
+ - type: Transform
+ pos: 155.5,91.5
+ parent: 1
+ - uid: 19126
+ components:
+ - type: Transform
+ pos: 156.5,91.5
+ parent: 1
+ - uid: 19127
+ components:
+ - type: Transform
+ pos: 157.5,91.5
+ parent: 1
+ - uid: 19128
+ components:
+ - type: Transform
+ pos: 158.5,91.5
+ parent: 1
+ - uid: 19129
+ components:
+ - type: Transform
+ pos: 159.5,91.5
+ parent: 1
+ - uid: 19130
+ components:
+ - type: Transform
+ pos: 160.5,91.5
+ parent: 1
+ - uid: 19131
+ components:
+ - type: Transform
+ pos: 161.5,91.5
+ parent: 1
+ - uid: 19132
+ components:
+ - type: Transform
+ pos: 162.5,91.5
+ parent: 1
+ - uid: 19133
+ components:
+ - type: Transform
+ pos: 163.5,91.5
+ parent: 1
+ - uid: 19134
+ components:
+ - type: Transform
+ pos: 163.5,90.5
+ parent: 1
+ - uid: 19136
+ components:
+ - type: Transform
+ pos: 142.5,94.5
+ parent: 1
+ - uid: 19137
+ components:
+ - type: Transform
+ pos: 143.5,94.5
+ parent: 1
+ - uid: 19138
+ components:
+ - type: Transform
+ pos: 143.5,95.5
+ parent: 1
+ - uid: 19140
+ components:
+ - type: Transform
+ pos: 142.5,93.5
+ parent: 1
+ - uid: 19141
+ components:
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+ - uid: 19142
+ components:
+ - type: Transform
+ pos: 142.5,91.5
+ parent: 1
+ - uid: 19143
+ components:
+ - type: Transform
+ pos: 142.5,90.5
+ parent: 1
+ - uid: 19144
+ components:
+ - type: Transform
+ pos: 144.5,107.5
+ parent: 1
+ - uid: 19145
+ components:
+ - type: Transform
+ pos: 143.5,107.5
+ parent: 1
+ - uid: 19146
+ components:
+ - type: Transform
+ pos: 143.5,89.5
+ parent: 1
+ - uid: 19147
+ components:
+ - type: Transform
+ pos: 143.5,88.5
+ parent: 1
+ - uid: 19148
+ components:
+ - type: Transform
+ pos: 143.5,90.5
+ parent: 1
+ - uid: 19149
+ components:
+ - type: Transform
+ pos: 143.5,108.5
+ parent: 1
+ - uid: 19150
+ components:
+ - type: Transform
+ pos: 143.5,109.5
+ parent: 1
+ - uid: 19151
+ components:
+ - type: Transform
+ pos: 143.5,106.5
+ parent: 1
+ - uid: 19152
+ components:
+ - type: Transform
+ pos: 143.5,105.5
+ parent: 1
+ - uid: 19153
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 19154
+ components:
+ - type: Transform
+ pos: 143.5,103.5
+ parent: 1
+ - uid: 19155
+ components:
+ - type: Transform
+ pos: 143.5,102.5
+ parent: 1
+ - uid: 19156
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 19213
+ components:
+ - type: Transform
+ pos: 108.5,45.5
+ parent: 1
+ - uid: 19237
+ components:
+ - type: Transform
+ pos: 96.5,82.5
+ parent: 1
+ - uid: 19347
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 1
+ - uid: 19396
+ components:
+ - type: Transform
+ pos: 56.5,48.5
+ parent: 1
+ - uid: 19409
+ components:
+ - type: Transform
+ pos: 63.5,67.5
+ parent: 1
+ - uid: 19541
+ components:
+ - type: Transform
+ pos: 90.5,87.5
+ parent: 1
+ - uid: 19732
+ components:
+ - type: Transform
+ pos: 47.5,104.5
+ parent: 1
+ - uid: 19853
+ components:
+ - type: Transform
+ pos: 96.5,130.5
+ parent: 1
+ - uid: 19869
+ components:
+ - type: Transform
+ pos: 52.5,85.5
+ parent: 1
+ - uid: 19870
+ components:
+ - type: Transform
+ pos: 52.5,86.5
+ parent: 1
+ - uid: 19871
+ components:
+ - type: Transform
+ pos: 52.5,87.5
+ parent: 1
+ - uid: 19872
+ components:
+ - type: Transform
+ pos: 52.5,88.5
+ parent: 1
+ - uid: 19873
+ components:
+ - type: Transform
+ pos: 52.5,89.5
+ parent: 1
+ - uid: 19874
+ components:
+ - type: Transform
+ pos: 52.5,90.5
+ parent: 1
+ - uid: 19875
+ components:
+ - type: Transform
+ pos: 52.5,91.5
+ parent: 1
+ - uid: 19876
+ components:
+ - type: Transform
+ pos: 52.5,92.5
+ parent: 1
+ - uid: 19877
+ components:
+ - type: Transform
+ pos: 52.5,93.5
+ parent: 1
+ - uid: 19878
+ components:
+ - type: Transform
+ pos: 52.5,94.5
+ parent: 1
+ - uid: 19879
+ components:
+ - type: Transform
+ pos: 52.5,95.5
+ parent: 1
+ - uid: 19880
+ components:
+ - type: Transform
+ pos: 52.5,96.5
+ parent: 1
+ - uid: 19881
+ components:
+ - type: Transform
+ pos: 51.5,96.5
+ parent: 1
+ - uid: 19882
+ components:
+ - type: Transform
+ pos: 50.5,96.5
+ parent: 1
+ - uid: 19883
+ components:
+ - type: Transform
+ pos: 49.5,96.5
+ parent: 1
+ - uid: 19884
+ components:
+ - type: Transform
+ pos: 48.5,96.5
+ parent: 1
+ - uid: 19885
+ components:
+ - type: Transform
+ pos: 47.5,96.5
+ parent: 1
+ - uid: 19886
+ components:
+ - type: Transform
+ pos: 46.5,96.5
+ parent: 1
+ - uid: 19887
+ components:
+ - type: Transform
+ pos: 52.5,84.5
+ parent: 1
+ - uid: 19888
+ components:
+ - type: Transform
+ pos: 52.5,83.5
+ parent: 1
+ - uid: 19889
+ components:
+ - type: Transform
+ pos: 52.5,82.5
+ parent: 1
+ - uid: 19890
+ components:
+ - type: Transform
+ pos: 52.5,81.5
+ parent: 1
+ - uid: 19891
+ components:
+ - type: Transform
+ pos: 51.5,81.5
+ parent: 1
+ - uid: 19892
+ components:
+ - type: Transform
+ pos: 50.5,81.5
+ parent: 1
+ - uid: 19893
+ components:
+ - type: Transform
+ pos: 49.5,81.5
+ parent: 1
+ - uid: 19894
+ components:
+ - type: Transform
+ pos: 48.5,81.5
+ parent: 1
+ - uid: 19895
+ components:
+ - type: Transform
+ pos: 47.5,81.5
+ parent: 1
+ - uid: 19896
+ components:
+ - type: Transform
+ pos: 47.5,82.5
+ parent: 1
+ - uid: 19897
+ components:
+ - type: Transform
+ pos: 47.5,83.5
+ parent: 1
+ - uid: 19898
+ components:
+ - type: Transform
+ pos: 48.5,83.5
+ parent: 1
+ - uid: 19899
+ components:
+ - type: Transform
+ pos: 49.5,83.5
+ parent: 1
+ - uid: 19900
+ components:
+ - type: Transform
+ pos: 50.5,83.5
+ parent: 1
+ - uid: 19901
+ components:
+ - type: Transform
+ pos: 51.5,83.5
+ parent: 1
+ - uid: 19904
+ components:
+ - type: Transform
+ pos: 47.5,87.5
+ parent: 1
+ - uid: 19905
+ components:
+ - type: Transform
+ pos: 47.5,88.5
+ parent: 1
+ - uid: 19906
+ components:
+ - type: Transform
+ pos: 47.5,89.5
+ parent: 1
+ - uid: 19907
+ components:
+ - type: Transform
+ pos: 47.5,90.5
+ parent: 1
+ - uid: 19908
+ components:
+ - type: Transform
+ pos: 47.5,91.5
+ parent: 1
+ - uid: 19909
+ components:
+ - type: Transform
+ pos: 47.5,92.5
+ parent: 1
+ - uid: 19910
+ components:
+ - type: Transform
+ pos: 48.5,92.5
+ parent: 1
+ - uid: 19911
+ components:
+ - type: Transform
+ pos: 49.5,92.5
+ parent: 1
+ - uid: 19912
+ components:
+ - type: Transform
+ pos: 49.5,91.5
+ parent: 1
+ - uid: 19913
+ components:
+ - type: Transform
+ pos: 49.5,90.5
+ parent: 1
+ - uid: 19914
+ components:
+ - type: Transform
+ pos: 49.5,89.5
+ parent: 1
+ - uid: 19915
+ components:
+ - type: Transform
+ pos: 49.5,88.5
+ parent: 1
+ - uid: 19916
+ components:
+ - type: Transform
+ pos: 49.5,87.5
+ parent: 1
+ - uid: 19917
+ components:
+ - type: Transform
+ pos: 49.5,86.5
+ parent: 1
+ - uid: 19918
+ components:
+ - type: Transform
+ pos: 48.5,86.5
+ parent: 1
+ - uid: 19919
+ components:
+ - type: Transform
+ pos: 47.5,86.5
+ parent: 1
+ - uid: 19920
+ components:
+ - type: Transform
+ pos: 46.5,90.5
+ parent: 1
+ - uid: 19922
+ components:
+ - type: Transform
+ pos: 32.5,88.5
+ parent: 1
+ - uid: 19923
+ components:
+ - type: Transform
+ pos: 32.5,87.5
+ parent: 1
+ - uid: 19924
+ components:
+ - type: Transform
+ pos: 33.5,87.5
+ parent: 1
+ - uid: 19925
+ components:
+ - type: Transform
+ pos: 34.5,87.5
+ parent: 1
+ - uid: 19926
+ components:
+ - type: Transform
+ pos: 35.5,87.5
+ parent: 1
+ - uid: 19927
+ components:
+ - type: Transform
+ pos: 36.5,87.5
+ parent: 1
+ - uid: 19928
+ components:
+ - type: Transform
+ pos: 36.5,88.5
+ parent: 1
+ - uid: 19929
+ components:
+ - type: Transform
+ pos: 36.5,89.5
+ parent: 1
+ - uid: 19930
+ components:
+ - type: Transform
+ pos: 36.5,90.5
+ parent: 1
+ - uid: 19931
+ components:
+ - type: Transform
+ pos: 36.5,91.5
+ parent: 1
+ - uid: 19932
+ components:
+ - type: Transform
+ pos: 36.5,92.5
+ parent: 1
+ - uid: 19933
+ components:
+ - type: Transform
+ pos: 36.5,93.5
+ parent: 1
+ - uid: 19934
+ components:
+ - type: Transform
+ pos: 35.5,93.5
+ parent: 1
+ - uid: 19935
+ components:
+ - type: Transform
+ pos: 34.5,93.5
+ parent: 1
+ - uid: 19936
+ components:
+ - type: Transform
+ pos: 33.5,93.5
+ parent: 1
+ - uid: 19937
+ components:
+ - type: Transform
+ pos: 32.5,93.5
+ parent: 1
+ - uid: 19938
+ components:
+ - type: Transform
+ pos: 32.5,92.5
+ parent: 1
+ - uid: 19939
+ components:
+ - type: Transform
+ pos: 37.5,93.5
+ parent: 1
+ - uid: 19940
+ components:
+ - type: Transform
+ pos: 38.5,93.5
+ parent: 1
+ - uid: 19941
+ components:
+ - type: Transform
+ pos: 39.5,93.5
+ parent: 1
+ - uid: 19942
+ components:
+ - type: Transform
+ pos: 39.5,92.5
+ parent: 1
+ - uid: 19943
+ components:
+ - type: Transform
+ pos: 39.5,91.5
+ parent: 1
+ - uid: 19944
+ components:
+ - type: Transform
+ pos: 39.5,90.5
+ parent: 1
+ - uid: 19945
+ components:
+ - type: Transform
+ pos: 39.5,89.5
+ parent: 1
+ - uid: 19946
+ components:
+ - type: Transform
+ pos: 39.5,88.5
+ parent: 1
+ - uid: 19947
+ components:
+ - type: Transform
+ pos: 39.5,87.5
+ parent: 1
+ - uid: 19948
+ components:
+ - type: Transform
+ pos: 38.5,87.5
+ parent: 1
+ - uid: 19949
+ components:
+ - type: Transform
+ pos: 37.5,87.5
+ parent: 1
+ - uid: 19950
+ components:
+ - type: Transform
+ pos: 38.5,94.5
+ parent: 1
+ - uid: 19951
+ components:
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 1
+ - uid: 19952
+ components:
+ - type: Transform
+ pos: 37.5,95.5
+ parent: 1
+ - uid: 19953
+ components:
+ - type: Transform
+ pos: 37.5,96.5
+ parent: 1
+ - uid: 19957
+ components:
+ - type: Transform
+ pos: 34.5,97.5
+ parent: 1
+ - uid: 19958
+ components:
+ - type: Transform
+ pos: 33.5,97.5
+ parent: 1
+ - uid: 19959
+ components:
+ - type: Transform
+ pos: 32.5,97.5
+ parent: 1
+ - uid: 19960
+ components:
+ - type: Transform
+ pos: 31.5,97.5
+ parent: 1
+ - uid: 19961
+ components:
+ - type: Transform
+ pos: 38.5,86.5
+ parent: 1
+ - uid: 19962
+ components:
+ - type: Transform
+ pos: 38.5,85.5
+ parent: 1
+ - uid: 19963
+ components:
+ - type: Transform
+ pos: 38.5,84.5
+ parent: 1
+ - uid: 19964
+ components:
+ - type: Transform
+ pos: 38.5,83.5
+ parent: 1
+ - uid: 19965
+ components:
+ - type: Transform
+ pos: 37.5,83.5
+ parent: 1
+ - uid: 19967
+ components:
+ - type: Transform
+ pos: 39.5,83.5
+ parent: 1
+ - uid: 19968
+ components:
+ - type: Transform
+ pos: 40.5,83.5
+ parent: 1
+ - uid: 19969
+ components:
+ - type: Transform
+ pos: 43.5,82.5
+ parent: 1
+ - uid: 19970
+ components:
+ - type: Transform
+ pos: 43.5,83.5
+ parent: 1
+ - uid: 19971
+ components:
+ - type: Transform
+ pos: 43.5,84.5
+ parent: 1
+ - uid: 19972
+ components:
+ - type: Transform
+ pos: 43.5,85.5
+ parent: 1
+ - uid: 19973
+ components:
+ - type: Transform
+ pos: 43.5,86.5
+ parent: 1
+ - uid: 19974
+ components:
+ - type: Transform
+ pos: 43.5,87.5
+ parent: 1
+ - uid: 19975
+ components:
+ - type: Transform
+ pos: 43.5,88.5
+ parent: 1
+ - uid: 19976
+ components:
+ - type: Transform
+ pos: 43.5,89.5
+ parent: 1
+ - uid: 19977
+ components:
+ - type: Transform
+ pos: 43.5,90.5
+ parent: 1
+ - uid: 19978
+ components:
+ - type: Transform
+ pos: 43.5,91.5
+ parent: 1
+ - uid: 19979
+ components:
+ - type: Transform
+ pos: 43.5,92.5
+ parent: 1
+ - uid: 19980
+ components:
+ - type: Transform
+ pos: 43.5,93.5
+ parent: 1
+ - uid: 19981
+ components:
+ - type: Transform
+ pos: 42.5,83.5
+ parent: 1
+ - uid: 19982
+ components:
+ - type: Transform
+ pos: 44.5,83.5
+ parent: 1
+ - uid: 19987
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 1
+ - uid: 19988
+ components:
+ - type: Transform
+ pos: 47.5,106.5
+ parent: 1
+ - uid: 19989
+ components:
+ - type: Transform
+ pos: 47.5,105.5
+ parent: 1
+ - uid: 19990
+ components:
+ - type: Transform
+ pos: 48.5,105.5
+ parent: 1
+ - uid: 19991
+ components:
+ - type: Transform
+ pos: 49.5,105.5
+ parent: 1
+ - uid: 19992
+ components:
+ - type: Transform
+ pos: 50.5,105.5
+ parent: 1
+ - uid: 19993
+ components:
+ - type: Transform
+ pos: 51.5,105.5
+ parent: 1
+ - uid: 19995
+ components:
+ - type: Transform
+ pos: 52.5,106.5
+ parent: 1
+ - uid: 19996
+ components:
+ - type: Transform
+ pos: 49.5,106.5
+ parent: 1
+ - uid: 19997
+ components:
+ - type: Transform
+ pos: 49.5,107.5
+ parent: 1
+ - uid: 19998
+ components:
+ - type: Transform
+ pos: 46.5,107.5
+ parent: 1
+ - uid: 19999
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 1
+ - uid: 20000
+ components:
+ - type: Transform
+ pos: 43.5,108.5
+ parent: 1
+ - uid: 20001
+ components:
+ - type: Transform
+ pos: 43.5,107.5
+ parent: 1
+ - uid: 20002
+ components:
+ - type: Transform
+ pos: 43.5,106.5
+ parent: 1
+ - uid: 20003
+ components:
+ - type: Transform
+ pos: 43.5,105.5
+ parent: 1
+ - uid: 20004
+ components:
+ - type: Transform
+ pos: 43.5,104.5
+ parent: 1
+ - uid: 20005
+ components:
+ - type: Transform
+ pos: 43.5,103.5
+ parent: 1
+ - uid: 20006
+ components:
+ - type: Transform
+ pos: 43.5,102.5
+ parent: 1
+ - uid: 20007
+ components:
+ - type: Transform
+ pos: 43.5,101.5
+ parent: 1
+ - uid: 20008
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+ - uid: 20009
+ components:
+ - type: Transform
+ pos: 43.5,99.5
+ parent: 1
+ - uid: 20010
+ components:
+ - type: Transform
+ pos: 43.5,98.5
+ parent: 1
+ - uid: 20011
+ components:
+ - type: Transform
+ pos: 43.5,97.5
+ parent: 1
+ - uid: 20012
+ components:
+ - type: Transform
+ pos: 43.5,96.5
+ parent: 1
+ - uid: 20013
+ components:
+ - type: Transform
+ pos: 43.5,95.5
+ parent: 1
+ - uid: 20014
+ components:
+ - type: Transform
+ pos: 44.5,100.5
+ parent: 1
+ - uid: 20015
+ components:
+ - type: Transform
+ pos: 41.5,100.5
+ parent: 1
+ - uid: 20016
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 1
+ - uid: 20017
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 1
+ - uid: 20018
+ components:
+ - type: Transform
+ pos: 38.5,100.5
+ parent: 1
+ - uid: 20019
+ components:
+ - type: Transform
+ pos: 37.5,100.5
+ parent: 1
+ - uid: 20020
+ components:
+ - type: Transform
+ pos: 36.5,100.5
+ parent: 1
+ - uid: 20021
+ components:
+ - type: Transform
+ pos: 35.5,100.5
+ parent: 1
+ - uid: 20022
+ components:
+ - type: Transform
+ pos: 34.5,100.5
+ parent: 1
+ - uid: 20023
+ components:
+ - type: Transform
+ pos: 33.5,100.5
+ parent: 1
+ - uid: 20024
+ components:
+ - type: Transform
+ pos: 32.5,100.5
+ parent: 1
+ - uid: 20025
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 1
+ - uid: 20026
+ components:
+ - type: Transform
+ pos: 30.5,100.5
+ parent: 1
+ - uid: 20027
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 1
+ - uid: 20028
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 1
+ - uid: 20029
+ components:
+ - type: Transform
+ pos: 38.5,98.5
+ parent: 1
+ - uid: 20030
+ components:
+ - type: Transform
+ pos: 38.5,99.5
+ parent: 1
+ - uid: 20031
+ components:
+ - type: Transform
+ pos: 50.5,98.5
+ parent: 1
+ - uid: 20032
+ components:
+ - type: Transform
+ pos: 50.5,99.5
+ parent: 1
+ - uid: 20033
+ components:
+ - type: Transform
+ pos: 50.5,100.5
+ parent: 1
+ - uid: 20034
+ components:
+ - type: Transform
+ pos: 51.5,100.5
+ parent: 1
+ - uid: 20035
+ components:
+ - type: Transform
+ pos: 52.5,100.5
+ parent: 1
+ - uid: 20036
+ components:
+ - type: Transform
+ pos: 52.5,101.5
+ parent: 1
+ - uid: 20037
+ components:
+ - type: Transform
+ pos: 52.5,102.5
+ parent: 1
+ - uid: 20039
+ components:
+ - type: Transform
+ pos: 50.5,102.5
+ parent: 1
+ - uid: 20040
+ components:
+ - type: Transform
+ pos: 48.5,102.5
+ parent: 1
+ - uid: 20041
+ components:
+ - type: Transform
+ pos: 47.5,102.5
+ parent: 1
+ - uid: 20042
+ components:
+ - type: Transform
+ pos: 49.5,102.5
+ parent: 1
+ - uid: 20043
+ components:
+ - type: Transform
+ pos: 47.5,101.5
+ parent: 1
+ - uid: 20044
+ components:
+ - type: Transform
+ pos: 47.5,100.5
+ parent: 1
+ - uid: 20045
+ components:
+ - type: Transform
+ pos: 48.5,100.5
+ parent: 1
+ - uid: 20046
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 1
+ - uid: 20047
+ components:
+ - type: Transform
+ pos: 46.5,100.5
+ parent: 1
+ - uid: 20048
+ components:
+ - type: Transform
+ pos: 34.5,104.5
+ parent: 1
+ - uid: 20049
+ components:
+ - type: Transform
+ pos: 35.5,104.5
+ parent: 1
+ - uid: 20050
+ components:
+ - type: Transform
+ pos: 36.5,104.5
+ parent: 1
+ - uid: 20051
+ components:
+ - type: Transform
+ pos: 37.5,104.5
+ parent: 1
+ - uid: 20052
+ components:
+ - type: Transform
+ pos: 38.5,104.5
+ parent: 1
+ - uid: 20053
+ components:
+ - type: Transform
+ pos: 39.5,104.5
+ parent: 1
+ - uid: 20054
+ components:
+ - type: Transform
+ pos: 39.5,105.5
+ parent: 1
+ - uid: 20055
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+ - uid: 20056
+ components:
+ - type: Transform
+ pos: 39.5,107.5
+ parent: 1
+ - uid: 20057
+ components:
+ - type: Transform
+ pos: 39.5,108.5
+ parent: 1
+ - uid: 20058
+ components:
+ - type: Transform
+ pos: 40.5,105.5
+ parent: 1
+ - uid: 20059
+ components:
+ - type: Transform
+ pos: 41.5,105.5
+ parent: 1
+ - uid: 20060
+ components:
+ - type: Transform
+ pos: 41.5,104.5
+ parent: 1
+ - uid: 20061
+ components:
+ - type: Transform
+ pos: 41.5,106.5
+ parent: 1
+ - uid: 20062
+ components:
+ - type: Transform
+ pos: 40.5,107.5
+ parent: 1
+ - uid: 20063
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 1
+ - uid: 20064
+ components:
+ - type: Transform
+ pos: 37.5,106.5
+ parent: 1
+ - uid: 20065
+ components:
+ - type: Transform
+ pos: 36.5,106.5
+ parent: 1
+ - uid: 20066
+ components:
+ - type: Transform
+ pos: 27.5,116.5
+ parent: 1
+ - uid: 20067
+ components:
+ - type: Transform
+ pos: 28.5,116.5
+ parent: 1
+ - uid: 20068
+ components:
+ - type: Transform
+ pos: 29.5,116.5
+ parent: 1
+ - uid: 20069
+ components:
+ - type: Transform
+ pos: 30.5,116.5
+ parent: 1
+ - uid: 20070
+ components:
+ - type: Transform
+ pos: 32.5,116.5
+ parent: 1
+ - uid: 20071
+ components:
+ - type: Transform
+ pos: 33.5,116.5
+ parent: 1
+ - uid: 20072
+ components:
+ - type: Transform
+ pos: 31.5,116.5
+ parent: 1
+ - uid: 20073
+ components:
+ - type: Transform
+ pos: 34.5,116.5
+ parent: 1
+ - uid: 20074
+ components:
+ - type: Transform
+ pos: 35.5,116.5
+ parent: 1
+ - uid: 20075
+ components:
+ - type: Transform
+ pos: 35.5,115.5
+ parent: 1
+ - uid: 20076
+ components:
+ - type: Transform
+ pos: 35.5,114.5
+ parent: 1
+ - uid: 20077
+ components:
+ - type: Transform
+ pos: 35.5,113.5
+ parent: 1
+ - uid: 20078
+ components:
+ - type: Transform
+ pos: 35.5,112.5
+ parent: 1
+ - uid: 20079
+ components:
+ - type: Transform
+ pos: 35.5,111.5
+ parent: 1
+ - uid: 20080
+ components:
+ - type: Transform
+ pos: 34.5,111.5
+ parent: 1
+ - uid: 20081
+ components:
+ - type: Transform
+ pos: 34.5,110.5
+ parent: 1
+ - uid: 20082
+ components:
+ - type: Transform
+ pos: 34.5,109.5
+ parent: 1
+ - uid: 20083
+ components:
+ - type: Transform
+ pos: 34.5,108.5
+ parent: 1
+ - uid: 20084
+ components:
+ - type: Transform
+ pos: 33.5,108.5
+ parent: 1
+ - uid: 20085
+ components:
+ - type: Transform
+ pos: 32.5,108.5
+ parent: 1
+ - uid: 20086
+ components:
+ - type: Transform
+ pos: 31.5,108.5
+ parent: 1
+ - uid: 20087
+ components:
+ - type: Transform
+ pos: 30.5,108.5
+ parent: 1
+ - uid: 20088
+ components:
+ - type: Transform
+ pos: 29.5,108.5
+ parent: 1
+ - uid: 20089
+ components:
+ - type: Transform
+ pos: 28.5,108.5
+ parent: 1
+ - uid: 20090
+ components:
+ - type: Transform
+ pos: 27.5,108.5
+ parent: 1
+ - uid: 20091
+ components:
+ - type: Transform
+ pos: 27.5,112.5
+ parent: 1
+ - uid: 20092
+ components:
+ - type: Transform
+ pos: 28.5,112.5
+ parent: 1
+ - uid: 20093
+ components:
+ - type: Transform
+ pos: 29.5,112.5
+ parent: 1
+ - uid: 20094
+ components:
+ - type: Transform
+ pos: 30.5,112.5
+ parent: 1
+ - uid: 20095
+ components:
+ - type: Transform
+ pos: 31.5,112.5
+ parent: 1
+ - uid: 20096
+ components:
+ - type: Transform
+ pos: 31.5,109.5
+ parent: 1
+ - uid: 20097
+ components:
+ - type: Transform
+ pos: 31.5,110.5
+ parent: 1
+ - uid: 20098
+ components:
+ - type: Transform
+ pos: 31.5,111.5
+ parent: 1
+ - uid: 20099
+ components:
+ - type: Transform
+ pos: 31.5,113.5
+ parent: 1
+ - uid: 20100
+ components:
+ - type: Transform
+ pos: 31.5,114.5
+ parent: 1
+ - uid: 20101
+ components:
+ - type: Transform
+ pos: 31.5,115.5
+ parent: 1
+ - uid: 20102
+ components:
+ - type: Transform
+ pos: 35.5,117.5
+ parent: 1
+ - uid: 20103
+ components:
+ - type: Transform
+ pos: 36.5,115.5
+ parent: 1
+ - uid: 20104
+ components:
+ - type: Transform
+ pos: 37.5,115.5
+ parent: 1
+ - uid: 20105
+ components:
+ - type: Transform
+ pos: 41.5,117.5
+ parent: 1
+ - uid: 20106
+ components:
+ - type: Transform
+ pos: 41.5,116.5
+ parent: 1
+ - uid: 20107
+ components:
+ - type: Transform
+ pos: 41.5,114.5
+ parent: 1
+ - uid: 20108
+ components:
+ - type: Transform
+ pos: 41.5,113.5
+ parent: 1
+ - uid: 20109
+ components:
+ - type: Transform
+ pos: 41.5,115.5
+ parent: 1
+ - uid: 20110
+ components:
+ - type: Transform
+ pos: 40.5,113.5
+ parent: 1
+ - uid: 20111
+ components:
+ - type: Transform
+ pos: 39.5,113.5
+ parent: 1
+ - uid: 20112
+ components:
+ - type: Transform
+ pos: 39.5,112.5
+ parent: 1
+ - uid: 20113
+ components:
+ - type: Transform
+ pos: 39.5,111.5
+ parent: 1
+ - uid: 20114
+ components:
+ - type: Transform
+ pos: 40.5,111.5
+ parent: 1
+ - uid: 20115
+ components:
+ - type: Transform
+ pos: 41.5,111.5
+ parent: 1
+ - uid: 20116
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 1
+ - uid: 20117
+ components:
+ - type: Transform
+ pos: 43.5,111.5
+ parent: 1
+ - uid: 20118
+ components:
+ - type: Transform
+ pos: 45.5,111.5
+ parent: 1
+ - uid: 20119
+ components:
+ - type: Transform
+ pos: 46.5,111.5
+ parent: 1
+ - uid: 20120
+ components:
+ - type: Transform
+ pos: 47.5,111.5
+ parent: 1
+ - uid: 20121
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 1
+ - uid: 20122
+ components:
+ - type: Transform
+ pos: 47.5,112.5
+ parent: 1
+ - uid: 20123
+ components:
+ - type: Transform
+ pos: 47.5,113.5
+ parent: 1
+ - uid: 20124
+ components:
+ - type: Transform
+ pos: 46.5,113.5
+ parent: 1
+ - uid: 20125
+ components:
+ - type: Transform
+ pos: 45.5,113.5
+ parent: 1
+ - uid: 20126
+ components:
+ - type: Transform
+ pos: 45.5,114.5
+ parent: 1
+ - uid: 20127
+ components:
+ - type: Transform
+ pos: 45.5,115.5
+ parent: 1
+ - uid: 20128
+ components:
+ - type: Transform
+ pos: 45.5,116.5
+ parent: 1
+ - uid: 20129
+ components:
+ - type: Transform
+ pos: 45.5,117.5
+ parent: 1
+ - uid: 20130
+ components:
+ - type: Transform
+ pos: 44.5,117.5
+ parent: 1
+ - uid: 20131
+ components:
+ - type: Transform
+ pos: 43.5,117.5
+ parent: 1
+ - uid: 20132
+ components:
+ - type: Transform
+ pos: 42.5,117.5
+ parent: 1
+ - uid: 20134
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 1
+ - uid: 20135
+ components:
+ - type: Transform
+ pos: 50.5,111.5
+ parent: 1
+ - uid: 20136
+ components:
+ - type: Transform
+ pos: 51.5,111.5
+ parent: 1
+ - uid: 20137
+ components:
+ - type: Transform
+ pos: 49.5,111.5
+ parent: 1
+ - uid: 20138
+ components:
+ - type: Transform
+ pos: 51.5,110.5
+ parent: 1
+ - uid: 20141
+ components:
+ - type: Transform
+ pos: 31.5,107.5
+ parent: 1
+ - uid: 20142
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - uid: 20143
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 1
+ - uid: 20144
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 1
+ - uid: 20145
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 1
+ - uid: 20146
+ components:
+ - type: Transform
+ pos: 29.5,102.5
+ parent: 1
+ - uid: 20147
+ components:
+ - type: Transform
+ pos: 28.5,102.5
+ parent: 1
+ - uid: 20148
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 1
+ - uid: 20149
+ components:
+ - type: Transform
+ pos: 27.5,103.5
+ parent: 1
+ - uid: 20150
+ components:
+ - type: Transform
+ pos: 27.5,104.5
+ parent: 1
+ - uid: 20151
+ components:
+ - type: Transform
+ pos: 26.5,104.5
+ parent: 1
+ - uid: 20152
+ components:
+ - type: Transform
+ pos: 25.5,104.5
+ parent: 1
+ - uid: 20153
+ components:
+ - type: Transform
+ pos: 25.5,103.5
+ parent: 1
+ - uid: 20154
+ components:
+ - type: Transform
+ pos: 25.5,102.5
+ parent: 1
+ - uid: 20155
+ components:
+ - type: Transform
+ pos: 25.5,101.5
+ parent: 1
+ - uid: 20156
+ components:
+ - type: Transform
+ pos: 25.5,100.5
+ parent: 1
+ - uid: 20157
+ components:
+ - type: Transform
+ pos: 26.5,100.5
+ parent: 1
+ - uid: 20158
+ components:
+ - type: Transform
+ pos: 27.5,100.5
+ parent: 1
+ - uid: 20159
+ components:
+ - type: Transform
+ pos: 27.5,101.5
+ parent: 1
+ - uid: 20160
+ components:
+ - type: Transform
+ pos: 28.5,100.5
+ parent: 1
+ - uid: 20161
+ components:
+ - type: Transform
+ pos: 24.5,100.5
+ parent: 1
+ - uid: 20314
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - uid: 20315
+ components:
+ - type: Transform
+ pos: 44.5,78.5
+ parent: 1
+ - uid: 20316
+ components:
+ - type: Transform
+ pos: 44.5,79.5
+ parent: 1
+ - uid: 20317
+ components:
+ - type: Transform
+ pos: 43.5,79.5
+ parent: 1
+ - uid: 20318
+ components:
+ - type: Transform
+ pos: 43.5,80.5
+ parent: 1
+ - uid: 20319
+ components:
+ - type: Transform
+ pos: 42.5,80.5
+ parent: 1
+ - uid: 20321
+ components:
+ - type: Transform
+ pos: 45.5,78.5
+ parent: 1
+ - uid: 20322
+ components:
+ - type: Transform
+ pos: 46.5,78.5
+ parent: 1
+ - uid: 20323
+ components:
+ - type: Transform
+ pos: 47.5,78.5
+ parent: 1
+ - uid: 20324
+ components:
+ - type: Transform
+ pos: 48.5,78.5
+ parent: 1
+ - uid: 20325
+ components:
+ - type: Transform
+ pos: 49.5,78.5
+ parent: 1
+ - uid: 20326
+ components:
+ - type: Transform
+ pos: 50.5,78.5
+ parent: 1
+ - uid: 20327
+ components:
+ - type: Transform
+ pos: 51.5,78.5
+ parent: 1
+ - uid: 20329
+ components:
+ - type: Transform
+ pos: 52.5,78.5
+ parent: 1
+ - uid: 20365
+ components:
+ - type: Transform
+ pos: 38.5,112.5
+ parent: 1
+ - uid: 20367
+ components:
+ - type: Transform
+ pos: 36.5,112.5
+ parent: 1
+ - uid: 20424
+ components:
+ - type: Transform
+ pos: 143.5,85.5
+ parent: 1
+ - uid: 20434
+ components:
+ - type: Transform
+ pos: 139.5,85.5
+ parent: 1
+ - uid: 20484
+ components:
+ - type: Transform
+ pos: 151.5,115.5
+ parent: 1
+ - uid: 20492
+ components:
+ - type: Transform
+ pos: 51.5,102.5
+ parent: 1
+ - uid: 20493
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 1
+ - uid: 20731
+ components:
+ - type: Transform
+ pos: 140.5,85.5
+ parent: 1
+ - uid: 20732
+ components:
+ - type: Transform
+ pos: 141.5,85.5
+ parent: 1
+ - uid: 20733
+ components:
+ - type: Transform
+ pos: 38.5,103.5
+ parent: 1
+ - uid: 20735
+ components:
+ - type: Transform
+ pos: 144.5,85.5
+ parent: 1
+ - uid: 20772
+ components:
+ - type: Transform
+ pos: 150.5,115.5
+ parent: 1
+ - uid: 20793
+ components:
+ - type: Transform
+ pos: 142.5,85.5
+ parent: 1
+ - uid: 20828
+ components:
+ - type: Transform
+ pos: 152.5,115.5
+ parent: 1
+ - uid: 21042
+ components:
+ - type: Transform
+ pos: 52.5,75.5
+ parent: 1
+ - uid: 21046
+ components:
+ - type: Transform
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 21060
+ components:
+ - type: Transform
+ pos: 88.5,44.5
+ parent: 1
+ - uid: 21064
+ components:
+ - type: Transform
+ pos: 62.5,67.5
+ parent: 1
+ - uid: 21137
+ components:
+ - type: Transform
+ pos: 153.5,150.5
+ parent: 1
+ - uid: 21247
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 21382
+ components:
+ - type: Transform
+ pos: 107.5,40.5
+ parent: 1
+ - uid: 21387
+ components:
+ - type: Transform
+ pos: 52.5,70.5
+ parent: 1
+ - uid: 21388
+ components:
+ - type: Transform
+ pos: 51.5,74.5
+ parent: 1
+ - uid: 21499
+ components:
+ - type: Transform
+ pos: 143.5,56.5
+ parent: 1
+ - uid: 21585
+ components:
+ - type: Transform
+ pos: 52.5,74.5
+ parent: 1
+ - uid: 21649
+ components:
+ - type: Transform
+ pos: 52.5,73.5
+ parent: 1
+ - uid: 21650
+ components:
+ - type: Transform
+ pos: 52.5,72.5
+ parent: 1
+ - uid: 21686
+ components:
+ - type: Transform
+ pos: 154.5,99.5
+ parent: 1
+ - uid: 21799
+ components:
+ - type: Transform
+ pos: 123.5,46.5
+ parent: 1
+ - uid: 21800
+ components:
+ - type: Transform
+ pos: 123.5,47.5
+ parent: 1
+ - uid: 21801
+ components:
+ - type: Transform
+ pos: 123.5,49.5
+ parent: 1
+ - uid: 21802
+ components:
+ - type: Transform
+ pos: 123.5,50.5
+ parent: 1
+ - uid: 21803
+ components:
+ - type: Transform
+ pos: 123.5,51.5
+ parent: 1
+ - uid: 21804
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - uid: 21805
+ components:
+ - type: Transform
+ pos: 123.5,53.5
+ parent: 1
+ - uid: 21806
+ components:
+ - type: Transform
+ pos: 123.5,54.5
+ parent: 1
+ - uid: 21807
+ components:
+ - type: Transform
+ pos: 123.5,48.5
+ parent: 1
+ - uid: 21808
+ components:
+ - type: Transform
+ pos: 123.5,55.5
+ parent: 1
+ - uid: 21810
+ components:
+ - type: Transform
+ pos: 122.5,50.5
+ parent: 1
+ - uid: 21811
+ components:
+ - type: Transform
+ pos: 124.5,55.5
+ parent: 1
+ - uid: 21812
+ components:
+ - type: Transform
+ pos: 125.5,55.5
+ parent: 1
+ - uid: 21813
+ components:
+ - type: Transform
+ pos: 125.5,56.5
+ parent: 1
+ - uid: 21814
+ components:
+ - type: Transform
+ pos: 125.5,57.5
+ parent: 1
+ - uid: 21815
+ components:
+ - type: Transform
+ pos: 122.5,59.5
+ parent: 1
+ - uid: 21816
+ components:
+ - type: Transform
+ pos: 123.5,59.5
+ parent: 1
+ - uid: 21817
+ components:
+ - type: Transform
+ pos: 124.5,59.5
+ parent: 1
+ - uid: 21818
+ components:
+ - type: Transform
+ pos: 125.5,59.5
+ parent: 1
+ - uid: 21819
+ components:
+ - type: Transform
+ pos: 126.5,59.5
+ parent: 1
+ - uid: 21820
+ components:
+ - type: Transform
+ pos: 127.5,59.5
+ parent: 1
+ - uid: 21821
+ components:
+ - type: Transform
+ pos: 128.5,59.5
+ parent: 1
+ - uid: 21822
+ components:
+ - type: Transform
+ pos: 129.5,59.5
+ parent: 1
+ - uid: 21823
+ components:
+ - type: Transform
+ pos: 129.5,60.5
+ parent: 1
+ - uid: 21824
+ components:
+ - type: Transform
+ pos: 129.5,61.5
+ parent: 1
+ - uid: 21825
+ components:
+ - type: Transform
+ pos: 130.5,59.5
+ parent: 1
+ - uid: 21826
+ components:
+ - type: Transform
+ pos: 130.5,58.5
+ parent: 1
+ - uid: 21827
+ components:
+ - type: Transform
+ pos: 130.5,57.5
+ parent: 1
+ - uid: 21828
+ components:
+ - type: Transform
+ pos: 130.5,56.5
+ parent: 1
+ - uid: 21829
+ components:
+ - type: Transform
+ pos: 130.5,55.5
+ parent: 1
+ - uid: 21830
+ components:
+ - type: Transform
+ pos: 131.5,55.5
+ parent: 1
+ - uid: 21831
+ components:
+ - type: Transform
+ pos: 132.5,55.5
+ parent: 1
+ - uid: 21832
+ components:
+ - type: Transform
+ pos: 133.5,55.5
+ parent: 1
+ - uid: 21833
+ components:
+ - type: Transform
+ pos: 134.5,55.5
+ parent: 1
+ - uid: 21834
+ components:
+ - type: Transform
+ pos: 126.5,55.5
+ parent: 1
+ - uid: 21835
+ components:
+ - type: Transform
+ pos: 127.5,55.5
+ parent: 1
+ - uid: 21836
+ components:
+ - type: Transform
+ pos: 126.5,54.5
+ parent: 1
+ - uid: 21837
+ components:
+ - type: Transform
+ pos: 126.5,53.5
+ parent: 1
+ - uid: 21838
+ components:
+ - type: Transform
+ pos: 126.5,52.5
+ parent: 1
+ - uid: 21839
+ components:
+ - type: Transform
+ pos: 126.5,51.5
+ parent: 1
+ - uid: 21840
+ components:
+ - type: Transform
+ pos: 126.5,50.5
+ parent: 1
+ - uid: 21841
+ components:
+ - type: Transform
+ pos: 126.5,49.5
+ parent: 1
+ - uid: 21842
+ components:
+ - type: Transform
+ pos: 126.5,47.5
+ parent: 1
+ - uid: 21843
+ components:
+ - type: Transform
+ pos: 126.5,46.5
+ parent: 1
+ - uid: 21844
+ components:
+ - type: Transform
+ pos: 126.5,45.5
+ parent: 1
+ - uid: 21845
+ components:
+ - type: Transform
+ pos: 126.5,48.5
+ parent: 1
+ - uid: 21846
+ components:
+ - type: Transform
+ pos: 141.5,52.5
+ parent: 1
+ - uid: 21847
+ components:
+ - type: Transform
+ pos: 140.5,52.5
+ parent: 1
+ - uid: 21848
+ components:
+ - type: Transform
+ pos: 139.5,52.5
+ parent: 1
+ - uid: 21849
+ components:
+ - type: Transform
+ pos: 139.5,53.5
+ parent: 1
+ - uid: 21850
+ components:
+ - type: Transform
+ pos: 139.5,54.5
+ parent: 1
+ - uid: 21851
+ components:
+ - type: Transform
+ pos: 138.5,55.5
+ parent: 1
+ - uid: 21852
+ components:
+ - type: Transform
+ pos: 137.5,55.5
+ parent: 1
+ - uid: 21853
+ components:
+ - type: Transform
+ pos: 131.5,45.5
+ parent: 1
+ - uid: 21854
+ components:
+ - type: Transform
+ pos: 136.5,55.5
+ parent: 1
+ - uid: 21855
+ components:
+ - type: Transform
+ pos: 139.5,55.5
+ parent: 1
+ - uid: 21856
+ components:
+ - type: Transform
+ pos: 131.5,51.5
+ parent: 1
+ - uid: 21858
+ components:
+ - type: Transform
+ pos: 132.5,52.5
+ parent: 1
+ - uid: 21859
+ components:
+ - type: Transform
+ pos: 133.5,52.5
+ parent: 1
+ - uid: 21860
+ components:
+ - type: Transform
+ pos: 134.5,52.5
+ parent: 1
+ - uid: 21862
+ components:
+ - type: Transform
+ pos: 132.5,49.5
+ parent: 1
+ - uid: 21863
+ components:
+ - type: Transform
+ pos: 133.5,49.5
+ parent: 1
+ - uid: 21864
+ components:
+ - type: Transform
+ pos: 134.5,49.5
+ parent: 1
+ - uid: 21865
+ components:
+ - type: Transform
+ pos: 132.5,46.5
+ parent: 1
+ - uid: 21866
+ components:
+ - type: Transform
+ pos: 134.5,46.5
+ parent: 1
+ - uid: 21867
+ components:
+ - type: Transform
+ pos: 133.5,46.5
+ parent: 1
+ - uid: 21868
+ components:
+ - type: Transform
+ pos: 127.5,60.5
+ parent: 1
+ - uid: 21869
+ components:
+ - type: Transform
+ pos: 127.5,61.5
+ parent: 1
+ - uid: 21870
+ components:
+ - type: Transform
+ pos: 122.5,58.5
+ parent: 1
+ - uid: 21873
+ components:
+ - type: Transform
+ pos: 122.5,60.5
+ parent: 1
+ - uid: 21874
+ components:
+ - type: Transform
+ pos: 127.5,63.5
+ parent: 1
+ - uid: 21875
+ components:
+ - type: Transform
+ pos: 127.5,64.5
+ parent: 1
+ - uid: 21876
+ components:
+ - type: Transform
+ pos: 127.5,65.5
+ parent: 1
+ - uid: 21877
+ components:
+ - type: Transform
+ pos: 127.5,66.5
+ parent: 1
+ - uid: 21878
+ components:
+ - type: Transform
+ pos: 127.5,67.5
+ parent: 1
+ - uid: 21879
+ components:
+ - type: Transform
+ pos: 127.5,68.5
+ parent: 1
+ - uid: 21880
+ components:
+ - type: Transform
+ pos: 127.5,69.5
+ parent: 1
+ - uid: 21881
+ components:
+ - type: Transform
+ pos: 127.5,70.5
+ parent: 1
+ - uid: 21882
+ components:
+ - type: Transform
+ pos: 127.5,71.5
+ parent: 1
+ - uid: 21883
+ components:
+ - type: Transform
+ pos: 127.5,72.5
+ parent: 1
+ - uid: 21884
+ components:
+ - type: Transform
+ pos: 127.5,73.5
+ parent: 1
+ - uid: 21885
+ components:
+ - type: Transform
+ pos: 127.5,74.5
+ parent: 1
+ - uid: 21886
+ components:
+ - type: Transform
+ pos: 126.5,74.5
+ parent: 1
+ - uid: 21887
+ components:
+ - type: Transform
+ pos: 125.5,74.5
+ parent: 1
+ - uid: 21888
+ components:
+ - type: Transform
+ pos: 124.5,74.5
+ parent: 1
+ - uid: 21889
+ components:
+ - type: Transform
+ pos: 123.5,74.5
+ parent: 1
+ - uid: 21890
+ components:
+ - type: Transform
+ pos: 126.5,71.5
+ parent: 1
+ - uid: 21891
+ components:
+ - type: Transform
+ pos: 125.5,71.5
+ parent: 1
+ - uid: 21892
+ components:
+ - type: Transform
+ pos: 124.5,71.5
+ parent: 1
+ - uid: 21893
+ components:
+ - type: Transform
+ pos: 123.5,71.5
+ parent: 1
+ - uid: 21894
+ components:
+ - type: Transform
+ pos: 123.5,68.5
+ parent: 1
+ - uid: 21895
+ components:
+ - type: Transform
+ pos: 124.5,68.5
+ parent: 1
+ - uid: 21896
+ components:
+ - type: Transform
+ pos: 125.5,68.5
+ parent: 1
+ - uid: 21897
+ components:
+ - type: Transform
+ pos: 126.5,68.5
+ parent: 1
+ - uid: 21898
+ components:
+ - type: Transform
+ pos: 123.5,65.5
+ parent: 1
+ - uid: 21899
+ components:
+ - type: Transform
+ pos: 124.5,65.5
+ parent: 1
+ - uid: 21900
+ components:
+ - type: Transform
+ pos: 125.5,65.5
+ parent: 1
+ - uid: 21901
+ components:
+ - type: Transform
+ pos: 126.5,65.5
+ parent: 1
+ - uid: 21902
+ components:
+ - type: Transform
+ pos: 128.5,66.5
+ parent: 1
+ - uid: 21903
+ components:
+ - type: Transform
+ pos: 129.5,66.5
+ parent: 1
+ - uid: 21904
+ components:
+ - type: Transform
+ pos: 136.5,64.5
+ parent: 1
+ - uid: 21905
+ components:
+ - type: Transform
+ pos: 135.5,64.5
+ parent: 1
+ - uid: 21906
+ components:
+ - type: Transform
+ pos: 134.5,64.5
+ parent: 1
+ - uid: 21907
+ components:
+ - type: Transform
+ pos: 133.5,64.5
+ parent: 1
+ - uid: 21908
+ components:
+ - type: Transform
+ pos: 132.5,64.5
+ parent: 1
+ - uid: 21909
+ components:
+ - type: Transform
+ pos: 131.5,64.5
+ parent: 1
+ - uid: 21910
+ components:
+ - type: Transform
+ pos: 134.5,63.5
+ parent: 1
+ - uid: 21911
+ components:
+ - type: Transform
+ pos: 134.5,62.5
+ parent: 1
+ - uid: 21912
+ components:
+ - type: Transform
+ pos: 134.5,61.5
+ parent: 1
+ - uid: 21913
+ components:
+ - type: Transform
+ pos: 134.5,60.5
+ parent: 1
+ - uid: 21914
+ components:
+ - type: Transform
+ pos: 134.5,59.5
+ parent: 1
+ - uid: 21915
+ components:
+ - type: Transform
+ pos: 135.5,59.5
+ parent: 1
+ - uid: 21916
+ components:
+ - type: Transform
+ pos: 134.5,65.5
+ parent: 1
+ - uid: 21917
+ components:
+ - type: Transform
+ pos: 130.5,75.5
+ parent: 1
+ - uid: 21918
+ components:
+ - type: Transform
+ pos: 130.5,74.5
+ parent: 1
+ - uid: 21919
+ components:
+ - type: Transform
+ pos: 130.5,73.5
+ parent: 1
+ - uid: 21920
+ components:
+ - type: Transform
+ pos: 131.5,73.5
+ parent: 1
+ - uid: 21921
+ components:
+ - type: Transform
+ pos: 131.5,72.5
+ parent: 1
+ - uid: 21922
+ components:
+ - type: Transform
+ pos: 131.5,71.5
+ parent: 1
+ - uid: 21923
+ components:
+ - type: Transform
+ pos: 131.5,70.5
+ parent: 1
+ - uid: 21924
+ components:
+ - type: Transform
+ pos: 131.5,69.5
+ parent: 1
+ - uid: 21925
+ components:
+ - type: Transform
+ pos: 131.5,68.5
+ parent: 1
+ - uid: 21926
+ components:
+ - type: Transform
+ pos: 132.5,68.5
+ parent: 1
+ - uid: 21927
+ components:
+ - type: Transform
+ pos: 133.5,68.5
+ parent: 1
+ - uid: 21928
+ components:
+ - type: Transform
+ pos: 134.5,68.5
+ parent: 1
+ - uid: 21929
+ components:
+ - type: Transform
+ pos: 134.5,69.5
+ parent: 1
+ - uid: 21930
+ components:
+ - type: Transform
+ pos: 134.5,70.5
+ parent: 1
+ - uid: 21931
+ components:
+ - type: Transform
+ pos: 134.5,71.5
+ parent: 1
+ - uid: 21932
+ components:
+ - type: Transform
+ pos: 134.5,72.5
+ parent: 1
+ - uid: 21933
+ components:
+ - type: Transform
+ pos: 134.5,73.5
+ parent: 1
+ - uid: 21934
+ components:
+ - type: Transform
+ pos: 133.5,73.5
+ parent: 1
+ - uid: 21935
+ components:
+ - type: Transform
+ pos: 132.5,73.5
+ parent: 1
+ - uid: 21936
+ components:
+ - type: Transform
+ pos: 130.5,51.5
+ parent: 1
+ - uid: 21937
+ components:
+ - type: Transform
+ pos: 128.5,51.5
+ parent: 1
+ - uid: 21938
+ components:
+ - type: Transform
+ pos: 129.5,51.5
+ parent: 1
+ - uid: 21939
+ components:
+ - type: Transform
+ pos: 127.5,51.5
+ parent: 1
+ - uid: 21940
+ components:
+ - type: Transform
+ pos: 127.5,48.5
+ parent: 1
+ - uid: 21941
+ components:
+ - type: Transform
+ pos: 128.5,48.5
+ parent: 1
+ - uid: 21942
+ components:
+ - type: Transform
+ pos: 129.5,48.5
+ parent: 1
+ - uid: 21943
+ components:
+ - type: Transform
+ pos: 130.5,48.5
+ parent: 1
+ - uid: 21944
+ components:
+ - type: Transform
+ pos: 130.5,47.5
+ parent: 1
+ - uid: 21945
+ components:
+ - type: Transform
+ pos: 130.5,46.5
+ parent: 1
+ - uid: 21946
+ components:
+ - type: Transform
+ pos: 130.5,45.5
+ parent: 1
+ - uid: 21947
+ components:
+ - type: Transform
+ pos: 132.5,45.5
+ parent: 1
+ - uid: 21948
+ components:
+ - type: Transform
+ pos: 132.5,47.5
+ parent: 1
+ - uid: 21949
+ components:
+ - type: Transform
+ pos: 132.5,48.5
+ parent: 1
+ - uid: 21950
+ components:
+ - type: Transform
+ pos: 132.5,50.5
+ parent: 1
+ - uid: 21951
+ components:
+ - type: Transform
+ pos: 132.5,51.5
+ parent: 1
+ - uid: 21954
+ components:
+ - type: Transform
+ pos: 137.5,47.5
+ parent: 1
+ - uid: 21955
+ components:
+ - type: Transform
+ pos: 138.5,47.5
+ parent: 1
+ - uid: 21956
+ components:
+ - type: Transform
+ pos: 139.5,47.5
+ parent: 1
+ - uid: 21957
+ components:
+ - type: Transform
+ pos: 139.5,48.5
+ parent: 1
+ - uid: 21958
+ components:
+ - type: Transform
+ pos: 140.5,48.5
+ parent: 1
+ - uid: 21959
+ components:
+ - type: Transform
+ pos: 141.5,48.5
+ parent: 1
+ - uid: 21960
+ components:
+ - type: Transform
+ pos: 141.5,47.5
+ parent: 1
+ - uid: 21961
+ components:
+ - type: Transform
+ pos: 141.5,46.5
+ parent: 1
+ - uid: 21962
+ components:
+ - type: Transform
+ pos: 141.5,45.5
+ parent: 1
+ - uid: 21963
+ components:
+ - type: Transform
+ pos: 140.5,45.5
+ parent: 1
+ - uid: 21964
+ components:
+ - type: Transform
+ pos: 139.5,45.5
+ parent: 1
+ - uid: 21965
+ components:
+ - type: Transform
+ pos: 139.5,46.5
+ parent: 1
+ - uid: 21966
+ components:
+ - type: Transform
+ pos: 140.5,44.5
+ parent: 1
+ - uid: 21967
+ components:
+ - type: Transform
+ pos: 140.5,43.5
+ parent: 1
+ - uid: 21968
+ components:
+ - type: Transform
+ pos: 140.5,42.5
+ parent: 1
+ - uid: 21969
+ components:
+ - type: Transform
+ pos: 140.5,41.5
+ parent: 1
+ - uid: 21970
+ components:
+ - type: Transform
+ pos: 139.5,49.5
+ parent: 1
+ - uid: 21971
+ components:
+ - type: Transform
+ pos: 141.5,53.5
+ parent: 1
+ - uid: 21972
+ components:
+ - type: Transform
+ pos: 141.5,54.5
+ parent: 1
+ - uid: 21973
+ components:
+ - type: Transform
+ pos: 141.5,55.5
+ parent: 1
+ - uid: 21974
+ components:
+ - type: Transform
+ pos: 141.5,56.5
+ parent: 1
+ - uid: 21976
+ components:
+ - type: Transform
+ pos: 142.5,56.5
+ parent: 1
+ - uid: 21977
+ components:
+ - type: Transform
+ pos: 140.5,57.5
+ parent: 1
+ - uid: 21978
+ components:
+ - type: Transform
+ pos: 141.5,57.5
+ parent: 1
+ - uid: 21979
+ components:
+ - type: Transform
+ pos: 138.5,57.5
+ parent: 1
+ - uid: 21980
+ components:
+ - type: Transform
+ pos: 138.5,58.5
+ parent: 1
+ - uid: 21981
+ components:
+ - type: Transform
+ pos: 138.5,59.5
+ parent: 1
+ - uid: 21982
+ components:
+ - type: Transform
+ pos: 138.5,60.5
+ parent: 1
+ - uid: 21983
+ components:
+ - type: Transform
+ pos: 138.5,61.5
+ parent: 1
+ - uid: 21984
+ components:
+ - type: Transform
+ pos: 138.5,62.5
+ parent: 1
+ - uid: 21985
+ components:
+ - type: Transform
+ pos: 138.5,63.5
+ parent: 1
+ - uid: 21986
+ components:
+ - type: Transform
+ pos: 137.5,59.5
+ parent: 1
+ - uid: 21987
+ components:
+ - type: Transform
+ pos: 140.5,58.5
+ parent: 1
+ - uid: 21988
+ components:
+ - type: Transform
+ pos: 140.5,59.5
+ parent: 1
+ - uid: 21989
+ components:
+ - type: Transform
+ pos: 140.5,60.5
+ parent: 1
+ - uid: 21990
+ components:
+ - type: Transform
+ pos: 140.5,61.5
+ parent: 1
+ - uid: 21991
+ components:
+ - type: Transform
+ pos: 139.5,61.5
+ parent: 1
+ - uid: 21992
+ components:
+ - type: Transform
+ pos: 138.5,56.5
+ parent: 1
+ - uid: 21993
+ components:
+ - type: Transform
+ pos: 144.5,56.5
+ parent: 1
+ - uid: 21994
+ components:
+ - type: Transform
+ pos: 145.5,56.5
+ parent: 1
+ - uid: 21995
+ components:
+ - type: Transform
+ pos: 146.5,56.5
+ parent: 1
+ - uid: 21996
+ components:
+ - type: Transform
+ pos: 147.5,56.5
+ parent: 1
+ - uid: 21997
+ components:
+ - type: Transform
+ pos: 148.5,56.5
+ parent: 1
+ - uid: 21998
+ components:
+ - type: Transform
+ pos: 148.5,57.5
+ parent: 1
+ - uid: 21999
+ components:
+ - type: Transform
+ pos: 148.5,58.5
+ parent: 1
+ - uid: 22000
+ components:
+ - type: Transform
+ pos: 148.5,59.5
+ parent: 1
+ - uid: 22001
+ components:
+ - type: Transform
+ pos: 148.5,60.5
+ parent: 1
+ - uid: 22002
+ components:
+ - type: Transform
+ pos: 148.5,61.5
+ parent: 1
+ - uid: 22003
+ components:
+ - type: Transform
+ pos: 148.5,62.5
+ parent: 1
+ - uid: 22004
+ components:
+ - type: Transform
+ pos: 148.5,63.5
+ parent: 1
+ - uid: 22005
+ components:
+ - type: Transform
+ pos: 149.5,61.5
+ parent: 1
+ - uid: 22006
+ components:
+ - type: Transform
+ pos: 149.5,57.5
+ parent: 1
+ - uid: 22007
+ components:
+ - type: Transform
+ pos: 145.5,55.5
+ parent: 1
+ - uid: 22008
+ components:
+ - type: Transform
+ pos: 143.5,50.5
+ parent: 1
+ - uid: 22009
+ components:
+ - type: Transform
+ pos: 144.5,50.5
+ parent: 1
+ - uid: 22010
+ components:
+ - type: Transform
+ pos: 145.5,50.5
+ parent: 1
+ - uid: 22011
+ components:
+ - type: Transform
+ pos: 145.5,49.5
+ parent: 1
+ - uid: 22012
+ components:
+ - type: Transform
+ pos: 146.5,49.5
+ parent: 1
+ - uid: 22013
+ components:
+ - type: Transform
+ pos: 147.5,49.5
+ parent: 1
+ - uid: 22014
+ components:
+ - type: Transform
+ pos: 148.5,49.5
+ parent: 1
+ - uid: 22015
+ components:
+ - type: Transform
+ pos: 149.5,49.5
+ parent: 1
+ - uid: 22016
+ components:
+ - type: Transform
+ pos: 149.5,50.5
+ parent: 1
+ - uid: 22017
+ components:
+ - type: Transform
+ pos: 149.5,51.5
+ parent: 1
+ - uid: 22018
+ components:
+ - type: Transform
+ pos: 149.5,52.5
+ parent: 1
+ - uid: 22019
+ components:
+ - type: Transform
+ pos: 148.5,52.5
+ parent: 1
+ - uid: 22020
+ components:
+ - type: Transform
+ pos: 147.5,52.5
+ parent: 1
+ - uid: 22021
+ components:
+ - type: Transform
+ pos: 146.5,52.5
+ parent: 1
+ - uid: 22022
+ components:
+ - type: Transform
+ pos: 145.5,52.5
+ parent: 1
+ - uid: 22023
+ components:
+ - type: Transform
+ pos: 145.5,51.5
+ parent: 1
+ - uid: 22027
+ components:
+ - type: Transform
+ pos: 154.5,54.5
+ parent: 1
+ - uid: 22028
+ components:
+ - type: Transform
+ pos: 154.5,53.5
+ parent: 1
+ - uid: 22029
+ components:
+ - type: Transform
+ pos: 154.5,52.5
+ parent: 1
+ - uid: 22030
+ components:
+ - type: Transform
+ pos: 154.5,51.5
+ parent: 1
+ - uid: 22031
+ components:
+ - type: Transform
+ pos: 154.5,50.5
+ parent: 1
+ - uid: 22032
+ components:
+ - type: Transform
+ pos: 154.5,55.5
+ parent: 1
+ - uid: 22033
+ components:
+ - type: Transform
+ pos: 154.5,57.5
+ parent: 1
+ - uid: 22034
+ components:
+ - type: Transform
+ pos: 154.5,56.5
+ parent: 1
+ - uid: 22035
+ components:
+ - type: Transform
+ pos: 153.5,57.5
+ parent: 1
+ - uid: 22036
+ components:
+ - type: Transform
+ pos: 151.5,57.5
+ parent: 1
+ - uid: 22037
+ components:
+ - type: Transform
+ pos: 152.5,57.5
+ parent: 1
+ - uid: 22052
+ components:
+ - type: Transform
+ pos: 152.5,59.5
+ parent: 1
+ - uid: 22053
+ components:
+ - type: Transform
+ pos: 152.5,60.5
+ parent: 1
+ - uid: 22054
+ components:
+ - type: Transform
+ pos: 152.5,61.5
+ parent: 1
+ - uid: 22055
+ components:
+ - type: Transform
+ pos: 152.5,62.5
+ parent: 1
+ - uid: 22056
+ components:
+ - type: Transform
+ pos: 153.5,62.5
+ parent: 1
+ - uid: 22057
+ components:
+ - type: Transform
+ pos: 154.5,62.5
+ parent: 1
+ - uid: 22058
+ components:
+ - type: Transform
+ pos: 155.5,62.5
+ parent: 1
+ - uid: 22059
+ components:
+ - type: Transform
+ pos: 156.5,62.5
+ parent: 1
+ - uid: 22060
+ components:
+ - type: Transform
+ pos: 156.5,63.5
+ parent: 1
+ - uid: 22061
+ components:
+ - type: Transform
+ pos: 156.5,64.5
+ parent: 1
+ - uid: 22062
+ components:
+ - type: Transform
+ pos: 151.5,61.5
+ parent: 1
+ - uid: 22063
+ components:
+ - type: Transform
+ pos: 150.5,68.5
+ parent: 1
+ - uid: 22064
+ components:
+ - type: Transform
+ pos: 151.5,68.5
+ parent: 1
+ - uid: 22065
+ components:
+ - type: Transform
+ pos: 152.5,68.5
+ parent: 1
+ - uid: 22066
+ components:
+ - type: Transform
+ pos: 153.5,68.5
+ parent: 1
+ - uid: 22067
+ components:
+ - type: Transform
+ pos: 153.5,67.5
+ parent: 1
+ - uid: 22068
+ components:
+ - type: Transform
+ pos: 153.5,69.5
+ parent: 1
+ - uid: 22069
+ components:
+ - type: Transform
+ pos: 153.5,70.5
+ parent: 1
+ - uid: 22070
+ components:
+ - type: Transform
+ pos: 153.5,71.5
+ parent: 1
+ - uid: 22071
+ components:
+ - type: Transform
+ pos: 153.5,72.5
+ parent: 1
+ - uid: 22072
+ components:
+ - type: Transform
+ pos: 153.5,73.5
+ parent: 1
+ - uid: 22079
+ components:
+ - type: Transform
+ pos: 143.5,63.5
+ parent: 1
+ - uid: 22080
+ components:
+ - type: Transform
+ pos: 143.5,64.5
+ parent: 1
+ - uid: 22081
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+ - uid: 22082
+ components:
+ - type: Transform
+ pos: 143.5,66.5
+ parent: 1
+ - uid: 22083
+ components:
+ - type: Transform
+ pos: 142.5,65.5
+ parent: 1
+ - uid: 22084
+ components:
+ - type: Transform
+ pos: 144.5,65.5
+ parent: 1
+ - uid: 22085
+ components:
+ - type: Transform
+ pos: 144.5,63.5
+ parent: 1
+ - uid: 22086
+ components:
+ - type: Transform
+ pos: 144.5,62.5
+ parent: 1
+ - uid: 22087
+ components:
+ - type: Transform
+ pos: 144.5,61.5
+ parent: 1
+ - uid: 22088
+ components:
+ - type: Transform
+ pos: 138.5,65.5
+ parent: 1
+ - uid: 22089
+ components:
+ - type: Transform
+ pos: 138.5,66.5
+ parent: 1
+ - uid: 22090
+ components:
+ - type: Transform
+ pos: 138.5,67.5
+ parent: 1
+ - uid: 22091
+ components:
+ - type: Transform
+ pos: 138.5,69.5
+ parent: 1
+ - uid: 22092
+ components:
+ - type: Transform
+ pos: 138.5,70.5
+ parent: 1
+ - uid: 22093
+ components:
+ - type: Transform
+ pos: 138.5,68.5
+ parent: 1
+ - uid: 22094
+ components:
+ - type: Transform
+ pos: 137.5,68.5
+ parent: 1
+ - uid: 22095
+ components:
+ - type: Transform
+ pos: 138.5,71.5
+ parent: 1
+ - uid: 22096
+ components:
+ - type: Transform
+ pos: 138.5,72.5
+ parent: 1
+ - uid: 22097
+ components:
+ - type: Transform
+ pos: 138.5,73.5
+ parent: 1
+ - uid: 22098
+ components:
+ - type: Transform
+ pos: 138.5,74.5
+ parent: 1
+ - uid: 22099
+ components:
+ - type: Transform
+ pos: 137.5,74.5
+ parent: 1
+ - uid: 22101
+ components:
+ - type: Transform
+ pos: 139.5,74.5
+ parent: 1
+ - uid: 22103
+ components:
+ - type: Transform
+ pos: 139.5,70.5
+ parent: 1
+ - uid: 22104
+ components:
+ - type: Transform
+ pos: 140.5,70.5
+ parent: 1
+ - uid: 22105
+ components:
+ - type: Transform
+ pos: 141.5,70.5
+ parent: 1
+ - uid: 22106
+ components:
+ - type: Transform
+ pos: 142.5,70.5
+ parent: 1
+ - uid: 22107
+ components:
+ - type: Transform
+ pos: 143.5,70.5
+ parent: 1
+ - uid: 22108
+ components:
+ - type: Transform
+ pos: 145.5,70.5
+ parent: 1
+ - uid: 22109
+ components:
+ - type: Transform
+ pos: 146.5,70.5
+ parent: 1
+ - uid: 22110
+ components:
+ - type: Transform
+ pos: 147.5,70.5
+ parent: 1
+ - uid: 22111
+ components:
+ - type: Transform
+ pos: 148.5,70.5
+ parent: 1
+ - uid: 22112
+ components:
+ - type: Transform
+ pos: 144.5,70.5
+ parent: 1
+ - uid: 22113
+ components:
+ - type: Transform
+ pos: 148.5,69.5
+ parent: 1
+ - uid: 22114
+ components:
+ - type: Transform
+ pos: 148.5,68.5
+ parent: 1
+ - uid: 22115
+ components:
+ - type: Transform
+ pos: 148.5,67.5
+ parent: 1
+ - uid: 22116
+ components:
+ - type: Transform
+ pos: 148.5,66.5
+ parent: 1
+ - uid: 22117
+ components:
+ - type: Transform
+ pos: 148.5,65.5
+ parent: 1
+ - uid: 22118
+ components:
+ - type: Transform
+ pos: 149.5,67.5
+ parent: 1
+ - uid: 22119
+ components:
+ - type: Transform
+ pos: 147.5,71.5
+ parent: 1
+ - uid: 22120
+ components:
+ - type: Transform
+ pos: 147.5,72.5
+ parent: 1
+ - uid: 22121
+ components:
+ - type: Transform
+ pos: 145.5,71.5
+ parent: 1
+ - uid: 22122
+ components:
+ - type: Transform
+ pos: 145.5,72.5
+ parent: 1
+ - uid: 22139
+ components:
+ - type: Transform
+ pos: 142.5,57.5
+ parent: 1
+ - uid: 22140
+ components:
+ - type: Transform
+ pos: 142.5,58.5
+ parent: 1
+ - uid: 22141
+ components:
+ - type: Transform
+ pos: 142.5,59.5
+ parent: 1
+ - uid: 22142
+ components:
+ - type: Transform
+ pos: 143.5,71.5
+ parent: 1
+ - uid: 22143
+ components:
+ - type: Transform
+ pos: 143.5,72.5
+ parent: 1
+ - uid: 22144
+ components:
+ - type: Transform
+ pos: 143.5,73.5
+ parent: 1
+ - uid: 22145
+ components:
+ - type: Transform
+ pos: 143.5,74.5
+ parent: 1
+ - uid: 22146
+ components:
+ - type: Transform
+ pos: 142.5,74.5
+ parent: 1
+ - uid: 22147
+ components:
+ - type: Transform
+ pos: 130.5,71.5
+ parent: 1
+ - uid: 22148
+ components:
+ - type: Transform
+ pos: 134.5,67.5
+ parent: 1
+ - uid: 22149
+ components:
+ - type: Transform
+ pos: 135.5,68.5
+ parent: 1
+ - uid: 22150
+ components:
+ - type: Transform
+ pos: 133.5,74.5
+ parent: 1
+ - uid: 22151
+ components:
+ - type: Transform
+ pos: 145.5,48.5
+ parent: 1
+ - uid: 22152
+ components:
+ - type: Transform
+ pos: 145.5,53.5
+ parent: 1
+ - uid: 22153
+ components:
+ - type: Transform
+ pos: 139.5,51.5
+ parent: 1
+ - uid: 22548
+ components:
+ - type: Transform
+ pos: 135.5,85.5
+ parent: 1
+ - uid: 22560
+ components:
+ - type: Transform
+ pos: 129.5,55.5
+ parent: 1
+ - uid: 22597
+ components:
+ - type: Transform
+ pos: 96.5,48.5
+ parent: 1
+ - uid: 22600
+ components:
+ - type: Transform
+ pos: 105.5,41.5
+ parent: 1
+ - uid: 22664
+ components:
+ - type: Transform
+ pos: 98.5,47.5
+ parent: 1
+ - uid: 22706
+ components:
+ - type: Transform
+ pos: 107.5,39.5
+ parent: 1
+ - uid: 22745
+ components:
+ - type: Transform
+ pos: 84.5,45.5
+ parent: 1
+ - uid: 22917
+ components:
+ - type: Transform
+ pos: 83.5,45.5
+ parent: 1
+ - uid: 22985
+ components:
+ - type: Transform
+ pos: 77.5,70.5
+ parent: 1
+ - uid: 23204
+ components:
+ - type: Transform
+ pos: 104.5,45.5
+ parent: 1
+ - uid: 23207
+ components:
+ - type: Transform
+ pos: 106.5,45.5
+ parent: 1
+ - uid: 23209
+ components:
+ - type: Transform
+ pos: 105.5,45.5
+ parent: 1
+ - uid: 23239
+ components:
+ - type: Transform
+ pos: 154.5,150.5
+ parent: 1
+ - uid: 23243
+ components:
+ - type: Transform
+ pos: 52.5,71.5
+ parent: 1
+ - uid: 23263
+ components:
+ - type: Transform
+ pos: 95.5,48.5
+ parent: 1
+ - uid: 23309
+ components:
+ - type: Transform
+ pos: 76.5,143.5
+ parent: 1
+ - uid: 23310
+ components:
+ - type: Transform
+ pos: 76.5,130.5
+ parent: 1
+ - uid: 23320
+ components:
+ - type: Transform
+ pos: 85.5,145.5
+ parent: 1
+ - uid: 23324
+ components:
+ - type: Transform
+ pos: 94.5,40.5
+ parent: 1
+ - uid: 23327
+ components:
+ - type: Transform
+ pos: 107.5,45.5
+ parent: 1
+ - uid: 23335
+ components:
+ - type: Transform
+ pos: 61.5,67.5
+ parent: 1
+ - uid: 23339
+ components:
+ - type: Transform
+ pos: 99.5,41.5
+ parent: 1
+ - uid: 23350
+ components:
+ - type: Transform
+ pos: 106.5,47.5
+ parent: 1
+ - uid: 23367
+ components:
+ - type: Transform
+ pos: 90.5,40.5
+ parent: 1
+ - uid: 23419
+ components:
+ - type: Transform
+ pos: 150.5,113.5
+ parent: 1
+ - uid: 23420
+ components:
+ - type: Transform
+ pos: 149.5,113.5
+ parent: 1
+ - uid: 23425
+ components:
+ - type: Transform
+ pos: 148.5,113.5
+ parent: 1
+ - uid: 23443
+ components:
+ - type: Transform
+ pos: 131.5,91.5
+ parent: 1
+ - uid: 23456
+ components:
+ - type: Transform
+ pos: 58.5,134.5
+ parent: 1
+ - uid: 23465
+ components:
+ - type: Transform
+ pos: 51.5,70.5
+ parent: 1
+ - uid: 23466
+ components:
+ - type: Transform
+ pos: 162.5,138.5
+ parent: 1
+ - uid: 23469
+ components:
+ - type: Transform
+ pos: 106.5,165.5
+ parent: 1
+ - uid: 23470
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - uid: 23480
+ components:
+ - type: Transform
+ pos: 93.5,82.5
+ parent: 1
+ - uid: 23483
+ components:
+ - type: Transform
+ pos: 92.5,85.5
+ parent: 1
+ - uid: 23499
+ components:
+ - type: Transform
+ pos: 147.5,79.5
+ parent: 1
+ - uid: 23505
+ components:
+ - type: Transform
+ pos: 102.5,46.5
+ parent: 1
+ - uid: 23530
+ components:
+ - type: Transform
+ pos: 79.5,131.5
+ parent: 1
+ - uid: 23548
+ components:
+ - type: Transform
+ pos: 63.5,35.5
+ parent: 1
+ - uid: 23564
+ components:
+ - type: Transform
+ pos: 63.5,31.5
+ parent: 1
+ - uid: 23565
+ components:
+ - type: Transform
+ pos: 63.5,39.5
+ parent: 1
+ - uid: 23566
+ components:
+ - type: Transform
+ pos: 63.5,36.5
+ parent: 1
+ - uid: 23587
+ components:
+ - type: Transform
+ pos: 36.5,96.5
+ parent: 1
+ - uid: 23600
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+ - uid: 23602
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 23613
+ components:
+ - type: Transform
+ pos: 71.5,58.5
+ parent: 1
+ - uid: 23646
+ components:
+ - type: Transform
+ pos: 50.5,70.5
+ parent: 1
+ - uid: 23647
+ components:
+ - type: Transform
+ pos: 49.5,70.5
+ parent: 1
+ - uid: 23659
+ components:
+ - type: Transform
+ pos: 165.5,131.5
+ parent: 1
+ - uid: 23675
+ components:
+ - type: Transform
+ pos: 57.5,133.5
+ parent: 1
+ - uid: 23676
+ components:
+ - type: Transform
+ pos: 58.5,133.5
+ parent: 1
+ - uid: 23688
+ components:
+ - type: Transform
+ pos: 112.5,165.5
+ parent: 1
+ - uid: 23690
+ components:
+ - type: Transform
+ pos: 107.5,165.5
+ parent: 1
+ - uid: 23698
+ components:
+ - type: Transform
+ pos: 123.5,162.5
+ parent: 1
+ - uid: 23707
+ components:
+ - type: Transform
+ pos: 82.5,156.5
+ parent: 1
+ - uid: 23708
+ components:
+ - type: Transform
+ pos: 75.5,155.5
+ parent: 1
+ - uid: 23709
+ components:
+ - type: Transform
+ pos: 79.5,155.5
+ parent: 1
+ - uid: 23714
+ components:
+ - type: Transform
+ pos: 56.5,143.5
+ parent: 1
+ - uid: 23715
+ components:
+ - type: Transform
+ pos: 57.5,142.5
+ parent: 1
+ - uid: 23733
+ components:
+ - type: Transform
+ pos: 139.5,130.5
+ parent: 1
+ - uid: 23734
+ components:
+ - type: Transform
+ pos: 140.5,128.5
+ parent: 1
+ - uid: 23735
+ components:
+ - type: Transform
+ pos: 141.5,127.5
+ parent: 1
+ - uid: 23736
+ components:
+ - type: Transform
+ pos: 141.5,125.5
+ parent: 1
+ - uid: 23737
+ components:
+ - type: Transform
+ pos: 140.5,122.5
+ parent: 1
+ - uid: 23738
+ components:
+ - type: Transform
+ pos: 141.5,124.5
+ parent: 1
+ - uid: 23741
+ components:
+ - type: Transform
+ pos: 81.5,132.5
+ parent: 1
+ - uid: 23748
+ components:
+ - type: Transform
+ pos: 92.5,82.5
+ parent: 1
+ - uid: 23749
+ components:
+ - type: Transform
+ pos: 96.5,84.5
+ parent: 1
+ - uid: 23783
+ components:
+ - type: Transform
+ pos: 86.5,61.5
+ parent: 1
+ - uid: 23793
+ components:
+ - type: Transform
+ pos: 118.5,114.5
+ parent: 1
+ - uid: 23794
+ components:
+ - type: Transform
+ pos: 117.5,114.5
+ parent: 1
+ - uid: 23795
+ components:
+ - type: Transform
+ pos: 116.5,114.5
+ parent: 1
+ - uid: 23796
+ components:
+ - type: Transform
+ pos: 115.5,114.5
+ parent: 1
+ - uid: 23797
+ components:
+ - type: Transform
+ pos: 114.5,114.5
+ parent: 1
+ - uid: 23798
+ components:
+ - type: Transform
+ pos: 113.5,114.5
+ parent: 1
+ - uid: 23799
+ components:
+ - type: Transform
+ pos: 112.5,114.5
+ parent: 1
+ - uid: 23800
+ components:
+ - type: Transform
+ pos: 110.5,114.5
+ parent: 1
+ - uid: 23801
+ components:
+ - type: Transform
+ pos: 111.5,114.5
+ parent: 1
+ - uid: 23802
+ components:
+ - type: Transform
+ pos: 109.5,114.5
+ parent: 1
+ - uid: 23803
+ components:
+ - type: Transform
+ pos: 109.5,113.5
+ parent: 1
+ - uid: 23804
+ components:
+ - type: Transform
+ pos: 109.5,112.5
+ parent: 1
+ - uid: 23805
+ components:
+ - type: Transform
+ pos: 109.5,111.5
+ parent: 1
+ - uid: 23806
+ components:
+ - type: Transform
+ pos: 109.5,110.5
+ parent: 1
+ - uid: 23807
+ components:
+ - type: Transform
+ pos: 109.5,109.5
+ parent: 1
+ - uid: 23808
+ components:
+ - type: Transform
+ pos: 109.5,108.5
+ parent: 1
+ - uid: 23809
+ components:
+ - type: Transform
+ pos: 109.5,107.5
+ parent: 1
+ - uid: 23810
+ components:
+ - type: Transform
+ pos: 110.5,107.5
+ parent: 1
+ - uid: 23811
+ components:
+ - type: Transform
+ pos: 111.5,107.5
+ parent: 1
+ - uid: 23812
+ components:
+ - type: Transform
+ pos: 112.5,107.5
+ parent: 1
+ - uid: 23813
+ components:
+ - type: Transform
+ pos: 113.5,107.5
+ parent: 1
+ - uid: 23814
+ components:
+ - type: Transform
+ pos: 114.5,107.5
+ parent: 1
+ - uid: 23815
+ components:
+ - type: Transform
+ pos: 115.5,107.5
+ parent: 1
+ - uid: 23816
+ components:
+ - type: Transform
+ pos: 116.5,107.5
+ parent: 1
+ - uid: 23817
+ components:
+ - type: Transform
+ pos: 117.5,107.5
+ parent: 1
+ - uid: 23818
+ components:
+ - type: Transform
+ pos: 118.5,107.5
+ parent: 1
+ - uid: 23825
+ components:
+ - type: Transform
+ pos: 122.5,110.5
+ parent: 1
+ - uid: 23827
+ components:
+ - type: Transform
+ pos: 107.5,114.5
+ parent: 1
+ - uid: 23828
+ components:
+ - type: Transform
+ pos: 107.5,113.5
+ parent: 1
+ - uid: 23829
+ components:
+ - type: Transform
+ pos: 107.5,112.5
+ parent: 1
+ - uid: 23830
+ components:
+ - type: Transform
+ pos: 107.5,111.5
+ parent: 1
+ - uid: 23831
+ components:
+ - type: Transform
+ pos: 107.5,110.5
+ parent: 1
+ - uid: 23832
+ components:
+ - type: Transform
+ pos: 107.5,109.5
+ parent: 1
+ - uid: 23833
+ components:
+ - type: Transform
+ pos: 107.5,107.5
+ parent: 1
+ - uid: 23834
+ components:
+ - type: Transform
+ pos: 107.5,108.5
+ parent: 1
+ - uid: 23835
+ components:
+ - type: Transform
+ pos: 106.5,107.5
+ parent: 1
+ - uid: 23836
+ components:
+ - type: Transform
+ pos: 105.5,107.5
+ parent: 1
+ - uid: 23837
+ components:
+ - type: Transform
+ pos: 104.5,107.5
+ parent: 1
+ - uid: 23838
+ components:
+ - type: Transform
+ pos: 103.5,107.5
+ parent: 1
+ - uid: 23839
+ components:
+ - type: Transform
+ pos: 102.5,107.5
+ parent: 1
+ - uid: 23840
+ components:
+ - type: Transform
+ pos: 101.5,107.5
+ parent: 1
+ - uid: 23841
+ components:
+ - type: Transform
+ pos: 100.5,107.5
+ parent: 1
+ - uid: 23842
+ components:
+ - type: Transform
+ pos: 99.5,107.5
+ parent: 1
+ - uid: 23843
+ components:
+ - type: Transform
+ pos: 98.5,107.5
+ parent: 1
+ - uid: 23854
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 1
+ - uid: 23858
+ components:
+ - type: Transform
+ pos: 98.5,114.5
+ parent: 1
+ - uid: 23859
+ components:
+ - type: Transform
+ pos: 99.5,114.5
+ parent: 1
+ - uid: 23860
+ components:
+ - type: Transform
+ pos: 100.5,114.5
+ parent: 1
+ - uid: 23861
+ components:
+ - type: Transform
+ pos: 101.5,114.5
+ parent: 1
+ - uid: 23862
+ components:
+ - type: Transform
+ pos: 102.5,114.5
+ parent: 1
+ - uid: 23863
+ components:
+ - type: Transform
+ pos: 104.5,114.5
+ parent: 1
+ - uid: 23864
+ components:
+ - type: Transform
+ pos: 103.5,114.5
+ parent: 1
+ - uid: 23865
+ components:
+ - type: Transform
+ pos: 106.5,114.5
+ parent: 1
+ - uid: 23866
+ components:
+ - type: Transform
+ pos: 105.5,114.5
+ parent: 1
+ - uid: 23867
+ components:
+ - type: Transform
+ pos: 106.5,111.5
+ parent: 1
+ - uid: 23868
+ components:
+ - type: Transform
+ pos: 105.5,111.5
+ parent: 1
+ - uid: 23869
+ components:
+ - type: Transform
+ pos: 104.5,111.5
+ parent: 1
+ - uid: 23870
+ components:
+ - type: Transform
+ pos: 103.5,111.5
+ parent: 1
+ - uid: 23871
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 1
+ - uid: 23872
+ components:
+ - type: Transform
+ pos: 101.5,111.5
+ parent: 1
+ - uid: 23873
+ components:
+ - type: Transform
+ pos: 100.5,111.5
+ parent: 1
+ - uid: 23874
+ components:
+ - type: Transform
+ pos: 99.5,111.5
+ parent: 1
+ - uid: 23875
+ components:
+ - type: Transform
+ pos: 98.5,111.5
+ parent: 1
+ - uid: 23876
+ components:
+ - type: Transform
+ pos: 97.5,111.5
+ parent: 1
+ - uid: 23878
+ components:
+ - type: Transform
+ pos: 98.5,130.5
+ parent: 1
+ - uid: 23881
+ components:
+ - type: Transform
+ pos: 110.5,111.5
+ parent: 1
+ - uid: 23882
+ components:
+ - type: Transform
+ pos: 111.5,111.5
+ parent: 1
+ - uid: 23883
+ components:
+ - type: Transform
+ pos: 112.5,111.5
+ parent: 1
+ - uid: 23884
+ components:
+ - type: Transform
+ pos: 113.5,111.5
+ parent: 1
+ - uid: 23885
+ components:
+ - type: Transform
+ pos: 114.5,111.5
+ parent: 1
+ - uid: 23886
+ components:
+ - type: Transform
+ pos: 115.5,111.5
+ parent: 1
+ - uid: 23887
+ components:
+ - type: Transform
+ pos: 116.5,111.5
+ parent: 1
+ - uid: 23888
+ components:
+ - type: Transform
+ pos: 117.5,111.5
+ parent: 1
+ - uid: 23889
+ components:
+ - type: Transform
+ pos: 118.5,111.5
+ parent: 1
+ - uid: 23890
+ components:
+ - type: Transform
+ pos: 119.5,111.5
+ parent: 1
+ - uid: 23894
+ components:
+ - type: Transform
+ pos: 120.5,95.5
+ parent: 1
+ - uid: 23895
+ components:
+ - type: Transform
+ pos: 120.5,96.5
+ parent: 1
+ - uid: 23896
+ components:
+ - type: Transform
+ pos: 120.5,97.5
+ parent: 1
+ - uid: 23897
+ components:
+ - type: Transform
+ pos: 121.5,97.5
+ parent: 1
+ - uid: 23898
+ components:
+ - type: Transform
+ pos: 122.5,97.5
+ parent: 1
+ - uid: 23899
+ components:
+ - type: Transform
+ pos: 122.5,98.5
+ parent: 1
+ - uid: 23900
+ components:
+ - type: Transform
+ pos: 122.5,99.5
+ parent: 1
+ - uid: 23901
+ components:
+ - type: Transform
+ pos: 122.5,100.5
+ parent: 1
+ - uid: 23902
+ components:
+ - type: Transform
+ pos: 122.5,101.5
+ parent: 1
+ - uid: 23903
+ components:
+ - type: Transform
+ pos: 122.5,102.5
+ parent: 1
+ - uid: 23904
+ components:
+ - type: Transform
+ pos: 122.5,103.5
+ parent: 1
+ - uid: 23905
+ components:
+ - type: Transform
+ pos: 121.5,103.5
+ parent: 1
+ - uid: 23906
+ components:
+ - type: Transform
+ pos: 120.5,103.5
+ parent: 1
+ - uid: 23907
+ components:
+ - type: Transform
+ pos: 119.5,103.5
+ parent: 1
+ - uid: 23908
+ components:
+ - type: Transform
+ pos: 118.5,103.5
+ parent: 1
+ - uid: 23909
+ components:
+ - type: Transform
+ pos: 117.5,103.5
+ parent: 1
+ - uid: 23910
+ components:
+ - type: Transform
+ pos: 116.5,103.5
+ parent: 1
+ - uid: 23911
+ components:
+ - type: Transform
+ pos: 115.5,103.5
+ parent: 1
+ - uid: 23912
+ components:
+ - type: Transform
+ pos: 115.5,102.5
+ parent: 1
+ - uid: 23913
+ components:
+ - type: Transform
+ pos: 115.5,101.5
+ parent: 1
+ - uid: 23914
+ components:
+ - type: Transform
+ pos: 115.5,100.5
+ parent: 1
+ - uid: 23915
+ components:
+ - type: Transform
+ pos: 115.5,99.5
+ parent: 1
+ - uid: 23916
+ components:
+ - type: Transform
+ pos: 115.5,98.5
+ parent: 1
+ - uid: 23917
+ components:
+ - type: Transform
+ pos: 115.5,97.5
+ parent: 1
+ - uid: 23918
+ components:
+ - type: Transform
+ pos: 116.5,97.5
+ parent: 1
+ - uid: 23919
+ components:
+ - type: Transform
+ pos: 117.5,97.5
+ parent: 1
+ - uid: 23920
+ components:
+ - type: Transform
+ pos: 118.5,97.5
+ parent: 1
+ - uid: 23921
+ components:
+ - type: Transform
+ pos: 119.5,97.5
+ parent: 1
+ - uid: 23922
+ components:
+ - type: Transform
+ pos: 117.5,96.5
+ parent: 1
+ - uid: 23923
+ components:
+ - type: Transform
+ pos: 117.5,95.5
+ parent: 1
+ - uid: 23924
+ components:
+ - type: Transform
+ pos: 117.5,94.5
+ parent: 1
+ - uid: 23925
+ components:
+ - type: Transform
+ pos: 117.5,93.5
+ parent: 1
+ - uid: 23926
+ components:
+ - type: Transform
+ pos: 116.5,93.5
+ parent: 1
+ - uid: 23927
+ components:
+ - type: Transform
+ pos: 116.5,92.5
+ parent: 1
+ - uid: 23928
+ components:
+ - type: Transform
+ pos: 116.5,91.5
+ parent: 1
+ - uid: 23929
+ components:
+ - type: Transform
+ pos: 117.5,91.5
+ parent: 1
+ - uid: 23930
+ components:
+ - type: Transform
+ pos: 118.5,91.5
+ parent: 1
+ - uid: 23931
+ components:
+ - type: Transform
+ pos: 118.5,92.5
+ parent: 1
+ - uid: 23932
+ components:
+ - type: Transform
+ pos: 118.5,93.5
+ parent: 1
+ - uid: 23936
+ components:
+ - type: Transform
+ pos: 123.5,110.5
+ parent: 1
+ - uid: 23939
+ components:
+ - type: Transform
+ pos: 42.5,45.5
+ parent: 1
+ - uid: 23942
+ components:
+ - type: Transform
+ pos: 42.5,47.5
+ parent: 1
+ - uid: 23943
+ components:
+ - type: Transform
+ pos: 107.5,103.5
+ parent: 1
+ - uid: 23944
+ components:
+ - type: Transform
+ pos: 108.5,103.5
+ parent: 1
+ - uid: 23945
+ components:
+ - type: Transform
+ pos: 109.5,103.5
+ parent: 1
+ - uid: 23946
+ components:
+ - type: Transform
+ pos: 110.5,103.5
+ parent: 1
+ - uid: 23948
+ components:
+ - type: Transform
+ pos: 108.5,102.5
+ parent: 1
+ - uid: 23949
+ components:
+ - type: Transform
+ pos: 108.5,101.5
+ parent: 1
+ - uid: 23950
+ components:
+ - type: Transform
+ pos: 108.5,104.5
+ parent: 1
+ - uid: 23951
+ components:
+ - type: Transform
+ pos: 113.5,115.5
+ parent: 1
+ - uid: 23952
+ components:
+ - type: Transform
+ pos: 103.5,115.5
+ parent: 1
+ - uid: 23953
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 1
+ - uid: 23955
+ components:
+ - type: Transform
+ pos: 43.5,45.5
+ parent: 1
+ - uid: 23957
+ components:
+ - type: Transform
+ pos: 100.5,100.5
+ parent: 1
+ - uid: 23958
+ components:
+ - type: Transform
+ pos: 100.5,101.5
+ parent: 1
+ - uid: 23959
+ components:
+ - type: Transform
+ pos: 100.5,102.5
+ parent: 1
+ - uid: 23960
+ components:
+ - type: Transform
+ pos: 100.5,103.5
+ parent: 1
+ - uid: 23961
+ components:
+ - type: Transform
+ pos: 99.5,103.5
+ parent: 1
+ - uid: 23962
+ components:
+ - type: Transform
+ pos: 98.5,103.5
+ parent: 1
+ - uid: 23963
+ components:
+ - type: Transform
+ pos: 97.5,103.5
+ parent: 1
+ - uid: 23964
+ components:
+ - type: Transform
+ pos: 96.5,103.5
+ parent: 1
+ - uid: 23965
+ components:
+ - type: Transform
+ pos: 95.5,103.5
+ parent: 1
+ - uid: 23966
+ components:
+ - type: Transform
+ pos: 95.5,102.5
+ parent: 1
+ - uid: 23967
+ components:
+ - type: Transform
+ pos: 95.5,101.5
+ parent: 1
+ - uid: 23968
+ components:
+ - type: Transform
+ pos: 95.5,100.5
+ parent: 1
+ - uid: 23969
+ components:
+ - type: Transform
+ pos: 95.5,99.5
+ parent: 1
+ - uid: 23970
+ components:
+ - type: Transform
+ pos: 95.5,98.5
+ parent: 1
+ - uid: 23971
+ components:
+ - type: Transform
+ pos: 95.5,97.5
+ parent: 1
+ - uid: 23972
+ components:
+ - type: Transform
+ pos: 96.5,97.5
+ parent: 1
+ - uid: 23973
+ components:
+ - type: Transform
+ pos: 97.5,97.5
+ parent: 1
+ - uid: 23974
+ components:
+ - type: Transform
+ pos: 98.5,97.5
+ parent: 1
+ - uid: 23975
+ components:
+ - type: Transform
+ pos: 99.5,97.5
+ parent: 1
+ - uid: 23976
+ components:
+ - type: Transform
+ pos: 100.5,97.5
+ parent: 1
+ - uid: 23977
+ components:
+ - type: Transform
+ pos: 100.5,98.5
+ parent: 1
+ - uid: 23978
+ components:
+ - type: Transform
+ pos: 100.5,99.5
+ parent: 1
+ - uid: 23979
+ components:
+ - type: Transform
+ pos: 95.5,104.5
+ parent: 1
+ - uid: 23980
+ components:
+ - type: Transform
+ pos: 94.5,104.5
+ parent: 1
+ - uid: 23981
+ components:
+ - type: Transform
+ pos: 93.5,104.5
+ parent: 1
+ - uid: 23982
+ components:
+ - type: Transform
+ pos: 94.5,100.5
+ parent: 1
+ - uid: 23983
+ components:
+ - type: Transform
+ pos: 101.5,98.5
+ parent: 1
+ - uid: 23984
+ components:
+ - type: Transform
+ pos: 99.5,96.5
+ parent: 1
+ - uid: 23986
+ components:
+ - type: Transform
+ pos: 96.5,91.5
+ parent: 1
+ - uid: 23987
+ components:
+ - type: Transform
+ pos: 97.5,91.5
+ parent: 1
+ - uid: 23988
+ components:
+ - type: Transform
+ pos: 98.5,91.5
+ parent: 1
+ - uid: 23989
+ components:
+ - type: Transform
+ pos: 99.5,91.5
+ parent: 1
+ - uid: 23990
+ components:
+ - type: Transform
+ pos: 100.5,91.5
+ parent: 1
+ - uid: 23991
+ components:
+ - type: Transform
+ pos: 100.5,92.5
+ parent: 1
+ - uid: 23992
+ components:
+ - type: Transform
+ pos: 100.5,93.5
+ parent: 1
+ - uid: 23993
+ components:
+ - type: Transform
+ pos: 98.5,93.5
+ parent: 1
+ - uid: 23994
+ components:
+ - type: Transform
+ pos: 95.5,94.5
+ parent: 1
+ - uid: 23995
+ components:
+ - type: Transform
+ pos: 99.5,93.5
+ parent: 1
+ - uid: 23996
+ components:
+ - type: Transform
+ pos: 97.5,93.5
+ parent: 1
+ - uid: 23997
+ components:
+ - type: Transform
+ pos: 96.5,93.5
+ parent: 1
+ - uid: 23998
+ components:
+ - type: Transform
+ pos: 95.5,93.5
+ parent: 1
+ - uid: 23999
+ components:
+ - type: Transform
+ pos: 95.5,92.5
+ parent: 1
+ - uid: 24000
+ components:
+ - type: Transform
+ pos: 95.5,91.5
+ parent: 1
+ - uid: 24001
+ components:
+ - type: Transform
+ pos: 94.5,94.5
+ parent: 1
+ - uid: 24002
+ components:
+ - type: Transform
+ pos: 93.5,94.5
+ parent: 1
+ - uid: 24003
+ components:
+ - type: Transform
+ pos: 92.5,94.5
+ parent: 1
+ - uid: 24004
+ components:
+ - type: Transform
+ pos: 91.5,94.5
+ parent: 1
+ - uid: 24005
+ components:
+ - type: Transform
+ pos: 91.5,95.5
+ parent: 1
+ - uid: 24006
+ components:
+ - type: Transform
+ pos: 91.5,96.5
+ parent: 1
+ - uid: 24007
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - uid: 24008
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 24009
+ components:
+ - type: Transform
+ pos: 91.5,99.5
+ parent: 1
+ - uid: 24010
+ components:
+ - type: Transform
+ pos: 91.5,101.5
+ parent: 1
+ - uid: 24011
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 24012
+ components:
+ - type: Transform
+ pos: 91.5,100.5
+ parent: 1
+ - uid: 24013
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 1
+ - uid: 24014
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 1
+ - uid: 24015
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - uid: 24016
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - uid: 24017
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - uid: 24018
+ components:
+ - type: Transform
+ pos: 91.5,106.5
+ parent: 1
+ - uid: 24019
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - uid: 24020
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - uid: 24022
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 1
+ - uid: 24023
+ components:
+ - type: Transform
+ pos: 91.5,113.5
+ parent: 1
+ - uid: 24024
+ components:
+ - type: Transform
+ pos: 91.5,114.5
+ parent: 1
+ - uid: 24026
+ components:
+ - type: Transform
+ pos: 95.5,90.5
+ parent: 1
+ - uid: 24027
+ components:
+ - type: Transform
+ pos: 95.5,89.5
+ parent: 1
+ - uid: 24028
+ components:
+ - type: Transform
+ pos: 95.5,88.5
+ parent: 1
+ - uid: 24030
+ components:
+ - type: Transform
+ pos: 99.5,94.5
+ parent: 1
+ - uid: 24031
+ components:
+ - type: Transform
+ pos: 108.5,95.5
+ parent: 1
+ - uid: 24032
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 1
+ - uid: 24033
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 1
+ - uid: 24034
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 1
+ - uid: 24035
+ components:
+ - type: Transform
+ pos: 109.5,96.5
+ parent: 1
+ - uid: 24036
+ components:
+ - type: Transform
+ pos: 110.5,96.5
+ parent: 1
+ - uid: 24037
+ components:
+ - type: Transform
+ pos: 110.5,95.5
+ parent: 1
+ - uid: 24038
+ components:
+ - type: Transform
+ pos: 110.5,94.5
+ parent: 1
+ - uid: 24039
+ components:
+ - type: Transform
+ pos: 110.5,93.5
+ parent: 1
+ - uid: 24040
+ components:
+ - type: Transform
+ pos: 109.5,93.5
+ parent: 1
+ - uid: 24041
+ components:
+ - type: Transform
+ pos: 108.5,93.5
+ parent: 1
+ - uid: 24042
+ components:
+ - type: Transform
+ pos: 108.5,92.5
+ parent: 1
+ - uid: 24043
+ components:
+ - type: Transform
+ pos: 108.5,91.5
+ parent: 1
+ - uid: 24044
+ components:
+ - type: Transform
+ pos: 109.5,91.5
+ parent: 1
+ - uid: 24045
+ components:
+ - type: Transform
+ pos: 110.5,91.5
+ parent: 1
+ - uid: 24046
+ components:
+ - type: Transform
+ pos: 111.5,91.5
+ parent: 1
+ - uid: 24047
+ components:
+ - type: Transform
+ pos: 112.5,91.5
+ parent: 1
+ - uid: 24048
+ components:
+ - type: Transform
+ pos: 107.5,97.5
+ parent: 1
+ - uid: 24049
+ components:
+ - type: Transform
+ pos: 112.5,92.5
+ parent: 1
+ - uid: 24050
+ components:
+ - type: Transform
+ pos: 112.5,93.5
+ parent: 1
+ - uid: 24051
+ components:
+ - type: Transform
+ pos: 111.5,93.5
+ parent: 1
+ - uid: 24052
+ components:
+ - type: Transform
+ pos: 106.5,97.5
+ parent: 1
+ - uid: 24053
+ components:
+ - type: Transform
+ pos: 105.5,97.5
+ parent: 1
+ - uid: 24054
+ components:
+ - type: Transform
+ pos: 104.5,97.5
+ parent: 1
+ - uid: 24055
+ components:
+ - type: Transform
+ pos: 104.5,98.5
+ parent: 1
+ - uid: 24056
+ components:
+ - type: Transform
+ pos: 103.5,98.5
+ parent: 1
+ - uid: 24058
+ components:
+ - type: Transform
+ pos: 108.5,99.5
+ parent: 1
+ - uid: 24059
+ components:
+ - type: Transform
+ pos: 109.5,98.5
+ parent: 1
+ - uid: 24060
+ components:
+ - type: Transform
+ pos: 110.5,98.5
+ parent: 1
+ - uid: 24061
+ components:
+ - type: Transform
+ pos: 111.5,98.5
+ parent: 1
+ - uid: 24062
+ components:
+ - type: Transform
+ pos: 112.5,98.5
+ parent: 1
+ - uid: 24063
+ components:
+ - type: Transform
+ pos: 113.5,98.5
+ parent: 1
+ - uid: 24064
+ components:
+ - type: Transform
+ pos: 122.5,96.5
+ parent: 1
+ - uid: 24068
+ components:
+ - type: Transform
+ pos: 123.5,91.5
+ parent: 1
+ - uid: 24069
+ components:
+ - type: Transform
+ pos: 124.5,91.5
+ parent: 1
+ - uid: 24073
+ components:
+ - type: Transform
+ pos: 125.5,94.5
+ parent: 1
+ - uid: 24074
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - uid: 24075
+ components:
+ - type: Transform
+ pos: 125.5,96.5
+ parent: 1
+ - uid: 24084
+ components:
+ - type: Transform
+ pos: 125.5,106.5
+ parent: 1
+ - uid: 24085
+ components:
+ - type: Transform
+ pos: 125.5,107.5
+ parent: 1
+ - uid: 24086
+ components:
+ - type: Transform
+ pos: 125.5,108.5
+ parent: 1
+ - uid: 24087
+ components:
+ - type: Transform
+ pos: 125.5,109.5
+ parent: 1
+ - uid: 24088
+ components:
+ - type: Transform
+ pos: 125.5,110.5
+ parent: 1
+ - uid: 24089
+ components:
+ - type: Transform
+ pos: 125.5,111.5
+ parent: 1
+ - uid: 24090
+ components:
+ - type: Transform
+ pos: 125.5,112.5
+ parent: 1
+ - uid: 24091
+ components:
+ - type: Transform
+ pos: 125.5,113.5
+ parent: 1
+ - uid: 24092
+ components:
+ - type: Transform
+ pos: 125.5,115.5
+ parent: 1
+ - uid: 24093
+ components:
+ - type: Transform
+ pos: 125.5,114.5
+ parent: 1
+ - uid: 24094
+ components:
+ - type: Transform
+ pos: 124.5,110.5
+ parent: 1
+ - uid: 24095
+ components:
+ - type: Transform
+ pos: 125.5,90.5
+ parent: 1
+ - uid: 24100
+ components:
+ - type: Transform
+ pos: 122.5,88.5
+ parent: 1
+ - uid: 24101
+ components:
+ - type: Transform
+ pos: 121.5,88.5
+ parent: 1
+ - uid: 24102
+ components:
+ - type: Transform
+ pos: 120.5,88.5
+ parent: 1
+ - uid: 24103
+ components:
+ - type: Transform
+ pos: 119.5,88.5
+ parent: 1
+ - uid: 24104
+ components:
+ - type: Transform
+ pos: 118.5,88.5
+ parent: 1
+ - uid: 24105
+ components:
+ - type: Transform
+ pos: 117.5,88.5
+ parent: 1
+ - uid: 24106
+ components:
+ - type: Transform
+ pos: 116.5,88.5
+ parent: 1
+ - uid: 24335
+ components:
+ - type: Transform
+ pos: 80.5,60.5
+ parent: 1
+ - uid: 24336
+ components:
+ - type: Transform
+ pos: 79.5,60.5
+ parent: 1
+ - uid: 24337
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - uid: 24338
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 1
+ - uid: 24339
+ components:
+ - type: Transform
+ pos: 76.5,60.5
+ parent: 1
+ - uid: 24340
+ components:
+ - type: Transform
+ pos: 75.5,60.5
+ parent: 1
+ - uid: 24341
+ components:
+ - type: Transform
+ pos: 74.5,60.5
+ parent: 1
+ - uid: 24344
+ components:
+ - type: Transform
+ pos: 111.5,103.5
+ parent: 1
+ - uid: 24351
+ components:
+ - type: Transform
+ pos: 74.5,55.5
+ parent: 1
+ - uid: 24352
+ components:
+ - type: Transform
+ pos: 75.5,55.5
+ parent: 1
+ - uid: 24353
+ components:
+ - type: Transform
+ pos: 76.5,55.5
+ parent: 1
+ - uid: 24354
+ components:
+ - type: Transform
+ pos: 77.5,55.5
+ parent: 1
+ - uid: 24355
+ components:
+ - type: Transform
+ pos: 78.5,55.5
+ parent: 1
+ - uid: 24356
+ components:
+ - type: Transform
+ pos: 79.5,55.5
+ parent: 1
+ - uid: 24357
+ components:
+ - type: Transform
+ pos: 80.5,55.5
+ parent: 1
+ - uid: 24358
+ components:
+ - type: Transform
+ pos: 77.5,54.5
+ parent: 1
+ - uid: 24359
+ components:
+ - type: Transform
+ pos: 77.5,53.5
+ parent: 1
+ - uid: 24360
+ components:
+ - type: Transform
+ pos: 77.5,52.5
+ parent: 1
+ - uid: 24361
+ components:
+ - type: Transform
+ pos: 77.5,51.5
+ parent: 1
+ - uid: 24362
+ components:
+ - type: Transform
+ pos: 77.5,50.5
+ parent: 1
+ - uid: 24363
+ components:
+ - type: Transform
+ pos: 77.5,49.5
+ parent: 1
+ - uid: 24364
+ components:
+ - type: Transform
+ pos: 77.5,48.5
+ parent: 1
+ - uid: 24365
+ components:
+ - type: Transform
+ pos: 76.5,48.5
+ parent: 1
+ - uid: 24366
+ components:
+ - type: Transform
+ pos: 75.5,48.5
+ parent: 1
+ - uid: 24367
+ components:
+ - type: Transform
+ pos: 78.5,48.5
+ parent: 1
+ - uid: 24368
+ components:
+ - type: Transform
+ pos: 79.5,48.5
+ parent: 1
+ - uid: 24407
+ components:
+ - type: Transform
+ pos: 123.5,89.5
+ parent: 1
+ - uid: 24549
+ components:
+ - type: Transform
+ pos: 62.5,80.5
+ parent: 1
+ - uid: 24572
+ components:
+ - type: Transform
+ pos: 102.5,67.5
+ parent: 1
+ - uid: 24574
+ components:
+ - type: Transform
+ pos: 99.5,65.5
+ parent: 1
+ - uid: 24576
+ components:
+ - type: Transform
+ pos: 99.5,63.5
+ parent: 1
+ - uid: 24577
+ components:
+ - type: Transform
+ pos: 100.5,63.5
+ parent: 1
+ - uid: 24578
+ components:
+ - type: Transform
+ pos: 101.5,63.5
+ parent: 1
+ - uid: 24579
+ components:
+ - type: Transform
+ pos: 102.5,63.5
+ parent: 1
+ - uid: 24580
+ components:
+ - type: Transform
+ pos: 103.5,63.5
+ parent: 1
+ - uid: 24581
+ components:
+ - type: Transform
+ pos: 104.5,63.5
+ parent: 1
+ - uid: 24582
+ components:
+ - type: Transform
+ pos: 105.5,63.5
+ parent: 1
+ - uid: 24583
+ components:
+ - type: Transform
+ pos: 106.5,63.5
+ parent: 1
+ - uid: 24584
+ components:
+ - type: Transform
+ pos: 107.5,63.5
+ parent: 1
+ - uid: 24585
+ components:
+ - type: Transform
+ pos: 108.5,63.5
+ parent: 1
+ - uid: 24586
+ components:
+ - type: Transform
+ pos: 109.5,63.5
+ parent: 1
+ - uid: 24587
+ components:
+ - type: Transform
+ pos: 110.5,63.5
+ parent: 1
+ - uid: 24588
+ components:
+ - type: Transform
+ pos: 111.5,63.5
+ parent: 1
+ - uid: 24589
+ components:
+ - type: Transform
+ pos: 112.5,63.5
+ parent: 1
+ - uid: 24590
+ components:
+ - type: Transform
+ pos: 113.5,63.5
+ parent: 1
+ - uid: 24591
+ components:
+ - type: Transform
+ pos: 114.5,63.5
+ parent: 1
+ - uid: 24595
+ components:
+ - type: Transform
+ pos: 113.5,66.5
+ parent: 1
+ - uid: 24596
+ components:
+ - type: Transform
+ pos: 112.5,66.5
+ parent: 1
+ - uid: 24597
+ components:
+ - type: Transform
+ pos: 111.5,66.5
+ parent: 1
+ - uid: 24598
+ components:
+ - type: Transform
+ pos: 110.5,66.5
+ parent: 1
+ - uid: 24599
+ components:
+ - type: Transform
+ pos: 109.5,66.5
+ parent: 1
+ - uid: 24600
+ components:
+ - type: Transform
+ pos: 108.5,66.5
+ parent: 1
+ - uid: 24601
+ components:
+ - type: Transform
+ pos: 107.5,66.5
+ parent: 1
+ - uid: 24602
+ components:
+ - type: Transform
+ pos: 106.5,66.5
+ parent: 1
+ - uid: 24603
+ components:
+ - type: Transform
+ pos: 105.5,66.5
+ parent: 1
+ - uid: 24604
+ components:
+ - type: Transform
+ pos: 104.5,66.5
+ parent: 1
+ - uid: 24605
+ components:
+ - type: Transform
+ pos: 103.5,66.5
+ parent: 1
+ - uid: 24606
+ components:
+ - type: Transform
+ pos: 102.5,66.5
+ parent: 1
+ - uid: 24607
+ components:
+ - type: Transform
+ pos: 100.5,66.5
+ parent: 1
+ - uid: 24608
+ components:
+ - type: Transform
+ pos: 99.5,66.5
+ parent: 1
+ - uid: 24609
+ components:
+ - type: Transform
+ pos: 101.5,66.5
+ parent: 1
+ - uid: 24614
+ components:
+ - type: Transform
+ pos: 102.5,68.5
+ parent: 1
+ - uid: 24616
+ components:
+ - type: Transform
+ pos: 103.5,69.5
+ parent: 1
+ - uid: 24617
+ components:
+ - type: Transform
+ pos: 104.5,69.5
+ parent: 1
+ - uid: 24618
+ components:
+ - type: Transform
+ pos: 105.5,69.5
+ parent: 1
+ - uid: 24619
+ components:
+ - type: Transform
+ pos: 106.5,69.5
+ parent: 1
+ - uid: 24620
+ components:
+ - type: Transform
+ pos: 107.5,69.5
+ parent: 1
+ - uid: 24621
+ components:
+ - type: Transform
+ pos: 108.5,69.5
+ parent: 1
+ - uid: 24622
+ components:
+ - type: Transform
+ pos: 109.5,69.5
+ parent: 1
+ - uid: 24624
+ components:
+ - type: Transform
+ pos: 110.5,68.5
+ parent: 1
+ - uid: 24625
+ components:
+ - type: Transform
+ pos: 110.5,67.5
+ parent: 1
+ - uid: 24626
+ components:
+ - type: Transform
+ pos: 108.5,55.5
+ parent: 1
+ - uid: 24627
+ components:
+ - type: Transform
+ pos: 108.5,56.5
+ parent: 1
+ - uid: 24628
+ components:
+ - type: Transform
+ pos: 108.5,57.5
+ parent: 1
+ - uid: 24629
+ components:
+ - type: Transform
+ pos: 108.5,58.5
+ parent: 1
+ - uid: 24630
+ components:
+ - type: Transform
+ pos: 107.5,58.5
+ parent: 1
+ - uid: 24631
+ components:
+ - type: Transform
+ pos: 106.5,58.5
+ parent: 1
+ - uid: 24632
+ components:
+ - type: Transform
+ pos: 105.5,58.5
+ parent: 1
+ - uid: 24633
+ components:
+ - type: Transform
+ pos: 104.5,58.5
+ parent: 1
+ - uid: 24634
+ components:
+ - type: Transform
+ pos: 104.5,57.5
+ parent: 1
+ - uid: 24635
+ components:
+ - type: Transform
+ pos: 104.5,56.5
+ parent: 1
+ - uid: 24636
+ components:
+ - type: Transform
+ pos: 106.5,59.5
+ parent: 1
+ - uid: 24637
+ components:
+ - type: Transform
+ pos: 103.5,60.5
+ parent: 1
+ - uid: 24638
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+ - uid: 24639
+ components:
+ - type: Transform
+ pos: 101.5,60.5
+ parent: 1
+ - uid: 24640
+ components:
+ - type: Transform
+ pos: 100.5,60.5
+ parent: 1
+ - uid: 24641
+ components:
+ - type: Transform
+ pos: 99.5,60.5
+ parent: 1
+ - uid: 24642
+ components:
+ - type: Transform
+ pos: 99.5,59.5
+ parent: 1
+ - uid: 24643
+ components:
+ - type: Transform
+ pos: 99.5,58.5
+ parent: 1
+ - uid: 24644
+ components:
+ - type: Transform
+ pos: 99.5,57.5
+ parent: 1
+ - uid: 24645
+ components:
+ - type: Transform
+ pos: 109.5,60.5
+ parent: 1
+ - uid: 24646
+ components:
+ - type: Transform
+ pos: 110.5,60.5
+ parent: 1
+ - uid: 24647
+ components:
+ - type: Transform
+ pos: 111.5,60.5
+ parent: 1
+ - uid: 24648
+ components:
+ - type: Transform
+ pos: 112.5,60.5
+ parent: 1
+ - uid: 24649
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 1
+ - uid: 24650
+ components:
+ - type: Transform
+ pos: 112.5,58.5
+ parent: 1
+ - uid: 24651
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 1
+ - uid: 24652
+ components:
+ - type: Transform
+ pos: 113.5,57.5
+ parent: 1
+ - uid: 24653
+ components:
+ - type: Transform
+ pos: 114.5,57.5
+ parent: 1
+ - uid: 24654
+ components:
+ - type: Transform
+ pos: 115.5,57.5
+ parent: 1
+ - uid: 24656
+ components:
+ - type: Transform
+ pos: 116.5,59.5
+ parent: 1
+ - uid: 24657
+ components:
+ - type: Transform
+ pos: 116.5,60.5
+ parent: 1
+ - uid: 24658
+ components:
+ - type: Transform
+ pos: 116.5,61.5
+ parent: 1
+ - uid: 24659
+ components:
+ - type: Transform
+ pos: 116.5,62.5
+ parent: 1
+ - uid: 24664
+ components:
+ - type: Transform
+ pos: 116.5,68.5
+ parent: 1
+ - uid: 24665
+ components:
+ - type: Transform
+ pos: 116.5,69.5
+ parent: 1
+ - uid: 24667
+ components:
+ - type: Transform
+ pos: 116.5,70.5
+ parent: 1
+ - uid: 24670
+ components:
+ - type: Transform
+ pos: 116.5,73.5
+ parent: 1
+ - uid: 24672
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - uid: 24673
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 1
+ - uid: 24674
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 1
+ - uid: 24675
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 1
+ - uid: 24676
+ components:
+ - type: Transform
+ pos: 107.5,54.5
+ parent: 1
+ - uid: 24677
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 1
+ - uid: 24678
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 1
+ - uid: 24679
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - uid: 24680
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 1
+ - uid: 24681
+ components:
+ - type: Transform
+ pos: 99.5,56.5
+ parent: 1
+ - uid: 24682
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 1
+ - uid: 24683
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 1
+ - uid: 24684
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 1
+ - uid: 24685
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 1
+ - uid: 24686
+ components:
+ - type: Transform
+ pos: 89.5,59.5
+ parent: 1
+ - uid: 24691
+ components:
+ - type: Transform
+ pos: 89.5,55.5
+ parent: 1
+ - uid: 24700
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 1
+ - uid: 24702
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 1
+ - uid: 24703
+ components:
+ - type: Transform
+ pos: 95.5,59.5
+ parent: 1
+ - uid: 24704
+ components:
+ - type: Transform
+ pos: 94.5,59.5
+ parent: 1
+ - uid: 24705
+ components:
+ - type: Transform
+ pos: 93.5,59.5
+ parent: 1
+ - uid: 24706
+ components:
+ - type: Transform
+ pos: 92.5,59.5
+ parent: 1
+ - uid: 24707
+ components:
+ - type: Transform
+ pos: 91.5,59.5
+ parent: 1
+ - uid: 24708
+ components:
+ - type: Transform
+ pos: 90.5,59.5
+ parent: 1
+ - uid: 24710
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - uid: 24711
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - uid: 24712
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - uid: 24713
+ components:
+ - type: Transform
+ pos: 96.5,63.5
+ parent: 1
+ - uid: 24716
+ components:
+ - type: Transform
+ pos: 116.5,71.5
+ parent: 1
+ - uid: 24723
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - uid: 24813
+ components:
+ - type: Transform
+ pos: 97.5,86.5
+ parent: 1
+ - uid: 24814
+ components:
+ - type: Transform
+ pos: 98.5,86.5
+ parent: 1
+ - uid: 24815
+ components:
+ - type: Transform
+ pos: 99.5,86.5
+ parent: 1
+ - uid: 24816
+ components:
+ - type: Transform
+ pos: 99.5,87.5
+ parent: 1
+ - uid: 24817
+ components:
+ - type: Transform
+ pos: 100.5,87.5
+ parent: 1
+ - uid: 24818
+ components:
+ - type: Transform
+ pos: 101.5,87.5
+ parent: 1
+ - uid: 24819
+ components:
+ - type: Transform
+ pos: 102.5,87.5
+ parent: 1
+ - uid: 24820
+ components:
+ - type: Transform
+ pos: 103.5,87.5
+ parent: 1
+ - uid: 24821
+ components:
+ - type: Transform
+ pos: 104.5,87.5
+ parent: 1
+ - uid: 24822
+ components:
+ - type: Transform
+ pos: 105.5,87.5
+ parent: 1
+ - uid: 24823
+ components:
+ - type: Transform
+ pos: 107.5,87.5
+ parent: 1
+ - uid: 24824
+ components:
+ - type: Transform
+ pos: 108.5,87.5
+ parent: 1
+ - uid: 24825
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 1
+ - uid: 24826
+ components:
+ - type: Transform
+ pos: 110.5,87.5
+ parent: 1
+ - uid: 24827
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 1
+ - uid: 24828
+ components:
+ - type: Transform
+ pos: 112.5,87.5
+ parent: 1
+ - uid: 24829
+ components:
+ - type: Transform
+ pos: 113.5,87.5
+ parent: 1
+ - uid: 24830
+ components:
+ - type: Transform
+ pos: 111.5,87.5
+ parent: 1
+ - uid: 24831
+ components:
+ - type: Transform
+ pos: 113.5,86.5
+ parent: 1
+ - uid: 24832
+ components:
+ - type: Transform
+ pos: 113.5,85.5
+ parent: 1
+ - uid: 24833
+ components:
+ - type: Transform
+ pos: 113.5,84.5
+ parent: 1
+ - uid: 24834
+ components:
+ - type: Transform
+ pos: 113.5,83.5
+ parent: 1
+ - uid: 24835
+ components:
+ - type: Transform
+ pos: 113.5,82.5
+ parent: 1
+ - uid: 24836
+ components:
+ - type: Transform
+ pos: 113.5,81.5
+ parent: 1
+ - uid: 24837
+ components:
+ - type: Transform
+ pos: 113.5,80.5
+ parent: 1
+ - uid: 24838
+ components:
+ - type: Transform
+ pos: 113.5,79.5
+ parent: 1
+ - uid: 24839
+ components:
+ - type: Transform
+ pos: 113.5,77.5
+ parent: 1
+ - uid: 24840
+ components:
+ - type: Transform
+ pos: 113.5,78.5
+ parent: 1
+ - uid: 24841
+ components:
+ - type: Transform
+ pos: 114.5,77.5
+ parent: 1
+ - uid: 24842
+ components:
+ - type: Transform
+ pos: 115.5,77.5
+ parent: 1
+ - uid: 24843
+ components:
+ - type: Transform
+ pos: 112.5,77.5
+ parent: 1
+ - uid: 24844
+ components:
+ - type: Transform
+ pos: 110.5,77.5
+ parent: 1
+ - uid: 24845
+ components:
+ - type: Transform
+ pos: 109.5,77.5
+ parent: 1
+ - uid: 24846
+ components:
+ - type: Transform
+ pos: 108.5,77.5
+ parent: 1
+ - uid: 24847
+ components:
+ - type: Transform
+ pos: 107.5,77.5
+ parent: 1
+ - uid: 24848
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 1
+ - uid: 24849
+ components:
+ - type: Transform
+ pos: 105.5,77.5
+ parent: 1
+ - uid: 24850
+ components:
+ - type: Transform
+ pos: 104.5,77.5
+ parent: 1
+ - uid: 24851
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 1
+ - uid: 24852
+ components:
+ - type: Transform
+ pos: 111.5,77.5
+ parent: 1
+ - uid: 24853
+ components:
+ - type: Transform
+ pos: 101.5,77.5
+ parent: 1
+ - uid: 24854
+ components:
+ - type: Transform
+ pos: 100.5,77.5
+ parent: 1
+ - uid: 24855
+ components:
+ - type: Transform
+ pos: 99.5,77.5
+ parent: 1
+ - uid: 24856
+ components:
+ - type: Transform
+ pos: 98.5,77.5
+ parent: 1
+ - uid: 24857
+ components:
+ - type: Transform
+ pos: 102.5,77.5
+ parent: 1
+ - uid: 24858
+ components:
+ - type: Transform
+ pos: 97.5,77.5
+ parent: 1
+ - uid: 24859
+ components:
+ - type: Transform
+ pos: 99.5,78.5
+ parent: 1
+ - uid: 24860
+ components:
+ - type: Transform
+ pos: 99.5,79.5
+ parent: 1
+ - uid: 24861
+ components:
+ - type: Transform
+ pos: 99.5,80.5
+ parent: 1
+ - uid: 24862
+ components:
+ - type: Transform
+ pos: 99.5,81.5
+ parent: 1
+ - uid: 24863
+ components:
+ - type: Transform
+ pos: 99.5,82.5
+ parent: 1
+ - uid: 24864
+ components:
+ - type: Transform
+ pos: 99.5,83.5
+ parent: 1
+ - uid: 24865
+ components:
+ - type: Transform
+ pos: 99.5,84.5
+ parent: 1
+ - uid: 24866
+ components:
+ - type: Transform
+ pos: 99.5,85.5
+ parent: 1
+ - uid: 24867
+ components:
+ - type: Transform
+ pos: 100.5,84.5
+ parent: 1
+ - uid: 24868
+ components:
+ - type: Transform
+ pos: 101.5,84.5
+ parent: 1
+ - uid: 24869
+ components:
+ - type: Transform
+ pos: 102.5,84.5
+ parent: 1
+ - uid: 24870
+ components:
+ - type: Transform
+ pos: 103.5,84.5
+ parent: 1
+ - uid: 24871
+ components:
+ - type: Transform
+ pos: 104.5,84.5
+ parent: 1
+ - uid: 24872
+ components:
+ - type: Transform
+ pos: 105.5,84.5
+ parent: 1
+ - uid: 24873
+ components:
+ - type: Transform
+ pos: 106.5,84.5
+ parent: 1
+ - uid: 24874
+ components:
+ - type: Transform
+ pos: 106.5,83.5
+ parent: 1
+ - uid: 24875
+ components:
+ - type: Transform
+ pos: 106.5,82.5
+ parent: 1
+ - uid: 24876
+ components:
+ - type: Transform
+ pos: 106.5,81.5
+ parent: 1
+ - uid: 24877
+ components:
+ - type: Transform
+ pos: 106.5,80.5
+ parent: 1
+ - uid: 24878
+ components:
+ - type: Transform
+ pos: 107.5,80.5
+ parent: 1
+ - uid: 24879
+ components:
+ - type: Transform
+ pos: 108.5,80.5
+ parent: 1
+ - uid: 24880
+ components:
+ - type: Transform
+ pos: 109.5,80.5
+ parent: 1
+ - uid: 24881
+ components:
+ - type: Transform
+ pos: 110.5,80.5
+ parent: 1
+ - uid: 24882
+ components:
+ - type: Transform
+ pos: 111.5,80.5
+ parent: 1
+ - uid: 24883
+ components:
+ - type: Transform
+ pos: 112.5,80.5
+ parent: 1
+ - uid: 24885
+ components:
+ - type: Transform
+ pos: 114.5,75.5
+ parent: 1
+ - uid: 24886
+ components:
+ - type: Transform
+ pos: 113.5,75.5
+ parent: 1
+ - uid: 24887
+ components:
+ - type: Transform
+ pos: 112.5,75.5
+ parent: 1
+ - uid: 24888
+ components:
+ - type: Transform
+ pos: 111.5,75.5
+ parent: 1
+ - uid: 24889
+ components:
+ - type: Transform
+ pos: 110.5,75.5
+ parent: 1
+ - uid: 24890
+ components:
+ - type: Transform
+ pos: 109.5,75.5
+ parent: 1
+ - uid: 24891
+ components:
+ - type: Transform
+ pos: 108.5,75.5
+ parent: 1
+ - uid: 24892
+ components:
+ - type: Transform
+ pos: 107.5,75.5
+ parent: 1
+ - uid: 24893
+ components:
+ - type: Transform
+ pos: 105.5,75.5
+ parent: 1
+ - uid: 24894
+ components:
+ - type: Transform
+ pos: 104.5,75.5
+ parent: 1
+ - uid: 24895
+ components:
+ - type: Transform
+ pos: 103.5,75.5
+ parent: 1
+ - uid: 24896
+ components:
+ - type: Transform
+ pos: 102.5,75.5
+ parent: 1
+ - uid: 24897
+ components:
+ - type: Transform
+ pos: 106.5,75.5
+ parent: 1
+ - uid: 24898
+ components:
+ - type: Transform
+ pos: 101.5,75.5
+ parent: 1
+ - uid: 24899
+ components:
+ - type: Transform
+ pos: 100.5,75.5
+ parent: 1
+ - uid: 24900
+ components:
+ - type: Transform
+ pos: 99.5,75.5
+ parent: 1
+ - uid: 24901
+ components:
+ - type: Transform
+ pos: 99.5,74.5
+ parent: 1
+ - uid: 24902
+ components:
+ - type: Transform
+ pos: 99.5,73.5
+ parent: 1
+ - uid: 24903
+ components:
+ - type: Transform
+ pos: 99.5,72.5
+ parent: 1
+ - uid: 24904
+ components:
+ - type: Transform
+ pos: 99.5,71.5
+ parent: 1
+ - uid: 24905
+ components:
+ - type: Transform
+ pos: 99.5,70.5
+ parent: 1
+ - uid: 24906
+ components:
+ - type: Transform
+ pos: 99.5,69.5
+ parent: 1
+ - uid: 24907
+ components:
+ - type: Transform
+ pos: 99.5,68.5
+ parent: 1
+ - uid: 24908
+ components:
+ - type: Transform
+ pos: 113.5,74.5
+ parent: 1
+ - uid: 24909
+ components:
+ - type: Transform
+ pos: 113.5,73.5
+ parent: 1
+ - uid: 24910
+ components:
+ - type: Transform
+ pos: 113.5,72.5
+ parent: 1
+ - uid: 24911
+ components:
+ - type: Transform
+ pos: 113.5,71.5
+ parent: 1
+ - uid: 24912
+ components:
+ - type: Transform
+ pos: 113.5,70.5
+ parent: 1
+ - uid: 24913
+ components:
+ - type: Transform
+ pos: 113.5,69.5
+ parent: 1
+ - uid: 24914
+ components:
+ - type: Transform
+ pos: 113.5,68.5
+ parent: 1
+ - uid: 24915
+ components:
+ - type: Transform
+ pos: 106.5,74.5
+ parent: 1
+ - uid: 24916
+ components:
+ - type: Transform
+ pos: 106.5,72.5
+ parent: 1
+ - uid: 24917
+ components:
+ - type: Transform
+ pos: 106.5,73.5
+ parent: 1
+ - uid: 24937
+ components:
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 1
+ - uid: 24938
+ components:
+ - type: Transform
+ pos: 87.5,77.5
+ parent: 1
+ - uid: 24941
+ components:
+ - type: Transform
+ pos: 87.5,74.5
+ parent: 1
+ - uid: 24942
+ components:
+ - type: Transform
+ pos: 88.5,74.5
+ parent: 1
+ - uid: 24943
+ components:
+ - type: Transform
+ pos: 89.5,74.5
+ parent: 1
+ - uid: 24946
+ components:
+ - type: Transform
+ pos: 86.5,74.5
+ parent: 1
+ - uid: 24947
+ components:
+ - type: Transform
+ pos: 85.5,74.5
+ parent: 1
+ - uid: 24948
+ components:
+ - type: Transform
+ pos: 84.5,74.5
+ parent: 1
+ - uid: 24949
+ components:
+ - type: Transform
+ pos: 83.5,74.5
+ parent: 1
+ - uid: 24950
+ components:
+ - type: Transform
+ pos: 82.5,74.5
+ parent: 1
+ - uid: 24951
+ components:
+ - type: Transform
+ pos: 81.5,74.5
+ parent: 1
+ - uid: 24952
+ components:
+ - type: Transform
+ pos: 81.5,73.5
+ parent: 1
+ - uid: 24953
+ components:
+ - type: Transform
+ pos: 81.5,72.5
+ parent: 1
+ - uid: 24954
+ components:
+ - type: Transform
+ pos: 81.5,71.5
+ parent: 1
+ - uid: 24955
+ components:
+ - type: Transform
+ pos: 81.5,70.5
+ parent: 1
+ - uid: 24956
+ components:
+ - type: Transform
+ pos: 80.5,70.5
+ parent: 1
+ - uid: 24957
+ components:
+ - type: Transform
+ pos: 79.5,70.5
+ parent: 1
+ - uid: 24958
+ components:
+ - type: Transform
+ pos: 81.5,75.5
+ parent: 1
+ - uid: 24959
+ components:
+ - type: Transform
+ pos: 81.5,76.5
+ parent: 1
+ - uid: 24960
+ components:
+ - type: Transform
+ pos: 81.5,77.5
+ parent: 1
+ - uid: 24961
+ components:
+ - type: Transform
+ pos: 81.5,78.5
+ parent: 1
+ - uid: 24962
+ components:
+ - type: Transform
+ pos: 80.5,78.5
+ parent: 1
+ - uid: 24963
+ components:
+ - type: Transform
+ pos: 79.5,78.5
+ parent: 1
+ - uid: 24997
+ components:
+ - type: Transform
+ pos: 64.5,71.5
+ parent: 1
+ - uid: 24998
+ components:
+ - type: Transform
+ pos: 64.5,72.5
+ parent: 1
+ - uid: 24999
+ components:
+ - type: Transform
+ pos: 64.5,73.5
+ parent: 1
+ - uid: 25000
+ components:
+ - type: Transform
+ pos: 64.5,74.5
+ parent: 1
+ - uid: 25001
+ components:
+ - type: Transform
+ pos: 65.5,74.5
+ parent: 1
+ - uid: 25002
+ components:
+ - type: Transform
+ pos: 63.5,74.5
+ parent: 1
+ - uid: 25003
+ components:
+ - type: Transform
+ pos: 62.5,74.5
+ parent: 1
+ - uid: 25004
+ components:
+ - type: Transform
+ pos: 62.5,75.5
+ parent: 1
+ - uid: 25005
+ components:
+ - type: Transform
+ pos: 66.5,74.5
+ parent: 1
+ - uid: 25006
+ components:
+ - type: Transform
+ pos: 68.5,74.5
+ parent: 1
+ - uid: 25007
+ components:
+ - type: Transform
+ pos: 69.5,74.5
+ parent: 1
+ - uid: 25008
+ components:
+ - type: Transform
+ pos: 70.5,74.5
+ parent: 1
+ - uid: 25009
+ components:
+ - type: Transform
+ pos: 70.5,73.5
+ parent: 1
+ - uid: 25010
+ components:
+ - type: Transform
+ pos: 70.5,72.5
+ parent: 1
+ - uid: 25011
+ components:
+ - type: Transform
+ pos: 71.5,72.5
+ parent: 1
+ - uid: 25012
+ components:
+ - type: Transform
+ pos: 71.5,71.5
+ parent: 1
+ - uid: 25013
+ components:
+ - type: Transform
+ pos: 71.5,74.5
+ parent: 1
+ - uid: 25014
+ components:
+ - type: Transform
+ pos: 72.5,74.5
+ parent: 1
+ - uid: 25015
+ components:
+ - type: Transform
+ pos: 73.5,74.5
+ parent: 1
+ - uid: 25016
+ components:
+ - type: Transform
+ pos: 74.5,74.5
+ parent: 1
+ - uid: 25017
+ components:
+ - type: Transform
+ pos: 74.5,75.5
+ parent: 1
+ - uid: 25018
+ components:
+ - type: Transform
+ pos: 74.5,76.5
+ parent: 1
+ - uid: 25019
+ components:
+ - type: Transform
+ pos: 74.5,77.5
+ parent: 1
+ - uid: 25020
+ components:
+ - type: Transform
+ pos: 74.5,78.5
+ parent: 1
+ - uid: 25021
+ components:
+ - type: Transform
+ pos: 75.5,78.5
+ parent: 1
+ - uid: 25022
+ components:
+ - type: Transform
+ pos: 74.5,73.5
+ parent: 1
+ - uid: 25023
+ components:
+ - type: Transform
+ pos: 74.5,72.5
+ parent: 1
+ - uid: 25024
+ components:
+ - type: Transform
+ pos: 74.5,71.5
+ parent: 1
+ - uid: 25025
+ components:
+ - type: Transform
+ pos: 74.5,70.5
+ parent: 1
+ - uid: 25026
+ components:
+ - type: Transform
+ pos: 75.5,70.5
+ parent: 1
+ - uid: 25027
+ components:
+ - type: Transform
+ pos: 76.5,70.5
+ parent: 1
+ - uid: 25028
+ components:
+ - type: Transform
+ pos: 74.5,69.5
+ parent: 1
+ - uid: 25029
+ components:
+ - type: Transform
+ pos: 74.5,68.5
+ parent: 1
+ - uid: 25030
+ components:
+ - type: Transform
+ pos: 73.5,68.5
+ parent: 1
+ - uid: 25031
+ components:
+ - type: Transform
+ pos: 72.5,68.5
+ parent: 1
+ - uid: 25032
+ components:
+ - type: Transform
+ pos: 71.5,68.5
+ parent: 1
+ - uid: 25033
+ components:
+ - type: Transform
+ pos: 69.5,68.5
+ parent: 1
+ - uid: 25034
+ components:
+ - type: Transform
+ pos: 70.5,68.5
+ parent: 1
+ - uid: 25035
+ components:
+ - type: Transform
+ pos: 68.5,68.5
+ parent: 1
+ - uid: 25046
+ components:
+ - type: Transform
+ pos: 123.5,84.5
+ parent: 1
+ - uid: 25047
+ components:
+ - type: Transform
+ pos: 122.5,84.5
+ parent: 1
+ - uid: 25048
+ components:
+ - type: Transform
+ pos: 121.5,84.5
+ parent: 1
+ - uid: 25049
+ components:
+ - type: Transform
+ pos: 121.5,85.5
+ parent: 1
+ - uid: 25050
+ components:
+ - type: Transform
+ pos: 121.5,86.5
+ parent: 1
+ - uid: 25051
+ components:
+ - type: Transform
+ pos: 120.5,86.5
+ parent: 1
+ - uid: 25052
+ components:
+ - type: Transform
+ pos: 119.5,86.5
+ parent: 1
+ - uid: 25053
+ components:
+ - type: Transform
+ pos: 118.5,86.5
+ parent: 1
+ - uid: 25054
+ components:
+ - type: Transform
+ pos: 117.5,86.5
+ parent: 1
+ - uid: 25055
+ components:
+ - type: Transform
+ pos: 116.5,86.5
+ parent: 1
+ - uid: 25056
+ components:
+ - type: Transform
+ pos: 116.5,85.5
+ parent: 1
+ - uid: 25057
+ components:
+ - type: Transform
+ pos: 116.5,84.5
+ parent: 1
+ - uid: 25058
+ components:
+ - type: Transform
+ pos: 116.5,83.5
+ parent: 1
+ - uid: 25059
+ components:
+ - type: Transform
+ pos: 116.5,82.5
+ parent: 1
+ - uid: 25060
+ components:
+ - type: Transform
+ pos: 116.5,81.5
+ parent: 1
+ - uid: 25061
+ components:
+ - type: Transform
+ pos: 116.5,80.5
+ parent: 1
+ - uid: 25062
+ components:
+ - type: Transform
+ pos: 117.5,80.5
+ parent: 1
+ - uid: 25063
+ components:
+ - type: Transform
+ pos: 118.5,80.5
+ parent: 1
+ - uid: 25064
+ components:
+ - type: Transform
+ pos: 119.5,80.5
+ parent: 1
+ - uid: 25065
+ components:
+ - type: Transform
+ pos: 120.5,80.5
+ parent: 1
+ - uid: 25066
+ components:
+ - type: Transform
+ pos: 121.5,80.5
+ parent: 1
+ - uid: 25067
+ components:
+ - type: Transform
+ pos: 121.5,81.5
+ parent: 1
+ - uid: 25068
+ components:
+ - type: Transform
+ pos: 121.5,82.5
+ parent: 1
+ - uid: 25069
+ components:
+ - type: Transform
+ pos: 121.5,83.5
+ parent: 1
+ - uid: 25070
+ components:
+ - type: Transform
+ pos: 122.5,82.5
+ parent: 1
+ - uid: 25071
+ components:
+ - type: Transform
+ pos: 123.5,82.5
+ parent: 1
+ - uid: 25072
+ components:
+ - type: Transform
+ pos: 124.5,82.5
+ parent: 1
+ - uid: 25073
+ components:
+ - type: Transform
+ pos: 124.5,81.5
+ parent: 1
+ - uid: 25074
+ components:
+ - type: Transform
+ pos: 124.5,80.5
+ parent: 1
+ - uid: 25075
+ components:
+ - type: Transform
+ pos: 125.5,82.5
+ parent: 1
+ - uid: 25076
+ components:
+ - type: Transform
+ pos: 125.5,83.5
+ parent: 1
+ - uid: 25077
+ components:
+ - type: Transform
+ pos: 125.5,84.5
+ parent: 1
+ - uid: 25078
+ components:
+ - type: Transform
+ pos: 125.5,85.5
+ parent: 1
+ - uid: 25079
+ components:
+ - type: Transform
+ pos: 125.5,86.5
+ parent: 1
+ - uid: 25106
+ components:
+ - type: Transform
+ pos: 142.5,114.5
+ parent: 1
+ - uid: 25109
+ components:
+ - type: Transform
+ pos: 155.5,115.5
+ parent: 1
+ - uid: 25114
+ components:
+ - type: Transform
+ pos: 145.5,114.5
+ parent: 1
+ - uid: 25120
+ components:
+ - type: Transform
+ pos: 154.5,115.5
+ parent: 1
+ - uid: 25148
+ components:
+ - type: Transform
+ pos: 146.5,111.5
+ parent: 1
+ - uid: 25151
+ components:
+ - type: Transform
+ pos: 155.5,114.5
+ parent: 1
+ - uid: 25171
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 1
+ - uid: 25203
+ components:
+ - type: Transform
+ pos: 147.5,78.5
+ parent: 1
+ - uid: 25204
+ components:
+ - type: Transform
+ pos: 147.5,80.5
+ parent: 1
+ - uid: 25212
+ components:
+ - type: Transform
+ pos: 132.5,86.5
+ parent: 1
+ - uid: 25244
+ components:
+ - type: Transform
+ pos: 139.5,90.5
+ parent: 1
+ - uid: 25257
+ components:
+ - type: Transform
+ pos: 139.5,91.5
+ parent: 1
+ - uid: 25264
+ components:
+ - type: Transform
+ pos: 139.5,87.5
+ parent: 1
+ - uid: 25268
+ components:
+ - type: Transform
+ pos: 157.5,56.5
+ parent: 1
+ - uid: 25269
+ components:
+ - type: Transform
+ pos: 157.5,57.5
+ parent: 1
+ - uid: 25270
+ components:
+ - type: Transform
+ pos: 157.5,52.5
+ parent: 1
+ - uid: 25271
+ components:
+ - type: Transform
+ pos: 157.5,51.5
+ parent: 1
+ - uid: 25273
+ components:
+ - type: Transform
+ pos: 157.5,50.5
+ parent: 1
+ - uid: 25274
+ components:
+ - type: Transform
+ pos: 158.5,50.5
+ parent: 1
+ - uid: 25275
+ components:
+ - type: Transform
+ pos: 158.5,49.5
+ parent: 1
+ - uid: 25277
+ components:
+ - type: Transform
+ pos: 165.5,135.5
+ parent: 1
+ - uid: 25295
+ components:
+ - type: Transform
+ pos: 96.5,36.5
+ parent: 1
+ - uid: 25297
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 25300
+ components:
+ - type: Transform
+ pos: 98.5,36.5
+ parent: 1
+ - uid: 25315
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 1
+ - uid: 25500
+ components:
+ - type: Transform
+ pos: 92.5,114.5
+ parent: 1
+ - uid: 25501
+ components:
+ - type: Transform
+ pos: 93.5,114.5
+ parent: 1
+ - uid: 25503
+ components:
+ - type: Transform
+ pos: 95.5,114.5
+ parent: 1
+ - uid: 25504
+ components:
+ - type: Transform
+ pos: 72.5,49.5
+ parent: 1
+ - uid: 25526
+ components:
+ - type: Transform
+ pos: 103.5,45.5
+ parent: 1
+ - uid: 25542
+ components:
+ - type: Transform
+ pos: 90.5,112.5
+ parent: 1
+ - uid: 25548
+ components:
+ - type: Transform
+ pos: 98.5,46.5
+ parent: 1
+ - uid: 25553
+ components:
+ - type: Transform
+ pos: 94.5,114.5
+ parent: 1
+ - uid: 25554
+ components:
+ - type: Transform
+ pos: 94.5,113.5
+ parent: 1
+ - uid: 25555
+ components:
+ - type: Transform
+ pos: 94.5,112.5
+ parent: 1
+ - uid: 25556
+ components:
+ - type: Transform
+ pos: 96.5,114.5
+ parent: 1
+ - uid: 25608
+ components:
+ - type: Transform
+ pos: 102.5,45.5
+ parent: 1
+ - uid: 25683
+ components:
+ - type: Transform
+ pos: 104.5,96.5
+ parent: 1
+ - uid: 25753
+ components:
+ - type: Transform
+ pos: 104.5,88.5
+ parent: 1
+ - uid: 25754
+ components:
+ - type: Transform
+ pos: 104.5,89.5
+ parent: 1
+ - uid: 25755
+ components:
+ - type: Transform
+ pos: 104.5,90.5
+ parent: 1
+ - uid: 25756
+ components:
+ - type: Transform
+ pos: 104.5,91.5
+ parent: 1
+ - uid: 25757
+ components:
+ - type: Transform
+ pos: 104.5,92.5
+ parent: 1
+ - uid: 25758
+ components:
+ - type: Transform
+ pos: 104.5,94.5
+ parent: 1
+ - uid: 25759
+ components:
+ - type: Transform
+ pos: 104.5,93.5
+ parent: 1
+ - uid: 25773
+ components:
+ - type: Transform
+ pos: 115.5,64.5
+ parent: 1
+ - uid: 25776
+ components:
+ - type: Transform
+ pos: 115.5,65.5
+ parent: 1
+ - uid: 25805
+ components:
+ - type: Transform
+ pos: 97.5,63.5
+ parent: 1
+ - uid: 25806
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - uid: 25862
+ components:
+ - type: Transform
+ pos: 61.5,41.5
+ parent: 1
+ - uid: 26347
+ components:
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - uid: 26348
+ components:
+ - type: Transform
+ pos: 137.5,122.5
+ parent: 1
+ - uid: 26349
+ components:
+ - type: Transform
+ pos: 137.5,125.5
+ parent: 1
+ - uid: 26381
+ components:
+ - type: Transform
+ pos: 113.5,99.5
+ parent: 1
+ - uid: 26382
+ components:
+ - type: Transform
+ pos: 113.5,100.5
+ parent: 1
+ - uid: 26383
+ components:
+ - type: Transform
+ pos: 113.5,101.5
+ parent: 1
+ - uid: 26384
+ components:
+ - type: Transform
+ pos: 113.5,102.5
+ parent: 1
+ - uid: 26385
+ components:
+ - type: Transform
+ pos: 113.5,103.5
+ parent: 1
+ - uid: 26386
+ components:
+ - type: Transform
+ pos: 113.5,104.5
+ parent: 1
+ - uid: 26387
+ components:
+ - type: Transform
+ pos: 113.5,106.5
+ parent: 1
+ - uid: 26388
+ components:
+ - type: Transform
+ pos: 103.5,99.5
+ parent: 1
+ - uid: 26389
+ components:
+ - type: Transform
+ pos: 103.5,101.5
+ parent: 1
+ - uid: 26390
+ components:
+ - type: Transform
+ pos: 103.5,102.5
+ parent: 1
+ - uid: 26391
+ components:
+ - type: Transform
+ pos: 103.5,103.5
+ parent: 1
+ - uid: 26392
+ components:
+ - type: Transform
+ pos: 103.5,104.5
+ parent: 1
+ - uid: 26393
+ components:
+ - type: Transform
+ pos: 103.5,100.5
+ parent: 1
+ - uid: 26402
+ components:
+ - type: Transform
+ pos: 94.5,102.5
+ parent: 1
+ - uid: 26403
+ components:
+ - type: Transform
+ pos: 93.5,102.5
+ parent: 1
+ - uid: 26404
+ components:
+ - type: Transform
+ pos: 100.5,62.5
+ parent: 1
+ - uid: 26405
+ components:
+ - type: Transform
+ pos: 106.5,61.5
+ parent: 1
+ - uid: 26406
+ components:
+ - type: Transform
+ pos: 106.5,62.5
+ parent: 1
+ - uid: 26407
+ components:
+ - type: Transform
+ pos: 112.5,62.5
+ parent: 1
+ - uid: 26413
+ components:
+ - type: Transform
+ pos: 75.5,130.5
+ parent: 1
+ - uid: 26490
+ components:
+ - type: Transform
+ pos: 75.5,135.5
+ parent: 1
+ - uid: 26509
+ components:
+ - type: Transform
+ pos: 90.5,74.5
+ parent: 1
+ - uid: 26559
+ components:
+ - type: Transform
+ pos: 67.5,63.5
+ parent: 1
+ - uid: 26841
+ components:
+ - type: Transform
+ pos: 99.5,158.5
+ parent: 1
+ - uid: 26903
+ components:
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - uid: 26906
+ components:
+ - type: Transform
+ pos: 88.5,69.5
+ parent: 1
+ - uid: 26907
+ components:
+ - type: Transform
+ pos: 88.5,71.5
+ parent: 1
+ - uid: 26908
+ components:
+ - type: Transform
+ pos: 85.5,73.5
+ parent: 1
+ - uid: 26909
+ components:
+ - type: Transform
+ pos: 85.5,72.5
+ parent: 1
+ - uid: 26910
+ components:
+ - type: Transform
+ pos: 85.5,71.5
+ parent: 1
+ - uid: 26911
+ components:
+ - type: Transform
+ pos: 85.5,75.5
+ parent: 1
+ - uid: 26912
+ components:
+ - type: Transform
+ pos: 85.5,76.5
+ parent: 1
+ - uid: 26913
+ components:
+ - type: Transform
+ pos: 85.5,77.5
+ parent: 1
+ - uid: 26914
+ components:
+ - type: Transform
+ pos: 85.5,78.5
+ parent: 1
+ - uid: 26915
+ components:
+ - type: Transform
+ pos: 88.5,73.5
+ parent: 1
+ - uid: 26916
+ components:
+ - type: Transform
+ pos: 88.5,68.5
+ parent: 1
+ - uid: 26917
+ components:
+ - type: Transform
+ pos: 88.5,67.5
+ parent: 1
+ - uid: 26918
+ components:
+ - type: Transform
+ pos: 88.5,66.5
+ parent: 1
+ - uid: 26919
+ components:
+ - type: Transform
+ pos: 89.5,68.5
+ parent: 1
+ - uid: 26920
+ components:
+ - type: Transform
+ pos: 90.5,68.5
+ parent: 1
+ - uid: 26921
+ components:
+ - type: Transform
+ pos: 87.5,67.5
+ parent: 1
+ - uid: 26922
+ components:
+ - type: Transform
+ pos: 86.5,67.5
+ parent: 1
+ - uid: 26926
+ components:
+ - type: Transform
+ pos: 116.5,39.5
+ parent: 1
+ - uid: 26976
+ components:
+ - type: Transform
+ pos: 138.5,127.5
+ parent: 1
+ - uid: 27171
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 1
+ - uid: 27387
+ components:
+ - type: Transform
+ pos: 115.5,63.5
+ parent: 1
+ - uid: 27412
+ components:
+ - type: Transform
+ pos: 116.5,58.5
+ parent: 1
+ - uid: 27500
+ components:
+ - type: Transform
+ pos: 97.5,46.5
+ parent: 1
+ - uid: 27519
+ components:
+ - type: Transform
+ pos: 67.5,25.5
+ parent: 1
+ - uid: 27520
+ components:
+ - type: Transform
+ pos: 67.5,26.5
+ parent: 1
+ - uid: 27521
+ components:
+ - type: Transform
+ pos: 67.5,27.5
+ parent: 1
+ - uid: 27522
+ components:
+ - type: Transform
+ pos: 67.5,28.5
+ parent: 1
+ - uid: 27523
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 1
+ - uid: 27524
+ components:
+ - type: Transform
+ pos: 67.5,30.5
+ parent: 1
+ - uid: 27525
+ components:
+ - type: Transform
+ pos: 67.5,31.5
+ parent: 1
+ - uid: 27526
+ components:
+ - type: Transform
+ pos: 67.5,32.5
+ parent: 1
+ - uid: 27527
+ components:
+ - type: Transform
+ pos: 67.5,33.5
+ parent: 1
+ - uid: 27528
+ components:
+ - type: Transform
+ pos: 67.5,34.5
+ parent: 1
+ - uid: 27529
+ components:
+ - type: Transform
+ pos: 67.5,35.5
+ parent: 1
+ - uid: 27530
+ components:
+ - type: Transform
+ pos: 67.5,36.5
+ parent: 1
+ - uid: 27531
+ components:
+ - type: Transform
+ pos: 67.5,37.5
+ parent: 1
+ - uid: 27532
+ components:
+ - type: Transform
+ pos: 67.5,38.5
+ parent: 1
+ - uid: 27533
+ components:
+ - type: Transform
+ pos: 67.5,39.5
+ parent: 1
+ - uid: 27534
+ components:
+ - type: Transform
+ pos: 67.5,40.5
+ parent: 1
+ - uid: 27535
+ components:
+ - type: Transform
+ pos: 67.5,41.5
+ parent: 1
+ - uid: 27536
+ components:
+ - type: Transform
+ pos: 67.5,42.5
+ parent: 1
+ - uid: 27537
+ components:
+ - type: Transform
+ pos: 68.5,42.5
+ parent: 1
+ - uid: 27538
+ components:
+ - type: Transform
+ pos: 69.5,42.5
+ parent: 1
+ - uid: 27539
+ components:
+ - type: Transform
+ pos: 70.5,42.5
+ parent: 1
+ - uid: 27540
+ components:
+ - type: Transform
+ pos: 71.5,42.5
+ parent: 1
+ - uid: 27541
+ components:
+ - type: Transform
+ pos: 72.5,42.5
+ parent: 1
+ - uid: 27542
+ components:
+ - type: Transform
+ pos: 73.5,42.5
+ parent: 1
+ - uid: 27543
+ components:
+ - type: Transform
+ pos: 74.5,42.5
+ parent: 1
+ - uid: 27544
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+ - uid: 27545
+ components:
+ - type: Transform
+ pos: 76.5,42.5
+ parent: 1
+ - uid: 27546
+ components:
+ - type: Transform
+ pos: 77.5,42.5
+ parent: 1
+ - uid: 27547
+ components:
+ - type: Transform
+ pos: 78.5,42.5
+ parent: 1
+ - uid: 27548
+ components:
+ - type: Transform
+ pos: 79.5,42.5
+ parent: 1
+ - uid: 27549
+ components:
+ - type: Transform
+ pos: 80.5,42.5
+ parent: 1
+ - uid: 27550
+ components:
+ - type: Transform
+ pos: 81.5,42.5
+ parent: 1
+ - uid: 27551
+ components:
+ - type: Transform
+ pos: 82.5,42.5
+ parent: 1
+ - uid: 27552
+ components:
+ - type: Transform
+ pos: 83.5,42.5
+ parent: 1
+ - uid: 27553
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 1
+ - uid: 27554
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 1
+ - uid: 27555
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 1
+ - uid: 27556
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 1
+ - uid: 27557
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 1
+ - uid: 27558
+ components:
+ - type: Transform
+ pos: 83.5,35.5
+ parent: 1
+ - uid: 27559
+ components:
+ - type: Transform
+ pos: 83.5,34.5
+ parent: 1
+ - uid: 27560
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 1
+ - uid: 27561
+ components:
+ - type: Transform
+ pos: 83.5,32.5
+ parent: 1
+ - uid: 27562
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 1
+ - uid: 27563
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 1
+ - uid: 27564
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 1
+ - uid: 27565
+ components:
+ - type: Transform
+ pos: 83.5,27.5
+ parent: 1
+ - uid: 27566
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 1
+ - uid: 27567
+ components:
+ - type: Transform
+ pos: 83.5,25.5
+ parent: 1
+ - uid: 27568
+ components:
+ - type: Transform
+ pos: 83.5,26.5
+ parent: 1
+ - uid: 27569
+ components:
+ - type: Transform
+ pos: 82.5,27.5
+ parent: 1
+ - uid: 27570
+ components:
+ - type: Transform
+ pos: 81.5,27.5
+ parent: 1
+ - uid: 27571
+ components:
+ - type: Transform
+ pos: 80.5,27.5
+ parent: 1
+ - uid: 27572
+ components:
+ - type: Transform
+ pos: 70.5,27.5
+ parent: 1
+ - uid: 27573
+ components:
+ - type: Transform
+ pos: 69.5,27.5
+ parent: 1
+ - uid: 27574
+ components:
+ - type: Transform
+ pos: 68.5,27.5
+ parent: 1
+ - uid: 27575
+ components:
+ - type: Transform
+ pos: 68.5,34.5
+ parent: 1
+ - uid: 27576
+ components:
+ - type: Transform
+ pos: 70.5,34.5
+ parent: 1
+ - uid: 27577
+ components:
+ - type: Transform
+ pos: 69.5,34.5
+ parent: 1
+ - uid: 27578
+ components:
+ - type: Transform
+ pos: 80.5,34.5
+ parent: 1
+ - uid: 27579
+ components:
+ - type: Transform
+ pos: 81.5,34.5
+ parent: 1
+ - uid: 27580
+ components:
+ - type: Transform
+ pos: 82.5,34.5
+ parent: 1
+ - uid: 27585
+ components:
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 1
+ - uid: 27586
+ components:
+ - type: Transform
+ pos: 72.5,43.5
+ parent: 1
+ - uid: 27588
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 1
+ - uid: 27607
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 1
+ - uid: 27608
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 1
+ - uid: 27609
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 1
+ - uid: 27610
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 1
+ - uid: 27611
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 1
+ - uid: 27612
+ components:
+ - type: Transform
+ pos: 78.5,45.5
+ parent: 1
+ - uid: 27613
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 1
+ - uid: 27614
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 1
+ - uid: 27616
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 1
+ - uid: 27643
+ components:
+ - type: Transform
+ pos: 67.5,23.5
+ parent: 1
+ - uid: 27644
+ components:
+ - type: Transform
+ pos: 67.5,22.5
+ parent: 1
+ - uid: 27645
+ components:
+ - type: Transform
+ pos: 67.5,21.5
+ parent: 1
+ - uid: 27646
+ components:
+ - type: Transform
+ pos: 67.5,20.5
+ parent: 1
+ - uid: 27647
+ components:
+ - type: Transform
+ pos: 67.5,19.5
+ parent: 1
+ - uid: 27648
+ components:
+ - type: Transform
+ pos: 67.5,18.5
+ parent: 1
+ - uid: 27663
+ components:
+ - type: Transform
+ pos: 83.5,18.5
+ parent: 1
+ - uid: 27665
+ components:
+ - type: Transform
+ pos: 83.5,19.5
+ parent: 1
+ - uid: 27666
+ components:
+ - type: Transform
+ pos: 83.5,20.5
+ parent: 1
+ - uid: 27667
+ components:
+ - type: Transform
+ pos: 83.5,21.5
+ parent: 1
+ - uid: 27668
+ components:
+ - type: Transform
+ pos: 83.5,23.5
+ parent: 1
+ - uid: 27669
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - uid: 27670
+ components:
+ - type: Transform
+ pos: 83.5,22.5
+ parent: 1
+ - uid: 27722
+ components:
+ - type: Transform
+ pos: 66.5,36.5
+ parent: 1
+ - uid: 27731
+ components:
+ - type: Transform
+ pos: 67.5,43.5
+ parent: 1
+ - uid: 27733
+ components:
+ - type: Transform
+ pos: 67.5,45.5
+ parent: 1
+ - uid: 27734
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 1
+ - uid: 27735
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 1
+ - uid: 27736
+ components:
+ - type: Transform
+ pos: 67.5,48.5
+ parent: 1
+ - uid: 27737
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 1
+ - uid: 27738
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 1
+ - uid: 27739
+ components:
+ - type: Transform
+ pos: 67.5,51.5
+ parent: 1
+ - uid: 27740
+ components:
+ - type: Transform
+ pos: 67.5,53.5
+ parent: 1
+ - uid: 27741
+ components:
+ - type: Transform
+ pos: 67.5,54.5
+ parent: 1
+ - uid: 27742
+ components:
+ - type: Transform
+ pos: 67.5,55.5
+ parent: 1
+ - uid: 27743
+ components:
+ - type: Transform
+ pos: 67.5,56.5
+ parent: 1
+ - uid: 27744
+ components:
+ - type: Transform
+ pos: 67.5,52.5
+ parent: 1
+ - uid: 27745
+ components:
+ - type: Transform
+ pos: 67.5,57.5
+ parent: 1
+ - uid: 27746
+ components:
+ - type: Transform
+ pos: 67.5,58.5
+ parent: 1
+ - uid: 27747
+ components:
+ - type: Transform
+ pos: 67.5,59.5
+ parent: 1
+ - uid: 27748
+ components:
+ - type: Transform
+ pos: 67.5,60.5
+ parent: 1
+ - uid: 27749
+ components:
+ - type: Transform
+ pos: 67.5,61.5
+ parent: 1
+ - uid: 27751
+ components:
+ - type: Transform
+ pos: 66.5,49.5
+ parent: 1
+ - uid: 27771
+ components:
+ - type: Transform
+ pos: 60.5,66.5
+ parent: 1
+ - uid: 27772
+ components:
+ - type: Transform
+ pos: 60.5,65.5
+ parent: 1
+ - uid: 27773
+ components:
+ - type: Transform
+ pos: 60.5,64.5
+ parent: 1
+ - uid: 27774
+ components:
+ - type: Transform
+ pos: 61.5,64.5
+ parent: 1
+ - uid: 27775
+ components:
+ - type: Transform
+ pos: 62.5,64.5
+ parent: 1
+ - uid: 27776
+ components:
+ - type: Transform
+ pos: 63.5,64.5
+ parent: 1
+ - uid: 27777
+ components:
+ - type: Transform
+ pos: 64.5,64.5
+ parent: 1
+ - uid: 27778
+ components:
+ - type: Transform
+ pos: 65.5,64.5
+ parent: 1
+ - uid: 27779
+ components:
+ - type: Transform
+ pos: 66.5,64.5
+ parent: 1
+ - uid: 27780
+ components:
+ - type: Transform
+ pos: 67.5,64.5
+ parent: 1
+ - uid: 27781
+ components:
+ - type: Transform
+ pos: 68.5,64.5
+ parent: 1
+ - uid: 27782
+ components:
+ - type: Transform
+ pos: 69.5,64.5
+ parent: 1
+ - uid: 27783
+ components:
+ - type: Transform
+ pos: 71.5,64.5
+ parent: 1
+ - uid: 27785
+ components:
+ - type: Transform
+ pos: 59.5,64.5
+ parent: 1
+ - uid: 27786
+ components:
+ - type: Transform
+ pos: 58.5,64.5
+ parent: 1
+ - uid: 27787
+ components:
+ - type: Transform
+ pos: 57.5,64.5
+ parent: 1
+ - uid: 27788
+ components:
+ - type: Transform
+ pos: 56.5,64.5
+ parent: 1
+ - uid: 27789
+ components:
+ - type: Transform
+ pos: 55.5,64.5
+ parent: 1
+ - uid: 27790
+ components:
+ - type: Transform
+ pos: 54.5,64.5
+ parent: 1
+ - uid: 27791
+ components:
+ - type: Transform
+ pos: 53.5,64.5
+ parent: 1
+ - uid: 27792
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - uid: 27793
+ components:
+ - type: Transform
+ pos: 56.5,65.5
+ parent: 1
+ - uid: 27794
+ components:
+ - type: Transform
+ pos: 56.5,67.5
+ parent: 1
+ - uid: 27795
+ components:
+ - type: Transform
+ pos: 56.5,68.5
+ parent: 1
+ - uid: 27796
+ components:
+ - type: Transform
+ pos: 56.5,69.5
+ parent: 1
+ - uid: 27797
+ components:
+ - type: Transform
+ pos: 56.5,70.5
+ parent: 1
+ - uid: 27798
+ components:
+ - type: Transform
+ pos: 56.5,66.5
+ parent: 1
+ - uid: 27799
+ components:
+ - type: Transform
+ pos: 56.5,72.5
+ parent: 1
+ - uid: 27800
+ components:
+ - type: Transform
+ pos: 56.5,73.5
+ parent: 1
+ - uid: 27801
+ components:
+ - type: Transform
+ pos: 56.5,74.5
+ parent: 1
+ - uid: 27802
+ components:
+ - type: Transform
+ pos: 56.5,75.5
+ parent: 1
+ - uid: 27803
+ components:
+ - type: Transform
+ pos: 56.5,76.5
+ parent: 1
+ - uid: 27804
+ components:
+ - type: Transform
+ pos: 56.5,77.5
+ parent: 1
+ - uid: 27805
+ components:
+ - type: Transform
+ pos: 56.5,78.5
+ parent: 1
+ - uid: 27806
+ components:
+ - type: Transform
+ pos: 56.5,79.5
+ parent: 1
+ - uid: 27807
+ components:
+ - type: Transform
+ pos: 56.5,71.5
+ parent: 1
+ - uid: 27808
+ components:
+ - type: Transform
+ pos: 57.5,78.5
+ parent: 1
+ - uid: 27809
+ components:
+ - type: Transform
+ pos: 55.5,78.5
+ parent: 1
+ - uid: 27810
+ components:
+ - type: Transform
+ pos: 64.5,65.5
+ parent: 1
+ - uid: 27811
+ components:
+ - type: Transform
+ pos: 64.5,63.5
+ parent: 1
+ - uid: 27812
+ components:
+ - type: Transform
+ pos: 125.5,43.5
+ parent: 1
+ - uid: 27859
+ components:
+ - type: Transform
+ pos: 56.5,83.5
+ parent: 1
+ - uid: 27860
+ components:
+ - type: Transform
+ pos: 56.5,82.5
+ parent: 1
+ - uid: 27861
+ components:
+ - type: Transform
+ pos: 53.5,87.5
+ parent: 1
+ - uid: 27862
+ components:
+ - type: Transform
+ pos: 51.5,87.5
+ parent: 1
+ - uid: 27863
+ components:
+ - type: Transform
+ pos: 53.5,96.5
+ parent: 1
+ - uid: 27865
+ components:
+ - type: Transform
+ pos: 53.5,84.5
+ parent: 1
+ - uid: 27867
+ components:
+ - type: Transform
+ pos: 57.5,90.5
+ parent: 1
+ - uid: 27869
+ components:
+ - type: Transform
+ pos: 56.5,85.5
+ parent: 1
+ - uid: 27870
+ components:
+ - type: Transform
+ pos: 55.5,87.5
+ parent: 1
+ - uid: 27871
+ components:
+ - type: Transform
+ pos: 57.5,96.5
+ parent: 1
+ - uid: 27872
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 1
+ - uid: 27874
+ components:
+ - type: Transform
+ pos: 55.5,96.5
+ parent: 1
+ - uid: 27875
+ components:
+ - type: Transform
+ pos: 56.5,87.5
+ parent: 1
+ - uid: 27876
+ components:
+ - type: Transform
+ pos: 56.5,86.5
+ parent: 1
+ - uid: 27877
+ components:
+ - type: Transform
+ pos: 56.5,88.5
+ parent: 1
+ - uid: 27878
+ components:
+ - type: Transform
+ pos: 56.5,89.5
+ parent: 1
+ - uid: 27879
+ components:
+ - type: Transform
+ pos: 56.5,90.5
+ parent: 1
+ - uid: 27880
+ components:
+ - type: Transform
+ pos: 56.5,91.5
+ parent: 1
+ - uid: 27881
+ components:
+ - type: Transform
+ pos: 56.5,92.5
+ parent: 1
+ - uid: 27882
+ components:
+ - type: Transform
+ pos: 56.5,93.5
+ parent: 1
+ - uid: 27883
+ components:
+ - type: Transform
+ pos: 56.5,94.5
+ parent: 1
+ - uid: 27884
+ components:
+ - type: Transform
+ pos: 56.5,95.5
+ parent: 1
+ - uid: 27885
+ components:
+ - type: Transform
+ pos: 56.5,96.5
+ parent: 1
+ - uid: 27886
+ components:
+ - type: Transform
+ pos: 56.5,97.5
+ parent: 1
+ - uid: 27887
+ components:
+ - type: Transform
+ pos: 56.5,98.5
+ parent: 1
+ - uid: 27888
+ components:
+ - type: Transform
+ pos: 56.5,99.5
+ parent: 1
+ - uid: 27889
+ components:
+ - type: Transform
+ pos: 56.5,102.5
+ parent: 1
+ - uid: 27890
+ components:
+ - type: Transform
+ pos: 56.5,103.5
+ parent: 1
+ - uid: 27891
+ components:
+ - type: Transform
+ pos: 56.5,101.5
+ parent: 1
+ - uid: 27892
+ components:
+ - type: Transform
+ pos: 56.5,100.5
+ parent: 1
+ - uid: 27893
+ components:
+ - type: Transform
+ pos: 56.5,105.5
+ parent: 1
+ - uid: 27894
+ components:
+ - type: Transform
+ pos: 56.5,107.5
+ parent: 1
+ - uid: 27895
+ components:
+ - type: Transform
+ pos: 56.5,104.5
+ parent: 1
+ - uid: 27896
+ components:
+ - type: Transform
+ pos: 56.5,108.5
+ parent: 1
+ - uid: 27897
+ components:
+ - type: Transform
+ pos: 56.5,109.5
+ parent: 1
+ - uid: 27898
+ components:
+ - type: Transform
+ pos: 56.5,111.5
+ parent: 1
+ - uid: 27899
+ components:
+ - type: Transform
+ pos: 56.5,112.5
+ parent: 1
+ - uid: 27900
+ components:
+ - type: Transform
+ pos: 56.5,113.5
+ parent: 1
+ - uid: 27901
+ components:
+ - type: Transform
+ pos: 56.5,110.5
+ parent: 1
+ - uid: 27902
+ components:
+ - type: Transform
+ pos: 56.5,106.5
+ parent: 1
+ - uid: 27903
+ components:
+ - type: Transform
+ pos: 57.5,113.5
+ parent: 1
+ - uid: 27904
+ components:
+ - type: Transform
+ pos: 58.5,113.5
+ parent: 1
+ - uid: 27905
+ components:
+ - type: Transform
+ pos: 59.5,113.5
+ parent: 1
+ - uid: 27906
+ components:
+ - type: Transform
+ pos: 60.5,113.5
+ parent: 1
+ - uid: 27922
+ components:
+ - type: Transform
+ pos: 55.5,108.5
+ parent: 1
+ - uid: 27923
+ components:
+ - type: Transform
+ pos: 54.5,108.5
+ parent: 1
+ - uid: 27952
+ components:
+ - type: Transform
+ pos: 59.5,83.5
+ parent: 1
+ - uid: 27953
+ components:
+ - type: Transform
+ pos: 58.5,83.5
+ parent: 1
+ - uid: 27989
+ components:
+ - type: Transform
+ pos: 62.5,113.5
+ parent: 1
+ - uid: 27990
+ components:
+ - type: Transform
+ pos: 63.5,113.5
+ parent: 1
+ - uid: 27991
+ components:
+ - type: Transform
+ pos: 64.5,113.5
+ parent: 1
+ - uid: 27992
+ components:
+ - type: Transform
+ pos: 65.5,113.5
+ parent: 1
+ - uid: 27993
+ components:
+ - type: Transform
+ pos: 66.5,113.5
+ parent: 1
+ - uid: 27994
+ components:
+ - type: Transform
+ pos: 67.5,113.5
+ parent: 1
+ - uid: 27995
+ components:
+ - type: Transform
+ pos: 68.5,113.5
+ parent: 1
+ - uid: 27996
+ components:
+ - type: Transform
+ pos: 69.5,113.5
+ parent: 1
+ - uid: 27997
+ components:
+ - type: Transform
+ pos: 70.5,113.5
+ parent: 1
+ - uid: 27998
+ components:
+ - type: Transform
+ pos: 72.5,113.5
+ parent: 1
+ - uid: 27999
+ components:
+ - type: Transform
+ pos: 73.5,113.5
+ parent: 1
+ - uid: 28000
+ components:
+ - type: Transform
+ pos: 74.5,113.5
+ parent: 1
+ - uid: 28001
+ components:
+ - type: Transform
+ pos: 75.5,113.5
+ parent: 1
+ - uid: 28002
+ components:
+ - type: Transform
+ pos: 71.5,113.5
+ parent: 1
+ - uid: 28003
+ components:
+ - type: Transform
+ pos: 76.5,113.5
+ parent: 1
+ - uid: 28004
+ components:
+ - type: Transform
+ pos: 77.5,113.5
+ parent: 1
+ - uid: 28005
+ components:
+ - type: Transform
+ pos: 78.5,113.5
+ parent: 1
+ - uid: 28006
+ components:
+ - type: Transform
+ pos: 79.5,113.5
+ parent: 1
+ - uid: 28007
+ components:
+ - type: Transform
+ pos: 81.5,113.5
+ parent: 1
+ - uid: 28008
+ components:
+ - type: Transform
+ pos: 80.5,113.5
+ parent: 1
+ - uid: 28009
+ components:
+ - type: Transform
+ pos: 82.5,113.5
+ parent: 1
+ - uid: 28010
+ components:
+ - type: Transform
+ pos: 83.5,113.5
+ parent: 1
+ - uid: 28011
+ components:
+ - type: Transform
+ pos: 84.5,113.5
+ parent: 1
+ - uid: 28012
+ components:
+ - type: Transform
+ pos: 85.5,113.5
+ parent: 1
+ - uid: 28013
+ components:
+ - type: Transform
+ pos: 87.5,113.5
+ parent: 1
+ - uid: 28014
+ components:
+ - type: Transform
+ pos: 88.5,113.5
+ parent: 1
+ - uid: 28015
+ components:
+ - type: Transform
+ pos: 86.5,113.5
+ parent: 1
+ - uid: 28016
+ components:
+ - type: Transform
+ pos: 88.5,114.5
+ parent: 1
+ - uid: 28017
+ components:
+ - type: Transform
+ pos: 88.5,115.5
+ parent: 1
+ - uid: 28018
+ components:
+ - type: Transform
+ pos: 88.5,116.5
+ parent: 1
+ - uid: 28019
+ components:
+ - type: Transform
+ pos: 88.5,117.5
+ parent: 1
+ - uid: 28020
+ components:
+ - type: Transform
+ pos: 88.5,118.5
+ parent: 1
+ - uid: 28021
+ components:
+ - type: Transform
+ pos: 89.5,118.5
+ parent: 1
+ - uid: 28022
+ components:
+ - type: Transform
+ pos: 90.5,118.5
+ parent: 1
+ - uid: 28023
+ components:
+ - type: Transform
+ pos: 91.5,118.5
+ parent: 1
+ - uid: 28024
+ components:
+ - type: Transform
+ pos: 92.5,118.5
+ parent: 1
+ - uid: 28025
+ components:
+ - type: Transform
+ pos: 93.5,118.5
+ parent: 1
+ - uid: 28026
+ components:
+ - type: Transform
+ pos: 94.5,118.5
+ parent: 1
+ - uid: 28027
+ components:
+ - type: Transform
+ pos: 95.5,118.5
+ parent: 1
+ - uid: 28028
+ components:
+ - type: Transform
+ pos: 96.5,118.5
+ parent: 1
+ - uid: 28029
+ components:
+ - type: Transform
+ pos: 93.5,119.5
+ parent: 1
+ - uid: 28030
+ components:
+ - type: Transform
+ pos: 93.5,120.5
+ parent: 1
+ - uid: 28072
+ components:
+ - type: Transform
+ pos: 98.5,118.5
+ parent: 1
+ - uid: 28073
+ components:
+ - type: Transform
+ pos: 99.5,118.5
+ parent: 1
+ - uid: 28074
+ components:
+ - type: Transform
+ pos: 100.5,118.5
+ parent: 1
+ - uid: 28075
+ components:
+ - type: Transform
+ pos: 101.5,118.5
+ parent: 1
+ - uid: 28076
+ components:
+ - type: Transform
+ pos: 102.5,118.5
+ parent: 1
+ - uid: 28077
+ components:
+ - type: Transform
+ pos: 103.5,118.5
+ parent: 1
+ - uid: 28078
+ components:
+ - type: Transform
+ pos: 104.5,118.5
+ parent: 1
+ - uid: 28079
+ components:
+ - type: Transform
+ pos: 104.5,119.5
+ parent: 1
+ - uid: 28080
+ components:
+ - type: Transform
+ pos: 104.5,120.5
+ parent: 1
+ - uid: 28081
+ components:
+ - type: Transform
+ pos: 104.5,121.5
+ parent: 1
+ - uid: 28082
+ components:
+ - type: Transform
+ pos: 104.5,122.5
+ parent: 1
+ - uid: 28083
+ components:
+ - type: Transform
+ pos: 104.5,123.5
+ parent: 1
+ - uid: 28084
+ components:
+ - type: Transform
+ pos: 104.5,124.5
+ parent: 1
+ - uid: 28085
+ components:
+ - type: Transform
+ pos: 105.5,124.5
+ parent: 1
+ - uid: 28086
+ components:
+ - type: Transform
+ pos: 106.5,124.5
+ parent: 1
+ - uid: 28087
+ components:
+ - type: Transform
+ pos: 107.5,124.5
+ parent: 1
+ - uid: 28088
+ components:
+ - type: Transform
+ pos: 108.5,124.5
+ parent: 1
+ - uid: 28089
+ components:
+ - type: Transform
+ pos: 109.5,124.5
+ parent: 1
+ - uid: 28090
+ components:
+ - type: Transform
+ pos: 110.5,124.5
+ parent: 1
+ - uid: 28091
+ components:
+ - type: Transform
+ pos: 111.5,124.5
+ parent: 1
+ - uid: 28092
+ components:
+ - type: Transform
+ pos: 112.5,124.5
+ parent: 1
+ - uid: 28093
+ components:
+ - type: Transform
+ pos: 112.5,123.5
+ parent: 1
+ - uid: 28094
+ components:
+ - type: Transform
+ pos: 112.5,122.5
+ parent: 1
+ - uid: 28095
+ components:
+ - type: Transform
+ pos: 112.5,121.5
+ parent: 1
+ - uid: 28096
+ components:
+ - type: Transform
+ pos: 112.5,120.5
+ parent: 1
+ - uid: 28097
+ components:
+ - type: Transform
+ pos: 112.5,119.5
+ parent: 1
+ - uid: 28098
+ components:
+ - type: Transform
+ pos: 112.5,118.5
+ parent: 1
+ - uid: 28099
+ components:
+ - type: Transform
+ pos: 111.5,118.5
+ parent: 1
+ - uid: 28100
+ components:
+ - type: Transform
+ pos: 110.5,118.5
+ parent: 1
+ - uid: 28101
+ components:
+ - type: Transform
+ pos: 109.5,118.5
+ parent: 1
+ - uid: 28102
+ components:
+ - type: Transform
+ pos: 108.5,118.5
+ parent: 1
+ - uid: 28103
+ components:
+ - type: Transform
+ pos: 107.5,118.5
+ parent: 1
+ - uid: 28104
+ components:
+ - type: Transform
+ pos: 106.5,118.5
+ parent: 1
+ - uid: 28105
+ components:
+ - type: Transform
+ pos: 105.5,118.5
+ parent: 1
+ - uid: 28106
+ components:
+ - type: Transform
+ pos: 113.5,118.5
+ parent: 1
+ - uid: 28107
+ components:
+ - type: Transform
+ pos: 114.5,118.5
+ parent: 1
+ - uid: 28108
+ components:
+ - type: Transform
+ pos: 115.5,118.5
+ parent: 1
+ - uid: 28109
+ components:
+ - type: Transform
+ pos: 116.5,118.5
+ parent: 1
+ - uid: 28110
+ components:
+ - type: Transform
+ pos: 117.5,118.5
+ parent: 1
+ - uid: 28111
+ components:
+ - type: Transform
+ pos: 118.5,118.5
+ parent: 1
+ - uid: 28112
+ components:
+ - type: Transform
+ pos: 119.5,118.5
+ parent: 1
+ - uid: 28113
+ components:
+ - type: Transform
+ pos: 120.5,118.5
+ parent: 1
+ - uid: 28114
+ components:
+ - type: Transform
+ pos: 121.5,118.5
+ parent: 1
+ - uid: 28115
+ components:
+ - type: Transform
+ pos: 122.5,118.5
+ parent: 1
+ - uid: 28116
+ components:
+ - type: Transform
+ pos: 123.5,118.5
+ parent: 1
+ - uid: 28117
+ components:
+ - type: Transform
+ pos: 124.5,118.5
+ parent: 1
+ - uid: 28118
+ components:
+ - type: Transform
+ pos: 125.5,118.5
+ parent: 1
+ - uid: 28119
+ components:
+ - type: Transform
+ pos: 126.5,118.5
+ parent: 1
+ - uid: 28120
+ components:
+ - type: Transform
+ pos: 127.5,118.5
+ parent: 1
+ - uid: 28121
+ components:
+ - type: Transform
+ pos: 128.5,118.5
+ parent: 1
+ - uid: 28122
+ components:
+ - type: Transform
+ pos: 129.5,118.5
+ parent: 1
+ - uid: 28123
+ components:
+ - type: Transform
+ pos: 130.5,118.5
+ parent: 1
+ - uid: 28124
+ components:
+ - type: Transform
+ pos: 131.5,118.5
+ parent: 1
+ - uid: 28125
+ components:
+ - type: Transform
+ pos: 124.5,119.5
+ parent: 1
+ - uid: 28126
+ components:
+ - type: Transform
+ pos: 124.5,120.5
+ parent: 1
+ - uid: 28134
+ components:
+ - type: Transform
+ pos: 134.5,118.5
+ parent: 1
+ - uid: 28194
+ components:
+ - type: Transform
+ pos: 55.5,117.5
+ parent: 1
+ - uid: 28195
+ components:
+ - type: Transform
+ pos: 55.5,116.5
+ parent: 1
+ - uid: 28198
+ components:
+ - type: Transform
+ pos: 58.5,117.5
+ parent: 1
+ - uid: 28199
+ components:
+ - type: Transform
+ pos: 59.5,117.5
+ parent: 1
+ - uid: 28200
+ components:
+ - type: Transform
+ pos: 60.5,117.5
+ parent: 1
+ - uid: 28201
+ components:
+ - type: Transform
+ pos: 61.5,117.5
+ parent: 1
+ - uid: 28202
+ components:
+ - type: Transform
+ pos: 63.5,117.5
+ parent: 1
+ - uid: 28203
+ components:
+ - type: Transform
+ pos: 64.5,117.5
+ parent: 1
+ - uid: 28204
+ components:
+ - type: Transform
+ pos: 62.5,117.5
+ parent: 1
+ - uid: 28205
+ components:
+ - type: Transform
+ pos: 58.5,118.5
+ parent: 1
+ - uid: 28206
+ components:
+ - type: Transform
+ pos: 58.5,119.5
+ parent: 1
+ - uid: 28207
+ components:
+ - type: Transform
+ pos: 60.5,119.5
+ parent: 1
+ - uid: 28208
+ components:
+ - type: Transform
+ pos: 60.5,118.5
+ parent: 1
+ - uid: 28209
+ components:
+ - type: Transform
+ pos: 62.5,119.5
+ parent: 1
+ - uid: 28210
+ components:
+ - type: Transform
+ pos: 62.5,118.5
+ parent: 1
+ - uid: 28211
+ components:
+ - type: Transform
+ pos: 64.5,119.5
+ parent: 1
+ - uid: 28212
+ components:
+ - type: Transform
+ pos: 64.5,118.5
+ parent: 1
+ - uid: 28239
+ components:
+ - type: Transform
+ pos: 113.5,124.5
+ parent: 1
+ - uid: 28241
+ components:
+ - type: Transform
+ pos: 103.5,124.5
+ parent: 1
+ - uid: 28242
+ components:
+ - type: Transform
+ pos: 113.5,117.5
+ parent: 1
+ - uid: 28243
+ components:
+ - type: Transform
+ pos: 103.5,117.5
+ parent: 1
+ - uid: 28295
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 28296
+ components:
+ - type: Transform
+ pos: 133.5,115.5
+ parent: 1
+ - uid: 28297
+ components:
+ - type: Transform
+ pos: 134.5,115.5
+ parent: 1
+ - uid: 28298
+ components:
+ - type: Transform
+ pos: 135.5,115.5
+ parent: 1
+ - uid: 28299
+ components:
+ - type: Transform
+ pos: 136.5,115.5
+ parent: 1
+ - uid: 28300
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - uid: 28301
+ components:
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - uid: 28302
+ components:
+ - type: Transform
+ pos: 137.5,113.5
+ parent: 1
+ - uid: 28303
+ components:
+ - type: Transform
+ pos: 128.5,113.5
+ parent: 1
+ - uid: 28304
+ components:
+ - type: Transform
+ pos: 128.5,112.5
+ parent: 1
+ - uid: 28305
+ components:
+ - type: Transform
+ pos: 128.5,111.5
+ parent: 1
+ - uid: 28306
+ components:
+ - type: Transform
+ pos: 128.5,114.5
+ parent: 1
+ - uid: 28307
+ components:
+ - type: Transform
+ pos: 128.5,110.5
+ parent: 1
+ - uid: 28308
+ components:
+ - type: Transform
+ pos: 128.5,109.5
+ parent: 1
+ - uid: 28309
+ components:
+ - type: Transform
+ pos: 128.5,108.5
+ parent: 1
+ - uid: 28310
+ components:
+ - type: Transform
+ pos: 128.5,107.5
+ parent: 1
+ - uid: 28311
+ components:
+ - type: Transform
+ pos: 128.5,106.5
+ parent: 1
+ - uid: 28312
+ components:
+ - type: Transform
+ pos: 128.5,105.5
+ parent: 1
+ - uid: 28313
+ components:
+ - type: Transform
+ pos: 128.5,104.5
+ parent: 1
+ - uid: 28314
+ components:
+ - type: Transform
+ pos: 128.5,103.5
+ parent: 1
+ - uid: 28315
+ components:
+ - type: Transform
+ pos: 128.5,101.5
+ parent: 1
+ - uid: 28316
+ components:
+ - type: Transform
+ pos: 128.5,102.5
+ parent: 1
+ - uid: 28317
+ components:
+ - type: Transform
+ pos: 128.5,99.5
+ parent: 1
+ - uid: 28318
+ components:
+ - type: Transform
+ pos: 128.5,100.5
+ parent: 1
+ - uid: 28319
+ components:
+ - type: Transform
+ pos: 128.5,98.5
+ parent: 1
+ - uid: 28320
+ components:
+ - type: Transform
+ pos: 128.5,97.5
+ parent: 1
+ - uid: 28321
+ components:
+ - type: Transform
+ pos: 128.5,96.5
+ parent: 1
+ - uid: 28322
+ components:
+ - type: Transform
+ pos: 128.5,95.5
+ parent: 1
+ - uid: 28339
+ components:
+ - type: Transform
+ pos: 127.5,113.5
+ parent: 1
+ - uid: 28340
+ components:
+ - type: Transform
+ pos: 129.5,109.5
+ parent: 1
+ - uid: 28342
+ components:
+ - type: Transform
+ pos: 129.5,97.5
+ parent: 1
+ - uid: 28358
+ components:
+ - type: Transform
+ pos: 128.5,91.5
+ parent: 1
+ - uid: 28359
+ components:
+ - type: Transform
+ pos: 128.5,90.5
+ parent: 1
+ - uid: 28360
+ components:
+ - type: Transform
+ pos: 128.5,89.5
+ parent: 1
+ - uid: 28361
+ components:
+ - type: Transform
+ pos: 128.5,88.5
+ parent: 1
+ - uid: 28362
+ components:
+ - type: Transform
+ pos: 128.5,87.5
+ parent: 1
+ - uid: 28363
+ components:
+ - type: Transform
+ pos: 128.5,86.5
+ parent: 1
+ - uid: 28364
+ components:
+ - type: Transform
+ pos: 128.5,85.5
+ parent: 1
+ - uid: 28365
+ components:
+ - type: Transform
+ pos: 128.5,84.5
+ parent: 1
+ - uid: 28366
+ components:
+ - type: Transform
+ pos: 128.5,83.5
+ parent: 1
+ - uid: 28367
+ components:
+ - type: Transform
+ pos: 128.5,82.5
+ parent: 1
+ - uid: 28368
+ components:
+ - type: Transform
+ pos: 128.5,81.5
+ parent: 1
+ - uid: 28369
+ components:
+ - type: Transform
+ pos: 128.5,80.5
+ parent: 1
+ - uid: 28370
+ components:
+ - type: Transform
+ pos: 128.5,79.5
+ parent: 1
+ - uid: 28371
+ components:
+ - type: Transform
+ pos: 128.5,78.5
+ parent: 1
+ - uid: 28372
+ components:
+ - type: Transform
+ pos: 128.5,77.5
+ parent: 1
+ - uid: 28373
+ components:
+ - type: Transform
+ pos: 127.5,77.5
+ parent: 1
+ - uid: 28374
+ components:
+ - type: Transform
+ pos: 129.5,77.5
+ parent: 1
+ - uid: 28375
+ components:
+ - type: Transform
+ pos: 130.5,77.5
+ parent: 1
+ - uid: 28376
+ components:
+ - type: Transform
+ pos: 131.5,77.5
+ parent: 1
+ - uid: 28377
+ components:
+ - type: Transform
+ pos: 132.5,77.5
+ parent: 1
+ - uid: 28378
+ components:
+ - type: Transform
+ pos: 133.5,77.5
+ parent: 1
+ - uid: 28379
+ components:
+ - type: Transform
+ pos: 134.5,77.5
+ parent: 1
+ - uid: 28380
+ components:
+ - type: Transform
+ pos: 135.5,77.5
+ parent: 1
+ - uid: 28381
+ components:
+ - type: Transform
+ pos: 136.5,77.5
+ parent: 1
+ - uid: 28382
+ components:
+ - type: Transform
+ pos: 137.5,77.5
+ parent: 1
+ - uid: 28383
+ components:
+ - type: Transform
+ pos: 138.5,77.5
+ parent: 1
+ - uid: 28384
+ components:
+ - type: Transform
+ pos: 139.5,77.5
+ parent: 1
+ - uid: 28385
+ components:
+ - type: Transform
+ pos: 141.5,77.5
+ parent: 1
+ - uid: 28386
+ components:
+ - type: Transform
+ pos: 142.5,77.5
+ parent: 1
+ - uid: 28387
+ components:
+ - type: Transform
+ pos: 143.5,77.5
+ parent: 1
+ - uid: 28388
+ components:
+ - type: Transform
+ pos: 144.5,77.5
+ parent: 1
+ - uid: 28389
+ components:
+ - type: Transform
+ pos: 140.5,77.5
+ parent: 1
+ - uid: 28390
+ components:
+ - type: Transform
+ pos: 135.5,78.5
+ parent: 1
+ - uid: 28391
+ components:
+ - type: Transform
+ pos: 137.5,76.5
+ parent: 1
+ - uid: 28392
+ components:
+ - type: Transform
+ pos: 139.5,76.5
+ parent: 1
+ - uid: 28393
+ components:
+ - type: Transform
+ pos: 120.5,60.5
+ parent: 1
+ - uid: 28394
+ components:
+ - type: Transform
+ pos: 125.5,77.5
+ parent: 1
+ - uid: 28395
+ components:
+ - type: Transform
+ pos: 124.5,77.5
+ parent: 1
+ - uid: 28396
+ components:
+ - type: Transform
+ pos: 123.5,77.5
+ parent: 1
+ - uid: 28397
+ components:
+ - type: Transform
+ pos: 122.5,77.5
+ parent: 1
+ - uid: 28398
+ components:
+ - type: Transform
+ pos: 121.5,77.5
+ parent: 1
+ - uid: 28399
+ components:
+ - type: Transform
+ pos: 120.5,77.5
+ parent: 1
+ - uid: 28400
+ components:
+ - type: Transform
+ pos: 119.5,77.5
+ parent: 1
+ - uid: 28401
+ components:
+ - type: Transform
+ pos: 119.5,76.5
+ parent: 1
+ - uid: 28402
+ components:
+ - type: Transform
+ pos: 119.5,75.5
+ parent: 1
+ - uid: 28403
+ components:
+ - type: Transform
+ pos: 119.5,74.5
+ parent: 1
+ - uid: 28404
+ components:
+ - type: Transform
+ pos: 119.5,73.5
+ parent: 1
+ - uid: 28405
+ components:
+ - type: Transform
+ pos: 119.5,72.5
+ parent: 1
+ - uid: 28406
+ components:
+ - type: Transform
+ pos: 119.5,71.5
+ parent: 1
+ - uid: 28407
+ components:
+ - type: Transform
+ pos: 119.5,70.5
+ parent: 1
+ - uid: 28408
+ components:
+ - type: Transform
+ pos: 119.5,69.5
+ parent: 1
+ - uid: 28409
+ components:
+ - type: Transform
+ pos: 119.5,68.5
+ parent: 1
+ - uid: 28410
+ components:
+ - type: Transform
+ pos: 119.5,67.5
+ parent: 1
+ - uid: 28411
+ components:
+ - type: Transform
+ pos: 119.5,66.5
+ parent: 1
+ - uid: 28412
+ components:
+ - type: Transform
+ pos: 119.5,65.5
+ parent: 1
+ - uid: 28413
+ components:
+ - type: Transform
+ pos: 119.5,64.5
+ parent: 1
+ - uid: 28414
+ components:
+ - type: Transform
+ pos: 119.5,63.5
+ parent: 1
+ - uid: 28415
+ components:
+ - type: Transform
+ pos: 119.5,62.5
+ parent: 1
+ - uid: 28416
+ components:
+ - type: Transform
+ pos: 116.5,54.5
+ parent: 1
+ - uid: 28417
+ components:
+ - type: Transform
+ pos: 117.5,54.5
+ parent: 1
+ - uid: 28418
+ components:
+ - type: Transform
+ pos: 118.5,54.5
+ parent: 1
+ - uid: 28419
+ components:
+ - type: Transform
+ pos: 119.5,57.5
+ parent: 1
+ - uid: 28420
+ components:
+ - type: Transform
+ pos: 119.5,61.5
+ parent: 1
+ - uid: 28421
+ components:
+ - type: Transform
+ pos: 119.5,55.5
+ parent: 1
+ - uid: 28422
+ components:
+ - type: Transform
+ pos: 119.5,54.5
+ parent: 1
+ - uid: 28423
+ components:
+ - type: Transform
+ pos: 119.5,56.5
+ parent: 1
+ - uid: 28424
+ components:
+ - type: Transform
+ pos: 115.5,54.5
+ parent: 1
+ - uid: 28425
+ components:
+ - type: Transform
+ pos: 114.5,54.5
+ parent: 1
+ - uid: 28426
+ components:
+ - type: Transform
+ pos: 113.5,54.5
+ parent: 1
+ - uid: 28427
+ components:
+ - type: Transform
+ pos: 112.5,54.5
+ parent: 1
+ - uid: 28428
+ components:
+ - type: Transform
+ pos: 111.5,54.5
+ parent: 1
+ - uid: 28429
+ components:
+ - type: Transform
+ pos: 110.5,54.5
+ parent: 1
+ - uid: 28430
+ components:
+ - type: Transform
+ pos: 110.5,53.5
+ parent: 1
+ - uid: 28431
+ components:
+ - type: Transform
+ pos: 110.5,52.5
+ parent: 1
+ - uid: 28432
+ components:
+ - type: Transform
+ pos: 110.5,51.5
+ parent: 1
+ - uid: 28433
+ components:
+ - type: Transform
+ pos: 114.5,53.5
+ parent: 1
+ - uid: 28434
+ components:
+ - type: Transform
+ pos: 109.5,51.5
+ parent: 1
+ - uid: 28439
+ components:
+ - type: Transform
+ pos: 118.5,73.5
+ parent: 1
+ - uid: 28440
+ components:
+ - type: Transform
+ pos: 117.5,77.5
+ parent: 1
+ - uid: 28441
+ components:
+ - type: Transform
+ pos: 118.5,77.5
+ parent: 1
+ - uid: 28476
+ components:
+ - type: Transform
+ pos: 139.5,78.5
+ parent: 1
+ - uid: 28477
+ components:
+ - type: Transform
+ pos: 139.5,79.5
+ parent: 1
+ - uid: 28478
+ components:
+ - type: Transform
+ pos: 122.5,78.5
+ parent: 1
+ - uid: 28479
+ components:
+ - type: Transform
+ pos: 122.5,79.5
+ parent: 1
+ - uid: 28482
+ components:
+ - type: Transform
+ pos: 129.5,85.5
+ parent: 1
+ - uid: 28483
+ components:
+ - type: Transform
+ pos: 127.5,90.5
+ parent: 1
+ - uid: 28484
+ components:
+ - type: Transform
+ pos: 129.5,91.5
+ parent: 1
+ - uid: 28490
+ components:
+ - type: Transform
+ pos: 64.5,26.5
+ parent: 1
+ - uid: 28549
+ components:
+ - type: Transform
+ pos: 131.5,82.5
+ parent: 1
+ - uid: 28550
+ components:
+ - type: Transform
+ pos: 132.5,82.5
+ parent: 1
+ - uid: 28551
+ components:
+ - type: Transform
+ pos: 133.5,82.5
+ parent: 1
+ - uid: 28552
+ components:
+ - type: Transform
+ pos: 134.5,82.5
+ parent: 1
+ - uid: 28553
+ components:
+ - type: Transform
+ pos: 135.5,82.5
+ parent: 1
+ - uid: 28554
+ components:
+ - type: Transform
+ pos: 136.5,82.5
+ parent: 1
+ - uid: 28555
+ components:
+ - type: Transform
+ pos: 137.5,82.5
+ parent: 1
+ - uid: 28556
+ components:
+ - type: Transform
+ pos: 138.5,82.5
+ parent: 1
+ - uid: 28557
+ components:
+ - type: Transform
+ pos: 135.5,81.5
+ parent: 1
+ - uid: 28558
+ components:
+ - type: Transform
+ pos: 135.5,80.5
+ parent: 1
+ - uid: 28559
+ components:
+ - type: Transform
+ pos: 139.5,82.5
+ parent: 1
+ - uid: 28574
+ components:
+ - type: Transform
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 28666
+ components:
+ - type: Transform
+ pos: 114.5,51.5
+ parent: 1
+ - uid: 28667
+ components:
+ - type: Transform
+ pos: 114.5,50.5
+ parent: 1
+ - uid: 28668
+ components:
+ - type: Transform
+ pos: 114.5,49.5
+ parent: 1
+ - uid: 28669
+ components:
+ - type: Transform
+ pos: 114.5,48.5
+ parent: 1
+ - uid: 28670
+ components:
+ - type: Transform
+ pos: 120.5,50.5
+ parent: 1
+ - uid: 28671
+ components:
+ - type: Transform
+ pos: 119.5,50.5
+ parent: 1
+ - uid: 28672
+ components:
+ - type: Transform
+ pos: 118.5,50.5
+ parent: 1
+ - uid: 28673
+ components:
+ - type: Transform
+ pos: 117.5,50.5
+ parent: 1
+ - uid: 28674
+ components:
+ - type: Transform
+ pos: 115.5,50.5
+ parent: 1
+ - uid: 28675
+ components:
+ - type: Transform
+ pos: 116.5,50.5
+ parent: 1
+ - uid: 28676
+ components:
+ - type: Transform
+ pos: 118.5,49.5
+ parent: 1
+ - uid: 28677
+ components:
+ - type: Transform
+ pos: 118.5,48.5
+ parent: 1
+ - uid: 28678
+ components:
+ - type: Transform
+ pos: 118.5,47.5
+ parent: 1
+ - uid: 28696
+ components:
+ - type: Transform
+ pos: 117.5,46.5
+ parent: 1
+ - uid: 28697
+ components:
+ - type: Transform
+ pos: 117.5,47.5
+ parent: 1
+ - uid: 28700
+ components:
+ - type: Transform
+ pos: 118.5,45.5
+ parent: 1
+ - uid: 28701
+ components:
+ - type: Transform
+ pos: 117.5,45.5
+ parent: 1
+ - uid: 28702
+ components:
+ - type: Transform
+ pos: 116.5,45.5
+ parent: 1
+ - uid: 28703
+ components:
+ - type: Transform
+ pos: 115.5,45.5
+ parent: 1
+ - uid: 28704
+ components:
+ - type: Transform
+ pos: 114.5,45.5
+ parent: 1
+ - uid: 28705
+ components:
+ - type: Transform
+ pos: 113.5,45.5
+ parent: 1
+ - uid: 28706
+ components:
+ - type: Transform
+ pos: 119.5,45.5
+ parent: 1
+ - uid: 28707
+ components:
+ - type: Transform
+ pos: 120.5,45.5
+ parent: 1
+ - uid: 28708
+ components:
+ - type: Transform
+ pos: 120.5,44.5
+ parent: 1
+ - uid: 28709
+ components:
+ - type: Transform
+ pos: 121.5,44.5
+ parent: 1
+ - uid: 28710
+ components:
+ - type: Transform
+ pos: 122.5,44.5
+ parent: 1
+ - uid: 28711
+ components:
+ - type: Transform
+ pos: 123.5,44.5
+ parent: 1
+ - uid: 28712
+ components:
+ - type: Transform
+ pos: 124.5,44.5
+ parent: 1
+ - uid: 28713
+ components:
+ - type: Transform
+ pos: 124.5,43.5
+ parent: 1
+ - uid: 28748
+ components:
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 1
+ - uid: 28749
+ components:
+ - type: Transform
+ pos: 101.5,52.5
+ parent: 1
+ - uid: 28750
+ components:
+ - type: Transform
+ pos: 101.5,51.5
+ parent: 1
+ - uid: 28763
+ components:
+ - type: Transform
+ pos: 89.5,52.5
+ parent: 1
+ - uid: 28768
+ components:
+ - type: Transform
+ pos: 86.5,51.5
+ parent: 1
+ - uid: 28778
+ components:
+ - type: Transform
+ pos: 102.5,51.5
+ parent: 1
+ - uid: 28779
+ components:
+ - type: Transform
+ pos: 103.5,51.5
+ parent: 1
+ - uid: 28780
+ components:
+ - type: Transform
+ pos: 104.5,51.5
+ parent: 1
+ - uid: 28781
+ components:
+ - type: Transform
+ pos: 105.5,51.5
+ parent: 1
+ - uid: 28782
+ components:
+ - type: Transform
+ pos: 106.5,51.5
+ parent: 1
+ - uid: 28783
+ components:
+ - type: Transform
+ pos: 107.5,51.5
+ parent: 1
+ - uid: 28900
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 28924
+ components:
+ - type: Transform
+ pos: 104.5,64.5
+ parent: 1
+ - uid: 28970
+ components:
+ - type: Transform
+ pos: 73.5,64.5
+ parent: 1
+ - uid: 28971
+ components:
+ - type: Transform
+ pos: 74.5,64.5
+ parent: 1
+ - uid: 28972
+ components:
+ - type: Transform
+ pos: 75.5,64.5
+ parent: 1
+ - uid: 28973
+ components:
+ - type: Transform
+ pos: 76.5,64.5
+ parent: 1
+ - uid: 28974
+ components:
+ - type: Transform
+ pos: 77.5,64.5
+ parent: 1
+ - uid: 28975
+ components:
+ - type: Transform
+ pos: 78.5,64.5
+ parent: 1
+ - uid: 28976
+ components:
+ - type: Transform
+ pos: 79.5,64.5
+ parent: 1
+ - uid: 28977
+ components:
+ - type: Transform
+ pos: 76.5,63.5
+ parent: 1
+ - uid: 28978
+ components:
+ - type: Transform
+ pos: 78.5,63.5
+ parent: 1
+ - uid: 28979
+ components:
+ - type: Transform
+ pos: 80.5,64.5
+ parent: 1
+ - uid: 28980
+ components:
+ - type: Transform
+ pos: 82.5,64.5
+ parent: 1
+ - uid: 28981
+ components:
+ - type: Transform
+ pos: 83.5,64.5
+ parent: 1
+ - uid: 28982
+ components:
+ - type: Transform
+ pos: 84.5,64.5
+ parent: 1
+ - uid: 28983
+ components:
+ - type: Transform
+ pos: 85.5,64.5
+ parent: 1
+ - uid: 28984
+ components:
+ - type: Transform
+ pos: 81.5,64.5
+ parent: 1
+ - uid: 28987
+ components:
+ - type: Transform
+ pos: 86.5,64.5
+ parent: 1
+ - uid: 28988
+ components:
+ - type: Transform
+ pos: 87.5,64.5
+ parent: 1
+ - uid: 28989
+ components:
+ - type: Transform
+ pos: 88.5,64.5
+ parent: 1
+ - uid: 28990
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 1
+ - uid: 28991
+ components:
+ - type: Transform
+ pos: 90.5,64.5
+ parent: 1
+ - uid: 28992
+ components:
+ - type: Transform
+ pos: 91.5,64.5
+ parent: 1
+ - uid: 28993
+ components:
+ - type: Transform
+ pos: 92.5,64.5
+ parent: 1
+ - uid: 28994
+ components:
+ - type: Transform
+ pos: 93.5,64.5
+ parent: 1
+ - uid: 28995
+ components:
+ - type: Transform
+ pos: 91.5,63.5
+ parent: 1
+ - uid: 28996
+ components:
+ - type: Transform
+ pos: 93.5,65.5
+ parent: 1
+ - uid: 28997
+ components:
+ - type: Transform
+ pos: 93.5,66.5
+ parent: 1
+ - uid: 28998
+ components:
+ - type: Transform
+ pos: 93.5,67.5
+ parent: 1
+ - uid: 28999
+ components:
+ - type: Transform
+ pos: 93.5,68.5
+ parent: 1
+ - uid: 29000
+ components:
+ - type: Transform
+ pos: 93.5,69.5
+ parent: 1
+ - uid: 29001
+ components:
+ - type: Transform
+ pos: 93.5,70.5
+ parent: 1
+ - uid: 29002
+ components:
+ - type: Transform
+ pos: 93.5,71.5
+ parent: 1
+ - uid: 29003
+ components:
+ - type: Transform
+ pos: 93.5,72.5
+ parent: 1
+ - uid: 29004
+ components:
+ - type: Transform
+ pos: 93.5,73.5
+ parent: 1
+ - uid: 29005
+ components:
+ - type: Transform
+ pos: 93.5,74.5
+ parent: 1
+ - uid: 29006
+ components:
+ - type: Transform
+ pos: 93.5,75.5
+ parent: 1
+ - uid: 29007
+ components:
+ - type: Transform
+ pos: 93.5,76.5
+ parent: 1
+ - uid: 29008
+ components:
+ - type: Transform
+ pos: 93.5,78.5
+ parent: 1
+ - uid: 29009
+ components:
+ - type: Transform
+ pos: 93.5,77.5
+ parent: 1
+ - uid: 29010
+ components:
+ - type: Transform
+ pos: 94.5,77.5
+ parent: 1
+ - uid: 29011
+ components:
+ - type: Transform
+ pos: 95.5,77.5
+ parent: 1
+ - uid: 29012
+ components:
+ - type: Transform
+ pos: 94.5,73.5
+ parent: 1
+ - uid: 29013
+ components:
+ - type: Transform
+ pos: 92.5,73.5
+ parent: 1
+ - uid: 29014
+ components:
+ - type: Transform
+ pos: 91.5,73.5
+ parent: 1
+ - uid: 29018
+ components:
+ - type: Transform
+ pos: 128.5,117.5
+ parent: 1
+ - uid: 29019
+ components:
+ - type: Transform
+ pos: 121.5,112.5
+ parent: 1
+ - uid: 29020
+ components:
+ - type: Transform
+ pos: 121.5,113.5
+ parent: 1
+ - uid: 29021
+ components:
+ - type: Transform
+ pos: 121.5,114.5
+ parent: 1
+ - uid: 29022
+ components:
+ - type: Transform
+ pos: 121.5,111.5
+ parent: 1
+ - uid: 29023
+ components:
+ - type: Transform
+ pos: 122.5,114.5
+ parent: 1
+ - uid: 29024
+ components:
+ - type: Transform
+ pos: 124.5,114.5
+ parent: 1
+ - uid: 29025
+ components:
+ - type: Transform
+ pos: 123.5,114.5
+ parent: 1
+ - uid: 29026
+ components:
+ - type: Transform
+ pos: 121.5,109.5
+ parent: 1
+ - uid: 29027
+ components:
+ - type: Transform
+ pos: 121.5,108.5
+ parent: 1
+ - uid: 29028
+ components:
+ - type: Transform
+ pos: 121.5,107.5
+ parent: 1
+ - uid: 29257
+ components:
+ - type: Transform
+ pos: 137.5,118.5
+ parent: 1
+ - uid: 29258
+ components:
+ - type: Transform
+ pos: 139.5,118.5
+ parent: 1
+ - uid: 29259
+ components:
+ - type: Transform
+ pos: 140.5,118.5
+ parent: 1
+ - uid: 29260
+ components:
+ - type: Transform
+ pos: 141.5,118.5
+ parent: 1
+ - uid: 29261
+ components:
+ - type: Transform
+ pos: 142.5,118.5
+ parent: 1
+ - uid: 29262
+ components:
+ - type: Transform
+ pos: 138.5,118.5
+ parent: 1
+ - uid: 29263
+ components:
+ - type: Transform
+ pos: 142.5,117.5
+ parent: 1
+ - uid: 29265
+ components:
+ - type: Transform
+ pos: 138.5,119.5
+ parent: 1
+ - uid: 29266
+ components:
+ - type: Transform
+ pos: 143.5,118.5
+ parent: 1
+ - uid: 29267
+ components:
+ - type: Transform
+ pos: 144.5,118.5
+ parent: 1
+ - uid: 29268
+ components:
+ - type: Transform
+ pos: 145.5,118.5
+ parent: 1
+ - uid: 29269
+ components:
+ - type: Transform
+ pos: 144.5,119.5
+ parent: 1
+ - uid: 29270
+ components:
+ - type: Transform
+ pos: 146.5,118.5
+ parent: 1
+ - uid: 29271
+ components:
+ - type: Transform
+ pos: 147.5,118.5
+ parent: 1
+ - uid: 29272
+ components:
+ - type: Transform
+ pos: 148.5,118.5
+ parent: 1
+ - uid: 29273
+ components:
+ - type: Transform
+ pos: 149.5,118.5
+ parent: 1
+ - uid: 29274
+ components:
+ - type: Transform
+ pos: 150.5,118.5
+ parent: 1
+ - uid: 29275
+ components:
+ - type: Transform
+ pos: 151.5,118.5
+ parent: 1
+ - uid: 29276
+ components:
+ - type: Transform
+ pos: 152.5,118.5
+ parent: 1
+ - uid: 29277
+ components:
+ - type: Transform
+ pos: 154.5,118.5
+ parent: 1
+ - uid: 29278
+ components:
+ - type: Transform
+ pos: 155.5,118.5
+ parent: 1
+ - uid: 29279
+ components:
+ - type: Transform
+ pos: 153.5,118.5
+ parent: 1
+ - uid: 29280
+ components:
+ - type: Transform
+ pos: 156.5,118.5
+ parent: 1
+ - uid: 29281
+ components:
+ - type: Transform
+ pos: 157.5,118.5
+ parent: 1
+ - uid: 29282
+ components:
+ - type: Transform
+ pos: 157.5,117.5
+ parent: 1
+ - uid: 29283
+ components:
+ - type: Transform
+ pos: 158.5,118.5
+ parent: 1
+ - uid: 29284
+ components:
+ - type: Transform
+ pos: 159.5,118.5
+ parent: 1
+ - uid: 29285
+ components:
+ - type: Transform
+ pos: 160.5,118.5
+ parent: 1
+ - uid: 29286
+ components:
+ - type: Transform
+ pos: 158.5,119.5
+ parent: 1
+ - uid: 29287
+ components:
+ - type: Transform
+ pos: 155.5,119.5
+ parent: 1
+ - uid: 29288
+ components:
+ - type: Transform
+ pos: 152.5,119.5
+ parent: 1
+ - uid: 29289
+ components:
+ - type: Transform
+ pos: 149.5,119.5
+ parent: 1
+ - uid: 29290
+ components:
+ - type: Transform
+ pos: 149.5,120.5
+ parent: 1
+ - uid: 29291
+ components:
+ - type: Transform
+ pos: 149.5,121.5
+ parent: 1
+ - uid: 29292
+ components:
+ - type: Transform
+ pos: 149.5,122.5
+ parent: 1
+ - uid: 29293
+ components:
+ - type: Transform
+ pos: 149.5,123.5
+ parent: 1
+ - uid: 29294
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - uid: 29295
+ components:
+ - type: Transform
+ pos: 157.5,115.5
+ parent: 1
+ - uid: 29300
+ components:
+ - type: Transform
+ pos: 162.5,115.5
+ parent: 1
+ - uid: 29302
+ components:
+ - type: Transform
+ pos: 44.5,86.5
+ parent: 1
+ - uid: 29305
+ components:
+ - type: Transform
+ pos: 58.5,135.5
+ parent: 1
+ - uid: 29310
+ components:
+ - type: Transform
+ pos: 153.5,99.5
+ parent: 1
+ - uid: 29314
+ components:
+ - type: Transform
+ pos: 142.5,115.5
+ parent: 1
+ - uid: 29315
+ components:
+ - type: Transform
+ pos: 141.5,115.5
+ parent: 1
+ - uid: 29316
+ components:
+ - type: Transform
+ pos: 140.5,115.5
+ parent: 1
+ - uid: 29317
+ components:
+ - type: Transform
+ pos: 139.5,115.5
+ parent: 1
+ - uid: 29319
+ components:
+ - type: Transform
+ pos: 142.5,116.5
+ parent: 1
+ - uid: 29325
+ components:
+ - type: Transform
+ pos: 142.5,119.5
+ parent: 1
+ - uid: 29326
+ components:
+ - type: Transform
+ pos: 142.5,120.5
+ parent: 1
+ - uid: 29339
+ components:
+ - type: Transform
+ pos: 54.5,84.5
+ parent: 1
+ - uid: 29355
+ components:
+ - type: Transform
+ pos: 48.5,70.5
+ parent: 1
+ - uid: 29367
+ components:
+ - type: Transform
+ pos: 156.5,127.5
+ parent: 1
+ - uid: 29368
+ components:
+ - type: Transform
+ pos: 155.5,127.5
+ parent: 1
+ - uid: 29369
+ components:
+ - type: Transform
+ pos: 154.5,127.5
+ parent: 1
+ - uid: 29370
+ components:
+ - type: Transform
+ pos: 155.5,126.5
+ parent: 1
+ - uid: 29371
+ components:
+ - type: Transform
+ pos: 156.5,126.5
+ parent: 1
+ - uid: 29372
+ components:
+ - type: Transform
+ pos: 157.5,126.5
+ parent: 1
+ - uid: 29373
+ components:
+ - type: Transform
+ pos: 158.5,126.5
+ parent: 1
+ - uid: 29374
+ components:
+ - type: Transform
+ pos: 158.5,127.5
+ parent: 1
+ - uid: 29375
+ components:
+ - type: Transform
+ pos: 158.5,125.5
+ parent: 1
+ - uid: 29376
+ components:
+ - type: Transform
+ pos: 158.5,124.5
+ parent: 1
+ - uid: 29377
+ components:
+ - type: Transform
+ pos: 158.5,123.5
+ parent: 1
+ - uid: 29378
+ components:
+ - type: Transform
+ pos: 158.5,122.5
+ parent: 1
+ - uid: 29379
+ components:
+ - type: Transform
+ pos: 158.5,121.5
+ parent: 1
+ - uid: 29380
+ components:
+ - type: Transform
+ pos: 157.5,122.5
+ parent: 1
+ - uid: 29381
+ components:
+ - type: Transform
+ pos: 156.5,122.5
+ parent: 1
+ - uid: 29382
+ components:
+ - type: Transform
+ pos: 155.5,122.5
+ parent: 1
+ - uid: 29383
+ components:
+ - type: Transform
+ pos: 155.5,121.5
+ parent: 1
+ - uid: 29384
+ components:
+ - type: Transform
+ pos: 152.5,121.5
+ parent: 1
+ - uid: 29385
+ components:
+ - type: Transform
+ pos: 152.5,122.5
+ parent: 1
+ - uid: 29386
+ components:
+ - type: Transform
+ pos: 152.5,123.5
+ parent: 1
+ - uid: 29387
+ components:
+ - type: Transform
+ pos: 152.5,124.5
+ parent: 1
+ - uid: 29388
+ components:
+ - type: Transform
+ pos: 152.5,125.5
+ parent: 1
+ - uid: 29389
+ components:
+ - type: Transform
+ pos: 152.5,126.5
+ parent: 1
+ - uid: 29390
+ components:
+ - type: Transform
+ pos: 152.5,127.5
+ parent: 1
+ - uid: 29391
+ components:
+ - type: Transform
+ pos: 152.5,128.5
+ parent: 1
+ - uid: 29392
+ components:
+ - type: Transform
+ pos: 152.5,129.5
+ parent: 1
+ - uid: 29393
+ components:
+ - type: Transform
+ pos: 152.5,130.5
+ parent: 1
+ - uid: 29394
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - uid: 29399
+ components:
+ - type: Transform
+ pos: 157.5,130.5
+ parent: 1
+ - uid: 29400
+ components:
+ - type: Transform
+ pos: 158.5,130.5
+ parent: 1
+ - uid: 29401
+ components:
+ - type: Transform
+ pos: 159.5,130.5
+ parent: 1
+ - uid: 29405
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - uid: 29406
+ components:
+ - type: Transform
+ pos: 157.5,132.5
+ parent: 1
+ - uid: 29407
+ components:
+ - type: Transform
+ pos: 158.5,133.5
+ parent: 1
+ - uid: 29408
+ components:
+ - type: Transform
+ pos: 158.5,134.5
+ parent: 1
+ - uid: 29409
+ components:
+ - type: Transform
+ pos: 158.5,135.5
+ parent: 1
+ - uid: 29410
+ components:
+ - type: Transform
+ pos: 158.5,136.5
+ parent: 1
+ - uid: 29411
+ components:
+ - type: Transform
+ pos: 158.5,137.5
+ parent: 1
+ - uid: 29412
+ components:
+ - type: Transform
+ pos: 158.5,138.5
+ parent: 1
+ - uid: 29413
+ components:
+ - type: Transform
+ pos: 159.5,138.5
+ parent: 1
+ - uid: 29414
+ components:
+ - type: Transform
+ pos: 159.5,139.5
+ parent: 1
+ - uid: 29415
+ components:
+ - type: Transform
+ pos: 159.5,140.5
+ parent: 1
+ - uid: 29416
+ components:
+ - type: Transform
+ pos: 159.5,141.5
+ parent: 1
+ - uid: 29417
+ components:
+ - type: Transform
+ pos: 159.5,142.5
+ parent: 1
+ - uid: 29418
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+ - uid: 29419
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 29420
+ components:
+ - type: Transform
+ pos: 156.5,142.5
+ parent: 1
+ - uid: 29421
+ components:
+ - type: Transform
+ pos: 156.5,141.5
+ parent: 1
+ - uid: 29422
+ components:
+ - type: Transform
+ pos: 156.5,140.5
+ parent: 1
+ - uid: 29423
+ components:
+ - type: Transform
+ pos: 156.5,139.5
+ parent: 1
+ - uid: 29424
+ components:
+ - type: Transform
+ pos: 156.5,138.5
+ parent: 1
+ - uid: 29425
+ components:
+ - type: Transform
+ pos: 155.5,138.5
+ parent: 1
+ - uid: 29426
+ components:
+ - type: Transform
+ pos: 155.5,137.5
+ parent: 1
+ - uid: 29427
+ components:
+ - type: Transform
+ pos: 155.5,136.5
+ parent: 1
+ - uid: 29428
+ components:
+ - type: Transform
+ pos: 155.5,135.5
+ parent: 1
+ - uid: 29429
+ components:
+ - type: Transform
+ pos: 155.5,134.5
+ parent: 1
+ - uid: 29430
+ components:
+ - type: Transform
+ pos: 152.5,134.5
+ parent: 1
+ - uid: 29431
+ components:
+ - type: Transform
+ pos: 152.5,135.5
+ parent: 1
+ - uid: 29432
+ components:
+ - type: Transform
+ pos: 152.5,136.5
+ parent: 1
+ - uid: 29433
+ components:
+ - type: Transform
+ pos: 152.5,137.5
+ parent: 1
+ - uid: 29434
+ components:
+ - type: Transform
+ pos: 152.5,138.5
+ parent: 1
+ - uid: 29435
+ components:
+ - type: Transform
+ pos: 153.5,138.5
+ parent: 1
+ - uid: 29436
+ components:
+ - type: Transform
+ pos: 153.5,139.5
+ parent: 1
+ - uid: 29437
+ components:
+ - type: Transform
+ pos: 153.5,140.5
+ parent: 1
+ - uid: 29438
+ components:
+ - type: Transform
+ pos: 153.5,141.5
+ parent: 1
+ - uid: 29439
+ components:
+ - type: Transform
+ pos: 153.5,142.5
+ parent: 1
+ - uid: 29440
+ components:
+ - type: Transform
+ pos: 154.5,138.5
+ parent: 1
+ - uid: 29441
+ components:
+ - type: Transform
+ pos: 157.5,138.5
+ parent: 1
+ - uid: 29442
+ components:
+ - type: Transform
+ pos: 160.5,138.5
+ parent: 1
+ - uid: 29444
+ components:
+ - type: Transform
+ pos: 151.5,138.5
+ parent: 1
+ - uid: 29445
+ components:
+ - type: Transform
+ pos: 150.5,138.5
+ parent: 1
+ - uid: 29446
+ components:
+ - type: Transform
+ pos: 149.5,138.5
+ parent: 1
+ - uid: 29447
+ components:
+ - type: Transform
+ pos: 148.5,138.5
+ parent: 1
+ - uid: 29448
+ components:
+ - type: Transform
+ pos: 147.5,138.5
+ parent: 1
+ - uid: 29449
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - uid: 29450
+ components:
+ - type: Transform
+ pos: 145.5,138.5
+ parent: 1
+ - uid: 29451
+ components:
+ - type: Transform
+ pos: 149.5,141.5
+ parent: 1
+ - uid: 29452
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - uid: 29453
+ components:
+ - type: Transform
+ pos: 149.5,139.5
+ parent: 1
+ - uid: 29454
+ components:
+ - type: Transform
+ pos: 150.5,142.5
+ parent: 1
+ - uid: 29455
+ components:
+ - type: Transform
+ pos: 151.5,142.5
+ parent: 1
+ - uid: 29458
+ components:
+ - type: Transform
+ pos: 149.5,142.5
+ parent: 1
+ - uid: 29459
+ components:
+ - type: Transform
+ pos: 148.5,142.5
+ parent: 1
+ - uid: 29460
+ components:
+ - type: Transform
+ pos: 149.5,143.5
+ parent: 1
+ - uid: 29461
+ components:
+ - type: Transform
+ pos: 149.5,137.5
+ parent: 1
+ - uid: 29462
+ components:
+ - type: Transform
+ pos: 149.5,135.5
+ parent: 1
+ - uid: 29463
+ components:
+ - type: Transform
+ pos: 149.5,134.5
+ parent: 1
+ - uid: 29464
+ components:
+ - type: Transform
+ pos: 149.5,133.5
+ parent: 1
+ - uid: 29465
+ components:
+ - type: Transform
+ pos: 149.5,132.5
+ parent: 1
+ - uid: 29466
+ components:
+ - type: Transform
+ pos: 149.5,131.5
+ parent: 1
+ - uid: 29467
+ components:
+ - type: Transform
+ pos: 149.5,130.5
+ parent: 1
+ - uid: 29468
+ components:
+ - type: Transform
+ pos: 149.5,129.5
+ parent: 1
+ - uid: 29469
+ components:
+ - type: Transform
+ pos: 149.5,128.5
+ parent: 1
+ - uid: 29470
+ components:
+ - type: Transform
+ pos: 149.5,127.5
+ parent: 1
+ - uid: 29471
+ components:
+ - type: Transform
+ pos: 149.5,126.5
+ parent: 1
+ - uid: 29472
+ components:
+ - type: Transform
+ pos: 149.5,125.5
+ parent: 1
+ - uid: 29473
+ components:
+ - type: Transform
+ pos: 149.5,136.5
+ parent: 1
+ - uid: 29475
+ components:
+ - type: Transform
+ pos: 150.5,131.5
+ parent: 1
+ - uid: 29476
+ components:
+ - type: Transform
+ pos: 145.5,139.5
+ parent: 1
+ - uid: 29477
+ components:
+ - type: Transform
+ pos: 145.5,140.5
+ parent: 1
+ - uid: 29484
+ components:
+ - type: Transform
+ pos: 160.5,112.5
+ parent: 1
+ - uid: 29485
+ components:
+ - type: Transform
+ pos: 161.5,112.5
+ parent: 1
+ - uid: 29486
+ components:
+ - type: Transform
+ pos: 162.5,112.5
+ parent: 1
+ - uid: 29487
+ components:
+ - type: Transform
+ pos: 162.5,113.5
+ parent: 1
+ - uid: 29488
+ components:
+ - type: Transform
+ pos: 162.5,114.5
+ parent: 1
+ - uid: 29489
+ components:
+ - type: Transform
+ pos: 164.5,126.5
+ parent: 1
+ - uid: 29490
+ components:
+ - type: Transform
+ pos: 162.5,117.5
+ parent: 1
+ - uid: 29491
+ components:
+ - type: Transform
+ pos: 162.5,118.5
+ parent: 1
+ - uid: 29492
+ components:
+ - type: Transform
+ pos: 162.5,119.5
+ parent: 1
+ - uid: 29493
+ components:
+ - type: Transform
+ pos: 162.5,120.5
+ parent: 1
+ - uid: 29494
+ components:
+ - type: Transform
+ pos: 162.5,121.5
+ parent: 1
+ - uid: 29495
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 29496
+ components:
+ - type: Transform
+ pos: 161.5,130.5
+ parent: 1
+ - uid: 29497
+ components:
+ - type: Transform
+ pos: 161.5,129.5
+ parent: 1
+ - uid: 29498
+ components:
+ - type: Transform
+ pos: 161.5,128.5
+ parent: 1
+ - uid: 29499
+ components:
+ - type: Transform
+ pos: 161.5,127.5
+ parent: 1
+ - uid: 29500
+ components:
+ - type: Transform
+ pos: 161.5,126.5
+ parent: 1
+ - uid: 29501
+ components:
+ - type: Transform
+ pos: 161.5,125.5
+ parent: 1
+ - uid: 29502
+ components:
+ - type: Transform
+ pos: 161.5,124.5
+ parent: 1
+ - uid: 29503
+ components:
+ - type: Transform
+ pos: 161.5,123.5
+ parent: 1
+ - uid: 29506
+ components:
+ - type: Transform
+ pos: 163.5,126.5
+ parent: 1
+ - uid: 29507
+ components:
+ - type: Transform
+ pos: 163.5,127.5
+ parent: 1
+ - uid: 29508
+ components:
+ - type: Transform
+ pos: 163.5,128.5
+ parent: 1
+ - uid: 29509
+ components:
+ - type: Transform
+ pos: 163.5,129.5
+ parent: 1
+ - uid: 29510
+ components:
+ - type: Transform
+ pos: 163.5,130.5
+ parent: 1
+ - uid: 29512
+ components:
+ - type: Transform
+ pos: 161.5,131.5
+ parent: 1
+ - uid: 29525
+ components:
+ - type: Transform
+ pos: 162.5,143.5
+ parent: 1
+ - uid: 29526
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - uid: 29527
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - uid: 29528
+ components:
+ - type: Transform
+ pos: 161.5,145.5
+ parent: 1
+ - uid: 29529
+ components:
+ - type: Transform
+ pos: 159.5,145.5
+ parent: 1
+ - uid: 29532
+ components:
+ - type: Transform
+ pos: 160.5,145.5
+ parent: 1
+ - uid: 29536
+ components:
+ - type: Transform
+ pos: 44.5,70.5
+ parent: 1
+ - uid: 29538
+ components:
+ - type: Transform
+ pos: 151.5,145.5
+ parent: 1
+ - uid: 29539
+ components:
+ - type: Transform
+ pos: 150.5,145.5
+ parent: 1
+ - uid: 29540
+ components:
+ - type: Transform
+ pos: 149.5,145.5
+ parent: 1
+ - uid: 29541
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - uid: 29542
+ components:
+ - type: Transform
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 29543
+ components:
+ - type: Transform
+ pos: 159.5,148.5
+ parent: 1
+ - uid: 29544
+ components:
+ - type: Transform
+ pos: 159.5,149.5
+ parent: 1
+ - uid: 29589
+ components:
+ - type: Transform
+ pos: 80.5,131.5
+ parent: 1
+ - uid: 29660
+ components:
+ - type: Transform
+ pos: 144.5,121.5
+ parent: 1
+ - uid: 29661
+ components:
+ - type: Transform
+ pos: 144.5,122.5
+ parent: 1
+ - uid: 29662
+ components:
+ - type: Transform
+ pos: 144.5,123.5
+ parent: 1
+ - uid: 29663
+ components:
+ - type: Transform
+ pos: 144.5,124.5
+ parent: 1
+ - uid: 29664
+ components:
+ - type: Transform
+ pos: 144.5,125.5
+ parent: 1
+ - uid: 29666
+ components:
+ - type: Transform
+ pos: 144.5,128.5
+ parent: 1
+ - uid: 29667
+ components:
+ - type: Transform
+ pos: 145.5,128.5
+ parent: 1
+ - uid: 29668
+ components:
+ - type: Transform
+ pos: 143.5,128.5
+ parent: 1
+ - uid: 29669
+ components:
+ - type: Transform
+ pos: 145.5,127.5
+ parent: 1
+ - uid: 29853
+ components:
+ - type: Transform
+ pos: 155.5,148.5
+ parent: 1
+ - uid: 29869
+ components:
+ - type: Transform
+ pos: 153.5,148.5
+ parent: 1
+ - uid: 29870
+ components:
+ - type: Transform
+ pos: 152.5,148.5
+ parent: 1
+ - uid: 29871
+ components:
+ - type: Transform
+ pos: 151.5,148.5
+ parent: 1
+ - uid: 29873
+ components:
+ - type: Transform
+ pos: 149.5,148.5
+ parent: 1
+ - uid: 29874
+ components:
+ - type: Transform
+ pos: 148.5,148.5
+ parent: 1
+ - uid: 29875
+ components:
+ - type: Transform
+ pos: 147.5,148.5
+ parent: 1
+ - uid: 29876
+ components:
+ - type: Transform
+ pos: 146.5,148.5
+ parent: 1
+ - uid: 29877
+ components:
+ - type: Transform
+ pos: 145.5,148.5
+ parent: 1
+ - uid: 29878
+ components:
+ - type: Transform
+ pos: 144.5,148.5
+ parent: 1
+ - uid: 29879
+ components:
+ - type: Transform
+ pos: 143.5,148.5
+ parent: 1
+ - uid: 29880
+ components:
+ - type: Transform
+ pos: 142.5,148.5
+ parent: 1
+ - uid: 29881
+ components:
+ - type: Transform
+ pos: 141.5,148.5
+ parent: 1
+ - uid: 29882
+ components:
+ - type: Transform
+ pos: 140.5,148.5
+ parent: 1
+ - uid: 29883
+ components:
+ - type: Transform
+ pos: 139.5,148.5
+ parent: 1
+ - uid: 29884
+ components:
+ - type: Transform
+ pos: 139.5,147.5
+ parent: 1
+ - uid: 29886
+ components:
+ - type: Transform
+ pos: 139.5,149.5
+ parent: 1
+ - uid: 29887
+ components:
+ - type: Transform
+ pos: 139.5,150.5
+ parent: 1
+ - uid: 29888
+ components:
+ - type: Transform
+ pos: 139.5,151.5
+ parent: 1
+ - uid: 29889
+ components:
+ - type: Transform
+ pos: 139.5,152.5
+ parent: 1
+ - uid: 29890
+ components:
+ - type: Transform
+ pos: 140.5,152.5
+ parent: 1
+ - uid: 29891
+ components:
+ - type: Transform
+ pos: 141.5,152.5
+ parent: 1
+ - uid: 29892
+ components:
+ - type: Transform
+ pos: 142.5,152.5
+ parent: 1
+ - uid: 29893
+ components:
+ - type: Transform
+ pos: 143.5,152.5
+ parent: 1
+ - uid: 29894
+ components:
+ - type: Transform
+ pos: 144.5,152.5
+ parent: 1
+ - uid: 29895
+ components:
+ - type: Transform
+ pos: 145.5,152.5
+ parent: 1
+ - uid: 29896
+ components:
+ - type: Transform
+ pos: 146.5,152.5
+ parent: 1
+ - uid: 29897
+ components:
+ - type: Transform
+ pos: 147.5,152.5
+ parent: 1
+ - uid: 29898
+ components:
+ - type: Transform
+ pos: 148.5,152.5
+ parent: 1
+ - uid: 29899
+ components:
+ - type: Transform
+ pos: 149.5,152.5
+ parent: 1
+ - uid: 29901
+ components:
+ - type: Transform
+ pos: 151.5,152.5
+ parent: 1
+ - uid: 29902
+ components:
+ - type: Transform
+ pos: 152.5,152.5
+ parent: 1
+ - uid: 29903
+ components:
+ - type: Transform
+ pos: 152.5,151.5
+ parent: 1
+ - uid: 29904
+ components:
+ - type: Transform
+ pos: 152.5,150.5
+ parent: 1
+ - uid: 29905
+ components:
+ - type: Transform
+ pos: 152.5,149.5
+ parent: 1
+ - uid: 29906
+ components:
+ - type: Transform
+ pos: 149.5,153.5
+ parent: 1
+ - uid: 29907
+ components:
+ - type: Transform
+ pos: 149.5,154.5
+ parent: 1
+ - uid: 29908
+ components:
+ - type: Transform
+ pos: 149.5,155.5
+ parent: 1
+ - uid: 29909
+ components:
+ - type: Transform
+ pos: 149.5,156.5
+ parent: 1
+ - uid: 29910
+ components:
+ - type: Transform
+ pos: 151.5,153.5
+ parent: 1
+ - uid: 29911
+ components:
+ - type: Transform
+ pos: 151.5,155.5
+ parent: 1
+ - uid: 29912
+ components:
+ - type: Transform
+ pos: 151.5,156.5
+ parent: 1
+ - uid: 29913
+ components:
+ - type: Transform
+ pos: 151.5,154.5
+ parent: 1
+ - uid: 29914
+ components:
+ - type: Transform
+ pos: 143.5,153.5
+ parent: 1
+ - uid: 29915
+ components:
+ - type: Transform
+ pos: 143.5,155.5
+ parent: 1
+ - uid: 29916
+ components:
+ - type: Transform
+ pos: 143.5,156.5
+ parent: 1
+ - uid: 29917
+ components:
+ - type: Transform
+ pos: 143.5,154.5
+ parent: 1
+ - uid: 29918
+ components:
+ - type: Transform
+ pos: 141.5,153.5
+ parent: 1
+ - uid: 29919
+ components:
+ - type: Transform
+ pos: 141.5,154.5
+ parent: 1
+ - uid: 29920
+ components:
+ - type: Transform
+ pos: 141.5,155.5
+ parent: 1
+ - uid: 29921
+ components:
+ - type: Transform
+ pos: 141.5,156.5
+ parent: 1
+ - uid: 29922
+ components:
+ - type: Transform
+ pos: 138.5,151.5
+ parent: 1
+ - uid: 29923
+ components:
+ - type: Transform
+ pos: 145.5,147.5
+ parent: 1
+ - uid: 29924
+ components:
+ - type: Transform
+ pos: 145.5,146.5
+ parent: 1
+ - uid: 29925
+ components:
+ - type: Transform
+ pos: 145.5,145.5
+ parent: 1
+ - uid: 29926
+ components:
+ - type: Transform
+ pos: 145.5,144.5
+ parent: 1
+ - uid: 29927
+ components:
+ - type: Transform
+ pos: 145.5,143.5
+ parent: 1
+ - uid: 29928
+ components:
+ - type: Transform
+ pos: 145.5,142.5
+ parent: 1
+ - uid: 29931
+ components:
+ - type: Transform
+ pos: 157.5,154.5
+ parent: 1
+ - uid: 29937
+ components:
+ - type: Transform
+ pos: 154.5,152.5
+ parent: 1
+ - uid: 29938
+ components:
+ - type: Transform
+ pos: 156.5,154.5
+ parent: 1
+ - uid: 29971
+ components:
+ - type: Transform
+ pos: 139.5,141.5
+ parent: 1
+ - uid: 29972
+ components:
+ - type: Transform
+ pos: 139.5,140.5
+ parent: 1
+ - uid: 29973
+ components:
+ - type: Transform
+ pos: 141.5,141.5
+ parent: 1
+ - uid: 29974
+ components:
+ - type: Transform
+ pos: 140.5,141.5
+ parent: 1
+ - uid: 29975
+ components:
+ - type: Transform
+ pos: 141.5,140.5
+ parent: 1
+ - uid: 29976
+ components:
+ - type: Transform
+ pos: 141.5,138.5
+ parent: 1
+ - uid: 29977
+ components:
+ - type: Transform
+ pos: 141.5,137.5
+ parent: 1
+ - uid: 29978
+ components:
+ - type: Transform
+ pos: 141.5,139.5
+ parent: 1
+ - uid: 29979
+ components:
+ - type: Transform
+ pos: 140.5,137.5
+ parent: 1
+ - uid: 29980
+ components:
+ - type: Transform
+ pos: 138.5,141.5
+ parent: 1
+ - uid: 29981
+ components:
+ - type: Transform
+ pos: 137.5,141.5
+ parent: 1
+ - uid: 29986
+ components:
+ - type: Transform
+ pos: 138.5,144.5
+ parent: 1
+ - uid: 29987
+ components:
+ - type: Transform
+ pos: 139.5,144.5
+ parent: 1
+ - uid: 29988
+ components:
+ - type: Transform
+ pos: 140.5,144.5
+ parent: 1
+ - uid: 29989
+ components:
+ - type: Transform
+ pos: 141.5,144.5
+ parent: 1
+ - uid: 29990
+ components:
+ - type: Transform
+ pos: 142.5,144.5
+ parent: 1
+ - uid: 30003
+ components:
+ - type: Transform
+ pos: 143.5,131.5
+ parent: 1
+ - uid: 30004
+ components:
+ - type: Transform
+ pos: 144.5,131.5
+ parent: 1
+ - uid: 30005
+ components:
+ - type: Transform
+ pos: 145.5,131.5
+ parent: 1
+ - uid: 30006
+ components:
+ - type: Transform
+ pos: 146.5,131.5
+ parent: 1
+ - uid: 30007
+ components:
+ - type: Transform
+ pos: 144.5,132.5
+ parent: 1
+ - uid: 30008
+ components:
+ - type: Transform
+ pos: 144.5,133.5
+ parent: 1
+ - uid: 30009
+ components:
+ - type: Transform
+ pos: 143.5,133.5
+ parent: 1
+ - uid: 30010
+ components:
+ - type: Transform
+ pos: 142.5,133.5
+ parent: 1
+ - uid: 30014
+ components:
+ - type: Transform
+ pos: 154.5,148.5
+ parent: 1
+ - uid: 30111
+ components:
+ - type: Transform
+ pos: 156.5,148.5
+ parent: 1
+ - uid: 30117
+ components:
+ - type: Transform
+ pos: 154.5,151.5
+ parent: 1
+ - uid: 30118
+ components:
+ - type: Transform
+ pos: 156.5,151.5
+ parent: 1
+ - uid: 30119
+ components:
+ - type: Transform
+ pos: 156.5,152.5
+ parent: 1
+ - uid: 30120
+ components:
+ - type: Transform
+ pos: 156.5,153.5
+ parent: 1
+ - uid: 30133
+ components:
+ - type: Transform
+ pos: 144.5,144.5
+ parent: 1
+ - uid: 30160
+ components:
+ - type: Transform
+ pos: 136.5,144.5
+ parent: 1
+ - uid: 30186
+ components:
+ - type: Transform
+ pos: 139.5,145.5
+ parent: 1
+ - uid: 30194
+ components:
+ - type: Transform
+ pos: 155.5,151.5
+ parent: 1
+ - uid: 30195
+ components:
+ - type: Transform
+ pos: 137.5,144.5
+ parent: 1
+ - uid: 30210
+ components:
+ - type: Transform
+ pos: 163.5,143.5
+ parent: 1
+ - uid: 30224
+ components:
+ - type: Transform
+ pos: 81.5,133.5
+ parent: 1
+ - uid: 30257
+ components:
+ - type: Transform
+ pos: 78.5,145.5
+ parent: 1
+ - uid: 30260
+ components:
+ - type: Transform
+ pos: 78.5,148.5
+ parent: 1
+ - uid: 30269
+ components:
+ - type: Transform
+ pos: 81.5,130.5
+ parent: 1
+ - uid: 30293
+ components:
+ - type: Transform
+ pos: 61.5,158.5
+ parent: 1
+ - uid: 30366
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 1
+ - uid: 30423
+ components:
+ - type: Transform
+ pos: 21.5,100.5
+ parent: 1
+ - uid: 30477
+ components:
+ - type: Transform
+ pos: 137.5,151.5
+ parent: 1
+ - uid: 30478
+ components:
+ - type: Transform
+ pos: 136.5,151.5
+ parent: 1
+ - uid: 30479
+ components:
+ - type: Transform
+ pos: 135.5,151.5
+ parent: 1
+ - uid: 30480
+ components:
+ - type: Transform
+ pos: 133.5,151.5
+ parent: 1
+ - uid: 30481
+ components:
+ - type: Transform
+ pos: 134.5,151.5
+ parent: 1
+ - uid: 30482
+ components:
+ - type: Transform
+ pos: 134.5,150.5
+ parent: 1
+ - uid: 30483
+ components:
+ - type: Transform
+ pos: 132.5,149.5
+ parent: 1
+ - uid: 30484
+ components:
+ - type: Transform
+ pos: 132.5,148.5
+ parent: 1
+ - uid: 30485
+ components:
+ - type: Transform
+ pos: 133.5,148.5
+ parent: 1
+ - uid: 30486
+ components:
+ - type: Transform
+ pos: 134.5,148.5
+ parent: 1
+ - uid: 30487
+ components:
+ - type: Transform
+ pos: 131.5,148.5
+ parent: 1
+ - uid: 30488
+ components:
+ - type: Transform
+ pos: 134.5,147.5
+ parent: 1
+ - uid: 30489
+ components:
+ - type: Transform
+ pos: 134.5,146.5
+ parent: 1
+ - uid: 30490
+ components:
+ - type: Transform
+ pos: 134.5,145.5
+ parent: 1
+ - uid: 30491
+ components:
+ - type: Transform
+ pos: 134.5,144.5
+ parent: 1
+ - uid: 30492
+ components:
+ - type: Transform
+ pos: 135.5,147.5
+ parent: 1
+ - uid: 30493
+ components:
+ - type: Transform
+ pos: 136.5,147.5
+ parent: 1
+ - uid: 30494
+ components:
+ - type: Transform
+ pos: 130.5,148.5
+ parent: 1
+ - uid: 30495
+ components:
+ - type: Transform
+ pos: 129.5,148.5
+ parent: 1
+ - uid: 30496
+ components:
+ - type: Transform
+ pos: 128.5,148.5
+ parent: 1
+ - uid: 30497
+ components:
+ - type: Transform
+ pos: 127.5,148.5
+ parent: 1
+ - uid: 30498
+ components:
+ - type: Transform
+ pos: 126.5,148.5
+ parent: 1
+ - uid: 30499
+ components:
+ - type: Transform
+ pos: 125.5,148.5
+ parent: 1
+ - uid: 30500
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - uid: 30501
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - uid: 30502
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - uid: 30503
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - uid: 30504
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - uid: 30505
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - uid: 30506
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - uid: 30507
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - uid: 30508
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - uid: 30513
+ components:
+ - type: Transform
+ pos: 129.5,149.5
+ parent: 1
+ - uid: 30514
+ components:
+ - type: Transform
+ pos: 129.5,150.5
+ parent: 1
+ - uid: 30518
+ components:
+ - type: Transform
+ pos: 127.5,152.5
+ parent: 1
+ - uid: 30519
+ components:
+ - type: Transform
+ pos: 126.5,152.5
+ parent: 1
+ - uid: 30520
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - uid: 30529
+ components:
+ - type: Transform
+ pos: 121.5,164.5
+ parent: 1
+ - uid: 30531
+ components:
+ - type: Transform
+ pos: 120.5,164.5
+ parent: 1
+ - uid: 30532
+ components:
+ - type: Transform
+ pos: 119.5,164.5
+ parent: 1
+ - uid: 30533
+ components:
+ - type: Transform
+ pos: 118.5,164.5
+ parent: 1
+ - uid: 30534
+ components:
+ - type: Transform
+ pos: 117.5,164.5
+ parent: 1
+ - uid: 30535
+ components:
+ - type: Transform
+ pos: 116.5,164.5
+ parent: 1
+ - uid: 30550
+ components:
+ - type: Transform
+ pos: 162.5,122.5
+ parent: 1
+ - uid: 30664
+ components:
+ - type: Transform
+ pos: 47.5,75.5
+ parent: 1
+ - uid: 30672
+ components:
+ - type: Transform
+ pos: 70.5,158.5
+ parent: 1
+ - uid: 30673
+ components:
+ - type: Transform
+ pos: 67.5,160.5
+ parent: 1
+ - uid: 30674
+ components:
+ - type: Transform
+ pos: 69.5,158.5
+ parent: 1
+ - uid: 30685
+ components:
+ - type: Transform
+ pos: 67.5,157.5
+ parent: 1
+ - uid: 30695
+ components:
+ - type: Transform
+ pos: 66.5,116.5
+ parent: 1
+ - uid: 30696
+ components:
+ - type: Transform
+ pos: 66.5,117.5
+ parent: 1
+ - uid: 30697
+ components:
+ - type: Transform
+ pos: 66.5,118.5
+ parent: 1
+ - uid: 30698
+ components:
+ - type: Transform
+ pos: 66.5,119.5
+ parent: 1
+ - uid: 30699
+ components:
+ - type: Transform
+ pos: 66.5,120.5
+ parent: 1
+ - uid: 30700
+ components:
+ - type: Transform
+ pos: 66.5,121.5
+ parent: 1
+ - uid: 30701
+ components:
+ - type: Transform
+ pos: 65.5,121.5
+ parent: 1
+ - uid: 30702
+ components:
+ - type: Transform
+ pos: 63.5,121.5
+ parent: 1
+ - uid: 30703
+ components:
+ - type: Transform
+ pos: 62.5,121.5
+ parent: 1
+ - uid: 30704
+ components:
+ - type: Transform
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 30705
+ components:
+ - type: Transform
+ pos: 64.5,121.5
+ parent: 1
+ - uid: 30706
+ components:
+ - type: Transform
+ pos: 61.5,122.5
+ parent: 1
+ - uid: 30707
+ components:
+ - type: Transform
+ pos: 61.5,123.5
+ parent: 1
+ - uid: 30708
+ components:
+ - type: Transform
+ pos: 61.5,124.5
+ parent: 1
+ - uid: 30709
+ components:
+ - type: Transform
+ pos: 61.5,125.5
+ parent: 1
+ - uid: 30710
+ components:
+ - type: Transform
+ pos: 61.5,126.5
+ parent: 1
+ - uid: 30711
+ components:
+ - type: Transform
+ pos: 60.5,126.5
+ parent: 1
+ - uid: 30712
+ components:
+ - type: Transform
+ pos: 60.5,127.5
+ parent: 1
+ - uid: 30713
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - uid: 30714
+ components:
+ - type: Transform
+ pos: 60.5,129.5
+ parent: 1
+ - uid: 30715
+ components:
+ - type: Transform
+ pos: 60.5,130.5
+ parent: 1
+ - uid: 30716
+ components:
+ - type: Transform
+ pos: 59.5,130.5
+ parent: 1
+ - uid: 30720
+ components:
+ - type: Transform
+ pos: 137.5,143.5
+ parent: 1
+ - uid: 30723
+ components:
+ - type: Transform
+ pos: 58.5,136.5
+ parent: 1
+ - uid: 30724
+ components:
+ - type: Transform
+ pos: 58.5,137.5
+ parent: 1
+ - uid: 30725
+ components:
+ - type: Transform
+ pos: 58.5,138.5
+ parent: 1
+ - uid: 30726
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - uid: 30736
+ components:
+ - type: Transform
+ pos: 59.5,148.5
+ parent: 1
+ - uid: 30737
+ components:
+ - type: Transform
+ pos: 60.5,148.5
+ parent: 1
+ - uid: 30738
+ components:
+ - type: Transform
+ pos: 60.5,149.5
+ parent: 1
+ - uid: 30739
+ components:
+ - type: Transform
+ pos: 60.5,150.5
+ parent: 1
+ - uid: 30740
+ components:
+ - type: Transform
+ pos: 60.5,151.5
+ parent: 1
+ - uid: 30741
+ components:
+ - type: Transform
+ pos: 60.5,152.5
+ parent: 1
+ - uid: 30742
+ components:
+ - type: Transform
+ pos: 61.5,152.5
+ parent: 1
+ - uid: 30743
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - uid: 30744
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - uid: 30745
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - uid: 30746
+ components:
+ - type: Transform
+ pos: 61.5,157.5
+ parent: 1
+ - uid: 30747
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - uid: 30748
+ components:
+ - type: Transform
+ pos: 62.5,157.5
+ parent: 1
+ - uid: 30752
+ components:
+ - type: Transform
+ pos: 67.5,158.5
+ parent: 1
+ - uid: 30754
+ components:
+ - type: Transform
+ pos: 61.5,160.5
+ parent: 1
+ - uid: 30755
+ components:
+ - type: Transform
+ pos: 61.5,161.5
+ parent: 1
+ - uid: 30756
+ components:
+ - type: Transform
+ pos: 61.5,159.5
+ parent: 1
+ - uid: 30757
+ components:
+ - type: Transform
+ pos: 62.5,161.5
+ parent: 1
+ - uid: 30758
+ components:
+ - type: Transform
+ pos: 63.5,161.5
+ parent: 1
+ - uid: 30759
+ components:
+ - type: Transform
+ pos: 64.5,161.5
+ parent: 1
+ - uid: 30760
+ components:
+ - type: Transform
+ pos: 65.5,161.5
+ parent: 1
+ - uid: 30761
+ components:
+ - type: Transform
+ pos: 66.5,161.5
+ parent: 1
+ - uid: 30762
+ components:
+ - type: Transform
+ pos: 67.5,161.5
+ parent: 1
+ - uid: 30764
+ components:
+ - type: Transform
+ pos: 69.5,161.5
+ parent: 1
+ - uid: 30765
+ components:
+ - type: Transform
+ pos: 69.5,162.5
+ parent: 1
+ - uid: 30766
+ components:
+ - type: Transform
+ pos: 69.5,160.5
+ parent: 1
+ - uid: 30768
+ components:
+ - type: Transform
+ pos: 59.5,152.5
+ parent: 1
+ - uid: 30769
+ components:
+ - type: Transform
+ pos: 58.5,152.5
+ parent: 1
+ - uid: 30770
+ components:
+ - type: Transform
+ pos: 58.5,153.5
+ parent: 1
+ - uid: 30771
+ components:
+ - type: Transform
+ pos: 58.5,154.5
+ parent: 1
+ - uid: 30772
+ components:
+ - type: Transform
+ pos: 58.5,155.5
+ parent: 1
+ - uid: 30773
+ components:
+ - type: Transform
+ pos: 58.5,156.5
+ parent: 1
+ - uid: 30774
+ components:
+ - type: Transform
+ pos: 58.5,157.5
+ parent: 1
+ - uid: 30775
+ components:
+ - type: Transform
+ pos: 58.5,158.5
+ parent: 1
+ - uid: 30776
+ components:
+ - type: Transform
+ pos: 57.5,139.5
+ parent: 1
+ - uid: 30778
+ components:
+ - type: Transform
+ pos: 54.5,139.5
+ parent: 1
+ - uid: 30779
+ components:
+ - type: Transform
+ pos: 53.5,139.5
+ parent: 1
+ - uid: 30780
+ components:
+ - type: Transform
+ pos: 56.5,139.5
+ parent: 1
+ - uid: 30792
+ components:
+ - type: Transform
+ pos: 21.5,112.5
+ parent: 1
+ - uid: 30833
+ components:
+ - type: Transform
+ pos: 71.5,158.5
+ parent: 1
+ - uid: 30849
+ components:
+ - type: Transform
+ pos: 106.5,46.5
+ parent: 1
+ - uid: 30860
+ components:
+ - type: Transform
+ pos: 106.5,48.5
+ parent: 1
+ - uid: 30871
+ components:
+ - type: Transform
+ pos: 60.5,131.5
+ parent: 1
+ - uid: 31803
+ components:
+ - type: Transform
+ pos: 96.5,88.5
+ parent: 1
+ - uid: 31835
+ components:
+ - type: Transform
+ pos: 87.5,61.5
+ parent: 1
+ - uid: 31841
+ components:
+ - type: Transform
+ pos: 88.5,60.5
+ parent: 1
+ - uid: 31939
+ components:
+ - type: Transform
+ pos: 52.5,50.5
+ parent: 1
+ - uid: 31955
+ components:
+ - type: Transform
+ pos: 71.5,80.5
+ parent: 1
+ - uid: 31957
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - uid: 31958
+ components:
+ - type: Transform
+ pos: 73.5,80.5
+ parent: 1
+ - uid: 31959
+ components:
+ - type: Transform
+ pos: 74.5,80.5
+ parent: 1
+ - uid: 31960
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 1
+ - uid: 31961
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 31962
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 1
+ - uid: 31963
+ components:
+ - type: Transform
+ pos: 77.5,81.5
+ parent: 1
+ - uid: 31964
+ components:
+ - type: Transform
+ pos: 77.5,82.5
+ parent: 1
+ - uid: 31965
+ components:
+ - type: Transform
+ pos: 77.5,83.5
+ parent: 1
+ - uid: 31966
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 31967
+ components:
+ - type: Transform
+ pos: 74.5,82.5
+ parent: 1
+ - uid: 31968
+ components:
+ - type: Transform
+ pos: 74.5,83.5
+ parent: 1
+ - uid: 32058
+ components:
+ - type: Transform
+ pos: 162.5,123.5
+ parent: 1
+ - uid: 32086
+ components:
+ - type: Transform
+ pos: 77.5,116.5
+ parent: 1
+ - uid: 32167
+ components:
+ - type: Transform
+ pos: 19.5,115.5
+ parent: 1
+ - uid: 32216
+ components:
+ - type: Transform
+ pos: 20.5,115.5
+ parent: 1
+ - uid: 32240
+ components:
+ - type: Transform
+ pos: 22.5,112.5
+ parent: 1
+ - uid: 32241
+ components:
+ - type: Transform
+ pos: 147.5,86.5
+ parent: 1
+ - uid: 32246
+ components:
+ - type: Transform
+ pos: 64.5,46.5
+ parent: 1
+ - uid: 32249
+ components:
+ - type: Transform
+ pos: 64.5,47.5
+ parent: 1
+ - uid: 32250
+ components:
+ - type: Transform
+ pos: 64.5,48.5
+ parent: 1
+ - uid: 32251
+ components:
+ - type: Transform
+ pos: 64.5,49.5
+ parent: 1
+ - uid: 32270
+ components:
+ - type: Transform
+ pos: 63.5,46.5
+ parent: 1
+ - uid: 32271
+ components:
+ - type: Transform
+ pos: 62.5,46.5
+ parent: 1
+ - uid: 32272
+ components:
+ - type: Transform
+ pos: 61.5,46.5
+ parent: 1
+ - uid: 32275
+ components:
+ - type: Transform
+ pos: 61.5,45.5
+ parent: 1
+ - uid: 32278
+ components:
+ - type: Transform
+ pos: 61.5,44.5
+ parent: 1
+ - uid: 32300
+ components:
+ - type: Transform
+ pos: 125.5,41.5
+ parent: 1
+ - uid: 32301
+ components:
+ - type: Transform
+ pos: 126.5,41.5
+ parent: 1
+ - uid: 32302
+ components:
+ - type: Transform
+ pos: 127.5,41.5
+ parent: 1
+ - uid: 32316
+ components:
+ - type: Transform
+ pos: 68.5,40.5
+ parent: 1
+ - uid: 32317
+ components:
+ - type: Transform
+ pos: 69.5,40.5
+ parent: 1
+ - uid: 32332
+ components:
+ - type: Transform
+ pos: 114.5,40.5
+ parent: 1
+ - uid: 32334
+ components:
+ - type: Transform
+ pos: 81.5,145.5
+ parent: 1
+ - uid: 32335
+ components:
+ - type: Transform
+ pos: 81.5,129.5
+ parent: 1
+ - uid: 32336
+ components:
+ - type: Transform
+ pos: 78.5,149.5
+ parent: 1
+ - uid: 32337
+ components:
+ - type: Transform
+ pos: 81.5,131.5
+ parent: 1
+ - uid: 32338
+ components:
+ - type: Transform
+ pos: 111.5,43.5
+ parent: 1
+ - uid: 32339
+ components:
+ - type: Transform
+ pos: 111.5,42.5
+ parent: 1
+ - uid: 32340
+ components:
+ - type: Transform
+ pos: 111.5,41.5
+ parent: 1
+ - uid: 32341
+ components:
+ - type: Transform
+ pos: 111.5,40.5
+ parent: 1
+ - uid: 32342
+ components:
+ - type: Transform
+ pos: 111.5,39.5
+ parent: 1
+ - uid: 32343
+ components:
+ - type: Transform
+ pos: 111.5,38.5
+ parent: 1
+ - uid: 32344
+ components:
+ - type: Transform
+ pos: 111.5,37.5
+ parent: 1
+ - uid: 32345
+ components:
+ - type: Transform
+ pos: 111.5,36.5
+ parent: 1
+ - uid: 32346
+ components:
+ - type: Transform
+ pos: 111.5,35.5
+ parent: 1
+ - uid: 32347
+ components:
+ - type: Transform
+ pos: 111.5,34.5
+ parent: 1
+ - uid: 32351
+ components:
+ - type: Transform
+ pos: 78.5,146.5
+ parent: 1
+ - uid: 32352
+ components:
+ - type: Transform
+ pos: 78.5,147.5
+ parent: 1
+ - uid: 32378
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 1
+ - uid: 32379
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 1
+ - uid: 32380
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 1
+ - uid: 32381
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 1
+ - uid: 32382
+ components:
+ - type: Transform
+ pos: 86.5,46.5
+ parent: 1
+ - uid: 32383
+ components:
+ - type: Transform
+ pos: 86.5,47.5
+ parent: 1
+ - uid: 32384
+ components:
+ - type: Transform
+ pos: 86.5,48.5
+ parent: 1
+ - uid: 32385
+ components:
+ - type: Transform
+ pos: 153.5,53.5
+ parent: 1
+ - uid: 32386
+ components:
+ - type: Transform
+ pos: 86.5,45.5
+ parent: 1
+ - uid: 32389
+ components:
+ - type: Transform
+ pos: 86.5,31.5
+ parent: 1
+ - uid: 32390
+ components:
+ - type: Transform
+ pos: 86.5,30.5
+ parent: 1
+ - uid: 32391
+ components:
+ - type: Transform
+ pos: 86.5,29.5
+ parent: 1
+ - uid: 32392
+ components:
+ - type: Transform
+ pos: 86.5,28.5
+ parent: 1
+ - uid: 32393
+ components:
+ - type: Transform
+ pos: 86.5,27.5
+ parent: 1
+ - uid: 32394
+ components:
+ - type: Transform
+ pos: 86.5,26.5
+ parent: 1
+ - uid: 32395
+ components:
+ - type: Transform
+ pos: 86.5,25.5
+ parent: 1
+ - uid: 32396
+ components:
+ - type: Transform
+ pos: 86.5,24.5
+ parent: 1
+ - uid: 32397
+ components:
+ - type: Transform
+ pos: 86.5,23.5
+ parent: 1
+ - uid: 32400
+ components:
+ - type: Transform
+ pos: 113.5,38.5
+ parent: 1
+ - uid: 32401
+ components:
+ - type: Transform
+ pos: 114.5,38.5
+ parent: 1
+ - uid: 32402
+ components:
+ - type: Transform
+ pos: 114.5,37.5
+ parent: 1
+ - uid: 32403
+ components:
+ - type: Transform
+ pos: 114.5,36.5
+ parent: 1
+ - uid: 32932
+ components:
+ - type: Transform
+ pos: 123.5,169.5
+ parent: 1
+ - uid: 32941
+ components:
+ - type: Transform
+ pos: 149.5,111.5
+ parent: 1
+ - uid: 32975
+ components:
+ - type: Transform
+ pos: 149.5,110.5
+ parent: 1
+ - uid: 32996
+ components:
+ - type: Transform
+ pos: 138.5,93.5
+ parent: 1
+ - uid: 32999
+ components:
+ - type: Transform
+ pos: 153.5,115.5
+ parent: 1
+ - uid: 33008
+ components:
+ - type: Transform
+ pos: 112.5,19.5
+ parent: 1
+ - uid: 33012
+ components:
+ - type: Transform
+ pos: 89.5,19.5
+ parent: 1
+ - uid: 33013
+ components:
+ - type: Transform
+ pos: 90.5,19.5
+ parent: 1
+ - uid: 33014
+ components:
+ - type: Transform
+ pos: 91.5,19.5
+ parent: 1
+ - uid: 33015
+ components:
+ - type: Transform
+ pos: 92.5,19.5
+ parent: 1
+ - uid: 33016
+ components:
+ - type: Transform
+ pos: 93.5,19.5
+ parent: 1
+ - uid: 33017
+ components:
+ - type: Transform
+ pos: 94.5,19.5
+ parent: 1
+ - uid: 33018
+ components:
+ - type: Transform
+ pos: 95.5,19.5
+ parent: 1
+ - uid: 33019
+ components:
+ - type: Transform
+ pos: 97.5,19.5
+ parent: 1
+ - uid: 33020
+ components:
+ - type: Transform
+ pos: 96.5,19.5
+ parent: 1
+ - uid: 33021
+ components:
+ - type: Transform
+ pos: 95.5,20.5
+ parent: 1
+ - uid: 33022
+ components:
+ - type: Transform
+ pos: 95.5,22.5
+ parent: 1
+ - uid: 33023
+ components:
+ - type: Transform
+ pos: 95.5,21.5
+ parent: 1
+ - uid: 33024
+ components:
+ - type: Transform
+ pos: 95.5,23.5
+ parent: 1
+ - uid: 33025
+ components:
+ - type: Transform
+ pos: 95.5,24.5
+ parent: 1
+ - uid: 33026
+ components:
+ - type: Transform
+ pos: 95.5,25.5
+ parent: 1
+ - uid: 33027
+ components:
+ - type: Transform
+ pos: 95.5,26.5
+ parent: 1
+ - uid: 33028
+ components:
+ - type: Transform
+ pos: 95.5,27.5
+ parent: 1
+ - uid: 33029
+ components:
+ - type: Transform
+ pos: 95.5,28.5
+ parent: 1
+ - uid: 33030
+ components:
+ - type: Transform
+ pos: 95.5,29.5
+ parent: 1
+ - uid: 33031
+ components:
+ - type: Transform
+ pos: 95.5,30.5
+ parent: 1
+ - uid: 33032
+ components:
+ - type: Transform
+ pos: 95.5,31.5
+ parent: 1
+ - uid: 33033
+ components:
+ - type: Transform
+ pos: 97.5,31.5
+ parent: 1
+ - uid: 33034
+ components:
+ - type: Transform
+ pos: 98.5,31.5
+ parent: 1
+ - uid: 33035
+ components:
+ - type: Transform
+ pos: 96.5,31.5
+ parent: 1
+ - uid: 33036
+ components:
+ - type: Transform
+ pos: 89.5,21.5
+ parent: 1
+ - uid: 33037
+ components:
+ - type: Transform
+ pos: 89.5,22.5
+ parent: 1
+ - uid: 33038
+ components:
+ - type: Transform
+ pos: 89.5,24.5
+ parent: 1
+ - uid: 33039
+ components:
+ - type: Transform
+ pos: 89.5,25.5
+ parent: 1
+ - uid: 33040
+ components:
+ - type: Transform
+ pos: 89.5,26.5
+ parent: 1
+ - uid: 33041
+ components:
+ - type: Transform
+ pos: 89.5,27.5
+ parent: 1
+ - uid: 33042
+ components:
+ - type: Transform
+ pos: 91.5,27.5
+ parent: 1
+ - uid: 33043
+ components:
+ - type: Transform
+ pos: 90.5,27.5
+ parent: 1
+ - uid: 33044
+ components:
+ - type: Transform
+ pos: 91.5,28.5
+ parent: 1
+ - uid: 33045
+ components:
+ - type: Transform
+ pos: 91.5,29.5
+ parent: 1
+ - uid: 33046
+ components:
+ - type: Transform
+ pos: 91.5,30.5
+ parent: 1
+ - uid: 33047
+ components:
+ - type: Transform
+ pos: 91.5,31.5
+ parent: 1
+ - uid: 33048
+ components:
+ - type: Transform
+ pos: 92.5,31.5
+ parent: 1
+ - uid: 33049
+ components:
+ - type: Transform
+ pos: 90.5,31.5
+ parent: 1
+ - uid: 33050
+ components:
+ - type: Transform
+ pos: 87.5,31.5
+ parent: 1
+ - uid: 33051
+ components:
+ - type: Transform
+ pos: 88.5,31.5
+ parent: 1
+ - uid: 33052
+ components:
+ - type: Transform
+ pos: 94.5,31.5
+ parent: 1
+ - uid: 33053
+ components:
+ - type: Transform
+ pos: 96.5,27.5
+ parent: 1
+ - uid: 33054
+ components:
+ - type: Transform
+ pos: 98.5,27.5
+ parent: 1
+ - uid: 33055
+ components:
+ - type: Transform
+ pos: 99.5,27.5
+ parent: 1
+ - uid: 33056
+ components:
+ - type: Transform
+ pos: 100.5,27.5
+ parent: 1
+ - uid: 33057
+ components:
+ - type: Transform
+ pos: 101.5,27.5
+ parent: 1
+ - uid: 33066
+ components:
+ - type: Transform
+ pos: 102.5,19.5
+ parent: 1
+ - uid: 33067
+ components:
+ - type: Transform
+ pos: 105.5,30.5
+ parent: 1
+ - uid: 33068
+ components:
+ - type: Transform
+ pos: 105.5,29.5
+ parent: 1
+ - uid: 33069
+ components:
+ - type: Transform
+ pos: 105.5,26.5
+ parent: 1
+ - uid: 33070
+ components:
+ - type: Transform
+ pos: 106.5,19.5
+ parent: 1
+ - uid: 33071
+ components:
+ - type: Transform
+ pos: 105.5,31.5
+ parent: 1
+ - uid: 33072
+ components:
+ - type: Transform
+ pos: 106.5,28.5
+ parent: 1
+ - uid: 33073
+ components:
+ - type: Transform
+ pos: 105.5,28.5
+ parent: 1
+ - uid: 33074
+ components:
+ - type: Transform
+ pos: 105.5,25.5
+ parent: 1
+ - uid: 33075
+ components:
+ - type: Transform
+ pos: 104.5,31.5
+ parent: 1
+ - uid: 33076
+ components:
+ - type: Transform
+ pos: 105.5,19.5
+ parent: 1
+ - uid: 33077
+ components:
+ - type: Transform
+ pos: 105.5,20.5
+ parent: 1
+ - uid: 33078
+ components:
+ - type: Transform
+ pos: 103.5,31.5
+ parent: 1
+ - uid: 33079
+ components:
+ - type: Transform
+ pos: 108.5,19.5
+ parent: 1
+ - uid: 33080
+ components:
+ - type: Transform
+ pos: 109.5,19.5
+ parent: 1
+ - uid: 33081
+ components:
+ - type: Transform
+ pos: 102.5,31.5
+ parent: 1
+ - uid: 33082
+ components:
+ - type: Transform
+ pos: 101.5,31.5
+ parent: 1
+ - uid: 33083
+ components:
+ - type: Transform
+ pos: 100.5,31.5
+ parent: 1
+ - uid: 33084
+ components:
+ - type: Transform
+ pos: 110.5,19.5
+ parent: 1
+ - uid: 33085
+ components:
+ - type: Transform
+ pos: 113.5,19.5
+ parent: 1
+ - uid: 33086
+ components:
+ - type: Transform
+ pos: 114.5,19.5
+ parent: 1
+ - uid: 33087
+ components:
+ - type: Transform
+ pos: 114.5,18.5
+ parent: 1
+ - uid: 33088
+ components:
+ - type: Transform
+ pos: 114.5,17.5
+ parent: 1
+ - uid: 33090
+ components:
+ - type: Transform
+ pos: 111.5,19.5
+ parent: 1
+ - uid: 33091
+ components:
+ - type: Transform
+ pos: 109.5,20.5
+ parent: 1
+ - uid: 33092
+ components:
+ - type: Transform
+ pos: 109.5,21.5
+ parent: 1
+ - uid: 33093
+ components:
+ - type: Transform
+ pos: 109.5,22.5
+ parent: 1
+ - uid: 33094
+ components:
+ - type: Transform
+ pos: 109.5,23.5
+ parent: 1
+ - uid: 33095
+ components:
+ - type: Transform
+ pos: 111.5,23.5
+ parent: 1
+ - uid: 33096
+ components:
+ - type: Transform
+ pos: 112.5,23.5
+ parent: 1
+ - uid: 33097
+ components:
+ - type: Transform
+ pos: 112.5,24.5
+ parent: 1
+ - uid: 33098
+ components:
+ - type: Transform
+ pos: 112.5,25.5
+ parent: 1
+ - uid: 33099
+ components:
+ - type: Transform
+ pos: 112.5,26.5
+ parent: 1
+ - uid: 33100
+ components:
+ - type: Transform
+ pos: 112.5,27.5
+ parent: 1
+ - uid: 33101
+ components:
+ - type: Transform
+ pos: 112.5,28.5
+ parent: 1
+ - uid: 33102
+ components:
+ - type: Transform
+ pos: 112.5,29.5
+ parent: 1
+ - uid: 33103
+ components:
+ - type: Transform
+ pos: 112.5,30.5
+ parent: 1
+ - uid: 33104
+ components:
+ - type: Transform
+ pos: 111.5,27.5
+ parent: 1
+ - uid: 33105
+ components:
+ - type: Transform
+ pos: 113.5,26.5
+ parent: 1
+ - uid: 33106
+ components:
+ - type: Transform
+ pos: 113.5,30.5
+ parent: 1
+ - uid: 33107
+ components:
+ - type: Transform
+ pos: 114.5,30.5
+ parent: 1
+ - uid: 33108
+ components:
+ - type: Transform
+ pos: 115.5,30.5
+ parent: 1
+ - uid: 33109
+ components:
+ - type: Transform
+ pos: 116.5,30.5
+ parent: 1
+ - uid: 33110
+ components:
+ - type: Transform
+ pos: 117.5,30.5
+ parent: 1
+ - uid: 33111
+ components:
+ - type: Transform
+ pos: 118.5,30.5
+ parent: 1
+ - uid: 33112
+ components:
+ - type: Transform
+ pos: 119.5,30.5
+ parent: 1
+ - uid: 33113
+ components:
+ - type: Transform
+ pos: 119.5,31.5
+ parent: 1
+ - uid: 33114
+ components:
+ - type: Transform
+ pos: 119.5,32.5
+ parent: 1
+ - uid: 33115
+ components:
+ - type: Transform
+ pos: 119.5,33.5
+ parent: 1
+ - uid: 33116
+ components:
+ - type: Transform
+ pos: 119.5,34.5
+ parent: 1
+ - uid: 33117
+ components:
+ - type: Transform
+ pos: 119.5,35.5
+ parent: 1
+ - uid: 33118
+ components:
+ - type: Transform
+ pos: 119.5,37.5
+ parent: 1
+ - uid: 33119
+ components:
+ - type: Transform
+ pos: 119.5,36.5
+ parent: 1
+ - uid: 33120
+ components:
+ - type: Transform
+ pos: 119.5,39.5
+ parent: 1
+ - uid: 33121
+ components:
+ - type: Transform
+ pos: 119.5,40.5
+ parent: 1
+ - uid: 33122
+ components:
+ - type: Transform
+ pos: 119.5,41.5
+ parent: 1
+ - uid: 33123
+ components:
+ - type: Transform
+ pos: 119.5,38.5
+ parent: 1
+ - uid: 33124
+ components:
+ - type: Transform
+ pos: 118.5,39.5
+ parent: 1
+ - uid: 33125
+ components:
+ - type: Transform
+ pos: 120.5,41.5
+ parent: 1
+ - uid: 33126
+ components:
+ - type: Transform
+ pos: 119.5,42.5
+ parent: 1
+ - uid: 33127
+ components:
+ - type: Transform
+ pos: 115.5,26.5
+ parent: 1
+ - uid: 33128
+ components:
+ - type: Transform
+ pos: 116.5,26.5
+ parent: 1
+ - uid: 33129
+ components:
+ - type: Transform
+ pos: 117.5,26.5
+ parent: 1
+ - uid: 33130
+ components:
+ - type: Transform
+ pos: 118.5,26.5
+ parent: 1
+ - uid: 33131
+ components:
+ - type: Transform
+ pos: 119.5,26.5
+ parent: 1
+ - uid: 33132
+ components:
+ - type: Transform
+ pos: 119.5,25.5
+ parent: 1
+ - uid: 33133
+ components:
+ - type: Transform
+ pos: 119.5,23.5
+ parent: 1
+ - uid: 33134
+ components:
+ - type: Transform
+ pos: 119.5,22.5
+ parent: 1
+ - uid: 33135
+ components:
+ - type: Transform
+ pos: 119.5,21.5
+ parent: 1
+ - uid: 33136
+ components:
+ - type: Transform
+ pos: 119.5,20.5
+ parent: 1
+ - uid: 33137
+ components:
+ - type: Transform
+ pos: 118.5,20.5
+ parent: 1
+ - uid: 33138
+ components:
+ - type: Transform
+ pos: 117.5,20.5
+ parent: 1
+ - uid: 33139
+ components:
+ - type: Transform
+ pos: 119.5,24.5
+ parent: 1
+ - uid: 33140
+ components:
+ - type: Transform
+ pos: 117.5,21.5
+ parent: 1
+ - uid: 33141
+ components:
+ - type: Transform
+ pos: 124.5,42.5
+ parent: 1
+ - uid: 33142
+ components:
+ - type: Transform
+ pos: 124.5,41.5
+ parent: 1
+ - uid: 33143
+ components:
+ - type: Transform
+ pos: 123.5,41.5
+ parent: 1
+ - uid: 33144
+ components:
+ - type: Transform
+ pos: 122.5,41.5
+ parent: 1
+ - uid: 33145
+ components:
+ - type: Transform
+ pos: 124.5,39.5
+ parent: 1
+ - uid: 33146
+ components:
+ - type: Transform
+ pos: 124.5,38.5
+ parent: 1
+ - uid: 33147
+ components:
+ - type: Transform
+ pos: 124.5,37.5
+ parent: 1
+ - uid: 33148
+ components:
+ - type: Transform
+ pos: 124.5,36.5
+ parent: 1
+ - uid: 33149
+ components:
+ - type: Transform
+ pos: 124.5,35.5
+ parent: 1
+ - uid: 33150
+ components:
+ - type: Transform
+ pos: 123.5,35.5
+ parent: 1
+ - uid: 33151
+ components:
+ - type: Transform
+ pos: 123.5,34.5
+ parent: 1
+ - uid: 33152
+ components:
+ - type: Transform
+ pos: 123.5,33.5
+ parent: 1
+ - uid: 33153
+ components:
+ - type: Transform
+ pos: 123.5,32.5
+ parent: 1
+ - uid: 33154
+ components:
+ - type: Transform
+ pos: 123.5,31.5
+ parent: 1
+ - uid: 33155
+ components:
+ - type: Transform
+ pos: 123.5,30.5
+ parent: 1
+ - uid: 33156
+ components:
+ - type: Transform
+ pos: 123.5,29.5
+ parent: 1
+ - uid: 33157
+ components:
+ - type: Transform
+ pos: 123.5,28.5
+ parent: 1
+ - uid: 33158
+ components:
+ - type: Transform
+ pos: 123.5,27.5
+ parent: 1
+ - uid: 33159
+ components:
+ - type: Transform
+ pos: 123.5,26.5
+ parent: 1
+ - uid: 33287
+ components:
+ - type: Transform
+ pos: 152.5,53.5
+ parent: 1
+ - uid: 33288
+ components:
+ - type: Transform
+ pos: 151.5,53.5
+ parent: 1
+ - uid: 33424
+ components:
+ - type: Transform
+ pos: 102.5,22.5
+ parent: 1
+ - uid: 33425
+ components:
+ - type: Transform
+ pos: 102.5,23.5
+ parent: 1
+ - uid: 33426
+ components:
+ - type: Transform
+ pos: 102.5,24.5
+ parent: 1
+ - uid: 33427
+ components:
+ - type: Transform
+ pos: 102.5,25.5
+ parent: 1
+ - uid: 33428
+ components:
+ - type: Transform
+ pos: 102.5,26.5
+ parent: 1
+ - uid: 33429
+ components:
+ - type: Transform
+ pos: 102.5,27.5
+ parent: 1
+ - uid: 33714
+ components:
+ - type: Transform
+ pos: 109.5,35.5
+ parent: 1
+ - uid: 33732
+ components:
+ - type: Transform
+ pos: 95.5,18.5
+ parent: 1
+ - uid: 33733
+ components:
+ - type: Transform
+ pos: 95.5,17.5
+ parent: 1
+ - uid: 33734
+ components:
+ - type: Transform
+ pos: 95.5,16.5
+ parent: 1
+ - uid: 33735
+ components:
+ - type: Transform
+ pos: 95.5,15.5
+ parent: 1
+ - uid: 33736
+ components:
+ - type: Transform
+ pos: 93.5,15.5
+ parent: 1
+ - uid: 33737
+ components:
+ - type: Transform
+ pos: 93.5,16.5
+ parent: 1
+ - uid: 33738
+ components:
+ - type: Transform
+ pos: 93.5,17.5
+ parent: 1
+ - uid: 33739
+ components:
+ - type: Transform
+ pos: 93.5,18.5
+ parent: 1
+ - uid: 33751
+ components:
+ - type: Transform
+ pos: 122.5,89.5
+ parent: 1
+ - uid: 33754
+ components:
+ - type: Transform
+ pos: 88.5,61.5
+ parent: 1
+ - uid: 33755
+ components:
+ - type: Transform
+ pos: 88.5,59.5
+ parent: 1
+ - uid: 33759
+ components:
+ - type: Transform
+ pos: 102.5,41.5
+ parent: 1
+ - uid: 33780
+ components:
+ - type: Transform
+ pos: 69.5,17.5
+ parent: 1
+ - uid: 33781
+ components:
+ - type: Transform
+ pos: 67.5,17.5
+ parent: 1
+ - uid: 33782
+ components:
+ - type: Transform
+ pos: 68.5,17.5
+ parent: 1
+ - uid: 33810
+ components:
+ - type: Transform
+ pos: 87.5,87.5
+ parent: 1
+ - uid: 33811
+ components:
+ - type: Transform
+ pos: 89.5,85.5
+ parent: 1
+ - uid: 33812
+ components:
+ - type: Transform
+ pos: 88.5,85.5
+ parent: 1
+ - uid: 33813
+ components:
+ - type: Transform
+ pos: 90.5,86.5
+ parent: 1
+ - uid: 33871
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 1
+ - uid: 33898
+ components:
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 1
+ - uid: 33913
+ components:
+ - type: Transform
+ pos: 56.5,41.5
+ parent: 1
+ - uid: 33940
+ components:
+ - type: Transform
+ pos: 56.5,42.5
+ parent: 1
+ - uid: 33969
+ components:
+ - type: Transform
+ pos: 49.5,74.5
+ parent: 1
+ - uid: 33971
+ components:
+ - type: Transform
+ pos: 48.5,74.5
+ parent: 1
+ - uid: 33983
+ components:
+ - type: Transform
+ pos: 46.5,74.5
+ parent: 1
+ - uid: 33984
+ components:
+ - type: Transform
+ pos: 47.5,76.5
+ parent: 1
+ - uid: 33985
+ components:
+ - type: Transform
+ pos: 47.5,74.5
+ parent: 1
+ - uid: 33994
+ components:
+ - type: Transform
+ pos: 109.5,33.5
+ parent: 1
+ - uid: 33995
+ components:
+ - type: Transform
+ pos: 109.5,32.5
+ parent: 1
+ - uid: 33996
+ components:
+ - type: Transform
+ pos: 109.5,31.5
+ parent: 1
+ - uid: 33997
+ components:
+ - type: Transform
+ pos: 109.5,30.5
+ parent: 1
+ - uid: 33998
+ components:
+ - type: Transform
+ pos: 109.5,29.5
+ parent: 1
+ - uid: 33999
+ components:
+ - type: Transform
+ pos: 109.5,28.5
+ parent: 1
+ - uid: 34000
+ components:
+ - type: Transform
+ pos: 109.5,27.5
+ parent: 1
+ - uid: 34001
+ components:
+ - type: Transform
+ pos: 108.5,28.5
+ parent: 1
+ - uid: 34007
+ components:
+ - type: Transform
+ pos: 111.5,33.5
+ parent: 1
+ - uid: 34008
+ components:
+ - type: Transform
+ pos: 112.5,33.5
+ parent: 1
+ - uid: 34009
+ components:
+ - type: Transform
+ pos: 113.5,33.5
+ parent: 1
+ - uid: 34010
+ components:
+ - type: Transform
+ pos: 114.5,33.5
+ parent: 1
+ - uid: 34011
+ components:
+ - type: Transform
+ pos: 115.5,33.5
+ parent: 1
+ - uid: 34015
+ components:
+ - type: Transform
+ pos: 137.5,93.5
+ parent: 1
+ - uid: 34016
+ components:
+ - type: Transform
+ pos: 134.5,93.5
+ parent: 1
+ - uid: 34017
+ components:
+ - type: Transform
+ pos: 133.5,93.5
+ parent: 1
+ - uid: 34018
+ components:
+ - type: Transform
+ pos: 60.5,42.5
+ parent: 1
+ - uid: 34027
+ components:
+ - type: Transform
+ pos: 59.5,42.5
+ parent: 1
+ - uid: 34055
+ components:
+ - type: Transform
+ pos: 71.5,57.5
+ parent: 1
+ - uid: 34058
+ components:
+ - type: Transform
+ pos: 61.5,42.5
+ parent: 1
+ - uid: 34059
+ components:
+ - type: Transform
+ pos: 62.5,42.5
+ parent: 1
+ - uid: 34060
+ components:
+ - type: Transform
+ pos: 63.5,42.5
+ parent: 1
+ - uid: 34067
+ components:
+ - type: Transform
+ pos: 100.5,40.5
+ parent: 1
+ - uid: 34070
+ components:
+ - type: Transform
+ pos: 96.5,40.5
+ parent: 1
+ - uid: 34115
+ components:
+ - type: Transform
+ pos: 145.5,85.5
+ parent: 1
+ - uid: 34116
+ components:
+ - type: Transform
+ pos: 146.5,85.5
+ parent: 1
+ - uid: 34117
+ components:
+ - type: Transform
+ pos: 146.5,84.5
+ parent: 1
+ - uid: 34118
+ components:
+ - type: Transform
+ pos: 146.5,83.5
+ parent: 1
+ - uid: 34119
+ components:
+ - type: Transform
+ pos: 146.5,82.5
+ parent: 1
+ - uid: 34121
+ components:
+ - type: Transform
+ pos: 146.5,80.5
+ parent: 1
+ - uid: 34123
+ components:
+ - type: Transform
+ pos: 87.5,86.5
+ parent: 1
+ - uid: 34124
+ components:
+ - type: Transform
+ pos: 146.5,77.5
+ parent: 1
+ - uid: 34126
+ components:
+ - type: Transform
+ pos: 147.5,76.5
+ parent: 1
+ - uid: 34132
+ components:
+ - type: Transform
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 34133
+ components:
+ - type: Transform
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 34134
+ components:
+ - type: Transform
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 34135
+ components:
+ - type: Transform
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 34136
+ components:
+ - type: Transform
+ pos: 156.5,77.5
+ parent: 1
+ - uid: 34137
+ components:
+ - type: Transform
+ pos: 156.5,78.5
+ parent: 1
+ - uid: 34138
+ components:
+ - type: Transform
+ pos: 156.5,79.5
+ parent: 1
+ - uid: 34139
+ components:
+ - type: Transform
+ pos: 156.5,80.5
+ parent: 1
+ - uid: 34141
+ components:
+ - type: Transform
+ pos: 157.5,79.5
+ parent: 1
+ - uid: 34142
+ components:
+ - type: Transform
+ pos: 159.5,79.5
+ parent: 1
+ - uid: 34143
+ components:
+ - type: Transform
+ pos: 160.5,79.5
+ parent: 1
+ - uid: 34144
+ components:
+ - type: Transform
+ pos: 161.5,79.5
+ parent: 1
+ - uid: 34145
+ components:
+ - type: Transform
+ pos: 162.5,79.5
+ parent: 1
+ - uid: 34146
+ components:
+ - type: Transform
+ pos: 163.5,79.5
+ parent: 1
+ - uid: 34147
+ components:
+ - type: Transform
+ pos: 158.5,79.5
+ parent: 1
+ - uid: 34148
+ components:
+ - type: Transform
+ pos: 165.5,79.5
+ parent: 1
+ - uid: 34149
+ components:
+ - type: Transform
+ pos: 164.5,79.5
+ parent: 1
+ - uid: 34150
+ components:
+ - type: Transform
+ pos: 160.5,80.5
+ parent: 1
+ - uid: 34151
+ components:
+ - type: Transform
+ pos: 160.5,81.5
+ parent: 1
+ - uid: 34152
+ components:
+ - type: Transform
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 34153
+ components:
+ - type: Transform
+ pos: 149.5,78.5
+ parent: 1
+ - uid: 34154
+ components:
+ - type: Transform
+ pos: 149.5,79.5
+ parent: 1
+ - uid: 34155
+ components:
+ - type: Transform
+ pos: 149.5,80.5
+ parent: 1
+ - uid: 34156
+ components:
+ - type: Transform
+ pos: 149.5,81.5
+ parent: 1
+ - uid: 34157
+ components:
+ - type: Transform
+ pos: 150.5,79.5
+ parent: 1
+ - uid: 34158
+ components:
+ - type: Transform
+ pos: 151.5,79.5
+ parent: 1
+ - uid: 34159
+ components:
+ - type: Transform
+ pos: 152.5,79.5
+ parent: 1
+ - uid: 34160
+ components:
+ - type: Transform
+ pos: 153.5,79.5
+ parent: 1
+ - uid: 34161
+ components:
+ - type: Transform
+ pos: 153.5,80.5
+ parent: 1
+ - uid: 34162
+ components:
+ - type: Transform
+ pos: 153.5,81.5
+ parent: 1
+ - uid: 34163
+ components:
+ - type: Transform
+ pos: 153.5,82.5
+ parent: 1
+ - uid: 34164
+ components:
+ - type: Transform
+ pos: 153.5,83.5
+ parent: 1
+ - uid: 34165
+ components:
+ - type: Transform
+ pos: 153.5,85.5
+ parent: 1
+ - uid: 34166
+ components:
+ - type: Transform
+ pos: 153.5,84.5
+ parent: 1
+ - uid: 34172
+ components:
+ - type: Transform
+ pos: 91.5,40.5
+ parent: 1
+ - uid: 34173
+ components:
+ - type: Transform
+ pos: 149.5,82.5
+ parent: 1
+ - uid: 34174
+ components:
+ - type: Transform
+ pos: 149.5,83.5
+ parent: 1
+ - uid: 34175
+ components:
+ - type: Transform
+ pos: 150.5,83.5
+ parent: 1
+ - uid: 34176
+ components:
+ - type: Transform
+ pos: 151.5,83.5
+ parent: 1
+ - uid: 34177
+ components:
+ - type: Transform
+ pos: 152.5,83.5
+ parent: 1
+ - uid: 34178
+ components:
+ - type: Transform
+ pos: 141.5,80.5
+ parent: 1
+ - uid: 34179
+ components:
+ - type: Transform
+ pos: 143.5,80.5
+ parent: 1
+ - uid: 34180
+ components:
+ - type: Transform
+ pos: 142.5,80.5
+ parent: 1
+ - uid: 34181
+ components:
+ - type: Transform
+ pos: 144.5,80.5
+ parent: 1
+ - uid: 34182
+ components:
+ - type: Transform
+ pos: 145.5,80.5
+ parent: 1
+ - uid: 34186
+ components:
+ - type: Transform
+ pos: 89.5,87.5
+ parent: 1
+ - uid: 34189
+ components:
+ - type: Transform
+ pos: 140.5,92.5
+ parent: 1
+ - uid: 34190
+ components:
+ - type: Transform
+ pos: 140.5,93.5
+ parent: 1
+ - uid: 34191
+ components:
+ - type: Transform
+ pos: 140.5,94.5
+ parent: 1
+ - uid: 34193
+ components:
+ - type: Transform
+ pos: 145.5,46.5
+ parent: 1
+ - uid: 34194
+ components:
+ - type: Transform
+ pos: 146.5,46.5
+ parent: 1
+ - uid: 34195
+ components:
+ - type: Transform
+ pos: 147.5,46.5
+ parent: 1
+ - uid: 34196
+ components:
+ - type: Transform
+ pos: 148.5,46.5
+ parent: 1
+ - uid: 34197
+ components:
+ - type: Transform
+ pos: 149.5,46.5
+ parent: 1
+ - uid: 34198
+ components:
+ - type: Transform
+ pos: 151.5,46.5
+ parent: 1
+ - uid: 34199
+ components:
+ - type: Transform
+ pos: 152.5,46.5
+ parent: 1
+ - uid: 34200
+ components:
+ - type: Transform
+ pos: 153.5,46.5
+ parent: 1
+ - uid: 34201
+ components:
+ - type: Transform
+ pos: 154.5,46.5
+ parent: 1
+ - uid: 34202
+ components:
+ - type: Transform
+ pos: 155.5,46.5
+ parent: 1
+ - uid: 34203
+ components:
+ - type: Transform
+ pos: 156.5,46.5
+ parent: 1
+ - uid: 34204
+ components:
+ - type: Transform
+ pos: 157.5,46.5
+ parent: 1
+ - uid: 34205
+ components:
+ - type: Transform
+ pos: 158.5,46.5
+ parent: 1
+ - uid: 34206
+ components:
+ - type: Transform
+ pos: 159.5,46.5
+ parent: 1
+ - uid: 34207
+ components:
+ - type: Transform
+ pos: 160.5,46.5
+ parent: 1
+ - uid: 34208
+ components:
+ - type: Transform
+ pos: 150.5,46.5
+ parent: 1
+ - uid: 34209
+ components:
+ - type: Transform
+ pos: 161.5,46.5
+ parent: 1
+ - uid: 34210
+ components:
+ - type: Transform
+ pos: 161.5,45.5
+ parent: 1
+ - uid: 34211
+ components:
+ - type: Transform
+ pos: 161.5,44.5
+ parent: 1
+ - uid: 34212
+ components:
+ - type: Transform
+ pos: 161.5,43.5
+ parent: 1
+ - uid: 34213
+ components:
+ - type: Transform
+ pos: 160.5,43.5
+ parent: 1
+ - uid: 34214
+ components:
+ - type: Transform
+ pos: 159.5,43.5
+ parent: 1
+ - uid: 34215
+ components:
+ - type: Transform
+ pos: 158.5,43.5
+ parent: 1
+ - uid: 34216
+ components:
+ - type: Transform
+ pos: 157.5,43.5
+ parent: 1
+ - uid: 34217
+ components:
+ - type: Transform
+ pos: 161.5,47.5
+ parent: 1
+ - uid: 34218
+ components:
+ - type: Transform
+ pos: 161.5,48.5
+ parent: 1
+ - uid: 34219
+ components:
+ - type: Transform
+ pos: 161.5,49.5
+ parent: 1
+ - uid: 34220
+ components:
+ - type: Transform
+ pos: 161.5,50.5
+ parent: 1
+ - uid: 34221
+ components:
+ - type: Transform
+ pos: 161.5,51.5
+ parent: 1
+ - uid: 34236
+ components:
+ - type: Transform
+ pos: 158.5,58.5
+ parent: 1
+ - uid: 34237
+ components:
+ - type: Transform
+ pos: 158.5,57.5
+ parent: 1
+ - uid: 34238
+ components:
+ - type: Transform
+ pos: 158.5,59.5
+ parent: 1
+ - uid: 34239
+ components:
+ - type: Transform
+ pos: 158.5,60.5
+ parent: 1
+ - uid: 34240
+ components:
+ - type: Transform
+ pos: 158.5,61.5
+ parent: 1
+ - uid: 34241
+ components:
+ - type: Transform
+ pos: 158.5,62.5
+ parent: 1
+ - uid: 34242
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - uid: 34243
+ components:
+ - type: Transform
+ pos: 158.5,65.5
+ parent: 1
+ - uid: 34244
+ components:
+ - type: Transform
+ pos: 158.5,66.5
+ parent: 1
+ - uid: 34245
+ components:
+ - type: Transform
+ pos: 158.5,63.5
+ parent: 1
+ - uid: 34246
+ components:
+ - type: Transform
+ pos: 157.5,66.5
+ parent: 1
+ - uid: 34247
+ components:
+ - type: Transform
+ pos: 156.5,66.5
+ parent: 1
+ - uid: 34248
+ components:
+ - type: Transform
+ pos: 156.5,67.5
+ parent: 1
+ - uid: 34249
+ components:
+ - type: Transform
+ pos: 156.5,68.5
+ parent: 1
+ - uid: 34250
+ components:
+ - type: Transform
+ pos: 156.5,69.5
+ parent: 1
+ - uid: 34251
+ components:
+ - type: Transform
+ pos: 156.5,70.5
+ parent: 1
+ - uid: 34252
+ components:
+ - type: Transform
+ pos: 156.5,71.5
+ parent: 1
+ - uid: 34253
+ components:
+ - type: Transform
+ pos: 156.5,72.5
+ parent: 1
+ - uid: 34254
+ components:
+ - type: Transform
+ pos: 156.5,73.5
+ parent: 1
+ - uid: 34255
+ components:
+ - type: Transform
+ pos: 156.5,74.5
+ parent: 1
+ - uid: 34256
+ components:
+ - type: Transform
+ pos: 157.5,70.5
+ parent: 1
+ - uid: 34257
+ components:
+ - type: Transform
+ pos: 158.5,70.5
+ parent: 1
+ - uid: 34258
+ components:
+ - type: Transform
+ pos: 159.5,70.5
+ parent: 1
+ - uid: 34259
+ components:
+ - type: Transform
+ pos: 159.5,71.5
+ parent: 1
+ - uid: 34260
+ components:
+ - type: Transform
+ pos: 159.5,72.5
+ parent: 1
+ - uid: 34261
+ components:
+ - type: Transform
+ pos: 159.5,73.5
+ parent: 1
+ - uid: 34262
+ components:
+ - type: Transform
+ pos: 159.5,74.5
+ parent: 1
+ - uid: 34263
+ components:
+ - type: Transform
+ pos: 159.5,75.5
+ parent: 1
+ - uid: 34266
+ components:
+ - type: Transform
+ pos: 161.5,62.5
+ parent: 1
+ - uid: 34267
+ components:
+ - type: Transform
+ pos: 161.5,63.5
+ parent: 1
+ - uid: 34268
+ components:
+ - type: Transform
+ pos: 161.5,64.5
+ parent: 1
+ - uid: 34269
+ components:
+ - type: Transform
+ pos: 159.5,57.5
+ parent: 1
+ - uid: 34270
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 34271
+ components:
+ - type: Transform
+ pos: 161.5,57.5
+ parent: 1
+ - uid: 34275
+ components:
+ - type: Transform
+ pos: 162.5,54.5
+ parent: 1
+ - uid: 34276
+ components:
+ - type: Transform
+ pos: 162.5,53.5
+ parent: 1
+ - uid: 34280
+ components:
+ - type: Transform
+ pos: 147.5,74.5
+ parent: 1
+ - uid: 34281
+ components:
+ - type: Transform
+ pos: 147.5,75.5
+ parent: 1
+ - uid: 34300
+ components:
+ - type: Transform
+ pos: 137.5,86.5
+ parent: 1
+ - uid: 34301
+ components:
+ - type: Transform
+ pos: 137.5,87.5
+ parent: 1
+ - uid: 34342
+ components:
+ - type: Transform
+ pos: 155.5,80.5
+ parent: 1
+ - uid: 34343
+ components:
+ - type: Transform
+ pos: 155.5,81.5
+ parent: 1
+ - uid: 34344
+ components:
+ - type: Transform
+ pos: 155.5,82.5
+ parent: 1
+ - uid: 34345
+ components:
+ - type: Transform
+ pos: 155.5,83.5
+ parent: 1
+ - uid: 34346
+ components:
+ - type: Transform
+ pos: 156.5,83.5
+ parent: 1
+ - uid: 34347
+ components:
+ - type: Transform
+ pos: 157.5,83.5
+ parent: 1
+ - uid: 34348
+ components:
+ - type: Transform
+ pos: 158.5,83.5
+ parent: 1
+ - uid: 34349
+ components:
+ - type: Transform
+ pos: 159.5,83.5
+ parent: 1
+ - uid: 34350
+ components:
+ - type: Transform
+ pos: 160.5,83.5
+ parent: 1
+ - uid: 34351
+ components:
+ - type: Transform
+ pos: 160.5,82.5
+ parent: 1
+ - uid: 34403
+ components:
+ - type: Transform
+ pos: 58.5,121.5
+ parent: 1
+ - uid: 34419
+ components:
+ - type: Transform
+ pos: 136.5,93.5
+ parent: 1
+ - uid: 34478
+ components:
+ - type: Transform
+ pos: 99.5,40.5
+ parent: 1
+ - uid: 34480
+ components:
+ - type: Transform
+ pos: 98.5,40.5
+ parent: 1
+ - uid: 34517
+ components:
+ - type: Transform
+ pos: 153.5,45.5
+ parent: 1
+ - uid: 34518
+ components:
+ - type: Transform
+ pos: 153.5,44.5
+ parent: 1
+ - uid: 34519
+ components:
+ - type: Transform
+ pos: 154.5,44.5
+ parent: 1
+ - uid: 34520
+ components:
+ - type: Transform
+ pos: 155.5,44.5
+ parent: 1
+ - uid: 34521
+ components:
+ - type: Transform
+ pos: 155.5,43.5
+ parent: 1
+ - uid: 34522
+ components:
+ - type: Transform
+ pos: 156.5,43.5
+ parent: 1
+ - uid: 34598
+ components:
+ - type: Transform
+ pos: 135.5,93.5
+ parent: 1
+ - uid: 34609
+ components:
+ - type: Transform
+ pos: 102.5,40.5
+ parent: 1
+ - uid: 34613
+ components:
+ - type: Transform
+ pos: 97.5,40.5
+ parent: 1
+ - uid: 34614
+ components:
+ - type: Transform
+ pos: 134.5,89.5
+ parent: 1
+ - uid: 34616
+ components:
+ - type: Transform
+ pos: 132.5,91.5
+ parent: 1
+ - uid: 34619
+ components:
+ - type: Transform
+ pos: 132.5,92.5
+ parent: 1
+ - uid: 34621
+ components:
+ - type: Transform
+ pos: 101.5,40.5
+ parent: 1
+ - uid: 34622
+ components:
+ - type: Transform
+ pos: 95.5,40.5
+ parent: 1
+ - uid: 34624
+ components:
+ - type: Transform
+ pos: 132.5,89.5
+ parent: 1
+ - uid: 34627
+ components:
+ - type: Transform
+ pos: 100.5,42.5
+ parent: 1
+ - uid: 34632
+ components:
+ - type: Transform
+ pos: 160.5,61.5
+ parent: 1
+ - uid: 34633
+ components:
+ - type: Transform
+ pos: 161.5,61.5
+ parent: 1
+ - uid: 34645
+ components:
+ - type: Transform
+ pos: 161.5,54.5
+ parent: 1
+ - uid: 34646
+ components:
+ - type: Transform
+ pos: 161.5,55.5
+ parent: 1
+ - uid: 34647
+ components:
+ - type: Transform
+ pos: 161.5,56.5
+ parent: 1
+ - uid: 34714
+ components:
+ - type: Transform
+ pos: 134.5,86.5
+ parent: 1
+ - uid: 34715
+ components:
+ - type: Transform
+ pos: 114.5,169.5
+ parent: 1
+ - uid: 34721
+ components:
+ - type: Transform
+ pos: 134.5,88.5
+ parent: 1
+ - uid: 34761
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 1
+ - uid: 34764
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 1
+ - uid: 34765
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 1
+ - uid: 34766
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 1
+ - uid: 34767
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 1
+ - uid: 34768
+ components:
+ - type: Transform
+ pos: 85.5,80.5
+ parent: 1
+ - uid: 34769
+ components:
+ - type: Transform
+ pos: 86.5,80.5
+ parent: 1
+ - uid: 34770
+ components:
+ - type: Transform
+ pos: 87.5,80.5
+ parent: 1
+ - uid: 34771
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 1
+ - uid: 34772
+ components:
+ - type: Transform
+ pos: 89.5,80.5
+ parent: 1
+ - uid: 34774
+ components:
+ - type: Transform
+ pos: 123.5,165.5
+ parent: 1
+ - uid: 34775
+ components:
+ - type: Transform
+ pos: 88.5,80.5
+ parent: 1
+ - uid: 34777
+ components:
+ - type: Transform
+ pos: 123.5,166.5
+ parent: 1
+ - uid: 34778
+ components:
+ - type: Transform
+ pos: 93.5,80.5
+ parent: 1
+ - uid: 34779
+ components:
+ - type: Transform
+ pos: 123.5,167.5
+ parent: 1
+ - uid: 34780
+ components:
+ - type: Transform
+ pos: 88.5,79.5
+ parent: 1
+ - uid: 34781
+ components:
+ - type: Transform
+ pos: 123.5,168.5
+ parent: 1
+ - uid: 34784
+ components:
+ - type: Transform
+ pos: 95.5,84.5
+ parent: 1
+ - uid: 34785
+ components:
+ - type: Transform
+ pos: 72.5,78.5
+ parent: 1
+ - uid: 34786
+ components:
+ - type: Transform
+ pos: 95.5,86.5
+ parent: 1
+ - uid: 34787
+ components:
+ - type: Transform
+ pos: 71.5,78.5
+ parent: 1
+ - uid: 34788
+ components:
+ - type: Transform
+ pos: 70.5,78.5
+ parent: 1
+ - uid: 34789
+ components:
+ - type: Transform
+ pos: 69.5,78.5
+ parent: 1
+ - uid: 34790
+ components:
+ - type: Transform
+ pos: 68.5,78.5
+ parent: 1
+ - uid: 34791
+ components:
+ - type: Transform
+ pos: 67.5,78.5
+ parent: 1
+ - uid: 34792
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 34793
+ components:
+ - type: Transform
+ pos: 65.5,78.5
+ parent: 1
+ - uid: 34794
+ components:
+ - type: Transform
+ pos: 64.5,78.5
+ parent: 1
+ - uid: 34795
+ components:
+ - type: Transform
+ pos: 62.5,78.5
+ parent: 1
+ - uid: 34796
+ components:
+ - type: Transform
+ pos: 60.5,78.5
+ parent: 1
+ - uid: 34797
+ components:
+ - type: Transform
+ pos: 61.5,78.5
+ parent: 1
+ - uid: 34798
+ components:
+ - type: Transform
+ pos: 59.5,78.5
+ parent: 1
+ - uid: 34799
+ components:
+ - type: Transform
+ pos: 63.5,78.5
+ parent: 1
+ - uid: 34800
+ components:
+ - type: Transform
+ pos: 62.5,77.5
+ parent: 1
+ - uid: 34802
+ components:
+ - type: Transform
+ pos: 59.5,77.5
+ parent: 1
+ - uid: 34803
+ components:
+ - type: Transform
+ pos: 59.5,76.5
+ parent: 1
+ - uid: 34804
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - uid: 34805
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 1
+ - uid: 34806
+ components:
+ - type: Transform
+ pos: 59.5,73.5
+ parent: 1
+ - uid: 34807
+ components:
+ - type: Transform
+ pos: 59.5,72.5
+ parent: 1
+ - uid: 34808
+ components:
+ - type: Transform
+ pos: 59.5,71.5
+ parent: 1
+ - uid: 34809
+ components:
+ - type: Transform
+ pos: 59.5,70.5
+ parent: 1
+ - uid: 34810
+ components:
+ - type: Transform
+ pos: 59.5,68.5
+ parent: 1
+ - uid: 34811
+ components:
+ - type: Transform
+ pos: 59.5,69.5
+ parent: 1
+ - uid: 34812
+ components:
+ - type: Transform
+ pos: 60.5,68.5
+ parent: 1
+ - uid: 34813
+ components:
+ - type: Transform
+ pos: 61.5,68.5
+ parent: 1
+ - uid: 34817
+ components:
+ - type: Transform
+ pos: 64.5,67.5
+ parent: 1
+ - uid: 34820
+ components:
+ - type: Transform
+ pos: 64.5,79.5
+ parent: 1
+ - uid: 34831
+ components:
+ - type: Transform
+ pos: 85.5,81.5
+ parent: 1
+ - uid: 34837
+ components:
+ - type: Transform
+ pos: 136.5,89.5
+ parent: 1
+ - uid: 34845
+ components:
+ - type: Transform
+ pos: 132.5,93.5
+ parent: 1
+ - uid: 34888
+ components:
+ - type: Transform
+ pos: 53.5,117.5
+ parent: 1
+ - uid: 34889
+ components:
+ - type: Transform
+ pos: 55.5,118.5
+ parent: 1
+ - uid: 34895
+ components:
+ - type: Transform
+ pos: 120.5,89.5
+ parent: 1
+ - uid: 34899
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - uid: 34900
+ components:
+ - type: Transform
+ pos: 123.5,94.5
+ parent: 1
+ - uid: 34901
+ components:
+ - type: Transform
+ pos: 122.5,94.5
+ parent: 1
+ - uid: 34911
+ components:
+ - type: Transform
+ pos: 135.5,89.5
+ parent: 1
+ - uid: 34912
+ components:
+ - type: Transform
+ pos: 132.5,90.5
+ parent: 1
+ - uid: 34913
+ components:
+ - type: Transform
+ pos: 133.5,89.5
+ parent: 1
+ - uid: 34914
+ components:
+ - type: Transform
+ pos: 136.5,90.5
+ parent: 1
+ - uid: 34922
+ components:
+ - type: Transform
+ pos: 136.5,92.5
+ parent: 1
+ - uid: 34934
+ components:
+ - type: Transform
+ pos: 135.5,86.5
+ parent: 1
+ - uid: 34962
+ components:
+ - type: Transform
+ pos: 136.5,91.5
+ parent: 1
+ - uid: 35014
+ components:
+ - type: Transform
+ pos: 63.5,34.5
+ parent: 1
+ - uid: 35023
+ components:
+ - type: Transform
+ pos: 112.5,167.5
+ parent: 1
+ - uid: 35024
+ components:
+ - type: Transform
+ pos: 111.5,167.5
+ parent: 1
+ - uid: 35026
+ components:
+ - type: Transform
+ pos: 108.5,168.5
+ parent: 1
+ - uid: 35027
+ components:
+ - type: Transform
+ pos: 107.5,168.5
+ parent: 1
+ - uid: 35028
+ components:
+ - type: Transform
+ pos: 113.5,167.5
+ parent: 1
+ - uid: 35029
+ components:
+ - type: Transform
+ pos: 114.5,170.5
+ parent: 1
+ - uid: 35030
+ components:
+ - type: Transform
+ pos: 115.5,169.5
+ parent: 1
+ - uid: 35031
+ components:
+ - type: Transform
+ pos: 116.5,169.5
+ parent: 1
+ - uid: 35032
+ components:
+ - type: Transform
+ pos: 117.5,169.5
+ parent: 1
+ - uid: 35033
+ components:
+ - type: Transform
+ pos: 118.5,169.5
+ parent: 1
+ - uid: 35034
+ components:
+ - type: Transform
+ pos: 119.5,169.5
+ parent: 1
+ - uid: 35035
+ components:
+ - type: Transform
+ pos: 119.5,168.5
+ parent: 1
+ - uid: 35036
+ components:
+ - type: Transform
+ pos: 119.5,170.5
+ parent: 1
+ - uid: 35040
+ components:
+ - type: Transform
+ pos: 117.5,172.5
+ parent: 1
+ - uid: 35041
+ components:
+ - type: Transform
+ pos: 117.5,171.5
+ parent: 1
+ - uid: 35042
+ components:
+ - type: Transform
+ pos: 117.5,170.5
+ parent: 1
+ - uid: 35046
+ components:
+ - type: Transform
+ pos: 108.5,169.5
+ parent: 1
+ - uid: 35123
+ components:
+ - type: Transform
+ pos: 89.5,158.5
+ parent: 1
+ - uid: 35131
+ components:
+ - type: Transform
+ pos: 109.5,170.5
+ parent: 1
+ - uid: 35132
+ components:
+ - type: Transform
+ pos: 109.5,167.5
+ parent: 1
+ - uid: 35133
+ components:
+ - type: Transform
+ pos: 103.5,172.5
+ parent: 1
+ - uid: 35134
+ components:
+ - type: Transform
+ pos: 103.5,171.5
+ parent: 1
+ - uid: 35145
+ components:
+ - type: Transform
+ pos: 21.5,110.5
+ parent: 1
+ - uid: 35146
+ components:
+ - type: Transform
+ pos: 21.5,111.5
+ parent: 1
+ - uid: 35226
+ components:
+ - type: Transform
+ pos: 92.5,40.5
+ parent: 1
+ - uid: 35233
+ components:
+ - type: Transform
+ pos: 128.5,150.5
+ parent: 1
+ - uid: 35234
+ components:
+ - type: Transform
+ pos: 127.5,150.5
+ parent: 1
+ - uid: 35235
+ components:
+ - type: Transform
+ pos: 127.5,151.5
+ parent: 1
+ - uid: 35236
+ components:
+ - type: Transform
+ pos: 127.5,153.5
+ parent: 1
+ - uid: 35237
+ components:
+ - type: Transform
+ pos: 127.5,154.5
+ parent: 1
+ - uid: 35238
+ components:
+ - type: Transform
+ pos: 128.5,154.5
+ parent: 1
+ - uid: 35239
+ components:
+ - type: Transform
+ pos: 129.5,154.5
+ parent: 1
+ - uid: 35240
+ components:
+ - type: Transform
+ pos: 130.5,154.5
+ parent: 1
+ - uid: 35241
+ components:
+ - type: Transform
+ pos: 131.5,154.5
+ parent: 1
+ - uid: 35242
+ components:
+ - type: Transform
+ pos: 131.5,153.5
+ parent: 1
+ - uid: 35243
+ components:
+ - type: Transform
+ pos: 131.5,152.5
+ parent: 1
+ - uid: 35244
+ components:
+ - type: Transform
+ pos: 131.5,151.5
+ parent: 1
+ - uid: 35245
+ components:
+ - type: Transform
+ pos: 131.5,150.5
+ parent: 1
+ - uid: 35246
+ components:
+ - type: Transform
+ pos: 130.5,150.5
+ parent: 1
+ - uid: 35282
+ components:
+ - type: Transform
+ pos: 89.5,166.5
+ parent: 1
+ - uid: 35283
+ components:
+ - type: Transform
+ pos: 89.5,165.5
+ parent: 1
+ - uid: 35284
+ components:
+ - type: Transform
+ pos: 89.5,164.5
+ parent: 1
+ - uid: 35285
+ components:
+ - type: Transform
+ pos: 89.5,163.5
+ parent: 1
+ - uid: 35286
+ components:
+ - type: Transform
+ pos: 89.5,162.5
+ parent: 1
+ - uid: 35287
+ components:
+ - type: Transform
+ pos: 88.5,162.5
+ parent: 1
+ - uid: 35288
+ components:
+ - type: Transform
+ pos: 85.5,162.5
+ parent: 1
+ - uid: 35289
+ components:
+ - type: Transform
+ pos: 84.5,162.5
+ parent: 1
+ - uid: 35290
+ components:
+ - type: Transform
+ pos: 83.5,162.5
+ parent: 1
+ - uid: 35291
+ components:
+ - type: Transform
+ pos: 75.5,158.5
+ parent: 1
+ - uid: 35292
+ components:
+ - type: Transform
+ pos: 83.5,160.5
+ parent: 1
+ - uid: 35293
+ components:
+ - type: Transform
+ pos: 83.5,159.5
+ parent: 1
+ - uid: 35294
+ components:
+ - type: Transform
+ pos: 82.5,159.5
+ parent: 1
+ - uid: 35295
+ components:
+ - type: Transform
+ pos: 81.5,159.5
+ parent: 1
+ - uid: 35296
+ components:
+ - type: Transform
+ pos: 80.5,159.5
+ parent: 1
+ - uid: 35297
+ components:
+ - type: Transform
+ pos: 79.5,159.5
+ parent: 1
+ - uid: 35298
+ components:
+ - type: Transform
+ pos: 77.5,159.5
+ parent: 1
+ - uid: 35299
+ components:
+ - type: Transform
+ pos: 76.5,159.5
+ parent: 1
+ - uid: 35300
+ components:
+ - type: Transform
+ pos: 75.5,159.5
+ parent: 1
+ - uid: 35301
+ components:
+ - type: Transform
+ pos: 75.5,160.5
+ parent: 1
+ - uid: 35302
+ components:
+ - type: Transform
+ pos: 75.5,161.5
+ parent: 1
+ - uid: 35303
+ components:
+ - type: Transform
+ pos: 78.5,160.5
+ parent: 1
+ - uid: 35304
+ components:
+ - type: Transform
+ pos: 78.5,161.5
+ parent: 1
+ - uid: 35305
+ components:
+ - type: Transform
+ pos: 81.5,160.5
+ parent: 1
+ - uid: 35306
+ components:
+ - type: Transform
+ pos: 81.5,161.5
+ parent: 1
+ - uid: 35307
+ components:
+ - type: Transform
+ pos: 83.5,158.5
+ parent: 1
+ - uid: 35308
+ components:
+ - type: Transform
+ pos: 91.5,162.5
+ parent: 1
+ - uid: 35309
+ components:
+ - type: Transform
+ pos: 91.5,161.5
+ parent: 1
+ - uid: 35310
+ components:
+ - type: Transform
+ pos: 91.5,164.5
+ parent: 1
+ - uid: 35311
+ components:
+ - type: Transform
+ pos: 91.5,165.5
+ parent: 1
+ - uid: 35312
+ components:
+ - type: Transform
+ pos: 91.5,167.5
+ parent: 1
+ - uid: 35313
+ components:
+ - type: Transform
+ pos: 91.5,168.5
+ parent: 1
+ - uid: 35315
+ components:
+ - type: Transform
+ pos: 90.5,169.5
+ parent: 1
+ - uid: 35316
+ components:
+ - type: Transform
+ pos: 90.5,170.5
+ parent: 1
+ - uid: 35317
+ components:
+ - type: Transform
+ pos: 90.5,171.5
+ parent: 1
+ - uid: 35318
+ components:
+ - type: Transform
+ pos: 90.5,172.5
+ parent: 1
+ - uid: 35319
+ components:
+ - type: Transform
+ pos: 91.5,172.5
+ parent: 1
+ - uid: 35320
+ components:
+ - type: Transform
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 35321
+ components:
+ - type: Transform
+ pos: 94.5,172.5
+ parent: 1
+ - uid: 35322
+ components:
+ - type: Transform
+ pos: 95.5,172.5
+ parent: 1
+ - uid: 35420
+ components:
+ - type: Transform
+ pos: 99.5,172.5
+ parent: 1
+ - uid: 35421
+ components:
+ - type: Transform
+ pos: 98.5,172.5
+ parent: 1
+ - uid: 35432
+ components:
+ - type: Transform
+ pos: 71.5,59.5
+ parent: 1
+ - uid: 35458
+ components:
+ - type: Transform
+ pos: 70.5,153.5
+ parent: 1
+ - uid: 35459
+ components:
+ - type: Transform
+ pos: 69.5,153.5
+ parent: 1
+ - uid: 35460
+ components:
+ - type: Transform
+ pos: 66.5,52.5
+ parent: 1
+ - uid: 35461
+ components:
+ - type: Transform
+ pos: 69.5,155.5
+ parent: 1
+ - uid: 35462
+ components:
+ - type: Transform
+ pos: 70.5,155.5
+ parent: 1
+ - uid: 35463
+ components:
+ - type: Transform
+ pos: 71.5,155.5
+ parent: 1
+ - uid: 35573
+ components:
+ - type: Transform
+ pos: 135.5,141.5
+ parent: 1
+ - uid: 35578
+ components:
+ - type: Transform
+ pos: 145.5,95.5
+ parent: 1
+ - uid: 35580
+ components:
+ - type: Transform
+ pos: 33.5,121.5
+ parent: 1
+ - uid: 35581
+ components:
+ - type: Transform
+ pos: 33.5,122.5
+ parent: 1
+ - uid: 35582
+ components:
+ - type: Transform
+ pos: 34.5,122.5
+ parent: 1
+ - uid: 35587
+ components:
+ - type: Transform
+ pos: 33.5,120.5
+ parent: 1
+ - uid: 35589
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 35594
+ components:
+ - type: Transform
+ pos: 69.5,164.5
+ parent: 1
+ - uid: 35596
+ components:
+ - type: Transform
+ pos: 69.5,163.5
+ parent: 1
+ - uid: 35601
+ components:
+ - type: Transform
+ pos: 67.5,162.5
+ parent: 1
+ - uid: 35604
+ components:
+ - type: Transform
+ pos: 68.5,162.5
+ parent: 1
+ - uid: 35637
+ components:
+ - type: Transform
+ pos: 146.5,86.5
+ parent: 1
+ - uid: 35641
+ components:
+ - type: Transform
+ pos: 152.5,86.5
+ parent: 1
+ - uid: 35668
+ components:
+ - type: Transform
+ pos: 59.5,126.5
+ parent: 1
+ - uid: 35669
+ components:
+ - type: Transform
+ pos: 58.5,126.5
+ parent: 1
+ - uid: 35670
+ components:
+ - type: Transform
+ pos: 57.5,126.5
+ parent: 1
+ - uid: 35671
+ components:
+ - type: Transform
+ pos: 56.5,126.5
+ parent: 1
+ - uid: 35672
+ components:
+ - type: Transform
+ pos: 55.5,126.5
+ parent: 1
+ - uid: 35673
+ components:
+ - type: Transform
+ pos: 54.5,126.5
+ parent: 1
+ - uid: 35674
+ components:
+ - type: Transform
+ pos: 53.5,126.5
+ parent: 1
+ - uid: 35675
+ components:
+ - type: Transform
+ pos: 52.5,126.5
+ parent: 1
+ - uid: 35676
+ components:
+ - type: Transform
+ pos: 52.5,125.5
+ parent: 1
+ - uid: 35677
+ components:
+ - type: Transform
+ pos: 52.5,124.5
+ parent: 1
+ - uid: 35678
+ components:
+ - type: Transform
+ pos: 52.5,123.5
+ parent: 1
+ - uid: 35679
+ components:
+ - type: Transform
+ pos: 52.5,122.5
+ parent: 1
+ - uid: 35680
+ components:
+ - type: Transform
+ pos: 52.5,121.5
+ parent: 1
+ - uid: 35681
+ components:
+ - type: Transform
+ pos: 52.5,119.5
+ parent: 1
+ - uid: 35682
+ components:
+ - type: Transform
+ pos: 51.5,119.5
+ parent: 1
+ - uid: 35683
+ components:
+ - type: Transform
+ pos: 50.5,119.5
+ parent: 1
+ - uid: 35684
+ components:
+ - type: Transform
+ pos: 49.5,119.5
+ parent: 1
+ - uid: 35699
+ components:
+ - type: Transform
+ pos: 34.5,119.5
+ parent: 1
+ - uid: 35700
+ components:
+ - type: Transform
+ pos: 32.5,119.5
+ parent: 1
+ - uid: 35701
+ components:
+ - type: Transform
+ pos: 33.5,119.5
+ parent: 1
+ - uid: 35702
+ components:
+ - type: Transform
+ pos: 30.5,119.5
+ parent: 1
+ - uid: 35703
+ components:
+ - type: Transform
+ pos: 29.5,119.5
+ parent: 1
+ - uid: 35704
+ components:
+ - type: Transform
+ pos: 28.5,119.5
+ parent: 1
+ - uid: 35705
+ components:
+ - type: Transform
+ pos: 27.5,119.5
+ parent: 1
+ - uid: 35706
+ components:
+ - type: Transform
+ pos: 26.5,119.5
+ parent: 1
+ - uid: 35708
+ components:
+ - type: Transform
+ pos: 24.5,119.5
+ parent: 1
+ - uid: 35709
+ components:
+ - type: Transform
+ pos: 25.5,119.5
+ parent: 1
+ - uid: 35710
+ components:
+ - type: Transform
+ pos: 24.5,118.5
+ parent: 1
+ - uid: 35711
+ components:
+ - type: Transform
+ pos: 24.5,117.5
+ parent: 1
+ - uid: 35712
+ components:
+ - type: Transform
+ pos: 24.5,116.5
+ parent: 1
+ - uid: 35713
+ components:
+ - type: Transform
+ pos: 23.5,116.5
+ parent: 1
+ - uid: 35714
+ components:
+ - type: Transform
+ pos: 22.5,116.5
+ parent: 1
+ - uid: 35715
+ components:
+ - type: Transform
+ pos: 21.5,116.5
+ parent: 1
+ - uid: 35716
+ components:
+ - type: Transform
+ pos: 20.5,116.5
+ parent: 1
+ - uid: 35719
+ components:
+ - type: Transform
+ pos: 18.5,115.5
+ parent: 1
+ - uid: 35720
+ components:
+ - type: Transform
+ pos: 18.5,114.5
+ parent: 1
+ - uid: 35721
+ components:
+ - type: Transform
+ pos: 18.5,113.5
+ parent: 1
+ - uid: 35722
+ components:
+ - type: Transform
+ pos: 18.5,112.5
+ parent: 1
+ - uid: 35723
+ components:
+ - type: Transform
+ pos: 18.5,111.5
+ parent: 1
+ - uid: 35724
+ components:
+ - type: Transform
+ pos: 18.5,110.5
+ parent: 1
+ - uid: 35725
+ components:
+ - type: Transform
+ pos: 18.5,109.5
+ parent: 1
+ - uid: 35726
+ components:
+ - type: Transform
+ pos: 18.5,108.5
+ parent: 1
+ - uid: 35727
+ components:
+ - type: Transform
+ pos: 19.5,108.5
+ parent: 1
+ - uid: 35728
+ components:
+ - type: Transform
+ pos: 20.5,108.5
+ parent: 1
+ - uid: 35729
+ components:
+ - type: Transform
+ pos: 21.5,108.5
+ parent: 1
+ - uid: 35730
+ components:
+ - type: Transform
+ pos: 22.5,108.5
+ parent: 1
+ - uid: 35731
+ components:
+ - type: Transform
+ pos: 22.5,107.5
+ parent: 1
+ - uid: 35732
+ components:
+ - type: Transform
+ pos: 22.5,106.5
+ parent: 1
+ - uid: 35733
+ components:
+ - type: Transform
+ pos: 22.5,105.5
+ parent: 1
+ - uid: 35734
+ components:
+ - type: Transform
+ pos: 22.5,104.5
+ parent: 1
+ - uid: 35736
+ components:
+ - type: Transform
+ pos: 23.5,115.5
+ parent: 1
+ - uid: 35737
+ components:
+ - type: Transform
+ pos: 23.5,114.5
+ parent: 1
+ - uid: 35738
+ components:
+ - type: Transform
+ pos: 23.5,113.5
+ parent: 1
+ - uid: 35739
+ components:
+ - type: Transform
+ pos: 23.5,112.5
+ parent: 1
+ - uid: 35743
+ components:
+ - type: Transform
+ pos: 20.5,117.5
+ parent: 1
+ - uid: 35744
+ components:
+ - type: Transform
+ pos: 20.5,118.5
+ parent: 1
+ - uid: 35748
+ components:
+ - type: Transform
+ pos: 153.5,86.5
+ parent: 1
+ - uid: 35802
+ components:
+ - type: Transform
+ pos: 56.5,130.5
+ parent: 1
+ - uid: 35803
+ components:
+ - type: Transform
+ pos: 53.5,151.5
+ parent: 1
+ - uid: 35804
+ components:
+ - type: Transform
+ pos: 122.5,160.5
+ parent: 1
+ - uid: 35805
+ components:
+ - type: Transform
+ pos: 56.5,136.5
+ parent: 1
+ - uid: 35806
+ components:
+ - type: Transform
+ pos: 57.5,136.5
+ parent: 1
+ - uid: 35807
+ components:
+ - type: Transform
+ pos: 53.5,153.5
+ parent: 1
+ - uid: 35809
+ components:
+ - type: Transform
+ pos: 53.5,150.5
+ parent: 1
+ - uid: 35810
+ components:
+ - type: Transform
+ pos: 53.5,152.5
+ parent: 1
+ - uid: 35811
+ components:
+ - type: Transform
+ pos: 53.5,136.5
+ parent: 1
+ - uid: 35813
+ components:
+ - type: Transform
+ pos: 54.5,136.5
+ parent: 1
+ - uid: 35814
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 35815
+ components:
+ - type: Transform
+ pos: 53.5,135.5
+ parent: 1
+ - uid: 35816
+ components:
+ - type: Transform
+ pos: 53.5,132.5
+ parent: 1
+ - uid: 35818
+ components:
+ - type: Transform
+ pos: 53.5,134.5
+ parent: 1
+ - uid: 35821
+ components:
+ - type: Transform
+ pos: 53.5,133.5
+ parent: 1
+ - uid: 35822
+ components:
+ - type: Transform
+ pos: 57.5,130.5
+ parent: 1
+ - uid: 35823
+ components:
+ - type: Transform
+ pos: 53.5,149.5
+ parent: 1
+ - uid: 35824
+ components:
+ - type: Transform
+ pos: 53.5,148.5
+ parent: 1
+ - uid: 35825
+ components:
+ - type: Transform
+ pos: 53.5,147.5
+ parent: 1
+ - uid: 35826
+ components:
+ - type: Transform
+ pos: 53.5,146.5
+ parent: 1
+ - uid: 35827
+ components:
+ - type: Transform
+ pos: 54.5,146.5
+ parent: 1
+ - uid: 35828
+ components:
+ - type: Transform
+ pos: 55.5,146.5
+ parent: 1
+ - uid: 35829
+ components:
+ - type: Transform
+ pos: 56.5,146.5
+ parent: 1
+ - uid: 35830
+ components:
+ - type: Transform
+ pos: 57.5,146.5
+ parent: 1
+ - uid: 35854
+ components:
+ - type: Transform
+ pos: 51.5,113.5
+ parent: 1
+ - uid: 35855
+ components:
+ - type: Transform
+ pos: 51.5,114.5
+ parent: 1
+ - uid: 35856
+ components:
+ - type: Transform
+ pos: 52.5,113.5
+ parent: 1
+ - uid: 35858
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 1
+ - uid: 35859
+ components:
+ - type: Transform
+ pos: 51.5,118.5
+ parent: 1
+ - uid: 35860
+ components:
+ - type: Transform
+ pos: 53.5,113.5
+ parent: 1
+ - uid: 35873
+ components:
+ - type: Transform
+ pos: 38.5,122.5
+ parent: 1
+ - uid: 35876
+ components:
+ - type: Transform
+ pos: 51.5,116.5
+ parent: 1
+ - uid: 35878
+ components:
+ - type: Transform
+ pos: 51.5,117.5
+ parent: 1
+ - uid: 35885
+ components:
+ - type: Transform
+ pos: 51.5,120.5
+ parent: 1
+ - uid: 35942
+ components:
+ - type: Transform
+ pos: 124.5,89.5
+ parent: 1
+ - uid: 35955
+ components:
+ - type: Transform
+ pos: 22.5,119.5
+ parent: 1
+ - uid: 35956
+ components:
+ - type: Transform
+ pos: 23.5,119.5
+ parent: 1
+ - uid: 35990
+ components:
+ - type: Transform
+ pos: 39.5,122.5
+ parent: 1
+ - uid: 35991
+ components:
+ - type: Transform
+ pos: 40.5,122.5
+ parent: 1
+ - uid: 35993
+ components:
+ - type: Transform
+ pos: 40.5,126.5
+ parent: 1
+ - uid: 35998
+ components:
+ - type: Transform
+ pos: 48.5,122.5
+ parent: 1
+ - uid: 36000
+ components:
+ - type: Transform
+ pos: 48.5,123.5
+ parent: 1
+ - uid: 36001
+ components:
+ - type: Transform
+ pos: 48.5,124.5
+ parent: 1
+ - uid: 36002
+ components:
+ - type: Transform
+ pos: 48.5,125.5
+ parent: 1
+ - uid: 36049
+ components:
+ - type: Transform
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 36054
+ components:
+ - type: Transform
+ pos: 42.5,126.5
+ parent: 1
+ - uid: 36093
+ components:
+ - type: Transform
+ pos: 25.5,68.5
+ parent: 1
+ - uid: 36096
+ components:
+ - type: Transform
+ pos: 20.5,75.5
+ parent: 1
+ - uid: 36097
+ components:
+ - type: Transform
+ pos: 25.5,75.5
+ parent: 1
+ - uid: 36098
+ components:
+ - type: Transform
+ pos: 23.5,74.5
+ parent: 1
+ - uid: 36100
+ components:
+ - type: Transform
+ pos: 20.5,68.5
+ parent: 1
+ - uid: 36101
+ components:
+ - type: Transform
+ pos: 20.5,69.5
+ parent: 1
+ - uid: 36102
+ components:
+ - type: Transform
+ pos: 20.5,70.5
+ parent: 1
+ - uid: 36103
+ components:
+ - type: Transform
+ pos: 20.5,71.5
+ parent: 1
+ - uid: 36104
+ components:
+ - type: Transform
+ pos: 20.5,72.5
+ parent: 1
+ - uid: 36105
+ components:
+ - type: Transform
+ pos: 20.5,73.5
+ parent: 1
+ - uid: 36107
+ components:
+ - type: Transform
+ pos: 21.5,74.5
+ parent: 1
+ - uid: 36108
+ components:
+ - type: Transform
+ pos: 22.5,74.5
+ parent: 1
+ - uid: 36109
+ components:
+ - type: Transform
+ pos: 24.5,74.5
+ parent: 1
+ - uid: 36110
+ components:
+ - type: Transform
+ pos: 25.5,74.5
+ parent: 1
+ - uid: 36111
+ components:
+ - type: Transform
+ pos: 25.5,73.5
+ parent: 1
+ - uid: 36112
+ components:
+ - type: Transform
+ pos: 25.5,72.5
+ parent: 1
+ - uid: 36113
+ components:
+ - type: Transform
+ pos: 25.5,71.5
+ parent: 1
+ - uid: 36114
+ components:
+ - type: Transform
+ pos: 25.5,70.5
+ parent: 1
+ - uid: 36115
+ components:
+ - type: Transform
+ pos: 25.5,69.5
+ parent: 1
+ - uid: 36117
+ components:
+ - type: Transform
+ pos: 24.5,68.5
+ parent: 1
+ - uid: 36118
+ components:
+ - type: Transform
+ pos: 23.5,68.5
+ parent: 1
+ - uid: 36119
+ components:
+ - type: Transform
+ pos: 22.5,68.5
+ parent: 1
+ - uid: 36120
+ components:
+ - type: Transform
+ pos: 21.5,68.5
+ parent: 1
+ - uid: 36121
+ components:
+ - type: Transform
+ pos: 20.5,74.5
+ parent: 1
+ - uid: 36139
+ components:
+ - type: Transform
+ pos: 90.5,81.5
+ parent: 1
+ - uid: 36144
+ components:
+ - type: Transform
+ pos: 43.5,126.5
+ parent: 1
+ - uid: 36145
+ components:
+ - type: Transform
+ pos: 40.5,125.5
+ parent: 1
+ - uid: 36147
+ components:
+ - type: Transform
+ pos: 40.5,123.5
+ parent: 1
+ - uid: 36150
+ components:
+ - type: Transform
+ pos: 41.5,126.5
+ parent: 1
+ - uid: 36151
+ components:
+ - type: Transform
+ pos: 40.5,124.5
+ parent: 1
+ - uid: 36181
+ components:
+ - type: Transform
+ pos: 15.5,107.5
+ parent: 1
+ - uid: 36182
+ components:
+ - type: Transform
+ pos: 16.5,107.5
+ parent: 1
+ - uid: 36183
+ components:
+ - type: Transform
+ pos: 17.5,107.5
+ parent: 1
+ - uid: 36184
+ components:
+ - type: Transform
+ pos: 18.5,107.5
+ parent: 1
+ - uid: 36185
+ components:
+ - type: Transform
+ pos: 20.5,104.5
+ parent: 1
+ - uid: 36186
+ components:
+ - type: Transform
+ pos: 19.5,104.5
+ parent: 1
+ - uid: 36187
+ components:
+ - type: Transform
+ pos: 18.5,104.5
+ parent: 1
+ - uid: 36188
+ components:
+ - type: Transform
+ pos: 18.5,103.5
+ parent: 1
+ - uid: 36189
+ components:
+ - type: Transform
+ pos: 18.5,102.5
+ parent: 1
+ - uid: 36190
+ components:
+ - type: Transform
+ pos: 18.5,101.5
+ parent: 1
+ - uid: 36191
+ components:
+ - type: Transform
+ pos: 18.5,100.5
+ parent: 1
+ - uid: 36199
+ components:
+ - type: Transform
+ pos: 22.5,96.5
+ parent: 1
+ - uid: 36200
+ components:
+ - type: Transform
+ pos: 23.5,96.5
+ parent: 1
+ - uid: 36201
+ components:
+ - type: Transform
+ pos: 24.5,96.5
+ parent: 1
+ - uid: 36202
+ components:
+ - type: Transform
+ pos: 22.5,97.5
+ parent: 1
+ - uid: 36203
+ components:
+ - type: Transform
+ pos: 22.5,98.5
+ parent: 1
+ - uid: 36204
+ components:
+ - type: Transform
+ pos: 22.5,99.5
+ parent: 1
+ - uid: 36205
+ components:
+ - type: Transform
+ pos: 22.5,100.5
+ parent: 1
+ - uid: 36206
+ components:
+ - type: Transform
+ pos: 29.5,97.5
+ parent: 1
+ - uid: 36207
+ components:
+ - type: Transform
+ pos: 28.5,97.5
+ parent: 1
+ - uid: 36208
+ components:
+ - type: Transform
+ pos: 27.5,97.5
+ parent: 1
+ - uid: 36209
+ components:
+ - type: Transform
+ pos: 26.5,97.5
+ parent: 1
+ - uid: 36210
+ components:
+ - type: Transform
+ pos: 25.5,97.5
+ parent: 1
+ - uid: 36211
+ components:
+ - type: Transform
+ pos: 25.5,96.5
+ parent: 1
+ - uid: 36213
+ components:
+ - type: Transform
+ pos: 27.5,95.5
+ parent: 1
+ - uid: 36214
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 1
+ - uid: 36215
+ components:
+ - type: Transform
+ pos: 26.5,95.5
+ parent: 1
+ - uid: 36242
+ components:
+ - type: Transform
+ pos: 18.5,80.5
+ parent: 1
+ - uid: 36243
+ components:
+ - type: Transform
+ pos: 19.5,80.5
+ parent: 1
+ - uid: 36244
+ components:
+ - type: Transform
+ pos: 20.5,80.5
+ parent: 1
+ - uid: 36245
+ components:
+ - type: Transform
+ pos: 21.5,80.5
+ parent: 1
+ - uid: 36246
+ components:
+ - type: Transform
+ pos: 22.5,80.5
+ parent: 1
+ - uid: 36247
+ components:
+ - type: Transform
+ pos: 23.5,80.5
+ parent: 1
+ - uid: 36248
+ components:
+ - type: Transform
+ pos: 25.5,80.5
+ parent: 1
+ - uid: 36249
+ components:
+ - type: Transform
+ pos: 26.5,80.5
+ parent: 1
+ - uid: 36250
+ components:
+ - type: Transform
+ pos: 24.5,80.5
+ parent: 1
+ - uid: 36251
+ components:
+ - type: Transform
+ pos: 22.5,81.5
+ parent: 1
+ - uid: 36252
+ components:
+ - type: Transform
+ pos: 22.5,82.5
+ parent: 1
+ - uid: 36253
+ components:
+ - type: Transform
+ pos: 22.5,83.5
+ parent: 1
+ - uid: 36254
+ components:
+ - type: Transform
+ pos: 22.5,84.5
+ parent: 1
+ - uid: 36255
+ components:
+ - type: Transform
+ pos: 22.5,85.5
+ parent: 1
+ - uid: 36256
+ components:
+ - type: Transform
+ pos: 22.5,86.5
+ parent: 1
+ - uid: 36257
+ components:
+ - type: Transform
+ pos: 22.5,87.5
+ parent: 1
+ - uid: 36258
+ components:
+ - type: Transform
+ pos: 21.5,86.5
+ parent: 1
+ - uid: 36259
+ components:
+ - type: Transform
+ pos: 20.5,86.5
+ parent: 1
+ - uid: 36260
+ components:
+ - type: Transform
+ pos: 19.5,86.5
+ parent: 1
+ - uid: 36261
+ components:
+ - type: Transform
+ pos: 18.5,86.5
+ parent: 1
+ - uid: 36262
+ components:
+ - type: Transform
+ pos: 22.5,88.5
+ parent: 1
+ - uid: 36263
+ components:
+ - type: Transform
+ pos: 22.5,89.5
+ parent: 1
+ - uid: 36264
+ components:
+ - type: Transform
+ pos: 22.5,90.5
+ parent: 1
+ - uid: 36265
+ components:
+ - type: Transform
+ pos: 22.5,91.5
+ parent: 1
+ - uid: 36266
+ components:
+ - type: Transform
+ pos: 22.5,92.5
+ parent: 1
+ - uid: 36270
+ components:
+ - type: Transform
+ pos: 22.5,93.5
+ parent: 1
+ - uid: 36271
+ components:
+ - type: Transform
+ pos: 22.5,94.5
+ parent: 1
+ - uid: 36272
+ components:
+ - type: Transform
+ pos: 26.5,75.5
+ parent: 1
+ - uid: 36273
+ components:
+ - type: Transform
+ pos: 27.5,75.5
+ parent: 1
+ - uid: 36275
+ components:
+ - type: Transform
+ pos: 28.5,73.5
+ parent: 1
+ - uid: 36276
+ components:
+ - type: Transform
+ pos: 28.5,74.5
+ parent: 1
+ - uid: 36277
+ components:
+ - type: Transform
+ pos: 28.5,71.5
+ parent: 1
+ - uid: 36278
+ components:
+ - type: Transform
+ pos: 28.5,70.5
+ parent: 1
+ - uid: 36279
+ components:
+ - type: Transform
+ pos: 28.5,69.5
+ parent: 1
+ - uid: 36280
+ components:
+ - type: Transform
+ pos: 28.5,68.5
+ parent: 1
+ - uid: 36281
+ components:
+ - type: Transform
+ pos: 28.5,67.5
+ parent: 1
+ - uid: 36286
+ components:
+ - type: Transform
+ pos: 28.5,79.5
+ parent: 1
+ - uid: 36287
+ components:
+ - type: Transform
+ pos: 28.5,80.5
+ parent: 1
+ - uid: 36288
+ components:
+ - type: Transform
+ pos: 28.5,81.5
+ parent: 1
+ - uid: 36289
+ components:
+ - type: Transform
+ pos: 28.5,82.5
+ parent: 1
+ - uid: 36290
+ components:
+ - type: Transform
+ pos: 28.5,84.5
+ parent: 1
+ - uid: 36291
+ components:
+ - type: Transform
+ pos: 28.5,83.5
+ parent: 1
+ - uid: 36292
+ components:
+ - type: Transform
+ pos: 25.5,81.5
+ parent: 1
+ - uid: 36293
+ components:
+ - type: Transform
+ pos: 25.5,82.5
+ parent: 1
+ - uid: 36294
+ components:
+ - type: Transform
+ pos: 25.5,83.5
+ parent: 1
+ - uid: 36295
+ components:
+ - type: Transform
+ pos: 25.5,84.5
+ parent: 1
+ - uid: 36296
+ components:
+ - type: Transform
+ pos: 25.5,85.5
+ parent: 1
+ - uid: 36297
+ components:
+ - type: Transform
+ pos: 25.5,86.5
+ parent: 1
+ - uid: 36298
+ components:
+ - type: Transform
+ pos: 25.5,87.5
+ parent: 1
+ - uid: 36299
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 1
+ - uid: 36300
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 1
+ - uid: 36301
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 1
+ - uid: 36302
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 1
+ - uid: 36303
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 1
+ - uid: 36304
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 1
+ - uid: 36305
+ components:
+ - type: Transform
+ pos: 26.5,84.5
+ parent: 1
+ - uid: 36312
+ components:
+ - type: Transform
+ pos: 36.5,80.5
+ parent: 1
+ - uid: 36313
+ components:
+ - type: Transform
+ pos: 37.5,80.5
+ parent: 1
+ - uid: 36314
+ components:
+ - type: Transform
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 36315
+ components:
+ - type: Transform
+ pos: 39.5,80.5
+ parent: 1
+ - uid: 36316
+ components:
+ - type: Transform
+ pos: 40.5,80.5
+ parent: 1
+ - uid: 36317
+ components:
+ - type: Transform
+ pos: 32.5,80.5
+ parent: 1
+ - uid: 36399
+ components:
+ - type: Transform
+ pos: 137.5,126.5
+ parent: 1
+ - uid: 36401
+ components:
+ - type: Transform
+ pos: 140.5,131.5
+ parent: 1
+ - uid: 36403
+ components:
+ - type: Transform
+ pos: 141.5,131.5
+ parent: 1
+ - uid: 36410
+ components:
+ - type: Transform
+ pos: 58.5,122.5
+ parent: 1
+ - uid: 36411
+ components:
+ - type: Transform
+ pos: 58.5,123.5
+ parent: 1
+ - uid: 36462
+ components:
+ - type: Transform
+ pos: 32.5,81.5
+ parent: 1
+ - uid: 36463
+ components:
+ - type: Transform
+ pos: 32.5,82.5
+ parent: 1
+ - uid: 36464
+ components:
+ - type: Transform
+ pos: 32.5,83.5
+ parent: 1
+ - uid: 36465
+ components:
+ - type: Transform
+ pos: 31.5,83.5
+ parent: 1
+ - uid: 36466
+ components:
+ - type: Transform
+ pos: 33.5,83.5
+ parent: 1
+ - uid: 36467
+ components:
+ - type: Transform
+ pos: 34.5,83.5
+ parent: 1
+ - uid: 36491
+ components:
+ - type: Transform
+ pos: 85.5,61.5
+ parent: 1
+ - uid: 36502
+ components:
+ - type: Transform
+ pos: 21.5,90.5
+ parent: 1
+ - uid: 36505
+ components:
+ - type: Transform
+ pos: 20.5,90.5
+ parent: 1
+ - uid: 36508
+ components:
+ - type: Transform
+ pos: 19.5,90.5
+ parent: 1
+ - uid: 36510
+ components:
+ - type: Transform
+ pos: 18.5,90.5
+ parent: 1
+ - uid: 36511
+ components:
+ - type: Transform
+ pos: 18.5,91.5
+ parent: 1
+ - uid: 36512
+ components:
+ - type: Transform
+ pos: 18.5,92.5
+ parent: 1
+ - uid: 36513
+ components:
+ - type: Transform
+ pos: 18.5,93.5
+ parent: 1
+ - uid: 36514
+ components:
+ - type: Transform
+ pos: 18.5,94.5
+ parent: 1
+ - uid: 36515
+ components:
+ - type: Transform
+ pos: 19.5,94.5
+ parent: 1
+ - uid: 36516
+ components:
+ - type: Transform
+ pos: 20.5,94.5
+ parent: 1
+ - uid: 36517
+ components:
+ - type: Transform
+ pos: 21.5,94.5
+ parent: 1
+ - uid: 36538
+ components:
+ - type: Transform
+ pos: 53.5,140.5
+ parent: 1
+ - uid: 36539
+ components:
+ - type: Transform
+ pos: 53.5,141.5
+ parent: 1
+ - uid: 36540
+ components:
+ - type: Transform
+ pos: 52.5,141.5
+ parent: 1
+ - uid: 36541
+ components:
+ - type: Transform
+ pos: 51.5,141.5
+ parent: 1
+ - uid: 36542
+ components:
+ - type: Transform
+ pos: 50.5,141.5
+ parent: 1
+ - uid: 36543
+ components:
+ - type: Transform
+ pos: 49.5,141.5
+ parent: 1
+ - uid: 36544
+ components:
+ - type: Transform
+ pos: 130.5,111.5
+ parent: 1
+ - uid: 36547
+ components:
+ - type: Transform
+ pos: 162.5,57.5
+ parent: 1
+ - uid: 36549
+ components:
+ - type: Transform
+ pos: 164.5,57.5
+ parent: 1
+ - uid: 36550
+ components:
+ - type: Transform
+ pos: 165.5,57.5
+ parent: 1
+ - uid: 36551
+ components:
+ - type: Transform
+ pos: 166.5,57.5
+ parent: 1
+ - uid: 36609
+ components:
+ - type: Transform
+ pos: 97.5,172.5
+ parent: 1
+ - uid: 36615
+ components:
+ - type: Transform
+ pos: 92.5,168.5
+ parent: 1
+ - uid: 36670
+ components:
+ - type: Transform
+ pos: 123.5,140.5
+ parent: 1
+ - uid: 36671
+ components:
+ - type: Transform
+ pos: 121.5,136.5
+ parent: 1
+ - uid: 36672
+ components:
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - uid: 36673
+ components:
+ - type: Transform
+ pos: 119.5,136.5
+ parent: 1
+ - uid: 36674
+ components:
+ - type: Transform
+ pos: 119.5,137.5
+ parent: 1
+ - uid: 36675
+ components:
+ - type: Transform
+ pos: 119.5,138.5
+ parent: 1
+ - uid: 36676
+ components:
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - uid: 36677
+ components:
+ - type: Transform
+ pos: 121.5,138.5
+ parent: 1
+ - uid: 36678
+ components:
+ - type: Transform
+ pos: 93.5,155.5
+ parent: 1
+ - uid: 36679
+ components:
+ - type: Transform
+ pos: 99.5,156.5
+ parent: 1
+ - uid: 36682
+ components:
+ - type: Transform
+ pos: 116.5,159.5
+ parent: 1
+ - uid: 36683
+ components:
+ - type: Transform
+ pos: 117.5,159.5
+ parent: 1
+ - uid: 36684
+ components:
+ - type: Transform
+ pos: 118.5,159.5
+ parent: 1
+ - uid: 36685
+ components:
+ - type: Transform
+ pos: 118.5,160.5
+ parent: 1
+ - uid: 36686
+ components:
+ - type: Transform
+ pos: 118.5,161.5
+ parent: 1
+ - uid: 36687
+ components:
+ - type: Transform
+ pos: 105.5,159.5
+ parent: 1
+ - uid: 36688
+ components:
+ - type: Transform
+ pos: 105.5,160.5
+ parent: 1
+ - uid: 36689
+ components:
+ - type: Transform
+ pos: 106.5,160.5
+ parent: 1
+ - uid: 36690
+ components:
+ - type: Transform
+ pos: 107.5,160.5
+ parent: 1
+ - uid: 36691
+ components:
+ - type: Transform
+ pos: 108.5,160.5
+ parent: 1
+ - uid: 36692
+ components:
+ - type: Transform
+ pos: 109.5,160.5
+ parent: 1
+ - uid: 36693
+ components:
+ - type: Transform
+ pos: 111.5,160.5
+ parent: 1
+ - uid: 36694
+ components:
+ - type: Transform
+ pos: 112.5,160.5
+ parent: 1
+ - uid: 36695
+ components:
+ - type: Transform
+ pos: 110.5,160.5
+ parent: 1
+ - uid: 36696
+ components:
+ - type: Transform
+ pos: 117.5,161.5
+ parent: 1
+ - uid: 36697
+ components:
+ - type: Transform
+ pos: 116.5,161.5
+ parent: 1
+ - uid: 36698
+ components:
+ - type: Transform
+ pos: 116.5,160.5
+ parent: 1
+ - uid: 36699
+ components:
+ - type: Transform
+ pos: 104.5,160.5
+ parent: 1
+ - uid: 36700
+ components:
+ - type: Transform
+ pos: 103.5,160.5
+ parent: 1
+ - uid: 36707
+ components:
+ - type: Transform
+ pos: 105.5,158.5
+ parent: 1
+ - uid: 36708
+ components:
+ - type: Transform
+ pos: 112.5,161.5
+ parent: 1
+ - uid: 36709
+ components:
+ - type: Transform
+ pos: 112.5,162.5
+ parent: 1
+ - uid: 36717
+ components:
+ - type: Transform
+ pos: 114.5,159.5
+ parent: 1
+ - uid: 36718
+ components:
+ - type: Transform
+ pos: 115.5,159.5
+ parent: 1
+ - uid: 36720
+ components:
+ - type: Transform
+ pos: 99.5,154.5
+ parent: 1
+ - uid: 36721
+ components:
+ - type: Transform
+ pos: 99.5,153.5
+ parent: 1
+ - uid: 36722
+ components:
+ - type: Transform
+ pos: 99.5,152.5
+ parent: 1
+ - uid: 36723
+ components:
+ - type: Transform
+ pos: 99.5,151.5
+ parent: 1
+ - uid: 36724
+ components:
+ - type: Transform
+ pos: 99.5,150.5
+ parent: 1
+ - uid: 36725
+ components:
+ - type: Transform
+ pos: 99.5,149.5
+ parent: 1
+ - uid: 36728
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 1
+ - uid: 36729
+ components:
+ - type: Transform
+ pos: 51.5,55.5
+ parent: 1
+ - uid: 36730
+ components:
+ - type: Transform
+ pos: 46.5,58.5
+ parent: 1
+ - uid: 36731
+ components:
+ - type: Transform
+ pos: 42.5,50.5
+ parent: 1
+ - uid: 36734
+ components:
+ - type: Transform
+ pos: 124.5,106.5
+ parent: 1
+ - uid: 36735
+ components:
+ - type: Transform
+ pos: 124.5,105.5
+ parent: 1
+ - uid: 36742
+ components:
+ - type: Transform
+ pos: 85.5,127.5
+ parent: 1
+ - uid: 36743
+ components:
+ - type: Transform
+ pos: 76.5,142.5
+ parent: 1
+ - uid: 36760
+ components:
+ - type: Transform
+ pos: 83.5,127.5
+ parent: 1
+ - uid: 36814
+ components:
+ - type: Transform
+ pos: 95.5,87.5
+ parent: 1
+ - uid: 36859
+ components:
+ - type: Transform
+ pos: 98.5,170.5
+ parent: 1
+ - uid: 36862
+ components:
+ - type: Transform
+ pos: 98.5,171.5
+ parent: 1
+ - uid: 36865
+ components:
+ - type: Transform
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 36911
+ components:
+ - type: Transform
+ pos: 85.5,143.5
+ parent: 1
+ - uid: 36953
+ components:
+ - type: Transform
+ pos: 85.5,140.5
+ parent: 1
+ - uid: 36954
+ components:
+ - type: Transform
+ pos: 85.5,139.5
+ parent: 1
+ - uid: 36955
+ components:
+ - type: Transform
+ pos: 85.5,138.5
+ parent: 1
+ - uid: 37023
+ components:
+ - type: Transform
+ pos: 99.5,168.5
+ parent: 1
+ - uid: 37024
+ components:
+ - type: Transform
+ pos: 99.5,167.5
+ parent: 1
+ - uid: 37025
+ components:
+ - type: Transform
+ pos: 99.5,166.5
+ parent: 1
+ - uid: 37026
+ components:
+ - type: Transform
+ pos: 99.5,165.5
+ parent: 1
+ - uid: 37027
+ components:
+ - type: Transform
+ pos: 96.5,165.5
+ parent: 1
+ - uid: 37028
+ components:
+ - type: Transform
+ pos: 95.5,165.5
+ parent: 1
+ - uid: 37052
+ components:
+ - type: Transform
+ pos: 30.5,74.5
+ parent: 1
+ - uid: 37053
+ components:
+ - type: Transform
+ pos: 29.5,74.5
+ parent: 1
+ - uid: 37056
+ components:
+ - type: Transform
+ pos: 89.5,81.5
+ parent: 1
+ - uid: 37343
+ components:
+ - type: Transform
+ pos: 41.5,118.5
+ parent: 1
+ - uid: 37354
+ components:
+ - type: Transform
+ pos: 140.5,110.5
+ parent: 1
+ - uid: 37355
+ components:
+ - type: Transform
+ pos: 141.5,110.5
+ parent: 1
+ - uid: 37385
+ components:
+ - type: Transform
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 37386
+ components:
+ - type: Transform
+ pos: 54.5,50.5
+ parent: 1
+ - uid: 37387
+ components:
+ - type: Transform
+ pos: 54.5,49.5
+ parent: 1
+ - uid: 37388
+ components:
+ - type: Transform
+ pos: 65.5,52.5
+ parent: 1
+ - uid: 37392
+ components:
+ - type: Transform
+ pos: 109.5,68.5
+ parent: 1
+ - uid: 37393
+ components:
+ - type: Transform
+ pos: 103.5,68.5
+ parent: 1
+ - uid: 37430
+ components:
+ - type: Transform
+ pos: 84.5,51.5
+ parent: 1
+ - uid: 37431
+ components:
+ - type: Transform
+ pos: 83.5,50.5
+ parent: 1
+ - uid: 37432
+ components:
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - uid: 37433
+ components:
+ - type: Transform
+ pos: 83.5,43.5
+ parent: 1
+ - uid: 37434
+ components:
+ - type: Transform
+ pos: 83.5,44.5
+ parent: 1
+ - uid: 37435
+ components:
+ - type: Transform
+ pos: 83.5,46.5
+ parent: 1
+ - uid: 37436
+ components:
+ - type: Transform
+ pos: 83.5,48.5
+ parent: 1
+ - uid: 37437
+ components:
+ - type: Transform
+ pos: 83.5,47.5
+ parent: 1
+ - uid: 37463
+ components:
+ - type: Transform
+ pos: 88.5,54.5
+ parent: 1
+ - uid: 37464
+ components:
+ - type: Transform
+ pos: 88.5,53.5
+ parent: 1
+ - uid: 37465
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+ - uid: 37502
+ components:
+ - type: Transform
+ pos: 143.5,123.5
+ parent: 1
+ - uid: 37503
+ components:
+ - type: Transform
+ pos: 142.5,123.5
+ parent: 1
+ - uid: 37511
+ components:
+ - type: Transform
+ pos: 52.5,139.5
+ parent: 1
+ - uid: 37512
+ components:
+ - type: Transform
+ pos: 51.5,139.5
+ parent: 1
+ - uid: 37517
+ components:
+ - type: Transform
+ pos: 29.5,69.5
+ parent: 1
+ - uid: 37518
+ components:
+ - type: Transform
+ pos: 30.5,69.5
+ parent: 1
+ - uid: 37520
+ components:
+ - type: Transform
+ pos: 64.5,54.5
+ parent: 1
+ - uid: 37521
+ components:
+ - type: Transform
+ pos: 64.5,55.5
+ parent: 1
+ - uid: 37522
+ components:
+ - type: Transform
+ pos: 64.5,53.5
+ parent: 1
+ - uid: 37523
+ components:
+ - type: Transform
+ pos: 65.5,55.5
+ parent: 1
+ - uid: 37524
+ components:
+ - type: Transform
+ pos: 66.5,55.5
+ parent: 1
+ - uid: 37525
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - uid: 37526
+ components:
+ - type: Transform
+ pos: 64.5,156.5
+ parent: 1
+ - uid: 37527
+ components:
+ - type: Transform
+ pos: 65.5,156.5
+ parent: 1
+ - uid: 37528
+ components:
+ - type: Transform
+ pos: 66.5,156.5
+ parent: 1
+ - uid: 37529
+ components:
+ - type: Transform
+ pos: 67.5,156.5
+ parent: 1
+ - uid: 37530
+ components:
+ - type: Transform
+ pos: 63.5,157.5
+ parent: 1
+ - uid: 37555
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 1
+ - uid: 37556
+ components:
+ - type: Transform
+ pos: 47.5,99.5
+ parent: 1
+ - uid: 37557
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 1
+- proto: CableApcStack
+ entities:
+ - uid: 623
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 48.77754,84.81634
+ parent: 1
+ - uid: 20967
+ components:
+ - type: Transform
+ pos: 60.75863,89.672554
+ parent: 1
+ - uid: 37146
+ components:
+ - type: Transform
+ pos: 164.5,149.5
+ parent: 1
+- proto: Cablecuffs
+ entities:
+ - uid: 34670
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 162.47273,66.45363
+ parent: 1
+- proto: CableHV
+ entities:
+ - uid: 34
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - uid: 35
+ components:
+ - type: Transform
+ pos: 131.5,117.5
+ parent: 1
+ - uid: 36
+ components:
+ - type: Transform
+ pos: 149.5,139.5
+ parent: 1
+ - uid: 73
+ components:
+ - type: Transform
+ pos: 54.5,136.5
+ parent: 1
+ - uid: 78
+ components:
+ - type: Transform
+ pos: 72.5,158.5
+ parent: 1
+ - uid: 83
+ components:
+ - type: Transform
+ pos: 83.5,54.5
+ parent: 1
+ - uid: 137
+ components:
+ - type: Transform
+ pos: 71.5,158.5
+ parent: 1
+ - uid: 164
+ components:
+ - type: Transform
+ pos: 67.5,158.5
+ parent: 1
+ - uid: 181
+ components:
+ - type: Transform
+ pos: 67.5,157.5
+ parent: 1
+ - uid: 440
+ components:
+ - type: Transform
+ pos: 138.5,132.5
+ parent: 1
+ - uid: 441
+ components:
+ - type: Transform
+ pos: 138.5,136.5
+ parent: 1
+ - uid: 442
+ components:
+ - type: Transform
+ pos: 138.5,135.5
+ parent: 1
+ - uid: 465
+ components:
+ - type: Transform
+ pos: 138.5,134.5
+ parent: 1
+ - uid: 527
+ components:
+ - type: Transform
+ pos: 72.5,157.5
+ parent: 1
+ - uid: 575
+ components:
+ - type: Transform
+ pos: 138.5,133.5
+ parent: 1
+ - uid: 699
+ components:
+ - type: Transform
+ pos: 136.5,138.5
+ parent: 1
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 137.5,138.5
+ parent: 1
+ - uid: 701
+ components:
+ - type: Transform
+ pos: 138.5,138.5
+ parent: 1
+ - uid: 702
+ components:
+ - type: Transform
+ pos: 138.5,137.5
+ parent: 1
+ - uid: 703
+ components:
+ - type: Transform
+ pos: 134.5,112.5
+ parent: 1
+ - uid: 704
+ components:
+ - type: Transform
+ pos: 133.5,113.5
+ parent: 1
+ - uid: 705
+ components:
+ - type: Transform
+ pos: 133.5,112.5
+ parent: 1
+ - uid: 894
+ components:
+ - type: Transform
+ pos: 57.5,130.5
+ parent: 1
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 124.5,113.5
+ parent: 1
+ - uid: 968
+ components:
+ - type: Transform
+ pos: 47.5,52.5
+ parent: 1
+ - uid: 969
+ components:
+ - type: Transform
+ pos: 110.5,43.5
+ parent: 1
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 47.5,51.5
+ parent: 1
+ - uid: 978
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 1
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - uid: 1262
+ components:
+ - type: Transform
+ pos: 44.5,109.5
+ parent: 1
+ - uid: 1536
+ components:
+ - type: Transform
+ pos: 47.5,50.5
+ parent: 1
+ - uid: 1962
+ components:
+ - type: Transform
+ pos: 67.5,17.5
+ parent: 1
+ - uid: 2354
+ components:
+ - type: Transform
+ pos: 69.5,49.5
+ parent: 1
+ - uid: 2740
+ components:
+ - type: Transform
+ pos: 102.5,149.5
+ parent: 1
+ - uid: 2825
+ components:
+ - type: Transform
+ pos: 61.5,42.5
+ parent: 1
+ - uid: 2877
+ components:
+ - type: Transform
+ pos: 66.5,49.5
+ parent: 1
+ - uid: 2998
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 1
+ - uid: 3056
+ components:
+ - type: Transform
+ pos: 113.5,88.5
+ parent: 1
+ - uid: 3100
+ components:
+ - type: Transform
+ pos: 106.5,144.5
+ parent: 1
+ - uid: 3117
+ components:
+ - type: Transform
+ pos: 85.5,45.5
+ parent: 1
+ - uid: 3306
+ components:
+ - type: Transform
+ pos: 101.5,135.5
+ parent: 1
+ - uid: 3327
+ components:
+ - type: Transform
+ pos: 99.5,149.5
+ parent: 1
+ - uid: 3360
+ components:
+ - type: Transform
+ pos: 83.5,156.5
+ parent: 1
+ - uid: 3361
+ components:
+ - type: Transform
+ pos: 76.5,155.5
+ parent: 1
+ - uid: 3396
+ components:
+ - type: Transform
+ pos: 73.5,156.5
+ parent: 1
+ - uid: 3428
+ components:
+ - type: Transform
+ pos: 102.5,148.5
+ parent: 1
+ - uid: 3434
+ components:
+ - type: Transform
+ pos: 90.5,172.5
+ parent: 1
+ - uid: 3444
+ components:
+ - type: Transform
+ pos: 94.5,172.5
+ parent: 1
+ - uid: 3445
+ components:
+ - type: Transform
+ pos: 112.5,165.5
+ parent: 1
+ - uid: 3449
+ components:
+ - type: Transform
+ pos: 106.5,165.5
+ parent: 1
+ - uid: 3568
+ components:
+ - type: Transform
+ pos: 63.5,42.5
+ parent: 1
+ - uid: 3584
+ components:
+ - type: Transform
+ pos: 127.5,113.5
+ parent: 1
+ - uid: 3697
+ components:
+ - type: Transform
+ pos: 141.5,99.5
+ parent: 1
+ - uid: 3798
+ components:
+ - type: Transform
+ pos: 27.5,75.5
+ parent: 1
+ - uid: 3860
+ components:
+ - type: Transform
+ pos: 132.5,86.5
+ parent: 1
+ - uid: 3997
+ components:
+ - type: Transform
+ pos: 97.5,63.5
+ parent: 1
+ - uid: 4001
+ components:
+ - type: Transform
+ pos: 131.5,86.5
+ parent: 1
+ - uid: 4041
+ components:
+ - type: Transform
+ pos: 46.5,58.5
+ parent: 1
+ - uid: 4042
+ components:
+ - type: Transform
+ pos: 45.5,58.5
+ parent: 1
+ - uid: 4044
+ components:
+ - type: Transform
+ pos: 44.5,58.5
+ parent: 1
+ - uid: 4106
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - uid: 4111
+ components:
+ - type: Transform
+ pos: 85.5,51.5
+ parent: 1
+ - uid: 4116
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - uid: 4122
+ components:
+ - type: Transform
+ pos: 61.5,46.5
+ parent: 1
+ - uid: 4137
+ components:
+ - type: Transform
+ pos: 61.5,45.5
+ parent: 1
+ - uid: 4198
+ components:
+ - type: Transform
+ pos: 70.5,49.5
+ parent: 1
+ - uid: 4419
+ components:
+ - type: Transform
+ pos: 61.5,43.5
+ parent: 1
+ - uid: 4475
+ components:
+ - type: Transform
+ pos: 72.5,43.5
+ parent: 1
+ - uid: 4579
+ components:
+ - type: Transform
+ pos: 84.5,45.5
+ parent: 1
+ - uid: 4583
+ components:
+ - type: Transform
+ pos: 57.5,42.5
+ parent: 1
+ - uid: 4606
+ components:
+ - type: Transform
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 4659
+ components:
+ - type: Transform
+ pos: 125.5,122.5
+ parent: 1
+ - uid: 4665
+ components:
+ - type: Transform
+ pos: 159.5,148.5
+ parent: 1
+ - uid: 4820
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 1
+ - uid: 4888
+ components:
+ - type: Transform
+ pos: 93.5,56.5
+ parent: 1
+ - uid: 4934
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - uid: 4937
+ components:
+ - type: Transform
+ pos: 107.5,54.5
+ parent: 1
+ - uid: 4940
+ components:
+ - type: Transform
+ pos: 97.5,65.5
+ parent: 1
+ - uid: 5036
+ components:
+ - type: Transform
+ pos: 72.5,46.5
+ parent: 1
+ - uid: 5037
+ components:
+ - type: Transform
+ pos: 71.5,49.5
+ parent: 1
+ - uid: 5172
+ components:
+ - type: Transform
+ pos: 157.5,113.5
+ parent: 1
+ - uid: 5203
+ components:
+ - type: Transform
+ pos: 156.5,113.5
+ parent: 1
+ - uid: 5208
+ components:
+ - type: Transform
+ pos: 155.5,113.5
+ parent: 1
+ - uid: 5209
+ components:
+ - type: Transform
+ pos: 158.5,113.5
+ parent: 1
+ - uid: 5222
+ components:
+ - type: Transform
+ pos: 144.5,114.5
+ parent: 1
+ - uid: 5364
+ components:
+ - type: Transform
+ pos: 97.5,69.5
+ parent: 1
+ - uid: 5411
+ components:
+ - type: Transform
+ pos: 123.5,162.5
+ parent: 1
+ - uid: 5412
+ components:
+ - type: Transform
+ pos: 123.5,163.5
+ parent: 1
+ - uid: 5454
+ components:
+ - type: Transform
+ pos: 53.5,131.5
+ parent: 1
+ - uid: 5455
+ components:
+ - type: Transform
+ pos: 57.5,142.5
+ parent: 1
+ - uid: 5458
+ components:
+ - type: Transform
+ pos: 57.5,147.5
+ parent: 1
+ - uid: 5583
+ components:
+ - type: Transform
+ pos: 159.5,149.5
+ parent: 1
+ - uid: 5584
+ components:
+ - type: Transform
+ pos: 160.5,149.5
+ parent: 1
+ - uid: 5596
+ components:
+ - type: Transform
+ pos: 63.5,36.5
+ parent: 1
+ - uid: 5780
+ components:
+ - type: Transform
+ pos: 53.5,110.5
+ parent: 1
+ - uid: 5785
+ components:
+ - type: Transform
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 6007
+ components:
+ - type: Transform
+ pos: 34.5,99.5
+ parent: 1
+ - uid: 6050
+ components:
+ - type: Transform
+ pos: 34.5,98.5
+ parent: 1
+ - uid: 6070
+ components:
+ - type: Transform
+ pos: 34.5,97.5
+ parent: 1
+ - uid: 6125
+ components:
+ - type: Transform
+ pos: 143.5,147.5
+ parent: 1
+ - uid: 6133
+ components:
+ - type: Transform
+ pos: 88.5,32.5
+ parent: 1
+ - uid: 6167
+ components:
+ - type: Transform
+ pos: 88.5,33.5
+ parent: 1
+ - uid: 6169
+ components:
+ - type: Transform
+ pos: 140.5,147.5
+ parent: 1
+ - uid: 6170
+ components:
+ - type: Transform
+ pos: 142.5,147.5
+ parent: 1
+ - uid: 6212
+ components:
+ - type: Transform
+ pos: 141.5,147.5
+ parent: 1
+ - uid: 6213
+ components:
+ - type: Transform
+ pos: 144.5,147.5
+ parent: 1
+ - uid: 6576
+ components:
+ - type: Transform
+ pos: 96.5,84.5
+ parent: 1
+ - uid: 6671
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 6672
+ components:
+ - type: Transform
+ pos: 37.5,122.5
+ parent: 1
+ - uid: 6674
+ components:
+ - type: Transform
+ pos: 48.5,124.5
+ parent: 1
+ - uid: 6705
+ components:
+ - type: Transform
+ pos: 39.5,122.5
+ parent: 1
+ - uid: 6706
+ components:
+ - type: Transform
+ pos: 43.5,126.5
+ parent: 1
+ - uid: 6918
+ components:
+ - type: Transform
+ pos: 40.5,125.5
+ parent: 1
+ - uid: 6941
+ components:
+ - type: Transform
+ pos: 48.5,126.5
+ parent: 1
+ - uid: 6950
+ components:
+ - type: Transform
+ pos: 48.5,123.5
+ parent: 1
+ - uid: 6951
+ components:
+ - type: Transform
+ pos: 44.5,126.5
+ parent: 1
+ - uid: 6999
+ components:
+ - type: Transform
+ pos: 40.5,124.5
+ parent: 1
+ - uid: 7012
+ components:
+ - type: Transform
+ pos: 42.5,126.5
+ parent: 1
+ - uid: 7014
+ components:
+ - type: Transform
+ pos: 41.5,126.5
+ parent: 1
+ - uid: 7096
+ components:
+ - type: Transform
+ pos: 40.5,123.5
+ parent: 1
+ - uid: 7119
+ components:
+ - type: Transform
+ pos: 110.5,127.5
+ parent: 1
+ - uid: 7123
+ components:
+ - type: Transform
+ pos: 109.5,127.5
+ parent: 1
+ - uid: 7226
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 1
+ - uid: 7621
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 1
+ - uid: 7719
+ components:
+ - type: Transform
+ pos: 99.5,154.5
+ parent: 1
+ - uid: 7720
+ components:
+ - type: Transform
+ pos: 99.5,152.5
+ parent: 1
+ - uid: 7971
+ components:
+ - type: Transform
+ pos: 65.5,49.5
+ parent: 1
+ - uid: 7987
+ components:
+ - type: Transform
+ pos: 87.5,51.5
+ parent: 1
+ - uid: 7991
+ components:
+ - type: Transform
+ pos: 97.5,51.5
+ parent: 1
+ - uid: 7993
+ components:
+ - type: Transform
+ pos: 98.5,51.5
+ parent: 1
+ - uid: 7994
+ components:
+ - type: Transform
+ pos: 99.5,51.5
+ parent: 1
+ - uid: 7999
+ components:
+ - type: Transform
+ pos: 63.5,40.5
+ parent: 1
+ - uid: 8009
+ components:
+ - type: Transform
+ pos: 88.5,42.5
+ parent: 1
+ - uid: 8011
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 8133
+ components:
+ - type: Transform
+ pos: 96.5,82.5
+ parent: 1
+ - uid: 8137
+ components:
+ - type: Transform
+ pos: 96.5,83.5
+ parent: 1
+ - uid: 8174
+ components:
+ - type: Transform
+ pos: 89.5,80.5
+ parent: 1
+ - uid: 8181
+ components:
+ - type: Transform
+ pos: 89.5,81.5
+ parent: 1
+ - uid: 8184
+ components:
+ - type: Transform
+ pos: 90.5,81.5
+ parent: 1
+ - uid: 8189
+ components:
+ - type: Transform
+ pos: 91.5,81.5
+ parent: 1
+ - uid: 8242
+ components:
+ - type: Transform
+ pos: 72.5,155.5
+ parent: 1
+ - uid: 8400
+ components:
+ - type: Transform
+ pos: 36.5,79.5
+ parent: 1
+ - uid: 8700
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - uid: 8704
+ components:
+ - type: Transform
+ pos: 162.5,143.5
+ parent: 1
+ - uid: 8707
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - uid: 8709
+ components:
+ - type: Transform
+ pos: 133.5,126.5
+ parent: 1
+ - uid: 8716
+ components:
+ - type: Transform
+ pos: 160.5,145.5
+ parent: 1
+ - uid: 8722
+ components:
+ - type: Transform
+ pos: 133.5,125.5
+ parent: 1
+ - uid: 8766
+ components:
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - uid: 8769
+ components:
+ - type: Transform
+ pos: 137.5,122.5
+ parent: 1
+ - uid: 8853
+ components:
+ - type: Transform
+ pos: 33.5,122.5
+ parent: 1
+ - uid: 8855
+ components:
+ - type: Transform
+ pos: 34.5,122.5
+ parent: 1
+ - uid: 8984
+ components:
+ - type: Transform
+ pos: 38.5,122.5
+ parent: 1
+ - uid: 9060
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+ - uid: 9074
+ components:
+ - type: Transform
+ pos: 48.5,120.5
+ parent: 1
+ - uid: 9075
+ components:
+ - type: Transform
+ pos: 47.5,126.5
+ parent: 1
+ - uid: 9134
+ components:
+ - type: Transform
+ pos: 94.5,155.5
+ parent: 1
+ - uid: 9135
+ components:
+ - type: Transform
+ pos: 94.5,154.5
+ parent: 1
+ - uid: 9136
+ components:
+ - type: Transform
+ pos: 94.5,153.5
+ parent: 1
+ - uid: 9137
+ components:
+ - type: Transform
+ pos: 94.5,152.5
+ parent: 1
+ - uid: 9138
+ components:
+ - type: Transform
+ pos: 94.5,151.5
+ parent: 1
+ - uid: 9139
+ components:
+ - type: Transform
+ pos: 94.5,150.5
+ parent: 1
+ - uid: 9140
+ components:
+ - type: Transform
+ pos: 94.5,149.5
+ parent: 1
+ - uid: 9141
+ components:
+ - type: Transform
+ pos: 94.5,148.5
+ parent: 1
+ - uid: 9142
+ components:
+ - type: Transform
+ pos: 94.5,147.5
+ parent: 1
+ - uid: 9143
+ components:
+ - type: Transform
+ pos: 94.5,146.5
+ parent: 1
+ - uid: 9144
+ components:
+ - type: Transform
+ pos: 94.5,145.5
+ parent: 1
+ - uid: 9145
+ components:
+ - type: Transform
+ pos: 94.5,144.5
+ parent: 1
+ - uid: 9146
+ components:
+ - type: Transform
+ pos: 94.5,143.5
+ parent: 1
+ - uid: 9147
+ components:
+ - type: Transform
+ pos: 94.5,142.5
+ parent: 1
+ - uid: 9148
+ components:
+ - type: Transform
+ pos: 94.5,141.5
+ parent: 1
+ - uid: 9149
+ components:
+ - type: Transform
+ pos: 94.5,140.5
+ parent: 1
+ - uid: 9150
+ components:
+ - type: Transform
+ pos: 94.5,139.5
+ parent: 1
+ - uid: 9151
+ components:
+ - type: Transform
+ pos: 94.5,137.5
+ parent: 1
+ - uid: 9152
+ components:
+ - type: Transform
+ pos: 94.5,136.5
+ parent: 1
+ - uid: 9153
+ components:
+ - type: Transform
+ pos: 94.5,135.5
+ parent: 1
+ - uid: 9154
+ components:
+ - type: Transform
+ pos: 94.5,134.5
+ parent: 1
+ - uid: 9155
+ components:
+ - type: Transform
+ pos: 94.5,133.5
+ parent: 1
+ - uid: 9156
+ components:
+ - type: Transform
+ pos: 94.5,138.5
+ parent: 1
+ - uid: 9157
+ components:
+ - type: Transform
+ pos: 94.5,131.5
+ parent: 1
+ - uid: 9158
+ components:
+ - type: Transform
+ pos: 94.5,132.5
+ parent: 1
+ - uid: 9159
+ components:
+ - type: Transform
+ pos: 94.5,129.5
+ parent: 1
+ - uid: 9160
+ components:
+ - type: Transform
+ pos: 94.5,128.5
+ parent: 1
+ - uid: 9161
+ components:
+ - type: Transform
+ pos: 94.5,130.5
+ parent: 1
+ - uid: 9162
+ components:
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - uid: 9163
+ components:
+ - type: Transform
+ pos: 94.5,127.5
+ parent: 1
+ - uid: 9164
+ components:
+ - type: Transform
+ pos: 94.5,125.5
+ parent: 1
+ - uid: 9165
+ components:
+ - type: Transform
+ pos: 94.5,124.5
+ parent: 1
+ - uid: 9166
+ components:
+ - type: Transform
+ pos: 95.5,124.5
+ parent: 1
+ - uid: 9167
+ components:
+ - type: Transform
+ pos: 96.5,124.5
+ parent: 1
+ - uid: 9168
+ components:
+ - type: Transform
+ pos: 97.5,124.5
+ parent: 1
+ - uid: 9169
+ components:
+ - type: Transform
+ pos: 98.5,124.5
+ parent: 1
+ - uid: 9170
+ components:
+ - type: Transform
+ pos: 99.5,124.5
+ parent: 1
+ - uid: 9171
+ components:
+ - type: Transform
+ pos: 100.5,124.5
+ parent: 1
+ - uid: 9172
+ components:
+ - type: Transform
+ pos: 101.5,124.5
+ parent: 1
+ - uid: 9173
+ components:
+ - type: Transform
+ pos: 102.5,124.5
+ parent: 1
+ - uid: 9174
+ components:
+ - type: Transform
+ pos: 104.5,124.5
+ parent: 1
+ - uid: 9175
+ components:
+ - type: Transform
+ pos: 103.5,124.5
+ parent: 1
+ - uid: 9176
+ components:
+ - type: Transform
+ pos: 105.5,124.5
+ parent: 1
+ - uid: 9177
+ components:
+ - type: Transform
+ pos: 106.5,124.5
+ parent: 1
+ - uid: 9178
+ components:
+ - type: Transform
+ pos: 107.5,124.5
+ parent: 1
+ - uid: 9179
+ components:
+ - type: Transform
+ pos: 108.5,124.5
+ parent: 1
+ - uid: 9180
+ components:
+ - type: Transform
+ pos: 109.5,124.5
+ parent: 1
+ - uid: 9181
+ components:
+ - type: Transform
+ pos: 110.5,124.5
+ parent: 1
+ - uid: 9182
+ components:
+ - type: Transform
+ pos: 111.5,124.5
+ parent: 1
+ - uid: 9183
+ components:
+ - type: Transform
+ pos: 112.5,124.5
+ parent: 1
+ - uid: 9184
+ components:
+ - type: Transform
+ pos: 114.5,124.5
+ parent: 1
+ - uid: 9185
+ components:
+ - type: Transform
+ pos: 115.5,124.5
+ parent: 1
+ - uid: 9186
+ components:
+ - type: Transform
+ pos: 116.5,124.5
+ parent: 1
+ - uid: 9187
+ components:
+ - type: Transform
+ pos: 117.5,124.5
+ parent: 1
+ - uid: 9188
+ components:
+ - type: Transform
+ pos: 118.5,124.5
+ parent: 1
+ - uid: 9189
+ components:
+ - type: Transform
+ pos: 113.5,124.5
+ parent: 1
+ - uid: 9190
+ components:
+ - type: Transform
+ pos: 119.5,124.5
+ parent: 1
+ - uid: 9191
+ components:
+ - type: Transform
+ pos: 120.5,124.5
+ parent: 1
+ - uid: 9192
+ components:
+ - type: Transform
+ pos: 121.5,124.5
+ parent: 1
+ - uid: 9193
+ components:
+ - type: Transform
+ pos: 122.5,124.5
+ parent: 1
+ - uid: 9194
+ components:
+ - type: Transform
+ pos: 122.5,125.5
+ parent: 1
+ - uid: 9195
+ components:
+ - type: Transform
+ pos: 122.5,126.5
+ parent: 1
+ - uid: 9196
+ components:
+ - type: Transform
+ pos: 122.5,127.5
+ parent: 1
+ - uid: 9197
+ components:
+ - type: Transform
+ pos: 122.5,128.5
+ parent: 1
+ - uid: 9198
+ components:
+ - type: Transform
+ pos: 122.5,129.5
+ parent: 1
+ - uid: 9199
+ components:
+ - type: Transform
+ pos: 122.5,130.5
+ parent: 1
+ - uid: 9200
+ components:
+ - type: Transform
+ pos: 122.5,132.5
+ parent: 1
+ - uid: 9201
+ components:
+ - type: Transform
+ pos: 122.5,133.5
+ parent: 1
+ - uid: 9202
+ components:
+ - type: Transform
+ pos: 122.5,134.5
+ parent: 1
+ - uid: 9203
+ components:
+ - type: Transform
+ pos: 122.5,131.5
+ parent: 1
+ - uid: 9204
+ components:
+ - type: Transform
+ pos: 122.5,136.5
+ parent: 1
+ - uid: 9205
+ components:
+ - type: Transform
+ pos: 122.5,137.5
+ parent: 1
+ - uid: 9206
+ components:
+ - type: Transform
+ pos: 122.5,138.5
+ parent: 1
+ - uid: 9207
+ components:
+ - type: Transform
+ pos: 122.5,139.5
+ parent: 1
+ - uid: 9208
+ components:
+ - type: Transform
+ pos: 122.5,140.5
+ parent: 1
+ - uid: 9209
+ components:
+ - type: Transform
+ pos: 122.5,142.5
+ parent: 1
+ - uid: 9210
+ components:
+ - type: Transform
+ pos: 122.5,135.5
+ parent: 1
+ - uid: 9211
+ components:
+ - type: Transform
+ pos: 122.5,144.5
+ parent: 1
+ - uid: 9212
+ components:
+ - type: Transform
+ pos: 122.5,145.5
+ parent: 1
+ - uid: 9213
+ components:
+ - type: Transform
+ pos: 122.5,146.5
+ parent: 1
+ - uid: 9214
+ components:
+ - type: Transform
+ pos: 122.5,143.5
+ parent: 1
+ - uid: 9215
+ components:
+ - type: Transform
+ pos: 122.5,141.5
+ parent: 1
+ - uid: 9216
+ components:
+ - type: Transform
+ pos: 122.5,147.5
+ parent: 1
+ - uid: 9217
+ components:
+ - type: Transform
+ pos: 122.5,149.5
+ parent: 1
+ - uid: 9218
+ components:
+ - type: Transform
+ pos: 122.5,148.5
+ parent: 1
+ - uid: 9219
+ components:
+ - type: Transform
+ pos: 122.5,151.5
+ parent: 1
+ - uid: 9220
+ components:
+ - type: Transform
+ pos: 122.5,150.5
+ parent: 1
+ - uid: 9221
+ components:
+ - type: Transform
+ pos: 122.5,152.5
+ parent: 1
+ - uid: 9222
+ components:
+ - type: Transform
+ pos: 122.5,153.5
+ parent: 1
+ - uid: 9223
+ components:
+ - type: Transform
+ pos: 122.5,154.5
+ parent: 1
+ - uid: 9224
+ components:
+ - type: Transform
+ pos: 122.5,155.5
+ parent: 1
+ - uid: 9225
+ components:
+ - type: Transform
+ pos: 121.5,155.5
+ parent: 1
+ - uid: 9226
+ components:
+ - type: Transform
+ pos: 120.5,155.5
+ parent: 1
+ - uid: 9227
+ components:
+ - type: Transform
+ pos: 119.5,155.5
+ parent: 1
+ - uid: 9228
+ components:
+ - type: Transform
+ pos: 118.5,155.5
+ parent: 1
+ - uid: 9229
+ components:
+ - type: Transform
+ pos: 117.5,155.5
+ parent: 1
+ - uid: 9230
+ components:
+ - type: Transform
+ pos: 116.5,155.5
+ parent: 1
+ - uid: 9231
+ components:
+ - type: Transform
+ pos: 115.5,155.5
+ parent: 1
+ - uid: 9232
+ components:
+ - type: Transform
+ pos: 114.5,155.5
+ parent: 1
+ - uid: 9233
+ components:
+ - type: Transform
+ pos: 113.5,155.5
+ parent: 1
+ - uid: 9234
+ components:
+ - type: Transform
+ pos: 112.5,155.5
+ parent: 1
+ - uid: 9235
+ components:
+ - type: Transform
+ pos: 111.5,155.5
+ parent: 1
+ - uid: 9236
+ components:
+ - type: Transform
+ pos: 110.5,155.5
+ parent: 1
+ - uid: 9237
+ components:
+ - type: Transform
+ pos: 109.5,155.5
+ parent: 1
+ - uid: 9238
+ components:
+ - type: Transform
+ pos: 108.5,155.5
+ parent: 1
+ - uid: 9239
+ components:
+ - type: Transform
+ pos: 106.5,155.5
+ parent: 1
+ - uid: 9240
+ components:
+ - type: Transform
+ pos: 105.5,155.5
+ parent: 1
+ - uid: 9241
+ components:
+ - type: Transform
+ pos: 104.5,155.5
+ parent: 1
+ - uid: 9242
+ components:
+ - type: Transform
+ pos: 103.5,155.5
+ parent: 1
+ - uid: 9243
+ components:
+ - type: Transform
+ pos: 107.5,155.5
+ parent: 1
+ - uid: 9244
+ components:
+ - type: Transform
+ pos: 102.5,155.5
+ parent: 1
+ - uid: 9245
+ components:
+ - type: Transform
+ pos: 101.5,155.5
+ parent: 1
+ - uid: 9246
+ components:
+ - type: Transform
+ pos: 100.5,155.5
+ parent: 1
+ - uid: 9247
+ components:
+ - type: Transform
+ pos: 98.5,155.5
+ parent: 1
+ - uid: 9248
+ components:
+ - type: Transform
+ pos: 97.5,155.5
+ parent: 1
+ - uid: 9249
+ components:
+ - type: Transform
+ pos: 96.5,155.5
+ parent: 1
+ - uid: 9250
+ components:
+ - type: Transform
+ pos: 99.5,155.5
+ parent: 1
+ - uid: 9251
+ components:
+ - type: Transform
+ pos: 95.5,155.5
+ parent: 1
+ - uid: 9273
+ components:
+ - type: Transform
+ pos: 127.5,128.5
+ parent: 1
+ - uid: 9274
+ components:
+ - type: Transform
+ pos: 127.5,126.5
+ parent: 1
+ - uid: 9275
+ components:
+ - type: Transform
+ pos: 126.5,122.5
+ parent: 1
+ - uid: 9276
+ components:
+ - type: Transform
+ pos: 127.5,124.5
+ parent: 1
+ - uid: 9277
+ components:
+ - type: Transform
+ pos: 127.5,123.5
+ parent: 1
+ - uid: 9278
+ components:
+ - type: Transform
+ pos: 127.5,122.5
+ parent: 1
+ - uid: 9279
+ components:
+ - type: Transform
+ pos: 128.5,128.5
+ parent: 1
+ - uid: 9280
+ components:
+ - type: Transform
+ pos: 128.5,127.5
+ parent: 1
+ - uid: 9281
+ components:
+ - type: Transform
+ pos: 127.5,127.5
+ parent: 1
+ - uid: 9282
+ components:
+ - type: Transform
+ pos: 128.5,126.5
+ parent: 1
+ - uid: 9283
+ components:
+ - type: Transform
+ pos: 128.5,125.5
+ parent: 1
+ - uid: 9284
+ components:
+ - type: Transform
+ pos: 128.5,124.5
+ parent: 1
+ - uid: 9285
+ components:
+ - type: Transform
+ pos: 128.5,123.5
+ parent: 1
+ - uid: 9286
+ components:
+ - type: Transform
+ pos: 128.5,122.5
+ parent: 1
+ - uid: 9287
+ components:
+ - type: Transform
+ pos: 126.5,123.5
+ parent: 1
+ - uid: 9288
+ components:
+ - type: Transform
+ pos: 126.5,124.5
+ parent: 1
+ - uid: 9289
+ components:
+ - type: Transform
+ pos: 126.5,125.5
+ parent: 1
+ - uid: 9290
+ components:
+ - type: Transform
+ pos: 126.5,126.5
+ parent: 1
+ - uid: 9291
+ components:
+ - type: Transform
+ pos: 126.5,127.5
+ parent: 1
+ - uid: 9292
+ components:
+ - type: Transform
+ pos: 126.5,128.5
+ parent: 1
+ - uid: 9293
+ components:
+ - type: Transform
+ pos: 125.5,128.5
+ parent: 1
+ - uid: 9294
+ components:
+ - type: Transform
+ pos: 124.5,128.5
+ parent: 1
+ - uid: 9295
+ components:
+ - type: Transform
+ pos: 123.5,128.5
+ parent: 1
+ - uid: 9296
+ components:
+ - type: Transform
+ pos: 124.5,122.5
+ parent: 1
+ - uid: 9297
+ components:
+ - type: Transform
+ pos: 123.5,122.5
+ parent: 1
+ - uid: 9298
+ components:
+ - type: Transform
+ pos: 122.5,122.5
+ parent: 1
+ - uid: 9299
+ components:
+ - type: Transform
+ pos: 122.5,123.5
+ parent: 1
+ - uid: 9301
+ components:
+ - type: Transform
+ pos: 128.5,121.5
+ parent: 1
+ - uid: 9302
+ components:
+ - type: Transform
+ pos: 128.5,120.5
+ parent: 1
+ - uid: 9303
+ components:
+ - type: Transform
+ pos: 128.5,119.5
+ parent: 1
+ - uid: 9304
+ components:
+ - type: Transform
+ pos: 128.5,118.5
+ parent: 1
+ - uid: 9305
+ components:
+ - type: Transform
+ pos: 128.5,129.5
+ parent: 1
+ - uid: 9306
+ components:
+ - type: Transform
+ pos: 128.5,131.5
+ parent: 1
+ - uid: 9307
+ components:
+ - type: Transform
+ pos: 128.5,132.5
+ parent: 1
+ - uid: 9308
+ components:
+ - type: Transform
+ pos: 128.5,130.5
+ parent: 1
+ - uid: 9309
+ components:
+ - type: Transform
+ pos: 129.5,132.5
+ parent: 1
+ - uid: 9310
+ components:
+ - type: Transform
+ pos: 130.5,132.5
+ parent: 1
+ - uid: 9311
+ components:
+ - type: Transform
+ pos: 131.5,132.5
+ parent: 1
+ - uid: 9312
+ components:
+ - type: Transform
+ pos: 132.5,132.5
+ parent: 1
+ - uid: 9313
+ components:
+ - type: Transform
+ pos: 133.5,132.5
+ parent: 1
+ - uid: 9314
+ components:
+ - type: Transform
+ pos: 134.5,132.5
+ parent: 1
+ - uid: 9315
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - uid: 9316
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - uid: 9317
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - uid: 9318
+ components:
+ - type: Transform
+ pos: 135.5,136.5
+ parent: 1
+ - uid: 9319
+ components:
+ - type: Transform
+ pos: 135.5,138.5
+ parent: 1
+ - uid: 9320
+ components:
+ - type: Transform
+ pos: 135.5,135.5
+ parent: 1
+ - uid: 9321
+ components:
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - uid: 9322
+ components:
+ - type: Transform
+ pos: 93.5,130.5
+ parent: 1
+ - uid: 9323
+ components:
+ - type: Transform
+ pos: 92.5,130.5
+ parent: 1
+ - uid: 9324
+ components:
+ - type: Transform
+ pos: 91.5,130.5
+ parent: 1
+ - uid: 9325
+ components:
+ - type: Transform
+ pos: 91.5,129.5
+ parent: 1
+ - uid: 9326
+ components:
+ - type: Transform
+ pos: 91.5,128.5
+ parent: 1
+ - uid: 9327
+ components:
+ - type: Transform
+ pos: 91.5,127.5
+ parent: 1
+ - uid: 9328
+ components:
+ - type: Transform
+ pos: 91.5,126.5
+ parent: 1
+ - uid: 9329
+ components:
+ - type: Transform
+ pos: 90.5,126.5
+ parent: 1
+ - uid: 9330
+ components:
+ - type: Transform
+ pos: 89.5,126.5
+ parent: 1
+ - uid: 9331
+ components:
+ - type: Transform
+ pos: 89.5,127.5
+ parent: 1
+ - uid: 9332
+ components:
+ - type: Transform
+ pos: 89.5,128.5
+ parent: 1
+ - uid: 9333
+ components:
+ - type: Transform
+ pos: 89.5,129.5
+ parent: 1
+ - uid: 9334
+ components:
+ - type: Transform
+ pos: 89.5,130.5
+ parent: 1
+ - uid: 9335
+ components:
+ - type: Transform
+ pos: 89.5,131.5
+ parent: 1
+ - uid: 9336
+ components:
+ - type: Transform
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 9337
+ components:
+ - type: Transform
+ pos: 89.5,133.5
+ parent: 1
+ - uid: 9338
+ components:
+ - type: Transform
+ pos: 89.5,134.5
+ parent: 1
+ - uid: 9339
+ components:
+ - type: Transform
+ pos: 89.5,136.5
+ parent: 1
+ - uid: 9340
+ components:
+ - type: Transform
+ pos: 89.5,135.5
+ parent: 1
+ - uid: 9341
+ components:
+ - type: Transform
+ pos: 89.5,137.5
+ parent: 1
+ - uid: 9342
+ components:
+ - type: Transform
+ pos: 89.5,138.5
+ parent: 1
+ - uid: 9343
+ components:
+ - type: Transform
+ pos: 89.5,139.5
+ parent: 1
+ - uid: 9344
+ components:
+ - type: Transform
+ pos: 89.5,140.5
+ parent: 1
+ - uid: 9345
+ components:
+ - type: Transform
+ pos: 89.5,141.5
+ parent: 1
+ - uid: 9346
+ components:
+ - type: Transform
+ pos: 89.5,142.5
+ parent: 1
+ - uid: 9347
+ components:
+ - type: Transform
+ pos: 89.5,143.5
+ parent: 1
+ - uid: 9348
+ components:
+ - type: Transform
+ pos: 89.5,144.5
+ parent: 1
+ - uid: 9349
+ components:
+ - type: Transform
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 9350
+ components:
+ - type: Transform
+ pos: 89.5,145.5
+ parent: 1
+ - uid: 9351
+ components:
+ - type: Transform
+ pos: 89.5,148.5
+ parent: 1
+ - uid: 9352
+ components:
+ - type: Transform
+ pos: 89.5,147.5
+ parent: 1
+ - uid: 9353
+ components:
+ - type: Transform
+ pos: 90.5,148.5
+ parent: 1
+ - uid: 9354
+ components:
+ - type: Transform
+ pos: 91.5,148.5
+ parent: 1
+ - uid: 9355
+ components:
+ - type: Transform
+ pos: 91.5,149.5
+ parent: 1
+ - uid: 9356
+ components:
+ - type: Transform
+ pos: 91.5,150.5
+ parent: 1
+ - uid: 9357
+ components:
+ - type: Transform
+ pos: 91.5,151.5
+ parent: 1
+ - uid: 9358
+ components:
+ - type: Transform
+ pos: 91.5,152.5
+ parent: 1
+ - uid: 9359
+ components:
+ - type: Transform
+ pos: 91.5,153.5
+ parent: 1
+ - uid: 9360
+ components:
+ - type: Transform
+ pos: 91.5,154.5
+ parent: 1
+ - uid: 9361
+ components:
+ - type: Transform
+ pos: 91.5,155.5
+ parent: 1
+ - uid: 9362
+ components:
+ - type: Transform
+ pos: 92.5,155.5
+ parent: 1
+ - uid: 9363
+ components:
+ - type: Transform
+ pos: 93.5,155.5
+ parent: 1
+ - uid: 9372
+ components:
+ - type: Transform
+ pos: 84.5,139.5
+ parent: 1
+ - uid: 9634
+ components:
+ - type: Transform
+ pos: 162.5,138.5
+ parent: 1
+ - uid: 9677
+ components:
+ - type: Transform
+ pos: 97.5,64.5
+ parent: 1
+ - uid: 9686
+ components:
+ - type: Transform
+ pos: 92.5,56.5
+ parent: 1
+ - uid: 9696
+ components:
+ - type: Transform
+ pos: 124.5,91.5
+ parent: 1
+ - uid: 9763
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 1
+ - uid: 9812
+ components:
+ - type: Transform
+ pos: 55.5,44.5
+ parent: 1
+ - uid: 9813
+ components:
+ - type: Transform
+ pos: 55.5,43.5
+ parent: 1
+ - uid: 9814
+ components:
+ - type: Transform
+ pos: 55.5,42.5
+ parent: 1
+ - uid: 9815
+ components:
+ - type: Transform
+ pos: 55.5,41.5
+ parent: 1
+ - uid: 9816
+ components:
+ - type: Transform
+ pos: 55.5,40.5
+ parent: 1
+ - uid: 9831
+ components:
+ - type: Transform
+ pos: 64.5,46.5
+ parent: 1
+ - uid: 9832
+ components:
+ - type: Transform
+ pos: 64.5,47.5
+ parent: 1
+ - uid: 9833
+ components:
+ - type: Transform
+ pos: 64.5,48.5
+ parent: 1
+ - uid: 9834
+ components:
+ - type: Transform
+ pos: 64.5,49.5
+ parent: 1
+ - uid: 9849
+ components:
+ - type: Transform
+ pos: 64.5,64.5
+ parent: 1
+ - uid: 9850
+ components:
+ - type: Transform
+ pos: 64.5,65.5
+ parent: 1
+ - uid: 9851
+ components:
+ - type: Transform
+ pos: 64.5,66.5
+ parent: 1
+ - uid: 9852
+ components:
+ - type: Transform
+ pos: 64.5,67.5
+ parent: 1
+ - uid: 9854
+ components:
+ - type: Transform
+ pos: 63.5,64.5
+ parent: 1
+ - uid: 9855
+ components:
+ - type: Transform
+ pos: 62.5,64.5
+ parent: 1
+ - uid: 9856
+ components:
+ - type: Transform
+ pos: 61.5,64.5
+ parent: 1
+ - uid: 9857
+ components:
+ - type: Transform
+ pos: 60.5,64.5
+ parent: 1
+ - uid: 9858
+ components:
+ - type: Transform
+ pos: 59.5,64.5
+ parent: 1
+ - uid: 9859
+ components:
+ - type: Transform
+ pos: 58.5,64.5
+ parent: 1
+ - uid: 9860
+ components:
+ - type: Transform
+ pos: 57.5,64.5
+ parent: 1
+ - uid: 9861
+ components:
+ - type: Transform
+ pos: 56.5,64.5
+ parent: 1
+ - uid: 9862
+ components:
+ - type: Transform
+ pos: 56.5,65.5
+ parent: 1
+ - uid: 9863
+ components:
+ - type: Transform
+ pos: 56.5,66.5
+ parent: 1
+ - uid: 9864
+ components:
+ - type: Transform
+ pos: 56.5,67.5
+ parent: 1
+ - uid: 9865
+ components:
+ - type: Transform
+ pos: 56.5,68.5
+ parent: 1
+ - uid: 9866
+ components:
+ - type: Transform
+ pos: 56.5,69.5
+ parent: 1
+ - uid: 9867
+ components:
+ - type: Transform
+ pos: 56.5,70.5
+ parent: 1
+ - uid: 9868
+ components:
+ - type: Transform
+ pos: 56.5,71.5
+ parent: 1
+ - uid: 9869
+ components:
+ - type: Transform
+ pos: 56.5,72.5
+ parent: 1
+ - uid: 9870
+ components:
+ - type: Transform
+ pos: 56.5,73.5
+ parent: 1
+ - uid: 9871
+ components:
+ - type: Transform
+ pos: 56.5,74.5
+ parent: 1
+ - uid: 9872
+ components:
+ - type: Transform
+ pos: 56.5,75.5
+ parent: 1
+ - uid: 9873
+ components:
+ - type: Transform
+ pos: 56.5,77.5
+ parent: 1
+ - uid: 9874
+ components:
+ - type: Transform
+ pos: 56.5,78.5
+ parent: 1
+ - uid: 9875
+ components:
+ - type: Transform
+ pos: 56.5,76.5
+ parent: 1
+ - uid: 9876
+ components:
+ - type: Transform
+ pos: 56.5,80.5
+ parent: 1
+ - uid: 9877
+ components:
+ - type: Transform
+ pos: 56.5,81.5
+ parent: 1
+ - uid: 9878
+ components:
+ - type: Transform
+ pos: 56.5,82.5
+ parent: 1
+ - uid: 9879
+ components:
+ - type: Transform
+ pos: 56.5,79.5
+ parent: 1
+ - uid: 9880
+ components:
+ - type: Transform
+ pos: 56.5,84.5
+ parent: 1
+ - uid: 9881
+ components:
+ - type: Transform
+ pos: 56.5,85.5
+ parent: 1
+ - uid: 9882
+ components:
+ - type: Transform
+ pos: 56.5,86.5
+ parent: 1
+ - uid: 9883
+ components:
+ - type: Transform
+ pos: 56.5,87.5
+ parent: 1
+ - uid: 9884
+ components:
+ - type: Transform
+ pos: 56.5,88.5
+ parent: 1
+ - uid: 9885
+ components:
+ - type: Transform
+ pos: 56.5,89.5
+ parent: 1
+ - uid: 9886
+ components:
+ - type: Transform
+ pos: 56.5,90.5
+ parent: 1
+ - uid: 9887
+ components:
+ - type: Transform
+ pos: 56.5,83.5
+ parent: 1
+ - uid: 9888
+ components:
+ - type: Transform
+ pos: 56.5,91.5
+ parent: 1
+ - uid: 9889
+ components:
+ - type: Transform
+ pos: 56.5,93.5
+ parent: 1
+ - uid: 9890
+ components:
+ - type: Transform
+ pos: 56.5,94.5
+ parent: 1
+ - uid: 9891
+ components:
+ - type: Transform
+ pos: 56.5,95.5
+ parent: 1
+ - uid: 9892
+ components:
+ - type: Transform
+ pos: 56.5,96.5
+ parent: 1
+ - uid: 9893
+ components:
+ - type: Transform
+ pos: 56.5,97.5
+ parent: 1
+ - uid: 9894
+ components:
+ - type: Transform
+ pos: 56.5,98.5
+ parent: 1
+ - uid: 9895
+ components:
+ - type: Transform
+ pos: 56.5,92.5
+ parent: 1
+ - uid: 9896
+ components:
+ - type: Transform
+ pos: 56.5,99.5
+ parent: 1
+ - uid: 9897
+ components:
+ - type: Transform
+ pos: 56.5,100.5
+ parent: 1
+ - uid: 9898
+ components:
+ - type: Transform
+ pos: 56.5,101.5
+ parent: 1
+ - uid: 9899
+ components:
+ - type: Transform
+ pos: 56.5,103.5
+ parent: 1
+ - uid: 9900
+ components:
+ - type: Transform
+ pos: 56.5,104.5
+ parent: 1
+ - uid: 9901
+ components:
+ - type: Transform
+ pos: 56.5,105.5
+ parent: 1
+ - uid: 9902
+ components:
+ - type: Transform
+ pos: 56.5,106.5
+ parent: 1
+ - uid: 9903
+ components:
+ - type: Transform
+ pos: 56.5,107.5
+ parent: 1
+ - uid: 9904
+ components:
+ - type: Transform
+ pos: 56.5,108.5
+ parent: 1
+ - uid: 9905
+ components:
+ - type: Transform
+ pos: 56.5,109.5
+ parent: 1
+ - uid: 9906
+ components:
+ - type: Transform
+ pos: 56.5,102.5
+ parent: 1
+ - uid: 9907
+ components:
+ - type: Transform
+ pos: 56.5,110.5
+ parent: 1
+ - uid: 9908
+ components:
+ - type: Transform
+ pos: 56.5,111.5
+ parent: 1
+ - uid: 9909
+ components:
+ - type: Transform
+ pos: 56.5,112.5
+ parent: 1
+ - uid: 9910
+ components:
+ - type: Transform
+ pos: 56.5,113.5
+ parent: 1
+ - uid: 9911
+ components:
+ - type: Transform
+ pos: 57.5,113.5
+ parent: 1
+ - uid: 9912
+ components:
+ - type: Transform
+ pos: 58.5,113.5
+ parent: 1
+ - uid: 9913
+ components:
+ - type: Transform
+ pos: 59.5,113.5
+ parent: 1
+ - uid: 9914
+ components:
+ - type: Transform
+ pos: 60.5,113.5
+ parent: 1
+ - uid: 9915
+ components:
+ - type: Transform
+ pos: 61.5,113.5
+ parent: 1
+ - uid: 9916
+ components:
+ - type: Transform
+ pos: 62.5,113.5
+ parent: 1
+ - uid: 9917
+ components:
+ - type: Transform
+ pos: 63.5,113.5
+ parent: 1
+ - uid: 9918
+ components:
+ - type: Transform
+ pos: 64.5,113.5
+ parent: 1
+ - uid: 9919
+ components:
+ - type: Transform
+ pos: 65.5,113.5
+ parent: 1
+ - uid: 9920
+ components:
+ - type: Transform
+ pos: 66.5,113.5
+ parent: 1
+ - uid: 9921
+ components:
+ - type: Transform
+ pos: 67.5,113.5
+ parent: 1
+ - uid: 9922
+ components:
+ - type: Transform
+ pos: 68.5,113.5
+ parent: 1
+ - uid: 9923
+ components:
+ - type: Transform
+ pos: 69.5,113.5
+ parent: 1
+ - uid: 9924
+ components:
+ - type: Transform
+ pos: 70.5,113.5
+ parent: 1
+ - uid: 9925
+ components:
+ - type: Transform
+ pos: 72.5,113.5
+ parent: 1
+ - uid: 9926
+ components:
+ - type: Transform
+ pos: 73.5,113.5
+ parent: 1
+ - uid: 9927
+ components:
+ - type: Transform
+ pos: 74.5,113.5
+ parent: 1
+ - uid: 9928
+ components:
+ - type: Transform
+ pos: 75.5,113.5
+ parent: 1
+ - uid: 9929
+ components:
+ - type: Transform
+ pos: 76.5,113.5
+ parent: 1
+ - uid: 9930
+ components:
+ - type: Transform
+ pos: 77.5,113.5
+ parent: 1
+ - uid: 9931
+ components:
+ - type: Transform
+ pos: 78.5,113.5
+ parent: 1
+ - uid: 9932
+ components:
+ - type: Transform
+ pos: 79.5,113.5
+ parent: 1
+ - uid: 9933
+ components:
+ - type: Transform
+ pos: 71.5,113.5
+ parent: 1
+ - uid: 9934
+ components:
+ - type: Transform
+ pos: 82.5,113.5
+ parent: 1
+ - uid: 9935
+ components:
+ - type: Transform
+ pos: 80.5,113.5
+ parent: 1
+ - uid: 9936
+ components:
+ - type: Transform
+ pos: 81.5,113.5
+ parent: 1
+ - uid: 9937
+ components:
+ - type: Transform
+ pos: 85.5,113.5
+ parent: 1
+ - uid: 9938
+ components:
+ - type: Transform
+ pos: 86.5,113.5
+ parent: 1
+ - uid: 9939
+ components:
+ - type: Transform
+ pos: 87.5,113.5
+ parent: 1
+ - uid: 9940
+ components:
+ - type: Transform
+ pos: 88.5,113.5
+ parent: 1
+ - uid: 9941
+ components:
+ - type: Transform
+ pos: 83.5,113.5
+ parent: 1
+ - uid: 9942
+ components:
+ - type: Transform
+ pos: 84.5,113.5
+ parent: 1
+ - uid: 9943
+ components:
+ - type: Transform
+ pos: 88.5,114.5
+ parent: 1
+ - uid: 9944
+ components:
+ - type: Transform
+ pos: 88.5,115.5
+ parent: 1
+ - uid: 9945
+ components:
+ - type: Transform
+ pos: 88.5,116.5
+ parent: 1
+ - uid: 9946
+ components:
+ - type: Transform
+ pos: 88.5,117.5
+ parent: 1
+ - uid: 9947
+ components:
+ - type: Transform
+ pos: 88.5,118.5
+ parent: 1
+ - uid: 9948
+ components:
+ - type: Transform
+ pos: 89.5,118.5
+ parent: 1
+ - uid: 9949
+ components:
+ - type: Transform
+ pos: 90.5,118.5
+ parent: 1
+ - uid: 9950
+ components:
+ - type: Transform
+ pos: 91.5,118.5
+ parent: 1
+ - uid: 9951
+ components:
+ - type: Transform
+ pos: 92.5,118.5
+ parent: 1
+ - uid: 9952
+ components:
+ - type: Transform
+ pos: 93.5,118.5
+ parent: 1
+ - uid: 9953
+ components:
+ - type: Transform
+ pos: 94.5,118.5
+ parent: 1
+ - uid: 9954
+ components:
+ - type: Transform
+ pos: 95.5,118.5
+ parent: 1
+ - uid: 9955
+ components:
+ - type: Transform
+ pos: 96.5,118.5
+ parent: 1
+ - uid: 9956
+ components:
+ - type: Transform
+ pos: 97.5,118.5
+ parent: 1
+ - uid: 9960
+ components:
+ - type: Transform
+ pos: 91.5,113.5
+ parent: 1
+ - uid: 9961
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 1
+ - uid: 9962
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - uid: 9963
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 1
+ - uid: 9964
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - uid: 9965
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - uid: 9966
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - uid: 9967
+ components:
+ - type: Transform
+ pos: 91.5,106.5
+ parent: 1
+ - uid: 9968
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - uid: 9969
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - uid: 9970
+ components:
+ - type: Transform
+ pos: 91.5,103.5
+ parent: 1
+ - uid: 9971
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 9972
+ components:
+ - type: Transform
+ pos: 91.5,101.5
+ parent: 1
+ - uid: 9973
+ components:
+ - type: Transform
+ pos: 91.5,99.5
+ parent: 1
+ - uid: 9974
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 9975
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - uid: 9976
+ components:
+ - type: Transform
+ pos: 91.5,96.5
+ parent: 1
+ - uid: 9977
+ components:
+ - type: Transform
+ pos: 91.5,95.5
+ parent: 1
+ - uid: 9978
+ components:
+ - type: Transform
+ pos: 91.5,94.5
+ parent: 1
+ - uid: 9979
+ components:
+ - type: Transform
+ pos: 91.5,100.5
+ parent: 1
+ - uid: 9980
+ components:
+ - type: Transform
+ pos: 92.5,94.5
+ parent: 1
+ - uid: 9981
+ components:
+ - type: Transform
+ pos: 93.5,94.5
+ parent: 1
+ - uid: 9982
+ components:
+ - type: Transform
+ pos: 94.5,94.5
+ parent: 1
+ - uid: 9983
+ components:
+ - type: Transform
+ pos: 95.5,94.5
+ parent: 1
+ - uid: 9984
+ components:
+ - type: Transform
+ pos: 95.5,93.5
+ parent: 1
+ - uid: 9985
+ components:
+ - type: Transform
+ pos: 95.5,92.5
+ parent: 1
+ - uid: 9986
+ components:
+ - type: Transform
+ pos: 95.5,91.5
+ parent: 1
+ - uid: 9987
+ components:
+ - type: Transform
+ pos: 95.5,90.5
+ parent: 1
+ - uid: 9988
+ components:
+ - type: Transform
+ pos: 95.5,88.5
+ parent: 1
+ - uid: 9990
+ components:
+ - type: Transform
+ pos: 95.5,86.5
+ parent: 1
+ - uid: 9991
+ components:
+ - type: Transform
+ pos: 95.5,89.5
+ parent: 1
+ - uid: 9992
+ components:
+ - type: Transform
+ pos: 95.5,84.5
+ parent: 1
+ - uid: 9993
+ components:
+ - type: Transform
+ pos: 95.5,85.5
+ parent: 1
+ - uid: 9996
+ components:
+ - type: Transform
+ pos: 134.5,86.5
+ parent: 1
+ - uid: 9999
+ components:
+ - type: Transform
+ pos: 93.5,80.5
+ parent: 1
+ - uid: 10000
+ components:
+ - type: Transform
+ pos: 93.5,79.5
+ parent: 1
+ - uid: 10001
+ components:
+ - type: Transform
+ pos: 93.5,78.5
+ parent: 1
+ - uid: 10002
+ components:
+ - type: Transform
+ pos: 93.5,77.5
+ parent: 1
+ - uid: 10003
+ components:
+ - type: Transform
+ pos: 93.5,76.5
+ parent: 1
+ - uid: 10004
+ components:
+ - type: Transform
+ pos: 93.5,75.5
+ parent: 1
+ - uid: 10005
+ components:
+ - type: Transform
+ pos: 93.5,74.5
+ parent: 1
+ - uid: 10006
+ components:
+ - type: Transform
+ pos: 93.5,72.5
+ parent: 1
+ - uid: 10007
+ components:
+ - type: Transform
+ pos: 93.5,71.5
+ parent: 1
+ - uid: 10008
+ components:
+ - type: Transform
+ pos: 93.5,70.5
+ parent: 1
+ - uid: 10009
+ components:
+ - type: Transform
+ pos: 93.5,69.5
+ parent: 1
+ - uid: 10010
+ components:
+ - type: Transform
+ pos: 93.5,68.5
+ parent: 1
+ - uid: 10011
+ components:
+ - type: Transform
+ pos: 93.5,67.5
+ parent: 1
+ - uid: 10012
+ components:
+ - type: Transform
+ pos: 93.5,73.5
+ parent: 1
+ - uid: 10013
+ components:
+ - type: Transform
+ pos: 93.5,65.5
+ parent: 1
+ - uid: 10014
+ components:
+ - type: Transform
+ pos: 93.5,64.5
+ parent: 1
+ - uid: 10015
+ components:
+ - type: Transform
+ pos: 93.5,66.5
+ parent: 1
+ - uid: 10016
+ components:
+ - type: Transform
+ pos: 92.5,64.5
+ parent: 1
+ - uid: 10017
+ components:
+ - type: Transform
+ pos: 91.5,64.5
+ parent: 1
+ - uid: 10018
+ components:
+ - type: Transform
+ pos: 90.5,64.5
+ parent: 1
+ - uid: 10019
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 1
+ - uid: 10020
+ components:
+ - type: Transform
+ pos: 88.5,64.5
+ parent: 1
+ - uid: 10021
+ components:
+ - type: Transform
+ pos: 87.5,64.5
+ parent: 1
+ - uid: 10022
+ components:
+ - type: Transform
+ pos: 86.5,64.5
+ parent: 1
+ - uid: 10023
+ components:
+ - type: Transform
+ pos: 85.5,64.5
+ parent: 1
+ - uid: 10024
+ components:
+ - type: Transform
+ pos: 84.5,64.5
+ parent: 1
+ - uid: 10025
+ components:
+ - type: Transform
+ pos: 83.5,64.5
+ parent: 1
+ - uid: 10026
+ components:
+ - type: Transform
+ pos: 82.5,64.5
+ parent: 1
+ - uid: 10027
+ components:
+ - type: Transform
+ pos: 81.5,64.5
+ parent: 1
+ - uid: 10028
+ components:
+ - type: Transform
+ pos: 80.5,64.5
+ parent: 1
+ - uid: 10029
+ components:
+ - type: Transform
+ pos: 79.5,64.5
+ parent: 1
+ - uid: 10030
+ components:
+ - type: Transform
+ pos: 78.5,64.5
+ parent: 1
+ - uid: 10031
+ components:
+ - type: Transform
+ pos: 77.5,64.5
+ parent: 1
+ - uid: 10032
+ components:
+ - type: Transform
+ pos: 76.5,64.5
+ parent: 1
+ - uid: 10033
+ components:
+ - type: Transform
+ pos: 75.5,64.5
+ parent: 1
+ - uid: 10034
+ components:
+ - type: Transform
+ pos: 74.5,64.5
+ parent: 1
+ - uid: 10035
+ components:
+ - type: Transform
+ pos: 73.5,64.5
+ parent: 1
+ - uid: 10036
+ components:
+ - type: Transform
+ pos: 72.5,64.5
+ parent: 1
+ - uid: 10037
+ components:
+ - type: Transform
+ pos: 71.5,64.5
+ parent: 1
+ - uid: 10038
+ components:
+ - type: Transform
+ pos: 70.5,64.5
+ parent: 1
+ - uid: 10039
+ components:
+ - type: Transform
+ pos: 69.5,64.5
+ parent: 1
+ - uid: 10040
+ components:
+ - type: Transform
+ pos: 68.5,64.5
+ parent: 1
+ - uid: 10041
+ components:
+ - type: Transform
+ pos: 67.5,64.5
+ parent: 1
+ - uid: 10042
+ components:
+ - type: Transform
+ pos: 66.5,64.5
+ parent: 1
+ - uid: 10043
+ components:
+ - type: Transform
+ pos: 65.5,64.5
+ parent: 1
+ - uid: 10046
+ components:
+ - type: Transform
+ pos: 61.5,68.5
+ parent: 1
+ - uid: 10047
+ components:
+ - type: Transform
+ pos: 60.5,68.5
+ parent: 1
+ - uid: 10048
+ components:
+ - type: Transform
+ pos: 59.5,68.5
+ parent: 1
+ - uid: 10049
+ components:
+ - type: Transform
+ pos: 59.5,69.5
+ parent: 1
+ - uid: 10050
+ components:
+ - type: Transform
+ pos: 59.5,70.5
+ parent: 1
+ - uid: 10051
+ components:
+ - type: Transform
+ pos: 59.5,71.5
+ parent: 1
+ - uid: 10052
+ components:
+ - type: Transform
+ pos: 59.5,72.5
+ parent: 1
+ - uid: 10053
+ components:
+ - type: Transform
+ pos: 59.5,73.5
+ parent: 1
+ - uid: 10054
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 1
+ - uid: 10055
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - uid: 10056
+ components:
+ - type: Transform
+ pos: 59.5,76.5
+ parent: 1
+ - uid: 10057
+ components:
+ - type: Transform
+ pos: 59.5,77.5
+ parent: 1
+ - uid: 10058
+ components:
+ - type: Transform
+ pos: 59.5,78.5
+ parent: 1
+ - uid: 10059
+ components:
+ - type: Transform
+ pos: 58.5,78.5
+ parent: 1
+ - uid: 10060
+ components:
+ - type: Transform
+ pos: 57.5,78.5
+ parent: 1
+ - uid: 10061
+ components:
+ - type: Transform
+ pos: 60.5,78.5
+ parent: 1
+ - uid: 10062
+ components:
+ - type: Transform
+ pos: 61.5,78.5
+ parent: 1
+ - uid: 10063
+ components:
+ - type: Transform
+ pos: 62.5,78.5
+ parent: 1
+ - uid: 10064
+ components:
+ - type: Transform
+ pos: 63.5,78.5
+ parent: 1
+ - uid: 10065
+ components:
+ - type: Transform
+ pos: 64.5,78.5
+ parent: 1
+ - uid: 10066
+ components:
+ - type: Transform
+ pos: 65.5,78.5
+ parent: 1
+ - uid: 10067
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 10068
+ components:
+ - type: Transform
+ pos: 67.5,78.5
+ parent: 1
+ - uid: 10069
+ components:
+ - type: Transform
+ pos: 68.5,78.5
+ parent: 1
+ - uid: 10070
+ components:
+ - type: Transform
+ pos: 69.5,78.5
+ parent: 1
+ - uid: 10071
+ components:
+ - type: Transform
+ pos: 70.5,78.5
+ parent: 1
+ - uid: 10072
+ components:
+ - type: Transform
+ pos: 71.5,78.5
+ parent: 1
+ - uid: 10073
+ components:
+ - type: Transform
+ pos: 72.5,78.5
+ parent: 1
+ - uid: 10074
+ components:
+ - type: Transform
+ pos: 72.5,79.5
+ parent: 1
+ - uid: 10075
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - uid: 10076
+ components:
+ - type: Transform
+ pos: 73.5,80.5
+ parent: 1
+ - uid: 10077
+ components:
+ - type: Transform
+ pos: 74.5,80.5
+ parent: 1
+ - uid: 10078
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 1
+ - uid: 10079
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 10080
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 1
+ - uid: 10081
+ components:
+ - type: Transform
+ pos: 78.5,80.5
+ parent: 1
+ - uid: 10082
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 1
+ - uid: 10083
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 1
+ - uid: 10084
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 1
+ - uid: 10085
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 1
+ - uid: 10086
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 1
+ - uid: 10087
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 1
+ - uid: 10088
+ components:
+ - type: Transform
+ pos: 85.5,80.5
+ parent: 1
+ - uid: 10089
+ components:
+ - type: Transform
+ pos: 86.5,80.5
+ parent: 1
+ - uid: 10090
+ components:
+ - type: Transform
+ pos: 87.5,80.5
+ parent: 1
+ - uid: 10091
+ components:
+ - type: Transform
+ pos: 88.5,80.5
+ parent: 1
+ - uid: 10092
+ components:
+ - type: Transform
+ pos: 147.5,79.5
+ parent: 1
+ - uid: 10093
+ components:
+ - type: Transform
+ pos: 147.5,81.5
+ parent: 1
+ - uid: 10094
+ components:
+ - type: Transform
+ pos: 147.5,80.5
+ parent: 1
+ - uid: 10096
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 10097
+ components:
+ - type: Transform
+ pos: 74.5,82.5
+ parent: 1
+ - uid: 10098
+ components:
+ - type: Transform
+ pos: 74.5,83.5
+ parent: 1
+ - uid: 10099
+ components:
+ - type: Transform
+ pos: 73.5,83.5
+ parent: 1
+ - uid: 10100
+ components:
+ - type: Transform
+ pos: 72.5,83.5
+ parent: 1
+ - uid: 10102
+ components:
+ - type: Transform
+ pos: 94.5,77.5
+ parent: 1
+ - uid: 10103
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 1
+ - uid: 10104
+ components:
+ - type: Transform
+ pos: 97.5,77.5
+ parent: 1
+ - uid: 10105
+ components:
+ - type: Transform
+ pos: 98.5,77.5
+ parent: 1
+ - uid: 10106
+ components:
+ - type: Transform
+ pos: 99.5,77.5
+ parent: 1
+ - uid: 10107
+ components:
+ - type: Transform
+ pos: 95.5,77.5
+ parent: 1
+ - uid: 10108
+ components:
+ - type: Transform
+ pos: 101.5,77.5
+ parent: 1
+ - uid: 10109
+ components:
+ - type: Transform
+ pos: 100.5,77.5
+ parent: 1
+ - uid: 10110
+ components:
+ - type: Transform
+ pos: 102.5,77.5
+ parent: 1
+ - uid: 10111
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 1
+ - uid: 10112
+ components:
+ - type: Transform
+ pos: 104.5,77.5
+ parent: 1
+ - uid: 10113
+ components:
+ - type: Transform
+ pos: 105.5,77.5
+ parent: 1
+ - uid: 10114
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 1
+ - uid: 10115
+ components:
+ - type: Transform
+ pos: 107.5,77.5
+ parent: 1
+ - uid: 10116
+ components:
+ - type: Transform
+ pos: 108.5,77.5
+ parent: 1
+ - uid: 10117
+ components:
+ - type: Transform
+ pos: 111.5,77.5
+ parent: 1
+ - uid: 10118
+ components:
+ - type: Transform
+ pos: 112.5,77.5
+ parent: 1
+ - uid: 10119
+ components:
+ - type: Transform
+ pos: 113.5,77.5
+ parent: 1
+ - uid: 10120
+ components:
+ - type: Transform
+ pos: 109.5,77.5
+ parent: 1
+ - uid: 10121
+ components:
+ - type: Transform
+ pos: 110.5,77.5
+ parent: 1
+ - uid: 10122
+ components:
+ - type: Transform
+ pos: 116.5,77.5
+ parent: 1
+ - uid: 10123
+ components:
+ - type: Transform
+ pos: 117.5,77.5
+ parent: 1
+ - uid: 10124
+ components:
+ - type: Transform
+ pos: 118.5,77.5
+ parent: 1
+ - uid: 10125
+ components:
+ - type: Transform
+ pos: 119.5,77.5
+ parent: 1
+ - uid: 10126
+ components:
+ - type: Transform
+ pos: 120.5,77.5
+ parent: 1
+ - uid: 10127
+ components:
+ - type: Transform
+ pos: 121.5,77.5
+ parent: 1
+ - uid: 10128
+ components:
+ - type: Transform
+ pos: 122.5,77.5
+ parent: 1
+ - uid: 10129
+ components:
+ - type: Transform
+ pos: 115.5,77.5
+ parent: 1
+ - uid: 10130
+ components:
+ - type: Transform
+ pos: 124.5,77.5
+ parent: 1
+ - uid: 10131
+ components:
+ - type: Transform
+ pos: 125.5,77.5
+ parent: 1
+ - uid: 10132
+ components:
+ - type: Transform
+ pos: 126.5,77.5
+ parent: 1
+ - uid: 10133
+ components:
+ - type: Transform
+ pos: 123.5,77.5
+ parent: 1
+ - uid: 10134
+ components:
+ - type: Transform
+ pos: 114.5,77.5
+ parent: 1
+ - uid: 10135
+ components:
+ - type: Transform
+ pos: 127.5,77.5
+ parent: 1
+ - uid: 10136
+ components:
+ - type: Transform
+ pos: 128.5,77.5
+ parent: 1
+ - uid: 10137
+ components:
+ - type: Transform
+ pos: 129.5,77.5
+ parent: 1
+ - uid: 10138
+ components:
+ - type: Transform
+ pos: 130.5,77.5
+ parent: 1
+ - uid: 10139
+ components:
+ - type: Transform
+ pos: 131.5,77.5
+ parent: 1
+ - uid: 10140
+ components:
+ - type: Transform
+ pos: 132.5,77.5
+ parent: 1
+ - uid: 10141
+ components:
+ - type: Transform
+ pos: 133.5,77.5
+ parent: 1
+ - uid: 10142
+ components:
+ - type: Transform
+ pos: 134.5,77.5
+ parent: 1
+ - uid: 10143
+ components:
+ - type: Transform
+ pos: 136.5,77.5
+ parent: 1
+ - uid: 10144
+ components:
+ - type: Transform
+ pos: 137.5,77.5
+ parent: 1
+ - uid: 10145
+ components:
+ - type: Transform
+ pos: 135.5,77.5
+ parent: 1
+ - uid: 10146
+ components:
+ - type: Transform
+ pos: 138.5,77.5
+ parent: 1
+ - uid: 10147
+ components:
+ - type: Transform
+ pos: 139.5,77.5
+ parent: 1
+ - uid: 10148
+ components:
+ - type: Transform
+ pos: 140.5,77.5
+ parent: 1
+ - uid: 10149
+ components:
+ - type: Transform
+ pos: 141.5,77.5
+ parent: 1
+ - uid: 10150
+ components:
+ - type: Transform
+ pos: 142.5,77.5
+ parent: 1
+ - uid: 10151
+ components:
+ - type: Transform
+ pos: 143.5,77.5
+ parent: 1
+ - uid: 10152
+ components:
+ - type: Transform
+ pos: 128.5,78.5
+ parent: 1
+ - uid: 10153
+ components:
+ - type: Transform
+ pos: 128.5,79.5
+ parent: 1
+ - uid: 10154
+ components:
+ - type: Transform
+ pos: 128.5,80.5
+ parent: 1
+ - uid: 10155
+ components:
+ - type: Transform
+ pos: 128.5,81.5
+ parent: 1
+ - uid: 10156
+ components:
+ - type: Transform
+ pos: 128.5,82.5
+ parent: 1
+ - uid: 10157
+ components:
+ - type: Transform
+ pos: 128.5,83.5
+ parent: 1
+ - uid: 10158
+ components:
+ - type: Transform
+ pos: 128.5,84.5
+ parent: 1
+ - uid: 10159
+ components:
+ - type: Transform
+ pos: 128.5,85.5
+ parent: 1
+ - uid: 10160
+ components:
+ - type: Transform
+ pos: 128.5,86.5
+ parent: 1
+ - uid: 10161
+ components:
+ - type: Transform
+ pos: 128.5,87.5
+ parent: 1
+ - uid: 10162
+ components:
+ - type: Transform
+ pos: 128.5,88.5
+ parent: 1
+ - uid: 10163
+ components:
+ - type: Transform
+ pos: 128.5,89.5
+ parent: 1
+ - uid: 10164
+ components:
+ - type: Transform
+ pos: 128.5,90.5
+ parent: 1
+ - uid: 10165
+ components:
+ - type: Transform
+ pos: 128.5,91.5
+ parent: 1
+ - uid: 10166
+ components:
+ - type: Transform
+ pos: 128.5,92.5
+ parent: 1
+ - uid: 10167
+ components:
+ - type: Transform
+ pos: 128.5,93.5
+ parent: 1
+ - uid: 10168
+ components:
+ - type: Transform
+ pos: 128.5,94.5
+ parent: 1
+ - uid: 10169
+ components:
+ - type: Transform
+ pos: 128.5,95.5
+ parent: 1
+ - uid: 10170
+ components:
+ - type: Transform
+ pos: 128.5,96.5
+ parent: 1
+ - uid: 10171
+ components:
+ - type: Transform
+ pos: 128.5,97.5
+ parent: 1
+ - uid: 10172
+ components:
+ - type: Transform
+ pos: 128.5,98.5
+ parent: 1
+ - uid: 10173
+ components:
+ - type: Transform
+ pos: 128.5,99.5
+ parent: 1
+ - uid: 10174
+ components:
+ - type: Transform
+ pos: 128.5,100.5
+ parent: 1
+ - uid: 10175
+ components:
+ - type: Transform
+ pos: 128.5,102.5
+ parent: 1
+ - uid: 10176
+ components:
+ - type: Transform
+ pos: 128.5,103.5
+ parent: 1
+ - uid: 10177
+ components:
+ - type: Transform
+ pos: 128.5,104.5
+ parent: 1
+ - uid: 10178
+ components:
+ - type: Transform
+ pos: 128.5,101.5
+ parent: 1
+ - uid: 10179
+ components:
+ - type: Transform
+ pos: 128.5,105.5
+ parent: 1
+ - uid: 10180
+ components:
+ - type: Transform
+ pos: 128.5,106.5
+ parent: 1
+ - uid: 10181
+ components:
+ - type: Transform
+ pos: 128.5,107.5
+ parent: 1
+ - uid: 10182
+ components:
+ - type: Transform
+ pos: 128.5,108.5
+ parent: 1
+ - uid: 10183
+ components:
+ - type: Transform
+ pos: 128.5,109.5
+ parent: 1
+ - uid: 10184
+ components:
+ - type: Transform
+ pos: 128.5,110.5
+ parent: 1
+ - uid: 10185
+ components:
+ - type: Transform
+ pos: 128.5,111.5
+ parent: 1
+ - uid: 10186
+ components:
+ - type: Transform
+ pos: 128.5,113.5
+ parent: 1
+ - uid: 10187
+ components:
+ - type: Transform
+ pos: 128.5,114.5
+ parent: 1
+ - uid: 10188
+ components:
+ - type: Transform
+ pos: 128.5,115.5
+ parent: 1
+ - uid: 10189
+ components:
+ - type: Transform
+ pos: 128.5,116.5
+ parent: 1
+ - uid: 10190
+ components:
+ - type: Transform
+ pos: 128.5,117.5
+ parent: 1
+ - uid: 10191
+ components:
+ - type: Transform
+ pos: 128.5,112.5
+ parent: 1
+ - uid: 10192
+ components:
+ - type: Transform
+ pos: 127.5,118.5
+ parent: 1
+ - uid: 10193
+ components:
+ - type: Transform
+ pos: 126.5,118.5
+ parent: 1
+ - uid: 10194
+ components:
+ - type: Transform
+ pos: 125.5,118.5
+ parent: 1
+ - uid: 10195
+ components:
+ - type: Transform
+ pos: 124.5,118.5
+ parent: 1
+ - uid: 10196
+ components:
+ - type: Transform
+ pos: 123.5,118.5
+ parent: 1
+ - uid: 10197
+ components:
+ - type: Transform
+ pos: 122.5,118.5
+ parent: 1
+ - uid: 10198
+ components:
+ - type: Transform
+ pos: 121.5,118.5
+ parent: 1
+ - uid: 10199
+ components:
+ - type: Transform
+ pos: 120.5,118.5
+ parent: 1
+ - uid: 10200
+ components:
+ - type: Transform
+ pos: 119.5,118.5
+ parent: 1
+ - uid: 10201
+ components:
+ - type: Transform
+ pos: 118.5,118.5
+ parent: 1
+ - uid: 10202
+ components:
+ - type: Transform
+ pos: 117.5,118.5
+ parent: 1
+ - uid: 10203
+ components:
+ - type: Transform
+ pos: 116.5,118.5
+ parent: 1
+ - uid: 10204
+ components:
+ - type: Transform
+ pos: 115.5,118.5
+ parent: 1
+ - uid: 10205
+ components:
+ - type: Transform
+ pos: 114.5,118.5
+ parent: 1
+ - uid: 10206
+ components:
+ - type: Transform
+ pos: 113.5,118.5
+ parent: 1
+ - uid: 10207
+ components:
+ - type: Transform
+ pos: 112.5,118.5
+ parent: 1
+ - uid: 10208
+ components:
+ - type: Transform
+ pos: 111.5,118.5
+ parent: 1
+ - uid: 10209
+ components:
+ - type: Transform
+ pos: 110.5,118.5
+ parent: 1
+ - uid: 10210
+ components:
+ - type: Transform
+ pos: 109.5,118.5
+ parent: 1
+ - uid: 10211
+ components:
+ - type: Transform
+ pos: 108.5,118.5
+ parent: 1
+ - uid: 10212
+ components:
+ - type: Transform
+ pos: 107.5,118.5
+ parent: 1
+ - uid: 10213
+ components:
+ - type: Transform
+ pos: 106.5,118.5
+ parent: 1
+ - uid: 10214
+ components:
+ - type: Transform
+ pos: 105.5,118.5
+ parent: 1
+ - uid: 10215
+ components:
+ - type: Transform
+ pos: 104.5,118.5
+ parent: 1
+ - uid: 10216
+ components:
+ - type: Transform
+ pos: 103.5,118.5
+ parent: 1
+ - uid: 10217
+ components:
+ - type: Transform
+ pos: 102.5,118.5
+ parent: 1
+ - uid: 10218
+ components:
+ - type: Transform
+ pos: 100.5,118.5
+ parent: 1
+ - uid: 10219
+ components:
+ - type: Transform
+ pos: 99.5,118.5
+ parent: 1
+ - uid: 10220
+ components:
+ - type: Transform
+ pos: 101.5,118.5
+ parent: 1
+ - uid: 10221
+ components:
+ - type: Transform
+ pos: 98.5,118.5
+ parent: 1
+ - uid: 10232
+ components:
+ - type: Transform
+ pos: 129.5,118.5
+ parent: 1
+ - uid: 10233
+ components:
+ - type: Transform
+ pos: 130.5,118.5
+ parent: 1
+ - uid: 10234
+ components:
+ - type: Transform
+ pos: 131.5,118.5
+ parent: 1
+ - uid: 10235
+ components:
+ - type: Transform
+ pos: 132.5,118.5
+ parent: 1
+ - uid: 10236
+ components:
+ - type: Transform
+ pos: 133.5,118.5
+ parent: 1
+ - uid: 10237
+ components:
+ - type: Transform
+ pos: 134.5,118.5
+ parent: 1
+ - uid: 10238
+ components:
+ - type: Transform
+ pos: 136.5,118.5
+ parent: 1
+ - uid: 10239
+ components:
+ - type: Transform
+ pos: 137.5,118.5
+ parent: 1
+ - uid: 10240
+ components:
+ - type: Transform
+ pos: 138.5,118.5
+ parent: 1
+ - uid: 10241
+ components:
+ - type: Transform
+ pos: 139.5,118.5
+ parent: 1
+ - uid: 10242
+ components:
+ - type: Transform
+ pos: 140.5,118.5
+ parent: 1
+ - uid: 10243
+ components:
+ - type: Transform
+ pos: 141.5,118.5
+ parent: 1
+ - uid: 10244
+ components:
+ - type: Transform
+ pos: 142.5,118.5
+ parent: 1
+ - uid: 10245
+ components:
+ - type: Transform
+ pos: 143.5,118.5
+ parent: 1
+ - uid: 10246
+ components:
+ - type: Transform
+ pos: 144.5,118.5
+ parent: 1
+ - uid: 10247
+ components:
+ - type: Transform
+ pos: 145.5,118.5
+ parent: 1
+ - uid: 10248
+ components:
+ - type: Transform
+ pos: 146.5,118.5
+ parent: 1
+ - uid: 10249
+ components:
+ - type: Transform
+ pos: 147.5,118.5
+ parent: 1
+ - uid: 10250
+ components:
+ - type: Transform
+ pos: 135.5,118.5
+ parent: 1
+ - uid: 10251
+ components:
+ - type: Transform
+ pos: 148.5,118.5
+ parent: 1
+ - uid: 10252
+ components:
+ - type: Transform
+ pos: 149.5,118.5
+ parent: 1
+ - uid: 10253
+ components:
+ - type: Transform
+ pos: 150.5,118.5
+ parent: 1
+ - uid: 10254
+ components:
+ - type: Transform
+ pos: 151.5,118.5
+ parent: 1
+ - uid: 10255
+ components:
+ - type: Transform
+ pos: 152.5,118.5
+ parent: 1
+ - uid: 10256
+ components:
+ - type: Transform
+ pos: 153.5,118.5
+ parent: 1
+ - uid: 10257
+ components:
+ - type: Transform
+ pos: 155.5,118.5
+ parent: 1
+ - uid: 10258
+ components:
+ - type: Transform
+ pos: 156.5,118.5
+ parent: 1
+ - uid: 10259
+ components:
+ - type: Transform
+ pos: 157.5,118.5
+ parent: 1
+ - uid: 10261
+ components:
+ - type: Transform
+ pos: 147.5,82.5
+ parent: 1
+ - uid: 10263
+ components:
+ - type: Transform
+ pos: 154.5,118.5
+ parent: 1
+ - uid: 10264
+ components:
+ - type: Transform
+ pos: 149.5,119.5
+ parent: 1
+ - uid: 10265
+ components:
+ - type: Transform
+ pos: 149.5,120.5
+ parent: 1
+ - uid: 10266
+ components:
+ - type: Transform
+ pos: 149.5,121.5
+ parent: 1
+ - uid: 10267
+ components:
+ - type: Transform
+ pos: 149.5,122.5
+ parent: 1
+ - uid: 10268
+ components:
+ - type: Transform
+ pos: 149.5,123.5
+ parent: 1
+ - uid: 10269
+ components:
+ - type: Transform
+ pos: 149.5,124.5
+ parent: 1
+ - uid: 10270
+ components:
+ - type: Transform
+ pos: 149.5,125.5
+ parent: 1
+ - uid: 10271
+ components:
+ - type: Transform
+ pos: 149.5,126.5
+ parent: 1
+ - uid: 10272
+ components:
+ - type: Transform
+ pos: 149.5,127.5
+ parent: 1
+ - uid: 10273
+ components:
+ - type: Transform
+ pos: 149.5,128.5
+ parent: 1
+ - uid: 10274
+ components:
+ - type: Transform
+ pos: 149.5,129.5
+ parent: 1
+ - uid: 10275
+ components:
+ - type: Transform
+ pos: 149.5,130.5
+ parent: 1
+ - uid: 10276
+ components:
+ - type: Transform
+ pos: 149.5,132.5
+ parent: 1
+ - uid: 10277
+ components:
+ - type: Transform
+ pos: 149.5,131.5
+ parent: 1
+ - uid: 10278
+ components:
+ - type: Transform
+ pos: 149.5,133.5
+ parent: 1
+ - uid: 10279
+ components:
+ - type: Transform
+ pos: 149.5,134.5
+ parent: 1
+ - uid: 10280
+ components:
+ - type: Transform
+ pos: 149.5,135.5
+ parent: 1
+ - uid: 10281
+ components:
+ - type: Transform
+ pos: 149.5,136.5
+ parent: 1
+ - uid: 10282
+ components:
+ - type: Transform
+ pos: 149.5,137.5
+ parent: 1
+ - uid: 10283
+ components:
+ - type: Transform
+ pos: 149.5,138.5
+ parent: 1
+ - uid: 10284
+ components:
+ - type: Transform
+ pos: 150.5,138.5
+ parent: 1
+ - uid: 10285
+ components:
+ - type: Transform
+ pos: 151.5,138.5
+ parent: 1
+ - uid: 10286
+ components:
+ - type: Transform
+ pos: 152.5,138.5
+ parent: 1
+ - uid: 10287
+ components:
+ - type: Transform
+ pos: 153.5,138.5
+ parent: 1
+ - uid: 10288
+ components:
+ - type: Transform
+ pos: 154.5,138.5
+ parent: 1
+ - uid: 10289
+ components:
+ - type: Transform
+ pos: 155.5,138.5
+ parent: 1
+ - uid: 10290
+ components:
+ - type: Transform
+ pos: 156.5,138.5
+ parent: 1
+ - uid: 10291
+ components:
+ - type: Transform
+ pos: 157.5,138.5
+ parent: 1
+ - uid: 10292
+ components:
+ - type: Transform
+ pos: 158.5,138.5
+ parent: 1
+ - uid: 10293
+ components:
+ - type: Transform
+ pos: 159.5,138.5
+ parent: 1
+ - uid: 10294
+ components:
+ - type: Transform
+ pos: 148.5,138.5
+ parent: 1
+ - uid: 10295
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - uid: 10296
+ components:
+ - type: Transform
+ pos: 145.5,139.5
+ parent: 1
+ - uid: 10297
+ components:
+ - type: Transform
+ pos: 145.5,140.5
+ parent: 1
+ - uid: 10298
+ components:
+ - type: Transform
+ pos: 145.5,141.5
+ parent: 1
+ - uid: 10299
+ components:
+ - type: Transform
+ pos: 145.5,142.5
+ parent: 1
+ - uid: 10300
+ components:
+ - type: Transform
+ pos: 145.5,138.5
+ parent: 1
+ - uid: 10301
+ components:
+ - type: Transform
+ pos: 145.5,143.5
+ parent: 1
+ - uid: 10302
+ components:
+ - type: Transform
+ pos: 145.5,144.5
+ parent: 1
+ - uid: 10303
+ components:
+ - type: Transform
+ pos: 147.5,138.5
+ parent: 1
+ - uid: 10304
+ components:
+ - type: Transform
+ pos: 145.5,145.5
+ parent: 1
+ - uid: 10305
+ components:
+ - type: Transform
+ pos: 145.5,147.5
+ parent: 1
+ - uid: 10306
+ components:
+ - type: Transform
+ pos: 145.5,146.5
+ parent: 1
+ - uid: 10335
+ components:
+ - type: Transform
+ pos: 163.5,57.5
+ parent: 1
+ - uid: 10380
+ components:
+ - type: Transform
+ pos: 56.5,142.5
+ parent: 1
+ - uid: 10382
+ components:
+ - type: Transform
+ pos: 57.5,148.5
+ parent: 1
+ - uid: 10383
+ components:
+ - type: Transform
+ pos: 58.5,148.5
+ parent: 1
+ - uid: 10416
+ components:
+ - type: Transform
+ pos: 78.5,155.5
+ parent: 1
+ - uid: 10417
+ components:
+ - type: Transform
+ pos: 81.5,156.5
+ parent: 1
+ - uid: 10419
+ components:
+ - type: Transform
+ pos: 98.5,171.5
+ parent: 1
+ - uid: 10420
+ components:
+ - type: Transform
+ pos: 90.5,171.5
+ parent: 1
+ - uid: 10421
+ components:
+ - type: Transform
+ pos: 97.5,172.5
+ parent: 1
+ - uid: 10425
+ components:
+ - type: Transform
+ pos: 92.5,172.5
+ parent: 1
+ - uid: 10468
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - uid: 10469
+ components:
+ - type: Transform
+ pos: 123.5,161.5
+ parent: 1
+ - uid: 10470
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - uid: 10515
+ components:
+ - type: Transform
+ pos: 147.5,114.5
+ parent: 1
+ - uid: 10541
+ components:
+ - type: Transform
+ pos: 143.5,114.5
+ parent: 1
+ - uid: 10543
+ components:
+ - type: Transform
+ pos: 155.5,115.5
+ parent: 1
+ - uid: 10544
+ components:
+ - type: Transform
+ pos: 150.5,115.5
+ parent: 1
+ - uid: 10545
+ components:
+ - type: Transform
+ pos: 152.5,115.5
+ parent: 1
+ - uid: 10546
+ components:
+ - type: Transform
+ pos: 150.5,113.5
+ parent: 1
+ - uid: 10718
+ components:
+ - type: Transform
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 10723
+ components:
+ - type: Transform
+ pos: 88.5,36.5
+ parent: 1
+ - uid: 10724
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 1
+ - uid: 10740
+ components:
+ - type: Transform
+ pos: 63.5,35.5
+ parent: 1
+ - uid: 10801
+ components:
+ - type: Transform
+ pos: 43.5,58.5
+ parent: 1
+ - uid: 10802
+ components:
+ - type: Transform
+ pos: 43.5,59.5
+ parent: 1
+ - uid: 10803
+ components:
+ - type: Transform
+ pos: 43.5,60.5
+ parent: 1
+ - uid: 10804
+ components:
+ - type: Transform
+ pos: 43.5,61.5
+ parent: 1
+ - uid: 10805
+ components:
+ - type: Transform
+ pos: 43.5,62.5
+ parent: 1
+ - uid: 10806
+ components:
+ - type: Transform
+ pos: 43.5,63.5
+ parent: 1
+ - uid: 10807
+ components:
+ - type: Transform
+ pos: 43.5,64.5
+ parent: 1
+ - uid: 10808
+ components:
+ - type: Transform
+ pos: 43.5,66.5
+ parent: 1
+ - uid: 10809
+ components:
+ - type: Transform
+ pos: 43.5,65.5
+ parent: 1
+ - uid: 10810
+ components:
+ - type: Transform
+ pos: 43.5,67.5
+ parent: 1
+ - uid: 10811
+ components:
+ - type: Transform
+ pos: 43.5,68.5
+ parent: 1
+ - uid: 10812
+ components:
+ - type: Transform
+ pos: 43.5,69.5
+ parent: 1
+ - uid: 10813
+ components:
+ - type: Transform
+ pos: 43.5,70.5
+ parent: 1
+ - uid: 10814
+ components:
+ - type: Transform
+ pos: 43.5,71.5
+ parent: 1
+ - uid: 10815
+ components:
+ - type: Transform
+ pos: 43.5,72.5
+ parent: 1
+ - uid: 10816
+ components:
+ - type: Transform
+ pos: 43.5,73.5
+ parent: 1
+ - uid: 10817
+ components:
+ - type: Transform
+ pos: 43.5,74.5
+ parent: 1
+ - uid: 10818
+ components:
+ - type: Transform
+ pos: 43.5,75.5
+ parent: 1
+ - uid: 10819
+ components:
+ - type: Transform
+ pos: 43.5,76.5
+ parent: 1
+ - uid: 10820
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - uid: 10821
+ components:
+ - type: Transform
+ pos: 43.5,78.5
+ parent: 1
+ - uid: 10822
+ components:
+ - type: Transform
+ pos: 44.5,78.5
+ parent: 1
+ - uid: 10823
+ components:
+ - type: Transform
+ pos: 45.5,78.5
+ parent: 1
+ - uid: 10824
+ components:
+ - type: Transform
+ pos: 46.5,78.5
+ parent: 1
+ - uid: 10825
+ components:
+ - type: Transform
+ pos: 47.5,78.5
+ parent: 1
+ - uid: 10826
+ components:
+ - type: Transform
+ pos: 48.5,78.5
+ parent: 1
+ - uid: 10827
+ components:
+ - type: Transform
+ pos: 49.5,78.5
+ parent: 1
+ - uid: 10828
+ components:
+ - type: Transform
+ pos: 50.5,78.5
+ parent: 1
+ - uid: 10829
+ components:
+ - type: Transform
+ pos: 51.5,78.5
+ parent: 1
+ - uid: 10830
+ components:
+ - type: Transform
+ pos: 52.5,78.5
+ parent: 1
+ - uid: 10831
+ components:
+ - type: Transform
+ pos: 54.5,78.5
+ parent: 1
+ - uid: 10832
+ components:
+ - type: Transform
+ pos: 55.5,78.5
+ parent: 1
+ - uid: 10833
+ components:
+ - type: Transform
+ pos: 53.5,78.5
+ parent: 1
+ - uid: 10834
+ components:
+ - type: Transform
+ pos: 43.5,79.5
+ parent: 1
+ - uid: 10835
+ components:
+ - type: Transform
+ pos: 43.5,80.5
+ parent: 1
+ - uid: 10836
+ components:
+ - type: Transform
+ pos: 43.5,81.5
+ parent: 1
+ - uid: 10837
+ components:
+ - type: Transform
+ pos: 43.5,82.5
+ parent: 1
+ - uid: 10838
+ components:
+ - type: Transform
+ pos: 43.5,83.5
+ parent: 1
+ - uid: 10839
+ components:
+ - type: Transform
+ pos: 43.5,84.5
+ parent: 1
+ - uid: 10840
+ components:
+ - type: Transform
+ pos: 43.5,85.5
+ parent: 1
+ - uid: 10841
+ components:
+ - type: Transform
+ pos: 43.5,86.5
+ parent: 1
+ - uid: 10842
+ components:
+ - type: Transform
+ pos: 43.5,87.5
+ parent: 1
+ - uid: 10843
+ components:
+ - type: Transform
+ pos: 43.5,88.5
+ parent: 1
+ - uid: 10844
+ components:
+ - type: Transform
+ pos: 43.5,89.5
+ parent: 1
+ - uid: 10845
+ components:
+ - type: Transform
+ pos: 43.5,90.5
+ parent: 1
+ - uid: 10846
+ components:
+ - type: Transform
+ pos: 43.5,92.5
+ parent: 1
+ - uid: 10847
+ components:
+ - type: Transform
+ pos: 43.5,93.5
+ parent: 1
+ - uid: 10848
+ components:
+ - type: Transform
+ pos: 43.5,94.5
+ parent: 1
+ - uid: 10849
+ components:
+ - type: Transform
+ pos: 43.5,95.5
+ parent: 1
+ - uid: 10850
+ components:
+ - type: Transform
+ pos: 43.5,91.5
+ parent: 1
+ - uid: 10851
+ components:
+ - type: Transform
+ pos: 43.5,97.5
+ parent: 1
+ - uid: 10852
+ components:
+ - type: Transform
+ pos: 43.5,96.5
+ parent: 1
+ - uid: 10853
+ components:
+ - type: Transform
+ pos: 43.5,99.5
+ parent: 1
+ - uid: 10854
+ components:
+ - type: Transform
+ pos: 43.5,98.5
+ parent: 1
+ - uid: 10855
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+ - uid: 10856
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 1
+ - uid: 10857
+ components:
+ - type: Transform
+ pos: 41.5,100.5
+ parent: 1
+ - uid: 10858
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 1
+ - uid: 10859
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 1
+ - uid: 10860
+ components:
+ - type: Transform
+ pos: 38.5,100.5
+ parent: 1
+ - uid: 10861
+ components:
+ - type: Transform
+ pos: 37.5,100.5
+ parent: 1
+ - uid: 10862
+ components:
+ - type: Transform
+ pos: 36.5,100.5
+ parent: 1
+ - uid: 10863
+ components:
+ - type: Transform
+ pos: 35.5,100.5
+ parent: 1
+ - uid: 10864
+ components:
+ - type: Transform
+ pos: 34.5,100.5
+ parent: 1
+ - uid: 10865
+ components:
+ - type: Transform
+ pos: 33.5,100.5
+ parent: 1
+ - uid: 10866
+ components:
+ - type: Transform
+ pos: 32.5,100.5
+ parent: 1
+ - uid: 10867
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 1
+ - uid: 10868
+ components:
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 1
+ - uid: 10869
+ components:
+ - type: Transform
+ pos: 30.5,100.5
+ parent: 1
+ - uid: 10870
+ components:
+ - type: Transform
+ pos: 28.5,100.5
+ parent: 1
+ - uid: 10871
+ components:
+ - type: Transform
+ pos: 27.5,100.5
+ parent: 1
+ - uid: 10872
+ components:
+ - type: Transform
+ pos: 26.5,100.5
+ parent: 1
+ - uid: 10873
+ components:
+ - type: Transform
+ pos: 24.5,100.5
+ parent: 1
+ - uid: 10874
+ components:
+ - type: Transform
+ pos: 25.5,100.5
+ parent: 1
+ - uid: 10875
+ components:
+ - type: Transform
+ pos: 23.5,100.5
+ parent: 1
+ - uid: 10876
+ components:
+ - type: Transform
+ pos: 22.5,100.5
+ parent: 1
+ - uid: 10877
+ components:
+ - type: Transform
+ pos: 22.5,99.5
+ parent: 1
+ - uid: 10878
+ components:
+ - type: Transform
+ pos: 22.5,98.5
+ parent: 1
+ - uid: 10879
+ components:
+ - type: Transform
+ pos: 22.5,97.5
+ parent: 1
+ - uid: 10880
+ components:
+ - type: Transform
+ pos: 22.5,96.5
+ parent: 1
+ - uid: 10881
+ components:
+ - type: Transform
+ pos: 23.5,96.5
+ parent: 1
+ - uid: 10882
+ components:
+ - type: Transform
+ pos: 24.5,96.5
+ parent: 1
+ - uid: 10883
+ components:
+ - type: Transform
+ pos: 25.5,96.5
+ parent: 1
+ - uid: 10884
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 1
+ - uid: 10885
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 1
+ - uid: 10886
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 1
+ - uid: 10887
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 1
+ - uid: 10888
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 1
+ - uid: 10889
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 1
+ - uid: 10890
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 1
+ - uid: 10891
+ components:
+ - type: Transform
+ pos: 25.5,87.5
+ parent: 1
+ - uid: 10892
+ components:
+ - type: Transform
+ pos: 25.5,86.5
+ parent: 1
+ - uid: 10893
+ components:
+ - type: Transform
+ pos: 25.5,85.5
+ parent: 1
+ - uid: 10894
+ components:
+ - type: Transform
+ pos: 25.5,84.5
+ parent: 1
+ - uid: 10895
+ components:
+ - type: Transform
+ pos: 26.5,84.5
+ parent: 1
+ - uid: 10896
+ components:
+ - type: Transform
+ pos: 27.5,84.5
+ parent: 1
+ - uid: 10897
+ components:
+ - type: Transform
+ pos: 28.5,84.5
+ parent: 1
+ - uid: 10898
+ components:
+ - type: Transform
+ pos: 28.5,83.5
+ parent: 1
+ - uid: 10899
+ components:
+ - type: Transform
+ pos: 28.5,82.5
+ parent: 1
+ - uid: 10900
+ components:
+ - type: Transform
+ pos: 28.5,80.5
+ parent: 1
+ - uid: 10906
+ components:
+ - type: Transform
+ pos: 28.5,74.5
+ parent: 1
+ - uid: 10907
+ components:
+ - type: Transform
+ pos: 28.5,81.5
+ parent: 1
+ - uid: 10908
+ components:
+ - type: Transform
+ pos: 28.5,73.5
+ parent: 1
+ - uid: 10909
+ components:
+ - type: Transform
+ pos: 28.5,72.5
+ parent: 1
+ - uid: 10910
+ components:
+ - type: Transform
+ pos: 28.5,71.5
+ parent: 1
+ - uid: 10919
+ components:
+ - type: Transform
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 10920
+ components:
+ - type: Transform
+ pos: 39.5,80.5
+ parent: 1
+ - uid: 10921
+ components:
+ - type: Transform
+ pos: 40.5,80.5
+ parent: 1
+ - uid: 10922
+ components:
+ - type: Transform
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 10923
+ components:
+ - type: Transform
+ pos: 42.5,80.5
+ parent: 1
+ - uid: 10924
+ components:
+ - type: Transform
+ pos: 37.5,80.5
+ parent: 1
+ - uid: 10934
+ components:
+ - type: Transform
+ pos: 47.5,55.5
+ parent: 1
+ - uid: 10935
+ components:
+ - type: Transform
+ pos: 47.5,56.5
+ parent: 1
+ - uid: 10936
+ components:
+ - type: Transform
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 10937
+ components:
+ - type: Transform
+ pos: 47.5,59.5
+ parent: 1
+ - uid: 10938
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 1
+ - uid: 10939
+ components:
+ - type: Transform
+ pos: 47.5,58.5
+ parent: 1
+ - uid: 10940
+ components:
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - uid: 10941
+ components:
+ - type: Transform
+ pos: 47.5,62.5
+ parent: 1
+ - uid: 10942
+ components:
+ - type: Transform
+ pos: 47.5,63.5
+ parent: 1
+ - uid: 10943
+ components:
+ - type: Transform
+ pos: 47.5,64.5
+ parent: 1
+ - uid: 10944
+ components:
+ - type: Transform
+ pos: 48.5,64.5
+ parent: 1
+ - uid: 10945
+ components:
+ - type: Transform
+ pos: 49.5,64.5
+ parent: 1
+ - uid: 10946
+ components:
+ - type: Transform
+ pos: 50.5,64.5
+ parent: 1
+ - uid: 10947
+ components:
+ - type: Transform
+ pos: 51.5,64.5
+ parent: 1
+ - uid: 10948
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - uid: 10949
+ components:
+ - type: Transform
+ pos: 53.5,64.5
+ parent: 1
+ - uid: 10950
+ components:
+ - type: Transform
+ pos: 54.5,64.5
+ parent: 1
+ - uid: 10951
+ components:
+ - type: Transform
+ pos: 55.5,64.5
+ parent: 1
+ - uid: 10952
+ components:
+ - type: Transform
+ pos: 48.5,55.5
+ parent: 1
+ - uid: 10953
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 1
+ - uid: 10954
+ components:
+ - type: Transform
+ pos: 50.5,55.5
+ parent: 1
+ - uid: 10955
+ components:
+ - type: Transform
+ pos: 51.5,55.5
+ parent: 1
+ - uid: 10956
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 1
+ - uid: 10957
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 1
+ - uid: 10958
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - uid: 10959
+ components:
+ - type: Transform
+ pos: 52.5,52.5
+ parent: 1
+ - uid: 10960
+ components:
+ - type: Transform
+ pos: 52.5,51.5
+ parent: 1
+ - uid: 10961
+ components:
+ - type: Transform
+ pos: 52.5,50.5
+ parent: 1
+ - uid: 10962
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 10963
+ components:
+ - type: Transform
+ pos: 52.5,48.5
+ parent: 1
+ - uid: 10964
+ components:
+ - type: Transform
+ pos: 52.5,47.5
+ parent: 1
+ - uid: 10965
+ components:
+ - type: Transform
+ pos: 53.5,47.5
+ parent: 1
+ - uid: 10966
+ components:
+ - type: Transform
+ pos: 54.5,47.5
+ parent: 1
+ - uid: 10967
+ components:
+ - type: Transform
+ pos: 55.5,47.5
+ parent: 1
+ - uid: 10968
+ components:
+ - type: Transform
+ pos: 55.5,46.5
+ parent: 1
+ - uid: 10969
+ components:
+ - type: Transform
+ pos: 55.5,45.5
+ parent: 1
+ - uid: 10974
+ components:
+ - type: Transform
+ pos: 111.5,42.5
+ parent: 1
+ - uid: 11163
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 1
+ - uid: 11522
+ components:
+ - type: Transform
+ pos: 161.5,145.5
+ parent: 1
+ - uid: 11550
+ components:
+ - type: Transform
+ pos: 23.5,65.5
+ parent: 1
+ - uid: 11551
+ components:
+ - type: Transform
+ pos: 23.5,64.5
+ parent: 1
+ - uid: 11552
+ components:
+ - type: Transform
+ pos: 23.5,63.5
+ parent: 1
+ - uid: 11553
+ components:
+ - type: Transform
+ pos: 23.5,62.5
+ parent: 1
+ - uid: 11554
+ components:
+ - type: Transform
+ pos: 23.5,60.5
+ parent: 1
+ - uid: 11555
+ components:
+ - type: Transform
+ pos: 23.5,59.5
+ parent: 1
+ - uid: 11556
+ components:
+ - type: Transform
+ pos: 23.5,61.5
+ parent: 1
+ - uid: 11557
+ components:
+ - type: Transform
+ pos: 23.5,57.5
+ parent: 1
+ - uid: 11558
+ components:
+ - type: Transform
+ pos: 23.5,58.5
+ parent: 1
+ - uid: 11559
+ components:
+ - type: Transform
+ pos: 23.5,56.5
+ parent: 1
+ - uid: 11560
+ components:
+ - type: Transform
+ pos: 25.5,56.5
+ parent: 1
+ - uid: 11561
+ components:
+ - type: Transform
+ pos: 25.5,58.5
+ parent: 1
+ - uid: 11562
+ components:
+ - type: Transform
+ pos: 25.5,57.5
+ parent: 1
+ - uid: 11563
+ components:
+ - type: Transform
+ pos: 25.5,60.5
+ parent: 1
+ - uid: 11564
+ components:
+ - type: Transform
+ pos: 25.5,59.5
+ parent: 1
+ - uid: 11565
+ components:
+ - type: Transform
+ pos: 25.5,61.5
+ parent: 1
+ - uid: 11566
+ components:
+ - type: Transform
+ pos: 25.5,62.5
+ parent: 1
+ - uid: 11567
+ components:
+ - type: Transform
+ pos: 25.5,63.5
+ parent: 1
+ - uid: 11568
+ components:
+ - type: Transform
+ pos: 25.5,64.5
+ parent: 1
+ - uid: 11569
+ components:
+ - type: Transform
+ pos: 25.5,65.5
+ parent: 1
+ - uid: 11570
+ components:
+ - type: Transform
+ pos: 23.5,50.5
+ parent: 1
+ - uid: 11571
+ components:
+ - type: Transform
+ pos: 23.5,49.5
+ parent: 1
+ - uid: 11572
+ components:
+ - type: Transform
+ pos: 23.5,48.5
+ parent: 1
+ - uid: 11573
+ components:
+ - type: Transform
+ pos: 23.5,47.5
+ parent: 1
+ - uid: 11574
+ components:
+ - type: Transform
+ pos: 23.5,46.5
+ parent: 1
+ - uid: 11575
+ components:
+ - type: Transform
+ pos: 23.5,45.5
+ parent: 1
+ - uid: 11576
+ components:
+ - type: Transform
+ pos: 23.5,44.5
+ parent: 1
+ - uid: 11577
+ components:
+ - type: Transform
+ pos: 23.5,43.5
+ parent: 1
+ - uid: 11578
+ components:
+ - type: Transform
+ pos: 23.5,42.5
+ parent: 1
+ - uid: 11579
+ components:
+ - type: Transform
+ pos: 23.5,41.5
+ parent: 1
+ - uid: 11580
+ components:
+ - type: Transform
+ pos: 25.5,41.5
+ parent: 1
+ - uid: 11581
+ components:
+ - type: Transform
+ pos: 25.5,42.5
+ parent: 1
+ - uid: 11582
+ components:
+ - type: Transform
+ pos: 25.5,43.5
+ parent: 1
+ - uid: 11583
+ components:
+ - type: Transform
+ pos: 25.5,44.5
+ parent: 1
+ - uid: 11584
+ components:
+ - type: Transform
+ pos: 25.5,45.5
+ parent: 1
+ - uid: 11585
+ components:
+ - type: Transform
+ pos: 25.5,46.5
+ parent: 1
+ - uid: 11586
+ components:
+ - type: Transform
+ pos: 25.5,47.5
+ parent: 1
+ - uid: 11587
+ components:
+ - type: Transform
+ pos: 25.5,48.5
+ parent: 1
+ - uid: 11588
+ components:
+ - type: Transform
+ pos: 25.5,50.5
+ parent: 1
+ - uid: 11589
+ components:
+ - type: Transform
+ pos: 25.5,49.5
+ parent: 1
+ - uid: 11590
+ components:
+ - type: Transform
+ pos: 20.5,53.5
+ parent: 1
+ - uid: 11591
+ components:
+ - type: Transform
+ pos: 21.5,53.5
+ parent: 1
+ - uid: 11592
+ components:
+ - type: Transform
+ pos: 23.5,35.5
+ parent: 1
+ - uid: 11593
+ components:
+ - type: Transform
+ pos: 23.5,34.5
+ parent: 1
+ - uid: 11594
+ components:
+ - type: Transform
+ pos: 23.5,33.5
+ parent: 1
+ - uid: 11595
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 1
+ - uid: 11596
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 1
+ - uid: 11597
+ components:
+ - type: Transform
+ pos: 23.5,30.5
+ parent: 1
+ - uid: 11598
+ components:
+ - type: Transform
+ pos: 23.5,29.5
+ parent: 1
+ - uid: 11599
+ components:
+ - type: Transform
+ pos: 23.5,28.5
+ parent: 1
+ - uid: 11600
+ components:
+ - type: Transform
+ pos: 23.5,27.5
+ parent: 1
+ - uid: 11601
+ components:
+ - type: Transform
+ pos: 23.5,26.5
+ parent: 1
+ - uid: 11602
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 1
+ - uid: 11603
+ components:
+ - type: Transform
+ pos: 25.5,27.5
+ parent: 1
+ - uid: 11604
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 1
+ - uid: 11605
+ components:
+ - type: Transform
+ pos: 25.5,29.5
+ parent: 1
+ - uid: 11606
+ components:
+ - type: Transform
+ pos: 25.5,30.5
+ parent: 1
+ - uid: 11607
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 1
+ - uid: 11608
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 1
+ - uid: 11609
+ components:
+ - type: Transform
+ pos: 25.5,34.5
+ parent: 1
+ - uid: 11610
+ components:
+ - type: Transform
+ pos: 25.5,33.5
+ parent: 1
+ - uid: 11611
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 1
+ - uid: 11612
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1
+ - uid: 11613
+ components:
+ - type: Transform
+ pos: 27.5,34.5
+ parent: 1
+ - uid: 11614
+ components:
+ - type: Transform
+ pos: 27.5,33.5
+ parent: 1
+ - uid: 11615
+ components:
+ - type: Transform
+ pos: 27.5,32.5
+ parent: 1
+ - uid: 11616
+ components:
+ - type: Transform
+ pos: 27.5,31.5
+ parent: 1
+ - uid: 11617
+ components:
+ - type: Transform
+ pos: 27.5,30.5
+ parent: 1
+ - uid: 11618
+ components:
+ - type: Transform
+ pos: 27.5,29.5
+ parent: 1
+ - uid: 11619
+ components:
+ - type: Transform
+ pos: 27.5,28.5
+ parent: 1
+ - uid: 11620
+ components:
+ - type: Transform
+ pos: 27.5,27.5
+ parent: 1
+ - uid: 11621
+ components:
+ - type: Transform
+ pos: 27.5,26.5
+ parent: 1
+ - uid: 11622
+ components:
+ - type: Transform
+ pos: 29.5,26.5
+ parent: 1
+ - uid: 11623
+ components:
+ - type: Transform
+ pos: 29.5,27.5
+ parent: 1
+ - uid: 11624
+ components:
+ - type: Transform
+ pos: 29.5,29.5
+ parent: 1
+ - uid: 11625
+ components:
+ - type: Transform
+ pos: 29.5,30.5
+ parent: 1
+ - uid: 11626
+ components:
+ - type: Transform
+ pos: 29.5,31.5
+ parent: 1
+ - uid: 11627
+ components:
+ - type: Transform
+ pos: 29.5,32.5
+ parent: 1
+ - uid: 11628
+ components:
+ - type: Transform
+ pos: 29.5,33.5
+ parent: 1
+ - uid: 11629
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 1
+ - uid: 11630
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1
+ - uid: 11631
+ components:
+ - type: Transform
+ pos: 29.5,28.5
+ parent: 1
+ - uid: 11632
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 1
+ - uid: 11633
+ components:
+ - type: Transform
+ pos: 31.5,34.5
+ parent: 1
+ - uid: 11634
+ components:
+ - type: Transform
+ pos: 31.5,33.5
+ parent: 1
+ - uid: 11635
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 1
+ - uid: 11636
+ components:
+ - type: Transform
+ pos: 31.5,31.5
+ parent: 1
+ - uid: 11637
+ components:
+ - type: Transform
+ pos: 31.5,30.5
+ parent: 1
+ - uid: 11638
+ components:
+ - type: Transform
+ pos: 31.5,29.5
+ parent: 1
+ - uid: 11639
+ components:
+ - type: Transform
+ pos: 31.5,28.5
+ parent: 1
+ - uid: 11640
+ components:
+ - type: Transform
+ pos: 31.5,27.5
+ parent: 1
+ - uid: 11641
+ components:
+ - type: Transform
+ pos: 31.5,26.5
+ parent: 1
+ - uid: 11642
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 1
+ - uid: 11643
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 1
+ - uid: 11644
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 1
+ - uid: 11645
+ components:
+ - type: Transform
+ pos: 33.5,29.5
+ parent: 1
+ - uid: 11646
+ components:
+ - type: Transform
+ pos: 33.5,30.5
+ parent: 1
+ - uid: 11647
+ components:
+ - type: Transform
+ pos: 33.5,31.5
+ parent: 1
+ - uid: 11648
+ components:
+ - type: Transform
+ pos: 33.5,32.5
+ parent: 1
+ - uid: 11649
+ components:
+ - type: Transform
+ pos: 33.5,33.5
+ parent: 1
+ - uid: 11650
+ components:
+ - type: Transform
+ pos: 33.5,34.5
+ parent: 1
+ - uid: 11651
+ components:
+ - type: Transform
+ pos: 33.5,35.5
+ parent: 1
+ - uid: 11652
+ components:
+ - type: Transform
+ pos: 37.5,26.5
+ parent: 1
+ - uid: 11653
+ components:
+ - type: Transform
+ pos: 37.5,27.5
+ parent: 1
+ - uid: 11654
+ components:
+ - type: Transform
+ pos: 37.5,28.5
+ parent: 1
+ - uid: 11655
+ components:
+ - type: Transform
+ pos: 37.5,29.5
+ parent: 1
+ - uid: 11656
+ components:
+ - type: Transform
+ pos: 37.5,30.5
+ parent: 1
+ - uid: 11657
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1
+ - uid: 11658
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 1
+ - uid: 11659
+ components:
+ - type: Transform
+ pos: 37.5,33.5
+ parent: 1
+ - uid: 11660
+ components:
+ - type: Transform
+ pos: 37.5,35.5
+ parent: 1
+ - uid: 11661
+ components:
+ - type: Transform
+ pos: 37.5,34.5
+ parent: 1
+ - uid: 11662
+ components:
+ - type: Transform
+ pos: 35.5,35.5
+ parent: 1
+ - uid: 11663
+ components:
+ - type: Transform
+ pos: 35.5,33.5
+ parent: 1
+ - uid: 11664
+ components:
+ - type: Transform
+ pos: 35.5,32.5
+ parent: 1
+ - uid: 11665
+ components:
+ - type: Transform
+ pos: 35.5,31.5
+ parent: 1
+ - uid: 11666
+ components:
+ - type: Transform
+ pos: 35.5,30.5
+ parent: 1
+ - uid: 11667
+ components:
+ - type: Transform
+ pos: 35.5,29.5
+ parent: 1
+ - uid: 11668
+ components:
+ - type: Transform
+ pos: 35.5,34.5
+ parent: 1
+ - uid: 11669
+ components:
+ - type: Transform
+ pos: 35.5,27.5
+ parent: 1
+ - uid: 11670
+ components:
+ - type: Transform
+ pos: 35.5,26.5
+ parent: 1
+ - uid: 11671
+ components:
+ - type: Transform
+ pos: 35.5,28.5
+ parent: 1
+ - uid: 11675
+ components:
+ - type: Transform
+ pos: 38.5,44.5
+ parent: 1
+ - uid: 11676
+ components:
+ - type: Transform
+ pos: 37.5,44.5
+ parent: 1
+ - uid: 11677
+ components:
+ - type: Transform
+ pos: 36.5,44.5
+ parent: 1
+ - uid: 11678
+ components:
+ - type: Transform
+ pos: 35.5,44.5
+ parent: 1
+ - uid: 11679
+ components:
+ - type: Transform
+ pos: 34.5,44.5
+ parent: 1
+ - uid: 11680
+ components:
+ - type: Transform
+ pos: 33.5,44.5
+ parent: 1
+ - uid: 11681
+ components:
+ - type: Transform
+ pos: 32.5,44.5
+ parent: 1
+ - uid: 11682
+ components:
+ - type: Transform
+ pos: 31.5,44.5
+ parent: 1
+ - uid: 11683
+ components:
+ - type: Transform
+ pos: 31.5,45.5
+ parent: 1
+ - uid: 11684
+ components:
+ - type: Transform
+ pos: 30.5,45.5
+ parent: 1
+ - uid: 11685
+ components:
+ - type: Transform
+ pos: 29.5,45.5
+ parent: 1
+ - uid: 11686
+ components:
+ - type: Transform
+ pos: 29.5,46.5
+ parent: 1
+ - uid: 11688
+ components:
+ - type: Transform
+ pos: 28.5,47.5
+ parent: 1
+ - uid: 11689
+ components:
+ - type: Transform
+ pos: 28.5,48.5
+ parent: 1
+ - uid: 11690
+ components:
+ - type: Transform
+ pos: 28.5,49.5
+ parent: 1
+ - uid: 11691
+ components:
+ - type: Transform
+ pos: 28.5,50.5
+ parent: 1
+ - uid: 11692
+ components:
+ - type: Transform
+ pos: 28.5,51.5
+ parent: 1
+ - uid: 11693
+ components:
+ - type: Transform
+ pos: 28.5,52.5
+ parent: 1
+ - uid: 11694
+ components:
+ - type: Transform
+ pos: 28.5,53.5
+ parent: 1
+ - uid: 11695
+ components:
+ - type: Transform
+ pos: 28.5,54.5
+ parent: 1
+ - uid: 11696
+ components:
+ - type: Transform
+ pos: 28.5,55.5
+ parent: 1
+ - uid: 11697
+ components:
+ - type: Transform
+ pos: 28.5,56.5
+ parent: 1
+ - uid: 11698
+ components:
+ - type: Transform
+ pos: 28.5,58.5
+ parent: 1
+ - uid: 11699
+ components:
+ - type: Transform
+ pos: 28.5,59.5
+ parent: 1
+ - uid: 11700
+ components:
+ - type: Transform
+ pos: 28.5,57.5
+ parent: 1
+ - uid: 11701
+ components:
+ - type: Transform
+ pos: 28.5,61.5
+ parent: 1
+ - uid: 11702
+ components:
+ - type: Transform
+ pos: 28.5,62.5
+ parent: 1
+ - uid: 11703
+ components:
+ - type: Transform
+ pos: 28.5,60.5
+ parent: 1
+ - uid: 11704
+ components:
+ - type: Transform
+ pos: 28.5,63.5
+ parent: 1
+ - uid: 11705
+ components:
+ - type: Transform
+ pos: 28.5,67.5
+ parent: 1
+ - uid: 11706
+ components:
+ - type: Transform
+ pos: 28.5,65.5
+ parent: 1
+ - uid: 11707
+ components:
+ - type: Transform
+ pos: 28.5,69.5
+ parent: 1
+ - uid: 11708
+ components:
+ - type: Transform
+ pos: 28.5,68.5
+ parent: 1
+ - uid: 11709
+ components:
+ - type: Transform
+ pos: 28.5,66.5
+ parent: 1
+ - uid: 11710
+ components:
+ - type: Transform
+ pos: 28.5,64.5
+ parent: 1
+ - uid: 11711
+ components:
+ - type: Transform
+ pos: 29.5,69.5
+ parent: 1
+ - uid: 11712
+ components:
+ - type: Transform
+ pos: 29.5,70.5
+ parent: 1
+ - uid: 11713
+ components:
+ - type: Transform
+ pos: 29.5,71.5
+ parent: 1
+ - uid: 11718
+ components:
+ - type: Transform
+ pos: 37.5,138.5
+ parent: 1
+ - uid: 11719
+ components:
+ - type: Transform
+ pos: 37.5,137.5
+ parent: 1
+ - uid: 11720
+ components:
+ - type: Transform
+ pos: 37.5,136.5
+ parent: 1
+ - uid: 11721
+ components:
+ - type: Transform
+ pos: 37.5,135.5
+ parent: 1
+ - uid: 11722
+ components:
+ - type: Transform
+ pos: 37.5,134.5
+ parent: 1
+ - uid: 11723
+ components:
+ - type: Transform
+ pos: 37.5,133.5
+ parent: 1
+ - uid: 11724
+ components:
+ - type: Transform
+ pos: 37.5,132.5
+ parent: 1
+ - uid: 11725
+ components:
+ - type: Transform
+ pos: 37.5,131.5
+ parent: 1
+ - uid: 11726
+ components:
+ - type: Transform
+ pos: 37.5,129.5
+ parent: 1
+ - uid: 11727
+ components:
+ - type: Transform
+ pos: 37.5,130.5
+ parent: 1
+ - uid: 11728
+ components:
+ - type: Transform
+ pos: 39.5,129.5
+ parent: 1
+ - uid: 11729
+ components:
+ - type: Transform
+ pos: 39.5,130.5
+ parent: 1
+ - uid: 11730
+ components:
+ - type: Transform
+ pos: 39.5,131.5
+ parent: 1
+ - uid: 11731
+ components:
+ - type: Transform
+ pos: 39.5,132.5
+ parent: 1
+ - uid: 11732
+ components:
+ - type: Transform
+ pos: 39.5,133.5
+ parent: 1
+ - uid: 11733
+ components:
+ - type: Transform
+ pos: 39.5,134.5
+ parent: 1
+ - uid: 11734
+ components:
+ - type: Transform
+ pos: 39.5,135.5
+ parent: 1
+ - uid: 11735
+ components:
+ - type: Transform
+ pos: 39.5,136.5
+ parent: 1
+ - uid: 11736
+ components:
+ - type: Transform
+ pos: 39.5,137.5
+ parent: 1
+ - uid: 11737
+ components:
+ - type: Transform
+ pos: 39.5,138.5
+ parent: 1
+ - uid: 11738
+ components:
+ - type: Transform
+ pos: 41.5,138.5
+ parent: 1
+ - uid: 11739
+ components:
+ - type: Transform
+ pos: 41.5,137.5
+ parent: 1
+ - uid: 11740
+ components:
+ - type: Transform
+ pos: 41.5,136.5
+ parent: 1
+ - uid: 11741
+ components:
+ - type: Transform
+ pos: 41.5,135.5
+ parent: 1
+ - uid: 11742
+ components:
+ - type: Transform
+ pos: 41.5,134.5
+ parent: 1
+ - uid: 11743
+ components:
+ - type: Transform
+ pos: 41.5,133.5
+ parent: 1
+ - uid: 11744
+ components:
+ - type: Transform
+ pos: 41.5,132.5
+ parent: 1
+ - uid: 11745
+ components:
+ - type: Transform
+ pos: 41.5,130.5
+ parent: 1
+ - uid: 11746
+ components:
+ - type: Transform
+ pos: 41.5,129.5
+ parent: 1
+ - uid: 11747
+ components:
+ - type: Transform
+ pos: 41.5,131.5
+ parent: 1
+ - uid: 11748
+ components:
+ - type: Transform
+ pos: 43.5,130.5
+ parent: 1
+ - uid: 11749
+ components:
+ - type: Transform
+ pos: 43.5,131.5
+ parent: 1
+ - uid: 11750
+ components:
+ - type: Transform
+ pos: 43.5,132.5
+ parent: 1
+ - uid: 11751
+ components:
+ - type: Transform
+ pos: 43.5,133.5
+ parent: 1
+ - uid: 11752
+ components:
+ - type: Transform
+ pos: 43.5,134.5
+ parent: 1
+ - uid: 11753
+ components:
+ - type: Transform
+ pos: 43.5,135.5
+ parent: 1
+ - uid: 11754
+ components:
+ - type: Transform
+ pos: 43.5,136.5
+ parent: 1
+ - uid: 11755
+ components:
+ - type: Transform
+ pos: 43.5,137.5
+ parent: 1
+ - uid: 11756
+ components:
+ - type: Transform
+ pos: 43.5,138.5
+ parent: 1
+ - uid: 11757
+ components:
+ - type: Transform
+ pos: 43.5,129.5
+ parent: 1
+ - uid: 11758
+ components:
+ - type: Transform
+ pos: 45.5,129.5
+ parent: 1
+ - uid: 11759
+ components:
+ - type: Transform
+ pos: 45.5,130.5
+ parent: 1
+ - uid: 11760
+ components:
+ - type: Transform
+ pos: 45.5,131.5
+ parent: 1
+ - uid: 11761
+ components:
+ - type: Transform
+ pos: 45.5,132.5
+ parent: 1
+ - uid: 11762
+ components:
+ - type: Transform
+ pos: 45.5,133.5
+ parent: 1
+ - uid: 11763
+ components:
+ - type: Transform
+ pos: 45.5,134.5
+ parent: 1
+ - uid: 11764
+ components:
+ - type: Transform
+ pos: 45.5,135.5
+ parent: 1
+ - uid: 11765
+ components:
+ - type: Transform
+ pos: 45.5,136.5
+ parent: 1
+ - uid: 11766
+ components:
+ - type: Transform
+ pos: 45.5,137.5
+ parent: 1
+ - uid: 11767
+ components:
+ - type: Transform
+ pos: 45.5,138.5
+ parent: 1
+ - uid: 11768
+ components:
+ - type: Transform
+ pos: 47.5,138.5
+ parent: 1
+ - uid: 11769
+ components:
+ - type: Transform
+ pos: 47.5,137.5
+ parent: 1
+ - uid: 11770
+ components:
+ - type: Transform
+ pos: 47.5,136.5
+ parent: 1
+ - uid: 11771
+ components:
+ - type: Transform
+ pos: 47.5,135.5
+ parent: 1
+ - uid: 11772
+ components:
+ - type: Transform
+ pos: 47.5,134.5
+ parent: 1
+ - uid: 11773
+ components:
+ - type: Transform
+ pos: 47.5,133.5
+ parent: 1
+ - uid: 11774
+ components:
+ - type: Transform
+ pos: 47.5,132.5
+ parent: 1
+ - uid: 11775
+ components:
+ - type: Transform
+ pos: 47.5,131.5
+ parent: 1
+ - uid: 11776
+ components:
+ - type: Transform
+ pos: 47.5,130.5
+ parent: 1
+ - uid: 11777
+ components:
+ - type: Transform
+ pos: 47.5,129.5
+ parent: 1
+ - uid: 11778
+ components:
+ - type: Transform
+ pos: 48.5,141.5
+ parent: 1
+ - uid: 11779
+ components:
+ - type: Transform
+ pos: 49.5,141.5
+ parent: 1
+ - uid: 11780
+ components:
+ - type: Transform
+ pos: 50.5,141.5
+ parent: 1
+ - uid: 11781
+ components:
+ - type: Transform
+ pos: 51.5,141.5
+ parent: 1
+ - uid: 11782
+ components:
+ - type: Transform
+ pos: 52.5,141.5
+ parent: 1
+ - uid: 11783
+ components:
+ - type: Transform
+ pos: 52.5,142.5
+ parent: 1
+ - uid: 11784
+ components:
+ - type: Transform
+ pos: 52.5,143.5
+ parent: 1
+ - uid: 11785
+ components:
+ - type: Transform
+ pos: 53.5,143.5
+ parent: 1
+ - uid: 11786
+ components:
+ - type: Transform
+ pos: 54.5,143.5
+ parent: 1
+ - uid: 11787
+ components:
+ - type: Transform
+ pos: 54.5,142.5
+ parent: 1
+ - uid: 11788
+ components:
+ - type: Transform
+ pos: 54.5,141.5
+ parent: 1
+ - uid: 11789
+ components:
+ - type: Transform
+ pos: 54.5,140.5
+ parent: 1
+ - uid: 11790
+ components:
+ - type: Transform
+ pos: 54.5,139.5
+ parent: 1
+ - uid: 11793
+ components:
+ - type: Transform
+ pos: 52.5,138.5
+ parent: 1
+ - uid: 11794
+ components:
+ - type: Transform
+ pos: 37.5,144.5
+ parent: 1
+ - uid: 11795
+ components:
+ - type: Transform
+ pos: 37.5,145.5
+ parent: 1
+ - uid: 11796
+ components:
+ - type: Transform
+ pos: 37.5,146.5
+ parent: 1
+ - uid: 11797
+ components:
+ - type: Transform
+ pos: 37.5,147.5
+ parent: 1
+ - uid: 11798
+ components:
+ - type: Transform
+ pos: 37.5,148.5
+ parent: 1
+ - uid: 11799
+ components:
+ - type: Transform
+ pos: 37.5,149.5
+ parent: 1
+ - uid: 11800
+ components:
+ - type: Transform
+ pos: 37.5,150.5
+ parent: 1
+ - uid: 11801
+ components:
+ - type: Transform
+ pos: 37.5,151.5
+ parent: 1
+ - uid: 11802
+ components:
+ - type: Transform
+ pos: 37.5,152.5
+ parent: 1
+ - uid: 11803
+ components:
+ - type: Transform
+ pos: 37.5,153.5
+ parent: 1
+ - uid: 11804
+ components:
+ - type: Transform
+ pos: 39.5,153.5
+ parent: 1
+ - uid: 11805
+ components:
+ - type: Transform
+ pos: 39.5,152.5
+ parent: 1
+ - uid: 11806
+ components:
+ - type: Transform
+ pos: 39.5,151.5
+ parent: 1
+ - uid: 11807
+ components:
+ - type: Transform
+ pos: 39.5,150.5
+ parent: 1
+ - uid: 11808
+ components:
+ - type: Transform
+ pos: 39.5,149.5
+ parent: 1
+ - uid: 11809
+ components:
+ - type: Transform
+ pos: 39.5,148.5
+ parent: 1
+ - uid: 11810
+ components:
+ - type: Transform
+ pos: 39.5,147.5
+ parent: 1
+ - uid: 11811
+ components:
+ - type: Transform
+ pos: 39.5,146.5
+ parent: 1
+ - uid: 11812
+ components:
+ - type: Transform
+ pos: 39.5,145.5
+ parent: 1
+ - uid: 11813
+ components:
+ - type: Transform
+ pos: 39.5,144.5
+ parent: 1
+ - uid: 11814
+ components:
+ - type: Transform
+ pos: 41.5,144.5
+ parent: 1
+ - uid: 11815
+ components:
+ - type: Transform
+ pos: 41.5,145.5
+ parent: 1
+ - uid: 11816
+ components:
+ - type: Transform
+ pos: 41.5,146.5
+ parent: 1
+ - uid: 11817
+ components:
+ - type: Transform
+ pos: 41.5,147.5
+ parent: 1
+ - uid: 11818
+ components:
+ - type: Transform
+ pos: 41.5,148.5
+ parent: 1
+ - uid: 11819
+ components:
+ - type: Transform
+ pos: 41.5,149.5
+ parent: 1
+ - uid: 11820
+ components:
+ - type: Transform
+ pos: 41.5,150.5
+ parent: 1
+ - uid: 11821
+ components:
+ - type: Transform
+ pos: 41.5,151.5
+ parent: 1
+ - uid: 11822
+ components:
+ - type: Transform
+ pos: 41.5,152.5
+ parent: 1
+ - uid: 11823
+ components:
+ - type: Transform
+ pos: 41.5,153.5
+ parent: 1
+ - uid: 11824
+ components:
+ - type: Transform
+ pos: 43.5,153.5
+ parent: 1
+ - uid: 11825
+ components:
+ - type: Transform
+ pos: 43.5,152.5
+ parent: 1
+ - uid: 11826
+ components:
+ - type: Transform
+ pos: 43.5,151.5
+ parent: 1
+ - uid: 11827
+ components:
+ - type: Transform
+ pos: 43.5,150.5
+ parent: 1
+ - uid: 11828
+ components:
+ - type: Transform
+ pos: 43.5,149.5
+ parent: 1
+ - uid: 11829
+ components:
+ - type: Transform
+ pos: 43.5,148.5
+ parent: 1
+ - uid: 11830
+ components:
+ - type: Transform
+ pos: 43.5,147.5
+ parent: 1
+ - uid: 11831
+ components:
+ - type: Transform
+ pos: 43.5,146.5
+ parent: 1
+ - uid: 11832
+ components:
+ - type: Transform
+ pos: 43.5,145.5
+ parent: 1
+ - uid: 11833
+ components:
+ - type: Transform
+ pos: 43.5,144.5
+ parent: 1
+ - uid: 11834
+ components:
+ - type: Transform
+ pos: 45.5,144.5
+ parent: 1
+ - uid: 11835
+ components:
+ - type: Transform
+ pos: 45.5,145.5
+ parent: 1
+ - uid: 11836
+ components:
+ - type: Transform
+ pos: 45.5,146.5
+ parent: 1
+ - uid: 11837
+ components:
+ - type: Transform
+ pos: 45.5,147.5
+ parent: 1
+ - uid: 11838
+ components:
+ - type: Transform
+ pos: 45.5,148.5
+ parent: 1
+ - uid: 11839
+ components:
+ - type: Transform
+ pos: 45.5,149.5
+ parent: 1
+ - uid: 11840
+ components:
+ - type: Transform
+ pos: 45.5,150.5
+ parent: 1
+ - uid: 11841
+ components:
+ - type: Transform
+ pos: 45.5,152.5
+ parent: 1
+ - uid: 11842
+ components:
+ - type: Transform
+ pos: 45.5,151.5
+ parent: 1
+ - uid: 11843
+ components:
+ - type: Transform
+ pos: 45.5,153.5
+ parent: 1
+ - uid: 11844
+ components:
+ - type: Transform
+ pos: 47.5,153.5
+ parent: 1
+ - uid: 11845
+ components:
+ - type: Transform
+ pos: 47.5,152.5
+ parent: 1
+ - uid: 11846
+ components:
+ - type: Transform
+ pos: 47.5,151.5
+ parent: 1
+ - uid: 11847
+ components:
+ - type: Transform
+ pos: 47.5,150.5
+ parent: 1
+ - uid: 11848
+ components:
+ - type: Transform
+ pos: 47.5,149.5
+ parent: 1
+ - uid: 11849
+ components:
+ - type: Transform
+ pos: 47.5,147.5
+ parent: 1
+ - uid: 11850
+ components:
+ - type: Transform
+ pos: 47.5,146.5
+ parent: 1
+ - uid: 11851
+ components:
+ - type: Transform
+ pos: 47.5,148.5
+ parent: 1
+ - uid: 11852
+ components:
+ - type: Transform
+ pos: 47.5,145.5
+ parent: 1
+ - uid: 11853
+ components:
+ - type: Transform
+ pos: 47.5,144.5
+ parent: 1
+ - uid: 11854
+ components:
+ - type: Transform
+ pos: 34.5,141.5
+ parent: 1
+ - uid: 11855
+ components:
+ - type: Transform
+ pos: 35.5,141.5
+ parent: 1
+ - uid: 11856
+ components:
+ - type: Transform
+ pos: 168.5,60.5
+ parent: 1
+ - uid: 11857
+ components:
+ - type: Transform
+ pos: 55.5,139.5
+ parent: 1
+ - uid: 11858
+ components:
+ - type: Transform
+ pos: 56.5,139.5
+ parent: 1
+ - uid: 11859
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - uid: 11860
+ components:
+ - type: Transform
+ pos: 57.5,139.5
+ parent: 1
+ - uid: 11861
+ components:
+ - type: Transform
+ pos: 58.5,138.5
+ parent: 1
+ - uid: 11862
+ components:
+ - type: Transform
+ pos: 58.5,137.5
+ parent: 1
+ - uid: 11863
+ components:
+ - type: Transform
+ pos: 58.5,136.5
+ parent: 1
+ - uid: 11870
+ components:
+ - type: Transform
+ pos: 59.5,130.5
+ parent: 1
+ - uid: 11872
+ components:
+ - type: Transform
+ pos: 60.5,130.5
+ parent: 1
+ - uid: 11873
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - uid: 11874
+ components:
+ - type: Transform
+ pos: 60.5,127.5
+ parent: 1
+ - uid: 11875
+ components:
+ - type: Transform
+ pos: 60.5,129.5
+ parent: 1
+ - uid: 11876
+ components:
+ - type: Transform
+ pos: 60.5,126.5
+ parent: 1
+ - uid: 11877
+ components:
+ - type: Transform
+ pos: 61.5,126.5
+ parent: 1
+ - uid: 11878
+ components:
+ - type: Transform
+ pos: 61.5,125.5
+ parent: 1
+ - uid: 11879
+ components:
+ - type: Transform
+ pos: 61.5,124.5
+ parent: 1
+ - uid: 11880
+ components:
+ - type: Transform
+ pos: 61.5,123.5
+ parent: 1
+ - uid: 11881
+ components:
+ - type: Transform
+ pos: 61.5,122.5
+ parent: 1
+ - uid: 11882
+ components:
+ - type: Transform
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 11883
+ components:
+ - type: Transform
+ pos: 62.5,121.5
+ parent: 1
+ - uid: 11884
+ components:
+ - type: Transform
+ pos: 63.5,121.5
+ parent: 1
+ - uid: 11885
+ components:
+ - type: Transform
+ pos: 64.5,121.5
+ parent: 1
+ - uid: 11886
+ components:
+ - type: Transform
+ pos: 65.5,121.5
+ parent: 1
+ - uid: 11887
+ components:
+ - type: Transform
+ pos: 66.5,121.5
+ parent: 1
+ - uid: 11888
+ components:
+ - type: Transform
+ pos: 66.5,120.5
+ parent: 1
+ - uid: 11889
+ components:
+ - type: Transform
+ pos: 66.5,119.5
+ parent: 1
+ - uid: 11890
+ components:
+ - type: Transform
+ pos: 66.5,118.5
+ parent: 1
+ - uid: 11891
+ components:
+ - type: Transform
+ pos: 66.5,117.5
+ parent: 1
+ - uid: 11892
+ components:
+ - type: Transform
+ pos: 66.5,116.5
+ parent: 1
+ - uid: 11893
+ components:
+ - type: Transform
+ pos: 66.5,115.5
+ parent: 1
+ - uid: 11894
+ components:
+ - type: Transform
+ pos: 66.5,114.5
+ parent: 1
+ - uid: 11895
+ components:
+ - type: Transform
+ pos: 138.5,131.5
+ parent: 1
+ - uid: 11896
+ components:
+ - type: Transform
+ pos: 139.5,131.5
+ parent: 1
+ - uid: 11901
+ components:
+ - type: Transform
+ pos: 141.5,128.5
+ parent: 1
+ - uid: 11903
+ components:
+ - type: Transform
+ pos: 141.5,126.5
+ parent: 1
+ - uid: 11905
+ components:
+ - type: Transform
+ pos: 141.5,124.5
+ parent: 1
+ - uid: 11908
+ components:
+ - type: Transform
+ pos: 141.5,121.5
+ parent: 1
+ - uid: 11909
+ components:
+ - type: Transform
+ pos: 141.5,120.5
+ parent: 1
+ - uid: 11910
+ components:
+ - type: Transform
+ pos: 141.5,119.5
+ parent: 1
+ - uid: 11911
+ components:
+ - type: Transform
+ pos: 129.5,126.5
+ parent: 1
+ - uid: 11912
+ components:
+ - type: Transform
+ pos: 130.5,126.5
+ parent: 1
+ - uid: 11913
+ components:
+ - type: Transform
+ pos: 131.5,126.5
+ parent: 1
+ - uid: 11924
+ components:
+ - type: Transform
+ pos: 138.5,122.5
+ parent: 1
+ - uid: 11925
+ components:
+ - type: Transform
+ pos: 138.5,121.5
+ parent: 1
+ - uid: 11926
+ components:
+ - type: Transform
+ pos: 138.5,120.5
+ parent: 1
+ - uid: 11927
+ components:
+ - type: Transform
+ pos: 138.5,119.5
+ parent: 1
+ - uid: 11928
+ components:
+ - type: Transform
+ pos: 135.5,127.5
+ parent: 1
+ - uid: 11929
+ components:
+ - type: Transform
+ pos: 135.5,129.5
+ parent: 1
+ - uid: 11930
+ components:
+ - type: Transform
+ pos: 135.5,130.5
+ parent: 1
+ - uid: 11931
+ components:
+ - type: Transform
+ pos: 135.5,131.5
+ parent: 1
+ - uid: 11932
+ components:
+ - type: Transform
+ pos: 135.5,128.5
+ parent: 1
+ - uid: 11936
+ components:
+ - type: Transform
+ pos: 53.5,109.5
+ parent: 1
+ - uid: 11939
+ components:
+ - type: Transform
+ pos: 51.5,110.5
+ parent: 1
+ - uid: 11940
+ components:
+ - type: Transform
+ pos: 51.5,111.5
+ parent: 1
+ - uid: 11941
+ components:
+ - type: Transform
+ pos: 51.5,112.5
+ parent: 1
+ - uid: 11942
+ components:
+ - type: Transform
+ pos: 51.5,113.5
+ parent: 1
+ - uid: 11943
+ components:
+ - type: Transform
+ pos: 51.5,114.5
+ parent: 1
+ - uid: 11944
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 1
+ - uid: 11945
+ components:
+ - type: Transform
+ pos: 51.5,116.5
+ parent: 1
+ - uid: 11946
+ components:
+ - type: Transform
+ pos: 51.5,117.5
+ parent: 1
+ - uid: 11947
+ components:
+ - type: Transform
+ pos: 51.5,118.5
+ parent: 1
+ - uid: 11948
+ components:
+ - type: Transform
+ pos: 51.5,119.5
+ parent: 1
+ - uid: 11949
+ components:
+ - type: Transform
+ pos: 52.5,113.5
+ parent: 1
+ - uid: 11950
+ components:
+ - type: Transform
+ pos: 53.5,113.5
+ parent: 1
+ - uid: 11951
+ components:
+ - type: Transform
+ pos: 54.5,113.5
+ parent: 1
+ - uid: 11952
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 1
+ - uid: 11953
+ components:
+ - type: Transform
+ pos: 50.5,119.5
+ parent: 1
+ - uid: 11954
+ components:
+ - type: Transform
+ pos: 49.5,119.5
+ parent: 1
+ - uid: 11970
+ components:
+ - type: Transform
+ pos: 33.5,119.5
+ parent: 1
+ - uid: 11971
+ components:
+ - type: Transform
+ pos: 31.5,119.5
+ parent: 1
+ - uid: 11972
+ components:
+ - type: Transform
+ pos: 30.5,119.5
+ parent: 1
+ - uid: 11973
+ components:
+ - type: Transform
+ pos: 29.5,119.5
+ parent: 1
+ - uid: 11974
+ components:
+ - type: Transform
+ pos: 32.5,119.5
+ parent: 1
+ - uid: 11975
+ components:
+ - type: Transform
+ pos: 28.5,119.5
+ parent: 1
+ - uid: 11976
+ components:
+ - type: Transform
+ pos: 27.5,119.5
+ parent: 1
+ - uid: 11977
+ components:
+ - type: Transform
+ pos: 26.5,119.5
+ parent: 1
+ - uid: 11978
+ components:
+ - type: Transform
+ pos: 25.5,119.5
+ parent: 1
+ - uid: 11979
+ components:
+ - type: Transform
+ pos: 24.5,119.5
+ parent: 1
+ - uid: 11980
+ components:
+ - type: Transform
+ pos: 24.5,118.5
+ parent: 1
+ - uid: 11981
+ components:
+ - type: Transform
+ pos: 24.5,117.5
+ parent: 1
+ - uid: 11982
+ components:
+ - type: Transform
+ pos: 24.5,116.5
+ parent: 1
+ - uid: 11983
+ components:
+ - type: Transform
+ pos: 23.5,116.5
+ parent: 1
+ - uid: 11984
+ components:
+ - type: Transform
+ pos: 22.5,116.5
+ parent: 1
+ - uid: 11985
+ components:
+ - type: Transform
+ pos: 21.5,116.5
+ parent: 1
+ - uid: 11989
+ components:
+ - type: Transform
+ pos: 18.5,115.5
+ parent: 1
+ - uid: 11990
+ components:
+ - type: Transform
+ pos: 18.5,114.5
+ parent: 1
+ - uid: 11991
+ components:
+ - type: Transform
+ pos: 18.5,113.5
+ parent: 1
+ - uid: 11992
+ components:
+ - type: Transform
+ pos: 18.5,112.5
+ parent: 1
+ - uid: 11993
+ components:
+ - type: Transform
+ pos: 18.5,111.5
+ parent: 1
+ - uid: 11994
+ components:
+ - type: Transform
+ pos: 18.5,110.5
+ parent: 1
+ - uid: 11995
+ components:
+ - type: Transform
+ pos: 18.5,109.5
+ parent: 1
+ - uid: 11996
+ components:
+ - type: Transform
+ pos: 18.5,108.5
+ parent: 1
+ - uid: 11997
+ components:
+ - type: Transform
+ pos: 19.5,108.5
+ parent: 1
+ - uid: 11998
+ components:
+ - type: Transform
+ pos: 20.5,108.5
+ parent: 1
+ - uid: 11999
+ components:
+ - type: Transform
+ pos: 21.5,108.5
+ parent: 1
+ - uid: 12000
+ components:
+ - type: Transform
+ pos: 22.5,108.5
+ parent: 1
+ - uid: 12001
+ components:
+ - type: Transform
+ pos: 22.5,107.5
+ parent: 1
+ - uid: 12002
+ components:
+ - type: Transform
+ pos: 22.5,106.5
+ parent: 1
+ - uid: 12003
+ components:
+ - type: Transform
+ pos: 22.5,105.5
+ parent: 1
+ - uid: 12004
+ components:
+ - type: Transform
+ pos: 22.5,104.5
+ parent: 1
+ - uid: 12005
+ components:
+ - type: Transform
+ pos: 21.5,104.5
+ parent: 1
+ - uid: 12006
+ components:
+ - type: Transform
+ pos: 20.5,104.5
+ parent: 1
+ - uid: 12007
+ components:
+ - type: Transform
+ pos: 19.5,104.5
+ parent: 1
+ - uid: 12008
+ components:
+ - type: Transform
+ pos: 18.5,104.5
+ parent: 1
+ - uid: 12009
+ components:
+ - type: Transform
+ pos: 18.5,103.5
+ parent: 1
+ - uid: 12010
+ components:
+ - type: Transform
+ pos: 18.5,102.5
+ parent: 1
+ - uid: 12011
+ components:
+ - type: Transform
+ pos: 18.5,101.5
+ parent: 1
+ - uid: 12012
+ components:
+ - type: Transform
+ pos: 18.5,100.5
+ parent: 1
+ - uid: 12020
+ components:
+ - type: Transform
+ pos: 43.5,101.5
+ parent: 1
+ - uid: 12021
+ components:
+ - type: Transform
+ pos: 43.5,102.5
+ parent: 1
+ - uid: 12022
+ components:
+ - type: Transform
+ pos: 43.5,103.5
+ parent: 1
+ - uid: 12023
+ components:
+ - type: Transform
+ pos: 43.5,104.5
+ parent: 1
+ - uid: 12024
+ components:
+ - type: Transform
+ pos: 43.5,105.5
+ parent: 1
+ - uid: 12025
+ components:
+ - type: Transform
+ pos: 43.5,106.5
+ parent: 1
+ - uid: 12026
+ components:
+ - type: Transform
+ pos: 43.5,107.5
+ parent: 1
+ - uid: 12027
+ components:
+ - type: Transform
+ pos: 43.5,108.5
+ parent: 1
+ - uid: 12031
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 1
+ - uid: 12032
+ components:
+ - type: Transform
+ pos: 45.5,111.5
+ parent: 1
+ - uid: 12033
+ components:
+ - type: Transform
+ pos: 46.5,111.5
+ parent: 1
+ - uid: 12034
+ components:
+ - type: Transform
+ pos: 47.5,111.5
+ parent: 1
+ - uid: 12035
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 1
+ - uid: 12036
+ components:
+ - type: Transform
+ pos: 49.5,111.5
+ parent: 1
+ - uid: 12037
+ components:
+ - type: Transform
+ pos: 50.5,111.5
+ parent: 1
+ - uid: 12038
+ components:
+ - type: Transform
+ pos: 127.5,90.5
+ parent: 1
+ - uid: 12039
+ components:
+ - type: Transform
+ pos: 126.5,90.5
+ parent: 1
+ - uid: 12040
+ components:
+ - type: Transform
+ pos: 125.5,90.5
+ parent: 1
+ - uid: 12044
+ components:
+ - type: Transform
+ pos: 125.5,94.5
+ parent: 1
+ - uid: 12045
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - uid: 12046
+ components:
+ - type: Transform
+ pos: 125.5,96.5
+ parent: 1
+ - uid: 12049
+ components:
+ - type: Transform
+ pos: 146.5,114.5
+ parent: 1
+ - uid: 12050
+ components:
+ - type: Transform
+ pos: 154.5,115.5
+ parent: 1
+ - uid: 12051
+ components:
+ - type: Transform
+ pos: 151.5,115.5
+ parent: 1
+ - uid: 12052
+ components:
+ - type: Transform
+ pos: 155.5,114.5
+ parent: 1
+ - uid: 12053
+ components:
+ - type: Transform
+ pos: 153.5,115.5
+ parent: 1
+ - uid: 12054
+ components:
+ - type: Transform
+ pos: 150.5,114.5
+ parent: 1
+ - uid: 12063
+ components:
+ - type: Transform
+ pos: 125.5,113.5
+ parent: 1
+ - uid: 12067
+ components:
+ - type: Transform
+ pos: 113.5,117.5
+ parent: 1
+ - uid: 12068
+ components:
+ - type: Transform
+ pos: 113.5,116.5
+ parent: 1
+ - uid: 12069
+ components:
+ - type: Transform
+ pos: 113.5,115.5
+ parent: 1
+ - uid: 12070
+ components:
+ - type: Transform
+ pos: 113.5,114.5
+ parent: 1
+ - uid: 12071
+ components:
+ - type: Transform
+ pos: 112.5,114.5
+ parent: 1
+ - uid: 12072
+ components:
+ - type: Transform
+ pos: 111.5,114.5
+ parent: 1
+ - uid: 12073
+ components:
+ - type: Transform
+ pos: 110.5,114.5
+ parent: 1
+ - uid: 12074
+ components:
+ - type: Transform
+ pos: 109.5,114.5
+ parent: 1
+ - uid: 12075
+ components:
+ - type: Transform
+ pos: 108.5,114.5
+ parent: 1
+ - uid: 12076
+ components:
+ - type: Transform
+ pos: 107.5,114.5
+ parent: 1
+ - uid: 12077
+ components:
+ - type: Transform
+ pos: 106.5,114.5
+ parent: 1
+ - uid: 12078
+ components:
+ - type: Transform
+ pos: 104.5,114.5
+ parent: 1
+ - uid: 12079
+ components:
+ - type: Transform
+ pos: 103.5,114.5
+ parent: 1
+ - uid: 12080
+ components:
+ - type: Transform
+ pos: 105.5,114.5
+ parent: 1
+ - uid: 12081
+ components:
+ - type: Transform
+ pos: 103.5,115.5
+ parent: 1
+ - uid: 12082
+ components:
+ - type: Transform
+ pos: 103.5,116.5
+ parent: 1
+ - uid: 12083
+ components:
+ - type: Transform
+ pos: 103.5,117.5
+ parent: 1
+ - uid: 12084
+ components:
+ - type: Transform
+ pos: 124.5,110.5
+ parent: 1
+ - uid: 12085
+ components:
+ - type: Transform
+ pos: 123.5,110.5
+ parent: 1
+ - uid: 12086
+ components:
+ - type: Transform
+ pos: 122.5,110.5
+ parent: 1
+ - uid: 12087
+ components:
+ - type: Transform
+ pos: 121.5,110.5
+ parent: 1
+ - uid: 12088
+ components:
+ - type: Transform
+ pos: 120.5,110.5
+ parent: 1
+ - uid: 12089
+ components:
+ - type: Transform
+ pos: 119.5,110.5
+ parent: 1
+ - uid: 12090
+ components:
+ - type: Transform
+ pos: 118.5,110.5
+ parent: 1
+ - uid: 12091
+ components:
+ - type: Transform
+ pos: 117.5,110.5
+ parent: 1
+ - uid: 12092
+ components:
+ - type: Transform
+ pos: 116.5,110.5
+ parent: 1
+ - uid: 12093
+ components:
+ - type: Transform
+ pos: 115.5,110.5
+ parent: 1
+ - uid: 12094
+ components:
+ - type: Transform
+ pos: 114.5,110.5
+ parent: 1
+ - uid: 12095
+ components:
+ - type: Transform
+ pos: 113.5,110.5
+ parent: 1
+ - uid: 12096
+ components:
+ - type: Transform
+ pos: 113.5,111.5
+ parent: 1
+ - uid: 12097
+ components:
+ - type: Transform
+ pos: 113.5,112.5
+ parent: 1
+ - uid: 12098
+ components:
+ - type: Transform
+ pos: 113.5,113.5
+ parent: 1
+ - uid: 12099
+ components:
+ - type: Transform
+ pos: 103.5,113.5
+ parent: 1
+ - uid: 12100
+ components:
+ - type: Transform
+ pos: 103.5,112.5
+ parent: 1
+ - uid: 12101
+ components:
+ - type: Transform
+ pos: 103.5,111.5
+ parent: 1
+ - uid: 12102
+ components:
+ - type: Transform
+ pos: 103.5,110.5
+ parent: 1
+ - uid: 12103
+ components:
+ - type: Transform
+ pos: 102.5,110.5
+ parent: 1
+ - uid: 12104
+ components:
+ - type: Transform
+ pos: 100.5,110.5
+ parent: 1
+ - uid: 12105
+ components:
+ - type: Transform
+ pos: 99.5,110.5
+ parent: 1
+ - uid: 12106
+ components:
+ - type: Transform
+ pos: 98.5,110.5
+ parent: 1
+ - uid: 12107
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - uid: 12108
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 1
+ - uid: 12109
+ components:
+ - type: Transform
+ pos: 95.5,110.5
+ parent: 1
+ - uid: 12110
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 1
+ - uid: 12111
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 1
+ - uid: 12112
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 1
+ - uid: 12113
+ components:
+ - type: Transform
+ pos: 101.5,110.5
+ parent: 1
+ - uid: 12118
+ components:
+ - type: Transform
+ pos: 122.5,88.5
+ parent: 1
+ - uid: 12119
+ components:
+ - type: Transform
+ pos: 121.5,88.5
+ parent: 1
+ - uid: 12120
+ components:
+ - type: Transform
+ pos: 120.5,88.5
+ parent: 1
+ - uid: 12121
+ components:
+ - type: Transform
+ pos: 119.5,88.5
+ parent: 1
+ - uid: 12122
+ components:
+ - type: Transform
+ pos: 118.5,88.5
+ parent: 1
+ - uid: 12123
+ components:
+ - type: Transform
+ pos: 117.5,88.5
+ parent: 1
+ - uid: 12124
+ components:
+ - type: Transform
+ pos: 116.5,88.5
+ parent: 1
+ - uid: 12125
+ components:
+ - type: Transform
+ pos: 114.5,88.5
+ parent: 1
+ - uid: 12135
+ components:
+ - type: Transform
+ pos: 115.5,88.5
+ parent: 1
+ - uid: 12140
+ components:
+ - type: Transform
+ pos: 98.5,88.5
+ parent: 1
+ - uid: 12141
+ components:
+ - type: Transform
+ pos: 97.5,88.5
+ parent: 1
+ - uid: 12143
+ components:
+ - type: Transform
+ pos: 96.5,88.5
+ parent: 1
+ - uid: 12146
+ components:
+ - type: Transform
+ pos: 123.5,91.5
+ parent: 1
+ - uid: 12147
+ components:
+ - type: Transform
+ pos: 122.5,91.5
+ parent: 1
+ - uid: 12148
+ components:
+ - type: Transform
+ pos: 121.5,91.5
+ parent: 1
+ - uid: 12150
+ components:
+ - type: Transform
+ pos: 129.5,85.5
+ parent: 1
+ - uid: 12151
+ components:
+ - type: Transform
+ pos: 130.5,85.5
+ parent: 1
+ - uid: 12158
+ components:
+ - type: Transform
+ pos: 148.5,113.5
+ parent: 1
+ - uid: 12159
+ components:
+ - type: Transform
+ pos: 149.5,113.5
+ parent: 1
+ - uid: 12161
+ components:
+ - type: Transform
+ pos: 140.5,85.5
+ parent: 1
+ - uid: 12162
+ components:
+ - type: Transform
+ pos: 141.5,85.5
+ parent: 1
+ - uid: 12163
+ components:
+ - type: Transform
+ pos: 142.5,85.5
+ parent: 1
+ - uid: 12164
+ components:
+ - type: Transform
+ pos: 144.5,85.5
+ parent: 1
+ - uid: 12165
+ components:
+ - type: Transform
+ pos: 145.5,85.5
+ parent: 1
+ - uid: 12166
+ components:
+ - type: Transform
+ pos: 143.5,85.5
+ parent: 1
+ - uid: 12167
+ components:
+ - type: Transform
+ pos: 146.5,85.5
+ parent: 1
+ - uid: 12168
+ components:
+ - type: Transform
+ pos: 146.5,84.5
+ parent: 1
+ - uid: 12169
+ components:
+ - type: Transform
+ pos: 146.5,83.5
+ parent: 1
+ - uid: 12170
+ components:
+ - type: Transform
+ pos: 146.5,82.5
+ parent: 1
+ - uid: 12175
+ components:
+ - type: Transform
+ pos: 146.5,77.5
+ parent: 1
+ - uid: 12184
+ components:
+ - type: Transform
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 12185
+ components:
+ - type: Transform
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 12186
+ components:
+ - type: Transform
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 12187
+ components:
+ - type: Transform
+ pos: 156.5,75.5
+ parent: 1
+ - uid: 12188
+ components:
+ - type: Transform
+ pos: 156.5,74.5
+ parent: 1
+ - uid: 12189
+ components:
+ - type: Transform
+ pos: 156.5,73.5
+ parent: 1
+ - uid: 12190
+ components:
+ - type: Transform
+ pos: 156.5,72.5
+ parent: 1
+ - uid: 12191
+ components:
+ - type: Transform
+ pos: 156.5,71.5
+ parent: 1
+ - uid: 12192
+ components:
+ - type: Transform
+ pos: 156.5,70.5
+ parent: 1
+ - uid: 12193
+ components:
+ - type: Transform
+ pos: 156.5,69.5
+ parent: 1
+ - uid: 12194
+ components:
+ - type: Transform
+ pos: 156.5,68.5
+ parent: 1
+ - uid: 12195
+ components:
+ - type: Transform
+ pos: 156.5,66.5
+ parent: 1
+ - uid: 12196
+ components:
+ - type: Transform
+ pos: 156.5,67.5
+ parent: 1
+ - uid: 12197
+ components:
+ - type: Transform
+ pos: 157.5,66.5
+ parent: 1
+ - uid: 12198
+ components:
+ - type: Transform
+ pos: 158.5,66.5
+ parent: 1
+ - uid: 12199
+ components:
+ - type: Transform
+ pos: 158.5,65.5
+ parent: 1
+ - uid: 12200
+ components:
+ - type: Transform
+ pos: 158.5,63.5
+ parent: 1
+ - uid: 12201
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - uid: 12202
+ components:
+ - type: Transform
+ pos: 158.5,62.5
+ parent: 1
+ - uid: 12203
+ components:
+ - type: Transform
+ pos: 158.5,61.5
+ parent: 1
+ - uid: 12204
+ components:
+ - type: Transform
+ pos: 158.5,60.5
+ parent: 1
+ - uid: 12205
+ components:
+ - type: Transform
+ pos: 158.5,59.5
+ parent: 1
+ - uid: 12206
+ components:
+ - type: Transform
+ pos: 158.5,58.5
+ parent: 1
+ - uid: 12207
+ components:
+ - type: Transform
+ pos: 158.5,57.5
+ parent: 1
+ - uid: 12208
+ components:
+ - type: Transform
+ pos: 159.5,57.5
+ parent: 1
+ - uid: 12209
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 12210
+ components:
+ - type: Transform
+ pos: 161.5,57.5
+ parent: 1
+ - uid: 12211
+ components:
+ - type: Transform
+ pos: 161.5,58.5
+ parent: 1
+ - uid: 12213
+ components:
+ - type: Transform
+ pos: 164.5,57.5
+ parent: 1
+ - uid: 12214
+ components:
+ - type: Transform
+ pos: 165.5,57.5
+ parent: 1
+ - uid: 12215
+ components:
+ - type: Transform
+ pos: 166.5,57.5
+ parent: 1
+ - uid: 12216
+ components:
+ - type: Transform
+ pos: 167.5,57.5
+ parent: 1
+ - uid: 12217
+ components:
+ - type: Transform
+ pos: 168.5,61.5
+ parent: 1
+ - uid: 12218
+ components:
+ - type: Transform
+ pos: 168.5,62.5
+ parent: 1
+ - uid: 12219
+ components:
+ - type: Transform
+ pos: 168.5,63.5
+ parent: 1
+ - uid: 12220
+ components:
+ - type: Transform
+ pos: 168.5,64.5
+ parent: 1
+ - uid: 12221
+ components:
+ - type: Transform
+ pos: 168.5,66.5
+ parent: 1
+ - uid: 12222
+ components:
+ - type: Transform
+ pos: 168.5,65.5
+ parent: 1
+ - uid: 12223
+ components:
+ - type: Transform
+ pos: 168.5,67.5
+ parent: 1
+ - uid: 12224
+ components:
+ - type: Transform
+ pos: 168.5,68.5
+ parent: 1
+ - uid: 12225
+ components:
+ - type: Transform
+ pos: 168.5,69.5
+ parent: 1
+ - uid: 12226
+ components:
+ - type: Transform
+ pos: 168.5,45.5
+ parent: 1
+ - uid: 12228
+ components:
+ - type: Transform
+ pos: 168.5,51.5
+ parent: 1
+ - uid: 12229
+ components:
+ - type: Transform
+ pos: 168.5,50.5
+ parent: 1
+ - uid: 12230
+ components:
+ - type: Transform
+ pos: 168.5,48.5
+ parent: 1
+ - uid: 12231
+ components:
+ - type: Transform
+ pos: 168.5,53.5
+ parent: 1
+ - uid: 12232
+ components:
+ - type: Transform
+ pos: 168.5,49.5
+ parent: 1
+ - uid: 12233
+ components:
+ - type: Transform
+ pos: 170.5,60.5
+ parent: 1
+ - uid: 12234
+ components:
+ - type: Transform
+ pos: 170.5,61.5
+ parent: 1
+ - uid: 12235
+ components:
+ - type: Transform
+ pos: 170.5,62.5
+ parent: 1
+ - uid: 12236
+ components:
+ - type: Transform
+ pos: 170.5,63.5
+ parent: 1
+ - uid: 12237
+ components:
+ - type: Transform
+ pos: 168.5,52.5
+ parent: 1
+ - uid: 12238
+ components:
+ - type: Transform
+ pos: 170.5,64.5
+ parent: 1
+ - uid: 12239
+ components:
+ - type: Transform
+ pos: 170.5,65.5
+ parent: 1
+ - uid: 12240
+ components:
+ - type: Transform
+ pos: 168.5,54.5
+ parent: 1
+ - uid: 12241
+ components:
+ - type: Transform
+ pos: 170.5,66.5
+ parent: 1
+ - uid: 12242
+ components:
+ - type: Transform
+ pos: 170.5,67.5
+ parent: 1
+ - uid: 12243
+ components:
+ - type: Transform
+ pos: 170.5,68.5
+ parent: 1
+ - uid: 12244
+ components:
+ - type: Transform
+ pos: 170.5,69.5
+ parent: 1
+ - uid: 12245
+ components:
+ - type: Transform
+ pos: 168.5,47.5
+ parent: 1
+ - uid: 12246
+ components:
+ - type: Transform
+ pos: 168.5,46.5
+ parent: 1
+ - uid: 12247
+ components:
+ - type: Transform
+ pos: 170.5,45.5
+ parent: 1
+ - uid: 12248
+ components:
+ - type: Transform
+ pos: 170.5,46.5
+ parent: 1
+ - uid: 12249
+ components:
+ - type: Transform
+ pos: 170.5,47.5
+ parent: 1
+ - uid: 12250
+ components:
+ - type: Transform
+ pos: 170.5,48.5
+ parent: 1
+ - uid: 12251
+ components:
+ - type: Transform
+ pos: 170.5,49.5
+ parent: 1
+ - uid: 12252
+ components:
+ - type: Transform
+ pos: 170.5,50.5
+ parent: 1
+ - uid: 12253
+ components:
+ - type: Transform
+ pos: 170.5,51.5
+ parent: 1
+ - uid: 12254
+ components:
+ - type: Transform
+ pos: 170.5,52.5
+ parent: 1
+ - uid: 12255
+ components:
+ - type: Transform
+ pos: 170.5,53.5
+ parent: 1
+ - uid: 12256
+ components:
+ - type: Transform
+ pos: 170.5,54.5
+ parent: 1
+ - uid: 12257
+ components:
+ - type: Transform
+ pos: 172.5,54.5
+ parent: 1
+ - uid: 12258
+ components:
+ - type: Transform
+ pos: 172.5,53.5
+ parent: 1
+ - uid: 12259
+ components:
+ - type: Transform
+ pos: 172.5,52.5
+ parent: 1
+ - uid: 12260
+ components:
+ - type: Transform
+ pos: 172.5,51.5
+ parent: 1
+ - uid: 12261
+ components:
+ - type: Transform
+ pos: 172.5,50.5
+ parent: 1
+ - uid: 12262
+ components:
+ - type: Transform
+ pos: 172.5,49.5
+ parent: 1
+ - uid: 12263
+ components:
+ - type: Transform
+ pos: 172.5,48.5
+ parent: 1
+ - uid: 12264
+ components:
+ - type: Transform
+ pos: 172.5,47.5
+ parent: 1
+ - uid: 12265
+ components:
+ - type: Transform
+ pos: 172.5,46.5
+ parent: 1
+ - uid: 12266
+ components:
+ - type: Transform
+ pos: 172.5,45.5
+ parent: 1
+ - uid: 12267
+ components:
+ - type: Transform
+ pos: 174.5,45.5
+ parent: 1
+ - uid: 12268
+ components:
+ - type: Transform
+ pos: 174.5,46.5
+ parent: 1
+ - uid: 12269
+ components:
+ - type: Transform
+ pos: 174.5,47.5
+ parent: 1
+ - uid: 12270
+ components:
+ - type: Transform
+ pos: 174.5,48.5
+ parent: 1
+ - uid: 12271
+ components:
+ - type: Transform
+ pos: 174.5,49.5
+ parent: 1
+ - uid: 12272
+ components:
+ - type: Transform
+ pos: 174.5,50.5
+ parent: 1
+ - uid: 12273
+ components:
+ - type: Transform
+ pos: 174.5,51.5
+ parent: 1
+ - uid: 12274
+ components:
+ - type: Transform
+ pos: 174.5,52.5
+ parent: 1
+ - uid: 12275
+ components:
+ - type: Transform
+ pos: 174.5,53.5
+ parent: 1
+ - uid: 12276
+ components:
+ - type: Transform
+ pos: 174.5,54.5
+ parent: 1
+ - uid: 12277
+ components:
+ - type: Transform
+ pos: 176.5,54.5
+ parent: 1
+ - uid: 12278
+ components:
+ - type: Transform
+ pos: 176.5,53.5
+ parent: 1
+ - uid: 12279
+ components:
+ - type: Transform
+ pos: 176.5,52.5
+ parent: 1
+ - uid: 12280
+ components:
+ - type: Transform
+ pos: 176.5,51.5
+ parent: 1
+ - uid: 12281
+ components:
+ - type: Transform
+ pos: 176.5,50.5
+ parent: 1
+ - uid: 12282
+ components:
+ - type: Transform
+ pos: 176.5,49.5
+ parent: 1
+ - uid: 12283
+ components:
+ - type: Transform
+ pos: 176.5,48.5
+ parent: 1
+ - uid: 12284
+ components:
+ - type: Transform
+ pos: 176.5,47.5
+ parent: 1
+ - uid: 12285
+ components:
+ - type: Transform
+ pos: 176.5,46.5
+ parent: 1
+ - uid: 12286
+ components:
+ - type: Transform
+ pos: 176.5,45.5
+ parent: 1
+ - uid: 12287
+ components:
+ - type: Transform
+ pos: 178.5,45.5
+ parent: 1
+ - uid: 12288
+ components:
+ - type: Transform
+ pos: 178.5,46.5
+ parent: 1
+ - uid: 12289
+ components:
+ - type: Transform
+ pos: 178.5,47.5
+ parent: 1
+ - uid: 12290
+ components:
+ - type: Transform
+ pos: 178.5,48.5
+ parent: 1
+ - uid: 12291
+ components:
+ - type: Transform
+ pos: 178.5,49.5
+ parent: 1
+ - uid: 12292
+ components:
+ - type: Transform
+ pos: 178.5,50.5
+ parent: 1
+ - uid: 12293
+ components:
+ - type: Transform
+ pos: 178.5,51.5
+ parent: 1
+ - uid: 12294
+ components:
+ - type: Transform
+ pos: 178.5,52.5
+ parent: 1
+ - uid: 12295
+ components:
+ - type: Transform
+ pos: 178.5,53.5
+ parent: 1
+ - uid: 12296
+ components:
+ - type: Transform
+ pos: 178.5,54.5
+ parent: 1
+ - uid: 12297
+ components:
+ - type: Transform
+ pos: 176.5,60.5
+ parent: 1
+ - uid: 12298
+ components:
+ - type: Transform
+ pos: 176.5,61.5
+ parent: 1
+ - uid: 12299
+ components:
+ - type: Transform
+ pos: 176.5,62.5
+ parent: 1
+ - uid: 12300
+ components:
+ - type: Transform
+ pos: 176.5,63.5
+ parent: 1
+ - uid: 12301
+ components:
+ - type: Transform
+ pos: 176.5,64.5
+ parent: 1
+ - uid: 12302
+ components:
+ - type: Transform
+ pos: 176.5,65.5
+ parent: 1
+ - uid: 12303
+ components:
+ - type: Transform
+ pos: 176.5,66.5
+ parent: 1
+ - uid: 12304
+ components:
+ - type: Transform
+ pos: 176.5,67.5
+ parent: 1
+ - uid: 12305
+ components:
+ - type: Transform
+ pos: 176.5,68.5
+ parent: 1
+ - uid: 12306
+ components:
+ - type: Transform
+ pos: 176.5,69.5
+ parent: 1
+ - uid: 12307
+ components:
+ - type: Transform
+ pos: 178.5,69.5
+ parent: 1
+ - uid: 12308
+ components:
+ - type: Transform
+ pos: 178.5,68.5
+ parent: 1
+ - uid: 12309
+ components:
+ - type: Transform
+ pos: 178.5,67.5
+ parent: 1
+ - uid: 12310
+ components:
+ - type: Transform
+ pos: 178.5,66.5
+ parent: 1
+ - uid: 12311
+ components:
+ - type: Transform
+ pos: 178.5,65.5
+ parent: 1
+ - uid: 12312
+ components:
+ - type: Transform
+ pos: 178.5,64.5
+ parent: 1
+ - uid: 12313
+ components:
+ - type: Transform
+ pos: 178.5,63.5
+ parent: 1
+ - uid: 12314
+ components:
+ - type: Transform
+ pos: 178.5,62.5
+ parent: 1
+ - uid: 12315
+ components:
+ - type: Transform
+ pos: 178.5,61.5
+ parent: 1
+ - uid: 12316
+ components:
+ - type: Transform
+ pos: 178.5,60.5
+ parent: 1
+ - uid: 12317
+ components:
+ - type: Transform
+ pos: 181.5,57.5
+ parent: 1
+ - uid: 12318
+ components:
+ - type: Transform
+ pos: 180.5,57.5
+ parent: 1
+ - uid: 12319
+ components:
+ - type: Transform
+ pos: 174.5,60.5
+ parent: 1
+ - uid: 12320
+ components:
+ - type: Transform
+ pos: 174.5,61.5
+ parent: 1
+ - uid: 12321
+ components:
+ - type: Transform
+ pos: 174.5,62.5
+ parent: 1
+ - uid: 12322
+ components:
+ - type: Transform
+ pos: 174.5,63.5
+ parent: 1
+ - uid: 12323
+ components:
+ - type: Transform
+ pos: 174.5,64.5
+ parent: 1
+ - uid: 12324
+ components:
+ - type: Transform
+ pos: 174.5,65.5
+ parent: 1
+ - uid: 12325
+ components:
+ - type: Transform
+ pos: 174.5,66.5
+ parent: 1
+ - uid: 12326
+ components:
+ - type: Transform
+ pos: 174.5,67.5
+ parent: 1
+ - uid: 12327
+ components:
+ - type: Transform
+ pos: 174.5,68.5
+ parent: 1
+ - uid: 12328
+ components:
+ - type: Transform
+ pos: 174.5,69.5
+ parent: 1
+ - uid: 12329
+ components:
+ - type: Transform
+ pos: 172.5,69.5
+ parent: 1
+ - uid: 12330
+ components:
+ - type: Transform
+ pos: 172.5,68.5
+ parent: 1
+ - uid: 12331
+ components:
+ - type: Transform
+ pos: 172.5,67.5
+ parent: 1
+ - uid: 12332
+ components:
+ - type: Transform
+ pos: 172.5,66.5
+ parent: 1
+ - uid: 12333
+ components:
+ - type: Transform
+ pos: 172.5,65.5
+ parent: 1
+ - uid: 12334
+ components:
+ - type: Transform
+ pos: 172.5,64.5
+ parent: 1
+ - uid: 12335
+ components:
+ - type: Transform
+ pos: 172.5,63.5
+ parent: 1
+ - uid: 12336
+ components:
+ - type: Transform
+ pos: 172.5,62.5
+ parent: 1
+ - uid: 12337
+ components:
+ - type: Transform
+ pos: 172.5,61.5
+ parent: 1
+ - uid: 12338
+ components:
+ - type: Transform
+ pos: 172.5,60.5
+ parent: 1
+ - uid: 12339
+ components:
+ - type: Transform
+ pos: 163.5,58.5
+ parent: 1
+ - uid: 12340
+ components:
+ - type: Transform
+ pos: 163.5,59.5
+ parent: 1
+ - uid: 12341
+ components:
+ - type: Transform
+ pos: 162.5,59.5
+ parent: 1
+ - uid: 12344
+ components:
+ - type: Transform
+ pos: 161.5,59.5
+ parent: 1
+ - uid: 12345
+ components:
+ - type: Transform
+ pos: 161.5,56.5
+ parent: 1
+ - uid: 12346
+ components:
+ - type: Transform
+ pos: 161.5,55.5
+ parent: 1
+ - uid: 12347
+ components:
+ - type: Transform
+ pos: 161.5,54.5
+ parent: 1
+ - uid: 12349
+ components:
+ - type: Transform
+ pos: 101.5,51.5
+ parent: 1
+ - uid: 12350
+ components:
+ - type: Transform
+ pos: 103.5,51.5
+ parent: 1
+ - uid: 12351
+ components:
+ - type: Transform
+ pos: 105.5,51.5
+ parent: 1
+ - uid: 12352
+ components:
+ - type: Transform
+ pos: 106.5,51.5
+ parent: 1
+ - uid: 12353
+ components:
+ - type: Transform
+ pos: 107.5,51.5
+ parent: 1
+ - uid: 12354
+ components:
+ - type: Transform
+ pos: 102.5,51.5
+ parent: 1
+ - uid: 12355
+ components:
+ - type: Transform
+ pos: 104.5,51.5
+ parent: 1
+ - uid: 12356
+ components:
+ - type: Transform
+ pos: 110.5,51.5
+ parent: 1
+ - uid: 12357
+ components:
+ - type: Transform
+ pos: 108.5,51.5
+ parent: 1
+ - uid: 12358
+ components:
+ - type: Transform
+ pos: 109.5,51.5
+ parent: 1
+ - uid: 12359
+ components:
+ - type: Transform
+ pos: 110.5,52.5
+ parent: 1
+ - uid: 12360
+ components:
+ - type: Transform
+ pos: 110.5,53.5
+ parent: 1
+ - uid: 12361
+ components:
+ - type: Transform
+ pos: 110.5,54.5
+ parent: 1
+ - uid: 12362
+ components:
+ - type: Transform
+ pos: 111.5,54.5
+ parent: 1
+ - uid: 12363
+ components:
+ - type: Transform
+ pos: 112.5,54.5
+ parent: 1
+ - uid: 12364
+ components:
+ - type: Transform
+ pos: 113.5,54.5
+ parent: 1
+ - uid: 12365
+ components:
+ - type: Transform
+ pos: 114.5,54.5
+ parent: 1
+ - uid: 12366
+ components:
+ - type: Transform
+ pos: 115.5,54.5
+ parent: 1
+ - uid: 12367
+ components:
+ - type: Transform
+ pos: 116.5,54.5
+ parent: 1
+ - uid: 12368
+ components:
+ - type: Transform
+ pos: 117.5,54.5
+ parent: 1
+ - uid: 12369
+ components:
+ - type: Transform
+ pos: 118.5,54.5
+ parent: 1
+ - uid: 12370
+ components:
+ - type: Transform
+ pos: 119.5,54.5
+ parent: 1
+ - uid: 12371
+ components:
+ - type: Transform
+ pos: 119.5,55.5
+ parent: 1
+ - uid: 12372
+ components:
+ - type: Transform
+ pos: 119.5,56.5
+ parent: 1
+ - uid: 12373
+ components:
+ - type: Transform
+ pos: 119.5,57.5
+ parent: 1
+ - uid: 12374
+ components:
+ - type: Transform
+ pos: 119.5,58.5
+ parent: 1
+ - uid: 12375
+ components:
+ - type: Transform
+ pos: 119.5,59.5
+ parent: 1
+ - uid: 12376
+ components:
+ - type: Transform
+ pos: 119.5,60.5
+ parent: 1
+ - uid: 12377
+ components:
+ - type: Transform
+ pos: 119.5,62.5
+ parent: 1
+ - uid: 12378
+ components:
+ - type: Transform
+ pos: 119.5,63.5
+ parent: 1
+ - uid: 12379
+ components:
+ - type: Transform
+ pos: 119.5,64.5
+ parent: 1
+ - uid: 12380
+ components:
+ - type: Transform
+ pos: 119.5,65.5
+ parent: 1
+ - uid: 12381
+ components:
+ - type: Transform
+ pos: 119.5,66.5
+ parent: 1
+ - uid: 12382
+ components:
+ - type: Transform
+ pos: 119.5,67.5
+ parent: 1
+ - uid: 12383
+ components:
+ - type: Transform
+ pos: 119.5,61.5
+ parent: 1
+ - uid: 12384
+ components:
+ - type: Transform
+ pos: 119.5,68.5
+ parent: 1
+ - uid: 12385
+ components:
+ - type: Transform
+ pos: 119.5,70.5
+ parent: 1
+ - uid: 12386
+ components:
+ - type: Transform
+ pos: 119.5,71.5
+ parent: 1
+ - uid: 12387
+ components:
+ - type: Transform
+ pos: 119.5,69.5
+ parent: 1
+ - uid: 12389
+ components:
+ - type: Transform
+ pos: 119.5,73.5
+ parent: 1
+ - uid: 12390
+ components:
+ - type: Transform
+ pos: 119.5,74.5
+ parent: 1
+ - uid: 12391
+ components:
+ - type: Transform
+ pos: 119.5,75.5
+ parent: 1
+ - uid: 12392
+ components:
+ - type: Transform
+ pos: 119.5,76.5
+ parent: 1
+ - uid: 12393
+ components:
+ - type: Transform
+ pos: 100.5,51.5
+ parent: 1
+ - uid: 12403
+ components:
+ - type: Transform
+ pos: 96.5,51.5
+ parent: 1
+ - uid: 12404
+ components:
+ - type: Transform
+ pos: 88.5,45.5
+ parent: 1
+ - uid: 12407
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 1
+ - uid: 12408
+ components:
+ - type: Transform
+ pos: 83.5,53.5
+ parent: 1
+ - uid: 12409
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - uid: 12410
+ components:
+ - type: Transform
+ pos: 83.5,50.5
+ parent: 1
+ - uid: 12418
+ components:
+ - type: Transform
+ pos: 83.5,49.5
+ parent: 1
+ - uid: 12439
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 1
+ - uid: 12440
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 1
+ - uid: 12441
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 1
+ - uid: 12442
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 1
+ - uid: 12443
+ components:
+ - type: Transform
+ pos: 100.5,55.5
+ parent: 1
+ - uid: 12444
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 1
+ - uid: 12445
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - uid: 12446
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 1
+ - uid: 12447
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 1
+ - uid: 12448
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 1
+ - uid: 12449
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 1
+ - uid: 12450
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 1
+ - uid: 12453
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 1
+ - uid: 12454
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 1
+ - uid: 12455
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 1
+ - uid: 12456
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 1
+ - uid: 12457
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - uid: 12458
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - uid: 12459
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - uid: 12460
+ components:
+ - type: Transform
+ pos: 96.5,63.5
+ parent: 1
+ - uid: 12471
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 1
+ - uid: 12472
+ components:
+ - type: Transform
+ pos: 94.5,73.5
+ parent: 1
+ - uid: 12477
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 12482
+ components:
+ - type: Transform
+ pos: 59.5,148.5
+ parent: 1
+ - uid: 12483
+ components:
+ - type: Transform
+ pos: 60.5,148.5
+ parent: 1
+ - uid: 12484
+ components:
+ - type: Transform
+ pos: 60.5,149.5
+ parent: 1
+ - uid: 12485
+ components:
+ - type: Transform
+ pos: 60.5,150.5
+ parent: 1
+ - uid: 12487
+ components:
+ - type: Transform
+ pos: 60.5,152.5
+ parent: 1
+ - uid: 12488
+ components:
+ - type: Transform
+ pos: 61.5,152.5
+ parent: 1
+ - uid: 12489
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - uid: 12490
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - uid: 12491
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - uid: 12492
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - uid: 12493
+ components:
+ - type: Transform
+ pos: 61.5,157.5
+ parent: 1
+ - uid: 12494
+ components:
+ - type: Transform
+ pos: 62.5,157.5
+ parent: 1
+ - uid: 12513
+ components:
+ - type: Transform
+ pos: 72.5,156.5
+ parent: 1
+ - uid: 12516
+ components:
+ - type: Transform
+ pos: 84.5,156.5
+ parent: 1
+ - uid: 12518
+ components:
+ - type: Transform
+ pos: 85.5,156.5
+ parent: 1
+ - uid: 12519
+ components:
+ - type: Transform
+ pos: 85.5,157.5
+ parent: 1
+ - uid: 12520
+ components:
+ - type: Transform
+ pos: 85.5,158.5
+ parent: 1
+ - uid: 12521
+ components:
+ - type: Transform
+ pos: 85.5,159.5
+ parent: 1
+ - uid: 12522
+ components:
+ - type: Transform
+ pos: 86.5,159.5
+ parent: 1
+ - uid: 12523
+ components:
+ - type: Transform
+ pos: 87.5,159.5
+ parent: 1
+ - uid: 12524
+ components:
+ - type: Transform
+ pos: 88.5,159.5
+ parent: 1
+ - uid: 12525
+ components:
+ - type: Transform
+ pos: 89.5,159.5
+ parent: 1
+ - uid: 12526
+ components:
+ - type: Transform
+ pos: 90.5,159.5
+ parent: 1
+ - uid: 12527
+ components:
+ - type: Transform
+ pos: 91.5,159.5
+ parent: 1
+ - uid: 12528
+ components:
+ - type: Transform
+ pos: 92.5,159.5
+ parent: 1
+ - uid: 12529
+ components:
+ - type: Transform
+ pos: 93.5,159.5
+ parent: 1
+ - uid: 12530
+ components:
+ - type: Transform
+ pos: 94.5,159.5
+ parent: 1
+ - uid: 12531
+ components:
+ - type: Transform
+ pos: 94.5,160.5
+ parent: 1
+ - uid: 12532
+ components:
+ - type: Transform
+ pos: 94.5,161.5
+ parent: 1
+ - uid: 12533
+ components:
+ - type: Transform
+ pos: 94.5,162.5
+ parent: 1
+ - uid: 12534
+ components:
+ - type: Transform
+ pos: 94.5,163.5
+ parent: 1
+ - uid: 12535
+ components:
+ - type: Transform
+ pos: 94.5,164.5
+ parent: 1
+ - uid: 12536
+ components:
+ - type: Transform
+ pos: 94.5,165.5
+ parent: 1
+ - uid: 12537
+ components:
+ - type: Transform
+ pos: 94.5,166.5
+ parent: 1
+ - uid: 12538
+ components:
+ - type: Transform
+ pos: 94.5,167.5
+ parent: 1
+ - uid: 12539
+ components:
+ - type: Transform
+ pos: 94.5,168.5
+ parent: 1
+ - uid: 12542
+ components:
+ - type: Transform
+ pos: 98.5,169.5
+ parent: 1
+ - uid: 12543
+ components:
+ - type: Transform
+ pos: 99.5,169.5
+ parent: 1
+ - uid: 12544
+ components:
+ - type: Transform
+ pos: 100.5,169.5
+ parent: 1
+ - uid: 12545
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 12546
+ components:
+ - type: Transform
+ pos: 102.5,169.5
+ parent: 1
+ - uid: 12547
+ components:
+ - type: Transform
+ pos: 103.5,169.5
+ parent: 1
+ - uid: 12548
+ components:
+ - type: Transform
+ pos: 104.5,169.5
+ parent: 1
+ - uid: 12551
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - uid: 12552
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - uid: 12553
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - uid: 12554
+ components:
+ - type: Transform
+ pos: 104.5,165.5
+ parent: 1
+ - uid: 12563
+ components:
+ - type: Transform
+ pos: 112.5,164.5
+ parent: 1
+ - uid: 12564
+ components:
+ - type: Transform
+ pos: 113.5,164.5
+ parent: 1
+ - uid: 12565
+ components:
+ - type: Transform
+ pos: 114.5,164.5
+ parent: 1
+ - uid: 12566
+ components:
+ - type: Transform
+ pos: 115.5,164.5
+ parent: 1
+ - uid: 12567
+ components:
+ - type: Transform
+ pos: 116.5,164.5
+ parent: 1
+ - uid: 12568
+ components:
+ - type: Transform
+ pos: 117.5,164.5
+ parent: 1
+ - uid: 12569
+ components:
+ - type: Transform
+ pos: 118.5,164.5
+ parent: 1
+ - uid: 12570
+ components:
+ - type: Transform
+ pos: 119.5,164.5
+ parent: 1
+ - uid: 12571
+ components:
+ - type: Transform
+ pos: 120.5,164.5
+ parent: 1
+ - uid: 12572
+ components:
+ - type: Transform
+ pos: 121.5,164.5
+ parent: 1
+ - uid: 12578
+ components:
+ - type: Transform
+ pos: 83.5,52.5
+ parent: 1
+ - uid: 12579
+ components:
+ - type: Transform
+ pos: 88.5,44.5
+ parent: 1
+ - uid: 12582
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - uid: 12583
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - uid: 12584
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - uid: 12585
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - uid: 12586
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - uid: 12587
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - uid: 12588
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - uid: 12589
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - uid: 12590
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - uid: 12591
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - uid: 12592
+ components:
+ - type: Transform
+ pos: 125.5,148.5
+ parent: 1
+ - uid: 12593
+ components:
+ - type: Transform
+ pos: 126.5,148.5
+ parent: 1
+ - uid: 12594
+ components:
+ - type: Transform
+ pos: 127.5,148.5
+ parent: 1
+ - uid: 12595
+ components:
+ - type: Transform
+ pos: 128.5,148.5
+ parent: 1
+ - uid: 12596
+ components:
+ - type: Transform
+ pos: 129.5,148.5
+ parent: 1
+ - uid: 12597
+ components:
+ - type: Transform
+ pos: 130.5,148.5
+ parent: 1
+ - uid: 12598
+ components:
+ - type: Transform
+ pos: 131.5,148.5
+ parent: 1
+ - uid: 12599
+ components:
+ - type: Transform
+ pos: 132.5,148.5
+ parent: 1
+ - uid: 12600
+ components:
+ - type: Transform
+ pos: 133.5,148.5
+ parent: 1
+ - uid: 12601
+ components:
+ - type: Transform
+ pos: 134.5,148.5
+ parent: 1
+ - uid: 12602
+ components:
+ - type: Transform
+ pos: 134.5,147.5
+ parent: 1
+ - uid: 12603
+ components:
+ - type: Transform
+ pos: 134.5,146.5
+ parent: 1
+ - uid: 12604
+ components:
+ - type: Transform
+ pos: 134.5,145.5
+ parent: 1
+ - uid: 12605
+ components:
+ - type: Transform
+ pos: 134.5,144.5
+ parent: 1
+ - uid: 12606
+ components:
+ - type: Transform
+ pos: 134.5,143.5
+ parent: 1
+ - uid: 12607
+ components:
+ - type: Transform
+ pos: 134.5,142.5
+ parent: 1
+ - uid: 12608
+ components:
+ - type: Transform
+ pos: 134.5,141.5
+ parent: 1
+ - uid: 12611
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - uid: 12612
+ components:
+ - type: Transform
+ pos: 135.5,147.5
+ parent: 1
+ - uid: 12613
+ components:
+ - type: Transform
+ pos: 136.5,147.5
+ parent: 1
+ - uid: 12614
+ components:
+ - type: Transform
+ pos: 137.5,147.5
+ parent: 1
+ - uid: 12615
+ components:
+ - type: Transform
+ pos: 139.5,147.5
+ parent: 1
+ - uid: 12616
+ components:
+ - type: Transform
+ pos: 138.5,147.5
+ parent: 1
+ - uid: 12619
+ components:
+ - type: Transform
+ pos: 131.5,115.5
+ parent: 1
+ - uid: 12620
+ components:
+ - type: Transform
+ pos: 132.5,115.5
+ parent: 1
+ - uid: 12621
+ components:
+ - type: Transform
+ pos: 133.5,115.5
+ parent: 1
+ - uid: 12622
+ components:
+ - type: Transform
+ pos: 134.5,115.5
+ parent: 1
+ - uid: 12623
+ components:
+ - type: Transform
+ pos: 135.5,115.5
+ parent: 1
+ - uid: 12624
+ components:
+ - type: Transform
+ pos: 136.5,115.5
+ parent: 1
+ - uid: 12625
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - uid: 12626
+ components:
+ - type: Transform
+ pos: 138.5,115.5
+ parent: 1
+ - uid: 12627
+ components:
+ - type: Transform
+ pos: 139.5,115.5
+ parent: 1
+ - uid: 12628
+ components:
+ - type: Transform
+ pos: 140.5,115.5
+ parent: 1
+ - uid: 12629
+ components:
+ - type: Transform
+ pos: 141.5,115.5
+ parent: 1
+ - uid: 12630
+ components:
+ - type: Transform
+ pos: 142.5,115.5
+ parent: 1
+ - uid: 12645
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 12647
+ components:
+ - type: Transform
+ pos: 86.5,51.5
+ parent: 1
+ - uid: 12648
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 1
+ - uid: 12650
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - uid: 12651
+ components:
+ - type: Transform
+ pos: 157.5,117.5
+ parent: 1
+ - uid: 12654
+ components:
+ - type: Transform
+ pos: 86.5,47.5
+ parent: 1
+ - uid: 12655
+ components:
+ - type: Transform
+ pos: 86.5,45.5
+ parent: 1
+ - uid: 12656
+ components:
+ - type: Transform
+ pos: 86.5,48.5
+ parent: 1
+ - uid: 12657
+ components:
+ - type: Transform
+ pos: 86.5,46.5
+ parent: 1
+ - uid: 12658
+ components:
+ - type: Transform
+ pos: 86.5,49.5
+ parent: 1
+ - uid: 12662
+ components:
+ - type: Transform
+ pos: 93.5,51.5
+ parent: 1
+ - uid: 12665
+ components:
+ - type: Transform
+ pos: 91.5,51.5
+ parent: 1
+ - uid: 12667
+ components:
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 1
+ - uid: 12668
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 1
+ - uid: 12669
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 1
+ - uid: 12670
+ components:
+ - type: Transform
+ pos: 78.5,45.5
+ parent: 1
+ - uid: 12671
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 1
+ - uid: 12672
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 1
+ - uid: 12673
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 1
+ - uid: 12674
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 1
+ - uid: 12675
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 1
+ - uid: 12678
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 1
+ - uid: 12679
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 1
+ - uid: 12693
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - uid: 12698
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 1
+ - uid: 12699
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 1
+ - uid: 12700
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 1
+ - uid: 12701
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 1
+ - uid: 12710
+ components:
+ - type: Transform
+ pos: 86.5,31.5
+ parent: 1
+ - uid: 12711
+ components:
+ - type: Transform
+ pos: 86.5,30.5
+ parent: 1
+ - uid: 12713
+ components:
+ - type: Transform
+ pos: 86.5,28.5
+ parent: 1
+ - uid: 12714
+ components:
+ - type: Transform
+ pos: 86.5,29.5
+ parent: 1
+ - uid: 12715
+ components:
+ - type: Transform
+ pos: 86.5,27.5
+ parent: 1
+ - uid: 12716
+ components:
+ - type: Transform
+ pos: 86.5,26.5
+ parent: 1
+ - uid: 12717
+ components:
+ - type: Transform
+ pos: 86.5,25.5
+ parent: 1
+ - uid: 12718
+ components:
+ - type: Transform
+ pos: 86.5,24.5
+ parent: 1
+ - uid: 12719
+ components:
+ - type: Transform
+ pos: 86.5,23.5
+ parent: 1
+ - uid: 12720
+ components:
+ - type: Transform
+ pos: 85.5,23.5
+ parent: 1
+ - uid: 12721
+ components:
+ - type: Transform
+ pos: 84.5,23.5
+ parent: 1
+ - uid: 12722
+ components:
+ - type: Transform
+ pos: 83.5,23.5
+ parent: 1
+ - uid: 12723
+ components:
+ - type: Transform
+ pos: 83.5,22.5
+ parent: 1
+ - uid: 12724
+ components:
+ - type: Transform
+ pos: 83.5,21.5
+ parent: 1
+ - uid: 12725
+ components:
+ - type: Transform
+ pos: 83.5,20.5
+ parent: 1
+ - uid: 12726
+ components:
+ - type: Transform
+ pos: 83.5,19.5
+ parent: 1
+ - uid: 12727
+ components:
+ - type: Transform
+ pos: 83.5,18.5
+ parent: 1
+ - uid: 12742
+ components:
+ - type: Transform
+ pos: 67.5,18.5
+ parent: 1
+ - uid: 12743
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 1
+ - uid: 12744
+ components:
+ - type: Transform
+ pos: 67.5,19.5
+ parent: 1
+ - uid: 12745
+ components:
+ - type: Transform
+ pos: 67.5,20.5
+ parent: 1
+ - uid: 12746
+ components:
+ - type: Transform
+ pos: 67.5,21.5
+ parent: 1
+ - uid: 12747
+ components:
+ - type: Transform
+ pos: 67.5,22.5
+ parent: 1
+ - uid: 12748
+ components:
+ - type: Transform
+ pos: 67.5,23.5
+ parent: 1
+ - uid: 12749
+ components:
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 1
+ - uid: 12750
+ components:
+ - type: Transform
+ pos: 67.5,25.5
+ parent: 1
+ - uid: 12751
+ components:
+ - type: Transform
+ pos: 67.5,26.5
+ parent: 1
+ - uid: 12752
+ components:
+ - type: Transform
+ pos: 67.5,27.5
+ parent: 1
+ - uid: 12753
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 1
+ - uid: 12754
+ components:
+ - type: Transform
+ pos: 67.5,28.5
+ parent: 1
+ - uid: 12755
+ components:
+ - type: Transform
+ pos: 67.5,31.5
+ parent: 1
+ - uid: 12756
+ components:
+ - type: Transform
+ pos: 67.5,32.5
+ parent: 1
+ - uid: 12757
+ components:
+ - type: Transform
+ pos: 67.5,33.5
+ parent: 1
+ - uid: 12758
+ components:
+ - type: Transform
+ pos: 67.5,30.5
+ parent: 1
+ - uid: 12759
+ components:
+ - type: Transform
+ pos: 67.5,34.5
+ parent: 1
+ - uid: 12760
+ components:
+ - type: Transform
+ pos: 67.5,35.5
+ parent: 1
+ - uid: 12761
+ components:
+ - type: Transform
+ pos: 67.5,36.5
+ parent: 1
+ - uid: 12762
+ components:
+ - type: Transform
+ pos: 67.5,37.5
+ parent: 1
+ - uid: 12763
+ components:
+ - type: Transform
+ pos: 67.5,38.5
+ parent: 1
+ - uid: 12764
+ components:
+ - type: Transform
+ pos: 67.5,39.5
+ parent: 1
+ - uid: 12765
+ components:
+ - type: Transform
+ pos: 67.5,40.5
+ parent: 1
+ - uid: 12766
+ components:
+ - type: Transform
+ pos: 67.5,41.5
+ parent: 1
+ - uid: 12767
+ components:
+ - type: Transform
+ pos: 67.5,42.5
+ parent: 1
+ - uid: 12768
+ components:
+ - type: Transform
+ pos: 67.5,43.5
+ parent: 1
+ - uid: 12769
+ components:
+ - type: Transform
+ pos: 67.5,44.5
+ parent: 1
+ - uid: 12770
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 1
+ - uid: 12771
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 1
+ - uid: 12772
+ components:
+ - type: Transform
+ pos: 67.5,45.5
+ parent: 1
+ - uid: 12773
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 1
+ - uid: 12774
+ components:
+ - type: Transform
+ pos: 67.5,48.5
+ parent: 1
+ - uid: 12775
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 1
+ - uid: 12776
+ components:
+ - type: Transform
+ pos: 67.5,51.5
+ parent: 1
+ - uid: 12777
+ components:
+ - type: Transform
+ pos: 67.5,52.5
+ parent: 1
+ - uid: 12778
+ components:
+ - type: Transform
+ pos: 67.5,53.5
+ parent: 1
+ - uid: 12779
+ components:
+ - type: Transform
+ pos: 67.5,54.5
+ parent: 1
+ - uid: 12780
+ components:
+ - type: Transform
+ pos: 67.5,55.5
+ parent: 1
+ - uid: 12781
+ components:
+ - type: Transform
+ pos: 67.5,56.5
+ parent: 1
+ - uid: 12782
+ components:
+ - type: Transform
+ pos: 67.5,57.5
+ parent: 1
+ - uid: 12783
+ components:
+ - type: Transform
+ pos: 67.5,58.5
+ parent: 1
+ - uid: 12784
+ components:
+ - type: Transform
+ pos: 67.5,59.5
+ parent: 1
+ - uid: 12785
+ components:
+ - type: Transform
+ pos: 67.5,60.5
+ parent: 1
+ - uid: 12786
+ components:
+ - type: Transform
+ pos: 67.5,61.5
+ parent: 1
+ - uid: 12787
+ components:
+ - type: Transform
+ pos: 67.5,62.5
+ parent: 1
+ - uid: 12788
+ components:
+ - type: Transform
+ pos: 67.5,63.5
+ parent: 1
+ - uid: 12789
+ components:
+ - type: Transform
+ pos: 68.5,42.5
+ parent: 1
+ - uid: 12790
+ components:
+ - type: Transform
+ pos: 69.5,42.5
+ parent: 1
+ - uid: 12791
+ components:
+ - type: Transform
+ pos: 70.5,42.5
+ parent: 1
+ - uid: 12792
+ components:
+ - type: Transform
+ pos: 71.5,42.5
+ parent: 1
+ - uid: 12793
+ components:
+ - type: Transform
+ pos: 72.5,42.5
+ parent: 1
+ - uid: 12794
+ components:
+ - type: Transform
+ pos: 73.5,42.5
+ parent: 1
+ - uid: 12795
+ components:
+ - type: Transform
+ pos: 74.5,42.5
+ parent: 1
+ - uid: 12796
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+ - uid: 12797
+ components:
+ - type: Transform
+ pos: 76.5,42.5
+ parent: 1
+ - uid: 12798
+ components:
+ - type: Transform
+ pos: 77.5,42.5
+ parent: 1
+ - uid: 12799
+ components:
+ - type: Transform
+ pos: 78.5,42.5
+ parent: 1
+ - uid: 12800
+ components:
+ - type: Transform
+ pos: 79.5,42.5
+ parent: 1
+ - uid: 12801
+ components:
+ - type: Transform
+ pos: 80.5,42.5
+ parent: 1
+ - uid: 12802
+ components:
+ - type: Transform
+ pos: 81.5,42.5
+ parent: 1
+ - uid: 12803
+ components:
+ - type: Transform
+ pos: 82.5,42.5
+ parent: 1
+ - uid: 12804
+ components:
+ - type: Transform
+ pos: 83.5,42.5
+ parent: 1
+ - uid: 12805
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 1
+ - uid: 12806
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 1
+ - uid: 12807
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 1
+ - uid: 12808
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 1
+ - uid: 12809
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 1
+ - uid: 12810
+ components:
+ - type: Transform
+ pos: 83.5,35.5
+ parent: 1
+ - uid: 12811
+ components:
+ - type: Transform
+ pos: 83.5,34.5
+ parent: 1
+ - uid: 12812
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 1
+ - uid: 12813
+ components:
+ - type: Transform
+ pos: 83.5,32.5
+ parent: 1
+ - uid: 12814
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 1
+ - uid: 12815
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 1
+ - uid: 12816
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 1
+ - uid: 12817
+ components:
+ - type: Transform
+ pos: 83.5,27.5
+ parent: 1
+ - uid: 12818
+ components:
+ - type: Transform
+ pos: 83.5,26.5
+ parent: 1
+ - uid: 12819
+ components:
+ - type: Transform
+ pos: 83.5,25.5
+ parent: 1
+ - uid: 12820
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 1
+ - uid: 12821
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - uid: 12822
+ components:
+ - type: Transform
+ pos: 66.5,19.5
+ parent: 1
+ - uid: 12823
+ components:
+ - type: Transform
+ pos: 65.5,19.5
+ parent: 1
+ - uid: 12824
+ components:
+ - type: Transform
+ pos: 65.5,20.5
+ parent: 1
+ - uid: 12825
+ components:
+ - type: Transform
+ pos: 64.5,20.5
+ parent: 1
+ - uid: 12826
+ components:
+ - type: Transform
+ pos: 63.5,20.5
+ parent: 1
+ - uid: 12827
+ components:
+ - type: Transform
+ pos: 62.5,20.5
+ parent: 1
+ - uid: 12828
+ components:
+ - type: Transform
+ pos: 61.5,20.5
+ parent: 1
+ - uid: 12837
+ components:
+ - type: Transform
+ pos: 64.5,31.5
+ parent: 1
+ - uid: 12838
+ components:
+ - type: Transform
+ pos: 64.5,30.5
+ parent: 1
+ - uid: 12839
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 1
+ - uid: 12840
+ components:
+ - type: Transform
+ pos: 64.5,28.5
+ parent: 1
+ - uid: 12841
+ components:
+ - type: Transform
+ pos: 64.5,27.5
+ parent: 1
+ - uid: 12842
+ components:
+ - type: Transform
+ pos: 64.5,26.5
+ parent: 1
+ - uid: 12843
+ components:
+ - type: Transform
+ pos: 64.5,25.5
+ parent: 1
+ - uid: 12844
+ components:
+ - type: Transform
+ pos: 64.5,24.5
+ parent: 1
+ - uid: 12845
+ components:
+ - type: Transform
+ pos: 64.5,23.5
+ parent: 1
+ - uid: 12846
+ components:
+ - type: Transform
+ pos: 63.5,23.5
+ parent: 1
+ - uid: 12847
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - uid: 12848
+ components:
+ - type: Transform
+ pos: 63.5,21.5
+ parent: 1
+ - uid: 12849
+ components:
+ - type: Transform
+ pos: 61.5,21.5
+ parent: 1
+ - uid: 12850
+ components:
+ - type: Transform
+ pos: 61.5,22.5
+ parent: 1
+ - uid: 12851
+ components:
+ - type: Transform
+ pos: 61.5,23.5
+ parent: 1
+ - uid: 12852
+ components:
+ - type: Transform
+ pos: 61.5,24.5
+ parent: 1
+ - uid: 12853
+ components:
+ - type: Transform
+ pos: 61.5,25.5
+ parent: 1
+ - uid: 12854
+ components:
+ - type: Transform
+ pos: 61.5,26.5
+ parent: 1
+ - uid: 12855
+ components:
+ - type: Transform
+ pos: 61.5,27.5
+ parent: 1
+ - uid: 12856
+ components:
+ - type: Transform
+ pos: 61.5,28.5
+ parent: 1
+ - uid: 12857
+ components:
+ - type: Transform
+ pos: 61.5,29.5
+ parent: 1
+ - uid: 12858
+ components:
+ - type: Transform
+ pos: 60.5,29.5
+ parent: 1
+ - uid: 12859
+ components:
+ - type: Transform
+ pos: 60.5,30.5
+ parent: 1
+ - uid: 12860
+ components:
+ - type: Transform
+ pos: 60.5,31.5
+ parent: 1
+ - uid: 12861
+ components:
+ - type: Transform
+ pos: 59.5,31.5
+ parent: 1
+ - uid: 12862
+ components:
+ - type: Transform
+ pos: 59.5,32.5
+ parent: 1
+ - uid: 12863
+ components:
+ - type: Transform
+ pos: 59.5,33.5
+ parent: 1
+ - uid: 12864
+ components:
+ - type: Transform
+ pos: 58.5,33.5
+ parent: 1
+ - uid: 12865
+ components:
+ - type: Transform
+ pos: 57.5,33.5
+ parent: 1
+ - uid: 12866
+ components:
+ - type: Transform
+ pos: 57.5,34.5
+ parent: 1
+ - uid: 12867
+ components:
+ - type: Transform
+ pos: 56.5,34.5
+ parent: 1
+ - uid: 12868
+ components:
+ - type: Transform
+ pos: 55.5,34.5
+ parent: 1
+ - uid: 12869
+ components:
+ - type: Transform
+ pos: 55.5,35.5
+ parent: 1
+ - uid: 12870
+ components:
+ - type: Transform
+ pos: 55.5,36.5
+ parent: 1
+ - uid: 12871
+ components:
+ - type: Transform
+ pos: 55.5,37.5
+ parent: 1
+ - uid: 12872
+ components:
+ - type: Transform
+ pos: 55.5,38.5
+ parent: 1
+ - uid: 12873
+ components:
+ - type: Transform
+ pos: 55.5,39.5
+ parent: 1
+ - uid: 12874
+ components:
+ - type: Transform
+ pos: 47.5,49.5
+ parent: 1
+ - uid: 12875
+ components:
+ - type: Transform
+ pos: 47.5,48.5
+ parent: 1
+ - uid: 12876
+ components:
+ - type: Transform
+ pos: 47.5,47.5
+ parent: 1
+ - uid: 12877
+ components:
+ - type: Transform
+ pos: 47.5,46.5
+ parent: 1
+ - uid: 12878
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - uid: 12879
+ components:
+ - type: Transform
+ pos: 47.5,44.5
+ parent: 1
+ - uid: 12880
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - uid: 12881
+ components:
+ - type: Transform
+ pos: 47.5,42.5
+ parent: 1
+ - uid: 12882
+ components:
+ - type: Transform
+ pos: 47.5,41.5
+ parent: 1
+ - uid: 12883
+ components:
+ - type: Transform
+ pos: 48.5,41.5
+ parent: 1
+ - uid: 12884
+ components:
+ - type: Transform
+ pos: 49.5,41.5
+ parent: 1
+ - uid: 12885
+ components:
+ - type: Transform
+ pos: 50.5,41.5
+ parent: 1
+ - uid: 12886
+ components:
+ - type: Transform
+ pos: 51.5,41.5
+ parent: 1
+ - uid: 12887
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1
+ - uid: 12888
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+ - uid: 12889
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1
+ - uid: 12890
+ components:
+ - type: Transform
+ pos: 51.5,37.5
+ parent: 1
+ - uid: 12891
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 1
+ - uid: 12892
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 12893
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 1
+ - uid: 12894
+ components:
+ - type: Transform
+ pos: 51.5,33.5
+ parent: 1
+ - uid: 12895
+ components:
+ - type: Transform
+ pos: 51.5,31.5
+ parent: 1
+ - uid: 12896
+ components:
+ - type: Transform
+ pos: 51.5,30.5
+ parent: 1
+ - uid: 12897
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - uid: 12898
+ components:
+ - type: Transform
+ pos: 52.5,30.5
+ parent: 1
+ - uid: 12899
+ components:
+ - type: Transform
+ pos: 52.5,29.5
+ parent: 1
+ - uid: 12900
+ components:
+ - type: Transform
+ pos: 52.5,28.5
+ parent: 1
+ - uid: 12901
+ components:
+ - type: Transform
+ pos: 52.5,27.5
+ parent: 1
+ - uid: 12902
+ components:
+ - type: Transform
+ pos: 52.5,26.5
+ parent: 1
+ - uid: 12903
+ components:
+ - type: Transform
+ pos: 52.5,25.5
+ parent: 1
+ - uid: 12904
+ components:
+ - type: Transform
+ pos: 52.5,24.5
+ parent: 1
+ - uid: 12905
+ components:
+ - type: Transform
+ pos: 53.5,24.5
+ parent: 1
+ - uid: 12906
+ components:
+ - type: Transform
+ pos: 54.5,24.5
+ parent: 1
+ - uid: 12907
+ components:
+ - type: Transform
+ pos: 55.5,24.5
+ parent: 1
+ - uid: 12909
+ components:
+ - type: Transform
+ pos: 57.5,24.5
+ parent: 1
+ - uid: 12911
+ components:
+ - type: Transform
+ pos: 57.5,22.5
+ parent: 1
+ - uid: 12912
+ components:
+ - type: Transform
+ pos: 57.5,23.5
+ parent: 1
+ - uid: 12914
+ components:
+ - type: Transform
+ pos: 57.5,25.5
+ parent: 1
+ - uid: 12915
+ components:
+ - type: Transform
+ pos: 57.5,26.5
+ parent: 1
+ - uid: 12916
+ components:
+ - type: Transform
+ pos: 55.5,25.5
+ parent: 1
+ - uid: 12918
+ components:
+ - type: Transform
+ pos: 55.5,26.5
+ parent: 1
+ - uid: 12919
+ components:
+ - type: Transform
+ pos: 56.5,26.5
+ parent: 1
+ - uid: 13175
+ components:
+ - type: Transform
+ pos: 123.5,89.5
+ parent: 1
+ - uid: 13242
+ components:
+ - type: Transform
+ pos: 161.5,138.5
+ parent: 1
+ - uid: 13243
+ components:
+ - type: Transform
+ pos: 160.5,138.5
+ parent: 1
+ - uid: 13508
+ components:
+ - type: Transform
+ pos: 95.5,56.5
+ parent: 1
+ - uid: 13626
+ components:
+ - type: Transform
+ pos: 83.5,57.5
+ parent: 1
+ - uid: 13751
+ components:
+ - type: Transform
+ pos: 92.5,51.5
+ parent: 1
+ - uid: 13799
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - uid: 13810
+ components:
+ - type: Transform
+ pos: 115.5,137.5
+ parent: 1
+ - uid: 13811
+ components:
+ - type: Transform
+ pos: 102.5,131.5
+ parent: 1
+ - uid: 13812
+ components:
+ - type: Transform
+ pos: 102.5,132.5
+ parent: 1
+ - uid: 13813
+ components:
+ - type: Transform
+ pos: 102.5,133.5
+ parent: 1
+ - uid: 13814
+ components:
+ - type: Transform
+ pos: 102.5,134.5
+ parent: 1
+ - uid: 13815
+ components:
+ - type: Transform
+ pos: 102.5,135.5
+ parent: 1
+ - uid: 13817
+ components:
+ - type: Transform
+ pos: 105.5,158.5
+ parent: 1
+ - uid: 13819
+ components:
+ - type: Transform
+ pos: 102.5,139.5
+ parent: 1
+ - uid: 13820
+ components:
+ - type: Transform
+ pos: 102.5,140.5
+ parent: 1
+ - uid: 13821
+ components:
+ - type: Transform
+ pos: 102.5,141.5
+ parent: 1
+ - uid: 13822
+ components:
+ - type: Transform
+ pos: 102.5,142.5
+ parent: 1
+ - uid: 13823
+ components:
+ - type: Transform
+ pos: 102.5,143.5
+ parent: 1
+ - uid: 13824
+ components:
+ - type: Transform
+ pos: 103.5,143.5
+ parent: 1
+ - uid: 13825
+ components:
+ - type: Transform
+ pos: 104.5,143.5
+ parent: 1
+ - uid: 13826
+ components:
+ - type: Transform
+ pos: 105.5,143.5
+ parent: 1
+ - uid: 13827
+ components:
+ - type: Transform
+ pos: 106.5,143.5
+ parent: 1
+ - uid: 13830
+ components:
+ - type: Transform
+ pos: 110.5,143.5
+ parent: 1
+ - uid: 13831
+ components:
+ - type: Transform
+ pos: 112.5,143.5
+ parent: 1
+ - uid: 13832
+ components:
+ - type: Transform
+ pos: 111.5,143.5
+ parent: 1
+ - uid: 13833
+ components:
+ - type: Transform
+ pos: 113.5,143.5
+ parent: 1
+ - uid: 13834
+ components:
+ - type: Transform
+ pos: 114.5,143.5
+ parent: 1
+ - uid: 13835
+ components:
+ - type: Transform
+ pos: 114.5,142.5
+ parent: 1
+ - uid: 13836
+ components:
+ - type: Transform
+ pos: 114.5,141.5
+ parent: 1
+ - uid: 13837
+ components:
+ - type: Transform
+ pos: 114.5,140.5
+ parent: 1
+ - uid: 13838
+ components:
+ - type: Transform
+ pos: 114.5,139.5
+ parent: 1
+ - uid: 13840
+ components:
+ - type: Transform
+ pos: 105.5,159.5
+ parent: 1
+ - uid: 13842
+ components:
+ - type: Transform
+ pos: 114.5,135.5
+ parent: 1
+ - uid: 13843
+ components:
+ - type: Transform
+ pos: 114.5,134.5
+ parent: 1
+ - uid: 13844
+ components:
+ - type: Transform
+ pos: 114.5,133.5
+ parent: 1
+ - uid: 13845
+ components:
+ - type: Transform
+ pos: 114.5,132.5
+ parent: 1
+ - uid: 13846
+ components:
+ - type: Transform
+ pos: 114.5,131.5
+ parent: 1
+ - uid: 13847
+ components:
+ - type: Transform
+ pos: 113.5,131.5
+ parent: 1
+ - uid: 13848
+ components:
+ - type: Transform
+ pos: 112.5,131.5
+ parent: 1
+ - uid: 13849
+ components:
+ - type: Transform
+ pos: 111.5,131.5
+ parent: 1
+ - uid: 13850
+ components:
+ - type: Transform
+ pos: 110.5,131.5
+ parent: 1
+ - uid: 13852
+ components:
+ - type: Transform
+ pos: 106.5,160.5
+ parent: 1
+ - uid: 13854
+ components:
+ - type: Transform
+ pos: 106.5,131.5
+ parent: 1
+ - uid: 13855
+ components:
+ - type: Transform
+ pos: 105.5,131.5
+ parent: 1
+ - uid: 13856
+ components:
+ - type: Transform
+ pos: 104.5,131.5
+ parent: 1
+ - uid: 13857
+ components:
+ - type: Transform
+ pos: 103.5,131.5
+ parent: 1
+ - uid: 13858
+ components:
+ - type: Transform
+ pos: 107.5,130.5
+ parent: 1
+ - uid: 13859
+ components:
+ - type: Transform
+ pos: 108.5,130.5
+ parent: 1
+ - uid: 13860
+ components:
+ - type: Transform
+ pos: 109.5,130.5
+ parent: 1
+ - uid: 13861
+ components:
+ - type: Transform
+ pos: 108.5,129.5
+ parent: 1
+ - uid: 13862
+ components:
+ - type: Transform
+ pos: 108.5,128.5
+ parent: 1
+ - uid: 13863
+ components:
+ - type: Transform
+ pos: 108.5,127.5
+ parent: 1
+ - uid: 13864
+ components:
+ - type: Transform
+ pos: 108.5,126.5
+ parent: 1
+ - uid: 13865
+ components:
+ - type: Transform
+ pos: 108.5,125.5
+ parent: 1
+ - uid: 13866
+ components:
+ - type: Transform
+ pos: 115.5,138.5
+ parent: 1
+ - uid: 13867
+ components:
+ - type: Transform
+ pos: 115.5,136.5
+ parent: 1
+ - uid: 13868
+ components:
+ - type: Transform
+ pos: 116.5,137.5
+ parent: 1
+ - uid: 13869
+ components:
+ - type: Transform
+ pos: 117.5,137.5
+ parent: 1
+ - uid: 13870
+ components:
+ - type: Transform
+ pos: 118.5,137.5
+ parent: 1
+ - uid: 13871
+ components:
+ - type: Transform
+ pos: 99.5,150.5
+ parent: 1
+ - uid: 13872
+ components:
+ - type: Transform
+ pos: 119.5,136.5
+ parent: 1
+ - uid: 13873
+ components:
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - uid: 13874
+ components:
+ - type: Transform
+ pos: 121.5,136.5
+ parent: 1
+ - uid: 13875
+ components:
+ - type: Transform
+ pos: 121.5,138.5
+ parent: 1
+ - uid: 13876
+ components:
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - uid: 13877
+ components:
+ - type: Transform
+ pos: 119.5,138.5
+ parent: 1
+ - uid: 13879
+ components:
+ - type: Transform
+ pos: 97.5,136.5
+ parent: 1
+ - uid: 13880
+ components:
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - uid: 13881
+ components:
+ - type: Transform
+ pos: 95.5,136.5
+ parent: 1
+ - uid: 13882
+ components:
+ - type: Transform
+ pos: 95.5,138.5
+ parent: 1
+ - uid: 13883
+ components:
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - uid: 13884
+ components:
+ - type: Transform
+ pos: 97.5,138.5
+ parent: 1
+ - uid: 13886
+ components:
+ - type: Transform
+ pos: 98.5,137.5
+ parent: 1
+ - uid: 13887
+ components:
+ - type: Transform
+ pos: 99.5,137.5
+ parent: 1
+ - uid: 13888
+ components:
+ - type: Transform
+ pos: 100.5,137.5
+ parent: 1
+ - uid: 13889
+ components:
+ - type: Transform
+ pos: 101.5,137.5
+ parent: 1
+ - uid: 13890
+ components:
+ - type: Transform
+ pos: 101.5,136.5
+ parent: 1
+ - uid: 13891
+ components:
+ - type: Transform
+ pos: 101.5,138.5
+ parent: 1
+ - uid: 13953
+ components:
+ - type: Transform
+ pos: 95.5,145.5
+ parent: 1
+ - uid: 13954
+ components:
+ - type: Transform
+ pos: 97.5,144.5
+ parent: 1
+ - uid: 13955
+ components:
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - uid: 13956
+ components:
+ - type: Transform
+ pos: 97.5,145.5
+ parent: 1
+ - uid: 13959
+ components:
+ - type: Transform
+ pos: 98.5,144.5
+ parent: 1
+ - uid: 13964
+ components:
+ - type: Transform
+ pos: 134.5,125.5
+ parent: 1
+ - uid: 13965
+ components:
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - uid: 13966
+ components:
+ - type: Transform
+ pos: 134.5,123.5
+ parent: 1
+ - uid: 13968
+ components:
+ - type: Transform
+ pos: 133.5,123.5
+ parent: 1
+ - uid: 13969
+ components:
+ - type: Transform
+ pos: 132.5,123.5
+ parent: 1
+ - uid: 13973
+ components:
+ - type: Transform
+ pos: 131.5,123.5
+ parent: 1
+ - uid: 13985
+ components:
+ - type: Transform
+ pos: 107.5,144.5
+ parent: 1
+ - uid: 14046
+ components:
+ - type: Transform
+ pos: 97.5,67.5
+ parent: 1
+ - uid: 14056
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - uid: 14104
+ components:
+ - type: Transform
+ pos: 114.5,144.5
+ parent: 1
+ - uid: 14105
+ components:
+ - type: Transform
+ pos: 114.5,145.5
+ parent: 1
+ - uid: 14106
+ components:
+ - type: Transform
+ pos: 114.5,146.5
+ parent: 1
+ - uid: 14107
+ components:
+ - type: Transform
+ pos: 114.5,147.5
+ parent: 1
+ - uid: 14108
+ components:
+ - type: Transform
+ pos: 114.5,148.5
+ parent: 1
+ - uid: 14109
+ components:
+ - type: Transform
+ pos: 114.5,149.5
+ parent: 1
+ - uid: 14110
+ components:
+ - type: Transform
+ pos: 114.5,150.5
+ parent: 1
+ - uid: 14111
+ components:
+ - type: Transform
+ pos: 114.5,151.5
+ parent: 1
+ - uid: 14112
+ components:
+ - type: Transform
+ pos: 115.5,151.5
+ parent: 1
+ - uid: 14113
+ components:
+ - type: Transform
+ pos: 116.5,151.5
+ parent: 1
+ - uid: 14114
+ components:
+ - type: Transform
+ pos: 117.5,151.5
+ parent: 1
+ - uid: 14115
+ components:
+ - type: Transform
+ pos: 117.5,152.5
+ parent: 1
+ - uid: 14116
+ components:
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - uid: 14117
+ components:
+ - type: Transform
+ pos: 117.5,154.5
+ parent: 1
+ - uid: 14123
+ components:
+ - type: Transform
+ pos: 108.5,160.5
+ parent: 1
+ - uid: 14124
+ components:
+ - type: Transform
+ pos: 107.5,160.5
+ parent: 1
+ - uid: 14125
+ components:
+ - type: Transform
+ pos: 105.5,160.5
+ parent: 1
+ - uid: 14147
+ components:
+ - type: Transform
+ pos: 105.5,157.5
+ parent: 1
+ - uid: 14148
+ components:
+ - type: Transform
+ pos: 105.5,156.5
+ parent: 1
+ - uid: 14159
+ components:
+ - type: Transform
+ pos: 110.5,160.5
+ parent: 1
+ - uid: 14160
+ components:
+ - type: Transform
+ pos: 111.5,160.5
+ parent: 1
+ - uid: 14236
+ components:
+ - type: Transform
+ pos: 118.5,138.5
+ parent: 1
+ - uid: 14254
+ components:
+ - type: Transform
+ pos: 118.5,136.5
+ parent: 1
+ - uid: 14360
+ components:
+ - type: Transform
+ pos: 109.5,160.5
+ parent: 1
+ - uid: 14473
+ components:
+ - type: Transform
+ pos: 131.5,122.5
+ parent: 1
+ - uid: 14474
+ components:
+ - type: Transform
+ pos: 131.5,121.5
+ parent: 1
+ - uid: 14497
+ components:
+ - type: Transform
+ pos: 153.5,131.5
+ parent: 1
+ - uid: 14506
+ components:
+ - type: Transform
+ pos: 53.5,132.5
+ parent: 1
+ - uid: 14628
+ components:
+ - type: Transform
+ pos: 57.5,141.5
+ parent: 1
+ - uid: 14629
+ components:
+ - type: Transform
+ pos: 56.5,145.5
+ parent: 1
+ - uid: 14652
+ components:
+ - type: Transform
+ pos: 66.5,156.5
+ parent: 1
+ - uid: 14672
+ components:
+ - type: Transform
+ pos: 75.5,155.5
+ parent: 1
+ - uid: 14673
+ components:
+ - type: Transform
+ pos: 79.5,156.5
+ parent: 1
+ - uid: 14718
+ components:
+ - type: Transform
+ pos: 31.5,79.5
+ parent: 1
+ - uid: 14726
+ components:
+ - type: Transform
+ pos: 72.5,48.5
+ parent: 1
+ - uid: 14748
+ components:
+ - type: Transform
+ pos: 90.5,51.5
+ parent: 1
+ - uid: 14787
+ components:
+ - type: Transform
+ pos: 139.5,86.5
+ parent: 1
+ - uid: 14788
+ components:
+ - type: Transform
+ pos: 139.5,87.5
+ parent: 1
+ - uid: 14789
+ components:
+ - type: Transform
+ pos: 139.5,88.5
+ parent: 1
+ - uid: 14790
+ components:
+ - type: Transform
+ pos: 139.5,89.5
+ parent: 1
+ - uid: 14791
+ components:
+ - type: Transform
+ pos: 139.5,90.5
+ parent: 1
+ - uid: 14814
+ components:
+ - type: Transform
+ pos: 139.5,91.5
+ parent: 1
+ - uid: 14818
+ components:
+ - type: Transform
+ pos: 139.5,85.5
+ parent: 1
+ - uid: 14822
+ components:
+ - type: Transform
+ pos: 123.5,160.5
+ parent: 1
+ - uid: 14845
+ components:
+ - type: Transform
+ pos: 89.5,51.5
+ parent: 1
+ - uid: 15019
+ components:
+ - type: Transform
+ pos: 101.5,139.5
+ parent: 1
+ - uid: 15066
+ components:
+ - type: Transform
+ pos: 105.5,165.5
+ parent: 1
+ - uid: 15067
+ components:
+ - type: Transform
+ pos: 107.5,165.5
+ parent: 1
+ - uid: 15068
+ components:
+ - type: Transform
+ pos: 109.5,165.5
+ parent: 1
+ - uid: 15069
+ components:
+ - type: Transform
+ pos: 110.5,165.5
+ parent: 1
+ - uid: 15076
+ components:
+ - type: Transform
+ pos: 111.5,165.5
+ parent: 1
+ - uid: 15078
+ components:
+ - type: Transform
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 15079
+ components:
+ - type: Transform
+ pos: 90.5,169.5
+ parent: 1
+ - uid: 15081
+ components:
+ - type: Transform
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 15108
+ components:
+ - type: Transform
+ pos: 40.5,126.5
+ parent: 1
+ - uid: 15134
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 15135
+ components:
+ - type: Transform
+ pos: 132.5,142.5
+ parent: 1
+ - uid: 15136
+ components:
+ - type: Transform
+ pos: 131.5,142.5
+ parent: 1
+ - uid: 15137
+ components:
+ - type: Transform
+ pos: 130.5,142.5
+ parent: 1
+ - uid: 15144
+ components:
+ - type: Transform
+ pos: 48.5,122.5
+ parent: 1
+ - uid: 15324
+ components:
+ - type: Transform
+ pos: 135.5,139.5
+ parent: 1
+ - uid: 15332
+ components:
+ - type: Transform
+ pos: 72.5,49.5
+ parent: 1
+ - uid: 15704
+ components:
+ - type: Transform
+ pos: 162.5,122.5
+ parent: 1
+ - uid: 16024
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - uid: 16025
+ components:
+ - type: Transform
+ pos: 156.5,131.5
+ parent: 1
+ - uid: 16026
+ components:
+ - type: Transform
+ pos: 155.5,131.5
+ parent: 1
+ - uid: 16027
+ components:
+ - type: Transform
+ pos: 154.5,131.5
+ parent: 1
+ - uid: 16142
+ components:
+ - type: Transform
+ pos: 116.5,125.5
+ parent: 1
+ - uid: 16158
+ components:
+ - type: Transform
+ pos: 125.5,121.5
+ parent: 1
+ - uid: 16164
+ components:
+ - type: Transform
+ pos: 99.5,125.5
+ parent: 1
+ - uid: 16167
+ components:
+ - type: Transform
+ pos: 111.5,154.5
+ parent: 1
+ - uid: 16168
+ components:
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - uid: 16169
+ components:
+ - type: Transform
+ pos: 111.5,152.5
+ parent: 1
+ - uid: 16170
+ components:
+ - type: Transform
+ pos: 111.5,151.5
+ parent: 1
+ - uid: 16171
+ components:
+ - type: Transform
+ pos: 111.5,150.5
+ parent: 1
+ - uid: 16172
+ components:
+ - type: Transform
+ pos: 111.5,149.5
+ parent: 1
+ - uid: 16173
+ components:
+ - type: Transform
+ pos: 111.5,148.5
+ parent: 1
+ - uid: 16174
+ components:
+ - type: Transform
+ pos: 111.5,147.5
+ parent: 1
+ - uid: 16212
+ components:
+ - type: Transform
+ pos: 111.5,127.5
+ parent: 1
+ - uid: 16262
+ components:
+ - type: Transform
+ pos: 140.5,121.5
+ parent: 1
+ - uid: 16271
+ components:
+ - type: Transform
+ pos: 140.5,122.5
+ parent: 1
+ - uid: 16833
+ components:
+ - type: Transform
+ pos: 124.5,160.5
+ parent: 1
+ - uid: 16925
+ components:
+ - type: Transform
+ pos: 92.5,168.5
+ parent: 1
+ - uid: 16926
+ components:
+ - type: Transform
+ pos: 93.5,168.5
+ parent: 1
+ - uid: 16928
+ components:
+ - type: Transform
+ pos: 91.5,168.5
+ parent: 1
+ - uid: 16933
+ components:
+ - type: Transform
+ pos: 82.5,156.5
+ parent: 1
+ - uid: 16952
+ components:
+ - type: Transform
+ pos: 79.5,155.5
+ parent: 1
+ - uid: 17087
+ components:
+ - type: Transform
+ pos: 67.5,156.5
+ parent: 1
+ - uid: 17296
+ components:
+ - type: Transform
+ pos: 56.5,146.5
+ parent: 1
+ - uid: 17297
+ components:
+ - type: Transform
+ pos: 56.5,143.5
+ parent: 1
+ - uid: 17298
+ components:
+ - type: Transform
+ pos: 53.5,133.5
+ parent: 1
+ - uid: 17301
+ components:
+ - type: Transform
+ pos: 55.5,130.5
+ parent: 1
+ - uid: 17643
+ components:
+ - type: Transform
+ pos: 83.5,55.5
+ parent: 1
+ - uid: 17708
+ components:
+ - type: Transform
+ pos: 83.5,59.5
+ parent: 1
+ - uid: 17712
+ components:
+ - type: Transform
+ pos: 83.5,61.5
+ parent: 1
+ - uid: 18233
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 1
+ - uid: 18236
+ components:
+ - type: Transform
+ pos: 88.5,34.5
+ parent: 1
+ - uid: 18239
+ components:
+ - type: Transform
+ pos: 111.5,43.5
+ parent: 1
+ - uid: 18241
+ components:
+ - type: Transform
+ pos: 111.5,41.5
+ parent: 1
+ - uid: 18242
+ components:
+ - type: Transform
+ pos: 111.5,40.5
+ parent: 1
+ - uid: 18243
+ components:
+ - type: Transform
+ pos: 111.5,39.5
+ parent: 1
+ - uid: 18244
+ components:
+ - type: Transform
+ pos: 111.5,38.5
+ parent: 1
+ - uid: 18245
+ components:
+ - type: Transform
+ pos: 111.5,37.5
+ parent: 1
+ - uid: 18246
+ components:
+ - type: Transform
+ pos: 111.5,36.5
+ parent: 1
+ - uid: 18247
+ components:
+ - type: Transform
+ pos: 111.5,35.5
+ parent: 1
+ - uid: 18258
+ components:
+ - type: Transform
+ pos: 89.5,35.5
+ parent: 1
+ - uid: 18260
+ components:
+ - type: Transform
+ pos: 93.5,35.5
+ parent: 1
+ - uid: 18312
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 1
+ - uid: 18313
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 1
+ - uid: 18323
+ components:
+ - type: Transform
+ pos: 62.5,34.5
+ parent: 1
+ - uid: 18324
+ components:
+ - type: Transform
+ pos: 64.5,36.5
+ parent: 1
+ - uid: 18333
+ components:
+ - type: Transform
+ pos: 63.5,37.5
+ parent: 1
+ - uid: 18337
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+ - uid: 18344
+ components:
+ - type: Transform
+ pos: 63.5,41.5
+ parent: 1
+ - uid: 18352
+ components:
+ - type: Transform
+ pos: 131.5,85.5
+ parent: 1
+ - uid: 18380
+ components:
+ - type: Transform
+ pos: 139.5,92.5
+ parent: 1
+ - uid: 18416
+ components:
+ - type: Transform
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 18419
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 18420
+ components:
+ - type: Transform
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 18421
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 18422
+ components:
+ - type: Transform
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 18423
+ components:
+ - type: Transform
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 18476
+ components:
+ - type: Transform
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 18482
+ components:
+ - type: Transform
+ pos: 93.5,81.5
+ parent: 1
+ - uid: 18485
+ components:
+ - type: Transform
+ pos: 95.5,82.5
+ parent: 1
+ - uid: 18486
+ components:
+ - type: Transform
+ pos: 94.5,82.5
+ parent: 1
+ - uid: 18487
+ components:
+ - type: Transform
+ pos: 93.5,82.5
+ parent: 1
+ - uid: 18491
+ components:
+ - type: Transform
+ pos: 92.5,82.5
+ parent: 1
+ - uid: 18533
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - uid: 18534
+ components:
+ - type: Transform
+ pos: 127.5,96.5
+ parent: 1
+ - uid: 18545
+ components:
+ - type: Transform
+ pos: 90.5,168.5
+ parent: 1
+ - uid: 18551
+ components:
+ - type: Transform
+ pos: 67.5,159.5
+ parent: 1
+ - uid: 18560
+ components:
+ - type: Transform
+ pos: 65.5,156.5
+ parent: 1
+ - uid: 18620
+ components:
+ - type: Transform
+ pos: 46.5,126.5
+ parent: 1
+ - uid: 18623
+ components:
+ - type: Transform
+ pos: 48.5,125.5
+ parent: 1
+ - uid: 18693
+ components:
+ - type: Transform
+ pos: 19.5,115.5
+ parent: 1
+ - uid: 18702
+ components:
+ - type: Transform
+ pos: 20.5,115.5
+ parent: 1
+ - uid: 18703
+ components:
+ - type: Transform
+ pos: 20.5,116.5
+ parent: 1
+ - uid: 18706
+ components:
+ - type: Transform
+ pos: 28.5,79.5
+ parent: 1
+ - uid: 18735
+ components:
+ - type: Transform
+ pos: 36.5,80.5
+ parent: 1
+ - uid: 18742
+ components:
+ - type: Transform
+ pos: 98.5,36.5
+ parent: 1
+ - uid: 18743
+ components:
+ - type: Transform
+ pos: 93.5,36.5
+ parent: 1
+ - uid: 18770
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 18852
+ components:
+ - type: Transform
+ pos: 95.5,36.5
+ parent: 1
+ - uid: 18860
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 18861
+ components:
+ - type: Transform
+ pos: 96.5,36.5
+ parent: 1
+ - uid: 18902
+ components:
+ - type: Transform
+ pos: 75.5,156.5
+ parent: 1
+ - uid: 19233
+ components:
+ - type: Transform
+ pos: 88.5,31.5
+ parent: 1
+ - uid: 19512
+ components:
+ - type: Transform
+ pos: 135.5,141.5
+ parent: 1
+ - uid: 20939
+ components:
+ - type: Transform
+ pos: 83.5,58.5
+ parent: 1
+ - uid: 20995
+ components:
+ - type: Transform
+ pos: 83.5,60.5
+ parent: 1
+ - uid: 20997
+ components:
+ - type: Transform
+ pos: 83.5,62.5
+ parent: 1
+ - uid: 20999
+ components:
+ - type: Transform
+ pos: 83.5,63.5
+ parent: 1
+ - uid: 21139
+ components:
+ - type: Transform
+ pos: 147.5,99.5
+ parent: 1
+ - uid: 21381
+ components:
+ - type: Transform
+ pos: 146.5,99.5
+ parent: 1
+ - uid: 21758
+ components:
+ - type: Transform
+ pos: 113.5,127.5
+ parent: 1
+ - uid: 22396
+ components:
+ - type: Transform
+ pos: 144.5,77.5
+ parent: 1
+ - uid: 22397
+ components:
+ - type: Transform
+ pos: 145.5,77.5
+ parent: 1
+ - uid: 22463
+ components:
+ - type: Transform
+ pos: 119.5,72.5
+ parent: 1
+ - uid: 22644
+ components:
+ - type: Transform
+ pos: 88.5,51.5
+ parent: 1
+ - uid: 23100
+ components:
+ - type: Transform
+ pos: 83.5,56.5
+ parent: 1
+ - uid: 23275
+ components:
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - uid: 23390
+ components:
+ - type: Transform
+ pos: 98.5,172.5
+ parent: 1
+ - uid: 23392
+ components:
+ - type: Transform
+ pos: 53.5,136.5
+ parent: 1
+ - uid: 23393
+ components:
+ - type: Transform
+ pos: 110.5,44.5
+ parent: 1
+ - uid: 23400
+ components:
+ - type: Transform
+ pos: 124.5,92.5
+ parent: 1
+ - uid: 23467
+ components:
+ - type: Transform
+ pos: 98.5,170.5
+ parent: 1
+ - uid: 23471
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - uid: 23478
+ components:
+ - type: Transform
+ pos: 60.5,151.5
+ parent: 1
+ - uid: 23557
+ components:
+ - type: Transform
+ pos: 158.5,146.5
+ parent: 1
+ - uid: 23561
+ components:
+ - type: Transform
+ pos: 63.5,39.5
+ parent: 1
+ - uid: 23573
+ components:
+ - type: Transform
+ pos: 35.5,79.5
+ parent: 1
+ - uid: 23574
+ components:
+ - type: Transform
+ pos: 34.5,79.5
+ parent: 1
+ - uid: 23575
+ components:
+ - type: Transform
+ pos: 33.5,79.5
+ parent: 1
+ - uid: 23578
+ components:
+ - type: Transform
+ pos: 32.5,79.5
+ parent: 1
+ - uid: 23586
+ components:
+ - type: Transform
+ pos: 27.5,77.5
+ parent: 1
+ - uid: 23590
+ components:
+ - type: Transform
+ pos: 27.5,79.5
+ parent: 1
+ - uid: 23627
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 23629
+ components:
+ - type: Transform
+ pos: 40.5,122.5
+ parent: 1
+ - uid: 23631
+ components:
+ - type: Transform
+ pos: 36.5,122.5
+ parent: 1
+ - uid: 23663
+ components:
+ - type: Transform
+ pos: 156.5,146.5
+ parent: 1
+ - uid: 23670
+ components:
+ - type: Transform
+ pos: 91.5,172.5
+ parent: 1
+ - uid: 23671
+ components:
+ - type: Transform
+ pos: 90.5,170.5
+ parent: 1
+ - uid: 23672
+ components:
+ - type: Transform
+ pos: 95.5,172.5
+ parent: 1
+ - uid: 23689
+ components:
+ - type: Transform
+ pos: 108.5,165.5
+ parent: 1
+ - uid: 23692
+ components:
+ - type: Transform
+ pos: 122.5,164.5
+ parent: 1
+ - uid: 23699
+ components:
+ - type: Transform
+ pos: 80.5,156.5
+ parent: 1
+ - uid: 23700
+ components:
+ - type: Transform
+ pos: 77.5,155.5
+ parent: 1
+ - uid: 23717
+ components:
+ - type: Transform
+ pos: 57.5,146.5
+ parent: 1
+ - uid: 23718
+ components:
+ - type: Transform
+ pos: 56.5,144.5
+ parent: 1
+ - uid: 23719
+ components:
+ - type: Transform
+ pos: 57.5,140.5
+ parent: 1
+ - uid: 23720
+ components:
+ - type: Transform
+ pos: 53.5,130.5
+ parent: 1
+ - uid: 23723
+ components:
+ - type: Transform
+ pos: 56.5,130.5
+ parent: 1
+ - uid: 23724
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 23746
+ components:
+ - type: Transform
+ pos: 91.5,82.5
+ parent: 1
+ - uid: 23822
+ components:
+ - type: Transform
+ pos: 126.5,113.5
+ parent: 1
+ - uid: 24070
+ components:
+ - type: Transform
+ pos: 149.5,112.5
+ parent: 1
+ - uid: 24204
+ components:
+ - type: Transform
+ pos: 161.5,131.5
+ parent: 1
+ - uid: 24315
+ components:
+ - type: Transform
+ pos: 89.5,113.5
+ parent: 1
+ - uid: 24323
+ components:
+ - type: Transform
+ pos: 83.5,46.5
+ parent: 1
+ - uid: 24326
+ components:
+ - type: Transform
+ pos: 61.5,31.5
+ parent: 1
+ - uid: 24510
+ components:
+ - type: Transform
+ pos: 63.5,46.5
+ parent: 1
+ - uid: 24612
+ components:
+ - type: Transform
+ pos: 102.5,145.5
+ parent: 1
+ - uid: 24668
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 1
+ - uid: 24720
+ components:
+ - type: Transform
+ pos: 97.5,68.5
+ parent: 1
+ - uid: 24722
+ components:
+ - type: Transform
+ pos: 122.5,89.5
+ parent: 1
+ - uid: 24766
+ components:
+ - type: Transform
+ pos: 61.5,44.5
+ parent: 1
+ - uid: 24783
+ components:
+ - type: Transform
+ pos: 61.5,67.5
+ parent: 1
+ - uid: 25084
+ components:
+ - type: Transform
+ pos: 162.5,115.5
+ parent: 1
+ - uid: 25085
+ components:
+ - type: Transform
+ pos: 162.5,116.5
+ parent: 1
+ - uid: 25086
+ components:
+ - type: Transform
+ pos: 162.5,117.5
+ parent: 1
+ - uid: 25087
+ components:
+ - type: Transform
+ pos: 162.5,118.5
+ parent: 1
+ - uid: 25088
+ components:
+ - type: Transform
+ pos: 162.5,119.5
+ parent: 1
+ - uid: 25089
+ components:
+ - type: Transform
+ pos: 162.5,120.5
+ parent: 1
+ - uid: 25090
+ components:
+ - type: Transform
+ pos: 162.5,121.5
+ parent: 1
+ - uid: 25094
+ components:
+ - type: Transform
+ pos: 161.5,124.5
+ parent: 1
+ - uid: 25095
+ components:
+ - type: Transform
+ pos: 161.5,125.5
+ parent: 1
+ - uid: 25096
+ components:
+ - type: Transform
+ pos: 161.5,126.5
+ parent: 1
+ - uid: 25097
+ components:
+ - type: Transform
+ pos: 161.5,127.5
+ parent: 1
+ - uid: 25098
+ components:
+ - type: Transform
+ pos: 161.5,128.5
+ parent: 1
+ - uid: 25099
+ components:
+ - type: Transform
+ pos: 161.5,129.5
+ parent: 1
+ - uid: 25100
+ components:
+ - type: Transform
+ pos: 161.5,130.5
+ parent: 1
+ - uid: 25101
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 25102
+ components:
+ - type: Transform
+ pos: 159.5,130.5
+ parent: 1
+ - uid: 25103
+ components:
+ - type: Transform
+ pos: 158.5,130.5
+ parent: 1
+ - uid: 25104
+ components:
+ - type: Transform
+ pos: 157.5,130.5
+ parent: 1
+ - uid: 25110
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - uid: 25111
+ components:
+ - type: Transform
+ pos: 151.5,131.5
+ parent: 1
+ - uid: 25112
+ components:
+ - type: Transform
+ pos: 150.5,131.5
+ parent: 1
+ - uid: 25121
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - uid: 25122
+ components:
+ - type: Transform
+ pos: 159.5,145.5
+ parent: 1
+ - uid: 25133
+ components:
+ - type: Transform
+ pos: 151.5,145.5
+ parent: 1
+ - uid: 25134
+ components:
+ - type: Transform
+ pos: 150.5,145.5
+ parent: 1
+ - uid: 25135
+ components:
+ - type: Transform
+ pos: 149.5,145.5
+ parent: 1
+ - uid: 25136
+ components:
+ - type: Transform
+ pos: 149.5,144.5
+ parent: 1
+ - uid: 25137
+ components:
+ - type: Transform
+ pos: 149.5,143.5
+ parent: 1
+ - uid: 25138
+ components:
+ - type: Transform
+ pos: 149.5,142.5
+ parent: 1
+ - uid: 25139
+ components:
+ - type: Transform
+ pos: 149.5,141.5
+ parent: 1
+ - uid: 25152
+ components:
+ - type: Transform
+ pos: 142.5,114.5
+ parent: 1
+ - uid: 25165
+ components:
+ - type: Transform
+ pos: 110.5,130.5
+ parent: 1
+ - uid: 25188
+ components:
+ - type: Transform
+ pos: 27.5,76.5
+ parent: 1
+ - uid: 25206
+ components:
+ - type: Transform
+ pos: 147.5,78.5
+ parent: 1
+ - uid: 25210
+ components:
+ - type: Transform
+ pos: 135.5,86.5
+ parent: 1
+ - uid: 25211
+ components:
+ - type: Transform
+ pos: 133.5,86.5
+ parent: 1
+ - uid: 25218
+ components:
+ - type: Transform
+ pos: 137.5,85.5
+ parent: 1
+ - uid: 25251
+ components:
+ - type: Transform
+ pos: 106.5,130.5
+ parent: 1
+ - uid: 25254
+ components:
+ - type: Transform
+ pos: 115.5,139.5
+ parent: 1
+ - uid: 25255
+ components:
+ - type: Transform
+ pos: 115.5,135.5
+ parent: 1
+ - uid: 25281
+ components:
+ - type: Transform
+ pos: 155.5,146.5
+ parent: 1
+ - uid: 25282
+ components:
+ - type: Transform
+ pos: 157.5,146.5
+ parent: 1
+ - uid: 25299
+ components:
+ - type: Transform
+ pos: 90.5,35.5
+ parent: 1
+ - uid: 25306
+ components:
+ - type: Transform
+ pos: 88.5,35.5
+ parent: 1
+ - uid: 25308
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 25313
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 1
+ - uid: 25474
+ components:
+ - type: Transform
+ pos: 83.5,48.5
+ parent: 1
+ - uid: 25477
+ components:
+ - type: Transform
+ pos: 83.5,47.5
+ parent: 1
+ - uid: 25494
+ components:
+ - type: Transform
+ pos: 90.5,113.5
+ parent: 1
+ - uid: 25787
+ components:
+ - type: Transform
+ pos: 97.5,66.5
+ parent: 1
+ - uid: 25807
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - uid: 25846
+ components:
+ - type: Transform
+ pos: 94.5,56.5
+ parent: 1
+ - uid: 25869
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 1
+ - uid: 25926
+ components:
+ - type: Transform
+ pos: 102.5,146.5
+ parent: 1
+ - uid: 26194
+ components:
+ - type: Transform
+ pos: 99.5,87.5
+ parent: 1
+ - uid: 26195
+ components:
+ - type: Transform
+ pos: 100.5,87.5
+ parent: 1
+ - uid: 26196
+ components:
+ - type: Transform
+ pos: 101.5,87.5
+ parent: 1
+ - uid: 26197
+ components:
+ - type: Transform
+ pos: 102.5,87.5
+ parent: 1
+ - uid: 26198
+ components:
+ - type: Transform
+ pos: 103.5,87.5
+ parent: 1
+ - uid: 26199
+ components:
+ - type: Transform
+ pos: 104.5,87.5
+ parent: 1
+ - uid: 26200
+ components:
+ - type: Transform
+ pos: 105.5,87.5
+ parent: 1
+ - uid: 26201
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 1
+ - uid: 26202
+ components:
+ - type: Transform
+ pos: 107.5,87.5
+ parent: 1
+ - uid: 26203
+ components:
+ - type: Transform
+ pos: 108.5,87.5
+ parent: 1
+ - uid: 26204
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 1
+ - uid: 26205
+ components:
+ - type: Transform
+ pos: 110.5,87.5
+ parent: 1
+ - uid: 26206
+ components:
+ - type: Transform
+ pos: 111.5,87.5
+ parent: 1
+ - uid: 26207
+ components:
+ - type: Transform
+ pos: 112.5,87.5
+ parent: 1
+ - uid: 26208
+ components:
+ - type: Transform
+ pos: 113.5,87.5
+ parent: 1
+ - uid: 26226
+ components:
+ - type: Transform
+ pos: 91.5,53.5
+ parent: 1
+ - uid: 26350
+ components:
+ - type: Transform
+ pos: 137.5,125.5
+ parent: 1
+ - uid: 26408
+ components:
+ - type: Transform
+ pos: 137.5,126.5
+ parent: 1
+ - uid: 26449
+ components:
+ - type: Transform
+ pos: 137.5,123.5
+ parent: 1
+ - uid: 26479
+ components:
+ - type: Transform
+ pos: 124.5,112.5
+ parent: 1
+ - uid: 26495
+ components:
+ - type: Transform
+ pos: 63.5,67.5
+ parent: 1
+ - uid: 26529
+ components:
+ - type: Transform
+ pos: 126.5,96.5
+ parent: 1
+ - uid: 26581
+ components:
+ - type: Transform
+ pos: 63.5,34.5
+ parent: 1
+ - uid: 26808
+ components:
+ - type: Transform
+ pos: 102.5,144.5
+ parent: 1
+ - uid: 26877
+ components:
+ - type: Transform
+ pos: 100.5,149.5
+ parent: 1
+ - uid: 26923
+ components:
+ - type: Transform
+ pos: 99.5,153.5
+ parent: 1
+ - uid: 26981
+ components:
+ - type: Transform
+ pos: 99.5,151.5
+ parent: 1
+ - uid: 27254
+ components:
+ - type: Transform
+ pos: 83.5,51.5
+ parent: 1
+ - uid: 27262
+ components:
+ - type: Transform
+ pos: 84.5,51.5
+ parent: 1
+ - uid: 27502
+ components:
+ - type: Transform
+ pos: 63.5,31.5
+ parent: 1
+ - uid: 28136
+ components:
+ - type: Transform
+ pos: 112.5,127.5
+ parent: 1
+ - uid: 28337
+ components:
+ - type: Transform
+ pos: 74.5,156.5
+ parent: 1
+ - uid: 28341
+ components:
+ - type: Transform
+ pos: 27.5,78.5
+ parent: 1
+ - uid: 28519
+ components:
+ - type: Transform
+ pos: 124.5,111.5
+ parent: 1
+ - uid: 28567
+ components:
+ - type: Transform
+ pos: 145.5,114.5
+ parent: 1
+ - uid: 29074
+ components:
+ - type: Transform
+ pos: 101.5,149.5
+ parent: 1
+ - uid: 29181
+ components:
+ - type: Transform
+ pos: 52.5,119.5
+ parent: 1
+ - uid: 29337
+ components:
+ - type: Transform
+ pos: 62.5,31.5
+ parent: 1
+ - uid: 29515
+ components:
+ - type: Transform
+ pos: 54.5,130.5
+ parent: 1
+ - uid: 29831
+ components:
+ - type: Transform
+ pos: 148.5,145.5
+ parent: 1
+ - uid: 29850
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - uid: 30098
+ components:
+ - type: Transform
+ pos: 127.5,120.5
+ parent: 1
+ - uid: 30185
+ components:
+ - type: Transform
+ pos: 148.5,99.5
+ parent: 1
+ - uid: 30204
+ components:
+ - type: Transform
+ pos: 147.5,145.5
+ parent: 1
+ - uid: 30219
+ components:
+ - type: Transform
+ pos: 48.5,119.5
+ parent: 1
+ - uid: 30221
+ components:
+ - type: Transform
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 30318
+ components:
+ - type: Transform
+ pos: 124.5,93.5
+ parent: 1
+ - uid: 30319
+ components:
+ - type: Transform
+ pos: 106.5,35.5
+ parent: 1
+ - uid: 30321
+ components:
+ - type: Transform
+ pos: 140.5,92.5
+ parent: 1
+ - uid: 30322
+ components:
+ - type: Transform
+ pos: 140.5,93.5
+ parent: 1
+ - uid: 30323
+ components:
+ - type: Transform
+ pos: 140.5,94.5
+ parent: 1
+ - uid: 30324
+ components:
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - uid: 30325
+ components:
+ - type: Transform
+ pos: 140.5,96.5
+ parent: 1
+ - uid: 30326
+ components:
+ - type: Transform
+ pos: 140.5,97.5
+ parent: 1
+ - uid: 30327
+ components:
+ - type: Transform
+ pos: 140.5,98.5
+ parent: 1
+ - uid: 30337
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 30338
+ components:
+ - type: Transform
+ pos: 149.5,100.5
+ parent: 1
+ - uid: 30339
+ components:
+ - type: Transform
+ pos: 149.5,101.5
+ parent: 1
+ - uid: 30340
+ components:
+ - type: Transform
+ pos: 149.5,102.5
+ parent: 1
+ - uid: 30341
+ components:
+ - type: Transform
+ pos: 149.5,103.5
+ parent: 1
+ - uid: 30342
+ components:
+ - type: Transform
+ pos: 149.5,104.5
+ parent: 1
+ - uid: 30343
+ components:
+ - type: Transform
+ pos: 149.5,105.5
+ parent: 1
+ - uid: 30344
+ components:
+ - type: Transform
+ pos: 149.5,107.5
+ parent: 1
+ - uid: 30345
+ components:
+ - type: Transform
+ pos: 149.5,108.5
+ parent: 1
+ - uid: 30346
+ components:
+ - type: Transform
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 30347
+ components:
+ - type: Transform
+ pos: 149.5,110.5
+ parent: 1
+ - uid: 30348
+ components:
+ - type: Transform
+ pos: 149.5,111.5
+ parent: 1
+ - uid: 30350
+ components:
+ - type: Transform
+ pos: 149.5,106.5
+ parent: 1
+ - uid: 30359
+ components:
+ - type: Transform
+ pos: 57.5,136.5
+ parent: 1
+ - uid: 30364
+ components:
+ - type: Transform
+ pos: 162.5,113.5
+ parent: 1
+ - uid: 30365
+ components:
+ - type: Transform
+ pos: 162.5,114.5
+ parent: 1
+ - uid: 30368
+ components:
+ - type: Transform
+ pos: 148.5,114.5
+ parent: 1
+ - uid: 30399
+ components:
+ - type: Transform
+ pos: 83.5,45.5
+ parent: 1
+ - uid: 30445
+ components:
+ - type: Transform
+ pos: 21.5,100.5
+ parent: 1
+ - uid: 30449
+ components:
+ - type: Transform
+ pos: 87.5,31.5
+ parent: 1
+ - uid: 30515
+ components:
+ - type: Transform
+ pos: 52.5,120.5
+ parent: 1
+ - uid: 30544
+ components:
+ - type: Transform
+ pos: 161.5,113.5
+ parent: 1
+ - uid: 30546
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - uid: 30547
+ components:
+ - type: Transform
+ pos: 20.5,100.5
+ parent: 1
+ - uid: 30601
+ components:
+ - type: Transform
+ pos: 66.5,36.5
+ parent: 1
+ - uid: 30615
+ components:
+ - type: Transform
+ pos: 33.5,121.5
+ parent: 1
+ - uid: 30634
+ components:
+ - type: Transform
+ pos: 65.5,36.5
+ parent: 1
+ - uid: 30659
+ components:
+ - type: Transform
+ pos: 33.5,120.5
+ parent: 1
+ - uid: 30689
+ components:
+ - type: Transform
+ pos: 30.5,79.5
+ parent: 1
+ - uid: 30777
+ components:
+ - type: Transform
+ pos: 91.5,52.5
+ parent: 1
+ - uid: 30875
+ components:
+ - type: Transform
+ pos: 52.5,139.5
+ parent: 1
+ - uid: 30876
+ components:
+ - type: Transform
+ pos: 53.5,139.5
+ parent: 1
+ - uid: 31282
+ components:
+ - type: Transform
+ pos: 29.5,47.5
+ parent: 1
+ - uid: 31829
+ components:
+ - type: Transform
+ pos: 19.5,100.5
+ parent: 1
+ - uid: 31860
+ components:
+ - type: Transform
+ pos: 109.5,54.5
+ parent: 1
+ - uid: 31871
+ components:
+ - type: Transform
+ pos: 126.5,120.5
+ parent: 1
+ - uid: 31975
+ components:
+ - type: Transform
+ pos: 140.5,128.5
+ parent: 1
+ - uid: 31976
+ components:
+ - type: Transform
+ pos: 141.5,127.5
+ parent: 1
+ - uid: 31979
+ components:
+ - type: Transform
+ pos: 157.5,114.5
+ parent: 1
+ - uid: 32125
+ components:
+ - type: Transform
+ pos: 27.5,74.5
+ parent: 1
+ - uid: 32228
+ components:
+ - type: Transform
+ pos: 69.5,162.5
+ parent: 1
+ - uid: 32269
+ components:
+ - type: Transform
+ pos: 56.5,42.5
+ parent: 1
+ - uid: 32280
+ components:
+ - type: Transform
+ pos: 62.5,46.5
+ parent: 1
+ - uid: 32309
+ components:
+ - type: Transform
+ pos: 71.5,159.5
+ parent: 1
+ - uid: 32358
+ components:
+ - type: Transform
+ pos: 29.5,79.5
+ parent: 1
+ - uid: 32370
+ components:
+ - type: Transform
+ pos: 53.5,134.5
+ parent: 1
+ - uid: 32371
+ components:
+ - type: Transform
+ pos: 53.5,135.5
+ parent: 1
+ - uid: 32372
+ components:
+ - type: Transform
+ pos: 56.5,136.5
+ parent: 1
+ - uid: 32373
+ components:
+ - type: Transform
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 32582
+ components:
+ - type: Transform
+ pos: 70.5,160.5
+ parent: 1
+ - uid: 32936
+ components:
+ - type: Transform
+ pos: 140.5,123.5
+ parent: 1
+ - uid: 32937
+ components:
+ - type: Transform
+ pos: 159.5,113.5
+ parent: 1
+ - uid: 32943
+ components:
+ - type: Transform
+ pos: 144.5,99.5
+ parent: 1
+ - uid: 32950
+ components:
+ - type: Transform
+ pos: 143.5,99.5
+ parent: 1
+ - uid: 32953
+ components:
+ - type: Transform
+ pos: 142.5,99.5
+ parent: 1
+ - uid: 33764
+ components:
+ - type: Transform
+ pos: 68.5,17.5
+ parent: 1
+ - uid: 33765
+ components:
+ - type: Transform
+ pos: 69.5,17.5
+ parent: 1
+ - uid: 33766
+ components:
+ - type: Transform
+ pos: 70.5,17.5
+ parent: 1
+ - uid: 33767
+ components:
+ - type: Transform
+ pos: 71.5,17.5
+ parent: 1
+ - uid: 33768
+ components:
+ - type: Transform
+ pos: 72.5,17.5
+ parent: 1
+ - uid: 33769
+ components:
+ - type: Transform
+ pos: 73.5,17.5
+ parent: 1
+ - uid: 33770
+ components:
+ - type: Transform
+ pos: 75.5,17.5
+ parent: 1
+ - uid: 33771
+ components:
+ - type: Transform
+ pos: 74.5,17.5
+ parent: 1
+ - uid: 33772
+ components:
+ - type: Transform
+ pos: 76.5,17.5
+ parent: 1
+ - uid: 33773
+ components:
+ - type: Transform
+ pos: 77.5,17.5
+ parent: 1
+ - uid: 33774
+ components:
+ - type: Transform
+ pos: 78.5,17.5
+ parent: 1
+ - uid: 33775
+ components:
+ - type: Transform
+ pos: 79.5,17.5
+ parent: 1
+ - uid: 33776
+ components:
+ - type: Transform
+ pos: 80.5,17.5
+ parent: 1
+ - uid: 33777
+ components:
+ - type: Transform
+ pos: 81.5,17.5
+ parent: 1
+ - uid: 33778
+ components:
+ - type: Transform
+ pos: 83.5,17.5
+ parent: 1
+ - uid: 33779
+ components:
+ - type: Transform
+ pos: 82.5,17.5
+ parent: 1
+ - uid: 33793
+ components:
+ - type: Transform
+ pos: 107.5,35.5
+ parent: 1
+ - uid: 33794
+ components:
+ - type: Transform
+ pos: 110.5,35.5
+ parent: 1
+ - uid: 33795
+ components:
+ - type: Transform
+ pos: 108.5,35.5
+ parent: 1
+ - uid: 33796
+ components:
+ - type: Transform
+ pos: 109.5,35.5
+ parent: 1
+ - uid: 33797
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 33902
+ components:
+ - type: Transform
+ pos: 88.5,41.5
+ parent: 1
+ - uid: 33904
+ components:
+ - type: Transform
+ pos: 102.5,147.5
+ parent: 1
+ - uid: 33914
+ components:
+ - type: Transform
+ pos: 60.5,42.5
+ parent: 1
+ - uid: 33915
+ components:
+ - type: Transform
+ pos: 59.5,42.5
+ parent: 1
+ - uid: 33930
+ components:
+ - type: Transform
+ pos: 58.5,42.5
+ parent: 1
+ - uid: 33932
+ components:
+ - type: Transform
+ pos: 62.5,42.5
+ parent: 1
+ - uid: 34028
+ components:
+ - type: Transform
+ pos: 62.5,67.5
+ parent: 1
+ - uid: 34074
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 34076
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 34077
+ components:
+ - type: Transform
+ pos: 99.5,36.5
+ parent: 1
+ - uid: 34078
+ components:
+ - type: Transform
+ pos: 101.5,35.5
+ parent: 1
+ - uid: 34081
+ components:
+ - type: Transform
+ pos: 100.5,35.5
+ parent: 1
+ - uid: 34096
+ components:
+ - type: Transform
+ pos: 136.5,127.5
+ parent: 1
+ - uid: 34097
+ components:
+ - type: Transform
+ pos: 131.5,127.5
+ parent: 1
+ - uid: 34098
+ components:
+ - type: Transform
+ pos: 134.5,127.5
+ parent: 1
+ - uid: 34100
+ components:
+ - type: Transform
+ pos: 132.5,127.5
+ parent: 1
+ - uid: 34101
+ components:
+ - type: Transform
+ pos: 133.5,127.5
+ parent: 1
+ - uid: 34104
+ components:
+ - type: Transform
+ pos: 157.5,115.5
+ parent: 1
+ - uid: 34438
+ components:
+ - type: Transform
+ pos: 68.5,162.5
+ parent: 1
+ - uid: 34439
+ components:
+ - type: Transform
+ pos: 71.5,160.5
+ parent: 1
+ - uid: 34629
+ components:
+ - type: Transform
+ pos: 141.5,125.5
+ parent: 1
+ - uid: 34654
+ components:
+ - type: Transform
+ pos: 139.5,128.5
+ parent: 1
+ - uid: 34655
+ components:
+ - type: Transform
+ pos: 139.5,129.5
+ parent: 1
+ - uid: 34656
+ components:
+ - type: Transform
+ pos: 139.5,130.5
+ parent: 1
+ - uid: 34966
+ components:
+ - type: Transform
+ pos: 163.5,138.5
+ parent: 1
+ - uid: 35071
+ components:
+ - type: Transform
+ pos: 124.5,89.5
+ parent: 1
+ - uid: 35073
+ components:
+ - type: Transform
+ pos: 124.5,90.5
+ parent: 1
+ - uid: 35431
+ components:
+ - type: Transform
+ pos: 110.5,45.5
+ parent: 1
+ - uid: 35445
+ components:
+ - type: Transform
+ pos: 110.5,46.5
+ parent: 1
+ - uid: 35446
+ components:
+ - type: Transform
+ pos: 110.5,50.5
+ parent: 1
+ - uid: 35496
+ components:
+ - type: Transform
+ pos: 110.5,49.5
+ parent: 1
+ - uid: 35518
+ components:
+ - type: Transform
+ pos: 52.5,121.5
+ parent: 1
+ - uid: 35519
+ components:
+ - type: Transform
+ pos: 52.5,122.5
+ parent: 1
+ - uid: 35520
+ components:
+ - type: Transform
+ pos: 52.5,123.5
+ parent: 1
+ - uid: 35522
+ components:
+ - type: Transform
+ pos: 52.5,124.5
+ parent: 1
+ - uid: 35523
+ components:
+ - type: Transform
+ pos: 52.5,125.5
+ parent: 1
+ - uid: 35524
+ components:
+ - type: Transform
+ pos: 54.5,126.5
+ parent: 1
+ - uid: 35525
+ components:
+ - type: Transform
+ pos: 52.5,126.5
+ parent: 1
+ - uid: 35526
+ components:
+ - type: Transform
+ pos: 55.5,126.5
+ parent: 1
+ - uid: 35527
+ components:
+ - type: Transform
+ pos: 56.5,126.5
+ parent: 1
+ - uid: 35528
+ components:
+ - type: Transform
+ pos: 57.5,126.5
+ parent: 1
+ - uid: 35529
+ components:
+ - type: Transform
+ pos: 58.5,126.5
+ parent: 1
+ - uid: 35530
+ components:
+ - type: Transform
+ pos: 59.5,126.5
+ parent: 1
+ - uid: 35539
+ components:
+ - type: Transform
+ pos: 53.5,126.5
+ parent: 1
+ - uid: 35572
+ components:
+ - type: Transform
+ pos: 135.5,140.5
+ parent: 1
+ - uid: 35661
+ components:
+ - type: Transform
+ pos: 110.5,47.5
+ parent: 1
+ - uid: 35685
+ components:
+ - type: Transform
+ pos: 67.5,160.5
+ parent: 1
+ - uid: 35690
+ components:
+ - type: Transform
+ pos: 69.5,160.5
+ parent: 1
+ - uid: 35691
+ components:
+ - type: Transform
+ pos: 67.5,162.5
+ parent: 1
+ - uid: 35692
+ components:
+ - type: Transform
+ pos: 67.5,161.5
+ parent: 1
+ - uid: 35751
+ components:
+ - type: Transform
+ pos: 110.5,48.5
+ parent: 1
+ - uid: 35857
+ components:
+ - type: Transform
+ pos: 69.5,161.5
+ parent: 1
+ - uid: 35921
+ components:
+ - type: Transform
+ pos: 160.5,113.5
+ parent: 1
+ - uid: 36009
+ components:
+ - type: Transform
+ pos: 104.5,35.5
+ parent: 1
+ - uid: 36010
+ components:
+ - type: Transform
+ pos: 103.5,35.5
+ parent: 1
+ - uid: 36023
+ components:
+ - type: Transform
+ pos: 102.5,35.5
+ parent: 1
+ - uid: 36029
+ components:
+ - type: Transform
+ pos: 145.5,99.5
+ parent: 1
+ - uid: 36040
+ components:
+ - type: Transform
+ pos: 99.5,35.5
+ parent: 1
+ - uid: 36322
+ components:
+ - type: Transform
+ pos: 32.5,97.5
+ parent: 1
+ - uid: 36323
+ components:
+ - type: Transform
+ pos: 33.5,97.5
+ parent: 1
+ - uid: 36324
+ components:
+ - type: Transform
+ pos: 31.5,97.5
+ parent: 1
+ - uid: 36325
+ components:
+ - type: Transform
+ pos: 30.5,97.5
+ parent: 1
+ - uid: 36326
+ components:
+ - type: Transform
+ pos: 29.5,97.5
+ parent: 1
+ - uid: 36327
+ components:
+ - type: Transform
+ pos: 28.5,97.5
+ parent: 1
+ - uid: 36328
+ components:
+ - type: Transform
+ pos: 27.5,97.5
+ parent: 1
+ - uid: 36329
+ components:
+ - type: Transform
+ pos: 26.5,97.5
+ parent: 1
+ - uid: 36330
+ components:
+ - type: Transform
+ pos: 25.5,97.5
+ parent: 1
+ - uid: 36394
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - uid: 36400
+ components:
+ - type: Transform
+ pos: 140.5,124.5
+ parent: 1
+ - uid: 36404
+ components:
+ - type: Transform
+ pos: 148.5,131.5
+ parent: 1
+ - uid: 36405
+ components:
+ - type: Transform
+ pos: 147.5,131.5
+ parent: 1
+ - uid: 36406
+ components:
+ - type: Transform
+ pos: 146.5,131.5
+ parent: 1
+ - uid: 36419
+ components:
+ - type: Transform
+ pos: 145.5,131.5
+ parent: 1
+ - uid: 36437
+ components:
+ - type: Transform
+ pos: 144.5,131.5
+ parent: 1
+ - uid: 36438
+ components:
+ - type: Transform
+ pos: 143.5,131.5
+ parent: 1
+ - uid: 36439
+ components:
+ - type: Transform
+ pos: 142.5,131.5
+ parent: 1
+ - uid: 36440
+ components:
+ - type: Transform
+ pos: 141.5,131.5
+ parent: 1
+ - uid: 36441
+ components:
+ - type: Transform
+ pos: 140.5,131.5
+ parent: 1
+ - uid: 36829
+ components:
+ - type: Transform
+ pos: 99.5,88.5
+ parent: 1
+ - uid: 36830
+ components:
+ - type: Transform
+ pos: 95.5,87.5
+ parent: 1
+ - uid: 36949
+ components:
+ - type: Transform
+ pos: 85.5,139.5
+ parent: 1
+ - uid: 36950
+ components:
+ - type: Transform
+ pos: 86.5,139.5
+ parent: 1
+ - uid: 36951
+ components:
+ - type: Transform
+ pos: 87.5,139.5
+ parent: 1
+ - uid: 36952
+ components:
+ - type: Transform
+ pos: 88.5,139.5
+ parent: 1
+ - uid: 37042
+ components:
+ - type: Transform
+ pos: 64.5,156.5
+ parent: 1
+ - uid: 37045
+ components:
+ - type: Transform
+ pos: 63.5,157.5
+ parent: 1
+ - uid: 37073
+ components:
+ - type: Transform
+ pos: 162.5,131.5
+ parent: 1
+ - uid: 37074
+ components:
+ - type: Transform
+ pos: 163.5,131.5
+ parent: 1
+ - uid: 37075
+ components:
+ - type: Transform
+ pos: 164.5,131.5
+ parent: 1
+ - uid: 37076
+ components:
+ - type: Transform
+ pos: 165.5,131.5
+ parent: 1
+ - uid: 37077
+ components:
+ - type: Transform
+ pos: 165.5,132.5
+ parent: 1
+ - uid: 37078
+ components:
+ - type: Transform
+ pos: 165.5,133.5
+ parent: 1
+ - uid: 37079
+ components:
+ - type: Transform
+ pos: 165.5,134.5
+ parent: 1
+ - uid: 37080
+ components:
+ - type: Transform
+ pos: 165.5,135.5
+ parent: 1
+ - uid: 37081
+ components:
+ - type: Transform
+ pos: 165.5,136.5
+ parent: 1
+ - uid: 37082
+ components:
+ - type: Transform
+ pos: 164.5,136.5
+ parent: 1
+ - uid: 37083
+ components:
+ - type: Transform
+ pos: 164.5,137.5
+ parent: 1
+ - uid: 37084
+ components:
+ - type: Transform
+ pos: 164.5,138.5
+ parent: 1
+ - uid: 37085
+ components:
+ - type: Transform
+ pos: 164.5,139.5
+ parent: 1
+ - uid: 37086
+ components:
+ - type: Transform
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 37087
+ components:
+ - type: Transform
+ pos: 164.5,141.5
+ parent: 1
+ - uid: 37088
+ components:
+ - type: Transform
+ pos: 164.5,142.5
+ parent: 1
+ - uid: 37089
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - uid: 37090
+ components:
+ - type: Transform
+ pos: 163.5,143.5
+ parent: 1
+ - uid: 37157
+ components:
+ - type: Transform
+ pos: 162.5,123.5
+ parent: 1
+ - uid: 37169
+ components:
+ - type: Transform
+ pos: 154.5,146.5
+ parent: 1
+ - uid: 37170
+ components:
+ - type: Transform
+ pos: 153.5,146.5
+ parent: 1
+ - uid: 37171
+ components:
+ - type: Transform
+ pos: 152.5,146.5
+ parent: 1
+ - uid: 37172
+ components:
+ - type: Transform
+ pos: 151.5,146.5
+ parent: 1
+ - uid: 37206
+ components:
+ - type: Transform
+ pos: 135.5,85.5
+ parent: 1
+ - uid: 37207
+ components:
+ - type: Transform
+ pos: 136.5,85.5
+ parent: 1
+ - uid: 37216
+ components:
+ - type: Transform
+ pos: 138.5,85.5
+ parent: 1
+ - uid: 37272
+ components:
+ - type: Transform
+ pos: 98.5,136.5
+ parent: 1
+ - uid: 37273
+ components:
+ - type: Transform
+ pos: 98.5,138.5
+ parent: 1
+ - uid: 37274
+ components:
+ - type: Transform
+ pos: 108.5,144.5
+ parent: 1
+ - uid: 37275
+ components:
+ - type: Transform
+ pos: 109.5,144.5
+ parent: 1
+ - uid: 37276
+ components:
+ - type: Transform
+ pos: 110.5,144.5
+ parent: 1
+ - uid: 37282
+ components:
+ - type: Transform
+ pos: 102.5,130.5
+ parent: 1
+ - uid: 37283
+ components:
+ - type: Transform
+ pos: 101.5,130.5
+ parent: 1
+ - uid: 37284
+ components:
+ - type: Transform
+ pos: 100.5,130.5
+ parent: 1
+ - uid: 37285
+ components:
+ - type: Transform
+ pos: 99.5,130.5
+ parent: 1
+ - uid: 37286
+ components:
+ - type: Transform
+ pos: 98.5,130.5
+ parent: 1
+ - uid: 37287
+ components:
+ - type: Transform
+ pos: 97.5,130.5
+ parent: 1
+ - uid: 37288
+ components:
+ - type: Transform
+ pos: 96.5,130.5
+ parent: 1
+ - uid: 37289
+ components:
+ - type: Transform
+ pos: 95.5,130.5
+ parent: 1
+ - uid: 37428
+ components:
+ - type: Transform
+ pos: 83.5,43.5
+ parent: 1
+ - uid: 37429
+ components:
+ - type: Transform
+ pos: 83.5,44.5
+ parent: 1
+ - uid: 37563
+ components:
+ - type: Transform
+ pos: 107.5,127.5
+ parent: 1
+ - uid: 37566
+ components:
+ - type: Transform
+ pos: 106.5,127.5
+ parent: 1
+ - uid: 37567
+ components:
+ - type: Transform
+ pos: 105.5,127.5
+ parent: 1
+ - uid: 37568
+ components:
+ - type: Transform
+ pos: 104.5,127.5
+ parent: 1
+ - uid: 37569
+ components:
+ - type: Transform
+ pos: 103.5,127.5
+ parent: 1
+- proto: CableMV
+ entities:
+ - uid: 32
+ components:
+ - type: Transform
+ pos: 42.5,112.5
+ parent: 1
+ - uid: 33
+ components:
+ - type: Transform
+ pos: 70.5,60.5
+ parent: 1
+ - uid: 38
+ components:
+ - type: Transform
+ pos: 149.5,139.5
+ parent: 1
+ - uid: 39
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - uid: 40
+ components:
+ - type: Transform
+ pos: 60.5,127.5
+ parent: 1
+ - uid: 41
+ components:
+ - type: Transform
+ pos: 60.5,126.5
+ parent: 1
+ - uid: 42
+ components:
+ - type: Transform
+ pos: 61.5,126.5
+ parent: 1
+ - uid: 44
+ components:
+ - type: Transform
+ pos: 62.5,121.5
+ parent: 1
+ - uid: 47
+ components:
+ - type: Transform
+ pos: 61.5,123.5
+ parent: 1
+ - uid: 48
+ components:
+ - type: Transform
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 49
+ components:
+ - type: Transform
+ pos: 68.5,121.5
+ parent: 1
+ - uid: 50
+ components:
+ - type: Transform
+ pos: 67.5,121.5
+ parent: 1
+ - uid: 51
+ components:
+ - type: Transform
+ pos: 66.5,121.5
+ parent: 1
+ - uid: 52
+ components:
+ - type: Transform
+ pos: 65.5,121.5
+ parent: 1
+ - uid: 57
+ components:
+ - type: Transform
+ pos: 63.5,121.5
+ parent: 1
+ - uid: 58
+ components:
+ - type: Transform
+ pos: 64.5,121.5
+ parent: 1
+ - uid: 75
+ components:
+ - type: Transform
+ pos: 67.5,158.5
+ parent: 1
+ - uid: 77
+ components:
+ - type: Transform
+ pos: 72.5,158.5
+ parent: 1
+ - uid: 84
+ components:
+ - type: Transform
+ pos: 61.5,122.5
+ parent: 1
+ - uid: 86
+ components:
+ - type: Transform
+ pos: 61.5,125.5
+ parent: 1
+ - uid: 87
+ components:
+ - type: Transform
+ pos: 61.5,124.5
+ parent: 1
+ - uid: 134
+ components:
+ - type: Transform
+ pos: 46.5,45.5
+ parent: 1
+ - uid: 141
+ components:
+ - type: Transform
+ pos: 129.5,113.5
+ parent: 1
+ - uid: 162
+ components:
+ - type: Transform
+ pos: 72.5,157.5
+ parent: 1
+ - uid: 174
+ components:
+ - type: Transform
+ pos: 71.5,158.5
+ parent: 1
+ - uid: 278
+ components:
+ - type: Transform
+ pos: 67.5,42.5
+ parent: 1
+ - uid: 377
+ components:
+ - type: Transform
+ pos: 126.5,90.5
+ parent: 1
+ - uid: 424
+ components:
+ - type: Transform
+ pos: 127.5,90.5
+ parent: 1
+ - uid: 448
+ components:
+ - type: Transform
+ pos: 128.5,90.5
+ parent: 1
+ - uid: 460
+ components:
+ - type: Transform
+ pos: 136.5,96.5
+ parent: 1
+ - uid: 548
+ components:
+ - type: Transform
+ pos: 149.5,141.5
+ parent: 1
+ - uid: 707
+ components:
+ - type: Transform
+ pos: 47.5,25.5
+ parent: 1
+ - uid: 1019
+ components:
+ - type: Transform
+ pos: 86.5,61.5
+ parent: 1
+ - uid: 1020
+ components:
+ - type: Transform
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 1124
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 1
+ - uid: 1145
+ components:
+ - type: Transform
+ pos: 44.5,90.5
+ parent: 1
+ - uid: 1222
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - uid: 1277
+ components:
+ - type: Transform
+ pos: 60.5,60.5
+ parent: 1
+ - uid: 1327
+ components:
+ - type: Transform
+ pos: 41.5,126.5
+ parent: 1
+ - uid: 1357
+ components:
+ - type: Transform
+ pos: 55.5,43.5
+ parent: 1
+ - uid: 1359
+ components:
+ - type: Transform
+ pos: 70.5,42.5
+ parent: 1
+ - uid: 1415
+ components:
+ - type: Transform
+ pos: 143.5,114.5
+ parent: 1
+ - uid: 1426
+ components:
+ - type: Transform
+ pos: 86.5,80.5
+ parent: 1
+ - uid: 1560
+ components:
+ - type: Transform
+ pos: 90.5,34.5
+ parent: 1
+ - uid: 1590
+ components:
+ - type: Transform
+ pos: 61.5,83.5
+ parent: 1
+ - uid: 1599
+ components:
+ - type: Transform
+ pos: 54.5,117.5
+ parent: 1
+ - uid: 1708
+ components:
+ - type: Transform
+ pos: 144.5,95.5
+ parent: 1
+ - uid: 1814
+ components:
+ - type: Transform
+ pos: 116.5,72.5
+ parent: 1
+ - uid: 1851
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - uid: 1879
+ components:
+ - type: Transform
+ pos: 55.5,42.5
+ parent: 1
+ - uid: 1880
+ components:
+ - type: Transform
+ pos: 67.5,48.5
+ parent: 1
+ - uid: 1881
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 1
+ - uid: 1882
+ components:
+ - type: Transform
+ pos: 71.5,42.5
+ parent: 1
+ - uid: 1883
+ components:
+ - type: Transform
+ pos: 69.5,42.5
+ parent: 1
+ - uid: 2023
+ components:
+ - type: Transform
+ pos: 116.5,71.5
+ parent: 1
+ - uid: 2081
+ components:
+ - type: Transform
+ pos: 133.5,125.5
+ parent: 1
+ - uid: 2470
+ components:
+ - type: Transform
+ pos: 110.5,103.5
+ parent: 1
+ - uid: 2502
+ components:
+ - type: Transform
+ pos: 90.5,33.5
+ parent: 1
+ - uid: 2605
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - uid: 2668
+ components:
+ - type: Transform
+ pos: 62.5,84.5
+ parent: 1
+ - uid: 2929
+ components:
+ - type: Transform
+ pos: 44.5,86.5
+ parent: 1
+ - uid: 2984
+ components:
+ - type: Transform
+ pos: 96.5,158.5
+ parent: 1
+ - uid: 3061
+ components:
+ - type: Transform
+ pos: 83.5,52.5
+ parent: 1
+ - uid: 3097
+ components:
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - uid: 3131
+ components:
+ - type: Transform
+ pos: 109.5,103.5
+ parent: 1
+ - uid: 3133
+ components:
+ - type: Transform
+ pos: 111.5,103.5
+ parent: 1
+ - uid: 3348
+ components:
+ - type: Transform
+ pos: 121.5,88.5
+ parent: 1
+ - uid: 3359
+ components:
+ - type: Transform
+ pos: 125.5,90.5
+ parent: 1
+ - uid: 3397
+ components:
+ - type: Transform
+ pos: 79.5,156.5
+ parent: 1
+ - uid: 3398
+ components:
+ - type: Transform
+ pos: 83.5,156.5
+ parent: 1
+ - uid: 3399
+ components:
+ - type: Transform
+ pos: 77.5,155.5
+ parent: 1
+ - uid: 3412
+ components:
+ - type: Transform
+ pos: 93.5,168.5
+ parent: 1
+ - uid: 3438
+ components:
+ - type: Transform
+ pos: 119.5,167.5
+ parent: 1
+ - uid: 3448
+ components:
+ - type: Transform
+ pos: 106.5,165.5
+ parent: 1
+ - uid: 3451
+ components:
+ - type: Transform
+ pos: 108.5,165.5
+ parent: 1
+ - uid: 3461
+ components:
+ - type: Transform
+ pos: 112.5,165.5
+ parent: 1
+ - uid: 3467
+ components:
+ - type: Transform
+ pos: 87.5,80.5
+ parent: 1
+ - uid: 3481
+ components:
+ - type: Transform
+ pos: 91.5,84.5
+ parent: 1
+ - uid: 3485
+ components:
+ - type: Transform
+ pos: 117.5,154.5
+ parent: 1
+ - uid: 3489
+ components:
+ - type: Transform
+ pos: 89.5,84.5
+ parent: 1
+ - uid: 3496
+ components:
+ - type: Transform
+ pos: 88.5,84.5
+ parent: 1
+ - uid: 3505
+ components:
+ - type: Transform
+ pos: 87.5,84.5
+ parent: 1
+ - uid: 3520
+ components:
+ - type: Transform
+ pos: 87.5,86.5
+ parent: 1
+ - uid: 3559
+ components:
+ - type: Transform
+ pos: 42.5,109.5
+ parent: 1
+ - uid: 3603
+ components:
+ - type: Transform
+ pos: 154.5,53.5
+ parent: 1
+ - uid: 3604
+ components:
+ - type: Transform
+ pos: 91.5,52.5
+ parent: 1
+ - uid: 3605
+ components:
+ - type: Transform
+ pos: 121.5,110.5
+ parent: 1
+ - uid: 3607
+ components:
+ - type: Transform
+ pos: 120.5,110.5
+ parent: 1
+ - uid: 3644
+ components:
+ - type: Transform
+ pos: 149.5,113.5
+ parent: 1
+ - uid: 3666
+ components:
+ - type: Transform
+ pos: 119.5,110.5
+ parent: 1
+ - uid: 3695
+ components:
+ - type: Transform
+ pos: 146.5,111.5
+ parent: 1
+ - uid: 3713
+ components:
+ - type: Transform
+ pos: 93.5,56.5
+ parent: 1
+ - uid: 3738
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 1
+ - uid: 3758
+ components:
+ - type: Transform
+ pos: 119.5,165.5
+ parent: 1
+ - uid: 3790
+ components:
+ - type: Transform
+ pos: 147.5,89.5
+ parent: 1
+ - uid: 3837
+ components:
+ - type: Transform
+ pos: 119.5,166.5
+ parent: 1
+ - uid: 3965
+ components:
+ - type: Transform
+ pos: 138.5,141.5
+ parent: 1
+ - uid: 3988
+ components:
+ - type: Transform
+ pos: 117.5,58.5
+ parent: 1
+ - uid: 3990
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 1
+ - uid: 4049
+ components:
+ - type: Transform
+ pos: 97.5,64.5
+ parent: 1
+ - uid: 4110
+ components:
+ - type: Transform
+ pos: 89.5,52.5
+ parent: 1
+ - uid: 4120
+ components:
+ - type: Transform
+ pos: 95.5,158.5
+ parent: 1
+ - uid: 4168
+ components:
+ - type: Transform
+ pos: 70.5,49.5
+ parent: 1
+ - uid: 4171
+ components:
+ - type: Transform
+ pos: 99.5,51.5
+ parent: 1
+ - uid: 4315
+ components:
+ - type: Transform
+ pos: 98.5,51.5
+ parent: 1
+ - uid: 4329
+ components:
+ - type: Transform
+ pos: 97.5,51.5
+ parent: 1
+ - uid: 4334
+ components:
+ - type: Transform
+ pos: 83.5,45.5
+ parent: 1
+ - uid: 4340
+ components:
+ - type: Transform
+ pos: 55.5,41.5
+ parent: 1
+ - uid: 4379
+ components:
+ - type: Transform
+ pos: 85.5,45.5
+ parent: 1
+ - uid: 4431
+ components:
+ - type: Transform
+ pos: 96.5,51.5
+ parent: 1
+ - uid: 4459
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 1
+ - uid: 4484
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - uid: 4685
+ components:
+ - type: Transform
+ pos: 94.5,115.5
+ parent: 1
+ - uid: 4688
+ components:
+ - type: Transform
+ pos: 124.5,89.5
+ parent: 1
+ - uid: 4689
+ components:
+ - type: Transform
+ pos: 124.5,92.5
+ parent: 1
+ - uid: 4725
+ components:
+ - type: Transform
+ pos: 55.5,50.5
+ parent: 1
+ - uid: 4754
+ components:
+ - type: Transform
+ pos: 68.5,154.5
+ parent: 1
+ - uid: 4759
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 1
+ - uid: 4819
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 1
+ - uid: 4821
+ components:
+ - type: Transform
+ pos: 45.5,86.5
+ parent: 1
+ - uid: 4823
+ components:
+ - type: Transform
+ pos: 54.5,84.5
+ parent: 1
+ - uid: 4824
+ components:
+ - type: Transform
+ pos: 133.5,59.5
+ parent: 1
+ - uid: 4840
+ components:
+ - type: Transform
+ pos: 91.5,114.5
+ parent: 1
+ - uid: 4901
+ components:
+ - type: Transform
+ pos: 94.5,114.5
+ parent: 1
+ - uid: 4913
+ components:
+ - type: Transform
+ pos: 91.5,113.5
+ parent: 1
+ - uid: 4917
+ components:
+ - type: Transform
+ pos: 90.5,114.5
+ parent: 1
+ - uid: 4935
+ components:
+ - type: Transform
+ pos: 92.5,56.5
+ parent: 1
+ - uid: 4936
+ components:
+ - type: Transform
+ pos: 95.5,56.5
+ parent: 1
+ - uid: 4957
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - uid: 4962
+ components:
+ - type: Transform
+ pos: 93.5,114.5
+ parent: 1
+ - uid: 4970
+ components:
+ - type: Transform
+ pos: 50.5,55.5
+ parent: 1
+ - uid: 4977
+ components:
+ - type: Transform
+ pos: 47.5,50.5
+ parent: 1
+ - uid: 4978
+ components:
+ - type: Transform
+ pos: 46.5,50.5
+ parent: 1
+ - uid: 5095
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 1
+ - uid: 5201
+ components:
+ - type: Transform
+ pos: 45.5,51.5
+ parent: 1
+ - uid: 5211
+ components:
+ - type: Transform
+ pos: 146.5,114.5
+ parent: 1
+ - uid: 5216
+ components:
+ - type: Transform
+ pos: 147.5,114.5
+ parent: 1
+ - uid: 5232
+ components:
+ - type: Transform
+ pos: 97.5,65.5
+ parent: 1
+ - uid: 5238
+ components:
+ - type: Transform
+ pos: 144.5,148.5
+ parent: 1
+ - uid: 5351
+ components:
+ - type: Transform
+ pos: 162.5,131.5
+ parent: 1
+ - uid: 5357
+ components:
+ - type: Transform
+ pos: 165.5,133.5
+ parent: 1
+ - uid: 5362
+ components:
+ - type: Transform
+ pos: 164.5,136.5
+ parent: 1
+ - uid: 5368
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 1
+ - uid: 5392
+ components:
+ - type: Transform
+ pos: 93.5,51.5
+ parent: 1
+ - uid: 5396
+ components:
+ - type: Transform
+ pos: 143.5,148.5
+ parent: 1
+ - uid: 5414
+ components:
+ - type: Transform
+ pos: 124.5,160.5
+ parent: 1
+ - uid: 5438
+ components:
+ - type: Transform
+ pos: 95.5,110.5
+ parent: 1
+ - uid: 5439
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - uid: 5450
+ components:
+ - type: Transform
+ pos: 53.5,135.5
+ parent: 1
+ - uid: 5451
+ components:
+ - type: Transform
+ pos: 53.5,132.5
+ parent: 1
+ - uid: 5452
+ components:
+ - type: Transform
+ pos: 57.5,136.5
+ parent: 1
+ - uid: 5463
+ components:
+ - type: Transform
+ pos: 88.5,54.5
+ parent: 1
+ - uid: 5481
+ components:
+ - type: Transform
+ pos: 92.5,51.5
+ parent: 1
+ - uid: 5483
+ components:
+ - type: Transform
+ pos: 142.5,148.5
+ parent: 1
+ - uid: 5487
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - uid: 5492
+ components:
+ - type: Transform
+ pos: 97.5,68.5
+ parent: 1
+ - uid: 5542
+ components:
+ - type: Transform
+ pos: 68.5,42.5
+ parent: 1
+ - uid: 5563
+ components:
+ - type: Transform
+ pos: 141.5,148.5
+ parent: 1
+ - uid: 5564
+ components:
+ - type: Transform
+ pos: 140.5,148.5
+ parent: 1
+ - uid: 5592
+ components:
+ - type: Transform
+ pos: 63.5,157.5
+ parent: 1
+ - uid: 5825
+ components:
+ - type: Transform
+ pos: 47.5,51.5
+ parent: 1
+ - uid: 5837
+ components:
+ - type: Transform
+ pos: 60.5,59.5
+ parent: 1
+ - uid: 5921
+ components:
+ - type: Transform
+ pos: 110.5,35.5
+ parent: 1
+ - uid: 5926
+ components:
+ - type: Transform
+ pos: 108.5,35.5
+ parent: 1
+ - uid: 5927
+ components:
+ - type: Transform
+ pos: 106.5,35.5
+ parent: 1
+ - uid: 5935
+ components:
+ - type: Transform
+ pos: 103.5,35.5
+ parent: 1
+ - uid: 5952
+ components:
+ - type: Transform
+ pos: 102.5,35.5
+ parent: 1
+ - uid: 6031
+ components:
+ - type: Transform
+ pos: 133.5,123.5
+ parent: 1
+ - uid: 6103
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 1
+ - uid: 6123
+ components:
+ - type: Transform
+ pos: 139.5,149.5
+ parent: 1
+ - uid: 6124
+ components:
+ - type: Transform
+ pos: 139.5,148.5
+ parent: 1
+ - uid: 6171
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 1
+ - uid: 6215
+ components:
+ - type: Transform
+ pos: 137.5,149.5
+ parent: 1
+ - uid: 6216
+ components:
+ - type: Transform
+ pos: 138.5,149.5
+ parent: 1
+ - uid: 6236
+ components:
+ - type: Transform
+ pos: 131.5,67.5
+ parent: 1
+ - uid: 6333
+ components:
+ - type: Transform
+ pos: 91.5,51.5
+ parent: 1
+ - uid: 6339
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - uid: 6369
+ components:
+ - type: Transform
+ pos: 150.5,151.5
+ parent: 1
+ - uid: 6398
+ components:
+ - type: Transform
+ pos: 139.5,86.5
+ parent: 1
+ - uid: 6460
+ components:
+ - type: Transform
+ pos: 148.5,145.5
+ parent: 1
+ - uid: 6469
+ components:
+ - type: Transform
+ pos: 157.5,53.5
+ parent: 1
+ - uid: 6472
+ components:
+ - type: Transform
+ pos: 157.5,51.5
+ parent: 1
+ - uid: 6490
+ components:
+ - type: Transform
+ pos: 158.5,49.5
+ parent: 1
+ - uid: 6673
+ components:
+ - type: Transform
+ pos: 48.5,126.5
+ parent: 1
+ - uid: 6680
+ components:
+ - type: Transform
+ pos: 161.5,54.5
+ parent: 1
+ - uid: 6686
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+ - uid: 6699
+ components:
+ - type: Transform
+ pos: 44.5,126.5
+ parent: 1
+ - uid: 6725
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 6727
+ components:
+ - type: Transform
+ pos: 37.5,122.5
+ parent: 1
+ - uid: 6856
+ components:
+ - type: Transform
+ pos: 150.5,150.5
+ parent: 1
+ - uid: 6932
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 6952
+ components:
+ - type: Transform
+ pos: 40.5,124.5
+ parent: 1
+ - uid: 6977
+ components:
+ - type: Transform
+ pos: 40.5,125.5
+ parent: 1
+ - uid: 6994
+ components:
+ - type: Transform
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 7010
+ components:
+ - type: Transform
+ pos: 40.5,126.5
+ parent: 1
+ - uid: 7023
+ components:
+ - type: Transform
+ pos: 68.5,51.5
+ parent: 1
+ - uid: 7050
+ components:
+ - type: Transform
+ pos: 69.5,51.5
+ parent: 1
+ - uid: 7053
+ components:
+ - type: Transform
+ pos: 48.5,123.5
+ parent: 1
+ - uid: 7063
+ components:
+ - type: Transform
+ pos: 90.5,51.5
+ parent: 1
+ - uid: 7065
+ components:
+ - type: Transform
+ pos: 89.5,51.5
+ parent: 1
+ - uid: 7071
+ components:
+ - type: Transform
+ pos: 48.5,124.5
+ parent: 1
+ - uid: 7079
+ components:
+ - type: Transform
+ pos: 48.5,125.5
+ parent: 1
+ - uid: 7084
+ components:
+ - type: Transform
+ pos: 87.5,51.5
+ parent: 1
+ - uid: 7088
+ components:
+ - type: Transform
+ pos: 85.5,51.5
+ parent: 1
+ - uid: 7101
+ components:
+ - type: Transform
+ pos: 88.5,51.5
+ parent: 1
+ - uid: 7180
+ components:
+ - type: Transform
+ pos: 47.5,52.5
+ parent: 1
+ - uid: 7199
+ components:
+ - type: Transform
+ pos: 46.5,54.5
+ parent: 1
+ - uid: 7200
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 1
+ - uid: 7222
+ components:
+ - type: Transform
+ pos: 47.5,56.5
+ parent: 1
+ - uid: 7236
+ components:
+ - type: Transform
+ pos: 45.5,49.5
+ parent: 1
+ - uid: 7294
+ components:
+ - type: Transform
+ pos: 67.5,160.5
+ parent: 1
+ - uid: 7295
+ components:
+ - type: Transform
+ pos: 67.5,161.5
+ parent: 1
+ - uid: 7296
+ components:
+ - type: Transform
+ pos: 67.5,159.5
+ parent: 1
+ - uid: 7539
+ components:
+ - type: Transform
+ pos: 165.5,132.5
+ parent: 1
+ - uid: 8190
+ components:
+ - type: Transform
+ pos: 80.5,156.5
+ parent: 1
+ - uid: 8236
+ components:
+ - type: Transform
+ pos: 78.5,155.5
+ parent: 1
+ - uid: 8244
+ components:
+ - type: Transform
+ pos: 27.5,75.5
+ parent: 1
+ - uid: 8270
+ components:
+ - type: Transform
+ pos: 27.5,77.5
+ parent: 1
+ - uid: 8272
+ components:
+ - type: Transform
+ pos: 27.5,78.5
+ parent: 1
+ - uid: 8376
+ components:
+ - type: Transform
+ pos: 35.5,79.5
+ parent: 1
+ - uid: 8390
+ components:
+ - type: Transform
+ pos: 36.5,80.5
+ parent: 1
+ - uid: 8577
+ components:
+ - type: Transform
+ pos: 29.5,79.5
+ parent: 1
+ - uid: 8665
+ components:
+ - type: Transform
+ pos: 132.5,67.5
+ parent: 1
+ - uid: 8666
+ components:
+ - type: Transform
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 8670
+ components:
+ - type: Transform
+ pos: 53.5,131.5
+ parent: 1
+ - uid: 8690
+ components:
+ - type: Transform
+ pos: 57.5,130.5
+ parent: 1
+ - uid: 8693
+ components:
+ - type: Transform
+ pos: 53.5,134.5
+ parent: 1
+ - uid: 8985
+ components:
+ - type: Transform
+ pos: 47.5,126.5
+ parent: 1
+ - uid: 9255
+ components:
+ - type: Transform
+ pos: 38.5,122.5
+ parent: 1
+ - uid: 9264
+ components:
+ - type: Transform
+ pos: 33.5,120.5
+ parent: 1
+ - uid: 9440
+ components:
+ - type: Transform
+ pos: 126.5,96.5
+ parent: 1
+ - uid: 9498
+ components:
+ - type: Transform
+ pos: 97.5,63.5
+ parent: 1
+ - uid: 9673
+ components:
+ - type: Transform
+ pos: 97.5,69.5
+ parent: 1
+ - uid: 9678
+ components:
+ - type: Transform
+ pos: 94.5,56.5
+ parent: 1
+ - uid: 9688
+ components:
+ - type: Transform
+ pos: 124.5,106.5
+ parent: 1
+ - uid: 9693
+ components:
+ - type: Transform
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 9695
+ components:
+ - type: Transform
+ pos: 128.5,110.5
+ parent: 1
+ - uid: 10045
+ components:
+ - type: Transform
+ pos: 99.5,64.5
+ parent: 1
+ - uid: 10095
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 10342
+ components:
+ - type: Transform
+ pos: 113.5,64.5
+ parent: 1
+ - uid: 10346
+ components:
+ - type: Transform
+ pos: 94.5,59.5
+ parent: 1
+ - uid: 10360
+ components:
+ - type: Transform
+ pos: 92.5,59.5
+ parent: 1
+ - uid: 10388
+ components:
+ - type: Transform
+ pos: 58.5,148.5
+ parent: 1
+ - uid: 10389
+ components:
+ - type: Transform
+ pos: 57.5,148.5
+ parent: 1
+ - uid: 10394
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - uid: 10458
+ components:
+ - type: Transform
+ pos: 105.5,165.5
+ parent: 1
+ - uid: 10460
+ components:
+ - type: Transform
+ pos: 107.5,165.5
+ parent: 1
+ - uid: 10462
+ components:
+ - type: Transform
+ pos: 110.5,165.5
+ parent: 1
+ - uid: 10471
+ components:
+ - type: Transform
+ pos: 123.5,161.5
+ parent: 1
+ - uid: 10484
+ components:
+ - type: Transform
+ pos: 135.5,141.5
+ parent: 1
+ - uid: 10717
+ components:
+ - type: Transform
+ pos: 72.5,49.5
+ parent: 1
+ - uid: 10722
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 10903
+ components:
+ - type: Transform
+ pos: 93.5,59.5
+ parent: 1
+ - uid: 10912
+ components:
+ - type: Transform
+ pos: 110.5,48.5
+ parent: 1
+ - uid: 10913
+ components:
+ - type: Transform
+ pos: 110.5,49.5
+ parent: 1
+ - uid: 10914
+ components:
+ - type: Transform
+ pos: 110.5,47.5
+ parent: 1
+ - uid: 10915
+ components:
+ - type: Transform
+ pos: 110.5,46.5
+ parent: 1
+ - uid: 10916
+ components:
+ - type: Transform
+ pos: 110.5,45.5
+ parent: 1
+ - uid: 10917
+ components:
+ - type: Transform
+ pos: 110.5,44.5
+ parent: 1
+ - uid: 10918
+ components:
+ - type: Transform
+ pos: 110.5,43.5
+ parent: 1
+ - uid: 10932
+ components:
+ - type: Transform
+ pos: 95.5,59.5
+ parent: 1
+ - uid: 10984
+ components:
+ - type: Transform
+ pos: 55.5,44.5
+ parent: 1
+ - uid: 10985
+ components:
+ - type: Transform
+ pos: 55.5,45.5
+ parent: 1
+ - uid: 10986
+ components:
+ - type: Transform
+ pos: 55.5,46.5
+ parent: 1
+ - uid: 10987
+ components:
+ - type: Transform
+ pos: 55.5,47.5
+ parent: 1
+ - uid: 10988
+ components:
+ - type: Transform
+ pos: 54.5,47.5
+ parent: 1
+ - uid: 10989
+ components:
+ - type: Transform
+ pos: 53.5,47.5
+ parent: 1
+ - uid: 10990
+ components:
+ - type: Transform
+ pos: 52.5,47.5
+ parent: 1
+ - uid: 10991
+ components:
+ - type: Transform
+ pos: 52.5,48.5
+ parent: 1
+ - uid: 10992
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 10993
+ components:
+ - type: Transform
+ pos: 52.5,50.5
+ parent: 1
+ - uid: 10994
+ components:
+ - type: Transform
+ pos: 52.5,51.5
+ parent: 1
+ - uid: 10995
+ components:
+ - type: Transform
+ pos: 52.5,52.5
+ parent: 1
+ - uid: 10996
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - uid: 10997
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 1
+ - uid: 10998
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 1
+ - uid: 10999
+ components:
+ - type: Transform
+ pos: 54.5,48.5
+ parent: 1
+ - uid: 11000
+ components:
+ - type: Transform
+ pos: 54.5,49.5
+ parent: 1
+ - uid: 11001
+ components:
+ - type: Transform
+ pos: 54.5,50.5
+ parent: 1
+ - uid: 11004
+ components:
+ - type: Transform
+ pos: 52.5,56.5
+ parent: 1
+ - uid: 11005
+ components:
+ - type: Transform
+ pos: 52.5,57.5
+ parent: 1
+ - uid: 11006
+ components:
+ - type: Transform
+ pos: 52.5,58.5
+ parent: 1
+ - uid: 11007
+ components:
+ - type: Transform
+ pos: 52.5,59.5
+ parent: 1
+ - uid: 11008
+ components:
+ - type: Transform
+ pos: 52.5,60.5
+ parent: 1
+ - uid: 11009
+ components:
+ - type: Transform
+ pos: 53.5,60.5
+ parent: 1
+ - uid: 11010
+ components:
+ - type: Transform
+ pos: 54.5,60.5
+ parent: 1
+ - uid: 11011
+ components:
+ - type: Transform
+ pos: 53.5,58.5
+ parent: 1
+ - uid: 11012
+ components:
+ - type: Transform
+ pos: 54.5,58.5
+ parent: 1
+ - uid: 11013
+ components:
+ - type: Transform
+ pos: 55.5,58.5
+ parent: 1
+ - uid: 11014
+ components:
+ - type: Transform
+ pos: 56.5,58.5
+ parent: 1
+ - uid: 11015
+ components:
+ - type: Transform
+ pos: 57.5,58.5
+ parent: 1
+ - uid: 11016
+ components:
+ - type: Transform
+ pos: 58.5,58.5
+ parent: 1
+ - uid: 11017
+ components:
+ - type: Transform
+ pos: 59.5,58.5
+ parent: 1
+ - uid: 11018
+ components:
+ - type: Transform
+ pos: 60.5,58.5
+ parent: 1
+ - uid: 11019
+ components:
+ - type: Transform
+ pos: 61.5,58.5
+ parent: 1
+ - uid: 11020
+ components:
+ - type: Transform
+ pos: 62.5,58.5
+ parent: 1
+ - uid: 11021
+ components:
+ - type: Transform
+ pos: 62.5,57.5
+ parent: 1
+ - uid: 11023
+ components:
+ - type: Transform
+ pos: 51.5,55.5
+ parent: 1
+ - uid: 11025
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 1
+ - uid: 11026
+ components:
+ - type: Transform
+ pos: 48.5,55.5
+ parent: 1
+ - uid: 11027
+ components:
+ - type: Transform
+ pos: 47.5,55.5
+ parent: 1
+ - uid: 11029
+ components:
+ - type: Transform
+ pos: 47.5,58.5
+ parent: 1
+ - uid: 11030
+ components:
+ - type: Transform
+ pos: 47.5,59.5
+ parent: 1
+ - uid: 11031
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 1
+ - uid: 11032
+ components:
+ - type: Transform
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 11033
+ components:
+ - type: Transform
+ pos: 47.5,62.5
+ parent: 1
+ - uid: 11034
+ components:
+ - type: Transform
+ pos: 47.5,63.5
+ parent: 1
+ - uid: 11035
+ components:
+ - type: Transform
+ pos: 47.5,64.5
+ parent: 1
+ - uid: 11036
+ components:
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - uid: 11037
+ components:
+ - type: Transform
+ pos: 48.5,64.5
+ parent: 1
+ - uid: 11038
+ components:
+ - type: Transform
+ pos: 49.5,64.5
+ parent: 1
+ - uid: 11039
+ components:
+ - type: Transform
+ pos: 49.5,65.5
+ parent: 1
+ - uid: 11040
+ components:
+ - type: Transform
+ pos: 49.5,66.5
+ parent: 1
+ - uid: 11041
+ components:
+ - type: Transform
+ pos: 49.5,67.5
+ parent: 1
+ - uid: 11048
+ components:
+ - type: Transform
+ pos: 45.5,50.5
+ parent: 1
+ - uid: 11049
+ components:
+ - type: Transform
+ pos: 44.5,50.5
+ parent: 1
+ - uid: 11050
+ components:
+ - type: Transform
+ pos: 43.5,50.5
+ parent: 1
+ - uid: 11051
+ components:
+ - type: Transform
+ pos: 43.5,49.5
+ parent: 1
+ - uid: 11052
+ components:
+ - type: Transform
+ pos: 43.5,48.5
+ parent: 1
+ - uid: 11054
+ components:
+ - type: Transform
+ pos: 43.5,51.5
+ parent: 1
+ - uid: 11055
+ components:
+ - type: Transform
+ pos: 43.5,52.5
+ parent: 1
+ - uid: 11056
+ components:
+ - type: Transform
+ pos: 43.5,53.5
+ parent: 1
+ - uid: 11057
+ components:
+ - type: Transform
+ pos: 43.5,54.5
+ parent: 1
+ - uid: 11058
+ components:
+ - type: Transform
+ pos: 43.5,55.5
+ parent: 1
+ - uid: 11059
+ components:
+ - type: Transform
+ pos: 43.5,56.5
+ parent: 1
+ - uid: 11060
+ components:
+ - type: Transform
+ pos: 43.5,58.5
+ parent: 1
+ - uid: 11061
+ components:
+ - type: Transform
+ pos: 43.5,59.5
+ parent: 1
+ - uid: 11062
+ components:
+ - type: Transform
+ pos: 43.5,60.5
+ parent: 1
+ - uid: 11063
+ components:
+ - type: Transform
+ pos: 43.5,61.5
+ parent: 1
+ - uid: 11064
+ components:
+ - type: Transform
+ pos: 43.5,62.5
+ parent: 1
+ - uid: 11065
+ components:
+ - type: Transform
+ pos: 43.5,63.5
+ parent: 1
+ - uid: 11066
+ components:
+ - type: Transform
+ pos: 43.5,57.5
+ parent: 1
+ - uid: 11067
+ components:
+ - type: Transform
+ pos: 43.5,65.5
+ parent: 1
+ - uid: 11068
+ components:
+ - type: Transform
+ pos: 43.5,66.5
+ parent: 1
+ - uid: 11069
+ components:
+ - type: Transform
+ pos: 43.5,67.5
+ parent: 1
+ - uid: 11070
+ components:
+ - type: Transform
+ pos: 43.5,68.5
+ parent: 1
+ - uid: 11071
+ components:
+ - type: Transform
+ pos: 43.5,69.5
+ parent: 1
+ - uid: 11072
+ components:
+ - type: Transform
+ pos: 43.5,64.5
+ parent: 1
+ - uid: 11073
+ components:
+ - type: Transform
+ pos: 43.5,70.5
+ parent: 1
+ - uid: 11074
+ components:
+ - type: Transform
+ pos: 43.5,71.5
+ parent: 1
+ - uid: 11075
+ components:
+ - type: Transform
+ pos: 43.5,72.5
+ parent: 1
+ - uid: 11076
+ components:
+ - type: Transform
+ pos: 43.5,73.5
+ parent: 1
+ - uid: 11077
+ components:
+ - type: Transform
+ pos: 42.5,73.5
+ parent: 1
+ - uid: 11078
+ components:
+ - type: Transform
+ pos: 41.5,73.5
+ parent: 1
+ - uid: 11079
+ components:
+ - type: Transform
+ pos: 40.5,73.5
+ parent: 1
+ - uid: 11080
+ components:
+ - type: Transform
+ pos: 39.5,73.5
+ parent: 1
+ - uid: 11081
+ components:
+ - type: Transform
+ pos: 38.5,73.5
+ parent: 1
+ - uid: 11082
+ components:
+ - type: Transform
+ pos: 37.5,73.5
+ parent: 1
+ - uid: 11083
+ components:
+ - type: Transform
+ pos: 36.5,73.5
+ parent: 1
+ - uid: 11084
+ components:
+ - type: Transform
+ pos: 36.5,72.5
+ parent: 1
+ - uid: 11085
+ components:
+ - type: Transform
+ pos: 36.5,71.5
+ parent: 1
+ - uid: 11086
+ components:
+ - type: Transform
+ pos: 36.5,70.5
+ parent: 1
+ - uid: 11087
+ components:
+ - type: Transform
+ pos: 36.5,69.5
+ parent: 1
+ - uid: 11088
+ components:
+ - type: Transform
+ pos: 39.5,72.5
+ parent: 1
+ - uid: 11089
+ components:
+ - type: Transform
+ pos: 39.5,71.5
+ parent: 1
+ - uid: 11090
+ components:
+ - type: Transform
+ pos: 39.5,70.5
+ parent: 1
+ - uid: 11091
+ components:
+ - type: Transform
+ pos: 39.5,69.5
+ parent: 1
+ - uid: 11092
+ components:
+ - type: Transform
+ pos: 39.5,68.5
+ parent: 1
+ - uid: 11093
+ components:
+ - type: Transform
+ pos: 39.5,67.5
+ parent: 1
+ - uid: 11094
+ components:
+ - type: Transform
+ pos: 39.5,66.5
+ parent: 1
+ - uid: 11095
+ components:
+ - type: Transform
+ pos: 38.5,66.5
+ parent: 1
+ - uid: 11096
+ components:
+ - type: Transform
+ pos: 37.5,66.5
+ parent: 1
+ - uid: 11097
+ components:
+ - type: Transform
+ pos: 36.5,66.5
+ parent: 1
+ - uid: 11107
+ components:
+ - type: Transform
+ pos: 42.5,50.5
+ parent: 1
+ - uid: 11108
+ components:
+ - type: Transform
+ pos: 41.5,50.5
+ parent: 1
+ - uid: 11109
+ components:
+ - type: Transform
+ pos: 40.5,50.5
+ parent: 1
+ - uid: 11110
+ components:
+ - type: Transform
+ pos: 39.5,50.5
+ parent: 1
+ - uid: 11111
+ components:
+ - type: Transform
+ pos: 38.5,50.5
+ parent: 1
+ - uid: 11112
+ components:
+ - type: Transform
+ pos: 37.5,50.5
+ parent: 1
+ - uid: 11113
+ components:
+ - type: Transform
+ pos: 36.5,50.5
+ parent: 1
+ - uid: 11114
+ components:
+ - type: Transform
+ pos: 35.5,50.5
+ parent: 1
+ - uid: 11115
+ components:
+ - type: Transform
+ pos: 34.5,50.5
+ parent: 1
+ - uid: 11116
+ components:
+ - type: Transform
+ pos: 33.5,50.5
+ parent: 1
+ - uid: 11117
+ components:
+ - type: Transform
+ pos: 32.5,50.5
+ parent: 1
+ - uid: 11160
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - uid: 11161
+ components:
+ - type: Transform
+ pos: 90.5,35.5
+ parent: 1
+ - uid: 11162
+ components:
+ - type: Transform
+ pos: 93.5,35.5
+ parent: 1
+ - uid: 11164
+ components:
+ - type: Transform
+ pos: 95.5,36.5
+ parent: 1
+ - uid: 11165
+ components:
+ - type: Transform
+ pos: 93.5,36.5
+ parent: 1
+ - uid: 11176
+ components:
+ - type: Transform
+ pos: 148.5,110.5
+ parent: 1
+ - uid: 11292
+ components:
+ - type: Transform
+ pos: 115.5,64.5
+ parent: 1
+ - uid: 11345
+ components:
+ - type: Transform
+ pos: 156.5,146.5
+ parent: 1
+ - uid: 11348
+ components:
+ - type: Transform
+ pos: 154.5,146.5
+ parent: 1
+ - uid: 11352
+ components:
+ - type: Transform
+ pos: 151.5,146.5
+ parent: 1
+ - uid: 11355
+ components:
+ - type: Transform
+ pos: 158.5,146.5
+ parent: 1
+ - uid: 11361
+ components:
+ - type: Transform
+ pos: 150.5,89.5
+ parent: 1
+ - uid: 11365
+ components:
+ - type: Transform
+ pos: 149.5,89.5
+ parent: 1
+ - uid: 11367
+ components:
+ - type: Transform
+ pos: 148.5,89.5
+ parent: 1
+ - uid: 11368
+ components:
+ - type: Transform
+ pos: 145.5,95.5
+ parent: 1
+ - uid: 11545
+ components:
+ - type: Transform
+ pos: 44.5,67.5
+ parent: 1
+ - uid: 11546
+ components:
+ - type: Transform
+ pos: 45.5,67.5
+ parent: 1
+ - uid: 11791
+ components:
+ - type: Transform
+ pos: 157.5,99.5
+ parent: 1
+ - uid: 11871
+ components:
+ - type: Transform
+ pos: 149.5,112.5
+ parent: 1
+ - uid: 11898
+ components:
+ - type: Transform
+ pos: 67.5,156.5
+ parent: 1
+ - uid: 11906
+ components:
+ - type: Transform
+ pos: 138.5,85.5
+ parent: 1
+ - uid: 11918
+ components:
+ - type: Transform
+ pos: 99.5,158.5
+ parent: 1
+ - uid: 12116
+ components:
+ - type: Transform
+ pos: 119.5,88.5
+ parent: 1
+ - uid: 12117
+ components:
+ - type: Transform
+ pos: 118.5,88.5
+ parent: 1
+ - uid: 12142
+ components:
+ - type: Transform
+ pos: 117.5,88.5
+ parent: 1
+ - uid: 12421
+ components:
+ - type: Transform
+ pos: 116.5,88.5
+ parent: 1
+ - uid: 12422
+ components:
+ - type: Transform
+ pos: 115.5,88.5
+ parent: 1
+ - uid: 12423
+ components:
+ - type: Transform
+ pos: 114.5,88.5
+ parent: 1
+ - uid: 12424
+ components:
+ - type: Transform
+ pos: 113.5,88.5
+ parent: 1
+ - uid: 12451
+ components:
+ - type: Transform
+ pos: 109.5,54.5
+ parent: 1
+ - uid: 12481
+ components:
+ - type: Transform
+ pos: 144.5,114.5
+ parent: 1
+ - uid: 12557
+ components:
+ - type: Transform
+ pos: 157.5,54.5
+ parent: 1
+ - uid: 12558
+ components:
+ - type: Transform
+ pos: 157.5,56.5
+ parent: 1
+ - uid: 12559
+ components:
+ - type: Transform
+ pos: 158.5,50.5
+ parent: 1
+ - uid: 12560
+ components:
+ - type: Transform
+ pos: 158.5,47.5
+ parent: 1
+ - uid: 12609
+ components:
+ - type: Transform
+ pos: 88.5,36.5
+ parent: 1
+ - uid: 12831
+ components:
+ - type: Transform
+ pos: 102.5,42.5
+ parent: 1
+ - uid: 12832
+ components:
+ - type: Transform
+ pos: 103.5,47.5
+ parent: 1
+ - uid: 12958
+ components:
+ - type: Transform
+ pos: 57.5,22.5
+ parent: 1
+ - uid: 12964
+ components:
+ - type: Transform
+ pos: 57.5,23.5
+ parent: 1
+ - uid: 12965
+ components:
+ - type: Transform
+ pos: 57.5,24.5
+ parent: 1
+ - uid: 12966
+ components:
+ - type: Transform
+ pos: 56.5,24.5
+ parent: 1
+ - uid: 12967
+ components:
+ - type: Transform
+ pos: 55.5,24.5
+ parent: 1
+ - uid: 12968
+ components:
+ - type: Transform
+ pos: 54.5,24.5
+ parent: 1
+ - uid: 12969
+ components:
+ - type: Transform
+ pos: 53.5,24.5
+ parent: 1
+ - uid: 12970
+ components:
+ - type: Transform
+ pos: 52.5,24.5
+ parent: 1
+ - uid: 12971
+ components:
+ - type: Transform
+ pos: 51.5,24.5
+ parent: 1
+ - uid: 12972
+ components:
+ - type: Transform
+ pos: 49.5,17.5
+ parent: 1
+ - uid: 12973
+ components:
+ - type: Transform
+ pos: 49.5,18.5
+ parent: 1
+ - uid: 12974
+ components:
+ - type: Transform
+ pos: 50.5,18.5
+ parent: 1
+ - uid: 12975
+ components:
+ - type: Transform
+ pos: 50.5,19.5
+ parent: 1
+ - uid: 12976
+ components:
+ - type: Transform
+ pos: 50.5,20.5
+ parent: 1
+ - uid: 12977
+ components:
+ - type: Transform
+ pos: 51.5,20.5
+ parent: 1
+ - uid: 12978
+ components:
+ - type: Transform
+ pos: 51.5,21.5
+ parent: 1
+ - uid: 12979
+ components:
+ - type: Transform
+ pos: 51.5,23.5
+ parent: 1
+ - uid: 12980
+ components:
+ - type: Transform
+ pos: 51.5,22.5
+ parent: 1
+ - uid: 12981
+ components:
+ - type: Transform
+ pos: 51.5,25.5
+ parent: 1
+ - uid: 12982
+ components:
+ - type: Transform
+ pos: 51.5,26.5
+ parent: 1
+ - uid: 12983
+ components:
+ - type: Transform
+ pos: 51.5,27.5
+ parent: 1
+ - uid: 12984
+ components:
+ - type: Transform
+ pos: 51.5,28.5
+ parent: 1
+ - uid: 12985
+ components:
+ - type: Transform
+ pos: 50.5,28.5
+ parent: 1
+ - uid: 12986
+ components:
+ - type: Transform
+ pos: 50.5,29.5
+ parent: 1
+ - uid: 12987
+ components:
+ - type: Transform
+ pos: 50.5,30.5
+ parent: 1
+ - uid: 12988
+ components:
+ - type: Transform
+ pos: 49.5,30.5
+ parent: 1
+ - uid: 12989
+ components:
+ - type: Transform
+ pos: 49.5,31.5
+ parent: 1
+ - uid: 12991
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 1
+ - uid: 12995
+ components:
+ - type: Transform
+ pos: 50.5,24.5
+ parent: 1
+ - uid: 12996
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 1
+ - uid: 12997
+ components:
+ - type: Transform
+ pos: 48.5,24.5
+ parent: 1
+ - uid: 12998
+ components:
+ - type: Transform
+ pos: 47.5,24.5
+ parent: 1
+ - uid: 12999
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 1
+ - uid: 13000
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 1
+ - uid: 13001
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 1
+ - uid: 13002
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 1
+ - uid: 13003
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 1
+ - uid: 13004
+ components:
+ - type: Transform
+ pos: 47.5,21.5
+ parent: 1
+ - uid: 13005
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 1
+ - uid: 13006
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 1
+ - uid: 13007
+ components:
+ - type: Transform
+ pos: 46.5,24.5
+ parent: 1
+ - uid: 13008
+ components:
+ - type: Transform
+ pos: 45.5,24.5
+ parent: 1
+ - uid: 13009
+ components:
+ - type: Transform
+ pos: 44.5,24.5
+ parent: 1
+ - uid: 13010
+ components:
+ - type: Transform
+ pos: 44.5,23.5
+ parent: 1
+ - uid: 13011
+ components:
+ - type: Transform
+ pos: 44.5,25.5
+ parent: 1
+ - uid: 13012
+ components:
+ - type: Transform
+ pos: 47.5,26.5
+ parent: 1
+ - uid: 13013
+ components:
+ - type: Transform
+ pos: 47.5,27.5
+ parent: 1
+ - uid: 13014
+ components:
+ - type: Transform
+ pos: 46.5,27.5
+ parent: 1
+ - uid: 13015
+ components:
+ - type: Transform
+ pos: 46.5,28.5
+ parent: 1
+ - uid: 13016
+ components:
+ - type: Transform
+ pos: 46.5,29.5
+ parent: 1
+ - uid: 13017
+ components:
+ - type: Transform
+ pos: 45.5,29.5
+ parent: 1
+ - uid: 13018
+ components:
+ - type: Transform
+ pos: 45.5,30.5
+ parent: 1
+ - uid: 13019
+ components:
+ - type: Transform
+ pos: 43.5,24.5
+ parent: 1
+ - uid: 13020
+ components:
+ - type: Transform
+ pos: 42.5,24.5
+ parent: 1
+ - uid: 13090
+ components:
+ - type: Transform
+ pos: 51.5,30.5
+ parent: 1
+ - uid: 13091
+ components:
+ - type: Transform
+ pos: 51.5,31.5
+ parent: 1
+ - uid: 13092
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - uid: 13093
+ components:
+ - type: Transform
+ pos: 51.5,33.5
+ parent: 1
+ - uid: 13094
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 1
+ - uid: 13095
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 13096
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 1
+ - uid: 13097
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1
+ - uid: 13098
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+ - uid: 13099
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1
+ - uid: 13100
+ components:
+ - type: Transform
+ pos: 51.5,41.5
+ parent: 1
+ - uid: 13101
+ components:
+ - type: Transform
+ pos: 51.5,42.5
+ parent: 1
+ - uid: 13102
+ components:
+ - type: Transform
+ pos: 51.5,43.5
+ parent: 1
+ - uid: 13103
+ components:
+ - type: Transform
+ pos: 51.5,37.5
+ parent: 1
+ - uid: 13104
+ components:
+ - type: Transform
+ pos: 50.5,41.5
+ parent: 1
+ - uid: 13105
+ components:
+ - type: Transform
+ pos: 49.5,41.5
+ parent: 1
+ - uid: 13106
+ components:
+ - type: Transform
+ pos: 48.5,41.5
+ parent: 1
+ - uid: 13107
+ components:
+ - type: Transform
+ pos: 47.5,41.5
+ parent: 1
+ - uid: 13108
+ components:
+ - type: Transform
+ pos: 47.5,42.5
+ parent: 1
+ - uid: 13109
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - uid: 13110
+ components:
+ - type: Transform
+ pos: 47.5,44.5
+ parent: 1
+ - uid: 13111
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - uid: 13112
+ components:
+ - type: Transform
+ pos: 47.5,46.5
+ parent: 1
+ - uid: 13113
+ components:
+ - type: Transform
+ pos: 48.5,46.5
+ parent: 1
+ - uid: 13114
+ components:
+ - type: Transform
+ pos: 49.5,46.5
+ parent: 1
+ - uid: 13115
+ components:
+ - type: Transform
+ pos: 50.5,46.5
+ parent: 1
+ - uid: 13116
+ components:
+ - type: Transform
+ pos: 51.5,46.5
+ parent: 1
+ - uid: 13134
+ components:
+ - type: Transform
+ pos: 58.5,24.5
+ parent: 1
+ - uid: 13273
+ components:
+ - type: Transform
+ pos: 59.5,60.5
+ parent: 1
+ - uid: 13275
+ components:
+ - type: Transform
+ pos: 57.5,60.5
+ parent: 1
+ - uid: 13276
+ components:
+ - type: Transform
+ pos: 56.5,60.5
+ parent: 1
+ - uid: 13277
+ components:
+ - type: Transform
+ pos: 56.5,59.5
+ parent: 1
+ - uid: 13278
+ components:
+ - type: Transform
+ pos: 53.5,56.5
+ parent: 1
+ - uid: 13279
+ components:
+ - type: Transform
+ pos: 54.5,56.5
+ parent: 1
+ - uid: 13280
+ components:
+ - type: Transform
+ pos: 54.5,55.5
+ parent: 1
+ - uid: 13281
+ components:
+ - type: Transform
+ pos: 45.5,53.5
+ parent: 1
+ - uid: 13282
+ components:
+ - type: Transform
+ pos: 45.5,54.5
+ parent: 1
+ - uid: 13283
+ components:
+ - type: Transform
+ pos: 45.5,55.5
+ parent: 1
+ - uid: 13285
+ components:
+ - type: Transform
+ pos: 45.5,58.5
+ parent: 1
+ - uid: 13287
+ components:
+ - type: Transform
+ pos: 44.5,54.5
+ parent: 1
+ - uid: 13289
+ components:
+ - type: Transform
+ pos: 46.5,58.5
+ parent: 1
+ - uid: 13290
+ components:
+ - type: Transform
+ pos: 44.5,58.5
+ parent: 1
+ - uid: 13291
+ components:
+ - type: Transform
+ pos: 42.5,54.5
+ parent: 1
+ - uid: 13292
+ components:
+ - type: Transform
+ pos: 41.5,53.5
+ parent: 1
+ - uid: 13293
+ components:
+ - type: Transform
+ pos: 41.5,54.5
+ parent: 1
+ - uid: 13294
+ components:
+ - type: Transform
+ pos: 41.5,55.5
+ parent: 1
+ - uid: 13295
+ components:
+ - type: Transform
+ pos: 42.5,58.5
+ parent: 1
+ - uid: 13296
+ components:
+ - type: Transform
+ pos: 41.5,57.5
+ parent: 1
+ - uid: 13297
+ components:
+ - type: Transform
+ pos: 41.5,58.5
+ parent: 1
+ - uid: 13298
+ components:
+ - type: Transform
+ pos: 41.5,59.5
+ parent: 1
+ - uid: 13299
+ components:
+ - type: Transform
+ pos: 42.5,62.5
+ parent: 1
+ - uid: 13301
+ components:
+ - type: Transform
+ pos: 41.5,62.5
+ parent: 1
+ - uid: 13308
+ components:
+ - type: Transform
+ pos: 124.5,93.5
+ parent: 1
+ - uid: 13316
+ components:
+ - type: Transform
+ pos: 42.5,71.5
+ parent: 1
+ - uid: 13317
+ components:
+ - type: Transform
+ pos: 41.5,71.5
+ parent: 1
+ - uid: 13318
+ components:
+ - type: Transform
+ pos: 43.5,74.5
+ parent: 1
+ - uid: 13319
+ components:
+ - type: Transform
+ pos: 43.5,75.5
+ parent: 1
+ - uid: 13320
+ components:
+ - type: Transform
+ pos: 42.5,75.5
+ parent: 1
+ - uid: 13321
+ components:
+ - type: Transform
+ pos: 41.5,75.5
+ parent: 1
+ - uid: 13322
+ components:
+ - type: Transform
+ pos: 38.5,49.5
+ parent: 1
+ - uid: 13323
+ components:
+ - type: Transform
+ pos: 38.5,48.5
+ parent: 1
+ - uid: 13324
+ components:
+ - type: Transform
+ pos: 38.5,47.5
+ parent: 1
+ - uid: 13325
+ components:
+ - type: Transform
+ pos: 37.5,47.5
+ parent: 1
+ - uid: 13326
+ components:
+ - type: Transform
+ pos: 39.5,47.5
+ parent: 1
+ - uid: 13327
+ components:
+ - type: Transform
+ pos: 34.5,51.5
+ parent: 1
+ - uid: 13328
+ components:
+ - type: Transform
+ pos: 34.5,52.5
+ parent: 1
+ - uid: 13329
+ components:
+ - type: Transform
+ pos: 34.5,53.5
+ parent: 1
+ - uid: 13330
+ components:
+ - type: Transform
+ pos: 34.5,54.5
+ parent: 1
+ - uid: 13331
+ components:
+ - type: Transform
+ pos: 34.5,55.5
+ parent: 1
+ - uid: 13332
+ components:
+ - type: Transform
+ pos: 34.5,56.5
+ parent: 1
+ - uid: 13333
+ components:
+ - type: Transform
+ pos: 34.5,57.5
+ parent: 1
+ - uid: 13334
+ components:
+ - type: Transform
+ pos: 34.5,58.5
+ parent: 1
+ - uid: 13335
+ components:
+ - type: Transform
+ pos: 34.5,59.5
+ parent: 1
+ - uid: 13336
+ components:
+ - type: Transform
+ pos: 34.5,60.5
+ parent: 1
+ - uid: 13337
+ components:
+ - type: Transform
+ pos: 34.5,61.5
+ parent: 1
+ - uid: 13338
+ components:
+ - type: Transform
+ pos: 34.5,62.5
+ parent: 1
+ - uid: 13339
+ components:
+ - type: Transform
+ pos: 35.5,62.5
+ parent: 1
+ - uid: 13340
+ components:
+ - type: Transform
+ pos: 36.5,62.5
+ parent: 1
+ - uid: 13341
+ components:
+ - type: Transform
+ pos: 38.5,62.5
+ parent: 1
+ - uid: 13342
+ components:
+ - type: Transform
+ pos: 37.5,62.5
+ parent: 1
+ - uid: 13343
+ components:
+ - type: Transform
+ pos: 38.5,61.5
+ parent: 1
+ - uid: 13344
+ components:
+ - type: Transform
+ pos: 38.5,60.5
+ parent: 1
+ - uid: 13345
+ components:
+ - type: Transform
+ pos: 38.5,59.5
+ parent: 1
+ - uid: 13346
+ components:
+ - type: Transform
+ pos: 38.5,58.5
+ parent: 1
+ - uid: 13347
+ components:
+ - type: Transform
+ pos: 38.5,57.5
+ parent: 1
+ - uid: 13348
+ components:
+ - type: Transform
+ pos: 38.5,56.5
+ parent: 1
+ - uid: 13349
+ components:
+ - type: Transform
+ pos: 38.5,55.5
+ parent: 1
+ - uid: 13350
+ components:
+ - type: Transform
+ pos: 38.5,54.5
+ parent: 1
+ - uid: 13351
+ components:
+ - type: Transform
+ pos: 38.5,53.5
+ parent: 1
+ - uid: 13352
+ components:
+ - type: Transform
+ pos: 38.5,52.5
+ parent: 1
+ - uid: 13353
+ components:
+ - type: Transform
+ pos: 38.5,51.5
+ parent: 1
+ - uid: 13354
+ components:
+ - type: Transform
+ pos: 39.5,54.5
+ parent: 1
+ - uid: 13355
+ components:
+ - type: Transform
+ pos: 40.5,54.5
+ parent: 1
+ - uid: 13356
+ components:
+ - type: Transform
+ pos: 40.5,58.5
+ parent: 1
+ - uid: 13357
+ components:
+ - type: Transform
+ pos: 39.5,58.5
+ parent: 1
+ - uid: 13358
+ components:
+ - type: Transform
+ pos: 40.5,62.5
+ parent: 1
+ - uid: 13359
+ components:
+ - type: Transform
+ pos: 39.5,62.5
+ parent: 1
+ - uid: 13360
+ components:
+ - type: Transform
+ pos: 33.5,62.5
+ parent: 1
+ - uid: 13361
+ components:
+ - type: Transform
+ pos: 32.5,62.5
+ parent: 1
+ - uid: 13362
+ components:
+ - type: Transform
+ pos: 31.5,62.5
+ parent: 1
+ - uid: 13363
+ components:
+ - type: Transform
+ pos: 31.5,61.5
+ parent: 1
+ - uid: 13364
+ components:
+ - type: Transform
+ pos: 31.5,63.5
+ parent: 1
+ - uid: 13365
+ components:
+ - type: Transform
+ pos: 31.5,57.5
+ parent: 1
+ - uid: 13366
+ components:
+ - type: Transform
+ pos: 31.5,58.5
+ parent: 1
+ - uid: 13367
+ components:
+ - type: Transform
+ pos: 31.5,59.5
+ parent: 1
+ - uid: 13368
+ components:
+ - type: Transform
+ pos: 32.5,58.5
+ parent: 1
+ - uid: 13369
+ components:
+ - type: Transform
+ pos: 33.5,58.5
+ parent: 1
+ - uid: 13370
+ components:
+ - type: Transform
+ pos: 31.5,53.5
+ parent: 1
+ - uid: 13371
+ components:
+ - type: Transform
+ pos: 31.5,54.5
+ parent: 1
+ - uid: 13372
+ components:
+ - type: Transform
+ pos: 31.5,55.5
+ parent: 1
+ - uid: 13373
+ components:
+ - type: Transform
+ pos: 32.5,54.5
+ parent: 1
+ - uid: 13374
+ components:
+ - type: Transform
+ pos: 33.5,54.5
+ parent: 1
+ - uid: 13375
+ components:
+ - type: Transform
+ pos: 48.5,33.5
+ parent: 1
+ - uid: 13376
+ components:
+ - type: Transform
+ pos: 47.5,33.5
+ parent: 1
+ - uid: 13377
+ components:
+ - type: Transform
+ pos: 46.5,33.5
+ parent: 1
+ - uid: 13378
+ components:
+ - type: Transform
+ pos: 45.5,33.5
+ parent: 1
+ - uid: 13379
+ components:
+ - type: Transform
+ pos: 44.5,33.5
+ parent: 1
+ - uid: 13380
+ components:
+ - type: Transform
+ pos: 44.5,32.5
+ parent: 1
+ - uid: 13381
+ components:
+ - type: Transform
+ pos: 43.5,32.5
+ parent: 1
+ - uid: 13382
+ components:
+ - type: Transform
+ pos: 42.5,32.5
+ parent: 1
+ - uid: 13383
+ components:
+ - type: Transform
+ pos: 42.5,31.5
+ parent: 1
+ - uid: 13384
+ components:
+ - type: Transform
+ pos: 41.5,31.5
+ parent: 1
+ - uid: 13385
+ components:
+ - type: Transform
+ pos: 41.5,30.5
+ parent: 1
+ - uid: 13386
+ components:
+ - type: Transform
+ pos: 40.5,30.5
+ parent: 1
+ - uid: 13387
+ components:
+ - type: Transform
+ pos: 40.5,29.5
+ parent: 1
+ - uid: 13388
+ components:
+ - type: Transform
+ pos: 40.5,28.5
+ parent: 1
+ - uid: 13389
+ components:
+ - type: Transform
+ pos: 39.5,28.5
+ parent: 1
+ - uid: 13390
+ components:
+ - type: Transform
+ pos: 39.5,27.5
+ parent: 1
+ - uid: 13391
+ components:
+ - type: Transform
+ pos: 39.5,26.5
+ parent: 1
+ - uid: 13392
+ components:
+ - type: Transform
+ pos: 39.5,25.5
+ parent: 1
+ - uid: 13393
+ components:
+ - type: Transform
+ pos: 39.5,24.5
+ parent: 1
+ - uid: 13394
+ components:
+ - type: Transform
+ pos: 39.5,23.5
+ parent: 1
+ - uid: 13395
+ components:
+ - type: Transform
+ pos: 39.5,22.5
+ parent: 1
+ - uid: 13396
+ components:
+ - type: Transform
+ pos: 39.5,21.5
+ parent: 1
+ - uid: 13397
+ components:
+ - type: Transform
+ pos: 39.5,20.5
+ parent: 1
+ - uid: 13398
+ components:
+ - type: Transform
+ pos: 40.5,20.5
+ parent: 1
+ - uid: 13399
+ components:
+ - type: Transform
+ pos: 40.5,18.5
+ parent: 1
+ - uid: 13400
+ components:
+ - type: Transform
+ pos: 40.5,19.5
+ parent: 1
+ - uid: 13401
+ components:
+ - type: Transform
+ pos: 41.5,18.5
+ parent: 1
+ - uid: 13402
+ components:
+ - type: Transform
+ pos: 41.5,17.5
+ parent: 1
+ - uid: 13403
+ components:
+ - type: Transform
+ pos: 42.5,17.5
+ parent: 1
+ - uid: 13404
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 1
+ - uid: 13405
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 1
+ - uid: 13406
+ components:
+ - type: Transform
+ pos: 44.5,16.5
+ parent: 1
+ - uid: 13407
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 1
+ - uid: 13408
+ components:
+ - type: Transform
+ pos: 45.5,15.5
+ parent: 1
+ - uid: 13409
+ components:
+ - type: Transform
+ pos: 46.5,15.5
+ parent: 1
+ - uid: 13410
+ components:
+ - type: Transform
+ pos: 48.5,15.5
+ parent: 1
+ - uid: 13411
+ components:
+ - type: Transform
+ pos: 49.5,15.5
+ parent: 1
+ - uid: 13412
+ components:
+ - type: Transform
+ pos: 50.5,15.5
+ parent: 1
+ - uid: 13413
+ components:
+ - type: Transform
+ pos: 51.5,15.5
+ parent: 1
+ - uid: 13414
+ components:
+ - type: Transform
+ pos: 52.5,15.5
+ parent: 1
+ - uid: 13415
+ components:
+ - type: Transform
+ pos: 53.5,15.5
+ parent: 1
+ - uid: 13416
+ components:
+ - type: Transform
+ pos: 54.5,15.5
+ parent: 1
+ - uid: 13417
+ components:
+ - type: Transform
+ pos: 47.5,15.5
+ parent: 1
+ - uid: 13418
+ components:
+ - type: Transform
+ pos: 54.5,16.5
+ parent: 1
+ - uid: 13419
+ components:
+ - type: Transform
+ pos: 55.5,16.5
+ parent: 1
+ - uid: 13420
+ components:
+ - type: Transform
+ pos: 56.5,16.5
+ parent: 1
+ - uid: 13421
+ components:
+ - type: Transform
+ pos: 56.5,17.5
+ parent: 1
+ - uid: 13422
+ components:
+ - type: Transform
+ pos: 57.5,17.5
+ parent: 1
+ - uid: 13423
+ components:
+ - type: Transform
+ pos: 57.5,18.5
+ parent: 1
+ - uid: 13424
+ components:
+ - type: Transform
+ pos: 58.5,18.5
+ parent: 1
+ - uid: 13425
+ components:
+ - type: Transform
+ pos: 58.5,19.5
+ parent: 1
+ - uid: 13426
+ components:
+ - type: Transform
+ pos: 58.5,20.5
+ parent: 1
+ - uid: 13427
+ components:
+ - type: Transform
+ pos: 59.5,20.5
+ parent: 1
+ - uid: 13428
+ components:
+ - type: Transform
+ pos: 59.5,21.5
+ parent: 1
+ - uid: 13429
+ components:
+ - type: Transform
+ pos: 59.5,22.5
+ parent: 1
+ - uid: 13430
+ components:
+ - type: Transform
+ pos: 59.5,23.5
+ parent: 1
+ - uid: 13431
+ components:
+ - type: Transform
+ pos: 59.5,24.5
+ parent: 1
+ - uid: 13432
+ components:
+ - type: Transform
+ pos: 59.5,25.5
+ parent: 1
+ - uid: 13433
+ components:
+ - type: Transform
+ pos: 59.5,26.5
+ parent: 1
+ - uid: 13434
+ components:
+ - type: Transform
+ pos: 59.5,27.5
+ parent: 1
+ - uid: 13435
+ components:
+ - type: Transform
+ pos: 59.5,28.5
+ parent: 1
+ - uid: 13436
+ components:
+ - type: Transform
+ pos: 58.5,28.5
+ parent: 1
+ - uid: 13437
+ components:
+ - type: Transform
+ pos: 58.5,29.5
+ parent: 1
+ - uid: 13438
+ components:
+ - type: Transform
+ pos: 58.5,30.5
+ parent: 1
+ - uid: 13439
+ components:
+ - type: Transform
+ pos: 57.5,30.5
+ parent: 1
+ - uid: 13440
+ components:
+ - type: Transform
+ pos: 57.5,31.5
+ parent: 1
+ - uid: 13441
+ components:
+ - type: Transform
+ pos: 56.5,31.5
+ parent: 1
+ - uid: 13442
+ components:
+ - type: Transform
+ pos: 56.5,32.5
+ parent: 1
+ - uid: 13443
+ components:
+ - type: Transform
+ pos: 55.5,32.5
+ parent: 1
+ - uid: 13444
+ components:
+ - type: Transform
+ pos: 54.5,32.5
+ parent: 1
+ - uid: 13445
+ components:
+ - type: Transform
+ pos: 54.5,33.5
+ parent: 1
+ - uid: 13446
+ components:
+ - type: Transform
+ pos: 53.5,33.5
+ parent: 1
+ - uid: 13447
+ components:
+ - type: Transform
+ pos: 53.5,34.5
+ parent: 1
+ - uid: 13448
+ components:
+ - type: Transform
+ pos: 44.5,34.5
+ parent: 1
+ - uid: 13449
+ components:
+ - type: Transform
+ pos: 43.5,34.5
+ parent: 1
+ - uid: 13450
+ components:
+ - type: Transform
+ pos: 42.5,35.5
+ parent: 1
+ - uid: 13451
+ components:
+ - type: Transform
+ pos: 41.5,35.5
+ parent: 1
+ - uid: 13452
+ components:
+ - type: Transform
+ pos: 41.5,36.5
+ parent: 1
+ - uid: 13453
+ components:
+ - type: Transform
+ pos: 41.5,37.5
+ parent: 1
+ - uid: 13454
+ components:
+ - type: Transform
+ pos: 41.5,38.5
+ parent: 1
+ - uid: 13455
+ components:
+ - type: Transform
+ pos: 41.5,39.5
+ parent: 1
+ - uid: 13456
+ components:
+ - type: Transform
+ pos: 41.5,40.5
+ parent: 1
+ - uid: 13457
+ components:
+ - type: Transform
+ pos: 41.5,41.5
+ parent: 1
+ - uid: 13458
+ components:
+ - type: Transform
+ pos: 42.5,41.5
+ parent: 1
+ - uid: 13459
+ components:
+ - type: Transform
+ pos: 42.5,42.5
+ parent: 1
+ - uid: 13460
+ components:
+ - type: Transform
+ pos: 43.5,42.5
+ parent: 1
+ - uid: 13461
+ components:
+ - type: Transform
+ pos: 44.5,42.5
+ parent: 1
+ - uid: 13462
+ components:
+ - type: Transform
+ pos: 41.5,24.5
+ parent: 1
+ - uid: 13463
+ components:
+ - type: Transform
+ pos: 40.5,24.5
+ parent: 1
+ - uid: 13636
+ components:
+ - type: Transform
+ pos: 135.5,83.5
+ parent: 1
+ - uid: 13686
+ components:
+ - type: Transform
+ pos: 135.5,84.5
+ parent: 1
+ - uid: 13692
+ components:
+ - type: Transform
+ pos: 135.5,85.5
+ parent: 1
+ - uid: 13773
+ components:
+ - type: Transform
+ pos: 118.5,58.5
+ parent: 1
+ - uid: 13793
+ components:
+ - type: Transform
+ pos: 164.5,137.5
+ parent: 1
+ - uid: 13851
+ components:
+ - type: Transform
+ pos: 164.5,139.5
+ parent: 1
+ - uid: 13853
+ components:
+ - type: Transform
+ pos: 165.5,135.5
+ parent: 1
+ - uid: 13878
+ components:
+ - type: Transform
+ pos: 120.5,125.5
+ parent: 1
+ - uid: 13892
+ components:
+ - type: Transform
+ pos: 96.5,125.5
+ parent: 1
+ - uid: 13893
+ components:
+ - type: Transform
+ pos: 121.5,124.5
+ parent: 1
+ - uid: 13894
+ components:
+ - type: Transform
+ pos: 120.5,124.5
+ parent: 1
+ - uid: 13895
+ components:
+ - type: Transform
+ pos: 119.5,124.5
+ parent: 1
+ - uid: 13896
+ components:
+ - type: Transform
+ pos: 118.5,124.5
+ parent: 1
+ - uid: 13897
+ components:
+ - type: Transform
+ pos: 117.5,124.5
+ parent: 1
+ - uid: 13898
+ components:
+ - type: Transform
+ pos: 116.5,124.5
+ parent: 1
+ - uid: 13899
+ components:
+ - type: Transform
+ pos: 115.5,124.5
+ parent: 1
+ - uid: 13900
+ components:
+ - type: Transform
+ pos: 114.5,124.5
+ parent: 1
+ - uid: 13901
+ components:
+ - type: Transform
+ pos: 113.5,124.5
+ parent: 1
+ - uid: 13902
+ components:
+ - type: Transform
+ pos: 112.5,124.5
+ parent: 1
+ - uid: 13903
+ components:
+ - type: Transform
+ pos: 111.5,124.5
+ parent: 1
+ - uid: 13904
+ components:
+ - type: Transform
+ pos: 110.5,124.5
+ parent: 1
+ - uid: 13905
+ components:
+ - type: Transform
+ pos: 109.5,124.5
+ parent: 1
+ - uid: 13906
+ components:
+ - type: Transform
+ pos: 108.5,124.5
+ parent: 1
+ - uid: 13907
+ components:
+ - type: Transform
+ pos: 107.5,124.5
+ parent: 1
+ - uid: 13908
+ components:
+ - type: Transform
+ pos: 106.5,124.5
+ parent: 1
+ - uid: 13909
+ components:
+ - type: Transform
+ pos: 105.5,124.5
+ parent: 1
+ - uid: 13910
+ components:
+ - type: Transform
+ pos: 103.5,124.5
+ parent: 1
+ - uid: 13911
+ components:
+ - type: Transform
+ pos: 104.5,124.5
+ parent: 1
+ - uid: 13912
+ components:
+ - type: Transform
+ pos: 101.5,124.5
+ parent: 1
+ - uid: 13913
+ components:
+ - type: Transform
+ pos: 100.5,124.5
+ parent: 1
+ - uid: 13914
+ components:
+ - type: Transform
+ pos: 102.5,124.5
+ parent: 1
+ - uid: 13915
+ components:
+ - type: Transform
+ pos: 98.5,124.5
+ parent: 1
+ - uid: 13916
+ components:
+ - type: Transform
+ pos: 97.5,124.5
+ parent: 1
+ - uid: 13917
+ components:
+ - type: Transform
+ pos: 96.5,124.5
+ parent: 1
+ - uid: 13918
+ components:
+ - type: Transform
+ pos: 95.5,124.5
+ parent: 1
+ - uid: 13920
+ components:
+ - type: Transform
+ pos: 99.5,124.5
+ parent: 1
+ - uid: 13921
+ components:
+ - type: Transform
+ pos: 94.5,124.5
+ parent: 1
+ - uid: 13923
+ components:
+ - type: Transform
+ pos: 94.5,125.5
+ parent: 1
+ - uid: 13924
+ components:
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - uid: 13925
+ components:
+ - type: Transform
+ pos: 94.5,127.5
+ parent: 1
+ - uid: 13926
+ components:
+ - type: Transform
+ pos: 122.5,154.5
+ parent: 1
+ - uid: 13927
+ components:
+ - type: Transform
+ pos: 94.5,129.5
+ parent: 1
+ - uid: 13928
+ components:
+ - type: Transform
+ pos: 94.5,130.5
+ parent: 1
+ - uid: 13929
+ components:
+ - type: Transform
+ pos: 94.5,131.5
+ parent: 1
+ - uid: 13930
+ components:
+ - type: Transform
+ pos: 94.5,133.5
+ parent: 1
+ - uid: 13931
+ components:
+ - type: Transform
+ pos: 94.5,134.5
+ parent: 1
+ - uid: 13932
+ components:
+ - type: Transform
+ pos: 95.5,136.5
+ parent: 1
+ - uid: 13933
+ components:
+ - type: Transform
+ pos: 94.5,135.5
+ parent: 1
+ - uid: 13934
+ components:
+ - type: Transform
+ pos: 94.5,136.5
+ parent: 1
+ - uid: 13935
+ components:
+ - type: Transform
+ pos: 94.5,138.5
+ parent: 1
+ - uid: 13936
+ components:
+ - type: Transform
+ pos: 94.5,137.5
+ parent: 1
+ - uid: 13937
+ components:
+ - type: Transform
+ pos: 94.5,139.5
+ parent: 1
+ - uid: 13938
+ components:
+ - type: Transform
+ pos: 94.5,128.5
+ parent: 1
+ - uid: 13939
+ components:
+ - type: Transform
+ pos: 94.5,140.5
+ parent: 1
+ - uid: 13940
+ components:
+ - type: Transform
+ pos: 94.5,142.5
+ parent: 1
+ - uid: 13941
+ components:
+ - type: Transform
+ pos: 95.5,145.5
+ parent: 1
+ - uid: 13942
+ components:
+ - type: Transform
+ pos: 94.5,143.5
+ parent: 1
+ - uid: 13943
+ components:
+ - type: Transform
+ pos: 94.5,144.5
+ parent: 1
+ - uid: 13944
+ components:
+ - type: Transform
+ pos: 94.5,146.5
+ parent: 1
+ - uid: 13945
+ components:
+ - type: Transform
+ pos: 94.5,147.5
+ parent: 1
+ - uid: 13946
+ components:
+ - type: Transform
+ pos: 94.5,148.5
+ parent: 1
+ - uid: 13947
+ components:
+ - type: Transform
+ pos: 94.5,145.5
+ parent: 1
+ - uid: 13948
+ components:
+ - type: Transform
+ pos: 94.5,150.5
+ parent: 1
+ - uid: 13949
+ components:
+ - type: Transform
+ pos: 94.5,151.5
+ parent: 1
+ - uid: 13950
+ components:
+ - type: Transform
+ pos: 94.5,152.5
+ parent: 1
+ - uid: 13951
+ components:
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - uid: 13952
+ components:
+ - type: Transform
+ pos: 97.5,145.5
+ parent: 1
+ - uid: 13957
+ components:
+ - type: Transform
+ pos: 98.5,145.5
+ parent: 1
+ - uid: 13958
+ components:
+ - type: Transform
+ pos: 98.5,144.5
+ parent: 1
+ - uid: 13970
+ components:
+ - type: Transform
+ pos: 121.5,136.5
+ parent: 1
+ - uid: 13972
+ components:
+ - type: Transform
+ pos: 121.5,138.5
+ parent: 1
+ - uid: 13974
+ components:
+ - type: Transform
+ pos: 122.5,148.5
+ parent: 1
+ - uid: 13975
+ components:
+ - type: Transform
+ pos: 122.5,149.5
+ parent: 1
+ - uid: 13976
+ components:
+ - type: Transform
+ pos: 122.5,150.5
+ parent: 1
+ - uid: 13977
+ components:
+ - type: Transform
+ pos: 122.5,151.5
+ parent: 1
+ - uid: 13978
+ components:
+ - type: Transform
+ pos: 122.5,152.5
+ parent: 1
+ - uid: 13979
+ components:
+ - type: Transform
+ pos: 122.5,153.5
+ parent: 1
+ - uid: 13980
+ components:
+ - type: Transform
+ pos: 122.5,155.5
+ parent: 1
+ - uid: 13981
+ components:
+ - type: Transform
+ pos: 121.5,155.5
+ parent: 1
+ - uid: 13982
+ components:
+ - type: Transform
+ pos: 120.5,155.5
+ parent: 1
+ - uid: 13983
+ components:
+ - type: Transform
+ pos: 119.5,155.5
+ parent: 1
+ - uid: 13984
+ components:
+ - type: Transform
+ pos: 117.5,155.5
+ parent: 1
+ - uid: 13986
+ components:
+ - type: Transform
+ pos: 118.5,155.5
+ parent: 1
+ - uid: 13987
+ components:
+ - type: Transform
+ pos: 115.5,155.5
+ parent: 1
+ - uid: 13988
+ components:
+ - type: Transform
+ pos: 113.5,155.5
+ parent: 1
+ - uid: 13989
+ components:
+ - type: Transform
+ pos: 116.5,155.5
+ parent: 1
+ - uid: 13990
+ components:
+ - type: Transform
+ pos: 112.5,155.5
+ parent: 1
+ - uid: 13991
+ components:
+ - type: Transform
+ pos: 111.5,155.5
+ parent: 1
+ - uid: 13992
+ components:
+ - type: Transform
+ pos: 105.5,155.5
+ parent: 1
+ - uid: 13993
+ components:
+ - type: Transform
+ pos: 110.5,155.5
+ parent: 1
+ - uid: 13994
+ components:
+ - type: Transform
+ pos: 109.5,155.5
+ parent: 1
+ - uid: 13995
+ components:
+ - type: Transform
+ pos: 107.5,155.5
+ parent: 1
+ - uid: 13996
+ components:
+ - type: Transform
+ pos: 108.5,155.5
+ parent: 1
+ - uid: 13997
+ components:
+ - type: Transform
+ pos: 106.5,155.5
+ parent: 1
+ - uid: 13998
+ components:
+ - type: Transform
+ pos: 104.5,155.5
+ parent: 1
+ - uid: 13999
+ components:
+ - type: Transform
+ pos: 111.5,154.5
+ parent: 1
+ - uid: 14000
+ components:
+ - type: Transform
+ pos: 103.5,155.5
+ parent: 1
+ - uid: 14001
+ components:
+ - type: Transform
+ pos: 101.5,155.5
+ parent: 1
+ - uid: 14002
+ components:
+ - type: Transform
+ pos: 102.5,155.5
+ parent: 1
+ - uid: 14003
+ components:
+ - type: Transform
+ pos: 100.5,155.5
+ parent: 1
+ - uid: 14004
+ components:
+ - type: Transform
+ pos: 99.5,155.5
+ parent: 1
+ - uid: 14005
+ components:
+ - type: Transform
+ pos: 105.5,154.5
+ parent: 1
+ - uid: 14006
+ components:
+ - type: Transform
+ pos: 98.5,155.5
+ parent: 1
+ - uid: 14007
+ components:
+ - type: Transform
+ pos: 97.5,155.5
+ parent: 1
+ - uid: 14008
+ components:
+ - type: Transform
+ pos: 96.5,155.5
+ parent: 1
+ - uid: 14009
+ components:
+ - type: Transform
+ pos: 95.5,155.5
+ parent: 1
+ - uid: 14010
+ components:
+ - type: Transform
+ pos: 95.5,138.5
+ parent: 1
+ - uid: 14011
+ components:
+ - type: Transform
+ pos: 94.5,155.5
+ parent: 1
+ - uid: 14012
+ components:
+ - type: Transform
+ pos: 94.5,154.5
+ parent: 1
+ - uid: 14013
+ components:
+ - type: Transform
+ pos: 94.5,153.5
+ parent: 1
+ - uid: 14014
+ components:
+ - type: Transform
+ pos: 94.5,149.5
+ parent: 1
+ - uid: 14015
+ components:
+ - type: Transform
+ pos: 119.5,141.5
+ parent: 1
+ - uid: 14016
+ components:
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - uid: 14017
+ components:
+ - type: Transform
+ pos: 97.5,136.5
+ parent: 1
+ - uid: 14018
+ components:
+ - type: Transform
+ pos: 97.5,135.5
+ parent: 1
+ - uid: 14019
+ components:
+ - type: Transform
+ pos: 97.5,134.5
+ parent: 1
+ - uid: 14020
+ components:
+ - type: Transform
+ pos: 97.5,133.5
+ parent: 1
+ - uid: 14021
+ components:
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - uid: 14022
+ components:
+ - type: Transform
+ pos: 97.5,138.5
+ parent: 1
+ - uid: 14023
+ components:
+ - type: Transform
+ pos: 97.5,139.5
+ parent: 1
+ - uid: 14024
+ components:
+ - type: Transform
+ pos: 97.5,140.5
+ parent: 1
+ - uid: 14025
+ components:
+ - type: Transform
+ pos: 97.5,141.5
+ parent: 1
+ - uid: 14033
+ components:
+ - type: Transform
+ pos: 97.5,137.5
+ parent: 1
+ - uid: 14034
+ components:
+ - type: Transform
+ pos: 119.5,137.5
+ parent: 1
+ - uid: 14035
+ components:
+ - type: Transform
+ pos: 119.5,136.5
+ parent: 1
+ - uid: 14036
+ components:
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - uid: 14037
+ components:
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - uid: 14038
+ components:
+ - type: Transform
+ pos: 119.5,138.5
+ parent: 1
+ - uid: 14039
+ components:
+ - type: Transform
+ pos: 119.5,133.5
+ parent: 1
+ - uid: 14040
+ components:
+ - type: Transform
+ pos: 119.5,134.5
+ parent: 1
+ - uid: 14041
+ components:
+ - type: Transform
+ pos: 119.5,135.5
+ parent: 1
+ - uid: 14042
+ components:
+ - type: Transform
+ pos: 119.5,140.5
+ parent: 1
+ - uid: 14043
+ components:
+ - type: Transform
+ pos: 119.5,139.5
+ parent: 1
+ - uid: 14051
+ components:
+ - type: Transform
+ pos: 97.5,67.5
+ parent: 1
+ - uid: 14057
+ components:
+ - type: Transform
+ pos: 164.5,131.5
+ parent: 1
+ - uid: 14064
+ components:
+ - type: Transform
+ pos: 115.5,62.5
+ parent: 1
+ - uid: 14065
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 1
+ - uid: 14066
+ components:
+ - type: Transform
+ pos: 115.5,65.5
+ parent: 1
+ - uid: 14072
+ components:
+ - type: Transform
+ pos: 105.5,153.5
+ parent: 1
+ - uid: 14073
+ components:
+ - type: Transform
+ pos: 105.5,152.5
+ parent: 1
+ - uid: 14074
+ components:
+ - type: Transform
+ pos: 105.5,151.5
+ parent: 1
+ - uid: 14075
+ components:
+ - type: Transform
+ pos: 105.5,150.5
+ parent: 1
+ - uid: 14076
+ components:
+ - type: Transform
+ pos: 105.5,149.5
+ parent: 1
+ - uid: 14077
+ components:
+ - type: Transform
+ pos: 106.5,149.5
+ parent: 1
+ - uid: 14078
+ components:
+ - type: Transform
+ pos: 107.5,149.5
+ parent: 1
+ - uid: 14079
+ components:
+ - type: Transform
+ pos: 108.5,149.5
+ parent: 1
+ - uid: 14080
+ components:
+ - type: Transform
+ pos: 109.5,149.5
+ parent: 1
+ - uid: 14081
+ components:
+ - type: Transform
+ pos: 110.5,149.5
+ parent: 1
+ - uid: 14082
+ components:
+ - type: Transform
+ pos: 111.5,149.5
+ parent: 1
+ - uid: 14083
+ components:
+ - type: Transform
+ pos: 111.5,150.5
+ parent: 1
+ - uid: 14084
+ components:
+ - type: Transform
+ pos: 111.5,151.5
+ parent: 1
+ - uid: 14085
+ components:
+ - type: Transform
+ pos: 111.5,152.5
+ parent: 1
+ - uid: 14086
+ components:
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - uid: 14252
+ components:
+ - type: Transform
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 14279
+ components:
+ - type: Transform
+ pos: 88.5,53.5
+ parent: 1
+ - uid: 14301
+ components:
+ - type: Transform
+ pos: 122.5,141.5
+ parent: 1
+ - uid: 14356
+ components:
+ - type: Transform
+ pos: 114.5,155.5
+ parent: 1
+ - uid: 14357
+ components:
+ - type: Transform
+ pos: 114.5,156.5
+ parent: 1
+ - uid: 14358
+ components:
+ - type: Transform
+ pos: 114.5,157.5
+ parent: 1
+ - uid: 14361
+ components:
+ - type: Transform
+ pos: 120.5,126.5
+ parent: 1
+ - uid: 14362
+ components:
+ - type: Transform
+ pos: 94.5,132.5
+ parent: 1
+ - uid: 14363
+ components:
+ - type: Transform
+ pos: 93.5,132.5
+ parent: 1
+ - uid: 14364
+ components:
+ - type: Transform
+ pos: 92.5,132.5
+ parent: 1
+ - uid: 14366
+ components:
+ - type: Transform
+ pos: 96.5,126.5
+ parent: 1
+ - uid: 14409
+ components:
+ - type: Transform
+ pos: 94.5,141.5
+ parent: 1
+ - uid: 14450
+ components:
+ - type: Transform
+ pos: 122.5,124.5
+ parent: 1
+ - uid: 14451
+ components:
+ - type: Transform
+ pos: 122.5,125.5
+ parent: 1
+ - uid: 14452
+ components:
+ - type: Transform
+ pos: 122.5,126.5
+ parent: 1
+ - uid: 14453
+ components:
+ - type: Transform
+ pos: 122.5,127.5
+ parent: 1
+ - uid: 14454
+ components:
+ - type: Transform
+ pos: 122.5,128.5
+ parent: 1
+ - uid: 14455
+ components:
+ - type: Transform
+ pos: 122.5,129.5
+ parent: 1
+ - uid: 14456
+ components:
+ - type: Transform
+ pos: 122.5,130.5
+ parent: 1
+ - uid: 14457
+ components:
+ - type: Transform
+ pos: 122.5,131.5
+ parent: 1
+ - uid: 14458
+ components:
+ - type: Transform
+ pos: 122.5,132.5
+ parent: 1
+ - uid: 14459
+ components:
+ - type: Transform
+ pos: 122.5,133.5
+ parent: 1
+ - uid: 14460
+ components:
+ - type: Transform
+ pos: 122.5,134.5
+ parent: 1
+ - uid: 14461
+ components:
+ - type: Transform
+ pos: 122.5,136.5
+ parent: 1
+ - uid: 14462
+ components:
+ - type: Transform
+ pos: 122.5,135.5
+ parent: 1
+ - uid: 14463
+ components:
+ - type: Transform
+ pos: 122.5,137.5
+ parent: 1
+ - uid: 14464
+ components:
+ - type: Transform
+ pos: 122.5,138.5
+ parent: 1
+ - uid: 14465
+ components:
+ - type: Transform
+ pos: 122.5,139.5
+ parent: 1
+ - uid: 14466
+ components:
+ - type: Transform
+ pos: 122.5,140.5
+ parent: 1
+ - uid: 14467
+ components:
+ - type: Transform
+ pos: 122.5,146.5
+ parent: 1
+ - uid: 14468
+ components:
+ - type: Transform
+ pos: 122.5,145.5
+ parent: 1
+ - uid: 14469
+ components:
+ - type: Transform
+ pos: 122.5,144.5
+ parent: 1
+ - uid: 14470
+ components:
+ - type: Transform
+ pos: 122.5,143.5
+ parent: 1
+ - uid: 14471
+ components:
+ - type: Transform
+ pos: 122.5,147.5
+ parent: 1
+ - uid: 14472
+ components:
+ - type: Transform
+ pos: 122.5,142.5
+ parent: 1
+ - uid: 14475
+ components:
+ - type: Transform
+ pos: 131.5,121.5
+ parent: 1
+ - uid: 14476
+ components:
+ - type: Transform
+ pos: 132.5,121.5
+ parent: 1
+ - uid: 14492
+ components:
+ - type: Transform
+ pos: 134.5,123.5
+ parent: 1
+ - uid: 14509
+ components:
+ - type: Transform
+ pos: 132.5,124.5
+ parent: 1
+ - uid: 14552
+ components:
+ - type: Transform
+ pos: 126.5,130.5
+ parent: 1
+ - uid: 14651
+ components:
+ - type: Transform
+ pos: 65.5,156.5
+ parent: 1
+ - uid: 14661
+ components:
+ - type: Transform
+ pos: 82.5,156.5
+ parent: 1
+ - uid: 14662
+ components:
+ - type: Transform
+ pos: 79.5,155.5
+ parent: 1
+ - uid: 14663
+ components:
+ - type: Transform
+ pos: 76.5,155.5
+ parent: 1
+ - uid: 14684
+ components:
+ - type: Transform
+ pos: 55.5,130.5
+ parent: 1
+ - uid: 14685
+ components:
+ - type: Transform
+ pos: 53.5,133.5
+ parent: 1
+ - uid: 14686
+ components:
+ - type: Transform
+ pos: 56.5,136.5
+ parent: 1
+ - uid: 14693
+ components:
+ - type: Transform
+ pos: 30.5,79.5
+ parent: 1
+ - uid: 14719
+ components:
+ - type: Transform
+ pos: 27.5,76.5
+ parent: 1
+ - uid: 14722
+ components:
+ - type: Transform
+ pos: 27.5,74.5
+ parent: 1
+ - uid: 14742
+ components:
+ - type: Transform
+ pos: 71.5,49.5
+ parent: 1
+ - uid: 14753
+ components:
+ - type: Transform
+ pos: 104.5,35.5
+ parent: 1
+ - uid: 14758
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 14759
+ components:
+ - type: Transform
+ pos: 107.5,35.5
+ parent: 1
+ - uid: 14760
+ components:
+ - type: Transform
+ pos: 109.5,35.5
+ parent: 1
+ - uid: 14771
+ components:
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 1
+ - uid: 14773
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 1
+ - uid: 14820
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - uid: 14821
+ components:
+ - type: Transform
+ pos: 123.5,163.5
+ parent: 1
+ - uid: 14956
+ components:
+ - type: Transform
+ pos: 123.5,140.5
+ parent: 1
+ - uid: 14959
+ components:
+ - type: Transform
+ pos: 124.5,140.5
+ parent: 1
+ - uid: 15046
+ components:
+ - type: Transform
+ pos: 99.5,157.5
+ parent: 1
+ - uid: 15053
+ components:
+ - type: Transform
+ pos: 111.5,165.5
+ parent: 1
+ - uid: 15057
+ components:
+ - type: Transform
+ pos: 99.5,156.5
+ parent: 1
+ - uid: 15062
+ components:
+ - type: Transform
+ pos: 97.5,158.5
+ parent: 1
+ - uid: 15063
+ components:
+ - type: Transform
+ pos: 98.5,158.5
+ parent: 1
+ - uid: 15082
+ components:
+ - type: Transform
+ pos: 92.5,168.5
+ parent: 1
+ - uid: 15098
+ components:
+ - type: Transform
+ pos: 33.5,122.5
+ parent: 1
+ - uid: 15099
+ components:
+ - type: Transform
+ pos: 34.5,122.5
+ parent: 1
+ - uid: 15109
+ components:
+ - type: Transform
+ pos: 48.5,120.5
+ parent: 1
+ - uid: 15110
+ components:
+ - type: Transform
+ pos: 91.5,155.5
+ parent: 1
+ - uid: 15112
+ components:
+ - type: Transform
+ pos: 90.5,156.5
+ parent: 1
+ - uid: 15113
+ components:
+ - type: Transform
+ pos: 90.5,157.5
+ parent: 1
+ - uid: 15138
+ components:
+ - type: Transform
+ pos: 130.5,142.5
+ parent: 1
+ - uid: 15139
+ components:
+ - type: Transform
+ pos: 131.5,142.5
+ parent: 1
+ - uid: 15140
+ components:
+ - type: Transform
+ pos: 132.5,142.5
+ parent: 1
+ - uid: 15141
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 15142
+ components:
+ - type: Transform
+ pos: 134.5,142.5
+ parent: 1
+ - uid: 15143
+ components:
+ - type: Transform
+ pos: 134.5,141.5
+ parent: 1
+ - uid: 15145
+ components:
+ - type: Transform
+ pos: 46.5,126.5
+ parent: 1
+ - uid: 15147
+ components:
+ - type: Transform
+ pos: 135.5,138.5
+ parent: 1
+ - uid: 15148
+ components:
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - uid: 15149
+ components:
+ - type: Transform
+ pos: 135.5,136.5
+ parent: 1
+ - uid: 15150
+ components:
+ - type: Transform
+ pos: 135.5,135.5
+ parent: 1
+ - uid: 15151
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - uid: 15152
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - uid: 15153
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - uid: 15154
+ components:
+ - type: Transform
+ pos: 134.5,132.5
+ parent: 1
+ - uid: 15155
+ components:
+ - type: Transform
+ pos: 133.5,132.5
+ parent: 1
+ - uid: 15156
+ components:
+ - type: Transform
+ pos: 132.5,132.5
+ parent: 1
+ - uid: 15157
+ components:
+ - type: Transform
+ pos: 131.5,132.5
+ parent: 1
+ - uid: 15158
+ components:
+ - type: Transform
+ pos: 130.5,132.5
+ parent: 1
+ - uid: 15159
+ components:
+ - type: Transform
+ pos: 129.5,132.5
+ parent: 1
+ - uid: 15160
+ components:
+ - type: Transform
+ pos: 128.5,132.5
+ parent: 1
+ - uid: 15161
+ components:
+ - type: Transform
+ pos: 128.5,131.5
+ parent: 1
+ - uid: 15162
+ components:
+ - type: Transform
+ pos: 128.5,130.5
+ parent: 1
+ - uid: 15163
+ components:
+ - type: Transform
+ pos: 128.5,129.5
+ parent: 1
+ - uid: 15164
+ components:
+ - type: Transform
+ pos: 128.5,128.5
+ parent: 1
+ - uid: 15165
+ components:
+ - type: Transform
+ pos: 128.5,127.5
+ parent: 1
+ - uid: 15166
+ components:
+ - type: Transform
+ pos: 128.5,126.5
+ parent: 1
+ - uid: 15167
+ components:
+ - type: Transform
+ pos: 128.5,125.5
+ parent: 1
+ - uid: 15168
+ components:
+ - type: Transform
+ pos: 128.5,124.5
+ parent: 1
+ - uid: 15169
+ components:
+ - type: Transform
+ pos: 128.5,123.5
+ parent: 1
+ - uid: 15170
+ components:
+ - type: Transform
+ pos: 128.5,122.5
+ parent: 1
+ - uid: 15171
+ components:
+ - type: Transform
+ pos: 129.5,122.5
+ parent: 1
+ - uid: 15172
+ components:
+ - type: Transform
+ pos: 130.5,122.5
+ parent: 1
+ - uid: 15176
+ components:
+ - type: Transform
+ pos: 127.5,129.5
+ parent: 1
+ - uid: 15180
+ components:
+ - type: Transform
+ pos: 126.5,129.5
+ parent: 1
+ - uid: 15182
+ components:
+ - type: Transform
+ pos: 128.5,133.5
+ parent: 1
+ - uid: 15203
+ components:
+ - type: Transform
+ pos: 128.5,134.5
+ parent: 1
+ - uid: 15204
+ components:
+ - type: Transform
+ pos: 128.5,135.5
+ parent: 1
+ - uid: 15205
+ components:
+ - type: Transform
+ pos: 128.5,136.5
+ parent: 1
+ - uid: 15206
+ components:
+ - type: Transform
+ pos: 128.5,137.5
+ parent: 1
+ - uid: 15207
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - uid: 15208
+ components:
+ - type: Transform
+ pos: 128.5,139.5
+ parent: 1
+ - uid: 15209
+ components:
+ - type: Transform
+ pos: 128.5,140.5
+ parent: 1
+ - uid: 15210
+ components:
+ - type: Transform
+ pos: 128.5,141.5
+ parent: 1
+ - uid: 15211
+ components:
+ - type: Transform
+ pos: 128.5,142.5
+ parent: 1
+ - uid: 15212
+ components:
+ - type: Transform
+ pos: 128.5,143.5
+ parent: 1
+ - uid: 15213
+ components:
+ - type: Transform
+ pos: 129.5,143.5
+ parent: 1
+ - uid: 15225
+ components:
+ - type: Transform
+ pos: 129.5,138.5
+ parent: 1
+ - uid: 15226
+ components:
+ - type: Transform
+ pos: 130.5,138.5
+ parent: 1
+ - uid: 15227
+ components:
+ - type: Transform
+ pos: 131.5,138.5
+ parent: 1
+ - uid: 15228
+ components:
+ - type: Transform
+ pos: 132.5,138.5
+ parent: 1
+ - uid: 15229
+ components:
+ - type: Transform
+ pos: 133.5,138.5
+ parent: 1
+ - uid: 15318
+ components:
+ - type: Transform
+ pos: 92.5,47.5
+ parent: 1
+ - uid: 15388
+ components:
+ - type: Transform
+ pos: 103.5,149.5
+ parent: 1
+ - uid: 15390
+ components:
+ - type: Transform
+ pos: 104.5,149.5
+ parent: 1
+ - uid: 15654
+ components:
+ - type: Transform
+ pos: 73.5,153.5
+ parent: 1
+ - uid: 15661
+ components:
+ - type: Transform
+ pos: 73.5,154.5
+ parent: 1
+ - uid: 15706
+ components:
+ - type: Transform
+ pos: 90.5,130.5
+ parent: 1
+ - uid: 15725
+ components:
+ - type: Transform
+ pos: 89.5,130.5
+ parent: 1
+ - uid: 15751
+ components:
+ - type: Transform
+ pos: 163.5,131.5
+ parent: 1
+ - uid: 15752
+ components:
+ - type: Transform
+ pos: 165.5,134.5
+ parent: 1
+ - uid: 15763
+ components:
+ - type: Transform
+ pos: 164.5,138.5
+ parent: 1
+ - uid: 15769
+ components:
+ - type: Transform
+ pos: 74.5,153.5
+ parent: 1
+ - uid: 15770
+ components:
+ - type: Transform
+ pos: 76.5,153.5
+ parent: 1
+ - uid: 15771
+ components:
+ - type: Transform
+ pos: 75.5,153.5
+ parent: 1
+ - uid: 15772
+ components:
+ - type: Transform
+ pos: 77.5,153.5
+ parent: 1
+ - uid: 15773
+ components:
+ - type: Transform
+ pos: 78.5,153.5
+ parent: 1
+ - uid: 15774
+ components:
+ - type: Transform
+ pos: 79.5,153.5
+ parent: 1
+ - uid: 15775
+ components:
+ - type: Transform
+ pos: 80.5,153.5
+ parent: 1
+ - uid: 15776
+ components:
+ - type: Transform
+ pos: 81.5,153.5
+ parent: 1
+ - uid: 15777
+ components:
+ - type: Transform
+ pos: 82.5,153.5
+ parent: 1
+ - uid: 15778
+ components:
+ - type: Transform
+ pos: 84.5,153.5
+ parent: 1
+ - uid: 15779
+ components:
+ - type: Transform
+ pos: 85.5,153.5
+ parent: 1
+ - uid: 15780
+ components:
+ - type: Transform
+ pos: 83.5,153.5
+ parent: 1
+ - uid: 15781
+ components:
+ - type: Transform
+ pos: 86.5,153.5
+ parent: 1
+ - uid: 15782
+ components:
+ - type: Transform
+ pos: 87.5,153.5
+ parent: 1
+ - uid: 15783
+ components:
+ - type: Transform
+ pos: 88.5,153.5
+ parent: 1
+ - uid: 15784
+ components:
+ - type: Transform
+ pos: 89.5,153.5
+ parent: 1
+ - uid: 15785
+ components:
+ - type: Transform
+ pos: 89.5,152.5
+ parent: 1
+ - uid: 15786
+ components:
+ - type: Transform
+ pos: 89.5,151.5
+ parent: 1
+ - uid: 15787
+ components:
+ - type: Transform
+ pos: 89.5,150.5
+ parent: 1
+ - uid: 15788
+ components:
+ - type: Transform
+ pos: 89.5,149.5
+ parent: 1
+ - uid: 15789
+ components:
+ - type: Transform
+ pos: 89.5,148.5
+ parent: 1
+ - uid: 15790
+ components:
+ - type: Transform
+ pos: 89.5,147.5
+ parent: 1
+ - uid: 15791
+ components:
+ - type: Transform
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 15792
+ components:
+ - type: Transform
+ pos: 89.5,145.5
+ parent: 1
+ - uid: 15793
+ components:
+ - type: Transform
+ pos: 89.5,144.5
+ parent: 1
+ - uid: 15794
+ components:
+ - type: Transform
+ pos: 89.5,143.5
+ parent: 1
+ - uid: 15795
+ components:
+ - type: Transform
+ pos: 89.5,142.5
+ parent: 1
+ - uid: 15796
+ components:
+ - type: Transform
+ pos: 89.5,141.5
+ parent: 1
+ - uid: 15797
+ components:
+ - type: Transform
+ pos: 89.5,140.5
+ parent: 1
+ - uid: 15798
+ components:
+ - type: Transform
+ pos: 89.5,139.5
+ parent: 1
+ - uid: 15799
+ components:
+ - type: Transform
+ pos: 89.5,137.5
+ parent: 1
+ - uid: 15800
+ components:
+ - type: Transform
+ pos: 89.5,136.5
+ parent: 1
+ - uid: 15801
+ components:
+ - type: Transform
+ pos: 89.5,135.5
+ parent: 1
+ - uid: 15802
+ components:
+ - type: Transform
+ pos: 89.5,134.5
+ parent: 1
+ - uid: 15803
+ components:
+ - type: Transform
+ pos: 89.5,133.5
+ parent: 1
+ - uid: 15804
+ components:
+ - type: Transform
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 15805
+ components:
+ - type: Transform
+ pos: 89.5,131.5
+ parent: 1
+ - uid: 15806
+ components:
+ - type: Transform
+ pos: 89.5,138.5
+ parent: 1
+ - uid: 15807
+ components:
+ - type: Transform
+ pos: 89.5,129.5
+ parent: 1
+ - uid: 15808
+ components:
+ - type: Transform
+ pos: 89.5,128.5
+ parent: 1
+ - uid: 15809
+ components:
+ - type: Transform
+ pos: 89.5,127.5
+ parent: 1
+ - uid: 15810
+ components:
+ - type: Transform
+ pos: 89.5,126.5
+ parent: 1
+ - uid: 15811
+ components:
+ - type: Transform
+ pos: 89.5,125.5
+ parent: 1
+ - uid: 15812
+ components:
+ - type: Transform
+ pos: 88.5,125.5
+ parent: 1
+ - uid: 15813
+ components:
+ - type: Transform
+ pos: 88.5,124.5
+ parent: 1
+ - uid: 15814
+ components:
+ - type: Transform
+ pos: 88.5,123.5
+ parent: 1
+ - uid: 15815
+ components:
+ - type: Transform
+ pos: 88.5,122.5
+ parent: 1
+ - uid: 15817
+ components:
+ - type: Transform
+ pos: 92.5,130.5
+ parent: 1
+ - uid: 15830
+ components:
+ - type: Transform
+ pos: 157.5,146.5
+ parent: 1
+ - uid: 15831
+ components:
+ - type: Transform
+ pos: 87.5,122.5
+ parent: 1
+ - uid: 15832
+ components:
+ - type: Transform
+ pos: 86.5,122.5
+ parent: 1
+ - uid: 15833
+ components:
+ - type: Transform
+ pos: 84.5,122.5
+ parent: 1
+ - uid: 15834
+ components:
+ - type: Transform
+ pos: 85.5,122.5
+ parent: 1
+ - uid: 15835
+ components:
+ - type: Transform
+ pos: 83.5,122.5
+ parent: 1
+ - uid: 15836
+ components:
+ - type: Transform
+ pos: 82.5,122.5
+ parent: 1
+ - uid: 15837
+ components:
+ - type: Transform
+ pos: 82.5,121.5
+ parent: 1
+ - uid: 15838
+ components:
+ - type: Transform
+ pos: 82.5,120.5
+ parent: 1
+ - uid: 15839
+ components:
+ - type: Transform
+ pos: 82.5,119.5
+ parent: 1
+ - uid: 15840
+ components:
+ - type: Transform
+ pos: 82.5,118.5
+ parent: 1
+ - uid: 15841
+ components:
+ - type: Transform
+ pos: 82.5,117.5
+ parent: 1
+ - uid: 15842
+ components:
+ - type: Transform
+ pos: 81.5,117.5
+ parent: 1
+ - uid: 15843
+ components:
+ - type: Transform
+ pos: 79.5,117.5
+ parent: 1
+ - uid: 15844
+ components:
+ - type: Transform
+ pos: 78.5,117.5
+ parent: 1
+ - uid: 15845
+ components:
+ - type: Transform
+ pos: 80.5,117.5
+ parent: 1
+ - uid: 15846
+ components:
+ - type: Transform
+ pos: 73.5,120.5
+ parent: 1
+ - uid: 15847
+ components:
+ - type: Transform
+ pos: 73.5,118.5
+ parent: 1
+ - uid: 15848
+ components:
+ - type: Transform
+ pos: 73.5,119.5
+ parent: 1
+ - uid: 15849
+ components:
+ - type: Transform
+ pos: 72.5,118.5
+ parent: 1
+ - uid: 15850
+ components:
+ - type: Transform
+ pos: 71.5,118.5
+ parent: 1
+ - uid: 15851
+ components:
+ - type: Transform
+ pos: 70.5,118.5
+ parent: 1
+ - uid: 15852
+ components:
+ - type: Transform
+ pos: 69.5,118.5
+ parent: 1
+ - uid: 15853
+ components:
+ - type: Transform
+ pos: 69.5,119.5
+ parent: 1
+ - uid: 15854
+ components:
+ - type: Transform
+ pos: 69.5,120.5
+ parent: 1
+ - uid: 15855
+ components:
+ - type: Transform
+ pos: 69.5,121.5
+ parent: 1
+ - uid: 15856
+ components:
+ - type: Transform
+ pos: 69.5,122.5
+ parent: 1
+ - uid: 15857
+ components:
+ - type: Transform
+ pos: 70.5,122.5
+ parent: 1
+ - uid: 15858
+ components:
+ - type: Transform
+ pos: 71.5,122.5
+ parent: 1
+ - uid: 15859
+ components:
+ - type: Transform
+ pos: 72.5,122.5
+ parent: 1
+ - uid: 15860
+ components:
+ - type: Transform
+ pos: 73.5,122.5
+ parent: 1
+ - uid: 15861
+ components:
+ - type: Transform
+ pos: 74.5,122.5
+ parent: 1
+ - uid: 15862
+ components:
+ - type: Transform
+ pos: 75.5,122.5
+ parent: 1
+ - uid: 15863
+ components:
+ - type: Transform
+ pos: 76.5,122.5
+ parent: 1
+ - uid: 15864
+ components:
+ - type: Transform
+ pos: 78.5,122.5
+ parent: 1
+ - uid: 15865
+ components:
+ - type: Transform
+ pos: 77.5,122.5
+ parent: 1
+ - uid: 15866
+ components:
+ - type: Transform
+ pos: 79.5,122.5
+ parent: 1
+ - uid: 15867
+ components:
+ - type: Transform
+ pos: 80.5,122.5
+ parent: 1
+ - uid: 15868
+ components:
+ - type: Transform
+ pos: 81.5,122.5
+ parent: 1
+ - uid: 15869
+ components:
+ - type: Transform
+ pos: 90.5,148.5
+ parent: 1
+ - uid: 15870
+ components:
+ - type: Transform
+ pos: 91.5,148.5
+ parent: 1
+ - uid: 15871
+ components:
+ - type: Transform
+ pos: 91.5,149.5
+ parent: 1
+ - uid: 15872
+ components:
+ - type: Transform
+ pos: 91.5,150.5
+ parent: 1
+ - uid: 15873
+ components:
+ - type: Transform
+ pos: 91.5,151.5
+ parent: 1
+ - uid: 15874
+ components:
+ - type: Transform
+ pos: 91.5,152.5
+ parent: 1
+ - uid: 15875
+ components:
+ - type: Transform
+ pos: 91.5,153.5
+ parent: 1
+ - uid: 15876
+ components:
+ - type: Transform
+ pos: 91.5,154.5
+ parent: 1
+ - uid: 15968
+ components:
+ - type: Transform
+ pos: 155.5,146.5
+ parent: 1
+ - uid: 15990
+ components:
+ - type: Transform
+ pos: 152.5,146.5
+ parent: 1
+ - uid: 16031
+ components:
+ - type: Transform
+ pos: 147.5,110.5
+ parent: 1
+ - uid: 16101
+ components:
+ - type: Transform
+ pos: 95.5,97.5
+ parent: 1
+ - uid: 16190
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - uid: 16191
+ components:
+ - type: Transform
+ pos: 69.5,49.5
+ parent: 1
+ - uid: 16290
+ components:
+ - type: Transform
+ pos: 91.5,156.5
+ parent: 1
+ - uid: 16432
+ components:
+ - type: Transform
+ pos: 139.5,139.5
+ parent: 1
+ - uid: 16829
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - uid: 16831
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - uid: 16834
+ components:
+ - type: Transform
+ pos: 123.5,162.5
+ parent: 1
+ - uid: 16920
+ components:
+ - type: Transform
+ pos: 104.5,169.5
+ parent: 1
+ - uid: 17057
+ components:
+ - type: Transform
+ pos: 74.5,156.5
+ parent: 1
+ - uid: 17083
+ components:
+ - type: Transform
+ pos: 73.5,156.5
+ parent: 1
+ - uid: 17088
+ components:
+ - type: Transform
+ pos: 57.5,147.5
+ parent: 1
+ - uid: 17105
+ components:
+ - type: Transform
+ pos: 57.5,146.5
+ parent: 1
+ - uid: 17116
+ components:
+ - type: Transform
+ pos: 72.5,83.5
+ parent: 1
+ - uid: 17117
+ components:
+ - type: Transform
+ pos: 73.5,83.5
+ parent: 1
+ - uid: 17118
+ components:
+ - type: Transform
+ pos: 74.5,83.5
+ parent: 1
+ - uid: 17119
+ components:
+ - type: Transform
+ pos: 74.5,82.5
+ parent: 1
+ - uid: 17120
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 17121
+ components:
+ - type: Transform
+ pos: 74.5,80.5
+ parent: 1
+ - uid: 17122
+ components:
+ - type: Transform
+ pos: 73.5,80.5
+ parent: 1
+ - uid: 17123
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - uid: 17124
+ components:
+ - type: Transform
+ pos: 71.5,80.5
+ parent: 1
+ - uid: 17125
+ components:
+ - type: Transform
+ pos: 70.5,80.5
+ parent: 1
+ - uid: 17126
+ components:
+ - type: Transform
+ pos: 69.5,80.5
+ parent: 1
+ - uid: 17127
+ components:
+ - type: Transform
+ pos: 68.5,80.5
+ parent: 1
+ - uid: 17128
+ components:
+ - type: Transform
+ pos: 67.5,80.5
+ parent: 1
+ - uid: 17129
+ components:
+ - type: Transform
+ pos: 67.5,81.5
+ parent: 1
+ - uid: 17130
+ components:
+ - type: Transform
+ pos: 67.5,82.5
+ parent: 1
+ - uid: 17131
+ components:
+ - type: Transform
+ pos: 67.5,83.5
+ parent: 1
+ - uid: 17132
+ components:
+ - type: Transform
+ pos: 67.5,84.5
+ parent: 1
+ - uid: 17133
+ components:
+ - type: Transform
+ pos: 66.5,84.5
+ parent: 1
+ - uid: 17134
+ components:
+ - type: Transform
+ pos: 66.5,85.5
+ parent: 1
+ - uid: 17135
+ components:
+ - type: Transform
+ pos: 66.5,86.5
+ parent: 1
+ - uid: 17136
+ components:
+ - type: Transform
+ pos: 66.5,87.5
+ parent: 1
+ - uid: 17137
+ components:
+ - type: Transform
+ pos: 67.5,87.5
+ parent: 1
+ - uid: 17138
+ components:
+ - type: Transform
+ pos: 68.5,87.5
+ parent: 1
+ - uid: 17139
+ components:
+ - type: Transform
+ pos: 69.5,87.5
+ parent: 1
+ - uid: 17140
+ components:
+ - type: Transform
+ pos: 70.5,87.5
+ parent: 1
+ - uid: 17141
+ components:
+ - type: Transform
+ pos: 71.5,87.5
+ parent: 1
+ - uid: 17142
+ components:
+ - type: Transform
+ pos: 72.5,87.5
+ parent: 1
+ - uid: 17143
+ components:
+ - type: Transform
+ pos: 72.5,86.5
+ parent: 1
+ - uid: 17144
+ components:
+ - type: Transform
+ pos: 73.5,86.5
+ parent: 1
+ - uid: 17145
+ components:
+ - type: Transform
+ pos: 74.5,86.5
+ parent: 1
+ - uid: 17146
+ components:
+ - type: Transform
+ pos: 75.5,86.5
+ parent: 1
+ - uid: 17147
+ components:
+ - type: Transform
+ pos: 76.5,86.5
+ parent: 1
+ - uid: 17148
+ components:
+ - type: Transform
+ pos: 77.5,86.5
+ parent: 1
+ - uid: 17149
+ components:
+ - type: Transform
+ pos: 77.5,87.5
+ parent: 1
+ - uid: 17150
+ components:
+ - type: Transform
+ pos: 78.5,87.5
+ parent: 1
+ - uid: 17151
+ components:
+ - type: Transform
+ pos: 79.5,87.5
+ parent: 1
+ - uid: 17152
+ components:
+ - type: Transform
+ pos: 80.5,87.5
+ parent: 1
+ - uid: 17153
+ components:
+ - type: Transform
+ pos: 81.5,87.5
+ parent: 1
+ - uid: 17154
+ components:
+ - type: Transform
+ pos: 82.5,87.5
+ parent: 1
+ - uid: 17155
+ components:
+ - type: Transform
+ pos: 82.5,88.5
+ parent: 1
+ - uid: 17156
+ components:
+ - type: Transform
+ pos: 82.5,89.5
+ parent: 1
+ - uid: 17157
+ components:
+ - type: Transform
+ pos: 82.5,90.5
+ parent: 1
+ - uid: 17158
+ components:
+ - type: Transform
+ pos: 82.5,91.5
+ parent: 1
+ - uid: 17159
+ components:
+ - type: Transform
+ pos: 82.5,92.5
+ parent: 1
+ - uid: 17160
+ components:
+ - type: Transform
+ pos: 82.5,93.5
+ parent: 1
+ - uid: 17161
+ components:
+ - type: Transform
+ pos: 82.5,94.5
+ parent: 1
+ - uid: 17162
+ components:
+ - type: Transform
+ pos: 82.5,95.5
+ parent: 1
+ - uid: 17163
+ components:
+ - type: Transform
+ pos: 82.5,96.5
+ parent: 1
+ - uid: 17164
+ components:
+ - type: Transform
+ pos: 82.5,97.5
+ parent: 1
+ - uid: 17165
+ components:
+ - type: Transform
+ pos: 82.5,98.5
+ parent: 1
+ - uid: 17166
+ components:
+ - type: Transform
+ pos: 82.5,99.5
+ parent: 1
+ - uid: 17167
+ components:
+ - type: Transform
+ pos: 82.5,100.5
+ parent: 1
+ - uid: 17168
+ components:
+ - type: Transform
+ pos: 82.5,102.5
+ parent: 1
+ - uid: 17169
+ components:
+ - type: Transform
+ pos: 82.5,103.5
+ parent: 1
+ - uid: 17170
+ components:
+ - type: Transform
+ pos: 82.5,101.5
+ parent: 1
+ - uid: 17171
+ components:
+ - type: Transform
+ pos: 82.5,104.5
+ parent: 1
+ - uid: 17172
+ components:
+ - type: Transform
+ pos: 82.5,105.5
+ parent: 1
+ - uid: 17173
+ components:
+ - type: Transform
+ pos: 82.5,106.5
+ parent: 1
+ - uid: 17174
+ components:
+ - type: Transform
+ pos: 82.5,107.5
+ parent: 1
+ - uid: 17175
+ components:
+ - type: Transform
+ pos: 81.5,107.5
+ parent: 1
+ - uid: 17176
+ components:
+ - type: Transform
+ pos: 80.5,107.5
+ parent: 1
+ - uid: 17177
+ components:
+ - type: Transform
+ pos: 79.5,107.5
+ parent: 1
+ - uid: 17178
+ components:
+ - type: Transform
+ pos: 78.5,107.5
+ parent: 1
+ - uid: 17179
+ components:
+ - type: Transform
+ pos: 77.5,107.5
+ parent: 1
+ - uid: 17180
+ components:
+ - type: Transform
+ pos: 76.5,107.5
+ parent: 1
+ - uid: 17181
+ components:
+ - type: Transform
+ pos: 75.5,107.5
+ parent: 1
+ - uid: 17182
+ components:
+ - type: Transform
+ pos: 74.5,107.5
+ parent: 1
+ - uid: 17183
+ components:
+ - type: Transform
+ pos: 73.5,107.5
+ parent: 1
+ - uid: 17184
+ components:
+ - type: Transform
+ pos: 72.5,107.5
+ parent: 1
+ - uid: 17185
+ components:
+ - type: Transform
+ pos: 70.5,107.5
+ parent: 1
+ - uid: 17186
+ components:
+ - type: Transform
+ pos: 69.5,107.5
+ parent: 1
+ - uid: 17187
+ components:
+ - type: Transform
+ pos: 68.5,107.5
+ parent: 1
+ - uid: 17188
+ components:
+ - type: Transform
+ pos: 71.5,107.5
+ parent: 1
+ - uid: 17189
+ components:
+ - type: Transform
+ pos: 67.5,107.5
+ parent: 1
+ - uid: 17190
+ components:
+ - type: Transform
+ pos: 67.5,105.5
+ parent: 1
+ - uid: 17191
+ components:
+ - type: Transform
+ pos: 67.5,106.5
+ parent: 1
+ - uid: 17192
+ components:
+ - type: Transform
+ pos: 67.5,104.5
+ parent: 1
+ - uid: 17193
+ components:
+ - type: Transform
+ pos: 67.5,103.5
+ parent: 1
+ - uid: 17194
+ components:
+ - type: Transform
+ pos: 67.5,102.5
+ parent: 1
+ - uid: 17195
+ components:
+ - type: Transform
+ pos: 67.5,101.5
+ parent: 1
+ - uid: 17196
+ components:
+ - type: Transform
+ pos: 67.5,100.5
+ parent: 1
+ - uid: 17197
+ components:
+ - type: Transform
+ pos: 67.5,99.5
+ parent: 1
+ - uid: 17198
+ components:
+ - type: Transform
+ pos: 67.5,98.5
+ parent: 1
+ - uid: 17199
+ components:
+ - type: Transform
+ pos: 67.5,97.5
+ parent: 1
+ - uid: 17200
+ components:
+ - type: Transform
+ pos: 67.5,96.5
+ parent: 1
+ - uid: 17201
+ components:
+ - type: Transform
+ pos: 67.5,94.5
+ parent: 1
+ - uid: 17202
+ components:
+ - type: Transform
+ pos: 67.5,93.5
+ parent: 1
+ - uid: 17203
+ components:
+ - type: Transform
+ pos: 67.5,95.5
+ parent: 1
+ - uid: 17204
+ components:
+ - type: Transform
+ pos: 67.5,91.5
+ parent: 1
+ - uid: 17205
+ components:
+ - type: Transform
+ pos: 67.5,92.5
+ parent: 1
+ - uid: 17206
+ components:
+ - type: Transform
+ pos: 67.5,90.5
+ parent: 1
+ - uid: 17207
+ components:
+ - type: Transform
+ pos: 67.5,89.5
+ parent: 1
+ - uid: 17208
+ components:
+ - type: Transform
+ pos: 67.5,88.5
+ parent: 1
+ - uid: 17209
+ components:
+ - type: Transform
+ pos: 68.5,97.5
+ parent: 1
+ - uid: 17210
+ components:
+ - type: Transform
+ pos: 69.5,97.5
+ parent: 1
+ - uid: 17211
+ components:
+ - type: Transform
+ pos: 70.5,97.5
+ parent: 1
+ - uid: 17212
+ components:
+ - type: Transform
+ pos: 71.5,97.5
+ parent: 1
+ - uid: 17213
+ components:
+ - type: Transform
+ pos: 72.5,97.5
+ parent: 1
+ - uid: 17214
+ components:
+ - type: Transform
+ pos: 73.5,97.5
+ parent: 1
+ - uid: 17215
+ components:
+ - type: Transform
+ pos: 74.5,97.5
+ parent: 1
+ - uid: 17216
+ components:
+ - type: Transform
+ pos: 75.5,97.5
+ parent: 1
+ - uid: 17217
+ components:
+ - type: Transform
+ pos: 76.5,97.5
+ parent: 1
+ - uid: 17218
+ components:
+ - type: Transform
+ pos: 78.5,97.5
+ parent: 1
+ - uid: 17219
+ components:
+ - type: Transform
+ pos: 79.5,97.5
+ parent: 1
+ - uid: 17220
+ components:
+ - type: Transform
+ pos: 80.5,97.5
+ parent: 1
+ - uid: 17221
+ components:
+ - type: Transform
+ pos: 77.5,97.5
+ parent: 1
+ - uid: 17222
+ components:
+ - type: Transform
+ pos: 81.5,97.5
+ parent: 1
+ - uid: 17235
+ components:
+ - type: Transform
+ pos: 56.5,146.5
+ parent: 1
+ - uid: 17289
+ components:
+ - type: Transform
+ pos: 56.5,145.5
+ parent: 1
+ - uid: 17290
+ components:
+ - type: Transform
+ pos: 56.5,144.5
+ parent: 1
+ - uid: 17291
+ components:
+ - type: Transform
+ pos: 56.5,143.5
+ parent: 1
+ - uid: 17292
+ components:
+ - type: Transform
+ pos: 56.5,142.5
+ parent: 1
+ - uid: 17302
+ components:
+ - type: Transform
+ pos: 53.5,136.5
+ parent: 1
+ - uid: 17320
+ components:
+ - type: Transform
+ pos: 71.5,81.5
+ parent: 1
+ - uid: 17321
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 1
+ - uid: 17322
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 17323
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 1
+ - uid: 17324
+ components:
+ - type: Transform
+ pos: 77.5,81.5
+ parent: 1
+ - uid: 17325
+ components:
+ - type: Transform
+ pos: 77.5,82.5
+ parent: 1
+ - uid: 17326
+ components:
+ - type: Transform
+ pos: 77.5,83.5
+ parent: 1
+ - uid: 17327
+ components:
+ - type: Transform
+ pos: 77.5,84.5
+ parent: 1
+ - uid: 17328
+ components:
+ - type: Transform
+ pos: 77.5,85.5
+ parent: 1
+ - uid: 17331
+ components:
+ - type: Transform
+ pos: 62.5,85.5
+ parent: 1
+ - uid: 17332
+ components:
+ - type: Transform
+ pos: 62.5,86.5
+ parent: 1
+ - uid: 17333
+ components:
+ - type: Transform
+ pos: 62.5,87.5
+ parent: 1
+ - uid: 17334
+ components:
+ - type: Transform
+ pos: 63.5,87.5
+ parent: 1
+ - uid: 17335
+ components:
+ - type: Transform
+ pos: 64.5,87.5
+ parent: 1
+ - uid: 17336
+ components:
+ - type: Transform
+ pos: 65.5,87.5
+ parent: 1
+ - uid: 17337
+ components:
+ - type: Transform
+ pos: 71.5,85.5
+ parent: 1
+ - uid: 17338
+ components:
+ - type: Transform
+ pos: 71.5,86.5
+ parent: 1
+ - uid: 17339
+ components:
+ - type: Transform
+ pos: 83.5,87.5
+ parent: 1
+ - uid: 17340
+ components:
+ - type: Transform
+ pos: 84.5,87.5
+ parent: 1
+ - uid: 17344
+ components:
+ - type: Transform
+ pos: 54.5,130.5
+ parent: 1
+ - uid: 17347
+ components:
+ - type: Transform
+ pos: 83.5,94.5
+ parent: 1
+ - uid: 17348
+ components:
+ - type: Transform
+ pos: 84.5,94.5
+ parent: 1
+ - uid: 17349
+ components:
+ - type: Transform
+ pos: 85.5,94.5
+ parent: 1
+ - uid: 17350
+ components:
+ - type: Transform
+ pos: 86.5,94.5
+ parent: 1
+ - uid: 17351
+ components:
+ - type: Transform
+ pos: 87.5,94.5
+ parent: 1
+ - uid: 17352
+ components:
+ - type: Transform
+ pos: 88.5,94.5
+ parent: 1
+ - uid: 17353
+ components:
+ - type: Transform
+ pos: 89.5,94.5
+ parent: 1
+ - uid: 17354
+ components:
+ - type: Transform
+ pos: 89.5,93.5
+ parent: 1
+ - uid: 17355
+ components:
+ - type: Transform
+ pos: 90.5,93.5
+ parent: 1
+ - uid: 17356
+ components:
+ - type: Transform
+ pos: 89.5,102.5
+ parent: 1
+ - uid: 17357
+ components:
+ - type: Transform
+ pos: 88.5,102.5
+ parent: 1
+ - uid: 17358
+ components:
+ - type: Transform
+ pos: 87.5,102.5
+ parent: 1
+ - uid: 17359
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 1
+ - uid: 17360
+ components:
+ - type: Transform
+ pos: 85.5,102.5
+ parent: 1
+ - uid: 17361
+ components:
+ - type: Transform
+ pos: 84.5,102.5
+ parent: 1
+ - uid: 17362
+ components:
+ - type: Transform
+ pos: 83.5,102.5
+ parent: 1
+ - uid: 17363
+ components:
+ - type: Transform
+ pos: 81.5,101.5
+ parent: 1
+ - uid: 17364
+ components:
+ - type: Transform
+ pos: 80.5,101.5
+ parent: 1
+ - uid: 17365
+ components:
+ - type: Transform
+ pos: 69.5,101.5
+ parent: 1
+ - uid: 17366
+ components:
+ - type: Transform
+ pos: 68.5,101.5
+ parent: 1
+ - uid: 17367
+ components:
+ - type: Transform
+ pos: 66.5,99.5
+ parent: 1
+ - uid: 17368
+ components:
+ - type: Transform
+ pos: 65.5,99.5
+ parent: 1
+ - uid: 17369
+ components:
+ - type: Transform
+ pos: 64.5,99.5
+ parent: 1
+ - uid: 17370
+ components:
+ - type: Transform
+ pos: 63.5,99.5
+ parent: 1
+ - uid: 17371
+ components:
+ - type: Transform
+ pos: 62.5,99.5
+ parent: 1
+ - uid: 17372
+ components:
+ - type: Transform
+ pos: 61.5,99.5
+ parent: 1
+ - uid: 17373
+ components:
+ - type: Transform
+ pos: 61.5,100.5
+ parent: 1
+ - uid: 17374
+ components:
+ - type: Transform
+ pos: 61.5,101.5
+ parent: 1
+ - uid: 17375
+ components:
+ - type: Transform
+ pos: 62.5,101.5
+ parent: 1
+ - uid: 17376
+ components:
+ - type: Transform
+ pos: 64.5,101.5
+ parent: 1
+ - uid: 17377
+ components:
+ - type: Transform
+ pos: 63.5,101.5
+ parent: 1
+ - uid: 17379
+ components:
+ - type: Transform
+ pos: 80.5,108.5
+ parent: 1
+ - uid: 17380
+ components:
+ - type: Transform
+ pos: 80.5,109.5
+ parent: 1
+ - uid: 17382
+ components:
+ - type: Transform
+ pos: 60.5,99.5
+ parent: 1
+ - uid: 17535
+ components:
+ - type: Transform
+ pos: 78.5,88.5
+ parent: 1
+ - uid: 17536
+ components:
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 1
+ - uid: 17537
+ components:
+ - type: Transform
+ pos: 78.5,90.5
+ parent: 1
+ - uid: 17538
+ components:
+ - type: Transform
+ pos: 78.5,91.5
+ parent: 1
+ - uid: 17539
+ components:
+ - type: Transform
+ pos: 77.5,91.5
+ parent: 1
+ - uid: 17540
+ components:
+ - type: Transform
+ pos: 76.5,91.5
+ parent: 1
+ - uid: 17541
+ components:
+ - type: Transform
+ pos: 76.5,92.5
+ parent: 1
+ - uid: 17542
+ components:
+ - type: Transform
+ pos: 76.5,93.5
+ parent: 1
+ - uid: 17576
+ components:
+ - type: Transform
+ pos: 60.5,98.5
+ parent: 1
+ - uid: 17577
+ components:
+ - type: Transform
+ pos: 60.5,97.5
+ parent: 1
+ - uid: 17578
+ components:
+ - type: Transform
+ pos: 60.5,96.5
+ parent: 1
+ - uid: 17579
+ components:
+ - type: Transform
+ pos: 60.5,95.5
+ parent: 1
+ - uid: 17580
+ components:
+ - type: Transform
+ pos: 60.5,94.5
+ parent: 1
+ - uid: 17581
+ components:
+ - type: Transform
+ pos: 60.5,93.5
+ parent: 1
+ - uid: 17582
+ components:
+ - type: Transform
+ pos: 60.5,92.5
+ parent: 1
+ - uid: 17583
+ components:
+ - type: Transform
+ pos: 60.5,90.5
+ parent: 1
+ - uid: 17584
+ components:
+ - type: Transform
+ pos: 60.5,89.5
+ parent: 1
+ - uid: 17585
+ components:
+ - type: Transform
+ pos: 60.5,91.5
+ parent: 1
+ - uid: 17586
+ components:
+ - type: Transform
+ pos: 61.5,89.5
+ parent: 1
+ - uid: 17587
+ components:
+ - type: Transform
+ pos: 62.5,89.5
+ parent: 1
+ - uid: 17588
+ components:
+ - type: Transform
+ pos: 63.5,89.5
+ parent: 1
+ - uid: 17589
+ components:
+ - type: Transform
+ pos: 64.5,89.5
+ parent: 1
+ - uid: 17972
+ components:
+ - type: Transform
+ pos: 115.5,68.5
+ parent: 1
+ - uid: 18020
+ components:
+ - type: Transform
+ pos: 88.5,45.5
+ parent: 1
+ - uid: 18103
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 18237
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 1
+ - uid: 18256
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 18257
+ components:
+ - type: Transform
+ pos: 98.5,36.5
+ parent: 1
+ - uid: 18261
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 18262
+ components:
+ - type: Transform
+ pos: 88.5,35.5
+ parent: 1
+ - uid: 18349
+ components:
+ - type: Transform
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 18353
+ components:
+ - type: Transform
+ pos: 135.5,86.5
+ parent: 1
+ - uid: 18356
+ components:
+ - type: Transform
+ pos: 137.5,85.5
+ parent: 1
+ - uid: 18361
+ components:
+ - type: Transform
+ pos: 139.5,87.5
+ parent: 1
+ - uid: 18375
+ components:
+ - type: Transform
+ pos: 139.5,88.5
+ parent: 1
+ - uid: 18384
+ components:
+ - type: Transform
+ pos: 139.5,92.5
+ parent: 1
+ - uid: 18385
+ components:
+ - type: Transform
+ pos: 139.5,91.5
+ parent: 1
+ - uid: 18445
+ components:
+ - type: Transform
+ pos: 158.5,48.5
+ parent: 1
+ - uid: 18446
+ components:
+ - type: Transform
+ pos: 157.5,50.5
+ parent: 1
+ - uid: 18451
+ components:
+ - type: Transform
+ pos: 157.5,57.5
+ parent: 1
+ - uid: 18452
+ components:
+ - type: Transform
+ pos: 157.5,55.5
+ parent: 1
+ - uid: 18524
+ components:
+ - type: Transform
+ pos: 128.5,107.5
+ parent: 1
+ - uid: 18535
+ components:
+ - type: Transform
+ pos: 128.5,101.5
+ parent: 1
+ - uid: 18536
+ components:
+ - type: Transform
+ pos: 128.5,100.5
+ parent: 1
+ - uid: 18537
+ components:
+ - type: Transform
+ pos: 128.5,99.5
+ parent: 1
+ - uid: 18538
+ components:
+ - type: Transform
+ pos: 128.5,98.5
+ parent: 1
+ - uid: 18544
+ components:
+ - type: Transform
+ pos: 128.5,97.5
+ parent: 1
+ - uid: 18550
+ components:
+ - type: Transform
+ pos: 71.5,160.5
+ parent: 1
+ - uid: 18552
+ components:
+ - type: Transform
+ pos: 70.5,160.5
+ parent: 1
+ - uid: 18553
+ components:
+ - type: Transform
+ pos: 71.5,159.5
+ parent: 1
+ - uid: 18559
+ components:
+ - type: Transform
+ pos: 66.5,156.5
+ parent: 1
+ - uid: 18678
+ components:
+ - type: Transform
+ pos: 134.5,115.5
+ parent: 1
+ - uid: 18680
+ components:
+ - type: Transform
+ pos: 39.5,122.5
+ parent: 1
+ - uid: 18681
+ components:
+ - type: Transform
+ pos: 133.5,115.5
+ parent: 1
+ - uid: 18682
+ components:
+ - type: Transform
+ pos: 135.5,115.5
+ parent: 1
+ - uid: 18683
+ components:
+ - type: Transform
+ pos: 136.5,115.5
+ parent: 1
+ - uid: 18684
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - uid: 18732
+ components:
+ - type: Transform
+ pos: 31.5,79.5
+ parent: 1
+ - uid: 18733
+ components:
+ - type: Transform
+ pos: 34.5,79.5
+ parent: 1
+ - uid: 18734
+ components:
+ - type: Transform
+ pos: 36.5,79.5
+ parent: 1
+ - uid: 18816
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 18817
+ components:
+ - type: Transform
+ pos: 133.5,113.5
+ parent: 1
+ - uid: 18818
+ components:
+ - type: Transform
+ pos: 133.5,112.5
+ parent: 1
+ - uid: 18819
+ components:
+ - type: Transform
+ pos: 134.5,112.5
+ parent: 1
+ - uid: 18874
+ components:
+ - type: Transform
+ pos: 138.5,115.5
+ parent: 1
+ - uid: 18875
+ components:
+ - type: Transform
+ pos: 139.5,115.5
+ parent: 1
+ - uid: 18876
+ components:
+ - type: Transform
+ pos: 140.5,115.5
+ parent: 1
+ - uid: 18877
+ components:
+ - type: Transform
+ pos: 141.5,115.5
+ parent: 1
+ - uid: 18878
+ components:
+ - type: Transform
+ pos: 142.5,115.5
+ parent: 1
+ - uid: 18881
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 1
+ - uid: 18895
+ components:
+ - type: Transform
+ pos: 154.5,131.5
+ parent: 1
+ - uid: 18896
+ components:
+ - type: Transform
+ pos: 153.5,131.5
+ parent: 1
+ - uid: 18897
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - uid: 18906
+ components:
+ - type: Transform
+ pos: 75.5,156.5
+ parent: 1
+ - uid: 18910
+ components:
+ - type: Transform
+ pos: 155.5,110.5
+ parent: 1
+ - uid: 18911
+ components:
+ - type: Transform
+ pos: 154.5,110.5
+ parent: 1
+ - uid: 18912
+ components:
+ - type: Transform
+ pos: 153.5,110.5
+ parent: 1
+ - uid: 18913
+ components:
+ - type: Transform
+ pos: 152.5,110.5
+ parent: 1
+ - uid: 18914
+ components:
+ - type: Transform
+ pos: 151.5,110.5
+ parent: 1
+ - uid: 18915
+ components:
+ - type: Transform
+ pos: 150.5,110.5
+ parent: 1
+ - uid: 18916
+ components:
+ - type: Transform
+ pos: 149.5,110.5
+ parent: 1
+ - uid: 18918
+ components:
+ - type: Transform
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 18919
+ components:
+ - type: Transform
+ pos: 149.5,107.5
+ parent: 1
+ - uid: 18920
+ components:
+ - type: Transform
+ pos: 149.5,106.5
+ parent: 1
+ - uid: 18921
+ components:
+ - type: Transform
+ pos: 149.5,105.5
+ parent: 1
+ - uid: 18922
+ components:
+ - type: Transform
+ pos: 149.5,108.5
+ parent: 1
+ - uid: 18923
+ components:
+ - type: Transform
+ pos: 150.5,105.5
+ parent: 1
+ - uid: 18924
+ components:
+ - type: Transform
+ pos: 152.5,105.5
+ parent: 1
+ - uid: 18925
+ components:
+ - type: Transform
+ pos: 153.5,105.5
+ parent: 1
+ - uid: 18926
+ components:
+ - type: Transform
+ pos: 154.5,105.5
+ parent: 1
+ - uid: 18927
+ components:
+ - type: Transform
+ pos: 155.5,105.5
+ parent: 1
+ - uid: 18928
+ components:
+ - type: Transform
+ pos: 156.5,105.5
+ parent: 1
+ - uid: 18929
+ components:
+ - type: Transform
+ pos: 157.5,105.5
+ parent: 1
+ - uid: 18930
+ components:
+ - type: Transform
+ pos: 151.5,105.5
+ parent: 1
+ - uid: 18931
+ components:
+ - type: Transform
+ pos: 158.5,105.5
+ parent: 1
+ - uid: 19092
+ components:
+ - type: Transform
+ pos: 46.5,74.5
+ parent: 1
+ - uid: 19093
+ components:
+ - type: Transform
+ pos: 47.5,76.5
+ parent: 1
+ - uid: 19157
+ components:
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - uid: 19158
+ components:
+ - type: Transform
+ pos: 137.5,113.5
+ parent: 1
+ - uid: 19159
+ components:
+ - type: Transform
+ pos: 137.5,112.5
+ parent: 1
+ - uid: 19162
+ components:
+ - type: Transform
+ pos: 138.5,112.5
+ parent: 1
+ - uid: 19163
+ components:
+ - type: Transform
+ pos: 139.5,112.5
+ parent: 1
+ - uid: 19164
+ components:
+ - type: Transform
+ pos: 140.5,112.5
+ parent: 1
+ - uid: 19165
+ components:
+ - type: Transform
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 19166
+ components:
+ - type: Transform
+ pos: 142.5,112.5
+ parent: 1
+ - uid: 19167
+ components:
+ - type: Transform
+ pos: 143.5,112.5
+ parent: 1
+ - uid: 19168
+ components:
+ - type: Transform
+ pos: 144.5,112.5
+ parent: 1
+ - uid: 19169
+ components:
+ - type: Transform
+ pos: 145.5,112.5
+ parent: 1
+ - uid: 19170
+ components:
+ - type: Transform
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 19174
+ components:
+ - type: Transform
+ pos: 149.5,111.5
+ parent: 1
+ - uid: 19175
+ components:
+ - type: Transform
+ pos: 148.5,113.5
+ parent: 1
+ - uid: 19176
+ components:
+ - type: Transform
+ pos: 148.5,114.5
+ parent: 1
+ - uid: 19177
+ components:
+ - type: Transform
+ pos: 139.5,111.5
+ parent: 1
+ - uid: 19178
+ components:
+ - type: Transform
+ pos: 139.5,110.5
+ parent: 1
+ - uid: 19179
+ components:
+ - type: Transform
+ pos: 139.5,109.5
+ parent: 1
+ - uid: 19180
+ components:
+ - type: Transform
+ pos: 139.5,108.5
+ parent: 1
+ - uid: 19181
+ components:
+ - type: Transform
+ pos: 139.5,107.5
+ parent: 1
+ - uid: 19182
+ components:
+ - type: Transform
+ pos: 139.5,106.5
+ parent: 1
+ - uid: 19183
+ components:
+ - type: Transform
+ pos: 139.5,105.5
+ parent: 1
+ - uid: 19184
+ components:
+ - type: Transform
+ pos: 139.5,104.5
+ parent: 1
+ - uid: 19185
+ components:
+ - type: Transform
+ pos: 139.5,103.5
+ parent: 1
+ - uid: 19186
+ components:
+ - type: Transform
+ pos: 139.5,102.5
+ parent: 1
+ - uid: 19187
+ components:
+ - type: Transform
+ pos: 139.5,101.5
+ parent: 1
+ - uid: 19188
+ components:
+ - type: Transform
+ pos: 139.5,100.5
+ parent: 1
+ - uid: 19189
+ components:
+ - type: Transform
+ pos: 138.5,100.5
+ parent: 1
+ - uid: 19190
+ components:
+ - type: Transform
+ pos: 137.5,100.5
+ parent: 1
+ - uid: 19191
+ components:
+ - type: Transform
+ pos: 140.5,104.5
+ parent: 1
+ - uid: 19192
+ components:
+ - type: Transform
+ pos: 141.5,104.5
+ parent: 1
+ - uid: 19193
+ components:
+ - type: Transform
+ pos: 141.5,103.5
+ parent: 1
+ - uid: 19194
+ components:
+ - type: Transform
+ pos: 141.5,105.5
+ parent: 1
+ - uid: 19195
+ components:
+ - type: Transform
+ pos: 142.5,104.5
+ parent: 1
+ - uid: 19196
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 19197
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 19198
+ components:
+ - type: Transform
+ pos: 145.5,104.5
+ parent: 1
+ - uid: 19199
+ components:
+ - type: Transform
+ pos: 146.5,104.5
+ parent: 1
+ - uid: 19200
+ components:
+ - type: Transform
+ pos: 146.5,103.5
+ parent: 1
+ - uid: 19201
+ components:
+ - type: Transform
+ pos: 146.5,105.5
+ parent: 1
+ - uid: 19202
+ components:
+ - type: Transform
+ pos: 144.5,105.5
+ parent: 1
+ - uid: 19203
+ components:
+ - type: Transform
+ pos: 144.5,106.5
+ parent: 1
+ - uid: 19204
+ components:
+ - type: Transform
+ pos: 144.5,107.5
+ parent: 1
+ - uid: 19205
+ components:
+ - type: Transform
+ pos: 147.5,104.5
+ parent: 1
+ - uid: 19206
+ components:
+ - type: Transform
+ pos: 149.5,104.5
+ parent: 1
+ - uid: 19207
+ components:
+ - type: Transform
+ pos: 148.5,104.5
+ parent: 1
+ - uid: 19208
+ components:
+ - type: Transform
+ pos: 149.5,103.5
+ parent: 1
+ - uid: 19209
+ components:
+ - type: Transform
+ pos: 149.5,102.5
+ parent: 1
+ - uid: 19210
+ components:
+ - type: Transform
+ pos: 149.5,101.5
+ parent: 1
+ - uid: 19211
+ components:
+ - type: Transform
+ pos: 149.5,100.5
+ parent: 1
+ - uid: 19212
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 19218
+ components:
+ - type: Transform
+ pos: 143.5,98.5
+ parent: 1
+ - uid: 19219
+ components:
+ - type: Transform
+ pos: 153.5,99.5
+ parent: 1
+ - uid: 19222
+ components:
+ - type: Transform
+ pos: 140.5,98.5
+ parent: 1
+ - uid: 19224
+ components:
+ - type: Transform
+ pos: 139.5,99.5
+ parent: 1
+ - uid: 19225
+ components:
+ - type: Transform
+ pos: 143.5,97.5
+ parent: 1
+ - uid: 19226
+ components:
+ - type: Transform
+ pos: 143.5,96.5
+ parent: 1
+ - uid: 19227
+ components:
+ - type: Transform
+ pos: 143.5,95.5
+ parent: 1
+ - uid: 19228
+ components:
+ - type: Transform
+ pos: 143.5,94.5
+ parent: 1
+ - uid: 19230
+ components:
+ - type: Transform
+ pos: 142.5,94.5
+ parent: 1
+ - uid: 19232
+ components:
+ - type: Transform
+ pos: 151.5,98.5
+ parent: 1
+ - uid: 19240
+ components:
+ - type: Transform
+ pos: 158.5,99.5
+ parent: 1
+ - uid: 19241
+ components:
+ - type: Transform
+ pos: 158.5,100.5
+ parent: 1
+ - uid: 19242
+ components:
+ - type: Transform
+ pos: 158.5,101.5
+ parent: 1
+ - uid: 19243
+ components:
+ - type: Transform
+ pos: 151.5,97.5
+ parent: 1
+ - uid: 19244
+ components:
+ - type: Transform
+ pos: 151.5,96.5
+ parent: 1
+ - uid: 19245
+ components:
+ - type: Transform
+ pos: 151.5,95.5
+ parent: 1
+ - uid: 19246
+ components:
+ - type: Transform
+ pos: 151.5,94.5
+ parent: 1
+ - uid: 19247
+ components:
+ - type: Transform
+ pos: 151.5,93.5
+ parent: 1
+ - uid: 19248
+ components:
+ - type: Transform
+ pos: 151.5,92.5
+ parent: 1
+ - uid: 19249
+ components:
+ - type: Transform
+ pos: 150.5,92.5
+ parent: 1
+ - uid: 19250
+ components:
+ - type: Transform
+ pos: 149.5,92.5
+ parent: 1
+ - uid: 19251
+ components:
+ - type: Transform
+ pos: 148.5,92.5
+ parent: 1
+ - uid: 19252
+ components:
+ - type: Transform
+ pos: 147.5,92.5
+ parent: 1
+ - uid: 19253
+ components:
+ - type: Transform
+ pos: 146.5,92.5
+ parent: 1
+ - uid: 19254
+ components:
+ - type: Transform
+ pos: 145.5,92.5
+ parent: 1
+ - uid: 19255
+ components:
+ - type: Transform
+ pos: 142.5,93.5
+ parent: 1
+ - uid: 19256
+ components:
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+ - uid: 19257
+ components:
+ - type: Transform
+ pos: 142.5,91.5
+ parent: 1
+ - uid: 19258
+ components:
+ - type: Transform
+ pos: 142.5,90.5
+ parent: 1
+ - uid: 19259
+ components:
+ - type: Transform
+ pos: 142.5,89.5
+ parent: 1
+ - uid: 19267
+ components:
+ - type: Transform
+ pos: 154.5,99.5
+ parent: 1
+ - uid: 19270
+ components:
+ - type: Transform
+ pos: 151.5,89.5
+ parent: 1
+ - uid: 19271
+ components:
+ - type: Transform
+ pos: 151.5,90.5
+ parent: 1
+ - uid: 19272
+ components:
+ - type: Transform
+ pos: 151.5,91.5
+ parent: 1
+ - uid: 19370
+ components:
+ - type: Transform
+ pos: 132.5,91.5
+ parent: 1
+ - uid: 19419
+ components:
+ - type: Transform
+ pos: 70.5,61.5
+ parent: 1
+ - uid: 19470
+ components:
+ - type: Transform
+ pos: 57.5,141.5
+ parent: 1
+ - uid: 19495
+ components:
+ - type: Transform
+ pos: 129.5,112.5
+ parent: 1
+ - uid: 19498
+ components:
+ - type: Transform
+ pos: 69.5,61.5
+ parent: 1
+ - uid: 19559
+ components:
+ - type: Transform
+ pos: 131.5,91.5
+ parent: 1
+ - uid: 19621
+ components:
+ - type: Transform
+ pos: 75.5,60.5
+ parent: 1
+ - uid: 20162
+ components:
+ - type: Transform
+ pos: 53.5,109.5
+ parent: 1
+ - uid: 20165
+ components:
+ - type: Transform
+ pos: 51.5,110.5
+ parent: 1
+ - uid: 20166
+ components:
+ - type: Transform
+ pos: 51.5,111.5
+ parent: 1
+ - uid: 20167
+ components:
+ - type: Transform
+ pos: 50.5,111.5
+ parent: 1
+ - uid: 20168
+ components:
+ - type: Transform
+ pos: 49.5,111.5
+ parent: 1
+ - uid: 20169
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 1
+ - uid: 20170
+ components:
+ - type: Transform
+ pos: 47.5,111.5
+ parent: 1
+ - uid: 20171
+ components:
+ - type: Transform
+ pos: 46.5,111.5
+ parent: 1
+ - uid: 20172
+ components:
+ - type: Transform
+ pos: 45.5,111.5
+ parent: 1
+ - uid: 20173
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 1
+ - uid: 20175
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - uid: 20177
+ components:
+ - type: Transform
+ pos: 44.5,109.5
+ parent: 1
+ - uid: 20178
+ components:
+ - type: Transform
+ pos: 43.5,108.5
+ parent: 1
+ - uid: 20179
+ components:
+ - type: Transform
+ pos: 43.5,107.5
+ parent: 1
+ - uid: 20180
+ components:
+ - type: Transform
+ pos: 43.5,106.5
+ parent: 1
+ - uid: 20181
+ components:
+ - type: Transform
+ pos: 43.5,105.5
+ parent: 1
+ - uid: 20182
+ components:
+ - type: Transform
+ pos: 43.5,104.5
+ parent: 1
+ - uid: 20183
+ components:
+ - type: Transform
+ pos: 43.5,103.5
+ parent: 1
+ - uid: 20184
+ components:
+ - type: Transform
+ pos: 43.5,102.5
+ parent: 1
+ - uid: 20185
+ components:
+ - type: Transform
+ pos: 43.5,101.5
+ parent: 1
+ - uid: 20186
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+ - uid: 20187
+ components:
+ - type: Transform
+ pos: 43.5,98.5
+ parent: 1
+ - uid: 20188
+ components:
+ - type: Transform
+ pos: 43.5,97.5
+ parent: 1
+ - uid: 20189
+ components:
+ - type: Transform
+ pos: 43.5,96.5
+ parent: 1
+ - uid: 20190
+ components:
+ - type: Transform
+ pos: 43.5,95.5
+ parent: 1
+ - uid: 20191
+ components:
+ - type: Transform
+ pos: 43.5,94.5
+ parent: 1
+ - uid: 20192
+ components:
+ - type: Transform
+ pos: 43.5,93.5
+ parent: 1
+ - uid: 20193
+ components:
+ - type: Transform
+ pos: 43.5,99.5
+ parent: 1
+ - uid: 20194
+ components:
+ - type: Transform
+ pos: 43.5,92.5
+ parent: 1
+ - uid: 20195
+ components:
+ - type: Transform
+ pos: 43.5,90.5
+ parent: 1
+ - uid: 20196
+ components:
+ - type: Transform
+ pos: 43.5,89.5
+ parent: 1
+ - uid: 20197
+ components:
+ - type: Transform
+ pos: 43.5,88.5
+ parent: 1
+ - uid: 20198
+ components:
+ - type: Transform
+ pos: 43.5,91.5
+ parent: 1
+ - uid: 20199
+ components:
+ - type: Transform
+ pos: 43.5,87.5
+ parent: 1
+ - uid: 20200
+ components:
+ - type: Transform
+ pos: 43.5,85.5
+ parent: 1
+ - uid: 20201
+ components:
+ - type: Transform
+ pos: 43.5,84.5
+ parent: 1
+ - uid: 20202
+ components:
+ - type: Transform
+ pos: 43.5,83.5
+ parent: 1
+ - uid: 20203
+ components:
+ - type: Transform
+ pos: 43.5,86.5
+ parent: 1
+ - uid: 20204
+ components:
+ - type: Transform
+ pos: 42.5,83.5
+ parent: 1
+ - uid: 20205
+ components:
+ - type: Transform
+ pos: 41.5,83.5
+ parent: 1
+ - uid: 20206
+ components:
+ - type: Transform
+ pos: 40.5,83.5
+ parent: 1
+ - uid: 20207
+ components:
+ - type: Transform
+ pos: 39.5,83.5
+ parent: 1
+ - uid: 20208
+ components:
+ - type: Transform
+ pos: 38.5,83.5
+ parent: 1
+ - uid: 20209
+ components:
+ - type: Transform
+ pos: 38.5,84.5
+ parent: 1
+ - uid: 20210
+ components:
+ - type: Transform
+ pos: 38.5,85.5
+ parent: 1
+ - uid: 20211
+ components:
+ - type: Transform
+ pos: 38.5,86.5
+ parent: 1
+ - uid: 20212
+ components:
+ - type: Transform
+ pos: 38.5,87.5
+ parent: 1
+ - uid: 20213
+ components:
+ - type: Transform
+ pos: 38.5,88.5
+ parent: 1
+ - uid: 20214
+ components:
+ - type: Transform
+ pos: 38.5,89.5
+ parent: 1
+ - uid: 20215
+ components:
+ - type: Transform
+ pos: 38.5,90.5
+ parent: 1
+ - uid: 20216
+ components:
+ - type: Transform
+ pos: 38.5,91.5
+ parent: 1
+ - uid: 20217
+ components:
+ - type: Transform
+ pos: 38.5,92.5
+ parent: 1
+ - uid: 20218
+ components:
+ - type: Transform
+ pos: 38.5,93.5
+ parent: 1
+ - uid: 20219
+ components:
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 1
+ - uid: 20220
+ components:
+ - type: Transform
+ pos: 38.5,94.5
+ parent: 1
+ - uid: 20223
+ components:
+ - type: Transform
+ pos: 44.5,83.5
+ parent: 1
+ - uid: 20224
+ components:
+ - type: Transform
+ pos: 45.5,83.5
+ parent: 1
+ - uid: 20225
+ components:
+ - type: Transform
+ pos: 46.5,83.5
+ parent: 1
+ - uid: 20226
+ components:
+ - type: Transform
+ pos: 47.5,83.5
+ parent: 1
+ - uid: 20227
+ components:
+ - type: Transform
+ pos: 48.5,83.5
+ parent: 1
+ - uid: 20228
+ components:
+ - type: Transform
+ pos: 49.5,83.5
+ parent: 1
+ - uid: 20229
+ components:
+ - type: Transform
+ pos: 50.5,83.5
+ parent: 1
+ - uid: 20230
+ components:
+ - type: Transform
+ pos: 51.5,83.5
+ parent: 1
+ - uid: 20231
+ components:
+ - type: Transform
+ pos: 52.5,83.5
+ parent: 1
+ - uid: 20232
+ components:
+ - type: Transform
+ pos: 44.5,100.5
+ parent: 1
+ - uid: 20233
+ components:
+ - type: Transform
+ pos: 45.5,100.5
+ parent: 1
+ - uid: 20235
+ components:
+ - type: Transform
+ pos: 52.5,84.5
+ parent: 1
+ - uid: 20236
+ components:
+ - type: Transform
+ pos: 52.5,85.5
+ parent: 1
+ - uid: 20237
+ components:
+ - type: Transform
+ pos: 52.5,86.5
+ parent: 1
+ - uid: 20238
+ components:
+ - type: Transform
+ pos: 52.5,87.5
+ parent: 1
+ - uid: 20239
+ components:
+ - type: Transform
+ pos: 52.5,88.5
+ parent: 1
+ - uid: 20240
+ components:
+ - type: Transform
+ pos: 52.5,89.5
+ parent: 1
+ - uid: 20241
+ components:
+ - type: Transform
+ pos: 52.5,90.5
+ parent: 1
+ - uid: 20242
+ components:
+ - type: Transform
+ pos: 52.5,91.5
+ parent: 1
+ - uid: 20243
+ components:
+ - type: Transform
+ pos: 52.5,92.5
+ parent: 1
+ - uid: 20244
+ components:
+ - type: Transform
+ pos: 52.5,93.5
+ parent: 1
+ - uid: 20245
+ components:
+ - type: Transform
+ pos: 52.5,94.5
+ parent: 1
+ - uid: 20246
+ components:
+ - type: Transform
+ pos: 52.5,95.5
+ parent: 1
+ - uid: 20247
+ components:
+ - type: Transform
+ pos: 52.5,96.5
+ parent: 1
+ - uid: 20248
+ components:
+ - type: Transform
+ pos: 51.5,96.5
+ parent: 1
+ - uid: 20249
+ components:
+ - type: Transform
+ pos: 50.5,96.5
+ parent: 1
+ - uid: 20250
+ components:
+ - type: Transform
+ pos: 49.5,96.5
+ parent: 1
+ - uid: 20251
+ components:
+ - type: Transform
+ pos: 48.5,96.5
+ parent: 1
+ - uid: 20252
+ components:
+ - type: Transform
+ pos: 47.5,96.5
+ parent: 1
+ - uid: 20253
+ components:
+ - type: Transform
+ pos: 46.5,96.5
+ parent: 1
+ - uid: 20254
+ components:
+ - type: Transform
+ pos: 45.5,96.5
+ parent: 1
+ - uid: 20255
+ components:
+ - type: Transform
+ pos: 44.5,96.5
+ parent: 1
+ - uid: 20256
+ components:
+ - type: Transform
+ pos: 47.5,100.5
+ parent: 1
+ - uid: 20257
+ components:
+ - type: Transform
+ pos: 48.5,100.5
+ parent: 1
+ - uid: 20258
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 1
+ - uid: 20259
+ components:
+ - type: Transform
+ pos: 46.5,100.5
+ parent: 1
+ - uid: 20260
+ components:
+ - type: Transform
+ pos: 50.5,100.5
+ parent: 1
+ - uid: 20261
+ components:
+ - type: Transform
+ pos: 50.5,99.5
+ parent: 1
+ - uid: 20262
+ components:
+ - type: Transform
+ pos: 50.5,98.5
+ parent: 1
+ - uid: 20263
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 1
+ - uid: 20264
+ components:
+ - type: Transform
+ pos: 41.5,100.5
+ parent: 1
+ - uid: 20265
+ components:
+ - type: Transform
+ pos: 40.5,100.5
+ parent: 1
+ - uid: 20266
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 1
+ - uid: 20267
+ components:
+ - type: Transform
+ pos: 38.5,100.5
+ parent: 1
+ - uid: 20268
+ components:
+ - type: Transform
+ pos: 37.5,100.5
+ parent: 1
+ - uid: 20269
+ components:
+ - type: Transform
+ pos: 36.5,100.5
+ parent: 1
+ - uid: 20270
+ components:
+ - type: Transform
+ pos: 35.5,100.5
+ parent: 1
+ - uid: 20271
+ components:
+ - type: Transform
+ pos: 34.5,100.5
+ parent: 1
+ - uid: 20272
+ components:
+ - type: Transform
+ pos: 33.5,100.5
+ parent: 1
+ - uid: 20273
+ components:
+ - type: Transform
+ pos: 32.5,100.5
+ parent: 1
+ - uid: 20274
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 1
+ - uid: 20275
+ components:
+ - type: Transform
+ pos: 30.5,100.5
+ parent: 1
+ - uid: 20276
+ components:
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 1
+ - uid: 20277
+ components:
+ - type: Transform
+ pos: 28.5,100.5
+ parent: 1
+ - uid: 20278
+ components:
+ - type: Transform
+ pos: 27.5,100.5
+ parent: 1
+ - uid: 20279
+ components:
+ - type: Transform
+ pos: 27.5,101.5
+ parent: 1
+ - uid: 20280
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 1
+ - uid: 20281
+ components:
+ - type: Transform
+ pos: 28.5,102.5
+ parent: 1
+ - uid: 20282
+ components:
+ - type: Transform
+ pos: 29.5,102.5
+ parent: 1
+ - uid: 20283
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 1
+ - uid: 20284
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - uid: 20285
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 1
+ - uid: 20286
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 1
+ - uid: 20287
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 1
+ - uid: 20288
+ components:
+ - type: Transform
+ pos: 31.5,107.5
+ parent: 1
+ - uid: 20289
+ components:
+ - type: Transform
+ pos: 31.5,108.5
+ parent: 1
+ - uid: 20290
+ components:
+ - type: Transform
+ pos: 31.5,109.5
+ parent: 1
+ - uid: 20291
+ components:
+ - type: Transform
+ pos: 31.5,110.5
+ parent: 1
+ - uid: 20292
+ components:
+ - type: Transform
+ pos: 31.5,111.5
+ parent: 1
+ - uid: 20293
+ components:
+ - type: Transform
+ pos: 31.5,112.5
+ parent: 1
+ - uid: 20294
+ components:
+ - type: Transform
+ pos: 31.5,113.5
+ parent: 1
+ - uid: 20295
+ components:
+ - type: Transform
+ pos: 31.5,114.5
+ parent: 1
+ - uid: 20296
+ components:
+ - type: Transform
+ pos: 31.5,115.5
+ parent: 1
+ - uid: 20297
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - uid: 20298
+ components:
+ - type: Transform
+ pos: 38.5,98.5
+ parent: 1
+ - uid: 20299
+ components:
+ - type: Transform
+ pos: 37.5,115.5
+ parent: 1
+ - uid: 20300
+ components:
+ - type: Transform
+ pos: 36.5,115.5
+ parent: 1
+ - uid: 20301
+ components:
+ - type: Transform
+ pos: 35.5,115.5
+ parent: 1
+ - uid: 20302
+ components:
+ - type: Transform
+ pos: 34.5,115.5
+ parent: 1
+ - uid: 20303
+ components:
+ - type: Transform
+ pos: 33.5,115.5
+ parent: 1
+ - uid: 20304
+ components:
+ - type: Transform
+ pos: 32.5,115.5
+ parent: 1
+ - uid: 20305
+ components:
+ - type: Transform
+ pos: 38.5,99.5
+ parent: 1
+ - uid: 20306
+ components:
+ - type: Transform
+ pos: 42.5,107.5
+ parent: 1
+ - uid: 20307
+ components:
+ - type: Transform
+ pos: 41.5,107.5
+ parent: 1
+ - uid: 20308
+ components:
+ - type: Transform
+ pos: 40.5,107.5
+ parent: 1
+ - uid: 20309
+ components:
+ - type: Transform
+ pos: 39.5,107.5
+ parent: 1
+ - uid: 20310
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+ - uid: 20311
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 1
+ - uid: 20312
+ components:
+ - type: Transform
+ pos: 37.5,106.5
+ parent: 1
+ - uid: 20313
+ components:
+ - type: Transform
+ pos: 36.5,106.5
+ parent: 1
+ - uid: 21037
+ components:
+ - type: Transform
+ pos: 129.5,91.5
+ parent: 1
+ - uid: 21039
+ components:
+ - type: Transform
+ pos: 93.5,116.5
+ parent: 1
+ - uid: 21053
+ components:
+ - type: Transform
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 21054
+ components:
+ - type: Transform
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 21058
+ components:
+ - type: Transform
+ pos: 101.5,42.5
+ parent: 1
+ - uid: 21059
+ components:
+ - type: Transform
+ pos: 101.5,41.5
+ parent: 1
+ - uid: 21088
+ components:
+ - type: Transform
+ pos: 161.5,55.5
+ parent: 1
+ - uid: 21089
+ components:
+ - type: Transform
+ pos: 161.5,56.5
+ parent: 1
+ - uid: 21090
+ components:
+ - type: Transform
+ pos: 161.5,57.5
+ parent: 1
+ - uid: 21092
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 21093
+ components:
+ - type: Transform
+ pos: 159.5,57.5
+ parent: 1
+ - uid: 21094
+ components:
+ - type: Transform
+ pos: 158.5,57.5
+ parent: 1
+ - uid: 21095
+ components:
+ - type: Transform
+ pos: 158.5,58.5
+ parent: 1
+ - uid: 21096
+ components:
+ - type: Transform
+ pos: 158.5,59.5
+ parent: 1
+ - uid: 21097
+ components:
+ - type: Transform
+ pos: 158.5,60.5
+ parent: 1
+ - uid: 21098
+ components:
+ - type: Transform
+ pos: 158.5,61.5
+ parent: 1
+ - uid: 21099
+ components:
+ - type: Transform
+ pos: 158.5,62.5
+ parent: 1
+ - uid: 21100
+ components:
+ - type: Transform
+ pos: 158.5,63.5
+ parent: 1
+ - uid: 21101
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - uid: 21102
+ components:
+ - type: Transform
+ pos: 158.5,65.5
+ parent: 1
+ - uid: 21103
+ components:
+ - type: Transform
+ pos: 158.5,66.5
+ parent: 1
+ - uid: 21104
+ components:
+ - type: Transform
+ pos: 157.5,66.5
+ parent: 1
+ - uid: 21105
+ components:
+ - type: Transform
+ pos: 156.5,66.5
+ parent: 1
+ - uid: 21106
+ components:
+ - type: Transform
+ pos: 156.5,65.5
+ parent: 1
+ - uid: 21107
+ components:
+ - type: Transform
+ pos: 156.5,64.5
+ parent: 1
+ - uid: 21108
+ components:
+ - type: Transform
+ pos: 156.5,62.5
+ parent: 1
+ - uid: 21109
+ components:
+ - type: Transform
+ pos: 156.5,61.5
+ parent: 1
+ - uid: 21110
+ components:
+ - type: Transform
+ pos: 156.5,63.5
+ parent: 1
+ - uid: 21111
+ components:
+ - type: Transform
+ pos: 155.5,61.5
+ parent: 1
+ - uid: 21112
+ components:
+ - type: Transform
+ pos: 154.5,61.5
+ parent: 1
+ - uid: 21113
+ components:
+ - type: Transform
+ pos: 153.5,61.5
+ parent: 1
+ - uid: 21114
+ components:
+ - type: Transform
+ pos: 152.5,61.5
+ parent: 1
+ - uid: 21115
+ components:
+ - type: Transform
+ pos: 151.5,61.5
+ parent: 1
+ - uid: 21116
+ components:
+ - type: Transform
+ pos: 149.5,61.5
+ parent: 1
+ - uid: 21117
+ components:
+ - type: Transform
+ pos: 148.5,61.5
+ parent: 1
+ - uid: 21118
+ components:
+ - type: Transform
+ pos: 150.5,61.5
+ parent: 1
+ - uid: 21119
+ components:
+ - type: Transform
+ pos: 148.5,62.5
+ parent: 1
+ - uid: 21120
+ components:
+ - type: Transform
+ pos: 148.5,63.5
+ parent: 1
+ - uid: 21121
+ components:
+ - type: Transform
+ pos: 148.5,64.5
+ parent: 1
+ - uid: 21122
+ components:
+ - type: Transform
+ pos: 148.5,65.5
+ parent: 1
+ - uid: 21123
+ components:
+ - type: Transform
+ pos: 148.5,66.5
+ parent: 1
+ - uid: 21124
+ components:
+ - type: Transform
+ pos: 148.5,67.5
+ parent: 1
+ - uid: 21125
+ components:
+ - type: Transform
+ pos: 148.5,68.5
+ parent: 1
+ - uid: 21126
+ components:
+ - type: Transform
+ pos: 148.5,69.5
+ parent: 1
+ - uid: 21127
+ components:
+ - type: Transform
+ pos: 148.5,70.5
+ parent: 1
+ - uid: 21128
+ components:
+ - type: Transform
+ pos: 147.5,70.5
+ parent: 1
+ - uid: 21129
+ components:
+ - type: Transform
+ pos: 147.5,71.5
+ parent: 1
+ - uid: 21130
+ components:
+ - type: Transform
+ pos: 147.5,72.5
+ parent: 1
+ - uid: 21131
+ components:
+ - type: Transform
+ pos: 147.5,73.5
+ parent: 1
+ - uid: 21132
+ components:
+ - type: Transform
+ pos: 147.5,74.5
+ parent: 1
+ - uid: 21133
+ components:
+ - type: Transform
+ pos: 147.5,75.5
+ parent: 1
+ - uid: 21134
+ components:
+ - type: Transform
+ pos: 147.5,76.5
+ parent: 1
+ - uid: 21140
+ components:
+ - type: Transform
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 21141
+ components:
+ - type: Transform
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 21142
+ components:
+ - type: Transform
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 21143
+ components:
+ - type: Transform
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 21144
+ components:
+ - type: Transform
+ pos: 156.5,75.5
+ parent: 1
+ - uid: 21145
+ components:
+ - type: Transform
+ pos: 156.5,74.5
+ parent: 1
+ - uid: 21146
+ components:
+ - type: Transform
+ pos: 156.5,73.5
+ parent: 1
+ - uid: 21147
+ components:
+ - type: Transform
+ pos: 156.5,72.5
+ parent: 1
+ - uid: 21148
+ components:
+ - type: Transform
+ pos: 156.5,71.5
+ parent: 1
+ - uid: 21149
+ components:
+ - type: Transform
+ pos: 156.5,70.5
+ parent: 1
+ - uid: 21150
+ components:
+ - type: Transform
+ pos: 156.5,69.5
+ parent: 1
+ - uid: 21151
+ components:
+ - type: Transform
+ pos: 156.5,67.5
+ parent: 1
+ - uid: 21152
+ components:
+ - type: Transform
+ pos: 156.5,68.5
+ parent: 1
+ - uid: 21153
+ components:
+ - type: Transform
+ pos: 146.5,70.5
+ parent: 1
+ - uid: 21154
+ components:
+ - type: Transform
+ pos: 144.5,70.5
+ parent: 1
+ - uid: 21155
+ components:
+ - type: Transform
+ pos: 145.5,70.5
+ parent: 1
+ - uid: 21156
+ components:
+ - type: Transform
+ pos: 142.5,70.5
+ parent: 1
+ - uid: 21157
+ components:
+ - type: Transform
+ pos: 141.5,70.5
+ parent: 1
+ - uid: 21158
+ components:
+ - type: Transform
+ pos: 143.5,70.5
+ parent: 1
+ - uid: 21159
+ components:
+ - type: Transform
+ pos: 140.5,70.5
+ parent: 1
+ - uid: 21160
+ components:
+ - type: Transform
+ pos: 139.5,70.5
+ parent: 1
+ - uid: 21161
+ components:
+ - type: Transform
+ pos: 138.5,70.5
+ parent: 1
+ - uid: 21162
+ components:
+ - type: Transform
+ pos: 138.5,69.5
+ parent: 1
+ - uid: 21163
+ components:
+ - type: Transform
+ pos: 138.5,68.5
+ parent: 1
+ - uid: 21164
+ components:
+ - type: Transform
+ pos: 138.5,67.5
+ parent: 1
+ - uid: 21165
+ components:
+ - type: Transform
+ pos: 138.5,66.5
+ parent: 1
+ - uid: 21166
+ components:
+ - type: Transform
+ pos: 138.5,65.5
+ parent: 1
+ - uid: 21167
+ components:
+ - type: Transform
+ pos: 138.5,64.5
+ parent: 1
+ - uid: 21168
+ components:
+ - type: Transform
+ pos: 138.5,63.5
+ parent: 1
+ - uid: 21169
+ components:
+ - type: Transform
+ pos: 138.5,62.5
+ parent: 1
+ - uid: 21170
+ components:
+ - type: Transform
+ pos: 138.5,61.5
+ parent: 1
+ - uid: 21171
+ components:
+ - type: Transform
+ pos: 138.5,59.5
+ parent: 1
+ - uid: 21172
+ components:
+ - type: Transform
+ pos: 138.5,58.5
+ parent: 1
+ - uid: 21173
+ components:
+ - type: Transform
+ pos: 138.5,57.5
+ parent: 1
+ - uid: 21174
+ components:
+ - type: Transform
+ pos: 138.5,60.5
+ parent: 1
+ - uid: 21175
+ components:
+ - type: Transform
+ pos: 138.5,56.5
+ parent: 1
+ - uid: 21176
+ components:
+ - type: Transform
+ pos: 138.5,55.5
+ parent: 1
+ - uid: 21177
+ components:
+ - type: Transform
+ pos: 137.5,55.5
+ parent: 1
+ - uid: 21178
+ components:
+ - type: Transform
+ pos: 136.5,55.5
+ parent: 1
+ - uid: 21179
+ components:
+ - type: Transform
+ pos: 135.5,55.5
+ parent: 1
+ - uid: 21180
+ components:
+ - type: Transform
+ pos: 134.5,55.5
+ parent: 1
+ - uid: 21181
+ components:
+ - type: Transform
+ pos: 133.5,55.5
+ parent: 1
+ - uid: 21182
+ components:
+ - type: Transform
+ pos: 131.5,55.5
+ parent: 1
+ - uid: 21183
+ components:
+ - type: Transform
+ pos: 130.5,55.5
+ parent: 1
+ - uid: 21184
+ components:
+ - type: Transform
+ pos: 132.5,55.5
+ parent: 1
+ - uid: 21185
+ components:
+ - type: Transform
+ pos: 130.5,56.5
+ parent: 1
+ - uid: 21186
+ components:
+ - type: Transform
+ pos: 130.5,57.5
+ parent: 1
+ - uid: 21187
+ components:
+ - type: Transform
+ pos: 130.5,58.5
+ parent: 1
+ - uid: 21188
+ components:
+ - type: Transform
+ pos: 130.5,59.5
+ parent: 1
+ - uid: 21189
+ components:
+ - type: Transform
+ pos: 129.5,59.5
+ parent: 1
+ - uid: 21190
+ components:
+ - type: Transform
+ pos: 128.5,59.5
+ parent: 1
+ - uid: 21191
+ components:
+ - type: Transform
+ pos: 127.5,59.5
+ parent: 1
+ - uid: 21192
+ components:
+ - type: Transform
+ pos: 127.5,60.5
+ parent: 1
+ - uid: 21193
+ components:
+ - type: Transform
+ pos: 127.5,61.5
+ parent: 1
+ - uid: 21194
+ components:
+ - type: Transform
+ pos: 127.5,62.5
+ parent: 1
+ - uid: 21195
+ components:
+ - type: Transform
+ pos: 127.5,63.5
+ parent: 1
+ - uid: 21196
+ components:
+ - type: Transform
+ pos: 127.5,64.5
+ parent: 1
+ - uid: 21197
+ components:
+ - type: Transform
+ pos: 127.5,66.5
+ parent: 1
+ - uid: 21198
+ components:
+ - type: Transform
+ pos: 127.5,67.5
+ parent: 1
+ - uid: 21199
+ components:
+ - type: Transform
+ pos: 127.5,68.5
+ parent: 1
+ - uid: 21200
+ components:
+ - type: Transform
+ pos: 127.5,69.5
+ parent: 1
+ - uid: 21201
+ components:
+ - type: Transform
+ pos: 127.5,70.5
+ parent: 1
+ - uid: 21202
+ components:
+ - type: Transform
+ pos: 127.5,71.5
+ parent: 1
+ - uid: 21203
+ components:
+ - type: Transform
+ pos: 127.5,72.5
+ parent: 1
+ - uid: 21204
+ components:
+ - type: Transform
+ pos: 127.5,73.5
+ parent: 1
+ - uid: 21205
+ components:
+ - type: Transform
+ pos: 127.5,65.5
+ parent: 1
+ - uid: 21206
+ components:
+ - type: Transform
+ pos: 126.5,59.5
+ parent: 1
+ - uid: 21207
+ components:
+ - type: Transform
+ pos: 125.5,59.5
+ parent: 1
+ - uid: 21208
+ components:
+ - type: Transform
+ pos: 124.5,59.5
+ parent: 1
+ - uid: 21209
+ components:
+ - type: Transform
+ pos: 123.5,59.5
+ parent: 1
+ - uid: 21210
+ components:
+ - type: Transform
+ pos: 122.5,59.5
+ parent: 1
+ - uid: 21211
+ components:
+ - type: Transform
+ pos: 121.5,59.5
+ parent: 1
+ - uid: 21212
+ components:
+ - type: Transform
+ pos: 138.5,71.5
+ parent: 1
+ - uid: 21213
+ components:
+ - type: Transform
+ pos: 138.5,72.5
+ parent: 1
+ - uid: 21214
+ components:
+ - type: Transform
+ pos: 138.5,73.5
+ parent: 1
+ - uid: 21215
+ components:
+ - type: Transform
+ pos: 138.5,74.5
+ parent: 1
+ - uid: 21216
+ components:
+ - type: Transform
+ pos: 138.5,75.5
+ parent: 1
+ - uid: 21217
+ components:
+ - type: Transform
+ pos: 126.5,64.5
+ parent: 1
+ - uid: 21218
+ components:
+ - type: Transform
+ pos: 124.5,64.5
+ parent: 1
+ - uid: 21219
+ components:
+ - type: Transform
+ pos: 123.5,64.5
+ parent: 1
+ - uid: 21220
+ components:
+ - type: Transform
+ pos: 122.5,64.5
+ parent: 1
+ - uid: 21221
+ components:
+ - type: Transform
+ pos: 121.5,64.5
+ parent: 1
+ - uid: 21222
+ components:
+ - type: Transform
+ pos: 125.5,64.5
+ parent: 1
+ - uid: 21223
+ components:
+ - type: Transform
+ pos: 121.5,65.5
+ parent: 1
+ - uid: 21224
+ components:
+ - type: Transform
+ pos: 126.5,67.5
+ parent: 1
+ - uid: 21225
+ components:
+ - type: Transform
+ pos: 125.5,67.5
+ parent: 1
+ - uid: 21226
+ components:
+ - type: Transform
+ pos: 124.5,67.5
+ parent: 1
+ - uid: 21227
+ components:
+ - type: Transform
+ pos: 123.5,67.5
+ parent: 1
+ - uid: 21228
+ components:
+ - type: Transform
+ pos: 122.5,67.5
+ parent: 1
+ - uid: 21229
+ components:
+ - type: Transform
+ pos: 121.5,67.5
+ parent: 1
+ - uid: 21230
+ components:
+ - type: Transform
+ pos: 121.5,68.5
+ parent: 1
+ - uid: 21231
+ components:
+ - type: Transform
+ pos: 126.5,70.5
+ parent: 1
+ - uid: 21232
+ components:
+ - type: Transform
+ pos: 125.5,70.5
+ parent: 1
+ - uid: 21234
+ components:
+ - type: Transform
+ pos: 122.5,70.5
+ parent: 1
+ - uid: 21235
+ components:
+ - type: Transform
+ pos: 121.5,70.5
+ parent: 1
+ - uid: 21236
+ components:
+ - type: Transform
+ pos: 123.5,70.5
+ parent: 1
+ - uid: 21237
+ components:
+ - type: Transform
+ pos: 121.5,71.5
+ parent: 1
+ - uid: 21238
+ components:
+ - type: Transform
+ pos: 126.5,73.5
+ parent: 1
+ - uid: 21239
+ components:
+ - type: Transform
+ pos: 124.5,73.5
+ parent: 1
+ - uid: 21240
+ components:
+ - type: Transform
+ pos: 123.5,73.5
+ parent: 1
+ - uid: 21241
+ components:
+ - type: Transform
+ pos: 122.5,73.5
+ parent: 1
+ - uid: 21242
+ components:
+ - type: Transform
+ pos: 121.5,73.5
+ parent: 1
+ - uid: 21243
+ components:
+ - type: Transform
+ pos: 125.5,73.5
+ parent: 1
+ - uid: 21244
+ components:
+ - type: Transform
+ pos: 121.5,74.5
+ parent: 1
+ - uid: 21245
+ components:
+ - type: Transform
+ pos: 131.5,59.5
+ parent: 1
+ - uid: 21246
+ components:
+ - type: Transform
+ pos: 132.5,59.5
+ parent: 1
+ - uid: 21248
+ components:
+ - type: Transform
+ pos: 88.5,44.5
+ parent: 1
+ - uid: 21249
+ components:
+ - type: Transform
+ pos: 137.5,59.5
+ parent: 1
+ - uid: 21250
+ components:
+ - type: Transform
+ pos: 136.5,59.5
+ parent: 1
+ - uid: 21251
+ components:
+ - type: Transform
+ pos: 135.5,59.5
+ parent: 1
+ - uid: 21252
+ components:
+ - type: Transform
+ pos: 134.5,59.5
+ parent: 1
+ - uid: 21253
+ components:
+ - type: Transform
+ pos: 134.5,60.5
+ parent: 1
+ - uid: 21254
+ components:
+ - type: Transform
+ pos: 134.5,61.5
+ parent: 1
+ - uid: 21255
+ components:
+ - type: Transform
+ pos: 134.5,62.5
+ parent: 1
+ - uid: 21256
+ components:
+ - type: Transform
+ pos: 134.5,63.5
+ parent: 1
+ - uid: 21257
+ components:
+ - type: Transform
+ pos: 134.5,64.5
+ parent: 1
+ - uid: 21258
+ components:
+ - type: Transform
+ pos: 134.5,66.5
+ parent: 1
+ - uid: 21259
+ components:
+ - type: Transform
+ pos: 134.5,67.5
+ parent: 1
+ - uid: 21260
+ components:
+ - type: Transform
+ pos: 134.5,68.5
+ parent: 1
+ - uid: 21261
+ components:
+ - type: Transform
+ pos: 134.5,65.5
+ parent: 1
+ - uid: 21262
+ components:
+ - type: Transform
+ pos: 128.5,71.5
+ parent: 1
+ - uid: 21263
+ components:
+ - type: Transform
+ pos: 129.5,71.5
+ parent: 1
+ - uid: 21264
+ components:
+ - type: Transform
+ pos: 129.5,72.5
+ parent: 1
+ - uid: 21265
+ components:
+ - type: Transform
+ pos: 129.5,73.5
+ parent: 1
+ - uid: 21266
+ components:
+ - type: Transform
+ pos: 129.5,70.5
+ parent: 1
+ - uid: 21267
+ components:
+ - type: Transform
+ pos: 129.5,69.5
+ parent: 1
+ - uid: 21268
+ components:
+ - type: Transform
+ pos: 129.5,68.5
+ parent: 1
+ - uid: 21269
+ components:
+ - type: Transform
+ pos: 130.5,71.5
+ parent: 1
+ - uid: 21270
+ components:
+ - type: Transform
+ pos: 131.5,71.5
+ parent: 1
+ - uid: 21271
+ components:
+ - type: Transform
+ pos: 132.5,71.5
+ parent: 1
+ - uid: 21272
+ components:
+ - type: Transform
+ pos: 133.5,71.5
+ parent: 1
+ - uid: 21273
+ components:
+ - type: Transform
+ pos: 134.5,71.5
+ parent: 1
+ - uid: 21274
+ components:
+ - type: Transform
+ pos: 134.5,70.5
+ parent: 1
+ - uid: 21275
+ components:
+ - type: Transform
+ pos: 134.5,69.5
+ parent: 1
+ - uid: 21276
+ components:
+ - type: Transform
+ pos: 135.5,70.5
+ parent: 1
+ - uid: 21277
+ components:
+ - type: Transform
+ pos: 136.5,69.5
+ parent: 1
+ - uid: 21278
+ components:
+ - type: Transform
+ pos: 136.5,70.5
+ parent: 1
+ - uid: 21279
+ components:
+ - type: Transform
+ pos: 136.5,71.5
+ parent: 1
+ - uid: 21280
+ components:
+ - type: Transform
+ pos: 133.5,72.5
+ parent: 1
+ - uid: 21281
+ components:
+ - type: Transform
+ pos: 133.5,73.5
+ parent: 1
+ - uid: 21282
+ components:
+ - type: Transform
+ pos: 133.5,74.5
+ parent: 1
+ - uid: 21283
+ components:
+ - type: Transform
+ pos: 133.5,75.5
+ parent: 1
+ - uid: 21284
+ components:
+ - type: Transform
+ pos: 132.5,75.5
+ parent: 1
+ - uid: 21285
+ components:
+ - type: Transform
+ pos: 131.5,75.5
+ parent: 1
+ - uid: 21286
+ components:
+ - type: Transform
+ pos: 134.5,75.5
+ parent: 1
+ - uid: 21287
+ components:
+ - type: Transform
+ pos: 133.5,64.5
+ parent: 1
+ - uid: 21288
+ components:
+ - type: Transform
+ pos: 132.5,64.5
+ parent: 1
+ - uid: 21289
+ components:
+ - type: Transform
+ pos: 132.5,65.5
+ parent: 1
+ - uid: 21290
+ components:
+ - type: Transform
+ pos: 132.5,66.5
+ parent: 1
+ - uid: 21291
+ components:
+ - type: Transform
+ pos: 131.5,66.5
+ parent: 1
+ - uid: 21292
+ components:
+ - type: Transform
+ pos: 131.5,54.5
+ parent: 1
+ - uid: 21293
+ components:
+ - type: Transform
+ pos: 130.5,53.5
+ parent: 1
+ - uid: 21294
+ components:
+ - type: Transform
+ pos: 131.5,53.5
+ parent: 1
+ - uid: 21295
+ components:
+ - type: Transform
+ pos: 132.5,53.5
+ parent: 1
+ - uid: 21296
+ components:
+ - type: Transform
+ pos: 131.5,52.5
+ parent: 1
+ - uid: 21297
+ components:
+ - type: Transform
+ pos: 131.5,51.5
+ parent: 1
+ - uid: 21298
+ components:
+ - type: Transform
+ pos: 131.5,50.5
+ parent: 1
+ - uid: 21299
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+ - uid: 21300
+ components:
+ - type: Transform
+ pos: 131.5,48.5
+ parent: 1
+ - uid: 21301
+ components:
+ - type: Transform
+ pos: 131.5,47.5
+ parent: 1
+ - uid: 21302
+ components:
+ - type: Transform
+ pos: 131.5,46.5
+ parent: 1
+ - uid: 21303
+ components:
+ - type: Transform
+ pos: 131.5,45.5
+ parent: 1
+ - uid: 21304
+ components:
+ - type: Transform
+ pos: 131.5,44.5
+ parent: 1
+ - uid: 21305
+ components:
+ - type: Transform
+ pos: 130.5,43.5
+ parent: 1
+ - uid: 21306
+ components:
+ - type: Transform
+ pos: 132.5,43.5
+ parent: 1
+ - uid: 21307
+ components:
+ - type: Transform
+ pos: 131.5,43.5
+ parent: 1
+ - uid: 21308
+ components:
+ - type: Transform
+ pos: 139.5,55.5
+ parent: 1
+ - uid: 21309
+ components:
+ - type: Transform
+ pos: 139.5,54.5
+ parent: 1
+ - uid: 21310
+ components:
+ - type: Transform
+ pos: 139.5,53.5
+ parent: 1
+ - uid: 21311
+ components:
+ - type: Transform
+ pos: 139.5,52.5
+ parent: 1
+ - uid: 21312
+ components:
+ - type: Transform
+ pos: 139.5,51.5
+ parent: 1
+ - uid: 21313
+ components:
+ - type: Transform
+ pos: 139.5,50.5
+ parent: 1
+ - uid: 21314
+ components:
+ - type: Transform
+ pos: 139.5,49.5
+ parent: 1
+ - uid: 21315
+ components:
+ - type: Transform
+ pos: 139.5,48.5
+ parent: 1
+ - uid: 21316
+ components:
+ - type: Transform
+ pos: 139.5,47.5
+ parent: 1
+ - uid: 21317
+ components:
+ - type: Transform
+ pos: 139.5,46.5
+ parent: 1
+ - uid: 21318
+ components:
+ - type: Transform
+ pos: 139.5,45.5
+ parent: 1
+ - uid: 21319
+ components:
+ - type: Transform
+ pos: 139.5,44.5
+ parent: 1
+ - uid: 21320
+ components:
+ - type: Transform
+ pos: 138.5,44.5
+ parent: 1
+ - uid: 21321
+ components:
+ - type: Transform
+ pos: 138.5,43.5
+ parent: 1
+ - uid: 21322
+ components:
+ - type: Transform
+ pos: 143.5,69.5
+ parent: 1
+ - uid: 21323
+ components:
+ - type: Transform
+ pos: 143.5,68.5
+ parent: 1
+ - uid: 21324
+ components:
+ - type: Transform
+ pos: 140.5,66.5
+ parent: 1
+ - uid: 21325
+ components:
+ - type: Transform
+ pos: 140.5,67.5
+ parent: 1
+ - uid: 21326
+ components:
+ - type: Transform
+ pos: 140.5,68.5
+ parent: 1
+ - uid: 21327
+ components:
+ - type: Transform
+ pos: 141.5,68.5
+ parent: 1
+ - uid: 21328
+ components:
+ - type: Transform
+ pos: 142.5,68.5
+ parent: 1
+ - uid: 21329
+ components:
+ - type: Transform
+ pos: 144.5,68.5
+ parent: 1
+ - uid: 21330
+ components:
+ - type: Transform
+ pos: 145.5,68.5
+ parent: 1
+ - uid: 21331
+ components:
+ - type: Transform
+ pos: 146.5,68.5
+ parent: 1
+ - uid: 21332
+ components:
+ - type: Transform
+ pos: 146.5,67.5
+ parent: 1
+ - uid: 21333
+ components:
+ - type: Transform
+ pos: 146.5,66.5
+ parent: 1
+ - uid: 21334
+ components:
+ - type: Transform
+ pos: 139.5,62.5
+ parent: 1
+ - uid: 21335
+ components:
+ - type: Transform
+ pos: 140.5,62.5
+ parent: 1
+ - uid: 21336
+ components:
+ - type: Transform
+ pos: 141.5,62.5
+ parent: 1
+ - uid: 21337
+ components:
+ - type: Transform
+ pos: 141.5,63.5
+ parent: 1
+ - uid: 21338
+ components:
+ - type: Transform
+ pos: 141.5,64.5
+ parent: 1
+ - uid: 21339
+ components:
+ - type: Transform
+ pos: 148.5,60.5
+ parent: 1
+ - uid: 21340
+ components:
+ - type: Transform
+ pos: 142.5,65.5
+ parent: 1
+ - uid: 21341
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+ - uid: 21342
+ components:
+ - type: Transform
+ pos: 141.5,65.5
+ parent: 1
+ - uid: 21343
+ components:
+ - type: Transform
+ pos: 148.5,59.5
+ parent: 1
+ - uid: 21344
+ components:
+ - type: Transform
+ pos: 148.5,58.5
+ parent: 1
+ - uid: 21345
+ components:
+ - type: Transform
+ pos: 148.5,57.5
+ parent: 1
+ - uid: 21346
+ components:
+ - type: Transform
+ pos: 148.5,56.5
+ parent: 1
+ - uid: 21347
+ components:
+ - type: Transform
+ pos: 147.5,56.5
+ parent: 1
+ - uid: 21348
+ components:
+ - type: Transform
+ pos: 146.5,56.5
+ parent: 1
+ - uid: 21349
+ components:
+ - type: Transform
+ pos: 145.5,56.5
+ parent: 1
+ - uid: 21350
+ components:
+ - type: Transform
+ pos: 144.5,56.5
+ parent: 1
+ - uid: 21351
+ components:
+ - type: Transform
+ pos: 143.5,56.5
+ parent: 1
+ - uid: 21352
+ components:
+ - type: Transform
+ pos: 142.5,56.5
+ parent: 1
+ - uid: 21353
+ components:
+ - type: Transform
+ pos: 141.5,56.5
+ parent: 1
+ - uid: 21354
+ components:
+ - type: Transform
+ pos: 140.5,56.5
+ parent: 1
+ - uid: 21355
+ components:
+ - type: Transform
+ pos: 139.5,56.5
+ parent: 1
+ - uid: 21356
+ components:
+ - type: Transform
+ pos: 145.5,55.5
+ parent: 1
+ - uid: 21357
+ components:
+ - type: Transform
+ pos: 145.5,54.5
+ parent: 1
+ - uid: 21358
+ components:
+ - type: Transform
+ pos: 145.5,53.5
+ parent: 1
+ - uid: 21359
+ components:
+ - type: Transform
+ pos: 145.5,52.5
+ parent: 1
+ - uid: 21360
+ components:
+ - type: Transform
+ pos: 145.5,51.5
+ parent: 1
+ - uid: 21361
+ components:
+ - type: Transform
+ pos: 145.5,50.5
+ parent: 1
+ - uid: 21362
+ components:
+ - type: Transform
+ pos: 145.5,49.5
+ parent: 1
+ - uid: 21363
+ components:
+ - type: Transform
+ pos: 145.5,48.5
+ parent: 1
+ - uid: 21364
+ components:
+ - type: Transform
+ pos: 145.5,47.5
+ parent: 1
+ - uid: 21365
+ components:
+ - type: Transform
+ pos: 145.5,46.5
+ parent: 1
+ - uid: 21366
+ components:
+ - type: Transform
+ pos: 146.5,46.5
+ parent: 1
+ - uid: 21367
+ components:
+ - type: Transform
+ pos: 147.5,46.5
+ parent: 1
+ - uid: 21368
+ components:
+ - type: Transform
+ pos: 148.5,46.5
+ parent: 1
+ - uid: 21369
+ components:
+ - type: Transform
+ pos: 149.5,46.5
+ parent: 1
+ - uid: 21370
+ components:
+ - type: Transform
+ pos: 150.5,46.5
+ parent: 1
+ - uid: 21371
+ components:
+ - type: Transform
+ pos: 151.5,46.5
+ parent: 1
+ - uid: 21372
+ components:
+ - type: Transform
+ pos: 152.5,46.5
+ parent: 1
+ - uid: 21373
+ components:
+ - type: Transform
+ pos: 153.5,46.5
+ parent: 1
+ - uid: 21374
+ components:
+ - type: Transform
+ pos: 155.5,46.5
+ parent: 1
+ - uid: 21375
+ components:
+ - type: Transform
+ pos: 156.5,46.5
+ parent: 1
+ - uid: 21376
+ components:
+ - type: Transform
+ pos: 157.5,46.5
+ parent: 1
+ - uid: 21377
+ components:
+ - type: Transform
+ pos: 158.5,46.5
+ parent: 1
+ - uid: 21378
+ components:
+ - type: Transform
+ pos: 154.5,46.5
+ parent: 1
+ - uid: 21383
+ components:
+ - type: Transform
+ pos: 104.5,45.5
+ parent: 1
+ - uid: 21384
+ components:
+ - type: Transform
+ pos: 137.5,143.5
+ parent: 1
+ - uid: 21570
+ components:
+ - type: Transform
+ pos: 88.5,42.5
+ parent: 1
+ - uid: 21654
+ components:
+ - type: Transform
+ pos: 49.5,74.5
+ parent: 1
+ - uid: 21656
+ components:
+ - type: Transform
+ pos: 85.5,87.5
+ parent: 1
+ - uid: 21690
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 21706
+ components:
+ - type: Transform
+ pos: 141.5,99.5
+ parent: 1
+ - uid: 21792
+ components:
+ - type: Transform
+ pos: 129.5,55.5
+ parent: 1
+ - uid: 21793
+ components:
+ - type: Transform
+ pos: 128.5,55.5
+ parent: 1
+ - uid: 21794
+ components:
+ - type: Transform
+ pos: 127.5,55.5
+ parent: 1
+ - uid: 21795
+ components:
+ - type: Transform
+ pos: 126.5,55.5
+ parent: 1
+ - uid: 21796
+ components:
+ - type: Transform
+ pos: 125.5,55.5
+ parent: 1
+ - uid: 21797
+ components:
+ - type: Transform
+ pos: 125.5,56.5
+ parent: 1
+ - uid: 21798
+ components:
+ - type: Transform
+ pos: 125.5,57.5
+ parent: 1
+ - uid: 21952
+ components:
+ - type: Transform
+ pos: 138.5,47.5
+ parent: 1
+ - uid: 21953
+ components:
+ - type: Transform
+ pos: 137.5,47.5
+ parent: 1
+ - uid: 22038
+ components:
+ - type: Transform
+ pos: 149.5,57.5
+ parent: 1
+ - uid: 22039
+ components:
+ - type: Transform
+ pos: 150.5,57.5
+ parent: 1
+ - uid: 22040
+ components:
+ - type: Transform
+ pos: 151.5,57.5
+ parent: 1
+ - uid: 22041
+ components:
+ - type: Transform
+ pos: 152.5,57.5
+ parent: 1
+ - uid: 22042
+ components:
+ - type: Transform
+ pos: 153.5,57.5
+ parent: 1
+ - uid: 22043
+ components:
+ - type: Transform
+ pos: 154.5,57.5
+ parent: 1
+ - uid: 22044
+ components:
+ - type: Transform
+ pos: 154.5,56.5
+ parent: 1
+ - uid: 22045
+ components:
+ - type: Transform
+ pos: 154.5,55.5
+ parent: 1
+ - uid: 22046
+ components:
+ - type: Transform
+ pos: 154.5,54.5
+ parent: 1
+ - uid: 22050
+ components:
+ - type: Transform
+ pos: 152.5,59.5
+ parent: 1
+ - uid: 22051
+ components:
+ - type: Transform
+ pos: 152.5,60.5
+ parent: 1
+ - uid: 22073
+ components:
+ - type: Transform
+ pos: 149.5,67.5
+ parent: 1
+ - uid: 22074
+ components:
+ - type: Transform
+ pos: 150.5,67.5
+ parent: 1
+ - uid: 22075
+ components:
+ - type: Transform
+ pos: 150.5,68.5
+ parent: 1
+ - uid: 22077
+ components:
+ - type: Transform
+ pos: 143.5,64.5
+ parent: 1
+ - uid: 22078
+ components:
+ - type: Transform
+ pos: 143.5,63.5
+ parent: 1
+ - uid: 22123
+ components:
+ - type: Transform
+ pos: 145.5,71.5
+ parent: 1
+ - uid: 22124
+ components:
+ - type: Transform
+ pos: 145.5,72.5
+ parent: 1
+ - uid: 22125
+ components:
+ - type: Transform
+ pos: 135.5,64.5
+ parent: 1
+ - uid: 22126
+ components:
+ - type: Transform
+ pos: 136.5,64.5
+ parent: 1
+ - uid: 22127
+ components:
+ - type: Transform
+ pos: 128.5,66.5
+ parent: 1
+ - uid: 22128
+ components:
+ - type: Transform
+ pos: 129.5,66.5
+ parent: 1
+ - uid: 22129
+ components:
+ - type: Transform
+ pos: 130.5,75.5
+ parent: 1
+ - uid: 22130
+ components:
+ - type: Transform
+ pos: 129.5,60.5
+ parent: 1
+ - uid: 22131
+ components:
+ - type: Transform
+ pos: 130.5,73.5
+ parent: 1
+ - uid: 22132
+ components:
+ - type: Transform
+ pos: 130.5,74.5
+ parent: 1
+ - uid: 22133
+ components:
+ - type: Transform
+ pos: 129.5,61.5
+ parent: 1
+ - uid: 22134
+ components:
+ - type: Transform
+ pos: 143.5,50.5
+ parent: 1
+ - uid: 22135
+ components:
+ - type: Transform
+ pos: 144.5,50.5
+ parent: 1
+ - uid: 22136
+ components:
+ - type: Transform
+ pos: 142.5,57.5
+ parent: 1
+ - uid: 22137
+ components:
+ - type: Transform
+ pos: 142.5,58.5
+ parent: 1
+ - uid: 22138
+ components:
+ - type: Transform
+ pos: 142.5,59.5
+ parent: 1
+ - uid: 22428
+ components:
+ - type: Transform
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 22785
+ components:
+ - type: Transform
+ pos: 104.5,48.5
+ parent: 1
+ - uid: 22786
+ components:
+ - type: Transform
+ pos: 106.5,48.5
+ parent: 1
+ - uid: 22790
+ components:
+ - type: Transform
+ pos: 106.5,50.5
+ parent: 1
+ - uid: 22976
+ components:
+ - type: Transform
+ pos: 91.5,53.5
+ parent: 1
+ - uid: 22983
+ components:
+ - type: Transform
+ pos: 84.5,45.5
+ parent: 1
+ - uid: 23064
+ components:
+ - type: Transform
+ pos: 126.5,57.5
+ parent: 1
+ - uid: 23065
+ components:
+ - type: Transform
+ pos: 126.5,58.5
+ parent: 1
+ - uid: 23205
+ components:
+ - type: Transform
+ pos: 101.5,36.5
+ parent: 1
+ - uid: 23206
+ components:
+ - type: Transform
+ pos: 101.5,39.5
+ parent: 1
+ - uid: 23208
+ components:
+ - type: Transform
+ pos: 101.5,35.5
+ parent: 1
+ - uid: 23213
+ components:
+ - type: Transform
+ pos: 103.5,46.5
+ parent: 1
+ - uid: 23241
+ components:
+ - type: Transform
+ pos: 137.5,142.5
+ parent: 1
+ - uid: 23319
+ components:
+ - type: Transform
+ pos: 87.5,82.5
+ parent: 1
+ - uid: 23345
+ components:
+ - type: Transform
+ pos: 134.5,93.5
+ parent: 1
+ - uid: 23368
+ components:
+ - type: Transform
+ pos: 48.5,74.5
+ parent: 1
+ - uid: 23372
+ components:
+ - type: Transform
+ pos: 90.5,47.5
+ parent: 1
+ - uid: 23379
+ components:
+ - type: Transform
+ pos: 146.5,89.5
+ parent: 1
+ - uid: 23387
+ components:
+ - type: Transform
+ pos: 74.5,60.5
+ parent: 1
+ - uid: 23391
+ components:
+ - type: Transform
+ pos: 96.5,36.5
+ parent: 1
+ - uid: 23396
+ components:
+ - type: Transform
+ pos: 110.5,50.5
+ parent: 1
+ - uid: 23413
+ components:
+ - type: Transform
+ pos: 42.5,126.5
+ parent: 1
+ - uid: 23421
+ components:
+ - type: Transform
+ pos: 86.5,45.5
+ parent: 1
+ - uid: 23422
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 1
+ - uid: 23423
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 1
+ - uid: 23424
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 1
+ - uid: 23427
+ components:
+ - type: Transform
+ pos: 133.5,93.5
+ parent: 1
+ - uid: 23431
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 1
+ - uid: 23450
+ components:
+ - type: Transform
+ pos: 67.5,157.5
+ parent: 1
+ - uid: 23454
+ components:
+ - type: Transform
+ pos: 128.5,108.5
+ parent: 1
+ - uid: 23464
+ components:
+ - type: Transform
+ pos: 44.5,70.5
+ parent: 1
+ - uid: 23475
+ components:
+ - type: Transform
+ pos: 53.5,130.5
+ parent: 1
+ - uid: 23476
+ components:
+ - type: Transform
+ pos: 54.5,136.5
+ parent: 1
+ - uid: 23481
+ components:
+ - type: Transform
+ pos: 86.5,87.5
+ parent: 1
+ - uid: 23482
+ components:
+ - type: Transform
+ pos: 90.5,84.5
+ parent: 1
+ - uid: 23501
+ components:
+ - type: Transform
+ pos: 165.5,131.5
+ parent: 1
+ - uid: 23503
+ components:
+ - type: Transform
+ pos: 100.5,35.5
+ parent: 1
+ - uid: 23506
+ components:
+ - type: Transform
+ pos: 100.5,42.5
+ parent: 1
+ - uid: 23518
+ components:
+ - type: Transform
+ pos: 153.5,150.5
+ parent: 1
+ - uid: 23520
+ components:
+ - type: Transform
+ pos: 128.5,105.5
+ parent: 1
+ - uid: 23525
+ components:
+ - type: Transform
+ pos: 143.5,99.5
+ parent: 1
+ - uid: 23526
+ components:
+ - type: Transform
+ pos: 67.5,162.5
+ parent: 1
+ - uid: 23527
+ components:
+ - type: Transform
+ pos: 69.5,162.5
+ parent: 1
+ - uid: 23528
+ components:
+ - type: Transform
+ pos: 69.5,161.5
+ parent: 1
+ - uid: 23529
+ components:
+ - type: Transform
+ pos: 69.5,160.5
+ parent: 1
+ - uid: 23534
+ components:
+ - type: Transform
+ pos: 135.5,140.5
+ parent: 1
+ - uid: 23535
+ components:
+ - type: Transform
+ pos: 143.5,89.5
+ parent: 1
+ - uid: 23536
+ components:
+ - type: Transform
+ pos: 144.5,89.5
+ parent: 1
+ - uid: 23545
+ components:
+ - type: Transform
+ pos: 159.5,148.5
+ parent: 1
+ - uid: 23546
+ components:
+ - type: Transform
+ pos: 159.5,149.5
+ parent: 1
+ - uid: 23556
+ components:
+ - type: Transform
+ pos: 165.5,136.5
+ parent: 1
+ - uid: 23576
+ components:
+ - type: Transform
+ pos: 33.5,79.5
+ parent: 1
+ - uid: 23577
+ components:
+ - type: Transform
+ pos: 32.5,79.5
+ parent: 1
+ - uid: 23599
+ components:
+ - type: Transform
+ pos: 33.5,121.5
+ parent: 1
+ - uid: 23601
+ components:
+ - type: Transform
+ pos: 36.5,122.5
+ parent: 1
+ - uid: 23603
+ components:
+ - type: Transform
+ pos: 40.5,122.5
+ parent: 1
+ - uid: 23611
+ components:
+ - type: Transform
+ pos: 100.5,51.5
+ parent: 1
+ - uid: 23622
+ components:
+ - type: Transform
+ pos: 85.5,61.5
+ parent: 1
+ - uid: 23626
+ components:
+ - type: Transform
+ pos: 48.5,122.5
+ parent: 1
+ - uid: 23628
+ components:
+ - type: Transform
+ pos: 43.5,126.5
+ parent: 1
+ - uid: 23639
+ components:
+ - type: Transform
+ pos: 45.5,70.5
+ parent: 1
+ - uid: 23640
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 1
+ - uid: 23641
+ components:
+ - type: Transform
+ pos: 46.5,70.5
+ parent: 1
+ - uid: 23657
+ components:
+ - type: Transform
+ pos: 160.5,149.5
+ parent: 1
+ - uid: 23684
+ components:
+ - type: Transform
+ pos: 109.5,165.5
+ parent: 1
+ - uid: 23691
+ components:
+ - type: Transform
+ pos: 123.5,160.5
+ parent: 1
+ - uid: 23693
+ components:
+ - type: Transform
+ pos: 122.5,164.5
+ parent: 1
+ - uid: 23704
+ components:
+ - type: Transform
+ pos: 75.5,155.5
+ parent: 1
+ - uid: 23706
+ components:
+ - type: Transform
+ pos: 81.5,156.5
+ parent: 1
+ - uid: 23711
+ components:
+ - type: Transform
+ pos: 64.5,156.5
+ parent: 1
+ - uid: 23725
+ components:
+ - type: Transform
+ pos: 56.5,130.5
+ parent: 1
+ - uid: 23726
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 23729
+ components:
+ - type: Transform
+ pos: 135.5,139.5
+ parent: 1
+ - uid: 23760
+ components:
+ - type: Transform
+ pos: 92.5,85.5
+ parent: 1
+ - uid: 23762
+ components:
+ - type: Transform
+ pos: 87.5,85.5
+ parent: 1
+ - uid: 23766
+ components:
+ - type: Transform
+ pos: 91.5,85.5
+ parent: 1
+ - uid: 23879
+ components:
+ - type: Transform
+ pos: 138.5,96.5
+ parent: 1
+ - uid: 23934
+ components:
+ - type: Transform
+ pos: 151.5,99.5
+ parent: 1
+ - uid: 23935
+ components:
+ - type: Transform
+ pos: 148.5,99.5
+ parent: 1
+ - uid: 24025
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 24077
+ components:
+ - type: Transform
+ pos: 150.5,99.5
+ parent: 1
+ - uid: 24098
+ components:
+ - type: Transform
+ pos: 122.5,89.5
+ parent: 1
+ - uid: 24099
+ components:
+ - type: Transform
+ pos: 123.5,89.5
+ parent: 1
+ - uid: 24128
+ components:
+ - type: Transform
+ pos: 121.5,91.5
+ parent: 1
+ - uid: 24129
+ components:
+ - type: Transform
+ pos: 122.5,91.5
+ parent: 1
+ - uid: 24130
+ components:
+ - type: Transform
+ pos: 123.5,91.5
+ parent: 1
+ - uid: 24133
+ components:
+ - type: Transform
+ pos: 124.5,91.5
+ parent: 1
+ - uid: 24136
+ components:
+ - type: Transform
+ pos: 142.5,99.5
+ parent: 1
+ - uid: 24137
+ components:
+ - type: Transform
+ pos: 125.5,94.5
+ parent: 1
+ - uid: 24138
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - uid: 24139
+ components:
+ - type: Transform
+ pos: 123.5,94.5
+ parent: 1
+ - uid: 24140
+ components:
+ - type: Transform
+ pos: 122.5,94.5
+ parent: 1
+ - uid: 24141
+ components:
+ - type: Transform
+ pos: 122.5,95.5
+ parent: 1
+ - uid: 24142
+ components:
+ - type: Transform
+ pos: 122.5,96.5
+ parent: 1
+ - uid: 24143
+ components:
+ - type: Transform
+ pos: 122.5,97.5
+ parent: 1
+ - uid: 24144
+ components:
+ - type: Transform
+ pos: 122.5,98.5
+ parent: 1
+ - uid: 24145
+ components:
+ - type: Transform
+ pos: 121.5,98.5
+ parent: 1
+ - uid: 24146
+ components:
+ - type: Transform
+ pos: 120.5,98.5
+ parent: 1
+ - uid: 24147
+ components:
+ - type: Transform
+ pos: 119.5,98.5
+ parent: 1
+ - uid: 24148
+ components:
+ - type: Transform
+ pos: 118.5,98.5
+ parent: 1
+ - uid: 24149
+ components:
+ - type: Transform
+ pos: 117.5,98.5
+ parent: 1
+ - uid: 24150
+ components:
+ - type: Transform
+ pos: 116.5,98.5
+ parent: 1
+ - uid: 24151
+ components:
+ - type: Transform
+ pos: 115.5,98.5
+ parent: 1
+ - uid: 24152
+ components:
+ - type: Transform
+ pos: 114.5,98.5
+ parent: 1
+ - uid: 24153
+ components:
+ - type: Transform
+ pos: 113.5,98.5
+ parent: 1
+ - uid: 24154
+ components:
+ - type: Transform
+ pos: 112.5,98.5
+ parent: 1
+ - uid: 24155
+ components:
+ - type: Transform
+ pos: 111.5,98.5
+ parent: 1
+ - uid: 24156
+ components:
+ - type: Transform
+ pos: 109.5,98.5
+ parent: 1
+ - uid: 24157
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 1
+ - uid: 24158
+ components:
+ - type: Transform
+ pos: 110.5,98.5
+ parent: 1
+ - uid: 24159
+ components:
+ - type: Transform
+ pos: 107.5,98.5
+ parent: 1
+ - uid: 24160
+ components:
+ - type: Transform
+ pos: 105.5,98.5
+ parent: 1
+ - uid: 24161
+ components:
+ - type: Transform
+ pos: 104.5,98.5
+ parent: 1
+ - uid: 24162
+ components:
+ - type: Transform
+ pos: 103.5,98.5
+ parent: 1
+ - uid: 24163
+ components:
+ - type: Transform
+ pos: 102.5,98.5
+ parent: 1
+ - uid: 24164
+ components:
+ - type: Transform
+ pos: 101.5,98.5
+ parent: 1
+ - uid: 24165
+ components:
+ - type: Transform
+ pos: 106.5,98.5
+ parent: 1
+ - uid: 24167
+ components:
+ - type: Transform
+ pos: 100.5,98.5
+ parent: 1
+ - uid: 24168
+ components:
+ - type: Transform
+ pos: 99.5,97.5
+ parent: 1
+ - uid: 24169
+ components:
+ - type: Transform
+ pos: 99.5,96.5
+ parent: 1
+ - uid: 24170
+ components:
+ - type: Transform
+ pos: 99.5,95.5
+ parent: 1
+ - uid: 24171
+ components:
+ - type: Transform
+ pos: 99.5,94.5
+ parent: 1
+ - uid: 24172
+ components:
+ - type: Transform
+ pos: 99.5,93.5
+ parent: 1
+ - uid: 24173
+ components:
+ - type: Transform
+ pos: 99.5,92.5
+ parent: 1
+ - uid: 24174
+ components:
+ - type: Transform
+ pos: 99.5,91.5
+ parent: 1
+ - uid: 24175
+ components:
+ - type: Transform
+ pos: 98.5,91.5
+ parent: 1
+ - uid: 24176
+ components:
+ - type: Transform
+ pos: 97.5,91.5
+ parent: 1
+ - uid: 24177
+ components:
+ - type: Transform
+ pos: 96.5,91.5
+ parent: 1
+ - uid: 24178
+ components:
+ - type: Transform
+ pos: 108.5,95.5
+ parent: 1
+ - uid: 24179
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 1
+ - uid: 24180
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 1
+ - uid: 24181
+ components:
+ - type: Transform
+ pos: 108.5,99.5
+ parent: 1
+ - uid: 24182
+ components:
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - uid: 24183
+ components:
+ - type: Transform
+ pos: 108.5,101.5
+ parent: 1
+ - uid: 24184
+ components:
+ - type: Transform
+ pos: 108.5,102.5
+ parent: 1
+ - uid: 24185
+ components:
+ - type: Transform
+ pos: 108.5,103.5
+ parent: 1
+ - uid: 24190
+ components:
+ - type: Transform
+ pos: 107.5,111.5
+ parent: 1
+ - uid: 24191
+ components:
+ - type: Transform
+ pos: 106.5,111.5
+ parent: 1
+ - uid: 24192
+ components:
+ - type: Transform
+ pos: 105.5,111.5
+ parent: 1
+ - uid: 24193
+ components:
+ - type: Transform
+ pos: 104.5,111.5
+ parent: 1
+ - uid: 24194
+ components:
+ - type: Transform
+ pos: 103.5,111.5
+ parent: 1
+ - uid: 24195
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 1
+ - uid: 24196
+ components:
+ - type: Transform
+ pos: 101.5,111.5
+ parent: 1
+ - uid: 24197
+ components:
+ - type: Transform
+ pos: 100.5,111.5
+ parent: 1
+ - uid: 24198
+ components:
+ - type: Transform
+ pos: 99.5,111.5
+ parent: 1
+ - uid: 24199
+ components:
+ - type: Transform
+ pos: 97.5,111.5
+ parent: 1
+ - uid: 24200
+ components:
+ - type: Transform
+ pos: 98.5,111.5
+ parent: 1
+ - uid: 24206
+ components:
+ - type: Transform
+ pos: 145.5,99.5
+ parent: 1
+ - uid: 24208
+ components:
+ - type: Transform
+ pos: 108.5,111.5
+ parent: 1
+ - uid: 24209
+ components:
+ - type: Transform
+ pos: 108.5,110.5
+ parent: 1
+ - uid: 24210
+ components:
+ - type: Transform
+ pos: 108.5,109.5
+ parent: 1
+ - uid: 24211
+ components:
+ - type: Transform
+ pos: 108.5,108.5
+ parent: 1
+ - uid: 24212
+ components:
+ - type: Transform
+ pos: 108.5,107.5
+ parent: 1
+ - uid: 24213
+ components:
+ - type: Transform
+ pos: 108.5,106.5
+ parent: 1
+ - uid: 24214
+ components:
+ - type: Transform
+ pos: 108.5,105.5
+ parent: 1
+ - uid: 24215
+ components:
+ - type: Transform
+ pos: 108.5,104.5
+ parent: 1
+ - uid: 24216
+ components:
+ - type: Transform
+ pos: 109.5,111.5
+ parent: 1
+ - uid: 24217
+ components:
+ - type: Transform
+ pos: 110.5,111.5
+ parent: 1
+ - uid: 24218
+ components:
+ - type: Transform
+ pos: 111.5,111.5
+ parent: 1
+ - uid: 24219
+ components:
+ - type: Transform
+ pos: 112.5,111.5
+ parent: 1
+ - uid: 24220
+ components:
+ - type: Transform
+ pos: 113.5,111.5
+ parent: 1
+ - uid: 24221
+ components:
+ - type: Transform
+ pos: 115.5,111.5
+ parent: 1
+ - uid: 24222
+ components:
+ - type: Transform
+ pos: 116.5,111.5
+ parent: 1
+ - uid: 24223
+ components:
+ - type: Transform
+ pos: 117.5,111.5
+ parent: 1
+ - uid: 24224
+ components:
+ - type: Transform
+ pos: 118.5,111.5
+ parent: 1
+ - uid: 24225
+ components:
+ - type: Transform
+ pos: 119.5,111.5
+ parent: 1
+ - uid: 24227
+ components:
+ - type: Transform
+ pos: 114.5,111.5
+ parent: 1
+ - uid: 24233
+ components:
+ - type: Transform
+ pos: 122.5,110.5
+ parent: 1
+ - uid: 24234
+ components:
+ - type: Transform
+ pos: 123.5,110.5
+ parent: 1
+ - uid: 24235
+ components:
+ - type: Transform
+ pos: 124.5,110.5
+ parent: 1
+ - uid: 24236
+ components:
+ - type: Transform
+ pos: 125.5,110.5
+ parent: 1
+ - uid: 24237
+ components:
+ - type: Transform
+ pos: 125.5,109.5
+ parent: 1
+ - uid: 24238
+ components:
+ - type: Transform
+ pos: 125.5,108.5
+ parent: 1
+ - uid: 24239
+ components:
+ - type: Transform
+ pos: 125.5,107.5
+ parent: 1
+ - uid: 24240
+ components:
+ - type: Transform
+ pos: 125.5,106.5
+ parent: 1
+ - uid: 24241
+ components:
+ - type: Transform
+ pos: 146.5,99.5
+ parent: 1
+ - uid: 24242
+ components:
+ - type: Transform
+ pos: 147.5,99.5
+ parent: 1
+ - uid: 24250
+ components:
+ - type: Transform
+ pos: 125.5,96.5
+ parent: 1
+ - uid: 24251
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - uid: 24252
+ components:
+ - type: Transform
+ pos: 95.5,91.5
+ parent: 1
+ - uid: 24253
+ components:
+ - type: Transform
+ pos: 95.5,92.5
+ parent: 1
+ - uid: 24254
+ components:
+ - type: Transform
+ pos: 95.5,93.5
+ parent: 1
+ - uid: 24255
+ components:
+ - type: Transform
+ pos: 95.5,94.5
+ parent: 1
+ - uid: 24256
+ components:
+ - type: Transform
+ pos: 94.5,94.5
+ parent: 1
+ - uid: 24257
+ components:
+ - type: Transform
+ pos: 93.5,94.5
+ parent: 1
+ - uid: 24258
+ components:
+ - type: Transform
+ pos: 92.5,94.5
+ parent: 1
+ - uid: 24259
+ components:
+ - type: Transform
+ pos: 91.5,94.5
+ parent: 1
+ - uid: 24260
+ components:
+ - type: Transform
+ pos: 91.5,95.5
+ parent: 1
+ - uid: 24261
+ components:
+ - type: Transform
+ pos: 91.5,96.5
+ parent: 1
+ - uid: 24262
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - uid: 24263
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 24264
+ components:
+ - type: Transform
+ pos: 91.5,99.5
+ parent: 1
+ - uid: 24265
+ components:
+ - type: Transform
+ pos: 91.5,100.5
+ parent: 1
+ - uid: 24266
+ components:
+ - type: Transform
+ pos: 91.5,101.5
+ parent: 1
+ - uid: 24267
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 24268
+ components:
+ - type: Transform
+ pos: 91.5,103.5
+ parent: 1
+ - uid: 24269
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - uid: 24270
+ components:
+ - type: Transform
+ pos: 91.5,106.5
+ parent: 1
+ - uid: 24271
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - uid: 24272
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - uid: 24273
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - uid: 24274
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - uid: 24275
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 1
+ - uid: 24276
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 1
+ - uid: 24277
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 1
+ - uid: 24278
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 1
+ - uid: 24279
+ components:
+ - type: Transform
+ pos: 86.5,46.5
+ parent: 1
+ - uid: 24280
+ components:
+ - type: Transform
+ pos: 86.5,47.5
+ parent: 1
+ - uid: 24281
+ components:
+ - type: Transform
+ pos: 86.5,48.5
+ parent: 1
+ - uid: 24282
+ components:
+ - type: Transform
+ pos: 86.5,49.5
+ parent: 1
+ - uid: 24283
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 1
+ - uid: 24284
+ components:
+ - type: Transform
+ pos: 86.5,51.5
+ parent: 1
+ - uid: 24297
+ components:
+ - type: Transform
+ pos: 85.5,64.5
+ parent: 1
+ - uid: 24299
+ components:
+ - type: Transform
+ pos: 84.5,64.5
+ parent: 1
+ - uid: 24300
+ components:
+ - type: Transform
+ pos: 83.5,64.5
+ parent: 1
+ - uid: 24301
+ components:
+ - type: Transform
+ pos: 82.5,64.5
+ parent: 1
+ - uid: 24302
+ components:
+ - type: Transform
+ pos: 81.5,64.5
+ parent: 1
+ - uid: 24303
+ components:
+ - type: Transform
+ pos: 80.5,64.5
+ parent: 1
+ - uid: 24304
+ components:
+ - type: Transform
+ pos: 79.5,64.5
+ parent: 1
+ - uid: 24305
+ components:
+ - type: Transform
+ pos: 78.5,64.5
+ parent: 1
+ - uid: 24306
+ components:
+ - type: Transform
+ pos: 78.5,63.5
+ parent: 1
+ - uid: 24307
+ components:
+ - type: Transform
+ pos: 78.5,61.5
+ parent: 1
+ - uid: 24308
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - uid: 24311
+ components:
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 1
+ - uid: 24369
+ components:
+ - type: Transform
+ pos: 86.5,64.5
+ parent: 1
+ - uid: 24370
+ components:
+ - type: Transform
+ pos: 87.5,64.5
+ parent: 1
+ - uid: 24371
+ components:
+ - type: Transform
+ pos: 88.5,64.5
+ parent: 1
+ - uid: 24372
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 1
+ - uid: 24373
+ components:
+ - type: Transform
+ pos: 90.5,64.5
+ parent: 1
+ - uid: 24374
+ components:
+ - type: Transform
+ pos: 91.5,64.5
+ parent: 1
+ - uid: 24375
+ components:
+ - type: Transform
+ pos: 92.5,64.5
+ parent: 1
+ - uid: 24376
+ components:
+ - type: Transform
+ pos: 93.5,64.5
+ parent: 1
+ - uid: 24377
+ components:
+ - type: Transform
+ pos: 93.5,65.5
+ parent: 1
+ - uid: 24378
+ components:
+ - type: Transform
+ pos: 93.5,66.5
+ parent: 1
+ - uid: 24379
+ components:
+ - type: Transform
+ pos: 93.5,67.5
+ parent: 1
+ - uid: 24380
+ components:
+ - type: Transform
+ pos: 93.5,68.5
+ parent: 1
+ - uid: 24381
+ components:
+ - type: Transform
+ pos: 93.5,69.5
+ parent: 1
+ - uid: 24382
+ components:
+ - type: Transform
+ pos: 93.5,70.5
+ parent: 1
+ - uid: 24383
+ components:
+ - type: Transform
+ pos: 93.5,71.5
+ parent: 1
+ - uid: 24384
+ components:
+ - type: Transform
+ pos: 93.5,72.5
+ parent: 1
+ - uid: 24385
+ components:
+ - type: Transform
+ pos: 93.5,73.5
+ parent: 1
+ - uid: 24386
+ components:
+ - type: Transform
+ pos: 94.5,73.5
+ parent: 1
+ - uid: 24387
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 1
+ - uid: 24398
+ components:
+ - type: Transform
+ pos: 96.5,63.5
+ parent: 1
+ - uid: 24399
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - uid: 24400
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - uid: 24401
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 1
+ - uid: 24402
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 1
+ - uid: 24403
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 1
+ - uid: 24404
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - uid: 24405
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 1
+ - uid: 24406
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 1
+ - uid: 24413
+ components:
+ - type: Transform
+ pos: 89.5,55.5
+ parent: 1
+ - uid: 24421
+ components:
+ - type: Transform
+ pos: 77.5,98.5
+ parent: 1
+ - uid: 24429
+ components:
+ - type: Transform
+ pos: 102.5,51.5
+ parent: 1
+ - uid: 24430
+ components:
+ - type: Transform
+ pos: 103.5,51.5
+ parent: 1
+ - uid: 24431
+ components:
+ - type: Transform
+ pos: 104.5,51.5
+ parent: 1
+ - uid: 24432
+ components:
+ - type: Transform
+ pos: 105.5,51.5
+ parent: 1
+ - uid: 24433
+ components:
+ - type: Transform
+ pos: 106.5,51.5
+ parent: 1
+ - uid: 24434
+ components:
+ - type: Transform
+ pos: 107.5,51.5
+ parent: 1
+ - uid: 24435
+ components:
+ - type: Transform
+ pos: 108.5,51.5
+ parent: 1
+ - uid: 24436
+ components:
+ - type: Transform
+ pos: 109.5,51.5
+ parent: 1
+ - uid: 24437
+ components:
+ - type: Transform
+ pos: 110.5,51.5
+ parent: 1
+ - uid: 24438
+ components:
+ - type: Transform
+ pos: 101.5,51.5
+ parent: 1
+ - uid: 24439
+ components:
+ - type: Transform
+ pos: 110.5,52.5
+ parent: 1
+ - uid: 24440
+ components:
+ - type: Transform
+ pos: 110.5,53.5
+ parent: 1
+ - uid: 24441
+ components:
+ - type: Transform
+ pos: 110.5,54.5
+ parent: 1
+ - uid: 24442
+ components:
+ - type: Transform
+ pos: 111.5,54.5
+ parent: 1
+ - uid: 24443
+ components:
+ - type: Transform
+ pos: 112.5,54.5
+ parent: 1
+ - uid: 24444
+ components:
+ - type: Transform
+ pos: 113.5,54.5
+ parent: 1
+ - uid: 24445
+ components:
+ - type: Transform
+ pos: 114.5,54.5
+ parent: 1
+ - uid: 24446
+ components:
+ - type: Transform
+ pos: 115.5,54.5
+ parent: 1
+ - uid: 24447
+ components:
+ - type: Transform
+ pos: 116.5,54.5
+ parent: 1
+ - uid: 24448
+ components:
+ - type: Transform
+ pos: 117.5,54.5
+ parent: 1
+ - uid: 24449
+ components:
+ - type: Transform
+ pos: 118.5,54.5
+ parent: 1
+ - uid: 24450
+ components:
+ - type: Transform
+ pos: 119.5,54.5
+ parent: 1
+ - uid: 24451
+ components:
+ - type: Transform
+ pos: 119.5,55.5
+ parent: 1
+ - uid: 24452
+ components:
+ - type: Transform
+ pos: 119.5,56.5
+ parent: 1
+ - uid: 24453
+ components:
+ - type: Transform
+ pos: 119.5,57.5
+ parent: 1
+ - uid: 24454
+ components:
+ - type: Transform
+ pos: 119.5,58.5
+ parent: 1
+ - uid: 24455
+ components:
+ - type: Transform
+ pos: 119.5,59.5
+ parent: 1
+ - uid: 24456
+ components:
+ - type: Transform
+ pos: 119.5,60.5
+ parent: 1
+ - uid: 24457
+ components:
+ - type: Transform
+ pos: 119.5,61.5
+ parent: 1
+ - uid: 24458
+ components:
+ - type: Transform
+ pos: 119.5,62.5
+ parent: 1
+ - uid: 24459
+ components:
+ - type: Transform
+ pos: 119.5,63.5
+ parent: 1
+ - uid: 24460
+ components:
+ - type: Transform
+ pos: 119.5,64.5
+ parent: 1
+ - uid: 24461
+ components:
+ - type: Transform
+ pos: 119.5,65.5
+ parent: 1
+ - uid: 24462
+ components:
+ - type: Transform
+ pos: 119.5,66.5
+ parent: 1
+ - uid: 24463
+ components:
+ - type: Transform
+ pos: 119.5,68.5
+ parent: 1
+ - uid: 24464
+ components:
+ - type: Transform
+ pos: 119.5,69.5
+ parent: 1
+ - uid: 24465
+ components:
+ - type: Transform
+ pos: 119.5,70.5
+ parent: 1
+ - uid: 24466
+ components:
+ - type: Transform
+ pos: 119.5,71.5
+ parent: 1
+ - uid: 24467
+ components:
+ - type: Transform
+ pos: 119.5,72.5
+ parent: 1
+ - uid: 24468
+ components:
+ - type: Transform
+ pos: 119.5,73.5
+ parent: 1
+ - uid: 24469
+ components:
+ - type: Transform
+ pos: 119.5,67.5
+ parent: 1
+ - uid: 24470
+ components:
+ - type: Transform
+ pos: 119.5,74.5
+ parent: 1
+ - uid: 24471
+ components:
+ - type: Transform
+ pos: 119.5,76.5
+ parent: 1
+ - uid: 24472
+ components:
+ - type: Transform
+ pos: 119.5,77.5
+ parent: 1
+ - uid: 24473
+ components:
+ - type: Transform
+ pos: 119.5,75.5
+ parent: 1
+ - uid: 24474
+ components:
+ - type: Transform
+ pos: 118.5,77.5
+ parent: 1
+ - uid: 24475
+ components:
+ - type: Transform
+ pos: 117.5,77.5
+ parent: 1
+ - uid: 24476
+ components:
+ - type: Transform
+ pos: 116.5,77.5
+ parent: 1
+ - uid: 24477
+ components:
+ - type: Transform
+ pos: 115.5,77.5
+ parent: 1
+ - uid: 24478
+ components:
+ - type: Transform
+ pos: 114.5,77.5
+ parent: 1
+ - uid: 24479
+ components:
+ - type: Transform
+ pos: 113.5,77.5
+ parent: 1
+ - uid: 24480
+ components:
+ - type: Transform
+ pos: 112.5,77.5
+ parent: 1
+ - uid: 24481
+ components:
+ - type: Transform
+ pos: 111.5,77.5
+ parent: 1
+ - uid: 24482
+ components:
+ - type: Transform
+ pos: 110.5,77.5
+ parent: 1
+ - uid: 24483
+ components:
+ - type: Transform
+ pos: 109.5,77.5
+ parent: 1
+ - uid: 24484
+ components:
+ - type: Transform
+ pos: 107.5,77.5
+ parent: 1
+ - uid: 24485
+ components:
+ - type: Transform
+ pos: 106.5,77.5
+ parent: 1
+ - uid: 24486
+ components:
+ - type: Transform
+ pos: 105.5,77.5
+ parent: 1
+ - uid: 24487
+ components:
+ - type: Transform
+ pos: 104.5,77.5
+ parent: 1
+ - uid: 24488
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 1
+ - uid: 24489
+ components:
+ - type: Transform
+ pos: 108.5,77.5
+ parent: 1
+ - uid: 24490
+ components:
+ - type: Transform
+ pos: 101.5,77.5
+ parent: 1
+ - uid: 24491
+ components:
+ - type: Transform
+ pos: 100.5,77.5
+ parent: 1
+ - uid: 24492
+ components:
+ - type: Transform
+ pos: 102.5,77.5
+ parent: 1
+ - uid: 24493
+ components:
+ - type: Transform
+ pos: 99.5,77.5
+ parent: 1
+ - uid: 24494
+ components:
+ - type: Transform
+ pos: 97.5,77.5
+ parent: 1
+ - uid: 24495
+ components:
+ - type: Transform
+ pos: 98.5,77.5
+ parent: 1
+ - uid: 24496
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 1
+ - uid: 24497
+ components:
+ - type: Transform
+ pos: 94.5,77.5
+ parent: 1
+ - uid: 24498
+ components:
+ - type: Transform
+ pos: 93.5,77.5
+ parent: 1
+ - uid: 24499
+ components:
+ - type: Transform
+ pos: 95.5,77.5
+ parent: 1
+ - uid: 24500
+ components:
+ - type: Transform
+ pos: 93.5,76.5
+ parent: 1
+ - uid: 24501
+ components:
+ - type: Transform
+ pos: 93.5,75.5
+ parent: 1
+ - uid: 24502
+ components:
+ - type: Transform
+ pos: 93.5,74.5
+ parent: 1
+ - uid: 24512
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 1
+ - uid: 24521
+ components:
+ - type: Transform
+ pos: 99.5,63.5
+ parent: 1
+ - uid: 24522
+ components:
+ - type: Transform
+ pos: 100.5,63.5
+ parent: 1
+ - uid: 24523
+ components:
+ - type: Transform
+ pos: 101.5,63.5
+ parent: 1
+ - uid: 24524
+ components:
+ - type: Transform
+ pos: 102.5,63.5
+ parent: 1
+ - uid: 24525
+ components:
+ - type: Transform
+ pos: 103.5,63.5
+ parent: 1
+ - uid: 24526
+ components:
+ - type: Transform
+ pos: 104.5,63.5
+ parent: 1
+ - uid: 24527
+ components:
+ - type: Transform
+ pos: 105.5,63.5
+ parent: 1
+ - uid: 24528
+ components:
+ - type: Transform
+ pos: 106.5,63.5
+ parent: 1
+ - uid: 24529
+ components:
+ - type: Transform
+ pos: 108.5,63.5
+ parent: 1
+ - uid: 24530
+ components:
+ - type: Transform
+ pos: 107.5,63.5
+ parent: 1
+ - uid: 24531
+ components:
+ - type: Transform
+ pos: 109.5,63.5
+ parent: 1
+ - uid: 24532
+ components:
+ - type: Transform
+ pos: 110.5,63.5
+ parent: 1
+ - uid: 24533
+ components:
+ - type: Transform
+ pos: 111.5,63.5
+ parent: 1
+ - uid: 24534
+ components:
+ - type: Transform
+ pos: 112.5,63.5
+ parent: 1
+ - uid: 24535
+ components:
+ - type: Transform
+ pos: 113.5,63.5
+ parent: 1
+ - uid: 24536
+ components:
+ - type: Transform
+ pos: 114.5,63.5
+ parent: 1
+ - uid: 24539
+ components:
+ - type: Transform
+ pos: 88.5,61.5
+ parent: 1
+ - uid: 24545
+ components:
+ - type: Transform
+ pos: 115.5,63.5
+ parent: 1
+ - uid: 24547
+ components:
+ - type: Transform
+ pos: 114.5,75.5
+ parent: 1
+ - uid: 24550
+ components:
+ - type: Transform
+ pos: 112.5,62.5
+ parent: 1
+ - uid: 24551
+ components:
+ - type: Transform
+ pos: 112.5,61.5
+ parent: 1
+ - uid: 24552
+ components:
+ - type: Transform
+ pos: 112.5,60.5
+ parent: 1
+ - uid: 24553
+ components:
+ - type: Transform
+ pos: 111.5,60.5
+ parent: 1
+ - uid: 24554
+ components:
+ - type: Transform
+ pos: 110.5,60.5
+ parent: 1
+ - uid: 24555
+ components:
+ - type: Transform
+ pos: 109.5,60.5
+ parent: 1
+ - uid: 24556
+ components:
+ - type: Transform
+ pos: 106.5,62.5
+ parent: 1
+ - uid: 24557
+ components:
+ - type: Transform
+ pos: 106.5,61.5
+ parent: 1
+ - uid: 24558
+ components:
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 1
+ - uid: 24559
+ components:
+ - type: Transform
+ pos: 106.5,59.5
+ parent: 1
+ - uid: 24560
+ components:
+ - type: Transform
+ pos: 106.5,58.5
+ parent: 1
+ - uid: 24561
+ components:
+ - type: Transform
+ pos: 107.5,58.5
+ parent: 1
+ - uid: 24562
+ components:
+ - type: Transform
+ pos: 108.5,58.5
+ parent: 1
+ - uid: 24563
+ components:
+ - type: Transform
+ pos: 108.5,57.5
+ parent: 1
+ - uid: 24564
+ components:
+ - type: Transform
+ pos: 108.5,56.5
+ parent: 1
+ - uid: 24565
+ components:
+ - type: Transform
+ pos: 108.5,55.5
+ parent: 1
+ - uid: 24566
+ components:
+ - type: Transform
+ pos: 103.5,60.5
+ parent: 1
+ - uid: 24567
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+ - uid: 24568
+ components:
+ - type: Transform
+ pos: 101.5,60.5
+ parent: 1
+ - uid: 24569
+ components:
+ - type: Transform
+ pos: 100.5,60.5
+ parent: 1
+ - uid: 24570
+ components:
+ - type: Transform
+ pos: 100.5,61.5
+ parent: 1
+ - uid: 24571
+ components:
+ - type: Transform
+ pos: 100.5,62.5
+ parent: 1
+ - uid: 24666
+ components:
+ - type: Transform
+ pos: 113.5,67.5
+ parent: 1
+ - uid: 24669
+ components:
+ - type: Transform
+ pos: 113.5,69.5
+ parent: 1
+ - uid: 24717
+ components:
+ - type: Transform
+ pos: 99.5,65.5
+ parent: 1
+ - uid: 24727
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 1
+ - uid: 24729
+ components:
+ - type: Transform
+ pos: 91.5,61.5
+ parent: 1
+ - uid: 24730
+ components:
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 1
+ - uid: 24731
+ components:
+ - type: Transform
+ pos: 91.5,63.5
+ parent: 1
+ - uid: 24735
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 1
+ - uid: 24736
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 1
+ - uid: 24737
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 1
+ - uid: 24738
+ components:
+ - type: Transform
+ pos: 99.5,56.5
+ parent: 1
+ - uid: 24739
+ components:
+ - type: Transform
+ pos: 99.5,57.5
+ parent: 1
+ - uid: 24740
+ components:
+ - type: Transform
+ pos: 99.5,58.5
+ parent: 1
+ - uid: 24741
+ components:
+ - type: Transform
+ pos: 99.5,59.5
+ parent: 1
+ - uid: 24742
+ components:
+ - type: Transform
+ pos: 99.5,60.5
+ parent: 1
+ - uid: 24743
+ components:
+ - type: Transform
+ pos: 100.5,55.5
+ parent: 1
+ - uid: 24744
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 1
+ - uid: 24745
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - uid: 24746
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 1
+ - uid: 24747
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 1
+ - uid: 24748
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 1
+ - uid: 24749
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - uid: 24750
+ components:
+ - type: Transform
+ pos: 104.5,57.5
+ parent: 1
+ - uid: 24751
+ components:
+ - type: Transform
+ pos: 104.5,58.5
+ parent: 1
+ - uid: 24752
+ components:
+ - type: Transform
+ pos: 104.5,56.5
+ parent: 1
+ - uid: 24753
+ components:
+ - type: Transform
+ pos: 118.5,73.5
+ parent: 1
+ - uid: 24754
+ components:
+ - type: Transform
+ pos: 105.5,58.5
+ parent: 1
+ - uid: 24755
+ components:
+ - type: Transform
+ pos: 117.5,73.5
+ parent: 1
+ - uid: 24759
+ components:
+ - type: Transform
+ pos: 116.5,70.5
+ parent: 1
+ - uid: 24760
+ components:
+ - type: Transform
+ pos: 116.5,69.5
+ parent: 1
+ - uid: 24761
+ components:
+ - type: Transform
+ pos: 116.5,68.5
+ parent: 1
+ - uid: 24767
+ components:
+ - type: Transform
+ pos: 116.5,62.5
+ parent: 1
+ - uid: 24768
+ components:
+ - type: Transform
+ pos: 116.5,61.5
+ parent: 1
+ - uid: 24769
+ components:
+ - type: Transform
+ pos: 116.5,60.5
+ parent: 1
+ - uid: 24770
+ components:
+ - type: Transform
+ pos: 116.5,59.5
+ parent: 1
+ - uid: 24771
+ components:
+ - type: Transform
+ pos: 116.5,58.5
+ parent: 1
+ - uid: 24772
+ components:
+ - type: Transform
+ pos: 116.5,57.5
+ parent: 1
+ - uid: 24773
+ components:
+ - type: Transform
+ pos: 115.5,57.5
+ parent: 1
+ - uid: 24774
+ components:
+ - type: Transform
+ pos: 114.5,57.5
+ parent: 1
+ - uid: 24775
+ components:
+ - type: Transform
+ pos: 113.5,57.5
+ parent: 1
+ - uid: 24776
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 1
+ - uid: 24777
+ components:
+ - type: Transform
+ pos: 112.5,58.5
+ parent: 1
+ - uid: 24778
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 1
+ - uid: 24787
+ components:
+ - type: Transform
+ pos: 99.5,86.5
+ parent: 1
+ - uid: 24789
+ components:
+ - type: Transform
+ pos: 99.5,87.5
+ parent: 1
+ - uid: 24790
+ components:
+ - type: Transform
+ pos: 100.5,87.5
+ parent: 1
+ - uid: 24791
+ components:
+ - type: Transform
+ pos: 101.5,87.5
+ parent: 1
+ - uid: 24792
+ components:
+ - type: Transform
+ pos: 102.5,87.5
+ parent: 1
+ - uid: 24793
+ components:
+ - type: Transform
+ pos: 103.5,87.5
+ parent: 1
+ - uid: 24794
+ components:
+ - type: Transform
+ pos: 104.5,87.5
+ parent: 1
+ - uid: 24795
+ components:
+ - type: Transform
+ pos: 105.5,87.5
+ parent: 1
+ - uid: 24796
+ components:
+ - type: Transform
+ pos: 107.5,87.5
+ parent: 1
+ - uid: 24797
+ components:
+ - type: Transform
+ pos: 108.5,87.5
+ parent: 1
+ - uid: 24798
+ components:
+ - type: Transform
+ pos: 106.5,87.5
+ parent: 1
+ - uid: 24799
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 1
+ - uid: 24800
+ components:
+ - type: Transform
+ pos: 110.5,87.5
+ parent: 1
+ - uid: 24801
+ components:
+ - type: Transform
+ pos: 111.5,87.5
+ parent: 1
+ - uid: 24802
+ components:
+ - type: Transform
+ pos: 113.5,87.5
+ parent: 1
+ - uid: 24803
+ components:
+ - type: Transform
+ pos: 112.5,87.5
+ parent: 1
+ - uid: 24807
+ components:
+ - type: Transform
+ pos: 113.5,65.5
+ parent: 1
+ - uid: 24884
+ components:
+ - type: Transform
+ pos: 113.5,70.5
+ parent: 1
+ - uid: 24918
+ components:
+ - type: Transform
+ pos: 113.5,72.5
+ parent: 1
+ - uid: 24919
+ components:
+ - type: Transform
+ pos: 97.5,86.5
+ parent: 1
+ - uid: 24920
+ components:
+ - type: Transform
+ pos: 98.5,86.5
+ parent: 1
+ - uid: 24922
+ components:
+ - type: Transform
+ pos: 88.5,65.5
+ parent: 1
+ - uid: 24923
+ components:
+ - type: Transform
+ pos: 88.5,66.5
+ parent: 1
+ - uid: 24924
+ components:
+ - type: Transform
+ pos: 88.5,67.5
+ parent: 1
+ - uid: 24925
+ components:
+ - type: Transform
+ pos: 88.5,68.5
+ parent: 1
+ - uid: 24926
+ components:
+ - type: Transform
+ pos: 88.5,69.5
+ parent: 1
+ - uid: 24927
+ components:
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - uid: 24928
+ components:
+ - type: Transform
+ pos: 88.5,71.5
+ parent: 1
+ - uid: 24929
+ components:
+ - type: Transform
+ pos: 88.5,72.5
+ parent: 1
+ - uid: 24930
+ components:
+ - type: Transform
+ pos: 88.5,73.5
+ parent: 1
+ - uid: 24931
+ components:
+ - type: Transform
+ pos: 88.5,74.5
+ parent: 1
+ - uid: 24932
+ components:
+ - type: Transform
+ pos: 88.5,75.5
+ parent: 1
+ - uid: 24933
+ components:
+ - type: Transform
+ pos: 88.5,76.5
+ parent: 1
+ - uid: 24934
+ components:
+ - type: Transform
+ pos: 88.5,77.5
+ parent: 1
+ - uid: 24935
+ components:
+ - type: Transform
+ pos: 87.5,77.5
+ parent: 1
+ - uid: 24936
+ components:
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 1
+ - uid: 24966
+ components:
+ - type: Transform
+ pos: 72.5,79.5
+ parent: 1
+ - uid: 24967
+ components:
+ - type: Transform
+ pos: 72.5,78.5
+ parent: 1
+ - uid: 24968
+ components:
+ - type: Transform
+ pos: 71.5,78.5
+ parent: 1
+ - uid: 24969
+ components:
+ - type: Transform
+ pos: 70.5,78.5
+ parent: 1
+ - uid: 24970
+ components:
+ - type: Transform
+ pos: 69.5,78.5
+ parent: 1
+ - uid: 24971
+ components:
+ - type: Transform
+ pos: 68.5,78.5
+ parent: 1
+ - uid: 24972
+ components:
+ - type: Transform
+ pos: 67.5,78.5
+ parent: 1
+ - uid: 24973
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 24974
+ components:
+ - type: Transform
+ pos: 65.5,78.5
+ parent: 1
+ - uid: 24975
+ components:
+ - type: Transform
+ pos: 64.5,78.5
+ parent: 1
+ - uid: 24976
+ components:
+ - type: Transform
+ pos: 63.5,78.5
+ parent: 1
+ - uid: 24977
+ components:
+ - type: Transform
+ pos: 62.5,78.5
+ parent: 1
+ - uid: 24978
+ components:
+ - type: Transform
+ pos: 62.5,77.5
+ parent: 1
+ - uid: 24979
+ components:
+ - type: Transform
+ pos: 62.5,76.5
+ parent: 1
+ - uid: 24980
+ components:
+ - type: Transform
+ pos: 62.5,75.5
+ parent: 1
+ - uid: 24981
+ components:
+ - type: Transform
+ pos: 62.5,74.5
+ parent: 1
+ - uid: 24982
+ components:
+ - type: Transform
+ pos: 63.5,74.5
+ parent: 1
+ - uid: 24983
+ components:
+ - type: Transform
+ pos: 64.5,74.5
+ parent: 1
+ - uid: 24984
+ components:
+ - type: Transform
+ pos: 65.5,74.5
+ parent: 1
+ - uid: 24985
+ components:
+ - type: Transform
+ pos: 66.5,74.5
+ parent: 1
+ - uid: 24986
+ components:
+ - type: Transform
+ pos: 68.5,74.5
+ parent: 1
+ - uid: 24987
+ components:
+ - type: Transform
+ pos: 69.5,74.5
+ parent: 1
+ - uid: 24988
+ components:
+ - type: Transform
+ pos: 70.5,74.5
+ parent: 1
+ - uid: 24989
+ components:
+ - type: Transform
+ pos: 67.5,74.5
+ parent: 1
+ - uid: 24990
+ components:
+ - type: Transform
+ pos: 70.5,73.5
+ parent: 1
+ - uid: 24991
+ components:
+ - type: Transform
+ pos: 70.5,72.5
+ parent: 1
+ - uid: 24992
+ components:
+ - type: Transform
+ pos: 71.5,72.5
+ parent: 1
+ - uid: 24993
+ components:
+ - type: Transform
+ pos: 71.5,71.5
+ parent: 1
+ - uid: 24994
+ components:
+ - type: Transform
+ pos: 64.5,71.5
+ parent: 1
+ - uid: 24995
+ components:
+ - type: Transform
+ pos: 64.5,72.5
+ parent: 1
+ - uid: 24996
+ components:
+ - type: Transform
+ pos: 64.5,73.5
+ parent: 1
+ - uid: 25040
+ components:
+ - type: Transform
+ pos: 122.5,88.5
+ parent: 1
+ - uid: 25041
+ components:
+ - type: Transform
+ pos: 122.5,87.5
+ parent: 1
+ - uid: 25042
+ components:
+ - type: Transform
+ pos: 122.5,86.5
+ parent: 1
+ - uid: 25043
+ components:
+ - type: Transform
+ pos: 122.5,85.5
+ parent: 1
+ - uid: 25044
+ components:
+ - type: Transform
+ pos: 122.5,84.5
+ parent: 1
+ - uid: 25045
+ components:
+ - type: Transform
+ pos: 123.5,84.5
+ parent: 1
+ - uid: 25149
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - uid: 25150
+ components:
+ - type: Transform
+ pos: 159.5,145.5
+ parent: 1
+ - uid: 25158
+ components:
+ - type: Transform
+ pos: 151.5,145.5
+ parent: 1
+ - uid: 25159
+ components:
+ - type: Transform
+ pos: 150.5,145.5
+ parent: 1
+ - uid: 25160
+ components:
+ - type: Transform
+ pos: 149.5,145.5
+ parent: 1
+ - uid: 25161
+ components:
+ - type: Transform
+ pos: 149.5,144.5
+ parent: 1
+ - uid: 25162
+ components:
+ - type: Transform
+ pos: 149.5,143.5
+ parent: 1
+ - uid: 25163
+ components:
+ - type: Transform
+ pos: 149.5,142.5
+ parent: 1
+ - uid: 25175
+ components:
+ - type: Transform
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 25183
+ components:
+ - type: Transform
+ pos: 144.5,99.5
+ parent: 1
+ - uid: 25184
+ components:
+ - type: Transform
+ pos: 130.5,91.5
+ parent: 1
+ - uid: 25199
+ components:
+ - type: Transform
+ pos: 132.5,123.5
+ parent: 1
+ - uid: 25200
+ components:
+ - type: Transform
+ pos: 132.5,122.5
+ parent: 1
+ - uid: 25216
+ components:
+ - type: Transform
+ pos: 136.5,85.5
+ parent: 1
+ - uid: 25276
+ components:
+ - type: Transform
+ pos: 157.5,52.5
+ parent: 1
+ - uid: 25278
+ components:
+ - type: Transform
+ pos: 164.5,141.5
+ parent: 1
+ - uid: 25286
+ components:
+ - type: Transform
+ pos: 99.5,35.5
+ parent: 1
+ - uid: 25296
+ components:
+ - type: Transform
+ pos: 89.5,35.5
+ parent: 1
+ - uid: 25298
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 25301
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 25307
+ components:
+ - type: Transform
+ pos: 99.5,36.5
+ parent: 1
+ - uid: 25317
+ components:
+ - type: Transform
+ pos: 56.5,48.5
+ parent: 1
+ - uid: 25389
+ components:
+ - type: Transform
+ pos: 134.5,95.5
+ parent: 1
+ - uid: 25473
+ components:
+ - type: Transform
+ pos: 42.5,34.5
+ parent: 1
+ - uid: 25507
+ components:
+ - type: Transform
+ pos: 72.5,48.5
+ parent: 1
+ - uid: 25512
+ components:
+ - type: Transform
+ pos: 102.5,43.5
+ parent: 1
+ - uid: 25516
+ components:
+ - type: Transform
+ pos: 102.5,45.5
+ parent: 1
+ - uid: 25518
+ components:
+ - type: Transform
+ pos: 108.5,45.5
+ parent: 1
+ - uid: 25519
+ components:
+ - type: Transform
+ pos: 106.5,45.5
+ parent: 1
+ - uid: 25520
+ components:
+ - type: Transform
+ pos: 105.5,45.5
+ parent: 1
+ - uid: 25522
+ components:
+ - type: Transform
+ pos: 103.5,48.5
+ parent: 1
+ - uid: 25524
+ components:
+ - type: Transform
+ pos: 106.5,49.5
+ parent: 1
+ - uid: 25525
+ components:
+ - type: Transform
+ pos: 105.5,48.5
+ parent: 1
+ - uid: 25544
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 1
+ - uid: 25545
+ components:
+ - type: Transform
+ pos: 90.5,112.5
+ parent: 1
+ - uid: 25614
+ components:
+ - type: Transform
+ pos: 103.5,45.5
+ parent: 1
+ - uid: 25774
+ components:
+ - type: Transform
+ pos: 116.5,73.5
+ parent: 1
+ - uid: 25775
+ components:
+ - type: Transform
+ pos: 115.5,66.5
+ parent: 1
+ - uid: 25790
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 1
+ - uid: 25791
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - uid: 25804
+ components:
+ - type: Transform
+ pos: 97.5,66.5
+ parent: 1
+ - uid: 25828
+ components:
+ - type: Transform
+ pos: 107.5,54.5
+ parent: 1
+ - uid: 25863
+ components:
+ - type: Transform
+ pos: 113.5,66.5
+ parent: 1
+ - uid: 25865
+ components:
+ - type: Transform
+ pos: 113.5,71.5
+ parent: 1
+ - uid: 25894
+ components:
+ - type: Transform
+ pos: 113.5,75.5
+ parent: 1
+ - uid: 25895
+ components:
+ - type: Transform
+ pos: 113.5,73.5
+ parent: 1
+ - uid: 25957
+ components:
+ - type: Transform
+ pos: 139.5,96.5
+ parent: 1
+ - uid: 26236
+ components:
+ - type: Transform
+ pos: 84.5,51.5
+ parent: 1
+ - uid: 26300
+ components:
+ - type: Transform
+ pos: 96.5,97.5
+ parent: 1
+ - uid: 26315
+ components:
+ - type: Transform
+ pos: 83.5,51.5
+ parent: 1
+ - uid: 26395
+ components:
+ - type: Transform
+ pos: 95.5,98.5
+ parent: 1
+ - uid: 26396
+ components:
+ - type: Transform
+ pos: 95.5,99.5
+ parent: 1
+ - uid: 26397
+ components:
+ - type: Transform
+ pos: 95.5,100.5
+ parent: 1
+ - uid: 26398
+ components:
+ - type: Transform
+ pos: 95.5,101.5
+ parent: 1
+ - uid: 26399
+ components:
+ - type: Transform
+ pos: 95.5,102.5
+ parent: 1
+ - uid: 26400
+ components:
+ - type: Transform
+ pos: 94.5,102.5
+ parent: 1
+ - uid: 26401
+ components:
+ - type: Transform
+ pos: 93.5,102.5
+ parent: 1
+ - uid: 26481
+ components:
+ - type: Transform
+ pos: 128.5,104.5
+ parent: 1
+ - uid: 26493
+ components:
+ - type: Transform
+ pos: 135.5,96.5
+ parent: 1
+ - uid: 26528
+ components:
+ - type: Transform
+ pos: 127.5,96.5
+ parent: 1
+ - uid: 26557
+ components:
+ - type: Transform
+ pos: 124.5,90.5
+ parent: 1
+ - uid: 26561
+ components:
+ - type: Transform
+ pos: 128.5,109.5
+ parent: 1
+ - uid: 26715
+ components:
+ - type: Transform
+ pos: 99.5,74.5
+ parent: 1
+ - uid: 26865
+ components:
+ - type: Transform
+ pos: 99.5,72.5
+ parent: 1
+ - uid: 26879
+ components:
+ - type: Transform
+ pos: 99.5,71.5
+ parent: 1
+ - uid: 26884
+ components:
+ - type: Transform
+ pos: 113.5,68.5
+ parent: 1
+ - uid: 26897
+ components:
+ - type: Transform
+ pos: 88.5,41.5
+ parent: 1
+ - uid: 27084
+ components:
+ - type: Transform
+ pos: 90.5,61.5
+ parent: 1
+ - uid: 27090
+ components:
+ - type: Transform
+ pos: 89.5,61.5
+ parent: 1
+ - uid: 27095
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 1
+ - uid: 27228
+ components:
+ - type: Transform
+ pos: 51.5,139.5
+ parent: 1
+ - uid: 27257
+ components:
+ - type: Transform
+ pos: 140.5,110.5
+ parent: 1
+ - uid: 27273
+ components:
+ - type: Transform
+ pos: 56.5,50.5
+ parent: 1
+ - uid: 27364
+ components:
+ - type: Transform
+ pos: 42.5,47.5
+ parent: 1
+ - uid: 27365
+ components:
+ - type: Transform
+ pos: 42.5,48.5
+ parent: 1
+ - uid: 27625
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 1
+ - uid: 27626
+ components:
+ - type: Transform
+ pos: 81.5,45.5
+ parent: 1
+ - uid: 27627
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 1
+ - uid: 27628
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 1
+ - uid: 27629
+ components:
+ - type: Transform
+ pos: 78.5,45.5
+ parent: 1
+ - uid: 27630
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 1
+ - uid: 27631
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 1
+ - uid: 27632
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 1
+ - uid: 27633
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 1
+ - uid: 27634
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 1
+ - uid: 27635
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 1
+ - uid: 27636
+ components:
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - uid: 27637
+ components:
+ - type: Transform
+ pos: 72.5,43.5
+ parent: 1
+ - uid: 27638
+ components:
+ - type: Transform
+ pos: 72.5,42.5
+ parent: 1
+ - uid: 27758
+ components:
+ - type: Transform
+ pos: 50.5,64.5
+ parent: 1
+ - uid: 27759
+ components:
+ - type: Transform
+ pos: 51.5,64.5
+ parent: 1
+ - uid: 27760
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - uid: 27761
+ components:
+ - type: Transform
+ pos: 53.5,64.5
+ parent: 1
+ - uid: 27762
+ components:
+ - type: Transform
+ pos: 54.5,64.5
+ parent: 1
+ - uid: 27763
+ components:
+ - type: Transform
+ pos: 55.5,64.5
+ parent: 1
+ - uid: 27764
+ components:
+ - type: Transform
+ pos: 56.5,64.5
+ parent: 1
+ - uid: 27765
+ components:
+ - type: Transform
+ pos: 57.5,64.5
+ parent: 1
+ - uid: 27766
+ components:
+ - type: Transform
+ pos: 58.5,64.5
+ parent: 1
+ - uid: 27767
+ components:
+ - type: Transform
+ pos: 59.5,64.5
+ parent: 1
+ - uid: 27768
+ components:
+ - type: Transform
+ pos: 60.5,64.5
+ parent: 1
+ - uid: 27769
+ components:
+ - type: Transform
+ pos: 60.5,66.5
+ parent: 1
+ - uid: 27770
+ components:
+ - type: Transform
+ pos: 60.5,65.5
+ parent: 1
+ - uid: 27864
+ components:
+ - type: Transform
+ pos: 53.5,84.5
+ parent: 1
+ - uid: 27907
+ components:
+ - type: Transform
+ pos: 51.5,112.5
+ parent: 1
+ - uid: 27908
+ components:
+ - type: Transform
+ pos: 51.5,113.5
+ parent: 1
+ - uid: 27909
+ components:
+ - type: Transform
+ pos: 52.5,113.5
+ parent: 1
+ - uid: 27910
+ components:
+ - type: Transform
+ pos: 53.5,113.5
+ parent: 1
+ - uid: 27911
+ components:
+ - type: Transform
+ pos: 54.5,113.5
+ parent: 1
+ - uid: 27912
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 1
+ - uid: 27913
+ components:
+ - type: Transform
+ pos: 56.5,113.5
+ parent: 1
+ - uid: 27914
+ components:
+ - type: Transform
+ pos: 56.5,112.5
+ parent: 1
+ - uid: 27915
+ components:
+ - type: Transform
+ pos: 56.5,111.5
+ parent: 1
+ - uid: 27916
+ components:
+ - type: Transform
+ pos: 56.5,110.5
+ parent: 1
+ - uid: 27917
+ components:
+ - type: Transform
+ pos: 56.5,109.5
+ parent: 1
+ - uid: 27918
+ components:
+ - type: Transform
+ pos: 56.5,108.5
+ parent: 1
+ - uid: 27919
+ components:
+ - type: Transform
+ pos: 55.5,108.5
+ parent: 1
+ - uid: 27920
+ components:
+ - type: Transform
+ pos: 54.5,108.5
+ parent: 1
+ - uid: 27968
+ components:
+ - type: Transform
+ pos: 59.5,83.5
+ parent: 1
+ - uid: 27981
+ components:
+ - type: Transform
+ pos: 128.5,91.5
+ parent: 1
+ - uid: 28032
+ components:
+ - type: Transform
+ pos: 104.5,123.5
+ parent: 1
+ - uid: 28033
+ components:
+ - type: Transform
+ pos: 104.5,122.5
+ parent: 1
+ - uid: 28034
+ components:
+ - type: Transform
+ pos: 104.5,121.5
+ parent: 1
+ - uid: 28035
+ components:
+ - type: Transform
+ pos: 104.5,120.5
+ parent: 1
+ - uid: 28036
+ components:
+ - type: Transform
+ pos: 104.5,119.5
+ parent: 1
+ - uid: 28037
+ components:
+ - type: Transform
+ pos: 104.5,118.5
+ parent: 1
+ - uid: 28038
+ components:
+ - type: Transform
+ pos: 103.5,118.5
+ parent: 1
+ - uid: 28039
+ components:
+ - type: Transform
+ pos: 102.5,118.5
+ parent: 1
+ - uid: 28040
+ components:
+ - type: Transform
+ pos: 101.5,118.5
+ parent: 1
+ - uid: 28041
+ components:
+ - type: Transform
+ pos: 100.5,118.5
+ parent: 1
+ - uid: 28042
+ components:
+ - type: Transform
+ pos: 99.5,118.5
+ parent: 1
+ - uid: 28043
+ components:
+ - type: Transform
+ pos: 97.5,118.5
+ parent: 1
+ - uid: 28044
+ components:
+ - type: Transform
+ pos: 96.5,118.5
+ parent: 1
+ - uid: 28045
+ components:
+ - type: Transform
+ pos: 95.5,118.5
+ parent: 1
+ - uid: 28046
+ components:
+ - type: Transform
+ pos: 94.5,118.5
+ parent: 1
+ - uid: 28047
+ components:
+ - type: Transform
+ pos: 93.5,118.5
+ parent: 1
+ - uid: 28048
+ components:
+ - type: Transform
+ pos: 98.5,118.5
+ parent: 1
+ - uid: 28049
+ components:
+ - type: Transform
+ pos: 93.5,119.5
+ parent: 1
+ - uid: 28050
+ components:
+ - type: Transform
+ pos: 93.5,120.5
+ parent: 1
+ - uid: 28051
+ components:
+ - type: Transform
+ pos: 113.5,112.5
+ parent: 1
+ - uid: 28052
+ components:
+ - type: Transform
+ pos: 113.5,113.5
+ parent: 1
+ - uid: 28053
+ components:
+ - type: Transform
+ pos: 113.5,114.5
+ parent: 1
+ - uid: 28054
+ components:
+ - type: Transform
+ pos: 113.5,115.5
+ parent: 1
+ - uid: 28055
+ components:
+ - type: Transform
+ pos: 113.5,116.5
+ parent: 1
+ - uid: 28056
+ components:
+ - type: Transform
+ pos: 113.5,117.5
+ parent: 1
+ - uid: 28057
+ components:
+ - type: Transform
+ pos: 113.5,118.5
+ parent: 1
+ - uid: 28058
+ components:
+ - type: Transform
+ pos: 114.5,118.5
+ parent: 1
+ - uid: 28059
+ components:
+ - type: Transform
+ pos: 115.5,118.5
+ parent: 1
+ - uid: 28060
+ components:
+ - type: Transform
+ pos: 116.5,118.5
+ parent: 1
+ - uid: 28061
+ components:
+ - type: Transform
+ pos: 117.5,118.5
+ parent: 1
+ - uid: 28062
+ components:
+ - type: Transform
+ pos: 118.5,118.5
+ parent: 1
+ - uid: 28063
+ components:
+ - type: Transform
+ pos: 120.5,118.5
+ parent: 1
+ - uid: 28064
+ components:
+ - type: Transform
+ pos: 121.5,118.5
+ parent: 1
+ - uid: 28065
+ components:
+ - type: Transform
+ pos: 122.5,118.5
+ parent: 1
+ - uid: 28066
+ components:
+ - type: Transform
+ pos: 123.5,118.5
+ parent: 1
+ - uid: 28067
+ components:
+ - type: Transform
+ pos: 119.5,118.5
+ parent: 1
+ - uid: 28068
+ components:
+ - type: Transform
+ pos: 124.5,118.5
+ parent: 1
+ - uid: 28069
+ components:
+ - type: Transform
+ pos: 124.5,119.5
+ parent: 1
+ - uid: 28070
+ components:
+ - type: Transform
+ pos: 124.5,120.5
+ parent: 1
+ - uid: 28140
+ components:
+ - type: Transform
+ pos: 58.5,83.5
+ parent: 1
+ - uid: 28141
+ components:
+ - type: Transform
+ pos: 60.5,83.5
+ parent: 1
+ - uid: 28170
+ components:
+ - type: Transform
+ pos: 57.5,113.5
+ parent: 1
+ - uid: 28176
+ components:
+ - type: Transform
+ pos: 58.5,113.5
+ parent: 1
+ - uid: 28177
+ components:
+ - type: Transform
+ pos: 59.5,113.5
+ parent: 1
+ - uid: 28178
+ components:
+ - type: Transform
+ pos: 60.5,113.5
+ parent: 1
+ - uid: 28179
+ components:
+ - type: Transform
+ pos: 61.5,113.5
+ parent: 1
+ - uid: 28180
+ components:
+ - type: Transform
+ pos: 62.5,113.5
+ parent: 1
+ - uid: 28181
+ components:
+ - type: Transform
+ pos: 63.5,113.5
+ parent: 1
+ - uid: 28182
+ components:
+ - type: Transform
+ pos: 63.5,114.5
+ parent: 1
+ - uid: 28183
+ components:
+ - type: Transform
+ pos: 63.5,115.5
+ parent: 1
+ - uid: 28184
+ components:
+ - type: Transform
+ pos: 63.5,116.5
+ parent: 1
+ - uid: 28222
+ components:
+ - type: Transform
+ pos: 134.5,96.5
+ parent: 1
+ - uid: 28323
+ components:
+ - type: Transform
+ pos: 132.5,115.5
+ parent: 1
+ - uid: 28324
+ components:
+ - type: Transform
+ pos: 131.5,115.5
+ parent: 1
+ - uid: 28325
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - uid: 28326
+ components:
+ - type: Transform
+ pos: 131.5,117.5
+ parent: 1
+ - uid: 28327
+ components:
+ - type: Transform
+ pos: 131.5,118.5
+ parent: 1
+ - uid: 28328
+ components:
+ - type: Transform
+ pos: 130.5,118.5
+ parent: 1
+ - uid: 28329
+ components:
+ - type: Transform
+ pos: 129.5,118.5
+ parent: 1
+ - uid: 28330
+ components:
+ - type: Transform
+ pos: 128.5,118.5
+ parent: 1
+ - uid: 28331
+ components:
+ - type: Transform
+ pos: 128.5,117.5
+ parent: 1
+ - uid: 28332
+ components:
+ - type: Transform
+ pos: 128.5,116.5
+ parent: 1
+ - uid: 28333
+ components:
+ - type: Transform
+ pos: 128.5,115.5
+ parent: 1
+ - uid: 28334
+ components:
+ - type: Transform
+ pos: 128.5,114.5
+ parent: 1
+ - uid: 28335
+ components:
+ - type: Transform
+ pos: 128.5,113.5
+ parent: 1
+ - uid: 28344
+ components:
+ - type: Transform
+ pos: 129.5,111.5
+ parent: 1
+ - uid: 28345
+ components:
+ - type: Transform
+ pos: 130.5,111.5
+ parent: 1
+ - uid: 28442
+ components:
+ - type: Transform
+ pos: 128.5,89.5
+ parent: 1
+ - uid: 28443
+ components:
+ - type: Transform
+ pos: 128.5,88.5
+ parent: 1
+ - uid: 28444
+ components:
+ - type: Transform
+ pos: 128.5,87.5
+ parent: 1
+ - uid: 28445
+ components:
+ - type: Transform
+ pos: 128.5,86.5
+ parent: 1
+ - uid: 28446
+ components:
+ - type: Transform
+ pos: 128.5,85.5
+ parent: 1
+ - uid: 28447
+ components:
+ - type: Transform
+ pos: 128.5,84.5
+ parent: 1
+ - uid: 28448
+ components:
+ - type: Transform
+ pos: 128.5,83.5
+ parent: 1
+ - uid: 28449
+ components:
+ - type: Transform
+ pos: 128.5,81.5
+ parent: 1
+ - uid: 28450
+ components:
+ - type: Transform
+ pos: 128.5,80.5
+ parent: 1
+ - uid: 28451
+ components:
+ - type: Transform
+ pos: 128.5,79.5
+ parent: 1
+ - uid: 28452
+ components:
+ - type: Transform
+ pos: 128.5,82.5
+ parent: 1
+ - uid: 28453
+ components:
+ - type: Transform
+ pos: 128.5,78.5
+ parent: 1
+ - uid: 28454
+ components:
+ - type: Transform
+ pos: 128.5,77.5
+ parent: 1
+ - uid: 28455
+ components:
+ - type: Transform
+ pos: 127.5,77.5
+ parent: 1
+ - uid: 28456
+ components:
+ - type: Transform
+ pos: 126.5,77.5
+ parent: 1
+ - uid: 28457
+ components:
+ - type: Transform
+ pos: 125.5,77.5
+ parent: 1
+ - uid: 28458
+ components:
+ - type: Transform
+ pos: 124.5,77.5
+ parent: 1
+ - uid: 28459
+ components:
+ - type: Transform
+ pos: 123.5,77.5
+ parent: 1
+ - uid: 28460
+ components:
+ - type: Transform
+ pos: 122.5,77.5
+ parent: 1
+ - uid: 28461
+ components:
+ - type: Transform
+ pos: 122.5,78.5
+ parent: 1
+ - uid: 28462
+ components:
+ - type: Transform
+ pos: 122.5,79.5
+ parent: 1
+ - uid: 28463
+ components:
+ - type: Transform
+ pos: 129.5,77.5
+ parent: 1
+ - uid: 28464
+ components:
+ - type: Transform
+ pos: 130.5,77.5
+ parent: 1
+ - uid: 28465
+ components:
+ - type: Transform
+ pos: 131.5,77.5
+ parent: 1
+ - uid: 28466
+ components:
+ - type: Transform
+ pos: 132.5,77.5
+ parent: 1
+ - uid: 28467
+ components:
+ - type: Transform
+ pos: 133.5,77.5
+ parent: 1
+ - uid: 28468
+ components:
+ - type: Transform
+ pos: 134.5,77.5
+ parent: 1
+ - uid: 28469
+ components:
+ - type: Transform
+ pos: 135.5,77.5
+ parent: 1
+ - uid: 28470
+ components:
+ - type: Transform
+ pos: 136.5,77.5
+ parent: 1
+ - uid: 28471
+ components:
+ - type: Transform
+ pos: 137.5,77.5
+ parent: 1
+ - uid: 28472
+ components:
+ - type: Transform
+ pos: 138.5,77.5
+ parent: 1
+ - uid: 28473
+ components:
+ - type: Transform
+ pos: 139.5,77.5
+ parent: 1
+ - uid: 28474
+ components:
+ - type: Transform
+ pos: 139.5,78.5
+ parent: 1
+ - uid: 28475
+ components:
+ - type: Transform
+ pos: 139.5,79.5
+ parent: 1
+ - uid: 28517
+ components:
+ - type: Transform
+ pos: 128.5,106.5
+ parent: 1
+ - uid: 28524
+ components:
+ - type: Transform
+ pos: 154.5,150.5
+ parent: 1
+ - uid: 28526
+ components:
+ - type: Transform
+ pos: 164.5,142.5
+ parent: 1
+ - uid: 28539
+ components:
+ - type: Transform
+ pos: 50.5,74.5
+ parent: 1
+ - uid: 28561
+ components:
+ - type: Transform
+ pos: 139.5,82.5
+ parent: 1
+ - uid: 28562
+ components:
+ - type: Transform
+ pos: 138.5,82.5
+ parent: 1
+ - uid: 28563
+ components:
+ - type: Transform
+ pos: 137.5,82.5
+ parent: 1
+ - uid: 28564
+ components:
+ - type: Transform
+ pos: 136.5,82.5
+ parent: 1
+ - uid: 28565
+ components:
+ - type: Transform
+ pos: 135.5,82.5
+ parent: 1
+ - uid: 28679
+ components:
+ - type: Transform
+ pos: 124.5,55.5
+ parent: 1
+ - uid: 28680
+ components:
+ - type: Transform
+ pos: 123.5,55.5
+ parent: 1
+ - uid: 28681
+ components:
+ - type: Transform
+ pos: 123.5,54.5
+ parent: 1
+ - uid: 28682
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - uid: 28683
+ components:
+ - type: Transform
+ pos: 123.5,51.5
+ parent: 1
+ - uid: 28684
+ components:
+ - type: Transform
+ pos: 123.5,50.5
+ parent: 1
+ - uid: 28685
+ components:
+ - type: Transform
+ pos: 123.5,53.5
+ parent: 1
+ - uid: 28686
+ components:
+ - type: Transform
+ pos: 122.5,50.5
+ parent: 1
+ - uid: 28687
+ components:
+ - type: Transform
+ pos: 121.5,50.5
+ parent: 1
+ - uid: 28688
+ components:
+ - type: Transform
+ pos: 120.5,50.5
+ parent: 1
+ - uid: 28689
+ components:
+ - type: Transform
+ pos: 119.5,50.5
+ parent: 1
+ - uid: 28690
+ components:
+ - type: Transform
+ pos: 117.5,50.5
+ parent: 1
+ - uid: 28691
+ components:
+ - type: Transform
+ pos: 118.5,50.5
+ parent: 1
+ - uid: 28692
+ components:
+ - type: Transform
+ pos: 117.5,49.5
+ parent: 1
+ - uid: 28693
+ components:
+ - type: Transform
+ pos: 117.5,48.5
+ parent: 1
+ - uid: 28694
+ components:
+ - type: Transform
+ pos: 117.5,47.5
+ parent: 1
+ - uid: 28695
+ components:
+ - type: Transform
+ pos: 117.5,46.5
+ parent: 1
+ - uid: 28718
+ components:
+ - type: Transform
+ pos: 121.5,48.5
+ parent: 1
+ - uid: 28719
+ components:
+ - type: Transform
+ pos: 121.5,49.5
+ parent: 1
+ - uid: 28746
+ components:
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 1
+ - uid: 28777
+ components:
+ - type: Transform
+ pos: 137.5,96.5
+ parent: 1
+ - uid: 28784
+ components:
+ - type: Transform
+ pos: 101.5,52.5
+ parent: 1
+ - uid: 28808
+ components:
+ - type: Transform
+ pos: 62.5,83.5
+ parent: 1
+ - uid: 28910
+ components:
+ - type: Transform
+ pos: 104.5,65.5
+ parent: 1
+ - uid: 29015
+ components:
+ - type: Transform
+ pos: 91.5,73.5
+ parent: 1
+ - uid: 29016
+ components:
+ - type: Transform
+ pos: 92.5,73.5
+ parent: 1
+ - uid: 29078
+ components:
+ - type: Transform
+ pos: 104.5,64.5
+ parent: 1
+ - uid: 29114
+ components:
+ - type: Transform
+ pos: 107.5,45.5
+ parent: 1
+ - uid: 29121
+ components:
+ - type: Transform
+ pos: 102.5,44.5
+ parent: 1
+ - uid: 29297
+ components:
+ - type: Transform
+ pos: 42.5,110.5
+ parent: 1
+ - uid: 29301
+ components:
+ - type: Transform
+ pos: 72.5,46.5
+ parent: 1
+ - uid: 29304
+ components:
+ - type: Transform
+ pos: 46.5,72.5
+ parent: 1
+ - uid: 29320
+ components:
+ - type: Transform
+ pos: 142.5,116.5
+ parent: 1
+ - uid: 29321
+ components:
+ - type: Transform
+ pos: 142.5,117.5
+ parent: 1
+ - uid: 29322
+ components:
+ - type: Transform
+ pos: 142.5,118.5
+ parent: 1
+ - uid: 29323
+ components:
+ - type: Transform
+ pos: 142.5,119.5
+ parent: 1
+ - uid: 29324
+ components:
+ - type: Transform
+ pos: 142.5,120.5
+ parent: 1
+ - uid: 29331
+ components:
+ - type: Transform
+ pos: 160.5,145.5
+ parent: 1
+ - uid: 29332
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - uid: 29333
+ components:
+ - type: Transform
+ pos: 161.5,145.5
+ parent: 1
+ - uid: 29334
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - uid: 29335
+ components:
+ - type: Transform
+ pos: 162.5,143.5
+ parent: 1
+ - uid: 29348
+ components:
+ - type: Transform
+ pos: 161.5,131.5
+ parent: 1
+ - uid: 29349
+ components:
+ - type: Transform
+ pos: 161.5,130.5
+ parent: 1
+ - uid: 29350
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 29351
+ components:
+ - type: Transform
+ pos: 159.5,130.5
+ parent: 1
+ - uid: 29352
+ components:
+ - type: Transform
+ pos: 158.5,130.5
+ parent: 1
+ - uid: 29353
+ components:
+ - type: Transform
+ pos: 157.5,130.5
+ parent: 1
+ - uid: 29357
+ components:
+ - type: Transform
+ pos: 152.5,130.5
+ parent: 1
+ - uid: 29359
+ components:
+ - type: Transform
+ pos: 152.5,129.5
+ parent: 1
+ - uid: 29360
+ components:
+ - type: Transform
+ pos: 152.5,128.5
+ parent: 1
+ - uid: 29361
+ components:
+ - type: Transform
+ pos: 152.5,127.5
+ parent: 1
+ - uid: 29362
+ components:
+ - type: Transform
+ pos: 153.5,127.5
+ parent: 1
+ - uid: 29363
+ components:
+ - type: Transform
+ pos: 154.5,127.5
+ parent: 1
+ - uid: 29364
+ components:
+ - type: Transform
+ pos: 155.5,127.5
+ parent: 1
+ - uid: 29365
+ components:
+ - type: Transform
+ pos: 156.5,127.5
+ parent: 1
+ - uid: 29395
+ components:
+ - type: Transform
+ pos: 145.5,89.5
+ parent: 1
+ - uid: 29403
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - uid: 29404
+ components:
+ - type: Transform
+ pos: 157.5,132.5
+ parent: 1
+ - uid: 29456
+ components:
+ - type: Transform
+ pos: 150.5,142.5
+ parent: 1
+ - uid: 29457
+ components:
+ - type: Transform
+ pos: 151.5,142.5
+ parent: 1
+ - uid: 29511
+ components:
+ - type: Transform
+ pos: 87.5,47.5
+ parent: 1
+ - uid: 29674
+ components:
+ - type: Transform
+ pos: 149.5,138.5
+ parent: 1
+ - uid: 29675
+ components:
+ - type: Transform
+ pos: 149.5,137.5
+ parent: 1
+ - uid: 29676
+ components:
+ - type: Transform
+ pos: 149.5,136.5
+ parent: 1
+ - uid: 29677
+ components:
+ - type: Transform
+ pos: 149.5,135.5
+ parent: 1
+ - uid: 29678
+ components:
+ - type: Transform
+ pos: 149.5,134.5
+ parent: 1
+ - uid: 29679
+ components:
+ - type: Transform
+ pos: 149.5,133.5
+ parent: 1
+ - uid: 29680
+ components:
+ - type: Transform
+ pos: 149.5,132.5
+ parent: 1
+ - uid: 29681
+ components:
+ - type: Transform
+ pos: 149.5,131.5
+ parent: 1
+ - uid: 29682
+ components:
+ - type: Transform
+ pos: 149.5,130.5
+ parent: 1
+ - uid: 29683
+ components:
+ - type: Transform
+ pos: 149.5,128.5
+ parent: 1
+ - uid: 29684
+ components:
+ - type: Transform
+ pos: 149.5,127.5
+ parent: 1
+ - uid: 29685
+ components:
+ - type: Transform
+ pos: 149.5,129.5
+ parent: 1
+ - uid: 29686
+ components:
+ - type: Transform
+ pos: 149.5,125.5
+ parent: 1
+ - uid: 29687
+ components:
+ - type: Transform
+ pos: 149.5,124.5
+ parent: 1
+ - uid: 29688
+ components:
+ - type: Transform
+ pos: 149.5,123.5
+ parent: 1
+ - uid: 29689
+ components:
+ - type: Transform
+ pos: 149.5,126.5
+ parent: 1
+ - uid: 29690
+ components:
+ - type: Transform
+ pos: 149.5,120.5
+ parent: 1
+ - uid: 29691
+ components:
+ - type: Transform
+ pos: 149.5,119.5
+ parent: 1
+ - uid: 29692
+ components:
+ - type: Transform
+ pos: 149.5,118.5
+ parent: 1
+ - uid: 29693
+ components:
+ - type: Transform
+ pos: 149.5,121.5
+ parent: 1
+ - uid: 29694
+ components:
+ - type: Transform
+ pos: 149.5,122.5
+ parent: 1
+ - uid: 29695
+ components:
+ - type: Transform
+ pos: 148.5,118.5
+ parent: 1
+ - uid: 29696
+ components:
+ - type: Transform
+ pos: 147.5,118.5
+ parent: 1
+ - uid: 29697
+ components:
+ - type: Transform
+ pos: 146.5,118.5
+ parent: 1
+ - uid: 29698
+ components:
+ - type: Transform
+ pos: 145.5,118.5
+ parent: 1
+ - uid: 29699
+ components:
+ - type: Transform
+ pos: 144.5,118.5
+ parent: 1
+ - uid: 29700
+ components:
+ - type: Transform
+ pos: 144.5,119.5
+ parent: 1
+ - uid: 29701
+ components:
+ - type: Transform
+ pos: 144.5,120.5
+ parent: 1
+ - uid: 29702
+ components:
+ - type: Transform
+ pos: 144.5,121.5
+ parent: 1
+ - uid: 29703
+ components:
+ - type: Transform
+ pos: 144.5,122.5
+ parent: 1
+ - uid: 29704
+ components:
+ - type: Transform
+ pos: 144.5,123.5
+ parent: 1
+ - uid: 29852
+ components:
+ - type: Transform
+ pos: 151.5,151.5
+ parent: 1
+ - uid: 29854
+ components:
+ - type: Transform
+ pos: 152.5,150.5
+ parent: 1
+ - uid: 29855
+ components:
+ - type: Transform
+ pos: 152.5,149.5
+ parent: 1
+ - uid: 29856
+ components:
+ - type: Transform
+ pos: 152.5,151.5
+ parent: 1
+ - uid: 29857
+ components:
+ - type: Transform
+ pos: 153.5,146.5
+ parent: 1
+ - uid: 29859
+ components:
+ - type: Transform
+ pos: 153.5,148.5
+ parent: 1
+ - uid: 29860
+ components:
+ - type: Transform
+ pos: 92.5,114.5
+ parent: 1
+ - uid: 29864
+ components:
+ - type: Transform
+ pos: 153.5,147.5
+ parent: 1
+ - uid: 29935
+ components:
+ - type: Transform
+ pos: 139.5,140.5
+ parent: 1
+ - uid: 29936
+ components:
+ - type: Transform
+ pos: 139.5,141.5
+ parent: 1
+ - uid: 29945
+ components:
+ - type: Transform
+ pos: 142.5,144.5
+ parent: 1
+ - uid: 29946
+ components:
+ - type: Transform
+ pos: 143.5,144.5
+ parent: 1
+ - uid: 29947
+ components:
+ - type: Transform
+ pos: 144.5,144.5
+ parent: 1
+ - uid: 29948
+ components:
+ - type: Transform
+ pos: 145.5,144.5
+ parent: 1
+ - uid: 29950
+ components:
+ - type: Transform
+ pos: 148.5,138.5
+ parent: 1
+ - uid: 29951
+ components:
+ - type: Transform
+ pos: 147.5,138.5
+ parent: 1
+ - uid: 29952
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - uid: 29953
+ components:
+ - type: Transform
+ pos: 145.5,138.5
+ parent: 1
+ - uid: 29954
+ components:
+ - type: Transform
+ pos: 145.5,139.5
+ parent: 1
+ - uid: 29955
+ components:
+ - type: Transform
+ pos: 145.5,140.5
+ parent: 1
+ - uid: 29956
+ components:
+ - type: Transform
+ pos: 145.5,141.5
+ parent: 1
+ - uid: 29957
+ components:
+ - type: Transform
+ pos: 145.5,142.5
+ parent: 1
+ - uid: 29958
+ components:
+ - type: Transform
+ pos: 145.5,143.5
+ parent: 1
+ - uid: 29959
+ components:
+ - type: Transform
+ pos: 145.5,145.5
+ parent: 1
+ - uid: 29960
+ components:
+ - type: Transform
+ pos: 145.5,146.5
+ parent: 1
+ - uid: 29961
+ components:
+ - type: Transform
+ pos: 145.5,147.5
+ parent: 1
+ - uid: 29962
+ components:
+ - type: Transform
+ pos: 145.5,148.5
+ parent: 1
+ - uid: 29963
+ components:
+ - type: Transform
+ pos: 146.5,148.5
+ parent: 1
+ - uid: 29964
+ components:
+ - type: Transform
+ pos: 147.5,148.5
+ parent: 1
+ - uid: 29965
+ components:
+ - type: Transform
+ pos: 148.5,148.5
+ parent: 1
+ - uid: 29966
+ components:
+ - type: Transform
+ pos: 149.5,148.5
+ parent: 1
+ - uid: 29967
+ components:
+ - type: Transform
+ pos: 150.5,148.5
+ parent: 1
+ - uid: 29968
+ components:
+ - type: Transform
+ pos: 151.5,148.5
+ parent: 1
+ - uid: 29969
+ components:
+ - type: Transform
+ pos: 152.5,148.5
+ parent: 1
+ - uid: 29994
+ components:
+ - type: Transform
+ pos: 148.5,131.5
+ parent: 1
+ - uid: 29995
+ components:
+ - type: Transform
+ pos: 146.5,131.5
+ parent: 1
+ - uid: 29996
+ components:
+ - type: Transform
+ pos: 145.5,131.5
+ parent: 1
+ - uid: 29997
+ components:
+ - type: Transform
+ pos: 144.5,131.5
+ parent: 1
+ - uid: 29998
+ components:
+ - type: Transform
+ pos: 147.5,131.5
+ parent: 1
+ - uid: 29999
+ components:
+ - type: Transform
+ pos: 144.5,132.5
+ parent: 1
+ - uid: 30000
+ components:
+ - type: Transform
+ pos: 144.5,133.5
+ parent: 1
+ - uid: 30001
+ components:
+ - type: Transform
+ pos: 143.5,133.5
+ parent: 1
+ - uid: 30002
+ components:
+ - type: Transform
+ pos: 142.5,133.5
+ parent: 1
+ - uid: 30016
+ components:
+ - type: Transform
+ pos: 141.5,144.5
+ parent: 1
+ - uid: 30017
+ components:
+ - type: Transform
+ pos: 139.5,144.5
+ parent: 1
+ - uid: 30018
+ components:
+ - type: Transform
+ pos: 137.5,144.5
+ parent: 1
+ - uid: 30144
+ components:
+ - type: Transform
+ pos: 150.5,152.5
+ parent: 1
+ - uid: 30158
+ components:
+ - type: Transform
+ pos: 147.5,145.5
+ parent: 1
+ - uid: 30159
+ components:
+ - type: Transform
+ pos: 132.5,92.5
+ parent: 1
+ - uid: 30177
+ components:
+ - type: Transform
+ pos: 137.5,141.5
+ parent: 1
+ - uid: 30200
+ components:
+ - type: Transform
+ pos: 136.5,144.5
+ parent: 1
+ - uid: 30201
+ components:
+ - type: Transform
+ pos: 138.5,144.5
+ parent: 1
+ - uid: 30202
+ components:
+ - type: Transform
+ pos: 140.5,144.5
+ parent: 1
+ - uid: 30358
+ components:
+ - type: Transform
+ pos: 95.5,116.5
+ parent: 1
+ - uid: 30360
+ components:
+ - type: Transform
+ pos: 136.5,93.5
+ parent: 1
+ - uid: 30367
+ components:
+ - type: Transform
+ pos: 135.5,93.5
+ parent: 1
+ - uid: 30392
+ components:
+ - type: Transform
+ pos: 47.5,74.5
+ parent: 1
+ - uid: 30415
+ components:
+ - type: Transform
+ pos: 101.5,38.5
+ parent: 1
+ - uid: 30469
+ components:
+ - type: Transform
+ pos: 134.5,143.5
+ parent: 1
+ - uid: 30470
+ components:
+ - type: Transform
+ pos: 134.5,144.5
+ parent: 1
+ - uid: 30471
+ components:
+ - type: Transform
+ pos: 134.5,145.5
+ parent: 1
+ - uid: 30472
+ components:
+ - type: Transform
+ pos: 134.5,146.5
+ parent: 1
+ - uid: 30473
+ components:
+ - type: Transform
+ pos: 134.5,147.5
+ parent: 1
+ - uid: 30474
+ components:
+ - type: Transform
+ pos: 134.5,148.5
+ parent: 1
+ - uid: 30475
+ components:
+ - type: Transform
+ pos: 133.5,148.5
+ parent: 1
+ - uid: 30476
+ components:
+ - type: Transform
+ pos: 132.5,148.5
+ parent: 1
+ - uid: 30512
+ components:
+ - type: Transform
+ pos: 132.5,149.5
+ parent: 1
+ - uid: 30617
+ components:
+ - type: Transform
+ pos: 27.5,79.5
+ parent: 1
+ - uid: 30637
+ components:
+ - type: Transform
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 30640
+ components:
+ - type: Transform
+ pos: 145.5,114.5
+ parent: 1
+ - uid: 30718
+ components:
+ - type: Transform
+ pos: 57.5,142.5
+ parent: 1
+ - uid: 30719
+ components:
+ - type: Transform
+ pos: 30.5,74.5
+ parent: 1
+ - uid: 30749
+ components:
+ - type: Transform
+ pos: 88.5,47.5
+ parent: 1
+ - uid: 30799
+ components:
+ - type: Transform
+ pos: 52.5,138.5
+ parent: 1
+ - uid: 30802
+ components:
+ - type: Transform
+ pos: 54.5,139.5
+ parent: 1
+ - uid: 30803
+ components:
+ - type: Transform
+ pos: 55.5,139.5
+ parent: 1
+ - uid: 30804
+ components:
+ - type: Transform
+ pos: 56.5,139.5
+ parent: 1
+ - uid: 30805
+ components:
+ - type: Transform
+ pos: 57.5,139.5
+ parent: 1
+ - uid: 30806
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - uid: 30816
+ components:
+ - type: Transform
+ pos: 59.5,148.5
+ parent: 1
+ - uid: 30817
+ components:
+ - type: Transform
+ pos: 60.5,148.5
+ parent: 1
+ - uid: 30818
+ components:
+ - type: Transform
+ pos: 60.5,149.5
+ parent: 1
+ - uid: 30819
+ components:
+ - type: Transform
+ pos: 60.5,150.5
+ parent: 1
+ - uid: 30820
+ components:
+ - type: Transform
+ pos: 60.5,151.5
+ parent: 1
+ - uid: 30821
+ components:
+ - type: Transform
+ pos: 60.5,152.5
+ parent: 1
+ - uid: 30822
+ components:
+ - type: Transform
+ pos: 61.5,152.5
+ parent: 1
+ - uid: 30823
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - uid: 30824
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - uid: 30825
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - uid: 30826
+ components:
+ - type: Transform
+ pos: 61.5,157.5
+ parent: 1
+ - uid: 30827
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - uid: 30828
+ components:
+ - type: Transform
+ pos: 62.5,157.5
+ parent: 1
+ - uid: 30832
+ components:
+ - type: Transform
+ pos: 156.5,99.5
+ parent: 1
+ - uid: 30839
+ components:
+ - type: Transform
+ pos: 72.5,156.5
+ parent: 1
+ - uid: 30842
+ components:
+ - type: Transform
+ pos: 155.5,99.5
+ parent: 1
+ - uid: 30848
+ components:
+ - type: Transform
+ pos: 89.5,47.5
+ parent: 1
+ - uid: 30851
+ components:
+ - type: Transform
+ pos: 84.5,156.5
+ parent: 1
+ - uid: 30852
+ components:
+ - type: Transform
+ pos: 85.5,156.5
+ parent: 1
+ - uid: 30853
+ components:
+ - type: Transform
+ pos: 86.5,156.5
+ parent: 1
+ - uid: 30854
+ components:
+ - type: Transform
+ pos: 87.5,156.5
+ parent: 1
+ - uid: 30855
+ components:
+ - type: Transform
+ pos: 88.5,156.5
+ parent: 1
+ - uid: 30856
+ components:
+ - type: Transform
+ pos: 89.5,156.5
+ parent: 1
+ - uid: 30857
+ components:
+ - type: Transform
+ pos: 60.5,129.5
+ parent: 1
+ - uid: 30858
+ components:
+ - type: Transform
+ pos: 60.5,130.5
+ parent: 1
+ - uid: 30859
+ components:
+ - type: Transform
+ pos: 59.5,130.5
+ parent: 1
+ - uid: 30864
+ components:
+ - type: Transform
+ pos: 137.5,93.5
+ parent: 1
+ - uid: 30866
+ components:
+ - type: Transform
+ pos: 58.5,136.5
+ parent: 1
+ - uid: 30867
+ components:
+ - type: Transform
+ pos: 58.5,137.5
+ parent: 1
+ - uid: 30868
+ components:
+ - type: Transform
+ pos: 58.5,138.5
+ parent: 1
+ - uid: 30870
+ components:
+ - type: Transform
+ pos: 60.5,131.5
+ parent: 1
+ - uid: 30877
+ components:
+ - type: Transform
+ pos: 53.5,139.5
+ parent: 1
+ - uid: 30878
+ components:
+ - type: Transform
+ pos: 52.5,139.5
+ parent: 1
+ - uid: 31798
+ components:
+ - type: Transform
+ pos: 129.5,41.5
+ parent: 1
+ - uid: 31988
+ components:
+ - type: Transform
+ pos: 99.5,73.5
+ parent: 1
+ - uid: 32094
+ components:
+ - type: Transform
+ pos: 99.5,69.5
+ parent: 1
+ - uid: 32095
+ components:
+ - type: Transform
+ pos: 99.5,70.5
+ parent: 1
+ - uid: 32096
+ components:
+ - type: Transform
+ pos: 99.5,75.5
+ parent: 1
+ - uid: 32205
+ components:
+ - type: Transform
+ pos: 43.5,76.5
+ parent: 1
+ - uid: 32206
+ components:
+ - type: Transform
+ pos: 43.5,78.5
+ parent: 1
+ - uid: 32207
+ components:
+ - type: Transform
+ pos: 43.5,79.5
+ parent: 1
+ - uid: 32208
+ components:
+ - type: Transform
+ pos: 43.5,80.5
+ parent: 1
+ - uid: 32209
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - uid: 32210
+ components:
+ - type: Transform
+ pos: 42.5,80.5
+ parent: 1
+ - uid: 32211
+ components:
+ - type: Transform
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 32212
+ components:
+ - type: Transform
+ pos: 40.5,80.5
+ parent: 1
+ - uid: 32213
+ components:
+ - type: Transform
+ pos: 39.5,80.5
+ parent: 1
+ - uid: 32214
+ components:
+ - type: Transform
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 32215
+ components:
+ - type: Transform
+ pos: 37.5,80.5
+ parent: 1
+ - uid: 32224
+ components:
+ - type: Transform
+ pos: 28.5,80.5
+ parent: 1
+ - uid: 32225
+ components:
+ - type: Transform
+ pos: 28.5,79.5
+ parent: 1
+ - uid: 32229
+ components:
+ - type: Transform
+ pos: 28.5,73.5
+ parent: 1
+ - uid: 32231
+ components:
+ - type: Transform
+ pos: 28.5,74.5
+ parent: 1
+ - uid: 32232
+ components:
+ - type: Transform
+ pos: 28.5,71.5
+ parent: 1
+ - uid: 32233
+ components:
+ - type: Transform
+ pos: 28.5,72.5
+ parent: 1
+ - uid: 32234
+ components:
+ - type: Transform
+ pos: 29.5,71.5
+ parent: 1
+ - uid: 32242
+ components:
+ - type: Transform
+ pos: 99.5,76.5
+ parent: 1
+ - uid: 32248
+ components:
+ - type: Transform
+ pos: 99.5,67.5
+ parent: 1
+ - uid: 32252
+ components:
+ - type: Transform
+ pos: 99.5,66.5
+ parent: 1
+ - uid: 32253
+ components:
+ - type: Transform
+ pos: 91.5,59.5
+ parent: 1
+ - uid: 32254
+ components:
+ - type: Transform
+ pos: 87.5,61.5
+ parent: 1
+ - uid: 32284
+ components:
+ - type: Transform
+ pos: 65.5,49.5
+ parent: 1
+ - uid: 32286
+ components:
+ - type: Transform
+ pos: 67.5,49.5
+ parent: 1
+ - uid: 32287
+ components:
+ - type: Transform
+ pos: 67.5,50.5
+ parent: 1
+ - uid: 32288
+ components:
+ - type: Transform
+ pos: 67.5,51.5
+ parent: 1
+ - uid: 32294
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - uid: 32303
+ components:
+ - type: Transform
+ pos: 151.5,53.5
+ parent: 1
+ - uid: 32304
+ components:
+ - type: Transform
+ pos: 152.5,53.5
+ parent: 1
+ - uid: 32305
+ components:
+ - type: Transform
+ pos: 153.5,53.5
+ parent: 1
+ - uid: 32312
+ components:
+ - type: Transform
+ pos: 67.5,41.5
+ parent: 1
+ - uid: 32313
+ components:
+ - type: Transform
+ pos: 67.5,40.5
+ parent: 1
+ - uid: 32314
+ components:
+ - type: Transform
+ pos: 68.5,40.5
+ parent: 1
+ - uid: 32315
+ components:
+ - type: Transform
+ pos: 69.5,40.5
+ parent: 1
+ - uid: 32318
+ components:
+ - type: Transform
+ pos: 67.5,46.5
+ parent: 1
+ - uid: 32319
+ components:
+ - type: Transform
+ pos: 67.5,45.5
+ parent: 1
+ - uid: 32320
+ components:
+ - type: Transform
+ pos: 67.5,44.5
+ parent: 1
+ - uid: 32321
+ components:
+ - type: Transform
+ pos: 67.5,43.5
+ parent: 1
+ - uid: 32322
+ components:
+ - type: Transform
+ pos: 120.5,95.5
+ parent: 1
+ - uid: 32323
+ components:
+ - type: Transform
+ pos: 120.5,96.5
+ parent: 1
+ - uid: 32324
+ components:
+ - type: Transform
+ pos: 120.5,97.5
+ parent: 1
+ - uid: 32325
+ components:
+ - type: Transform
+ pos: 44.5,107.5
+ parent: 1
+ - uid: 32326
+ components:
+ - type: Transform
+ pos: 45.5,107.5
+ parent: 1
+ - uid: 32327
+ components:
+ - type: Transform
+ pos: 46.5,107.5
+ parent: 1
+ - uid: 32328
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 1
+ - uid: 32376
+ components:
+ - type: Transform
+ pos: 132.5,93.5
+ parent: 1
+ - uid: 32423
+ components:
+ - type: Transform
+ pos: 111.5,35.5
+ parent: 1
+ - uid: 32424
+ components:
+ - type: Transform
+ pos: 111.5,36.5
+ parent: 1
+ - uid: 32425
+ components:
+ - type: Transform
+ pos: 111.5,37.5
+ parent: 1
+ - uid: 32426
+ components:
+ - type: Transform
+ pos: 111.5,38.5
+ parent: 1
+ - uid: 32427
+ components:
+ - type: Transform
+ pos: 111.5,39.5
+ parent: 1
+ - uid: 32428
+ components:
+ - type: Transform
+ pos: 111.5,40.5
+ parent: 1
+ - uid: 32429
+ components:
+ - type: Transform
+ pos: 111.5,41.5
+ parent: 1
+ - uid: 32430
+ components:
+ - type: Transform
+ pos: 111.5,42.5
+ parent: 1
+ - uid: 32434
+ components:
+ - type: Transform
+ pos: 111.5,43.5
+ parent: 1
+ - uid: 32440
+ components:
+ - type: Transform
+ pos: 112.5,43.5
+ parent: 1
+ - uid: 32978
+ components:
+ - type: Transform
+ pos: 101.5,40.5
+ parent: 1
+ - uid: 32985
+ components:
+ - type: Transform
+ pos: 94.5,116.5
+ parent: 1
+ - uid: 33623
+ components:
+ - type: Transform
+ pos: 77.5,99.5
+ parent: 1
+ - uid: 33747
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 1
+ - uid: 33756
+ components:
+ - type: Transform
+ pos: 99.5,68.5
+ parent: 1
+ - uid: 33786
+ components:
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 1
+ - uid: 33826
+ components:
+ - type: Transform
+ pos: 128.5,96.5
+ parent: 1
+ - uid: 33890
+ components:
+ - type: Transform
+ pos: 47.5,75.5
+ parent: 1
+ - uid: 33891
+ components:
+ - type: Transform
+ pos: 45.5,74.5
+ parent: 1
+ - uid: 33907
+ components:
+ - type: Transform
+ pos: 113.5,74.5
+ parent: 1
+ - uid: 33916
+ components:
+ - type: Transform
+ pos: 56.5,41.5
+ parent: 1
+ - uid: 33962
+ components:
+ - type: Transform
+ pos: 113.5,76.5
+ parent: 1
+ - uid: 33967
+ components:
+ - type: Transform
+ pos: 44.5,74.5
+ parent: 1
+ - uid: 34052
+ components:
+ - type: Transform
+ pos: 76.5,60.5
+ parent: 1
+ - uid: 34053
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 1
+ - uid: 34277
+ components:
+ - type: Transform
+ pos: 162.5,54.5
+ parent: 1
+ - uid: 34278
+ components:
+ - type: Transform
+ pos: 162.5,53.5
+ parent: 1
+ - uid: 34282
+ components:
+ - type: Transform
+ pos: 140.5,97.5
+ parent: 1
+ - uid: 34283
+ components:
+ - type: Transform
+ pos: 140.5,96.5
+ parent: 1
+ - uid: 34284
+ components:
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - uid: 34285
+ components:
+ - type: Transform
+ pos: 140.5,94.5
+ parent: 1
+ - uid: 34286
+ components:
+ - type: Transform
+ pos: 140.5,93.5
+ parent: 1
+ - uid: 34292
+ components:
+ - type: Transform
+ pos: 140.5,92.5
+ parent: 1
+ - uid: 34295
+ components:
+ - type: Transform
+ pos: 139.5,85.5
+ parent: 1
+ - uid: 34298
+ components:
+ - type: Transform
+ pos: 137.5,86.5
+ parent: 1
+ - uid: 34299
+ components:
+ - type: Transform
+ pos: 137.5,87.5
+ parent: 1
+ - uid: 34604
+ components:
+ - type: Transform
+ pos: 138.5,93.5
+ parent: 1
+ - uid: 34704
+ components:
+ - type: Transform
+ pos: 62.5,116.5
+ parent: 1
+ - uid: 34801
+ components:
+ - type: Transform
+ pos: 61.5,116.5
+ parent: 1
+ - uid: 34819
+ components:
+ - type: Transform
+ pos: 64.5,79.5
+ parent: 1
+ - uid: 34822
+ components:
+ - type: Transform
+ pos: 78.5,80.5
+ parent: 1
+ - uid: 34823
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 1
+ - uid: 34824
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 1
+ - uid: 34825
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 1
+ - uid: 34826
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 1
+ - uid: 34827
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 1
+ - uid: 34828
+ components:
+ - type: Transform
+ pos: 85.5,80.5
+ parent: 1
+ - uid: 34829
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 1
+ - uid: 34830
+ components:
+ - type: Transform
+ pos: 85.5,81.5
+ parent: 1
+ - uid: 34868
+ components:
+ - type: Transform
+ pos: 60.5,116.5
+ parent: 1
+ - uid: 34871
+ components:
+ - type: Transform
+ pos: 120.5,88.5
+ parent: 1
+ - uid: 34873
+ components:
+ - type: Transform
+ pos: 59.5,116.5
+ parent: 1
+ - uid: 34874
+ components:
+ - type: Transform
+ pos: 58.5,116.5
+ parent: 1
+ - uid: 34877
+ components:
+ - type: Transform
+ pos: 57.5,116.5
+ parent: 1
+ - uid: 34879
+ components:
+ - type: Transform
+ pos: 56.5,116.5
+ parent: 1
+ - uid: 34885
+ components:
+ - type: Transform
+ pos: 55.5,116.5
+ parent: 1
+ - uid: 34886
+ components:
+ - type: Transform
+ pos: 55.5,117.5
+ parent: 1
+ - uid: 34887
+ components:
+ - type: Transform
+ pos: 53.5,117.5
+ parent: 1
+ - uid: 34894
+ components:
+ - type: Transform
+ pos: 120.5,89.5
+ parent: 1
+ - uid: 35001
+ components:
+ - type: Transform
+ pos: 130.5,41.5
+ parent: 1
+ - uid: 35002
+ components:
+ - type: Transform
+ pos: 131.5,41.5
+ parent: 1
+ - uid: 35003
+ components:
+ - type: Transform
+ pos: 132.5,41.5
+ parent: 1
+ - uid: 35004
+ components:
+ - type: Transform
+ pos: 133.5,41.5
+ parent: 1
+ - uid: 35005
+ components:
+ - type: Transform
+ pos: 134.5,41.5
+ parent: 1
+ - uid: 35006
+ components:
+ - type: Transform
+ pos: 131.5,42.5
+ parent: 1
+ - uid: 35038
+ components:
+ - type: Transform
+ pos: 117.5,172.5
+ parent: 1
+ - uid: 35039
+ components:
+ - type: Transform
+ pos: 117.5,171.5
+ parent: 1
+ - uid: 35043
+ components:
+ - type: Transform
+ pos: 117.5,169.5
+ parent: 1
+ - uid: 35044
+ components:
+ - type: Transform
+ pos: 117.5,168.5
+ parent: 1
+ - uid: 35045
+ components:
+ - type: Transform
+ pos: 119.5,168.5
+ parent: 1
+ - uid: 35047
+ components:
+ - type: Transform
+ pos: 131.5,148.5
+ parent: 1
+ - uid: 35048
+ components:
+ - type: Transform
+ pos: 130.5,148.5
+ parent: 1
+ - uid: 35049
+ components:
+ - type: Transform
+ pos: 129.5,148.5
+ parent: 1
+ - uid: 35050
+ components:
+ - type: Transform
+ pos: 127.5,148.5
+ parent: 1
+ - uid: 35051
+ components:
+ - type: Transform
+ pos: 126.5,148.5
+ parent: 1
+ - uid: 35052
+ components:
+ - type: Transform
+ pos: 125.5,148.5
+ parent: 1
+ - uid: 35053
+ components:
+ - type: Transform
+ pos: 128.5,148.5
+ parent: 1
+ - uid: 35054
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - uid: 35055
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - uid: 35056
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - uid: 35057
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - uid: 35058
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - uid: 35059
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - uid: 35060
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - uid: 35061
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - uid: 35062
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - uid: 35063
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - uid: 35072
+ components:
+ - type: Transform
+ pos: 121.5,164.5
+ parent: 1
+ - uid: 35074
+ components:
+ - type: Transform
+ pos: 120.5,164.5
+ parent: 1
+ - uid: 35075
+ components:
+ - type: Transform
+ pos: 119.5,164.5
+ parent: 1
+ - uid: 35076
+ components:
+ - type: Transform
+ pos: 118.5,164.5
+ parent: 1
+ - uid: 35077
+ components:
+ - type: Transform
+ pos: 117.5,164.5
+ parent: 1
+ - uid: 35078
+ components:
+ - type: Transform
+ pos: 116.5,164.5
+ parent: 1
+ - uid: 35079
+ components:
+ - type: Transform
+ pos: 115.5,164.5
+ parent: 1
+ - uid: 35080
+ components:
+ - type: Transform
+ pos: 114.5,164.5
+ parent: 1
+ - uid: 35081
+ components:
+ - type: Transform
+ pos: 113.5,164.5
+ parent: 1
+ - uid: 35089
+ components:
+ - type: Transform
+ pos: 112.5,164.5
+ parent: 1
+ - uid: 35091
+ components:
+ - type: Transform
+ pos: 104.5,165.5
+ parent: 1
+ - uid: 35092
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - uid: 35093
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - uid: 35094
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - uid: 35096
+ components:
+ - type: Transform
+ pos: 103.5,169.5
+ parent: 1
+ - uid: 35097
+ components:
+ - type: Transform
+ pos: 102.5,169.5
+ parent: 1
+ - uid: 35098
+ components:
+ - type: Transform
+ pos: 100.5,169.5
+ parent: 1
+ - uid: 35099
+ components:
+ - type: Transform
+ pos: 99.5,169.5
+ parent: 1
+ - uid: 35100
+ components:
+ - type: Transform
+ pos: 98.5,169.5
+ parent: 1
+ - uid: 35105
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 35106
+ components:
+ - type: Transform
+ pos: 94.5,168.5
+ parent: 1
+ - uid: 35107
+ components:
+ - type: Transform
+ pos: 94.5,167.5
+ parent: 1
+ - uid: 35108
+ components:
+ - type: Transform
+ pos: 94.5,166.5
+ parent: 1
+ - uid: 35109
+ components:
+ - type: Transform
+ pos: 94.5,165.5
+ parent: 1
+ - uid: 35110
+ components:
+ - type: Transform
+ pos: 94.5,164.5
+ parent: 1
+ - uid: 35111
+ components:
+ - type: Transform
+ pos: 94.5,163.5
+ parent: 1
+ - uid: 35112
+ components:
+ - type: Transform
+ pos: 94.5,161.5
+ parent: 1
+ - uid: 35113
+ components:
+ - type: Transform
+ pos: 94.5,160.5
+ parent: 1
+ - uid: 35114
+ components:
+ - type: Transform
+ pos: 94.5,159.5
+ parent: 1
+ - uid: 35115
+ components:
+ - type: Transform
+ pos: 94.5,162.5
+ parent: 1
+ - uid: 35116
+ components:
+ - type: Transform
+ pos: 93.5,159.5
+ parent: 1
+ - uid: 35117
+ components:
+ - type: Transform
+ pos: 92.5,159.5
+ parent: 1
+ - uid: 35118
+ components:
+ - type: Transform
+ pos: 91.5,159.5
+ parent: 1
+ - uid: 35119
+ components:
+ - type: Transform
+ pos: 90.5,159.5
+ parent: 1
+ - uid: 35120
+ components:
+ - type: Transform
+ pos: 89.5,159.5
+ parent: 1
+ - uid: 35121
+ components:
+ - type: Transform
+ pos: 89.5,158.5
+ parent: 1
+ - uid: 35211
+ components:
+ - type: Transform
+ pos: 101.5,37.5
+ parent: 1
+ - uid: 35217
+ components:
+ - type: Transform
+ pos: 87.5,81.5
+ parent: 1
+ - uid: 35221
+ components:
+ - type: Transform
+ pos: 88.5,87.5
+ parent: 1
+ - uid: 35222
+ components:
+ - type: Transform
+ pos: 87.5,87.5
+ parent: 1
+ - uid: 35275
+ components:
+ - type: Transform
+ pos: 91.5,160.5
+ parent: 1
+ - uid: 35276
+ components:
+ - type: Transform
+ pos: 91.5,161.5
+ parent: 1
+ - uid: 35277
+ components:
+ - type: Transform
+ pos: 91.5,162.5
+ parent: 1
+ - uid: 35278
+ components:
+ - type: Transform
+ pos: 89.5,166.5
+ parent: 1
+ - uid: 35279
+ components:
+ - type: Transform
+ pos: 89.5,165.5
+ parent: 1
+ - uid: 35280
+ components:
+ - type: Transform
+ pos: 90.5,163.5
+ parent: 1
+ - uid: 35281
+ components:
+ - type: Transform
+ pos: 89.5,163.5
+ parent: 1
+ - uid: 35423
+ components:
+ - type: Transform
+ pos: 91.5,47.5
+ parent: 1
+ - uid: 35424
+ components:
+ - type: Transform
+ pos: 71.5,60.5
+ parent: 1
+ - uid: 35428
+ components:
+ - type: Transform
+ pos: 72.5,60.5
+ parent: 1
+ - uid: 35430
+ components:
+ - type: Transform
+ pos: 73.5,60.5
+ parent: 1
+ - uid: 35473
+ components:
+ - type: Transform
+ pos: 72.5,153.5
+ parent: 1
+ - uid: 35474
+ components:
+ - type: Transform
+ pos: 71.5,153.5
+ parent: 1
+ - uid: 35475
+ components:
+ - type: Transform
+ pos: 70.5,153.5
+ parent: 1
+ - uid: 35476
+ components:
+ - type: Transform
+ pos: 69.5,153.5
+ parent: 1
+ - uid: 35477
+ components:
+ - type: Transform
+ pos: 69.5,154.5
+ parent: 1
+ - uid: 35478
+ components:
+ - type: Transform
+ pos: 69.5,155.5
+ parent: 1
+ - uid: 35480
+ components:
+ - type: Transform
+ pos: 70.5,155.5
+ parent: 1
+ - uid: 35481
+ components:
+ - type: Transform
+ pos: 72.5,155.5
+ parent: 1
+ - uid: 35482
+ components:
+ - type: Transform
+ pos: 71.5,155.5
+ parent: 1
+ - uid: 35550
+ components:
+ - type: Transform
+ pos: 127.5,112.5
+ parent: 1
+ - uid: 35551
+ components:
+ - type: Transform
+ pos: 125.5,111.5
+ parent: 1
+ - uid: 35552
+ components:
+ - type: Transform
+ pos: 126.5,112.5
+ parent: 1
+ - uid: 35553
+ components:
+ - type: Transform
+ pos: 127.5,111.5
+ parent: 1
+ - uid: 35554
+ components:
+ - type: Transform
+ pos: 128.5,103.5
+ parent: 1
+ - uid: 35557
+ components:
+ - type: Transform
+ pos: 128.5,102.5
+ parent: 1
+ - uid: 35568
+ components:
+ - type: Transform
+ pos: 127.5,110.5
+ parent: 1
+ - uid: 35693
+ components:
+ - type: Transform
+ pos: 57.5,140.5
+ parent: 1
+ - uid: 35707
+ components:
+ - type: Transform
+ pos: 24.5,119.5
+ parent: 1
+ - uid: 35753
+ components:
+ - type: Transform
+ pos: 125.5,112.5
+ parent: 1
+ - uid: 35871
+ components:
+ - type: Transform
+ pos: 51.5,120.5
+ parent: 1
+ - uid: 35879
+ components:
+ - type: Transform
+ pos: 51.5,119.5
+ parent: 1
+ - uid: 35880
+ components:
+ - type: Transform
+ pos: 51.5,118.5
+ parent: 1
+ - uid: 35881
+ components:
+ - type: Transform
+ pos: 51.5,117.5
+ parent: 1
+ - uid: 35882
+ components:
+ - type: Transform
+ pos: 51.5,116.5
+ parent: 1
+ - uid: 35883
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 1
+ - uid: 35884
+ components:
+ - type: Transform
+ pos: 51.5,114.5
+ parent: 1
+ - uid: 35902
+ components:
+ - type: Transform
+ pos: 87.5,83.5
+ parent: 1
+ - uid: 35911
+ components:
+ - type: Transform
+ pos: 139.5,90.5
+ parent: 1
+ - uid: 35920
+ components:
+ - type: Transform
+ pos: 25.5,119.5
+ parent: 1
+ - uid: 35929
+ components:
+ - type: Transform
+ pos: 26.5,119.5
+ parent: 1
+ - uid: 35930
+ components:
+ - type: Transform
+ pos: 27.5,119.5
+ parent: 1
+ - uid: 35931
+ components:
+ - type: Transform
+ pos: 28.5,119.5
+ parent: 1
+ - uid: 35932
+ components:
+ - type: Transform
+ pos: 29.5,119.5
+ parent: 1
+ - uid: 35933
+ components:
+ - type: Transform
+ pos: 30.5,119.5
+ parent: 1
+ - uid: 35934
+ components:
+ - type: Transform
+ pos: 31.5,119.5
+ parent: 1
+ - uid: 35935
+ components:
+ - type: Transform
+ pos: 32.5,119.5
+ parent: 1
+ - uid: 35936
+ components:
+ - type: Transform
+ pos: 33.5,119.5
+ parent: 1
+ - uid: 35946
+ components:
+ - type: Transform
+ pos: 139.5,89.5
+ parent: 1
+ - uid: 35949
+ components:
+ - type: Transform
+ pos: 142.5,114.5
+ parent: 1
+ - uid: 35951
+ components:
+ - type: Transform
+ pos: 49.5,119.5
+ parent: 1
+ - uid: 35952
+ components:
+ - type: Transform
+ pos: 50.5,119.5
+ parent: 1
+ - uid: 35957
+ components:
+ - type: Transform
+ pos: 23.5,119.5
+ parent: 1
+ - uid: 35958
+ components:
+ - type: Transform
+ pos: 22.5,119.5
+ parent: 1
+ - uid: 35997
+ components:
+ - type: Transform
+ pos: 48.5,119.5
+ parent: 1
+ - uid: 36030
+ components:
+ - type: Transform
+ pos: 152.5,99.5
+ parent: 1
+ - uid: 36047
+ components:
+ - type: Transform
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 36048
+ components:
+ - type: Transform
+ pos: 53.5,110.5
+ parent: 1
+ - uid: 36133
+ components:
+ - type: Transform
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 36135
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 36143
+ components:
+ - type: Transform
+ pos: 40.5,123.5
+ parent: 1
+ - uid: 36154
+ components:
+ - type: Transform
+ pos: 29.5,74.5
+ parent: 1
+ - uid: 36216
+ components:
+ - type: Transform
+ pos: 28.5,81.5
+ parent: 1
+ - uid: 36217
+ components:
+ - type: Transform
+ pos: 28.5,82.5
+ parent: 1
+ - uid: 36218
+ components:
+ - type: Transform
+ pos: 28.5,83.5
+ parent: 1
+ - uid: 36219
+ components:
+ - type: Transform
+ pos: 28.5,84.5
+ parent: 1
+ - uid: 36220
+ components:
+ - type: Transform
+ pos: 27.5,84.5
+ parent: 1
+ - uid: 36221
+ components:
+ - type: Transform
+ pos: 26.5,84.5
+ parent: 1
+ - uid: 36222
+ components:
+ - type: Transform
+ pos: 25.5,84.5
+ parent: 1
+ - uid: 36223
+ components:
+ - type: Transform
+ pos: 25.5,85.5
+ parent: 1
+ - uid: 36224
+ components:
+ - type: Transform
+ pos: 25.5,86.5
+ parent: 1
+ - uid: 36225
+ components:
+ - type: Transform
+ pos: 25.5,87.5
+ parent: 1
+ - uid: 36226
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 1
+ - uid: 36227
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 1
+ - uid: 36228
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 1
+ - uid: 36229
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 1
+ - uid: 36230
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 1
+ - uid: 36231
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 1
+ - uid: 36232
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 1
+ - uid: 36233
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 1
+ - uid: 36234
+ components:
+ - type: Transform
+ pos: 26.5,95.5
+ parent: 1
+ - uid: 36235
+ components:
+ - type: Transform
+ pos: 27.5,95.5
+ parent: 1
+ - uid: 36237
+ components:
+ - type: Transform
+ pos: 25.5,83.5
+ parent: 1
+ - uid: 36238
+ components:
+ - type: Transform
+ pos: 25.5,81.5
+ parent: 1
+ - uid: 36239
+ components:
+ - type: Transform
+ pos: 25.5,80.5
+ parent: 1
+ - uid: 36240
+ components:
+ - type: Transform
+ pos: 25.5,82.5
+ parent: 1
+ - uid: 36241
+ components:
+ - type: Transform
+ pos: 26.5,80.5
+ parent: 1
+ - uid: 36339
+ components:
+ - type: Transform
+ pos: 68.5,162.5
+ parent: 1
+ - uid: 36621
+ components:
+ - type: Transform
+ pos: 91.5,168.5
+ parent: 1
+ - uid: 36635
+ components:
+ - type: Transform
+ pos: 90.5,168.5
+ parent: 1
+ - uid: 36649
+ components:
+ - type: Transform
+ pos: 97.5,97.5
+ parent: 1
+ - uid: 36655
+ components:
+ - type: Transform
+ pos: 98.5,97.5
+ parent: 1
+ - uid: 36656
+ components:
+ - type: Transform
+ pos: 100.5,97.5
+ parent: 1
+ - uid: 36662
+ components:
+ - type: Transform
+ pos: 90.5,169.5
+ parent: 1
+ - uid: 36665
+ components:
+ - type: Transform
+ pos: 90.5,170.5
+ parent: 1
+ - uid: 36667
+ components:
+ - type: Transform
+ pos: 47.5,106.5
+ parent: 1
+ - uid: 36668
+ components:
+ - type: Transform
+ pos: 47.5,105.5
+ parent: 1
+ - uid: 36669
+ components:
+ - type: Transform
+ pos: 47.5,104.5
+ parent: 1
+ - uid: 36681
+ components:
+ - type: Transform
+ pos: 105.5,156.5
+ parent: 1
+ - uid: 36701
+ components:
+ - type: Transform
+ pos: 105.5,157.5
+ parent: 1
+ - uid: 36702
+ components:
+ - type: Transform
+ pos: 105.5,158.5
+ parent: 1
+ - uid: 36703
+ components:
+ - type: Transform
+ pos: 105.5,159.5
+ parent: 1
+ - uid: 36704
+ components:
+ - type: Transform
+ pos: 105.5,160.5
+ parent: 1
+ - uid: 36705
+ components:
+ - type: Transform
+ pos: 104.5,160.5
+ parent: 1
+ - uid: 36706
+ components:
+ - type: Transform
+ pos: 103.5,160.5
+ parent: 1
+ - uid: 36711
+ components:
+ - type: Transform
+ pos: 117.5,156.5
+ parent: 1
+ - uid: 36712
+ components:
+ - type: Transform
+ pos: 117.5,157.5
+ parent: 1
+ - uid: 36713
+ components:
+ - type: Transform
+ pos: 117.5,158.5
+ parent: 1
+ - uid: 36714
+ components:
+ - type: Transform
+ pos: 117.5,159.5
+ parent: 1
+ - uid: 36715
+ components:
+ - type: Transform
+ pos: 116.5,159.5
+ parent: 1
+ - uid: 36716
+ components:
+ - type: Transform
+ pos: 115.5,159.5
+ parent: 1
+ - uid: 36719
+ components:
+ - type: Transform
+ pos: 114.5,159.5
+ parent: 1
+ - uid: 36733
+ components:
+ - type: Transform
+ pos: 124.5,105.5
+ parent: 1
+ - uid: 36744
+ components:
+ - type: Transform
+ pos: 90.5,171.5
+ parent: 1
+ - uid: 36747
+ components:
+ - type: Transform
+ pos: 90.5,172.5
+ parent: 1
+ - uid: 36750
+ components:
+ - type: Transform
+ pos: 66.5,124.5
+ parent: 1
+ - uid: 36751
+ components:
+ - type: Transform
+ pos: 65.5,124.5
+ parent: 1
+ - uid: 36752
+ components:
+ - type: Transform
+ pos: 64.5,124.5
+ parent: 1
+ - uid: 36767
+ components:
+ - type: Transform
+ pos: 63.5,124.5
+ parent: 1
+ - uid: 36785
+ components:
+ - type: Transform
+ pos: 91.5,172.5
+ parent: 1
+ - uid: 36786
+ components:
+ - type: Transform
+ pos: 92.5,172.5
+ parent: 1
+ - uid: 36787
+ components:
+ - type: Transform
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 36788
+ components:
+ - type: Transform
+ pos: 94.5,172.5
+ parent: 1
+ - uid: 36789
+ components:
+ - type: Transform
+ pos: 95.5,172.5
+ parent: 1
+ - uid: 36806
+ components:
+ - type: Transform
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 36808
+ components:
+ - type: Transform
+ pos: 97.5,172.5
+ parent: 1
+ - uid: 36809
+ components:
+ - type: Transform
+ pos: 98.5,172.5
+ parent: 1
+ - uid: 36850
+ components:
+ - type: Transform
+ pos: 98.5,171.5
+ parent: 1
+ - uid: 36858
+ components:
+ - type: Transform
+ pos: 98.5,170.5
+ parent: 1
+ - uid: 37013
+ components:
+ - type: Transform
+ pos: 95.5,165.5
+ parent: 1
+ - uid: 37014
+ components:
+ - type: Transform
+ pos: 96.5,165.5
+ parent: 1
+ - uid: 37015
+ components:
+ - type: Transform
+ pos: 97.5,165.5
+ parent: 1
+ - uid: 37016
+ components:
+ - type: Transform
+ pos: 98.5,165.5
+ parent: 1
+ - uid: 37017
+ components:
+ - type: Transform
+ pos: 99.5,165.5
+ parent: 1
+ - uid: 37018
+ components:
+ - type: Transform
+ pos: 99.5,166.5
+ parent: 1
+ - uid: 37019
+ components:
+ - type: Transform
+ pos: 99.5,167.5
+ parent: 1
+ - uid: 37020
+ components:
+ - type: Transform
+ pos: 99.5,168.5
+ parent: 1
+ - uid: 37091
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - uid: 37092
+ components:
+ - type: Transform
+ pos: 163.5,143.5
+ parent: 1
+ - uid: 37148
+ components:
+ - type: Transform
+ pos: 155.5,131.5
+ parent: 1
+ - uid: 37149
+ components:
+ - type: Transform
+ pos: 156.5,131.5
+ parent: 1
+ - uid: 37223
+ components:
+ - type: Transform
+ pos: 63.5,125.5
+ parent: 1
+ - uid: 37224
+ components:
+ - type: Transform
+ pos: 63.5,126.5
+ parent: 1
+ - uid: 37225
+ components:
+ - type: Transform
+ pos: 63.5,127.5
+ parent: 1
+ - uid: 37226
+ components:
+ - type: Transform
+ pos: 63.5,128.5
+ parent: 1
+ - uid: 37227
+ components:
+ - type: Transform
+ pos: 62.5,128.5
+ parent: 1
+ - uid: 37228
+ components:
+ - type: Transform
+ pos: 62.5,129.5
+ parent: 1
+ - uid: 37229
+ components:
+ - type: Transform
+ pos: 62.5,130.5
+ parent: 1
+ - uid: 37230
+ components:
+ - type: Transform
+ pos: 62.5,131.5
+ parent: 1
+ - uid: 37231
+ components:
+ - type: Transform
+ pos: 62.5,132.5
+ parent: 1
+ - uid: 37232
+ components:
+ - type: Transform
+ pos: 61.5,132.5
+ parent: 1
+ - uid: 37233
+ components:
+ - type: Transform
+ pos: 61.5,133.5
+ parent: 1
+ - uid: 37234
+ components:
+ - type: Transform
+ pos: 61.5,134.5
+ parent: 1
+ - uid: 37235
+ components:
+ - type: Transform
+ pos: 61.5,135.5
+ parent: 1
+ - uid: 37236
+ components:
+ - type: Transform
+ pos: 61.5,136.5
+ parent: 1
+ - uid: 37237
+ components:
+ - type: Transform
+ pos: 60.5,136.5
+ parent: 1
+ - uid: 37238
+ components:
+ - type: Transform
+ pos: 60.5,137.5
+ parent: 1
+ - uid: 37239
+ components:
+ - type: Transform
+ pos: 60.5,138.5
+ parent: 1
+ - uid: 37240
+ components:
+ - type: Transform
+ pos: 60.5,139.5
+ parent: 1
+ - uid: 37241
+ components:
+ - type: Transform
+ pos: 60.5,140.5
+ parent: 1
+ - uid: 37242
+ components:
+ - type: Transform
+ pos: 60.5,141.5
+ parent: 1
+ - uid: 37243
+ components:
+ - type: Transform
+ pos: 60.5,142.5
+ parent: 1
+ - uid: 37244
+ components:
+ - type: Transform
+ pos: 61.5,142.5
+ parent: 1
+ - uid: 37245
+ components:
+ - type: Transform
+ pos: 61.5,143.5
+ parent: 1
+ - uid: 37246
+ components:
+ - type: Transform
+ pos: 61.5,144.5
+ parent: 1
+ - uid: 37247
+ components:
+ - type: Transform
+ pos: 61.5,145.5
+ parent: 1
+ - uid: 37248
+ components:
+ - type: Transform
+ pos: 61.5,146.5
+ parent: 1
+ - uid: 37249
+ components:
+ - type: Transform
+ pos: 62.5,146.5
+ parent: 1
+ - uid: 37250
+ components:
+ - type: Transform
+ pos: 62.5,147.5
+ parent: 1
+ - uid: 37251
+ components:
+ - type: Transform
+ pos: 62.5,148.5
+ parent: 1
+ - uid: 37252
+ components:
+ - type: Transform
+ pos: 62.5,149.5
+ parent: 1
+ - uid: 37253
+ components:
+ - type: Transform
+ pos: 62.5,150.5
+ parent: 1
+ - uid: 37254
+ components:
+ - type: Transform
+ pos: 63.5,150.5
+ parent: 1
+ - uid: 37255
+ components:
+ - type: Transform
+ pos: 63.5,151.5
+ parent: 1
+ - uid: 37256
+ components:
+ - type: Transform
+ pos: 63.5,152.5
+ parent: 1
+ - uid: 37257
+ components:
+ - type: Transform
+ pos: 63.5,153.5
+ parent: 1
+ - uid: 37258
+ components:
+ - type: Transform
+ pos: 63.5,154.5
+ parent: 1
+ - uid: 37259
+ components:
+ - type: Transform
+ pos: 64.5,154.5
+ parent: 1
+ - uid: 37260
+ components:
+ - type: Transform
+ pos: 65.5,154.5
+ parent: 1
+ - uid: 37261
+ components:
+ - type: Transform
+ pos: 66.5,154.5
+ parent: 1
+ - uid: 37262
+ components:
+ - type: Transform
+ pos: 67.5,154.5
+ parent: 1
+ - uid: 37277
+ components:
+ - type: Transform
+ pos: 117.5,152.5
+ parent: 1
+ - uid: 37278
+ components:
+ - type: Transform
+ pos: 117.5,151.5
+ parent: 1
+ - uid: 37279
+ components:
+ - type: Transform
+ pos: 118.5,151.5
+ parent: 1
+ - uid: 37280
+ components:
+ - type: Transform
+ pos: 119.5,151.5
+ parent: 1
+ - uid: 37281
+ components:
+ - type: Transform
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 37311
+ components:
+ - type: Transform
+ pos: 133.5,126.5
+ parent: 1
+ - uid: 37312
+ components:
+ - type: Transform
+ pos: 133.5,127.5
+ parent: 1
+ - uid: 37313
+ components:
+ - type: Transform
+ pos: 134.5,127.5
+ parent: 1
+ - uid: 37314
+ components:
+ - type: Transform
+ pos: 135.5,127.5
+ parent: 1
+ - uid: 37315
+ components:
+ - type: Transform
+ pos: 136.5,127.5
+ parent: 1
+ - uid: 37316
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - uid: 37317
+ components:
+ - type: Transform
+ pos: 138.5,127.5
+ parent: 1
+ - uid: 37320
+ components:
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - uid: 37321
+ components:
+ - type: Transform
+ pos: 134.5,125.5
+ parent: 1
+ - uid: 37336
+ components:
+ - type: Transform
+ pos: 42.5,113.5
+ parent: 1
+ - uid: 37337
+ components:
+ - type: Transform
+ pos: 41.5,113.5
+ parent: 1
+ - uid: 37338
+ components:
+ - type: Transform
+ pos: 41.5,114.5
+ parent: 1
+ - uid: 37339
+ components:
+ - type: Transform
+ pos: 41.5,115.5
+ parent: 1
+ - uid: 37340
+ components:
+ - type: Transform
+ pos: 41.5,116.5
+ parent: 1
+ - uid: 37341
+ components:
+ - type: Transform
+ pos: 41.5,117.5
+ parent: 1
+ - uid: 37342
+ components:
+ - type: Transform
+ pos: 41.5,118.5
+ parent: 1
+ - uid: 37344
+ components:
+ - type: Transform
+ pos: 45.5,90.5
+ parent: 1
+ - uid: 37345
+ components:
+ - type: Transform
+ pos: 46.5,90.5
+ parent: 1
+ - uid: 37346
+ components:
+ - type: Transform
+ pos: 47.5,90.5
+ parent: 1
+ - uid: 37347
+ components:
+ - type: Transform
+ pos: 47.5,89.5
+ parent: 1
+ - uid: 37348
+ components:
+ - type: Transform
+ pos: 47.5,88.5
+ parent: 1
+ - uid: 37349
+ components:
+ - type: Transform
+ pos: 45.5,88.5
+ parent: 1
+ - uid: 37350
+ components:
+ - type: Transform
+ pos: 46.5,88.5
+ parent: 1
+ - uid: 37353
+ components:
+ - type: Transform
+ pos: 141.5,110.5
+ parent: 1
+ - uid: 37381
+ components:
+ - type: Transform
+ pos: 32.5,49.5
+ parent: 1
+ - uid: 37382
+ components:
+ - type: Transform
+ pos: 32.5,48.5
+ parent: 1
+ - uid: 37383
+ components:
+ - type: Transform
+ pos: 33.5,48.5
+ parent: 1
+ - uid: 37438
+ components:
+ - type: Transform
+ pos: 83.5,53.5
+ parent: 1
+ - uid: 37439
+ components:
+ - type: Transform
+ pos: 83.5,54.5
+ parent: 1
+ - uid: 37440
+ components:
+ - type: Transform
+ pos: 83.5,55.5
+ parent: 1
+ - uid: 37441
+ components:
+ - type: Transform
+ pos: 83.5,56.5
+ parent: 1
+ - uid: 37442
+ components:
+ - type: Transform
+ pos: 83.5,57.5
+ parent: 1
+ - uid: 37443
+ components:
+ - type: Transform
+ pos: 83.5,58.5
+ parent: 1
+ - uid: 37444
+ components:
+ - type: Transform
+ pos: 83.5,59.5
+ parent: 1
+ - uid: 37445
+ components:
+ - type: Transform
+ pos: 83.5,60.5
+ parent: 1
+ - uid: 37446
+ components:
+ - type: Transform
+ pos: 83.5,61.5
+ parent: 1
+ - uid: 37447
+ components:
+ - type: Transform
+ pos: 83.5,63.5
+ parent: 1
+ - uid: 37448
+ components:
+ - type: Transform
+ pos: 83.5,62.5
+ parent: 1
+ - uid: 37461
+ components:
+ - type: Transform
+ pos: 90.5,55.5
+ parent: 1
+ - uid: 37462
+ components:
+ - type: Transform
+ pos: 88.5,55.5
+ parent: 1
+ - uid: 37500
+ components:
+ - type: Transform
+ pos: 143.5,123.5
+ parent: 1
+ - uid: 37501
+ components:
+ - type: Transform
+ pos: 142.5,123.5
+ parent: 1
+ - uid: 37505
+ components:
+ - type: Transform
+ pos: 45.5,45.5
+ parent: 1
+ - uid: 37506
+ components:
+ - type: Transform
+ pos: 44.5,45.5
+ parent: 1
+ - uid: 37507
+ components:
+ - type: Transform
+ pos: 43.5,45.5
+ parent: 1
+ - uid: 37508
+ components:
+ - type: Transform
+ pos: 42.5,45.5
+ parent: 1
+ - uid: 37509
+ components:
+ - type: Transform
+ pos: 41.5,45.5
+ parent: 1
+ - uid: 37513
+ components:
+ - type: Transform
+ pos: 28.5,70.5
+ parent: 1
+ - uid: 37514
+ components:
+ - type: Transform
+ pos: 28.5,69.5
+ parent: 1
+ - uid: 37515
+ components:
+ - type: Transform
+ pos: 29.5,69.5
+ parent: 1
+ - uid: 37516
+ components:
+ - type: Transform
+ pos: 30.5,69.5
+ parent: 1
+ - uid: 37552
+ components:
+ - type: Transform
+ pos: 45.5,106.5
+ parent: 1
+- proto: CableTerminal
+ entities:
+ - uid: 6147
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,124.5
+ parent: 1
+ - uid: 9049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,123.5
+ parent: 1
+ - uid: 9258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,122.5
+ parent: 1
+ - uid: 9269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,123.5
+ parent: 1
+ - uid: 9270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,126.5
+ parent: 1
+ - uid: 9271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,127.5
+ parent: 1
+ - uid: 9272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,128.5
+ parent: 1
+ - uid: 11547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,143.5
+ parent: 1
+ - uid: 11549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,69.5
+ parent: 1
+ - uid: 12343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,59.5
+ parent: 1
+ - uid: 12913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,26.5
+ parent: 1
+ - uid: 13962
+ components:
+ - type: Transform
+ pos: 97.5,145.5
+ parent: 1
+- proto: Candle
+ entities:
+ - uid: 27054
+ components:
+ - type: Transform
+ pos: 83.68553,72.85085
+ parent: 1
+ - uid: 27057
+ components:
+ - type: Transform
+ pos: 83.75076,76.34065
+ parent: 1
+ - uid: 27061
+ components:
+ - type: Transform
+ pos: 72.58913,73.58074
+ parent: 1
+ - uid: 33506
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 100.99184,27.169098
+ parent: 1
+- proto: CandleBlue
+ entities:
+ - uid: 26604
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 100.486015,111.99001
+ parent: 1
+- proto: CandleGreen
+ entities:
+ - uid: 26605
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 99.489334,115.01709
+ parent: 1
+- proto: CandlePurple
+ entities:
+ - uid: 26607
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 117.4833,114.999596
+ parent: 1
+ - uid: 36321
+ components:
+ - type: Transform
+ pos: 57.038525,134.16953
+ parent: 1
+- proto: CandlePurpleSmall
+ entities:
+ - uid: 36319
+ components:
+ - type: Transform
+ pos: 57.201603,132.95462
+ parent: 1
+ - uid: 36320
+ components:
+ - type: Transform
+ pos: 58.799732,134.17769
+ parent: 1
+- proto: CandleRed
+ entities:
+ - uid: 26606
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 116.46478,111.99974
+ parent: 1
+- proto: CandleSmall
+ entities:
+ - uid: 27058
+ components:
+ - type: Transform
+ pos: 83.538765,72.626755
+ parent: 1
+ - uid: 27059
+ components:
+ - type: Transform
+ pos: 83.58769,76.581314
+ parent: 1
+ - uid: 27060
+ components:
+ - type: Transform
+ pos: 72.71143,73.784584
+ parent: 1
+- proto: CannabisSeeds
+ entities:
+ - uid: 23033
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 135.37857,48.462723
+ parent: 1
+- proto: CapacitorStockPart
+ entities:
+ - uid: 20973
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 50.349102,92.35627
+ parent: 1
+- proto: CaptainIDCard
+ entities:
+ - uid: 840
+ components:
+ - type: Transform
+ pos: 38.5,66.5
+ parent: 1
+- proto: CarbonDioxideCanister
+ entities:
+ - uid: 15963
+ components:
+ - type: Transform
+ pos: 85.5,116.5
+ parent: 1
+ - uid: 15970
+ components:
+ - type: Transform
+ pos: 85.5,118.5
+ parent: 1
+ - uid: 15974
+ components:
+ - type: Transform
+ pos: 85.5,117.5
+ parent: 1
+ - uid: 23445
+ components:
+ - type: Transform
+ pos: 65.5,143.5
+ parent: 1
+- proto: Carpet
+ entities:
+ - uid: 434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,39.5
+ parent: 1
+ - uid: 662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,40.5
+ parent: 1
+ - uid: 4037
+ components:
+ - type: Transform
+ pos: 38.5,71.5
+ parent: 1
+ - uid: 4046
+ components:
+ - type: Transform
+ pos: 39.5,71.5
+ parent: 1
+ - uid: 6290
+ components:
+ - type: Transform
+ pos: 38.5,72.5
+ parent: 1
+ - uid: 7195
+ components:
+ - type: Transform
+ pos: 39.5,72.5
+ parent: 1
+ - uid: 11256
+ components:
+ - type: Transform
+ pos: 107.5,38.5
+ parent: 1
+ - uid: 23088
+ components:
+ - type: Transform
+ pos: 144.5,65.5
+ parent: 1
+ - uid: 23089
+ components:
+ - type: Transform
+ pos: 144.5,66.5
+ parent: 1
+ - uid: 23090
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+ - uid: 23091
+ components:
+ - type: Transform
+ pos: 143.5,66.5
+ parent: 1
+ - uid: 23092
+ components:
+ - type: Transform
+ pos: 142.5,65.5
+ parent: 1
+ - uid: 23093
+ components:
+ - type: Transform
+ pos: 142.5,66.5
+ parent: 1
+ - uid: 23893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,39.5
+ parent: 1
+ - uid: 24294
+ components:
+ - type: Transform
+ pos: 106.5,38.5
+ parent: 1
+ - uid: 24295
+ components:
+ - type: Transform
+ pos: 78.5,53.5
+ parent: 1
+ - uid: 25527
+ components:
+ - type: Transform
+ pos: 106.5,47.5
+ parent: 1
+ - uid: 25539
+ components:
+ - type: Transform
+ pos: 105.5,47.5
+ parent: 1
+ - uid: 26585
+ components:
+ - type: Transform
+ pos: 105.5,45.5
+ parent: 1
+ - uid: 26674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,40.5
+ parent: 1
+ - uid: 26996
+ components:
+ - type: Transform
+ pos: 72.5,73.5
+ parent: 1
+ - uid: 26997
+ components:
+ - type: Transform
+ pos: 72.5,74.5
+ parent: 1
+ - uid: 26998
+ components:
+ - type: Transform
+ pos: 72.5,75.5
+ parent: 1
+ - uid: 26999
+ components:
+ - type: Transform
+ pos: 71.5,73.5
+ parent: 1
+ - uid: 27000
+ components:
+ - type: Transform
+ pos: 71.5,74.5
+ parent: 1
+ - uid: 27001
+ components:
+ - type: Transform
+ pos: 71.5,75.5
+ parent: 1
+ - uid: 27002
+ components:
+ - type: Transform
+ pos: 70.5,73.5
+ parent: 1
+ - uid: 27003
+ components:
+ - type: Transform
+ pos: 70.5,74.5
+ parent: 1
+ - uid: 27004
+ components:
+ - type: Transform
+ pos: 70.5,75.5
+ parent: 1
+ - uid: 27005
+ components:
+ - type: Transform
+ pos: 72.5,76.5
+ parent: 1
+ - uid: 27006
+ components:
+ - type: Transform
+ pos: 71.5,76.5
+ parent: 1
+ - uid: 27007
+ components:
+ - type: Transform
+ pos: 70.5,76.5
+ parent: 1
+ - uid: 27008
+ components:
+ - type: Transform
+ pos: 75.5,69.5
+ parent: 1
+ - uid: 27009
+ components:
+ - type: Transform
+ pos: 76.5,69.5
+ parent: 1
+ - uid: 27010
+ components:
+ - type: Transform
+ pos: 74.5,69.5
+ parent: 1
+ - uid: 27011
+ components:
+ - type: Transform
+ pos: 82.5,75.5
+ parent: 1
+ - uid: 27012
+ components:
+ - type: Transform
+ pos: 82.5,74.5
+ parent: 1
+ - uid: 27013
+ components:
+ - type: Transform
+ pos: 82.5,73.5
+ parent: 1
+ - uid: 27102
+ components:
+ - type: Transform
+ pos: 78.5,52.5
+ parent: 1
+ - uid: 27181
+ components:
+ - type: Transform
+ pos: 106.5,45.5
+ parent: 1
+ - uid: 27195
+ components:
+ - type: Transform
+ pos: 105.5,38.5
+ parent: 1
+ - uid: 27251
+ components:
+ - type: Transform
+ pos: 76.5,53.5
+ parent: 1
+ - uid: 27252
+ components:
+ - type: Transform
+ pos: 77.5,53.5
+ parent: 1
+ - uid: 27253
+ components:
+ - type: Transform
+ pos: 77.5,52.5
+ parent: 1
+ - uid: 27256
+ components:
+ - type: Transform
+ pos: 76.5,52.5
+ parent: 1
+ - uid: 27338
+ components:
+ - type: Transform
+ pos: 106.5,46.5
+ parent: 1
+ - uid: 27499
+ components:
+ - type: Transform
+ pos: 105.5,46.5
+ parent: 1
+ - uid: 34571
+ components:
+ - type: Transform
+ pos: 160.5,74.5
+ parent: 1
+ - uid: 34572
+ components:
+ - type: Transform
+ pos: 160.5,75.5
+ parent: 1
+ - uid: 34573
+ components:
+ - type: Transform
+ pos: 159.5,74.5
+ parent: 1
+ - uid: 34574
+ components:
+ - type: Transform
+ pos: 159.5,75.5
+ parent: 1
+ - uid: 37472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,39.5
+ parent: 1
+ - uid: 37473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,40.5
+ parent: 1
+- proto: CarpetBlack
+ entities:
+ - uid: 19519
+ components:
+ - type: Transform
+ pos: 144.5,103.5
+ parent: 1
+ - uid: 19520
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 19521
+ components:
+ - type: Transform
+ pos: 144.5,105.5
+ parent: 1
+ - uid: 19522
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 19523
+ components:
+ - type: Transform
+ pos: 143.5,105.5
+ parent: 1
+ - uid: 19524
+ components:
+ - type: Transform
+ pos: 143.5,103.5
+ parent: 1
+- proto: CarpetBlue
+ entities:
+ - uid: 841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,74.5
+ parent: 1
+ - uid: 843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,75.5
+ parent: 1
+ - uid: 1094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,76.5
+ parent: 1
+ - uid: 6424
+ components:
+ - type: Transform
+ pos: 38.5,67.5
+ parent: 1
+ - uid: 6425
+ components:
+ - type: Transform
+ pos: 39.5,67.5
+ parent: 1
+ - uid: 7203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,51.5
+ parent: 1
+ - uid: 12461
+ components:
+ - type: Transform
+ pos: 102.5,68.5
+ parent: 1
+ - uid: 12462
+ components:
+ - type: Transform
+ pos: 103.5,68.5
+ parent: 1
+ - uid: 12463
+ components:
+ - type: Transform
+ pos: 102.5,67.5
+ parent: 1
+ - uid: 13608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,76.5
+ parent: 1
+ - uid: 13609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,75.5
+ parent: 1
+ - uid: 13610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,74.5
+ parent: 1
+ - uid: 14182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,50.5
+ parent: 1
+ - uid: 14184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,50.5
+ parent: 1
+ - uid: 14185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,51.5
+ parent: 1
+ - uid: 14186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,50.5
+ parent: 1
+ - uid: 14187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,51.5
+ parent: 1
+ - uid: 18216
+ components:
+ - type: Transform
+ pos: 88.5,91.5
+ parent: 1
+ - uid: 18217
+ components:
+ - type: Transform
+ pos: 88.5,92.5
+ parent: 1
+ - uid: 18218
+ components:
+ - type: Transform
+ pos: 88.5,93.5
+ parent: 1
+ - uid: 18219
+ components:
+ - type: Transform
+ pos: 87.5,91.5
+ parent: 1
+ - uid: 18220
+ components:
+ - type: Transform
+ pos: 87.5,92.5
+ parent: 1
+ - uid: 18221
+ components:
+ - type: Transform
+ pos: 87.5,93.5
+ parent: 1
+ - uid: 27078
+ components:
+ - type: Transform
+ pos: 103.5,67.5
+ parent: 1
+ - uid: 30311
+ components:
+ - type: Transform
+ pos: 135.5,151.5
+ parent: 1
+ - uid: 30312
+ components:
+ - type: Transform
+ pos: 135.5,152.5
+ parent: 1
+ - uid: 30313
+ components:
+ - type: Transform
+ pos: 134.5,151.5
+ parent: 1
+ - uid: 30314
+ components:
+ - type: Transform
+ pos: 134.5,152.5
+ parent: 1
+- proto: CarpetChapel
+ entities:
+ - uid: 26944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,73.5
+ parent: 1
+ - uid: 26946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,73.5
+ parent: 1
+ - uid: 26947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,75.5
+ parent: 1
+ - uid: 26948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,75.5
+ parent: 1
+ - uid: 26949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,76.5
+ parent: 1
+ - uid: 26950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,73.5
+ parent: 1
+ - uid: 26951
+ components:
+ - type: Transform
+ pos: 88.5,75.5
+ parent: 1
+ - uid: 26953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,73.5
+ parent: 1
+ - uid: 26954
+ components:
+ - type: Transform
+ pos: 85.5,72.5
+ parent: 1
+ - uid: 26955
+ components:
+ - type: Transform
+ pos: 85.5,75.5
+ parent: 1
+ - uid: 26956
+ components:
+ - type: Transform
+ pos: 88.5,72.5
+ parent: 1
+ - uid: 26959
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,76.5
+ parent: 1
+ - uid: 26960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,72.5
+ parent: 1
+ - uid: 26961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,76.5
+ parent: 1
+ - uid: 26962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,72.5
+ parent: 1
+ - uid: 26963
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,76.5
+ parent: 1
+ - uid: 26966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,75.5
+ parent: 1
+ - uid: 26967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,76.5
+ parent: 1
+ - uid: 26968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,73.5
+ parent: 1
+ - uid: 26969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,72.5
+ parent: 1
+ - uid: 26970
+ components:
+ - type: Transform
+ pos: 74.5,72.5
+ parent: 1
+ - uid: 26971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,73.5
+ parent: 1
+ - uid: 26972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,76.5
+ parent: 1
+ - uid: 26973
+ components:
+ - type: Transform
+ pos: 74.5,75.5
+ parent: 1
+- proto: CarpetCyan
+ entities:
+ - uid: 12467
+ components:
+ - type: Transform
+ pos: 107.5,69.5
+ parent: 1
+ - uid: 12468
+ components:
+ - type: Transform
+ pos: 105.5,69.5
+ parent: 1
+ - uid: 12469
+ components:
+ - type: Transform
+ pos: 106.5,69.5
+ parent: 1
+ - uid: 27083
+ components:
+ - type: Transform
+ pos: 105.5,68.5
+ parent: 1
+ - uid: 27085
+ components:
+ - type: Transform
+ pos: 106.5,68.5
+ parent: 1
+ - uid: 27087
+ components:
+ - type: Transform
+ pos: 107.5,68.5
+ parent: 1
+ - uid: 34575
+ components:
+ - type: Transform
+ pos: 160.5,70.5
+ parent: 1
+ - uid: 34576
+ components:
+ - type: Transform
+ pos: 160.5,69.5
+ parent: 1
+ - uid: 34577
+ components:
+ - type: Transform
+ pos: 159.5,70.5
+ parent: 1
+ - uid: 34578
+ components:
+ - type: Transform
+ pos: 159.5,69.5
+ parent: 1
+- proto: CarpetGreen
+ entities:
+ - uid: 1617
+ components:
+ - type: Transform
+ pos: 145.5,122.5
+ parent: 1
+ - uid: 1664
+ components:
+ - type: Transform
+ pos: 145.5,123.5
+ parent: 1
+ - uid: 1719
+ components:
+ - type: Transform
+ pos: 145.5,124.5
+ parent: 1
+ - uid: 7726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,58.5
+ parent: 1
+ - uid: 11356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,136.5
+ parent: 1
+ - uid: 11359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,136.5
+ parent: 1
+ - uid: 12464
+ components:
+ - type: Transform
+ pos: 109.5,68.5
+ parent: 1
+ - uid: 12465
+ components:
+ - type: Transform
+ pos: 110.5,67.5
+ parent: 1
+ - uid: 12466
+ components:
+ - type: Transform
+ pos: 110.5,68.5
+ parent: 1
+ - uid: 15325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,137.5
+ parent: 1
+ - uid: 16020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,137.5
+ parent: 1
+ - uid: 16021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,135.5
+ parent: 1
+ - uid: 18155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,124.5
+ parent: 1
+ - uid: 20139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,122.5
+ parent: 1
+ - uid: 27088
+ components:
+ - type: Transform
+ pos: 109.5,67.5
+ parent: 1
+ - uid: 27123
+ components:
+ - type: Transform
+ pos: 78.5,56.5
+ parent: 1
+ - uid: 27231
+ components:
+ - type: Transform
+ pos: 78.5,57.5
+ parent: 1
+ - uid: 27232
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 1
+ - uid: 27233
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 1
+ - uid: 27234
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - uid: 27235
+ components:
+ - type: Transform
+ pos: 77.5,56.5
+ parent: 1
+ - uid: 27236
+ components:
+ - type: Transform
+ pos: 77.5,57.5
+ parent: 1
+ - uid: 27238
+ components:
+ - type: Transform
+ pos: 77.5,59.5
+ parent: 1
+ - uid: 27239
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 1
+ - uid: 27240
+ components:
+ - type: Transform
+ pos: 76.5,57.5
+ parent: 1
+ - uid: 27241
+ components:
+ - type: Transform
+ pos: 76.5,58.5
+ parent: 1
+ - uid: 27242
+ components:
+ - type: Transform
+ pos: 76.5,59.5
+ parent: 1
+ - uid: 27243
+ components:
+ - type: Transform
+ pos: 76.5,56.5
+ parent: 1
+ - uid: 27244
+ components:
+ - type: Transform
+ pos: 76.5,60.5
+ parent: 1
+ - uid: 27245
+ components:
+ - type: Transform
+ pos: 75.5,59.5
+ parent: 1
+ - uid: 27246
+ components:
+ - type: Transform
+ pos: 75.5,58.5
+ parent: 1
+ - uid: 27247
+ components:
+ - type: Transform
+ pos: 75.5,57.5
+ parent: 1
+ - uid: 27248
+ components:
+ - type: Transform
+ pos: 79.5,57.5
+ parent: 1
+ - uid: 27249
+ components:
+ - type: Transform
+ pos: 79.5,58.5
+ parent: 1
+ - uid: 27250
+ components:
+ - type: Transform
+ pos: 79.5,59.5
+ parent: 1
+ - uid: 27310
+ components:
+ - type: Transform
+ pos: 78.5,49.5
+ parent: 1
+ - uid: 27311
+ components:
+ - type: Transform
+ pos: 78.5,48.5
+ parent: 1
+ - uid: 27312
+ components:
+ - type: Transform
+ pos: 79.5,49.5
+ parent: 1
+ - uid: 27313
+ components:
+ - type: Transform
+ pos: 79.5,48.5
+ parent: 1
+ - uid: 27314
+ components:
+ - type: Transform
+ pos: 77.5,48.5
+ parent: 1
+ - uid: 27315
+ components:
+ - type: Transform
+ pos: 77.5,49.5
+ parent: 1
+ - uid: 29770
+ components:
+ - type: Transform
+ pos: 159.5,142.5
+ parent: 1
+ - uid: 29771
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+ - uid: 29772
+ components:
+ - type: Transform
+ pos: 158.5,142.5
+ parent: 1
+ - uid: 29773
+ components:
+ - type: Transform
+ pos: 158.5,143.5
+ parent: 1
+ - uid: 29815
+ components:
+ - type: Transform
+ pos: 144.5,122.5
+ parent: 1
+ - uid: 29816
+ components:
+ - type: Transform
+ pos: 144.5,123.5
+ parent: 1
+ - uid: 29817
+ components:
+ - type: Transform
+ pos: 144.5,124.5
+ parent: 1
+ - uid: 35758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,123.5
+ parent: 1
+ - uid: 35759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,121.5
+ parent: 1
+ - uid: 35760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,121.5
+ parent: 1
+ - uid: 35761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,122.5
+ parent: 1
+ - uid: 35762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,124.5
+ parent: 1
+ - uid: 35763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,123.5
+ parent: 1
+ - uid: 37173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,135.5
+ parent: 1
+- proto: CarpetOrange
+ entities:
+ - uid: 7580
+ components:
+ - type: Transform
+ pos: 72.5,58.5
+ parent: 1
+ - uid: 7618
+ components:
+ - type: Transform
+ pos: 72.5,57.5
+ parent: 1
+ - uid: 8005
+ components:
+ - type: Transform
+ pos: 71.5,59.5
+ parent: 1
+ - uid: 8006
+ components:
+ - type: Transform
+ pos: 70.5,57.5
+ parent: 1
+ - uid: 8007
+ components:
+ - type: Transform
+ pos: 70.5,58.5
+ parent: 1
+ - uid: 11354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 169.5,134.5
+ parent: 1
+ - uid: 13574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 169.5,133.5
+ parent: 1
+ - uid: 18585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,143.5
+ parent: 1
+ - uid: 18586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,144.5
+ parent: 1
+ - uid: 18587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,145.5
+ parent: 1
+ - uid: 18588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,143.5
+ parent: 1
+ - uid: 18589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,144.5
+ parent: 1
+ - uid: 18590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,145.5
+ parent: 1
+ - uid: 19338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 168.5,133.5
+ parent: 1
+ - uid: 23614
+ components:
+ - type: Transform
+ pos: 71.5,58.5
+ parent: 1
+ - uid: 23615
+ components:
+ - type: Transform
+ pos: 70.5,59.5
+ parent: 1
+ - uid: 27098
+ components:
+ - type: Transform
+ pos: 73.5,57.5
+ parent: 1
+ - uid: 27103
+ components:
+ - type: Transform
+ pos: 73.5,58.5
+ parent: 1
+ - uid: 27179
+ components:
+ - type: Transform
+ pos: 73.5,59.5
+ parent: 1
+ - uid: 27188
+ components:
+ - type: Transform
+ pos: 72.5,59.5
+ parent: 1
+ - uid: 29774
+ components:
+ - type: Transform
+ pos: 155.5,142.5
+ parent: 1
+ - uid: 29775
+ components:
+ - type: Transform
+ pos: 155.5,143.5
+ parent: 1
+ - uid: 29776
+ components:
+ - type: Transform
+ pos: 156.5,142.5
+ parent: 1
+ - uid: 29777
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 30425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 168.5,134.5
+ parent: 1
+ - uid: 35215
+ components:
+ - type: Transform
+ pos: 71.5,57.5
+ parent: 1
+ - uid: 37480
+ components:
+ - type: Transform
+ pos: 88.5,54.5
+ parent: 1
+ - uid: 37481
+ components:
+ - type: Transform
+ pos: 88.5,55.5
+ parent: 1
+ - uid: 37482
+ components:
+ - type: Transform
+ pos: 87.5,54.5
+ parent: 1
+ - uid: 37483
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+ - uid: 37484
+ components:
+ - type: Transform
+ pos: 86.5,54.5
+ parent: 1
+ - uid: 37485
+ components:
+ - type: Transform
+ pos: 86.5,55.5
+ parent: 1
+- proto: CarpetPink
+ entities:
+ - uid: 2352
+ components:
+ - type: Transform
+ pos: 64.5,53.5
+ parent: 1
+ - uid: 2494
+ components:
+ - type: Transform
+ pos: 63.5,51.5
+ parent: 1
+ - uid: 9670
+ components:
+ - type: Transform
+ pos: 63.5,53.5
+ parent: 1
+ - uid: 9841
+ components:
+ - type: Transform
+ pos: 64.5,52.5
+ parent: 1
+ - uid: 9843
+ components:
+ - type: Transform
+ pos: 64.5,51.5
+ parent: 1
+ - uid: 16612
+ components:
+ - type: Transform
+ pos: 63.5,52.5
+ parent: 1
+ - uid: 29778
+ components:
+ - type: Transform
+ pos: 156.5,134.5
+ parent: 1
+ - uid: 29779
+ components:
+ - type: Transform
+ pos: 156.5,133.5
+ parent: 1
+ - uid: 29780
+ components:
+ - type: Transform
+ pos: 155.5,134.5
+ parent: 1
+ - uid: 29781
+ components:
+ - type: Transform
+ pos: 155.5,133.5
+ parent: 1
+ - uid: 37174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,133.5
+ parent: 1
+ - uid: 37175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,132.5
+ parent: 1
+- proto: CarpetPurple
+ entities:
+ - uid: 753
+ components:
+ - type: Transform
+ pos: 56.5,133.5
+ parent: 1
+ - uid: 1537
+ components:
+ - type: Transform
+ pos: 56.5,132.5
+ parent: 1
+ - uid: 7582
+ components:
+ - type: Transform
+ pos: 72.5,54.5
+ parent: 1
+ - uid: 7601
+ components:
+ - type: Transform
+ pos: 73.5,53.5
+ parent: 1
+ - uid: 7650
+ components:
+ - type: Transform
+ pos: 73.5,54.5
+ parent: 1
+ - uid: 7872
+ components:
+ - type: Transform
+ pos: 73.5,55.5
+ parent: 1
+ - uid: 7995
+ components:
+ - type: Transform
+ pos: 72.5,53.5
+ parent: 1
+ - uid: 20984
+ components:
+ - type: Transform
+ pos: 39.5,105.5
+ parent: 1
+ - uid: 20985
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+ - uid: 20986
+ components:
+ - type: Transform
+ pos: 39.5,107.5
+ parent: 1
+ - uid: 20988
+ components:
+ - type: Transform
+ pos: 38.5,105.5
+ parent: 1
+ - uid: 20989
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 1
+ - uid: 20990
+ components:
+ - type: Transform
+ pos: 38.5,107.5
+ parent: 1
+ - uid: 23616
+ components:
+ - type: Transform
+ pos: 71.5,55.5
+ parent: 1
+ - uid: 27189
+ components:
+ - type: Transform
+ pos: 72.5,55.5
+ parent: 1
+ - uid: 27589
+ components:
+ - type: Transform
+ pos: 70.5,55.5
+ parent: 1
+ - uid: 27596
+ components:
+ - type: Transform
+ pos: 70.5,54.5
+ parent: 1
+ - uid: 29710
+ components:
+ - type: Transform
+ pos: 70.5,53.5
+ parent: 1
+ - uid: 29782
+ components:
+ - type: Transform
+ pos: 152.5,142.5
+ parent: 1
+ - uid: 29783
+ components:
+ - type: Transform
+ pos: 152.5,143.5
+ parent: 1
+ - uid: 29784
+ components:
+ - type: Transform
+ pos: 153.5,142.5
+ parent: 1
+ - uid: 29785
+ components:
+ - type: Transform
+ pos: 153.5,143.5
+ parent: 1
+ - uid: 34170
+ components:
+ - type: Transform
+ pos: 71.5,54.5
+ parent: 1
+ - uid: 34183
+ components:
+ - type: Transform
+ pos: 71.5,53.5
+ parent: 1
+ - uid: 36194
+ components:
+ - type: Transform
+ pos: 56.5,134.5
+ parent: 1
+ - uid: 36195
+ components:
+ - type: Transform
+ pos: 57.5,132.5
+ parent: 1
+ - uid: 36196
+ components:
+ - type: Transform
+ pos: 57.5,133.5
+ parent: 1
+ - uid: 36197
+ components:
+ - type: Transform
+ pos: 57.5,134.5
+ parent: 1
+ - uid: 36198
+ components:
+ - type: Transform
+ pos: 58.5,132.5
+ parent: 1
+ - uid: 36212
+ components:
+ - type: Transform
+ pos: 58.5,133.5
+ parent: 1
+ - uid: 36267
+ components:
+ - type: Transform
+ pos: 58.5,134.5
+ parent: 1
+ - uid: 36268
+ components:
+ - type: Transform
+ pos: 59.5,132.5
+ parent: 1
+ - uid: 36269
+ components:
+ - type: Transform
+ pos: 59.5,133.5
+ parent: 1
+ - uid: 36274
+ components:
+ - type: Transform
+ pos: 59.5,134.5
+ parent: 1
+- proto: CarpetSBlue
+ entities:
+ - uid: 29790
+ components:
+ - type: Transform
+ pos: 153.5,134.5
+ parent: 1
+ - uid: 29791
+ components:
+ - type: Transform
+ pos: 153.5,133.5
+ parent: 1
+ - uid: 29792
+ components:
+ - type: Transform
+ pos: 152.5,134.5
+ parent: 1
+ - uid: 29793
+ components:
+ - type: Transform
+ pos: 152.5,133.5
+ parent: 1
+- proto: CarpetWhite
+ entities:
+ - uid: 29786
+ components:
+ - type: Transform
+ pos: 159.5,134.5
+ parent: 1
+ - uid: 29787
+ components:
+ - type: Transform
+ pos: 159.5,133.5
+ parent: 1
+ - uid: 29788
+ components:
+ - type: Transform
+ pos: 158.5,134.5
+ parent: 1
+ - uid: 29789
+ components:
+ - type: Transform
+ pos: 158.5,133.5
+ parent: 1
+- proto: CartridgeCap
+ entities:
+ - uid: 35849
+ components:
+ - type: Transform
+ pos: 124.41897,170.6082
+ parent: 1
+- proto: Catwalk
+ entities:
+ - uid: 22
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,141.5
+ parent: 1
+ - uid: 23
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,141.5
+ parent: 1
+ - uid: 43
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,126.5
+ parent: 1
+ - uid: 45
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,129.5
+ parent: 1
+ - uid: 46
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,127.5
+ parent: 1
+ - uid: 80
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,111.5
+ parent: 1
+ - uid: 81
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,111.5
+ parent: 1
+ - uid: 85
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,128.5
+ parent: 1
+ - uid: 88
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,130.5
+ parent: 1
+ - uid: 132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,110.5
+ parent: 1
+ - uid: 142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,112.5
+ parent: 1
+ - uid: 178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,158.5
+ parent: 1
+ - uid: 198
+ components:
+ - type: Transform
+ pos: 162.5,122.5
+ parent: 1
+ - uid: 200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,165.5
+ parent: 1
+ - uid: 209
+ components:
+ - type: Transform
+ pos: 79.5,13.5
+ parent: 1
+ - uid: 226
+ components:
+ - type: Transform
+ pos: 76.5,13.5
+ parent: 1
+ - uid: 275
+ components:
+ - type: Transform
+ pos: 172.5,73.5
+ parent: 1
+ - uid: 880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,126.5
+ parent: 1
+ - uid: 1000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,127.5
+ parent: 1
+ - uid: 1230
+ components:
+ - type: Transform
+ pos: 123.5,162.5
+ parent: 1
+ - uid: 1280
+ components:
+ - type: Transform
+ pos: 173.5,73.5
+ parent: 1
+ - uid: 1421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,35.5
+ parent: 1
+ - uid: 1472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,156.5
+ parent: 1
+ - uid: 1484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,92.5
+ parent: 1
+ - uid: 1540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,31.5
+ parent: 1
+ - uid: 1556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,31.5
+ parent: 1
+ - uid: 1557
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,31.5
+ parent: 1
+ - uid: 1562
+ components:
+ - type: Transform
+ pos: 169.5,73.5
+ parent: 1
+ - uid: 1650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,40.5
+ parent: 1
+ - uid: 1675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,156.5
+ parent: 1
+ - uid: 1754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,156.5
+ parent: 1
+ - uid: 1822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,165.5
+ parent: 1
+ - uid: 1866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,73.5
+ parent: 1
+ - uid: 1898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,45.5
+ parent: 1
+ - uid: 1956
+ components:
+ - type: Transform
+ pos: 171.5,73.5
+ parent: 1
+ - uid: 2087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,110.5
+ parent: 1
+ - uid: 2347
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - uid: 2360
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - uid: 2495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,49.5
+ parent: 1
+ - uid: 2544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,42.5
+ parent: 1
+ - uid: 2606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,46.5
+ parent: 1
+ - uid: 2630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,72.5
+ parent: 1
+ - uid: 2755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,89.5
+ parent: 1
+ - uid: 2886
+ components:
+ - type: Transform
+ pos: 96.5,110.5
+ parent: 1
+ - uid: 3189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,156.5
+ parent: 1
+ - uid: 3192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,156.5
+ parent: 1
+ - uid: 3237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,158.5
+ parent: 1
+ - uid: 3259
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - uid: 3266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,106.5
+ parent: 1
+ - uid: 3316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,139.5
+ parent: 1
+ - uid: 3338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,138.5
+ parent: 1
+ - uid: 3717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,124.5
+ parent: 1
+ - uid: 3762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,62.5
+ parent: 1
+ - uid: 3763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 184.5,62.5
+ parent: 1
+ - uid: 3791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,91.5
+ parent: 1
+ - uid: 3854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,85.5
+ parent: 1
+ - uid: 3861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,85.5
+ parent: 1
+ - uid: 3873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,93.5
+ parent: 1
+ - uid: 3929
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,94.5
+ parent: 1
+ - uid: 3935
+ components:
+ - type: Transform
+ pos: 179.5,73.5
+ parent: 1
+ - uid: 3948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,92.5
+ parent: 1
+ - uid: 3950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,92.5
+ parent: 1
+ - uid: 4040
+ components:
+ - type: Transform
+ pos: 96.5,70.5
+ parent: 1
+ - uid: 4126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,63.5
+ parent: 1
+ - uid: 4129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,62.5
+ parent: 1
+ - uid: 4130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 185.5,62.5
+ parent: 1
+ - uid: 4178
+ components:
+ - type: Transform
+ pos: 170.5,73.5
+ parent: 1
+ - uid: 4200
+ components:
+ - type: Transform
+ pos: 64.5,46.5
+ parent: 1
+ - uid: 4201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,31.5
+ parent: 1
+ - uid: 4217
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,70.5
+ parent: 1
+ - uid: 4254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,68.5
+ parent: 1
+ - uid: 4265
+ components:
+ - type: Transform
+ pos: 178.5,73.5
+ parent: 1
+ - uid: 4309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,68.5
+ parent: 1
+ - uid: 4385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,164.5
+ parent: 1
+ - uid: 4469
+ components:
+ - type: Transform
+ pos: 64.5,48.5
+ parent: 1
+ - uid: 4538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,42.5
+ parent: 1
+ - uid: 4541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,42.5
+ parent: 1
+ - uid: 4628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,67.5
+ parent: 1
+ - uid: 4678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,67.5
+ parent: 1
+ - uid: 4700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,88.5
+ parent: 1
+ - uid: 4703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,93.5
+ parent: 1
+ - uid: 4720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,45.5
+ parent: 1
+ - uid: 4722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,92.5
+ parent: 1
+ - uid: 4723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,89.5
+ parent: 1
+ - uid: 4942
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - uid: 5004
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 1
+ - uid: 5033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,48.5
+ parent: 1
+ - uid: 5077
+ components:
+ - type: Transform
+ pos: 168.5,76.5
+ parent: 1
+ - uid: 5078
+ components:
+ - type: Transform
+ pos: 168.5,75.5
+ parent: 1
+ - uid: 5108
+ components:
+ - type: Transform
+ pos: 168.5,73.5
+ parent: 1
+ - uid: 5109
+ components:
+ - type: Transform
+ pos: 175.5,73.5
+ parent: 1
+ - uid: 5120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,174.5
+ parent: 1
+ - uid: 5155
+ components:
+ - type: Transform
+ pos: 176.5,73.5
+ parent: 1
+ - uid: 5156
+ components:
+ - type: Transform
+ pos: 177.5,73.5
+ parent: 1
+ - uid: 5157
+ components:
+ - type: Transform
+ pos: 174.5,73.5
+ parent: 1
+ - uid: 5319
+ components:
+ - type: Transform
+ pos: 162.5,123.5
+ parent: 1
+ - uid: 5420
+ components:
+ - type: Transform
+ pos: 124.5,160.5
+ parent: 1
+ - uid: 5426
+ components:
+ - type: Transform
+ pos: 123.5,160.5
+ parent: 1
+ - uid: 5430
+ components:
+ - type: Transform
+ pos: 122.5,160.5
+ parent: 1
+ - uid: 5480
+ components:
+ - type: Transform
+ pos: 67.5,156.5
+ parent: 1
+ - uid: 5550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,60.5
+ parent: 1
+ - uid: 5551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,59.5
+ parent: 1
+ - uid: 5554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,61.5
+ parent: 1
+ - uid: 5590
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - uid: 5654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,89.5
+ parent: 1
+ - uid: 5760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,37.5
+ parent: 1
+ - uid: 5798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,40.5
+ parent: 1
+ - uid: 5808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,39.5
+ parent: 1
+ - uid: 6024
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - uid: 6039
+ components:
+ - type: Transform
+ pos: 86.5,40.5
+ parent: 1
+ - uid: 6068
+ components:
+ - type: Transform
+ pos: 88.5,39.5
+ parent: 1
+ - uid: 6069
+ components:
+ - type: Transform
+ pos: 88.5,34.5
+ parent: 1
+ - uid: 6073
+ components:
+ - type: Transform
+ pos: 88.5,32.5
+ parent: 1
+ - uid: 6248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,82.5
+ parent: 1
+ - uid: 6328
+ components:
+ - type: Transform
+ pos: 146.5,77.5
+ parent: 1
+ - uid: 6551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,82.5
+ parent: 1
+ - uid: 6554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,82.5
+ parent: 1
+ - uid: 6560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,83.5
+ parent: 1
+ - uid: 6565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,82.5
+ parent: 1
+ - uid: 6638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,156.5
+ parent: 1
+ - uid: 6778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,115.5
+ parent: 1
+ - uid: 6781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,116.5
+ parent: 1
+ - uid: 7113
+ components:
+ - type: Transform
+ pos: 20.5,100.5
+ parent: 1
+ - uid: 7291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,79.5
+ parent: 1
+ - uid: 8049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,62.5
+ parent: 1
+ - uid: 8088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,125.5
+ parent: 1
+ - uid: 8104
+ components:
+ - type: Transform
+ pos: 115.5,68.5
+ parent: 1
+ - uid: 8382
+ components:
+ - type: Transform
+ pos: 116.5,68.5
+ parent: 1
+ - uid: 8411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,79.5
+ parent: 1
+ - uid: 8544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,79.5
+ parent: 1
+ - uid: 8559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,73.5
+ parent: 1
+ - uid: 9404
+ components:
+ - type: Transform
+ pos: 18.5,100.5
+ parent: 1
+ - uid: 9667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,49.5
+ parent: 1
+ - uid: 9668
+ components:
+ - type: Transform
+ pos: 64.5,49.5
+ parent: 1
+ - uid: 9674
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - uid: 9681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,72.5
+ parent: 1
+ - uid: 9709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,37.5
+ parent: 1
+ - uid: 9731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,71.5
+ parent: 1
+ - uid: 9743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,69.5
+ parent: 1
+ - uid: 9744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,70.5
+ parent: 1
+ - uid: 9747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,65.5
+ parent: 1
+ - uid: 9752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,68.5
+ parent: 1
+ - uid: 9795
+ components:
+ - type: Transform
+ pos: 168.5,79.5
+ parent: 1
+ - uid: 9796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,64.5
+ parent: 1
+ - uid: 9800
+ components:
+ - type: Transform
+ pos: 167.5,79.5
+ parent: 1
+ - uid: 9805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,67.5
+ parent: 1
+ - uid: 9807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,66.5
+ parent: 1
+ - uid: 9819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 181.5,73.5
+ parent: 1
+ - uid: 9998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,80.5
+ parent: 1
+ - uid: 10262
+ components:
+ - type: Transform
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 10315
+ components:
+ - type: Transform
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 10319
+ components:
+ - type: Transform
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 10324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,144.5
+ parent: 1
+ - uid: 10328
+ components:
+ - type: Transform
+ pos: 147.5,75.5
+ parent: 1
+ - uid: 10391
+ components:
+ - type: Transform
+ pos: 64.5,156.5
+ parent: 1
+ - uid: 10464
+ components:
+ - type: Transform
+ pos: 121.5,160.5
+ parent: 1
+ - uid: 10494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,114.5
+ parent: 1
+ - uid: 10716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,46.5
+ parent: 1
+ - uid: 10729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,38.5
+ parent: 1
+ - uid: 10731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,36.5
+ parent: 1
+ - uid: 10904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,35.5
+ parent: 1
+ - uid: 11098
+ components:
+ - type: Transform
+ pos: 110.5,33.5
+ parent: 1
+ - uid: 11099
+ components:
+ - type: Transform
+ pos: 108.5,35.5
+ parent: 1
+ - uid: 11100
+ components:
+ - type: Transform
+ pos: 107.5,35.5
+ parent: 1
+ - uid: 11104
+ components:
+ - type: Transform
+ pos: 93.5,36.5
+ parent: 1
+ - uid: 11106
+ components:
+ - type: Transform
+ pos: 90.5,35.5
+ parent: 1
+ - uid: 11174
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 11344
+ components:
+ - type: Transform
+ pos: 154.5,131.5
+ parent: 1
+ - uid: 11914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,173.5
+ parent: 1
+ - uid: 11967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,155.5
+ parent: 1
+ - uid: 11968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,156.5
+ parent: 1
+ - uid: 11969
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,156.5
+ parent: 1
+ - uid: 11986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,155.5
+ parent: 1
+ - uid: 11987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,155.5
+ parent: 1
+ - uid: 11988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,155.5
+ parent: 1
+ - uid: 12016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,81.5
+ parent: 1
+ - uid: 12018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,80.5
+ parent: 1
+ - uid: 12065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,136.5
+ parent: 1
+ - uid: 12425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,63.5
+ parent: 1
+ - uid: 12426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,64.5
+ parent: 1
+ - uid: 12427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,65.5
+ parent: 1
+ - uid: 12428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,66.5
+ parent: 1
+ - uid: 12429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,67.5
+ parent: 1
+ - uid: 12433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,68.5
+ parent: 1
+ - uid: 12434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,69.5
+ parent: 1
+ - uid: 12435
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - uid: 12436
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - uid: 12438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,89.5
+ parent: 1
+ - uid: 12510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,88.5
+ parent: 1
+ - uid: 12514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,87.5
+ parent: 1
+ - uid: 12515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,89.5
+ parent: 1
+ - uid: 13274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,56.5
+ parent: 1
+ - uid: 13313
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,96.5
+ parent: 1
+ - uid: 13472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,56.5
+ parent: 1
+ - uid: 13496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,91.5
+ parent: 1
+ - uid: 13627
+ components:
+ - type: Transform
+ pos: 88.5,33.5
+ parent: 1
+ - uid: 13632
+ components:
+ - type: Transform
+ pos: 134.5,86.5
+ parent: 1
+ - uid: 13658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,56.5
+ parent: 1
+ - uid: 13703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,138.5
+ parent: 1
+ - uid: 14118
+ components:
+ - type: Transform
+ pos: 114.5,131.5
+ parent: 1
+ - uid: 14119
+ components:
+ - type: Transform
+ pos: 113.5,131.5
+ parent: 1
+ - uid: 14120
+ components:
+ - type: Transform
+ pos: 112.5,131.5
+ parent: 1
+ - uid: 14121
+ components:
+ - type: Transform
+ pos: 111.5,131.5
+ parent: 1
+ - uid: 14122
+ components:
+ - type: Transform
+ pos: 110.5,131.5
+ parent: 1
+ - uid: 14126
+ components:
+ - type: Transform
+ pos: 106.5,131.5
+ parent: 1
+ - uid: 14127
+ components:
+ - type: Transform
+ pos: 105.5,131.5
+ parent: 1
+ - uid: 14128
+ components:
+ - type: Transform
+ pos: 104.5,131.5
+ parent: 1
+ - uid: 14129
+ components:
+ - type: Transform
+ pos: 102.5,131.5
+ parent: 1
+ - uid: 14130
+ components:
+ - type: Transform
+ pos: 103.5,131.5
+ parent: 1
+ - uid: 14131
+ components:
+ - type: Transform
+ pos: 102.5,132.5
+ parent: 1
+ - uid: 14132
+ components:
+ - type: Transform
+ pos: 102.5,134.5
+ parent: 1
+ - uid: 14133
+ components:
+ - type: Transform
+ pos: 102.5,135.5
+ parent: 1
+ - uid: 14134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,160.5
+ parent: 1
+ - uid: 14135
+ components:
+ - type: Transform
+ pos: 102.5,133.5
+ parent: 1
+ - uid: 14136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,160.5
+ parent: 1
+ - uid: 14137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,160.5
+ parent: 1
+ - uid: 14138
+ components:
+ - type: Transform
+ pos: 102.5,139.5
+ parent: 1
+ - uid: 14139
+ components:
+ - type: Transform
+ pos: 102.5,140.5
+ parent: 1
+ - uid: 14140
+ components:
+ - type: Transform
+ pos: 102.5,141.5
+ parent: 1
+ - uid: 14141
+ components:
+ - type: Transform
+ pos: 102.5,142.5
+ parent: 1
+ - uid: 14142
+ components:
+ - type: Transform
+ pos: 102.5,143.5
+ parent: 1
+ - uid: 14143
+ components:
+ - type: Transform
+ pos: 103.5,143.5
+ parent: 1
+ - uid: 14144
+ components:
+ - type: Transform
+ pos: 104.5,143.5
+ parent: 1
+ - uid: 14145
+ components:
+ - type: Transform
+ pos: 105.5,143.5
+ parent: 1
+ - uid: 14146
+ components:
+ - type: Transform
+ pos: 106.5,143.5
+ parent: 1
+ - uid: 14150
+ components:
+ - type: Transform
+ pos: 110.5,143.5
+ parent: 1
+ - uid: 14151
+ components:
+ - type: Transform
+ pos: 111.5,143.5
+ parent: 1
+ - uid: 14152
+ components:
+ - type: Transform
+ pos: 112.5,143.5
+ parent: 1
+ - uid: 14153
+ components:
+ - type: Transform
+ pos: 114.5,143.5
+ parent: 1
+ - uid: 14154
+ components:
+ - type: Transform
+ pos: 113.5,143.5
+ parent: 1
+ - uid: 14155
+ components:
+ - type: Transform
+ pos: 114.5,142.5
+ parent: 1
+ - uid: 14156
+ components:
+ - type: Transform
+ pos: 114.5,141.5
+ parent: 1
+ - uid: 14157
+ components:
+ - type: Transform
+ pos: 114.5,140.5
+ parent: 1
+ - uid: 14158
+ components:
+ - type: Transform
+ pos: 114.5,139.5
+ parent: 1
+ - uid: 14161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,160.5
+ parent: 1
+ - uid: 14162
+ components:
+ - type: Transform
+ pos: 114.5,135.5
+ parent: 1
+ - uid: 14163
+ components:
+ - type: Transform
+ pos: 114.5,133.5
+ parent: 1
+ - uid: 14164
+ components:
+ - type: Transform
+ pos: 114.5,132.5
+ parent: 1
+ - uid: 14165
+ components:
+ - type: Transform
+ pos: 114.5,134.5
+ parent: 1
+ - uid: 14649
+ components:
+ - type: Transform
+ pos: 66.5,156.5
+ parent: 1
+ - uid: 14650
+ components:
+ - type: Transform
+ pos: 63.5,157.5
+ parent: 1
+ - uid: 14688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,79.5
+ parent: 1
+ - uid: 14745
+ components:
+ - type: Transform
+ pos: 88.5,36.5
+ parent: 1
+ - uid: 14746
+ components:
+ - type: Transform
+ pos: 88.5,37.5
+ parent: 1
+ - uid: 14747
+ components:
+ - type: Transform
+ pos: 87.5,40.5
+ parent: 1
+ - uid: 14776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,45.5
+ parent: 1
+ - uid: 14817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,85.5
+ parent: 1
+ - uid: 14819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,85.5
+ parent: 1
+ - uid: 14982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,160.5
+ parent: 1
+ - uid: 14986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,160.5
+ parent: 1
+ - uid: 15083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,155.5
+ parent: 1
+ - uid: 15087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,155.5
+ parent: 1
+ - uid: 15091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,156.5
+ parent: 1
+ - uid: 15302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,79.5
+ parent: 1
+ - uid: 15307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,82.5
+ parent: 1
+ - uid: 15322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,54.5
+ parent: 1
+ - uid: 15329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 15462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,141.5
+ parent: 1
+ - uid: 16225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,114.5
+ parent: 1
+ - uid: 16226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,114.5
+ parent: 1
+ - uid: 16228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,114.5
+ parent: 1
+ - uid: 16229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,114.5
+ parent: 1
+ - uid: 16256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,115.5
+ parent: 1
+ - uid: 16281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,148.5
+ parent: 1
+ - uid: 16282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,149.5
+ parent: 1
+ - uid: 16283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,150.5
+ parent: 1
+ - uid: 16284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,151.5
+ parent: 1
+ - uid: 16285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,152.5
+ parent: 1
+ - uid: 16286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,153.5
+ parent: 1
+ - uid: 16287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,154.5
+ parent: 1
+ - uid: 16288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,155.5
+ parent: 1
+ - uid: 16289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,156.5
+ parent: 1
+ - uid: 16292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,156.5
+ parent: 1
+ - uid: 16293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,156.5
+ parent: 1
+ - uid: 16825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,140.5
+ parent: 1
+ - uid: 16826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,174.5
+ parent: 1
+ - uid: 16828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,141.5
+ parent: 1
+ - uid: 16838
+ components:
+ - type: Transform
+ pos: 121.5,164.5
+ parent: 1
+ - uid: 16913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,165.5
+ parent: 1
+ - uid: 16914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,165.5
+ parent: 1
+ - uid: 16915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,165.5
+ parent: 1
+ - uid: 16917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,165.5
+ parent: 1
+ - uid: 16930
+ components:
+ - type: Transform
+ pos: 95.5,165.5
+ parent: 1
+ - uid: 17035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,156.5
+ parent: 1
+ - uid: 17036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,156.5
+ parent: 1
+ - uid: 17299
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - uid: 17300
+ components:
+ - type: Transform
+ pos: 58.5,138.5
+ parent: 1
+ - uid: 17304
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - uid: 18199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,135.5
+ parent: 1
+ - uid: 18231
+ components:
+ - type: Transform
+ pos: 168.5,129.5
+ parent: 1
+ - uid: 18263
+ components:
+ - type: Transform
+ pos: 89.5,35.5
+ parent: 1
+ - uid: 18264
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 18265
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 18266
+ components:
+ - type: Transform
+ pos: 96.5,36.5
+ parent: 1
+ - uid: 18269
+ components:
+ - type: Transform
+ pos: 106.5,35.5
+ parent: 1
+ - uid: 18270
+ components:
+ - type: Transform
+ pos: 110.5,35.5
+ parent: 1
+ - uid: 18310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,26.5
+ parent: 1
+ - uid: 18350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,51.5
+ parent: 1
+ - uid: 18351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,50.5
+ parent: 1
+ - uid: 18357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,86.5
+ parent: 1
+ - uid: 18402
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,79.5
+ parent: 1
+ - uid: 18460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,52.5
+ parent: 1
+ - uid: 18474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,53.5
+ parent: 1
+ - uid: 18523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,90.5
+ parent: 1
+ - uid: 18530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,90.5
+ parent: 1
+ - uid: 18584
+ components:
+ - type: Transform
+ pos: 53.5,126.5
+ parent: 1
+ - uid: 18708
+ components:
+ - type: Transform
+ pos: 19.5,100.5
+ parent: 1
+ - uid: 18710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,96.5
+ parent: 1
+ - uid: 18736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,80.5
+ parent: 1
+ - uid: 18737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,79.5
+ parent: 1
+ - uid: 18745
+ components:
+ - type: Transform
+ pos: 150.5,114.5
+ parent: 1
+ - uid: 18889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,47.5
+ parent: 1
+ - uid: 18893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,49.5
+ parent: 1
+ - uid: 19051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,79.5
+ parent: 1
+ - uid: 19161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,45.5
+ parent: 1
+ - uid: 19215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,85.5
+ parent: 1
+ - uid: 19223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,172.5
+ parent: 1
+ - uid: 19236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,55.5
+ parent: 1
+ - uid: 19265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,96.5
+ parent: 1
+ - uid: 19266
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 19325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,57.5
+ parent: 1
+ - uid: 19402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,80.5
+ parent: 1
+ - uid: 19408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,80.5
+ parent: 1
+ - uid: 19443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,49.5
+ parent: 1
+ - uid: 19445
+ components:
+ - type: Transform
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 19448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,81.5
+ parent: 1
+ - uid: 19452
+ components:
+ - type: Transform
+ pos: 150.5,113.5
+ parent: 1
+ - uid: 19568
+ components:
+ - type: Transform
+ pos: 163.5,90.5
+ parent: 1
+ - uid: 19569
+ components:
+ - type: Transform
+ pos: 163.5,91.5
+ parent: 1
+ - uid: 19570
+ components:
+ - type: Transform
+ pos: 162.5,90.5
+ parent: 1
+ - uid: 19571
+ components:
+ - type: Transform
+ pos: 162.5,91.5
+ parent: 1
+ - uid: 19572
+ components:
+ - type: Transform
+ pos: 161.5,90.5
+ parent: 1
+ - uid: 19573
+ components:
+ - type: Transform
+ pos: 161.5,91.5
+ parent: 1
+ - uid: 19574
+ components:
+ - type: Transform
+ pos: 160.5,90.5
+ parent: 1
+ - uid: 19575
+ components:
+ - type: Transform
+ pos: 160.5,91.5
+ parent: 1
+ - uid: 19576
+ components:
+ - type: Transform
+ pos: 159.5,90.5
+ parent: 1
+ - uid: 19577
+ components:
+ - type: Transform
+ pos: 159.5,91.5
+ parent: 1
+ - uid: 19578
+ components:
+ - type: Transform
+ pos: 158.5,90.5
+ parent: 1
+ - uid: 19579
+ components:
+ - type: Transform
+ pos: 158.5,91.5
+ parent: 1
+ - uid: 19580
+ components:
+ - type: Transform
+ pos: 162.5,89.5
+ parent: 1
+ - uid: 19581
+ components:
+ - type: Transform
+ pos: 163.5,89.5
+ parent: 1
+ - uid: 19582
+ components:
+ - type: Transform
+ pos: 163.5,92.5
+ parent: 1
+ - uid: 19583
+ components:
+ - type: Transform
+ pos: 162.5,92.5
+ parent: 1
+ - uid: 19586
+ components:
+ - type: Transform
+ pos: 162.5,107.5
+ parent: 1
+ - uid: 19587
+ components:
+ - type: Transform
+ pos: 161.5,107.5
+ parent: 1
+ - uid: 19588
+ components:
+ - type: Transform
+ pos: 160.5,107.5
+ parent: 1
+ - uid: 19589
+ components:
+ - type: Transform
+ pos: 159.5,107.5
+ parent: 1
+ - uid: 19590
+ components:
+ - type: Transform
+ pos: 159.5,109.5
+ parent: 1
+ - uid: 19591
+ components:
+ - type: Transform
+ pos: 160.5,109.5
+ parent: 1
+ - uid: 19592
+ components:
+ - type: Transform
+ pos: 161.5,109.5
+ parent: 1
+ - uid: 19593
+ components:
+ - type: Transform
+ pos: 162.5,109.5
+ parent: 1
+ - uid: 21038
+ components:
+ - type: Transform
+ pos: 95.5,86.5
+ parent: 1
+ - uid: 21040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,90.5
+ parent: 1
+ - uid: 21051
+ components:
+ - type: Transform
+ pos: 147.5,86.5
+ parent: 1
+ - uid: 21655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,80.5
+ parent: 1
+ - uid: 21672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,113.5
+ parent: 1
+ - uid: 22420
+ components:
+ - type: Transform
+ pos: 146.5,86.5
+ parent: 1
+ - uid: 22421
+ components:
+ - type: Transform
+ pos: 146.5,85.5
+ parent: 1
+ - uid: 22429
+ components:
+ - type: Transform
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 22550
+ components:
+ - type: Transform
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 22555
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 22589
+ components:
+ - type: Transform
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 22594
+ components:
+ - type: Transform
+ pos: 147.5,76.5
+ parent: 1
+ - uid: 22748
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - uid: 23085
+ components:
+ - type: Transform
+ pos: 139.5,40.5
+ parent: 1
+ - uid: 23086
+ components:
+ - type: Transform
+ pos: 140.5,40.5
+ parent: 1
+ - uid: 23087
+ components:
+ - type: Transform
+ pos: 141.5,40.5
+ parent: 1
+ - uid: 23252
+ components:
+ - type: Transform
+ pos: 153.5,86.5
+ parent: 1
+ - uid: 23336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,68.5
+ parent: 1
+ - uid: 23377
+ components:
+ - type: Transform
+ pos: 157.5,146.5
+ parent: 1
+ - uid: 23398
+ components:
+ - type: Transform
+ pos: 123.5,161.5
+ parent: 1
+ - uid: 23407
+ components:
+ - type: Transform
+ pos: 148.5,86.5
+ parent: 1
+ - uid: 23457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,139.5
+ parent: 1
+ - uid: 23460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,96.5
+ parent: 1
+ - uid: 23531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,67.5
+ parent: 1
+ - uid: 23568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,31.5
+ parent: 1
+ - uid: 23569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,34.5
+ parent: 1
+ - uid: 23571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,79.5
+ parent: 1
+ - uid: 23596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,120.5
+ parent: 1
+ - uid: 23660
+ components:
+ - type: Transform
+ pos: 169.5,129.5
+ parent: 1
+ - uid: 23679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,136.5
+ parent: 1
+ - uid: 23680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,139.5
+ parent: 1
+ - uid: 23685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,164.5
+ parent: 1
+ - uid: 23697
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - uid: 23713
+ components:
+ - type: Transform
+ pos: 65.5,156.5
+ parent: 1
+ - uid: 23756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,81.5
+ parent: 1
+ - uid: 24288
+ components:
+ - type: Transform
+ pos: 91.5,56.5
+ parent: 1
+ - uid: 24392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,63.5
+ parent: 1
+ - uid: 24394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,64.5
+ parent: 1
+ - uid: 24396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,65.5
+ parent: 1
+ - uid: 24542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,36.5
+ parent: 1
+ - uid: 24548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,66.5
+ parent: 1
+ - uid: 24701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,62.5
+ parent: 1
+ - uid: 24782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,67.5
+ parent: 1
+ - uid: 24808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,71.5
+ parent: 1
+ - uid: 25129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,145.5
+ parent: 1
+ - uid: 25130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,145.5
+ parent: 1
+ - uid: 25207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,81.5
+ parent: 1
+ - uid: 25217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,85.5
+ parent: 1
+ - uid: 25288
+ components:
+ - type: Transform
+ pos: 109.5,35.5
+ parent: 1
+ - uid: 25293
+ components:
+ - type: Transform
+ pos: 95.5,36.5
+ parent: 1
+ - uid: 25294
+ components:
+ - type: Transform
+ pos: 93.5,35.5
+ parent: 1
+ - uid: 26316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,44.5
+ parent: 1
+ - uid: 26317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,43.5
+ parent: 1
+ - uid: 27080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,56.5
+ parent: 1
+ - uid: 27191
+ components:
+ - type: Transform
+ pos: 91.5,55.5
+ parent: 1
+ - uid: 27395
+ components:
+ - type: Transform
+ pos: 121.5,82.5
+ parent: 1
+ - uid: 27396
+ components:
+ - type: Transform
+ pos: 120.5,82.5
+ parent: 1
+ - uid: 27642
+ components:
+ - type: Transform
+ pos: 153.5,146.5
+ parent: 1
+ - uid: 28168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,47.5
+ parent: 1
+ - uid: 28186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,47.5
+ parent: 1
+ - uid: 28191
+ components:
+ - type: Transform
+ pos: 33.5,119.5
+ parent: 1
+ - uid: 28436
+ components:
+ - type: Transform
+ pos: 153.5,131.5
+ parent: 1
+ - uid: 28791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,134.5
+ parent: 1
+ - uid: 29041
+ components:
+ - type: Transform
+ pos: 106.5,54.5
+ parent: 1
+ - uid: 29042
+ components:
+ - type: Transform
+ pos: 104.5,54.5
+ parent: 1
+ - uid: 29043
+ components:
+ - type: Transform
+ pos: 103.5,54.5
+ parent: 1
+ - uid: 29044
+ components:
+ - type: Transform
+ pos: 102.5,54.5
+ parent: 1
+ - uid: 29045
+ components:
+ - type: Transform
+ pos: 105.5,54.5
+ parent: 1
+ - uid: 29046
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - uid: 29047
+ components:
+ - type: Transform
+ pos: 101.5,55.5
+ parent: 1
+ - uid: 29048
+ components:
+ - type: Transform
+ pos: 100.5,55.5
+ parent: 1
+ - uid: 29049
+ components:
+ - type: Transform
+ pos: 99.5,55.5
+ parent: 1
+ - uid: 29050
+ components:
+ - type: Transform
+ pos: 98.5,55.5
+ parent: 1
+ - uid: 29051
+ components:
+ - type: Transform
+ pos: 97.5,55.5
+ parent: 1
+ - uid: 29052
+ components:
+ - type: Transform
+ pos: 96.5,55.5
+ parent: 1
+ - uid: 29067
+ components:
+ - type: Transform
+ pos: 96.5,56.5
+ parent: 1
+ - uid: 29068
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 1
+ - uid: 29069
+ components:
+ - type: Transform
+ pos: 96.5,59.5
+ parent: 1
+ - uid: 29070
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - uid: 29071
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - uid: 29072
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - uid: 29073
+ components:
+ - type: Transform
+ pos: 96.5,63.5
+ parent: 1
+ - uid: 29084
+ components:
+ - type: Transform
+ pos: 116.5,57.5
+ parent: 1
+ - uid: 29085
+ components:
+ - type: Transform
+ pos: 116.5,58.5
+ parent: 1
+ - uid: 29086
+ components:
+ - type: Transform
+ pos: 116.5,59.5
+ parent: 1
+ - uid: 29087
+ components:
+ - type: Transform
+ pos: 116.5,60.5
+ parent: 1
+ - uid: 29088
+ components:
+ - type: Transform
+ pos: 116.5,61.5
+ parent: 1
+ - uid: 29089
+ components:
+ - type: Transform
+ pos: 116.5,62.5
+ parent: 1
+ - uid: 29095
+ components:
+ - type: Transform
+ pos: 116.5,69.5
+ parent: 1
+ - uid: 29106
+ components:
+ - type: Transform
+ pos: 79.5,45.5
+ parent: 1
+ - uid: 29107
+ components:
+ - type: Transform
+ pos: 75.5,45.5
+ parent: 1
+ - uid: 29109
+ components:
+ - type: Transform
+ pos: 80.5,45.5
+ parent: 1
+ - uid: 29110
+ components:
+ - type: Transform
+ pos: 72.5,45.5
+ parent: 1
+ - uid: 29113
+ components:
+ - type: Transform
+ pos: 74.5,45.5
+ parent: 1
+ - uid: 29115
+ components:
+ - type: Transform
+ pos: 77.5,45.5
+ parent: 1
+ - uid: 29116
+ components:
+ - type: Transform
+ pos: 73.5,45.5
+ parent: 1
+ - uid: 29118
+ components:
+ - type: Transform
+ pos: 76.5,45.5
+ parent: 1
+ - uid: 29150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,80.5
+ parent: 1
+ - uid: 29151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,79.5
+ parent: 1
+ - uid: 29152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,78.5
+ parent: 1
+ - uid: 29198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,160.5
+ parent: 1
+ - uid: 29199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,121.5
+ parent: 1
+ - uid: 29200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,121.5
+ parent: 1
+ - uid: 29201
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,121.5
+ parent: 1
+ - uid: 29202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,160.5
+ parent: 1
+ - uid: 29203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,160.5
+ parent: 1
+ - uid: 29303
+ components:
+ - type: Transform
+ pos: 59.5,130.5
+ parent: 1
+ - uid: 29308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,80.5
+ parent: 1
+ - uid: 29356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,141.5
+ parent: 1
+ - uid: 29583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,31.5
+ parent: 1
+ - uid: 29885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,136.5
+ parent: 1
+ - uid: 30022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,140.5
+ parent: 1
+ - uid: 30125
+ components:
+ - type: Transform
+ pos: 164.5,142.5
+ parent: 1
+ - uid: 30161
+ components:
+ - type: Transform
+ pos: 164.5,141.5
+ parent: 1
+ - uid: 30211
+ components:
+ - type: Transform
+ pos: 164.5,138.5
+ parent: 1
+ - uid: 30373
+ components:
+ - type: Transform
+ pos: 162.5,114.5
+ parent: 1
+ - uid: 30374
+ components:
+ - type: Transform
+ pos: 162.5,115.5
+ parent: 1
+ - uid: 30375
+ components:
+ - type: Transform
+ pos: 162.5,116.5
+ parent: 1
+ - uid: 30376
+ components:
+ - type: Transform
+ pos: 162.5,117.5
+ parent: 1
+ - uid: 30377
+ components:
+ - type: Transform
+ pos: 162.5,118.5
+ parent: 1
+ - uid: 30378
+ components:
+ - type: Transform
+ pos: 162.5,119.5
+ parent: 1
+ - uid: 30379
+ components:
+ - type: Transform
+ pos: 162.5,120.5
+ parent: 1
+ - uid: 30380
+ components:
+ - type: Transform
+ pos: 162.5,121.5
+ parent: 1
+ - uid: 30383
+ components:
+ - type: Transform
+ pos: 161.5,123.5
+ parent: 1
+ - uid: 30384
+ components:
+ - type: Transform
+ pos: 161.5,124.5
+ parent: 1
+ - uid: 30385
+ components:
+ - type: Transform
+ pos: 161.5,125.5
+ parent: 1
+ - uid: 30386
+ components:
+ - type: Transform
+ pos: 161.5,126.5
+ parent: 1
+ - uid: 30387
+ components:
+ - type: Transform
+ pos: 161.5,127.5
+ parent: 1
+ - uid: 30388
+ components:
+ - type: Transform
+ pos: 161.5,128.5
+ parent: 1
+ - uid: 30390
+ components:
+ - type: Transform
+ pos: 161.5,130.5
+ parent: 1
+ - uid: 30402
+ components:
+ - type: Transform
+ pos: 162.5,143.5
+ parent: 1
+ - uid: 30403
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - uid: 30405
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - uid: 30406
+ components:
+ - type: Transform
+ pos: 161.5,145.5
+ parent: 1
+ - uid: 30407
+ components:
+ - type: Transform
+ pos: 160.5,145.5
+ parent: 1
+ - uid: 30408
+ components:
+ - type: Transform
+ pos: 159.5,145.5
+ parent: 1
+ - uid: 30414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,35.5
+ parent: 1
+ - uid: 30416
+ components:
+ - type: Transform
+ pos: 150.5,145.5
+ parent: 1
+ - uid: 30418
+ components:
+ - type: Transform
+ pos: 151.5,145.5
+ parent: 1
+ - uid: 30419
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - uid: 30420
+ components:
+ - type: Transform
+ pos: 159.5,130.5
+ parent: 1
+ - uid: 30421
+ components:
+ - type: Transform
+ pos: 158.5,130.5
+ parent: 1
+ - uid: 30422
+ components:
+ - type: Transform
+ pos: 157.5,130.5
+ parent: 1
+ - uid: 30427
+ components:
+ - type: Transform
+ pos: 152.5,130.5
+ parent: 1
+ - uid: 30428
+ components:
+ - type: Transform
+ pos: 152.5,129.5
+ parent: 1
+ - uid: 30429
+ components:
+ - type: Transform
+ pos: 152.5,128.5
+ parent: 1
+ - uid: 30430
+ components:
+ - type: Transform
+ pos: 152.5,126.5
+ parent: 1
+ - uid: 30431
+ components:
+ - type: Transform
+ pos: 152.5,125.5
+ parent: 1
+ - uid: 30432
+ components:
+ - type: Transform
+ pos: 152.5,124.5
+ parent: 1
+ - uid: 30433
+ components:
+ - type: Transform
+ pos: 152.5,123.5
+ parent: 1
+ - uid: 30434
+ components:
+ - type: Transform
+ pos: 152.5,122.5
+ parent: 1
+ - uid: 30435
+ components:
+ - type: Transform
+ pos: 152.5,121.5
+ parent: 1
+ - uid: 30436
+ components:
+ - type: Transform
+ pos: 152.5,127.5
+ parent: 1
+ - uid: 30437
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - uid: 30448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,81.5
+ parent: 1
+ - uid: 30458
+ components:
+ - type: Transform
+ pos: 141.5,115.5
+ parent: 1
+ - uid: 30459
+ components:
+ - type: Transform
+ pos: 140.5,115.5
+ parent: 1
+ - uid: 30460
+ components:
+ - type: Transform
+ pos: 139.5,115.5
+ parent: 1
+ - uid: 30461
+ components:
+ - type: Transform
+ pos: 138.5,115.5
+ parent: 1
+ - uid: 30462
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - uid: 30463
+ components:
+ - type: Transform
+ pos: 136.5,115.5
+ parent: 1
+ - uid: 30464
+ components:
+ - type: Transform
+ pos: 134.5,115.5
+ parent: 1
+ - uid: 30465
+ components:
+ - type: Transform
+ pos: 133.5,115.5
+ parent: 1
+ - uid: 30466
+ components:
+ - type: Transform
+ pos: 132.5,115.5
+ parent: 1
+ - uid: 30467
+ components:
+ - type: Transform
+ pos: 135.5,115.5
+ parent: 1
+ - uid: 30468
+ components:
+ - type: Transform
+ pos: 131.5,115.5
+ parent: 1
+ - uid: 30539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,79.5
+ parent: 1
+ - uid: 30540
+ components:
+ - type: Transform
+ pos: 150.5,115.5
+ parent: 1
+ - uid: 30549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,56.5
+ parent: 1
+ - uid: 30551
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - uid: 30552
+ components:
+ - type: Transform
+ pos: 155.5,131.5
+ parent: 1
+ - uid: 30556
+ components:
+ - type: Transform
+ pos: 138.5,136.5
+ parent: 1
+ - uid: 30557
+ components:
+ - type: Transform
+ pos: 138.5,137.5
+ parent: 1
+ - uid: 30558
+ components:
+ - type: Transform
+ pos: 138.5,138.5
+ parent: 1
+ - uid: 30560
+ components:
+ - type: Transform
+ pos: 137.5,138.5
+ parent: 1
+ - uid: 30561
+ components:
+ - type: Transform
+ pos: 136.5,138.5
+ parent: 1
+ - uid: 30566
+ components:
+ - type: Transform
+ pos: 134.5,142.5
+ parent: 1
+ - uid: 30567
+ components:
+ - type: Transform
+ pos: 134.5,143.5
+ parent: 1
+ - uid: 30569
+ components:
+ - type: Transform
+ pos: 134.5,145.5
+ parent: 1
+ - uid: 30570
+ components:
+ - type: Transform
+ pos: 134.5,146.5
+ parent: 1
+ - uid: 30571
+ components:
+ - type: Transform
+ pos: 134.5,147.5
+ parent: 1
+ - uid: 30572
+ components:
+ - type: Transform
+ pos: 134.5,148.5
+ parent: 1
+ - uid: 30573
+ components:
+ - type: Transform
+ pos: 21.5,100.5
+ parent: 1
+ - uid: 30574
+ components:
+ - type: Transform
+ pos: 135.5,147.5
+ parent: 1
+ - uid: 30575
+ components:
+ - type: Transform
+ pos: 136.5,147.5
+ parent: 1
+ - uid: 30576
+ components:
+ - type: Transform
+ pos: 133.5,148.5
+ parent: 1
+ - uid: 30577
+ components:
+ - type: Transform
+ pos: 132.5,148.5
+ parent: 1
+ - uid: 30578
+ components:
+ - type: Transform
+ pos: 131.5,148.5
+ parent: 1
+ - uid: 30579
+ components:
+ - type: Transform
+ pos: 130.5,148.5
+ parent: 1
+ - uid: 30580
+ components:
+ - type: Transform
+ pos: 129.5,148.5
+ parent: 1
+ - uid: 30581
+ components:
+ - type: Transform
+ pos: 128.5,148.5
+ parent: 1
+ - uid: 30582
+ components:
+ - type: Transform
+ pos: 127.5,148.5
+ parent: 1
+ - uid: 30583
+ components:
+ - type: Transform
+ pos: 125.5,148.5
+ parent: 1
+ - uid: 30584
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - uid: 30585
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - uid: 30586
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - uid: 30587
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - uid: 30588
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - uid: 30589
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - uid: 30590
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - uid: 30591
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - uid: 30592
+ components:
+ - type: Transform
+ pos: 27.5,76.5
+ parent: 1
+ - uid: 30593
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - uid: 30595
+ components:
+ - type: Transform
+ pos: 27.5,77.5
+ parent: 1
+ - uid: 30603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,78.5
+ parent: 1
+ - uid: 30604
+ components:
+ - type: Transform
+ pos: 120.5,164.5
+ parent: 1
+ - uid: 30606
+ components:
+ - type: Transform
+ pos: 118.5,164.5
+ parent: 1
+ - uid: 30607
+ components:
+ - type: Transform
+ pos: 117.5,164.5
+ parent: 1
+ - uid: 30608
+ components:
+ - type: Transform
+ pos: 116.5,164.5
+ parent: 1
+ - uid: 30609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,169.5
+ parent: 1
+ - uid: 30610
+ components:
+ - type: Transform
+ pos: 114.5,164.5
+ parent: 1
+ - uid: 30611
+ components:
+ - type: Transform
+ pos: 113.5,164.5
+ parent: 1
+ - uid: 30613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,165.5
+ parent: 1
+ - uid: 30620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,114.5
+ parent: 1
+ - uid: 30621
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - uid: 30622
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - uid: 30623
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - uid: 30625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,81.5
+ parent: 1
+ - uid: 30638
+ components:
+ - type: Transform
+ pos: 94.5,163.5
+ parent: 1
+ - uid: 30639
+ components:
+ - type: Transform
+ pos: 94.5,162.5
+ parent: 1
+ - uid: 30641
+ components:
+ - type: Transform
+ pos: 94.5,161.5
+ parent: 1
+ - uid: 30642
+ components:
+ - type: Transform
+ pos: 94.5,160.5
+ parent: 1
+ - uid: 30643
+ components:
+ - type: Transform
+ pos: 94.5,159.5
+ parent: 1
+ - uid: 30644
+ components:
+ - type: Transform
+ pos: 93.5,159.5
+ parent: 1
+ - uid: 30645
+ components:
+ - type: Transform
+ pos: 92.5,159.5
+ parent: 1
+ - uid: 30647
+ components:
+ - type: Transform
+ pos: 90.5,159.5
+ parent: 1
+ - uid: 30648
+ components:
+ - type: Transform
+ pos: 88.5,159.5
+ parent: 1
+ - uid: 30650
+ components:
+ - type: Transform
+ pos: 86.5,159.5
+ parent: 1
+ - uid: 30651
+ components:
+ - type: Transform
+ pos: 85.5,159.5
+ parent: 1
+ - uid: 30652
+ components:
+ - type: Transform
+ pos: 89.5,159.5
+ parent: 1
+ - uid: 30654
+ components:
+ - type: Transform
+ pos: 85.5,156.5
+ parent: 1
+ - uid: 30655
+ components:
+ - type: Transform
+ pos: 85.5,157.5
+ parent: 1
+ - uid: 30661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,79.5
+ parent: 1
+ - uid: 30663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,35.5
+ parent: 1
+ - uid: 30679
+ components:
+ - type: Transform
+ pos: 61.5,157.5
+ parent: 1
+ - uid: 30680
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - uid: 30681
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - uid: 30682
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - uid: 30683
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - uid: 30684
+ components:
+ - type: Transform
+ pos: 61.5,152.5
+ parent: 1
+ - uid: 30750
+ components:
+ - type: Transform
+ pos: 151.5,146.5
+ parent: 1
+ - uid: 30767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,141.5
+ parent: 1
+ - uid: 30794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,137.5
+ parent: 1
+ - uid: 30800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,141.5
+ parent: 1
+ - uid: 30801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,141.5
+ parent: 1
+ - uid: 30865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,171.5
+ parent: 1
+ - uid: 30879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,141.5
+ parent: 1
+ - uid: 30880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,141.5
+ parent: 1
+ - uid: 30881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,141.5
+ parent: 1
+ - uid: 30882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,141.5
+ parent: 1
+ - uid: 30883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,141.5
+ parent: 1
+ - uid: 30884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,141.5
+ parent: 1
+ - uid: 30885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,141.5
+ parent: 1
+ - uid: 30886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,141.5
+ parent: 1
+ - uid: 30887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,141.5
+ parent: 1
+ - uid: 30961
+ components:
+ - type: Transform
+ pos: 168.5,74.5
+ parent: 1
+ - uid: 30962
+ components:
+ - type: Transform
+ pos: 168.5,77.5
+ parent: 1
+ - uid: 30992
+ components:
+ - type: Transform
+ pos: 168.5,78.5
+ parent: 1
+ - uid: 31057
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,140.5
+ parent: 1
+ - uid: 31058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,139.5
+ parent: 1
+ - uid: 31059
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,138.5
+ parent: 1
+ - uid: 31060
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,137.5
+ parent: 1
+ - uid: 31061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,136.5
+ parent: 1
+ - uid: 31062
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,135.5
+ parent: 1
+ - uid: 31063
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,134.5
+ parent: 1
+ - uid: 31064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,133.5
+ parent: 1
+ - uid: 31065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,132.5
+ parent: 1
+ - uid: 31066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,131.5
+ parent: 1
+ - uid: 31067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,130.5
+ parent: 1
+ - uid: 31068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,129.5
+ parent: 1
+ - uid: 31069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,129.5
+ parent: 1
+ - uid: 31070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,130.5
+ parent: 1
+ - uid: 31071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,131.5
+ parent: 1
+ - uid: 31072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,132.5
+ parent: 1
+ - uid: 31073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,133.5
+ parent: 1
+ - uid: 31074
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,134.5
+ parent: 1
+ - uid: 31075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,135.5
+ parent: 1
+ - uid: 31076
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,136.5
+ parent: 1
+ - uid: 31077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,137.5
+ parent: 1
+ - uid: 31078
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,138.5
+ parent: 1
+ - uid: 31079
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,139.5
+ parent: 1
+ - uid: 31080
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,140.5
+ parent: 1
+ - uid: 31081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,129.5
+ parent: 1
+ - uid: 31082
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,130.5
+ parent: 1
+ - uid: 31083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,131.5
+ parent: 1
+ - uid: 31084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,132.5
+ parent: 1
+ - uid: 31085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,133.5
+ parent: 1
+ - uid: 31086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,134.5
+ parent: 1
+ - uid: 31087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,135.5
+ parent: 1
+ - uid: 31088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,136.5
+ parent: 1
+ - uid: 31089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,138.5
+ parent: 1
+ - uid: 31090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,139.5
+ parent: 1
+ - uid: 31091
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,137.5
+ parent: 1
+ - uid: 31092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,140.5
+ parent: 1
+ - uid: 31093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,142.5
+ parent: 1
+ - uid: 31094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,143.5
+ parent: 1
+ - uid: 31095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,144.5
+ parent: 1
+ - uid: 31096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,145.5
+ parent: 1
+ - uid: 31097
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,146.5
+ parent: 1
+ - uid: 31098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,147.5
+ parent: 1
+ - uid: 31099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,148.5
+ parent: 1
+ - uid: 31100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,149.5
+ parent: 1
+ - uid: 31101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,151.5
+ parent: 1
+ - uid: 31102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,150.5
+ parent: 1
+ - uid: 31103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,152.5
+ parent: 1
+ - uid: 31104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,153.5
+ parent: 1
+ - uid: 31105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,153.5
+ parent: 1
+ - uid: 31106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,152.5
+ parent: 1
+ - uid: 31107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,151.5
+ parent: 1
+ - uid: 31108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,149.5
+ parent: 1
+ - uid: 31109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,148.5
+ parent: 1
+ - uid: 31110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,147.5
+ parent: 1
+ - uid: 31111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,146.5
+ parent: 1
+ - uid: 31112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,145.5
+ parent: 1
+ - uid: 31113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,144.5
+ parent: 1
+ - uid: 31114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,143.5
+ parent: 1
+ - uid: 31115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,142.5
+ parent: 1
+ - uid: 31116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,150.5
+ parent: 1
+ - uid: 31117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,142.5
+ parent: 1
+ - uid: 31118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,144.5
+ parent: 1
+ - uid: 31119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,145.5
+ parent: 1
+ - uid: 31120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,146.5
+ parent: 1
+ - uid: 31121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,143.5
+ parent: 1
+ - uid: 31122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,148.5
+ parent: 1
+ - uid: 31123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,147.5
+ parent: 1
+ - uid: 31124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,149.5
+ parent: 1
+ - uid: 31125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,150.5
+ parent: 1
+ - uid: 31126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,151.5
+ parent: 1
+ - uid: 31127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,152.5
+ parent: 1
+ - uid: 31128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,153.5
+ parent: 1
+ - uid: 31135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,53.5
+ parent: 1
+ - uid: 31157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,53.5
+ parent: 1
+ - uid: 31158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,53.5
+ parent: 1
+ - uid: 31159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,53.5
+ parent: 1
+ - uid: 31160
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,53.5
+ parent: 1
+ - uid: 31161
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,53.5
+ parent: 1
+ - uid: 31162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,53.5
+ parent: 1
+ - uid: 31163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,53.5
+ parent: 1
+ - uid: 31164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,26.5
+ parent: 1
+ - uid: 31165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,54.5
+ parent: 1
+ - uid: 31166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,55.5
+ parent: 1
+ - uid: 31167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,56.5
+ parent: 1
+ - uid: 31168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,57.5
+ parent: 1
+ - uid: 31169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,58.5
+ parent: 1
+ - uid: 31170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,59.5
+ parent: 1
+ - uid: 31171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,60.5
+ parent: 1
+ - uid: 31172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,61.5
+ parent: 1
+ - uid: 31173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,62.5
+ parent: 1
+ - uid: 31174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,63.5
+ parent: 1
+ - uid: 31175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,65.5
+ parent: 1
+ - uid: 31176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,64.5
+ parent: 1
+ - uid: 31177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,65.5
+ parent: 1
+ - uid: 31178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,64.5
+ parent: 1
+ - uid: 31179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,63.5
+ parent: 1
+ - uid: 31180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,62.5
+ parent: 1
+ - uid: 31181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,61.5
+ parent: 1
+ - uid: 31182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,60.5
+ parent: 1
+ - uid: 31183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,59.5
+ parent: 1
+ - uid: 31184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,58.5
+ parent: 1
+ - uid: 31185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,57.5
+ parent: 1
+ - uid: 31186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,56.5
+ parent: 1
+ - uid: 31187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,55.5
+ parent: 1
+ - uid: 31188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,54.5
+ parent: 1
+ - uid: 31189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,52.5
+ parent: 1
+ - uid: 31190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,51.5
+ parent: 1
+ - uid: 31191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,50.5
+ parent: 1
+ - uid: 31192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,49.5
+ parent: 1
+ - uid: 31193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,48.5
+ parent: 1
+ - uid: 31194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,47.5
+ parent: 1
+ - uid: 31195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,45.5
+ parent: 1
+ - uid: 31196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,46.5
+ parent: 1
+ - uid: 31197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,43.5
+ parent: 1
+ - uid: 31198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,42.5
+ parent: 1
+ - uid: 31199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,44.5
+ parent: 1
+ - uid: 31200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,41.5
+ parent: 1
+ - uid: 31201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,40.5
+ parent: 1
+ - uid: 31202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,39.5
+ parent: 1
+ - uid: 31203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,38.5
+ parent: 1
+ - uid: 31204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,37.5
+ parent: 1
+ - uid: 31205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,36.5
+ parent: 1
+ - uid: 31206
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,35.5
+ parent: 1
+ - uid: 31207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,34.5
+ parent: 1
+ - uid: 31208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,33.5
+ parent: 1
+ - uid: 31209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,32.5
+ parent: 1
+ - uid: 31210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,31.5
+ parent: 1
+ - uid: 31211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,30.5
+ parent: 1
+ - uid: 31212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,29.5
+ parent: 1
+ - uid: 31213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,28.5
+ parent: 1
+ - uid: 31214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,27.5
+ parent: 1
+ - uid: 31215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,26.5
+ parent: 1
+ - uid: 31216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,27.5
+ parent: 1
+ - uid: 31217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,28.5
+ parent: 1
+ - uid: 31218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,29.5
+ parent: 1
+ - uid: 31219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,30.5
+ parent: 1
+ - uid: 31220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,31.5
+ parent: 1
+ - uid: 31221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,32.5
+ parent: 1
+ - uid: 31222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,33.5
+ parent: 1
+ - uid: 31223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,34.5
+ parent: 1
+ - uid: 31224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,35.5
+ parent: 1
+ - uid: 31225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,37.5
+ parent: 1
+ - uid: 31226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,36.5
+ parent: 1
+ - uid: 31227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,38.5
+ parent: 1
+ - uid: 31228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,38.5
+ parent: 1
+ - uid: 31229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,38.5
+ parent: 1
+ - uid: 31230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,38.5
+ parent: 1
+ - uid: 31231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,38.5
+ parent: 1
+ - uid: 31232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,38.5
+ parent: 1
+ - uid: 31233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,38.5
+ parent: 1
+ - uid: 31234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,38.5
+ parent: 1
+ - uid: 31235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,38.5
+ parent: 1
+ - uid: 31236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,38.5
+ parent: 1
+ - uid: 31237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,38.5
+ parent: 1
+ - uid: 31238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,38.5
+ parent: 1
+ - uid: 31239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,38.5
+ parent: 1
+ - uid: 31240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,39.5
+ parent: 1
+ - uid: 31241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,37.5
+ parent: 1
+ - uid: 31242
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,36.5
+ parent: 1
+ - uid: 31243
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,35.5
+ parent: 1
+ - uid: 31244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,34.5
+ parent: 1
+ - uid: 31245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,33.5
+ parent: 1
+ - uid: 31246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,32.5
+ parent: 1
+ - uid: 31247
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,31.5
+ parent: 1
+ - uid: 31248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,30.5
+ parent: 1
+ - uid: 31249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,29.5
+ parent: 1
+ - uid: 31250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,28.5
+ parent: 1
+ - uid: 31251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,27.5
+ parent: 1
+ - uid: 31252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,26.5
+ parent: 1
+ - uid: 31253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,26.5
+ parent: 1
+ - uid: 31254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,27.5
+ parent: 1
+ - uid: 31255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,28.5
+ parent: 1
+ - uid: 31256
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,29.5
+ parent: 1
+ - uid: 31257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,30.5
+ parent: 1
+ - uid: 31258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,31.5
+ parent: 1
+ - uid: 31259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,32.5
+ parent: 1
+ - uid: 31260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,33.5
+ parent: 1
+ - uid: 31261
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,34.5
+ parent: 1
+ - uid: 31262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,35.5
+ parent: 1
+ - uid: 31263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,36.5
+ parent: 1
+ - uid: 31264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,37.5
+ parent: 1
+ - uid: 31265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,41.5
+ parent: 1
+ - uid: 31266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,42.5
+ parent: 1
+ - uid: 31267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,43.5
+ parent: 1
+ - uid: 31268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,44.5
+ parent: 1
+ - uid: 31269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,40.5
+ parent: 1
+ - uid: 31270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,45.5
+ parent: 1
+ - uid: 31271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,44.5
+ parent: 1
+ - uid: 31272
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,44.5
+ parent: 1
+ - uid: 31273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,44.5
+ parent: 1
+ - uid: 31274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,44.5
+ parent: 1
+ - uid: 31275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,44.5
+ parent: 1
+ - uid: 31276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,44.5
+ parent: 1
+ - uid: 31277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,44.5
+ parent: 1
+ - uid: 31278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,45.5
+ parent: 1
+ - uid: 31279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,45.5
+ parent: 1
+ - uid: 31281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,46.5
+ parent: 1
+ - uid: 31283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,47.5
+ parent: 1
+ - uid: 31284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,48.5
+ parent: 1
+ - uid: 31285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,49.5
+ parent: 1
+ - uid: 31286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,50.5
+ parent: 1
+ - uid: 31287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,51.5
+ parent: 1
+ - uid: 31288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,52.5
+ parent: 1
+ - uid: 31289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,47.5
+ parent: 1
+ - uid: 31579
+ components:
+ - type: Transform
+ pos: 173.5,62.5
+ parent: 1
+ - uid: 31580
+ components:
+ - type: Transform
+ pos: 173.5,58.5
+ parent: 1
+ - uid: 31581
+ components:
+ - type: Transform
+ pos: 173.5,61.5
+ parent: 1
+ - uid: 31582
+ components:
+ - type: Transform
+ pos: 173.5,60.5
+ parent: 1
+ - uid: 31583
+ components:
+ - type: Transform
+ pos: 173.5,63.5
+ parent: 1
+ - uid: 31584
+ components:
+ - type: Transform
+ pos: 173.5,59.5
+ parent: 1
+ - uid: 31585
+ components:
+ - type: Transform
+ pos: 173.5,64.5
+ parent: 1
+ - uid: 31586
+ components:
+ - type: Transform
+ pos: 173.5,57.5
+ parent: 1
+ - uid: 31587
+ components:
+ - type: Transform
+ pos: 173.5,56.5
+ parent: 1
+ - uid: 31588
+ components:
+ - type: Transform
+ pos: 173.5,55.5
+ parent: 1
+ - uid: 31609
+ components:
+ - type: Transform
+ pos: 169.5,62.5
+ parent: 1
+ - uid: 31610
+ components:
+ - type: Transform
+ pos: 169.5,61.5
+ parent: 1
+ - uid: 31611
+ components:
+ - type: Transform
+ pos: 169.5,63.5
+ parent: 1
+ - uid: 31612
+ components:
+ - type: Transform
+ pos: 169.5,54.5
+ parent: 1
+ - uid: 31613
+ components:
+ - type: Transform
+ pos: 169.5,56.5
+ parent: 1
+ - uid: 31614
+ components:
+ - type: Transform
+ pos: 169.5,55.5
+ parent: 1
+ - uid: 31615
+ components:
+ - type: Transform
+ pos: 169.5,60.5
+ parent: 1
+ - uid: 31616
+ components:
+ - type: Transform
+ pos: 169.5,58.5
+ parent: 1
+ - uid: 31617
+ components:
+ - type: Transform
+ pos: 169.5,57.5
+ parent: 1
+ - uid: 31618
+ components:
+ - type: Transform
+ pos: 169.5,59.5
+ parent: 1
+ - uid: 31638
+ components:
+ - type: Transform
+ pos: 169.5,65.5
+ parent: 1
+ - uid: 31639
+ components:
+ - type: Transform
+ pos: 169.5,66.5
+ parent: 1
+ - uid: 31640
+ components:
+ - type: Transform
+ pos: 169.5,67.5
+ parent: 1
+ - uid: 31641
+ components:
+ - type: Transform
+ pos: 169.5,68.5
+ parent: 1
+ - uid: 31643
+ components:
+ - type: Transform
+ pos: 173.5,66.5
+ parent: 1
+ - uid: 31644
+ components:
+ - type: Transform
+ pos: 173.5,65.5
+ parent: 1
+ - uid: 31645
+ components:
+ - type: Transform
+ pos: 173.5,67.5
+ parent: 1
+ - uid: 31646
+ components:
+ - type: Transform
+ pos: 169.5,64.5
+ parent: 1
+ - uid: 31647
+ components:
+ - type: Transform
+ pos: 173.5,68.5
+ parent: 1
+ - uid: 31649
+ components:
+ - type: Transform
+ pos: 169.5,69.5
+ parent: 1
+ - uid: 31669
+ components:
+ - type: Transform
+ pos: 173.5,53.5
+ parent: 1
+ - uid: 31670
+ components:
+ - type: Transform
+ pos: 173.5,54.5
+ parent: 1
+ - uid: 31671
+ components:
+ - type: Transform
+ pos: 173.5,52.5
+ parent: 1
+ - uid: 31672
+ components:
+ - type: Transform
+ pos: 173.5,51.5
+ parent: 1
+ - uid: 31673
+ components:
+ - type: Transform
+ pos: 173.5,50.5
+ parent: 1
+ - uid: 31674
+ components:
+ - type: Transform
+ pos: 173.5,48.5
+ parent: 1
+ - uid: 31675
+ components:
+ - type: Transform
+ pos: 173.5,49.5
+ parent: 1
+ - uid: 31676
+ components:
+ - type: Transform
+ pos: 173.5,45.5
+ parent: 1
+ - uid: 31677
+ components:
+ - type: Transform
+ pos: 173.5,47.5
+ parent: 1
+ - uid: 31698
+ components:
+ - type: Transform
+ pos: 169.5,52.5
+ parent: 1
+ - uid: 31699
+ components:
+ - type: Transform
+ pos: 169.5,48.5
+ parent: 1
+ - uid: 31700
+ components:
+ - type: Transform
+ pos: 169.5,50.5
+ parent: 1
+ - uid: 31701
+ components:
+ - type: Transform
+ pos: 169.5,49.5
+ parent: 1
+ - uid: 31702
+ components:
+ - type: Transform
+ pos: 169.5,53.5
+ parent: 1
+ - uid: 31703
+ components:
+ - type: Transform
+ pos: 169.5,51.5
+ parent: 1
+ - uid: 31704
+ components:
+ - type: Transform
+ pos: 169.5,46.5
+ parent: 1
+ - uid: 31705
+ components:
+ - type: Transform
+ pos: 169.5,47.5
+ parent: 1
+ - uid: 31706
+ components:
+ - type: Transform
+ pos: 169.5,45.5
+ parent: 1
+ - uid: 31718
+ components:
+ - type: Transform
+ pos: 173.5,69.5
+ parent: 1
+ - uid: 31719
+ components:
+ - type: Transform
+ pos: 173.5,46.5
+ parent: 1
+ - uid: 31720
+ components:
+ - type: Transform
+ pos: 177.5,45.5
+ parent: 1
+ - uid: 31721
+ components:
+ - type: Transform
+ pos: 177.5,46.5
+ parent: 1
+ - uid: 31722
+ components:
+ - type: Transform
+ pos: 177.5,47.5
+ parent: 1
+ - uid: 31723
+ components:
+ - type: Transform
+ pos: 177.5,48.5
+ parent: 1
+ - uid: 31724
+ components:
+ - type: Transform
+ pos: 177.5,49.5
+ parent: 1
+ - uid: 31725
+ components:
+ - type: Transform
+ pos: 177.5,50.5
+ parent: 1
+ - uid: 31726
+ components:
+ - type: Transform
+ pos: 177.5,51.5
+ parent: 1
+ - uid: 31727
+ components:
+ - type: Transform
+ pos: 177.5,53.5
+ parent: 1
+ - uid: 31728
+ components:
+ - type: Transform
+ pos: 177.5,54.5
+ parent: 1
+ - uid: 31729
+ components:
+ - type: Transform
+ pos: 177.5,55.5
+ parent: 1
+ - uid: 31730
+ components:
+ - type: Transform
+ pos: 177.5,56.5
+ parent: 1
+ - uid: 31731
+ components:
+ - type: Transform
+ pos: 177.5,57.5
+ parent: 1
+ - uid: 31732
+ components:
+ - type: Transform
+ pos: 177.5,58.5
+ parent: 1
+ - uid: 31733
+ components:
+ - type: Transform
+ pos: 177.5,59.5
+ parent: 1
+ - uid: 31734
+ components:
+ - type: Transform
+ pos: 177.5,52.5
+ parent: 1
+ - uid: 31735
+ components:
+ - type: Transform
+ pos: 177.5,61.5
+ parent: 1
+ - uid: 31736
+ components:
+ - type: Transform
+ pos: 177.5,60.5
+ parent: 1
+ - uid: 31737
+ components:
+ - type: Transform
+ pos: 177.5,62.5
+ parent: 1
+ - uid: 31738
+ components:
+ - type: Transform
+ pos: 177.5,65.5
+ parent: 1
+ - uid: 31739
+ components:
+ - type: Transform
+ pos: 177.5,64.5
+ parent: 1
+ - uid: 31740
+ components:
+ - type: Transform
+ pos: 177.5,67.5
+ parent: 1
+ - uid: 31741
+ components:
+ - type: Transform
+ pos: 177.5,68.5
+ parent: 1
+ - uid: 31742
+ components:
+ - type: Transform
+ pos: 177.5,69.5
+ parent: 1
+ - uid: 31743
+ components:
+ - type: Transform
+ pos: 177.5,66.5
+ parent: 1
+ - uid: 31744
+ components:
+ - type: Transform
+ pos: 177.5,63.5
+ parent: 1
+ - uid: 31745
+ components:
+ - type: Transform
+ pos: 180.5,57.5
+ parent: 1
+ - uid: 31746
+ components:
+ - type: Transform
+ pos: 179.5,57.5
+ parent: 1
+ - uid: 31747
+ components:
+ - type: Transform
+ pos: 178.5,57.5
+ parent: 1
+ - uid: 31748
+ components:
+ - type: Transform
+ pos: 176.5,57.5
+ parent: 1
+ - uid: 31749
+ components:
+ - type: Transform
+ pos: 175.5,57.5
+ parent: 1
+ - uid: 31750
+ components:
+ - type: Transform
+ pos: 174.5,57.5
+ parent: 1
+ - uid: 31751
+ components:
+ - type: Transform
+ pos: 172.5,57.5
+ parent: 1
+ - uid: 31752
+ components:
+ - type: Transform
+ pos: 171.5,57.5
+ parent: 1
+ - uid: 31753
+ components:
+ - type: Transform
+ pos: 170.5,57.5
+ parent: 1
+ - uid: 31754
+ components:
+ - type: Transform
+ pos: 168.5,57.5
+ parent: 1
+ - uid: 31755
+ components:
+ - type: Transform
+ pos: 167.5,57.5
+ parent: 1
+ - uid: 31770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,88.5
+ parent: 1
+ - uid: 31771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,89.5
+ parent: 1
+ - uid: 31772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,90.5
+ parent: 1
+ - uid: 31773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,91.5
+ parent: 1
+ - uid: 31774
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,92.5
+ parent: 1
+ - uid: 31775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,93.5
+ parent: 1
+ - uid: 31776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,94.5
+ parent: 1
+ - uid: 31777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,94.5
+ parent: 1
+ - uid: 31778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,94.5
+ parent: 1
+ - uid: 31779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,94.5
+ parent: 1
+ - uid: 31780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,94.5
+ parent: 1
+ - uid: 31781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,95.5
+ parent: 1
+ - uid: 31782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,96.5
+ parent: 1
+ - uid: 31802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,88.5
+ parent: 1
+ - uid: 31804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,116.5
+ parent: 1
+ - uid: 31805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,117.5
+ parent: 1
+ - uid: 31806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,118.5
+ parent: 1
+ - uid: 31807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,119.5
+ parent: 1
+ - uid: 31808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,120.5
+ parent: 1
+ - uid: 31809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,121.5
+ parent: 1
+ - uid: 31810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,121.5
+ parent: 1
+ - uid: 31811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,121.5
+ parent: 1
+ - uid: 31812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,121.5
+ parent: 1
+ - uid: 31813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,121.5
+ parent: 1
+ - uid: 31814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 31815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,122.5
+ parent: 1
+ - uid: 31816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,123.5
+ parent: 1
+ - uid: 31817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,124.5
+ parent: 1
+ - uid: 31818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,125.5
+ parent: 1
+ - uid: 31819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,126.5
+ parent: 1
+ - uid: 31821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,127.5
+ parent: 1
+ - uid: 31823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,130.5
+ parent: 1
+ - uid: 31824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,129.5
+ parent: 1
+ - uid: 32062
+ components:
+ - type: Transform
+ pos: 156.5,131.5
+ parent: 1
+ - uid: 32076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,174.5
+ parent: 1
+ - uid: 32127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,115.5
+ parent: 1
+ - uid: 32166
+ components:
+ - type: Transform
+ pos: 56.5,126.5
+ parent: 1
+ - uid: 32168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,115.5
+ parent: 1
+ - uid: 32204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 180.5,73.5
+ parent: 1
+ - uid: 32222
+ components:
+ - type: Transform
+ pos: 63.5,31.5
+ parent: 1
+ - uid: 32369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,158.5
+ parent: 1
+ - uid: 32418
+ components:
+ - type: Transform
+ pos: 164.5,136.5
+ parent: 1
+ - uid: 32419
+ components:
+ - type: Transform
+ pos: 164.5,137.5
+ parent: 1
+ - uid: 32420
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - uid: 32421
+ components:
+ - type: Transform
+ pos: 163.5,143.5
+ parent: 1
+ - uid: 32422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,138.5
+ parent: 1
+ - uid: 32436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,114.5
+ parent: 1
+ - uid: 32442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,58.5
+ parent: 1
+ - uid: 32443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,56.5
+ parent: 1
+ - uid: 32444
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,55.5
+ parent: 1
+ - uid: 32445
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,54.5
+ parent: 1
+ - uid: 32446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,53.5
+ parent: 1
+ - uid: 32447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,52.5
+ parent: 1
+ - uid: 32448
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 186.5,57.5
+ parent: 1
+ - uid: 32449
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 185.5,52.5
+ parent: 1
+ - uid: 32450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 184.5,52.5
+ parent: 1
+ - uid: 32451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,52.5
+ parent: 1
+ - uid: 32452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,51.5
+ parent: 1
+ - uid: 32453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,50.5
+ parent: 1
+ - uid: 32454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,49.5
+ parent: 1
+ - uid: 32455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,48.5
+ parent: 1
+ - uid: 32456
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,47.5
+ parent: 1
+ - uid: 32457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,46.5
+ parent: 1
+ - uid: 32458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,45.5
+ parent: 1
+ - uid: 32459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,44.5
+ parent: 1
+ - uid: 32460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,43.5
+ parent: 1
+ - uid: 32461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,42.5
+ parent: 1
+ - uid: 32462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 183.5,41.5
+ parent: 1
+ - uid: 32463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 182.5,41.5
+ parent: 1
+ - uid: 32464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 181.5,41.5
+ parent: 1
+ - uid: 32465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 180.5,41.5
+ parent: 1
+ - uid: 32466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 179.5,41.5
+ parent: 1
+ - uid: 32467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 178.5,41.5
+ parent: 1
+ - uid: 32468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 177.5,41.5
+ parent: 1
+ - uid: 32469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 176.5,41.5
+ parent: 1
+ - uid: 32470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 175.5,41.5
+ parent: 1
+ - uid: 32471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 174.5,41.5
+ parent: 1
+ - uid: 32472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 173.5,41.5
+ parent: 1
+ - uid: 32473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 172.5,41.5
+ parent: 1
+ - uid: 32474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 171.5,41.5
+ parent: 1
+ - uid: 32475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 169.5,41.5
+ parent: 1
+ - uid: 32476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 170.5,41.5
+ parent: 1
+ - uid: 32477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,41.5
+ parent: 1
+ - uid: 32478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 168.5,41.5
+ parent: 1
+ - uid: 32479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,41.5
+ parent: 1
+ - uid: 32480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,41.5
+ parent: 1
+ - uid: 32481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,40.5
+ parent: 1
+ - uid: 32482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,39.5
+ parent: 1
+ - uid: 32483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,38.5
+ parent: 1
+ - uid: 32484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,38.5
+ parent: 1
+ - uid: 32485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,38.5
+ parent: 1
+ - uid: 32486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,38.5
+ parent: 1
+ - uid: 32487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,38.5
+ parent: 1
+ - uid: 32488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,38.5
+ parent: 1
+ - uid: 32489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,38.5
+ parent: 1
+ - uid: 32490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,38.5
+ parent: 1
+ - uid: 32491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,38.5
+ parent: 1
+ - uid: 32492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,38.5
+ parent: 1
+ - uid: 32493
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,38.5
+ parent: 1
+ - uid: 32494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,38.5
+ parent: 1
+ - uid: 32495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,38.5
+ parent: 1
+ - uid: 32496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,38.5
+ parent: 1
+ - uid: 32497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,38.5
+ parent: 1
+ - uid: 32498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,38.5
+ parent: 1
+ - uid: 32499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,38.5
+ parent: 1
+ - uid: 32500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,38.5
+ parent: 1
+ - uid: 32501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,38.5
+ parent: 1
+ - uid: 32502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,38.5
+ parent: 1
+ - uid: 32503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,38.5
+ parent: 1
+ - uid: 32504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,38.5
+ parent: 1
+ - uid: 32505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,38.5
+ parent: 1
+ - uid: 32506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,38.5
+ parent: 1
+ - uid: 32507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,38.5
+ parent: 1
+ - uid: 32508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,38.5
+ parent: 1
+ - uid: 32509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,38.5
+ parent: 1
+ - uid: 32510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,38.5
+ parent: 1
+ - uid: 32511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,39.5
+ parent: 1
+ - uid: 32512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,38.5
+ parent: 1
+ - uid: 32513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,38.5
+ parent: 1
+ - uid: 32514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,38.5
+ parent: 1
+ - uid: 32515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,38.5
+ parent: 1
+ - uid: 32516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,38.5
+ parent: 1
+ - uid: 32517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,38.5
+ parent: 1
+ - uid: 32518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,38.5
+ parent: 1
+ - uid: 32519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,38.5
+ parent: 1
+ - uid: 32520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,38.5
+ parent: 1
+ - uid: 32521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,36.5
+ parent: 1
+ - uid: 32522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,35.5
+ parent: 1
+ - uid: 32523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,34.5
+ parent: 1
+ - uid: 32524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,33.5
+ parent: 1
+ - uid: 32525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,32.5
+ parent: 1
+ - uid: 32526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,32.5
+ parent: 1
+ - uid: 32527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,32.5
+ parent: 1
+ - uid: 32528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,31.5
+ parent: 1
+ - uid: 32529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,29.5
+ parent: 1
+ - uid: 32530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,28.5
+ parent: 1
+ - uid: 32531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,27.5
+ parent: 1
+ - uid: 32532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,26.5
+ parent: 1
+ - uid: 32533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,25.5
+ parent: 1
+ - uid: 32534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,24.5
+ parent: 1
+ - uid: 32535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,23.5
+ parent: 1
+ - uid: 32536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,22.5
+ parent: 1
+ - uid: 32537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,30.5
+ parent: 1
+ - uid: 32538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,22.5
+ parent: 1
+ - uid: 32539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,22.5
+ parent: 1
+ - uid: 32540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,22.5
+ parent: 1
+ - uid: 32541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,22.5
+ parent: 1
+ - uid: 32542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,21.5
+ parent: 1
+ - uid: 32543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,20.5
+ parent: 1
+ - uid: 32544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,19.5
+ parent: 1
+ - uid: 32545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,18.5
+ parent: 1
+ - uid: 32546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,17.5
+ parent: 1
+ - uid: 32547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,16.5
+ parent: 1
+ - uid: 32548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,15.5
+ parent: 1
+ - uid: 32549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,16.5
+ parent: 1
+ - uid: 32550
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,16.5
+ parent: 1
+ - uid: 32551
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,16.5
+ parent: 1
+ - uid: 32552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,16.5
+ parent: 1
+ - uid: 32553
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,16.5
+ parent: 1
+ - uid: 32554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,16.5
+ parent: 1
+ - uid: 32555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,14.5
+ parent: 1
+ - uid: 32556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,13.5
+ parent: 1
+ - uid: 32557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,13.5
+ parent: 1
+ - uid: 32559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,13.5
+ parent: 1
+ - uid: 32560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,13.5
+ parent: 1
+ - uid: 32561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,13.5
+ parent: 1
+ - uid: 32562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,14.5
+ parent: 1
+ - uid: 32563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,15.5
+ parent: 1
+ - uid: 32564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,15.5
+ parent: 1
+ - uid: 32565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,15.5
+ parent: 1
+ - uid: 32566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,15.5
+ parent: 1
+ - uid: 32567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,15.5
+ parent: 1
+ - uid: 32568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,15.5
+ parent: 1
+ - uid: 32569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,15.5
+ parent: 1
+ - uid: 32570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,15.5
+ parent: 1
+ - uid: 32571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,15.5
+ parent: 1
+ - uid: 32572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,15.5
+ parent: 1
+ - uid: 32573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,15.5
+ parent: 1
+ - uid: 32574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,15.5
+ parent: 1
+ - uid: 32575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,15.5
+ parent: 1
+ - uid: 32576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,14.5
+ parent: 1
+ - uid: 32577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,14.5
+ parent: 1
+ - uid: 32578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,15.5
+ parent: 1
+ - uid: 32580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,15.5
+ parent: 1
+ - uid: 32581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,15.5
+ parent: 1
+ - uid: 32591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,13.5
+ parent: 1
+ - uid: 32594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,13.5
+ parent: 1
+ - uid: 32595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,13.5
+ parent: 1
+ - uid: 32596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,13.5
+ parent: 1
+ - uid: 32597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,13.5
+ parent: 1
+ - uid: 32598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,13.5
+ parent: 1
+ - uid: 32599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,13.5
+ parent: 1
+ - uid: 32600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,13.5
+ parent: 1
+ - uid: 32602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,12.5
+ parent: 1
+ - uid: 32603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,11.5
+ parent: 1
+ - uid: 32604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,11.5
+ parent: 1
+ - uid: 32605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,11.5
+ parent: 1
+ - uid: 32606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,11.5
+ parent: 1
+ - uid: 32607
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,11.5
+ parent: 1
+ - uid: 32608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,12.5
+ parent: 1
+ - uid: 32609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,13.5
+ parent: 1
+ - uid: 32610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,13.5
+ parent: 1
+ - uid: 32611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,13.5
+ parent: 1
+ - uid: 32612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,11.5
+ parent: 1
+ - uid: 32613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,11.5
+ parent: 1
+ - uid: 32614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,11.5
+ parent: 1
+ - uid: 32615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,11.5
+ parent: 1
+ - uid: 32616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,11.5
+ parent: 1
+ - uid: 32617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,11.5
+ parent: 1
+ - uid: 32618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,22.5
+ parent: 1
+ - uid: 32619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,12.5
+ parent: 1
+ - uid: 32620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,12.5
+ parent: 1
+ - uid: 32621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,12.5
+ parent: 1
+ - uid: 32622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,12.5
+ parent: 1
+ - uid: 32623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,12.5
+ parent: 1
+ - uid: 32624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,12.5
+ parent: 1
+ - uid: 32625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,12.5
+ parent: 1
+ - uid: 32626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,12.5
+ parent: 1
+ - uid: 32627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,12.5
+ parent: 1
+ - uid: 32628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,12.5
+ parent: 1
+ - uid: 32629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,12.5
+ parent: 1
+ - uid: 32630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,12.5
+ parent: 1
+ - uid: 32631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,12.5
+ parent: 1
+ - uid: 32632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,12.5
+ parent: 1
+ - uid: 32633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,12.5
+ parent: 1
+ - uid: 32634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,12.5
+ parent: 1
+ - uid: 32635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,12.5
+ parent: 1
+ - uid: 32636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,12.5
+ parent: 1
+ - uid: 32637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,12.5
+ parent: 1
+ - uid: 32638
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,12.5
+ parent: 1
+ - uid: 32639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,12.5
+ parent: 1
+ - uid: 32640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,12.5
+ parent: 1
+ - uid: 32641
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,12.5
+ parent: 1
+ - uid: 32642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,13.5
+ parent: 1
+ - uid: 32643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,14.5
+ parent: 1
+ - uid: 32644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,15.5
+ parent: 1
+ - uid: 32645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,16.5
+ parent: 1
+ - uid: 32646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,17.5
+ parent: 1
+ - uid: 32647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,18.5
+ parent: 1
+ - uid: 32648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,19.5
+ parent: 1
+ - uid: 32649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,20.5
+ parent: 1
+ - uid: 32650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,21.5
+ parent: 1
+ - uid: 32651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,22.5
+ parent: 1
+ - uid: 32652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,22.5
+ parent: 1
+ - uid: 32653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,22.5
+ parent: 1
+ - uid: 32654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,22.5
+ parent: 1
+ - uid: 32655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,22.5
+ parent: 1
+ - uid: 32656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,22.5
+ parent: 1
+ - uid: 32657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,22.5
+ parent: 1
+ - uid: 32658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,22.5
+ parent: 1
+ - uid: 32659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,22.5
+ parent: 1
+ - uid: 32660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,22.5
+ parent: 1
+ - uid: 32661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,22.5
+ parent: 1
+ - uid: 32662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,22.5
+ parent: 1
+ - uid: 32663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,22.5
+ parent: 1
+ - uid: 32664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,22.5
+ parent: 1
+ - uid: 32665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,22.5
+ parent: 1
+ - uid: 32666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,22.5
+ parent: 1
+ - uid: 32667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,22.5
+ parent: 1
+ - uid: 32668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,48.5
+ parent: 1
+ - uid: 32669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,23.5
+ parent: 1
+ - uid: 32670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,24.5
+ parent: 1
+ - uid: 32671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,25.5
+ parent: 1
+ - uid: 32672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,26.5
+ parent: 1
+ - uid: 32673
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,27.5
+ parent: 1
+ - uid: 32674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,28.5
+ parent: 1
+ - uid: 32675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,29.5
+ parent: 1
+ - uid: 32676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,30.5
+ parent: 1
+ - uid: 32677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,31.5
+ parent: 1
+ - uid: 32678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,32.5
+ parent: 1
+ - uid: 32679
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,34.5
+ parent: 1
+ - uid: 32680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,35.5
+ parent: 1
+ - uid: 32681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,36.5
+ parent: 1
+ - uid: 32682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,33.5
+ parent: 1
+ - uid: 32683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,38.5
+ parent: 1
+ - uid: 32684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,39.5
+ parent: 1
+ - uid: 32685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,37.5
+ parent: 1
+ - uid: 32686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,41.5
+ parent: 1
+ - uid: 32687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,43.5
+ parent: 1
+ - uid: 32688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,44.5
+ parent: 1
+ - uid: 32689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,40.5
+ parent: 1
+ - uid: 32690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,45.5
+ parent: 1
+ - uid: 32691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,46.5
+ parent: 1
+ - uid: 32692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,42.5
+ parent: 1
+ - uid: 32693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,47.5
+ parent: 1
+ - uid: 32694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,48.5
+ parent: 1
+ - uid: 32695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,48.5
+ parent: 1
+ - uid: 32696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,48.5
+ parent: 1
+ - uid: 32697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,48.5
+ parent: 1
+ - uid: 32698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,49.5
+ parent: 1
+ - uid: 32699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,50.5
+ parent: 1
+ - uid: 32700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,52.5
+ parent: 1
+ - uid: 32701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,53.5
+ parent: 1
+ - uid: 32702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,54.5
+ parent: 1
+ - uid: 32703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,55.5
+ parent: 1
+ - uid: 32704
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,56.5
+ parent: 1
+ - uid: 32705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,57.5
+ parent: 1
+ - uid: 32706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,51.5
+ parent: 1
+ - uid: 32707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,58.5
+ parent: 1
+ - uid: 32708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,66.5
+ parent: 1
+ - uid: 32709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,58.5
+ parent: 1
+ - uid: 32710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,58.5
+ parent: 1
+ - uid: 32711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,58.5
+ parent: 1
+ - uid: 32712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,58.5
+ parent: 1
+ - uid: 32713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,59.5
+ parent: 1
+ - uid: 32714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,60.5
+ parent: 1
+ - uid: 32715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,61.5
+ parent: 1
+ - uid: 32716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,62.5
+ parent: 1
+ - uid: 32717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,63.5
+ parent: 1
+ - uid: 32718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,64.5
+ parent: 1
+ - uid: 32719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,65.5
+ parent: 1
+ - uid: 32720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,65.5
+ parent: 1
+ - uid: 32721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,65.5
+ parent: 1
+ - uid: 32722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,67.5
+ parent: 1
+ - uid: 32723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,68.5
+ parent: 1
+ - uid: 32724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,69.5
+ parent: 1
+ - uid: 32725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,70.5
+ parent: 1
+ - uid: 32726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,71.5
+ parent: 1
+ - uid: 32727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,72.5
+ parent: 1
+ - uid: 32728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,100.5
+ parent: 1
+ - uid: 32729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,103.5
+ parent: 1
+ - uid: 32730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,74.5
+ parent: 1
+ - uid: 32731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,103.5
+ parent: 1
+ - uid: 32732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,103.5
+ parent: 1
+ - uid: 32733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,104.5
+ parent: 1
+ - uid: 32734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,105.5
+ parent: 1
+ - uid: 32735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,109.5
+ parent: 1
+ - uid: 32736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,110.5
+ parent: 1
+ - uid: 32737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,111.5
+ parent: 1
+ - uid: 32738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 13.5,111.5
+ parent: 1
+ - uid: 32739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,111.5
+ parent: 1
+ - uid: 32740
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 14.5,111.5
+ parent: 1
+ - uid: 32741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,112.5
+ parent: 1
+ - uid: 32742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,113.5
+ parent: 1
+ - uid: 32743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,114.5
+ parent: 1
+ - uid: 32744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,115.5
+ parent: 1
+ - uid: 32745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,116.5
+ parent: 1
+ - uid: 32746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,117.5
+ parent: 1
+ - uid: 32747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,118.5
+ parent: 1
+ - uid: 32748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,119.5
+ parent: 1
+ - uid: 32749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,120.5
+ parent: 1
+ - uid: 32750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,121.5
+ parent: 1
+ - uid: 32751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,122.5
+ parent: 1
+ - uid: 32752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 15.5,123.5
+ parent: 1
+ - uid: 32753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 16.5,123.5
+ parent: 1
+ - uid: 32754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,123.5
+ parent: 1
+ - uid: 32755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,123.5
+ parent: 1
+ - uid: 32756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,122.5
+ parent: 1
+ - uid: 32757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,125.5
+ parent: 1
+ - uid: 32758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,126.5
+ parent: 1
+ - uid: 32759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,127.5
+ parent: 1
+ - uid: 32760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,127.5
+ parent: 1
+ - uid: 32761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,127.5
+ parent: 1
+ - uid: 32762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,127.5
+ parent: 1
+ - uid: 32763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,127.5
+ parent: 1
+ - uid: 32764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,127.5
+ parent: 1
+ - uid: 32765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,127.5
+ parent: 1
+ - uid: 32766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,127.5
+ parent: 1
+ - uid: 32767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,127.5
+ parent: 1
+ - uid: 32768
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,127.5
+ parent: 1
+ - uid: 32769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,127.5
+ parent: 1
+ - uid: 32770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,127.5
+ parent: 1
+ - uid: 32771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,127.5
+ parent: 1
+ - uid: 32772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,127.5
+ parent: 1
+ - uid: 32773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,127.5
+ parent: 1
+ - uid: 32774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,127.5
+ parent: 1
+ - uid: 32775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,128.5
+ parent: 1
+ - uid: 32776
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,129.5
+ parent: 1
+ - uid: 32777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,130.5
+ parent: 1
+ - uid: 32778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,131.5
+ parent: 1
+ - uid: 32779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,132.5
+ parent: 1
+ - uid: 32780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,133.5
+ parent: 1
+ - uid: 32781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,134.5
+ parent: 1
+ - uid: 32782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,135.5
+ parent: 1
+ - uid: 32783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,136.5
+ parent: 1
+ - uid: 32784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,136.5
+ parent: 1
+ - uid: 32785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,136.5
+ parent: 1
+ - uid: 32786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,136.5
+ parent: 1
+ - uid: 32787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,136.5
+ parent: 1
+ - uid: 32788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,137.5
+ parent: 1
+ - uid: 32789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,138.5
+ parent: 1
+ - uid: 32790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,139.5
+ parent: 1
+ - uid: 32791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,140.5
+ parent: 1
+ - uid: 32792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,141.5
+ parent: 1
+ - uid: 32793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,142.5
+ parent: 1
+ - uid: 32794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,143.5
+ parent: 1
+ - uid: 32795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,144.5
+ parent: 1
+ - uid: 32796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,145.5
+ parent: 1
+ - uid: 32797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,146.5
+ parent: 1
+ - uid: 32798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,146.5
+ parent: 1
+ - uid: 32799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,146.5
+ parent: 1
+ - uid: 32800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,146.5
+ parent: 1
+ - uid: 32801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,146.5
+ parent: 1
+ - uid: 32802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,147.5
+ parent: 1
+ - uid: 32803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,148.5
+ parent: 1
+ - uid: 32804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,149.5
+ parent: 1
+ - uid: 32805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,150.5
+ parent: 1
+ - uid: 32806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,151.5
+ parent: 1
+ - uid: 32807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,152.5
+ parent: 1
+ - uid: 32808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,153.5
+ parent: 1
+ - uid: 32809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,154.5
+ parent: 1
+ - uid: 32810
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,155.5
+ parent: 1
+ - uid: 32811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,156.5
+ parent: 1
+ - uid: 32812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,157.5
+ parent: 1
+ - uid: 32813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,157.5
+ parent: 1
+ - uid: 32814
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,157.5
+ parent: 1
+ - uid: 32815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,157.5
+ parent: 1
+ - uid: 32816
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,157.5
+ parent: 1
+ - uid: 32817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,157.5
+ parent: 1
+ - uid: 32818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,157.5
+ parent: 1
+ - uid: 32819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,157.5
+ parent: 1
+ - uid: 32820
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,157.5
+ parent: 1
+ - uid: 32821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,157.5
+ parent: 1
+ - uid: 32822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,157.5
+ parent: 1
+ - uid: 32823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,157.5
+ parent: 1
+ - uid: 32824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,157.5
+ parent: 1
+ - uid: 32825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,157.5
+ parent: 1
+ - uid: 32826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,157.5
+ parent: 1
+ - uid: 32827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,157.5
+ parent: 1
+ - uid: 32828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,157.5
+ parent: 1
+ - uid: 32829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,157.5
+ parent: 1
+ - uid: 32830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,157.5
+ parent: 1
+ - uid: 32831
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,157.5
+ parent: 1
+ - uid: 32833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,157.5
+ parent: 1
+ - uid: 32834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,169.5
+ parent: 1
+ - uid: 32835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,159.5
+ parent: 1
+ - uid: 32836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,160.5
+ parent: 1
+ - uid: 32837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,161.5
+ parent: 1
+ - uid: 32838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,162.5
+ parent: 1
+ - uid: 32839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,158.5
+ parent: 1
+ - uid: 32840
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,162.5
+ parent: 1
+ - uid: 32841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,162.5
+ parent: 1
+ - uid: 32842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,162.5
+ parent: 1
+ - uid: 32843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,162.5
+ parent: 1
+ - uid: 32844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,161.5
+ parent: 1
+ - uid: 32845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,163.5
+ parent: 1
+ - uid: 32846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,164.5
+ parent: 1
+ - uid: 32847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,164.5
+ parent: 1
+ - uid: 32848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,164.5
+ parent: 1
+ - uid: 32849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,164.5
+ parent: 1
+ - uid: 32850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,164.5
+ parent: 1
+ - uid: 32851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,164.5
+ parent: 1
+ - uid: 32852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,164.5
+ parent: 1
+ - uid: 32853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,165.5
+ parent: 1
+ - uid: 32854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,166.5
+ parent: 1
+ - uid: 32855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,167.5
+ parent: 1
+ - uid: 32856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,167.5
+ parent: 1
+ - uid: 32857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,167.5
+ parent: 1
+ - uid: 32858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,167.5
+ parent: 1
+ - uid: 32859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,167.5
+ parent: 1
+ - uid: 32860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,167.5
+ parent: 1
+ - uid: 32861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,167.5
+ parent: 1
+ - uid: 32862
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,167.5
+ parent: 1
+ - uid: 32863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,167.5
+ parent: 1
+ - uid: 32864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,167.5
+ parent: 1
+ - uid: 32865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,167.5
+ parent: 1
+ - uid: 32866
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,166.5
+ parent: 1
+ - uid: 32867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,165.5
+ parent: 1
+ - uid: 32868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,165.5
+ parent: 1
+ - uid: 32869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,165.5
+ parent: 1
+ - uid: 32870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,165.5
+ parent: 1
+ - uid: 32871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,165.5
+ parent: 1
+ - uid: 32872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,165.5
+ parent: 1
+ - uid: 32873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,165.5
+ parent: 1
+ - uid: 32874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,165.5
+ parent: 1
+ - uid: 32875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,165.5
+ parent: 1
+ - uid: 32876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,165.5
+ parent: 1
+ - uid: 32877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,165.5
+ parent: 1
+ - uid: 32878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,166.5
+ parent: 1
+ - uid: 32879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,167.5
+ parent: 1
+ - uid: 32880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,168.5
+ parent: 1
+ - uid: 32881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,170.5
+ parent: 1
+ - uid: 32882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,171.5
+ parent: 1
+ - uid: 32883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,172.5
+ parent: 1
+ - uid: 32884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,173.5
+ parent: 1
+ - uid: 32885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,174.5
+ parent: 1
+ - uid: 32886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,176.5
+ parent: 1
+ - uid: 32887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,175.5
+ parent: 1
+ - uid: 32888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,168.5
+ parent: 1
+ - uid: 32889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,168.5
+ parent: 1
+ - uid: 32890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,168.5
+ parent: 1
+ - uid: 32892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,176.5
+ parent: 1
+ - uid: 32893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,176.5
+ parent: 1
+ - uid: 32894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,176.5
+ parent: 1
+ - uid: 32895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,176.5
+ parent: 1
+ - uid: 32896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,176.5
+ parent: 1
+ - uid: 32897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,176.5
+ parent: 1
+ - uid: 32898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,176.5
+ parent: 1
+ - uid: 32899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,176.5
+ parent: 1
+ - uid: 32900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,176.5
+ parent: 1
+ - uid: 32901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,176.5
+ parent: 1
+ - uid: 32902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,176.5
+ parent: 1
+ - uid: 32903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,175.5
+ parent: 1
+ - uid: 32904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,175.5
+ parent: 1
+ - uid: 32905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,175.5
+ parent: 1
+ - uid: 32906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,175.5
+ parent: 1
+ - uid: 32907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,175.5
+ parent: 1
+ - uid: 32908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,175.5
+ parent: 1
+ - uid: 32909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,175.5
+ parent: 1
+ - uid: 32910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,174.5
+ parent: 1
+ - uid: 32911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,174.5
+ parent: 1
+ - uid: 32912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,174.5
+ parent: 1
+ - uid: 32913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,174.5
+ parent: 1
+ - uid: 32914
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,174.5
+ parent: 1
+ - uid: 32915
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,174.5
+ parent: 1
+ - uid: 32916
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,174.5
+ parent: 1
+ - uid: 32917
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,174.5
+ parent: 1
+ - uid: 32918
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,174.5
+ parent: 1
+ - uid: 32919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,174.5
+ parent: 1
+ - uid: 32920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,174.5
+ parent: 1
+ - uid: 32921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,174.5
+ parent: 1
+ - uid: 32922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,174.5
+ parent: 1
+ - uid: 32923
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,174.5
+ parent: 1
+ - uid: 32924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,174.5
+ parent: 1
+ - uid: 32925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,174.5
+ parent: 1
+ - uid: 32926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,174.5
+ parent: 1
+ - uid: 32929
+ components:
+ - type: Transform
+ pos: 157.5,90.5
+ parent: 1
+ - uid: 32944
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,161.5
+ parent: 1
+ - uid: 32945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,160.5
+ parent: 1
+ - uid: 32946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,159.5
+ parent: 1
+ - uid: 32947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,158.5
+ parent: 1
+ - uid: 32948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,157.5
+ parent: 1
+ - uid: 32954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,156.5
+ parent: 1
+ - uid: 32955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,156.5
+ parent: 1
+ - uid: 32956
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,156.5
+ parent: 1
+ - uid: 32957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,156.5
+ parent: 1
+ - uid: 32958
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,156.5
+ parent: 1
+ - uid: 32959
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,156.5
+ parent: 1
+ - uid: 32960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,156.5
+ parent: 1
+ - uid: 32961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,156.5
+ parent: 1
+ - uid: 32962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,156.5
+ parent: 1
+ - uid: 32963
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,156.5
+ parent: 1
+ - uid: 32964
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,156.5
+ parent: 1
+ - uid: 32965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,156.5
+ parent: 1
+ - uid: 32966
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,121.5
+ parent: 1
+ - uid: 32967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,155.5
+ parent: 1
+ - uid: 32968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,154.5
+ parent: 1
+ - uid: 32969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,152.5
+ parent: 1
+ - uid: 32970
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,153.5
+ parent: 1
+ - uid: 32998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,170.5
+ parent: 1
+ - uid: 33001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,128.5
+ parent: 1
+ - uid: 33002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,127.5
+ parent: 1
+ - uid: 33003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,126.5
+ parent: 1
+ - uid: 33004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,125.5
+ parent: 1
+ - uid: 33005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 167.5,124.5
+ parent: 1
+ - uid: 33006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,123.5
+ parent: 1
+ - uid: 33007
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,126.5
+ parent: 1
+ - uid: 33010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 166.5,123.5
+ parent: 1
+ - uid: 33784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,47.5
+ parent: 1
+ - uid: 33785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,48.5
+ parent: 1
+ - uid: 33787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,44.5
+ parent: 1
+ - uid: 33788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,43.5
+ parent: 1
+ - uid: 33789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,42.5
+ parent: 1
+ - uid: 33790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,41.5
+ parent: 1
+ - uid: 33798
+ components:
+ - type: Transform
+ pos: 107.5,36.5
+ parent: 1
+ - uid: 33799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,31.5
+ parent: 1
+ - uid: 33800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,30.5
+ parent: 1
+ - uid: 33801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,29.5
+ parent: 1
+ - uid: 33802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,27.5
+ parent: 1
+ - uid: 33803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,26.5
+ parent: 1
+ - uid: 33804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,25.5
+ parent: 1
+ - uid: 33805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,28.5
+ parent: 1
+ - uid: 33806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,23.5
+ parent: 1
+ - uid: 33807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,24.5
+ parent: 1
+ - uid: 33831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,34.5
+ parent: 1
+ - uid: 33832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,35.5
+ parent: 1
+ - uid: 33833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,36.5
+ parent: 1
+ - uid: 33834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,37.5
+ parent: 1
+ - uid: 33835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,38.5
+ parent: 1
+ - uid: 33836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,39.5
+ parent: 1
+ - uid: 33837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,40.5
+ parent: 1
+ - uid: 33838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,41.5
+ parent: 1
+ - uid: 33839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,42.5
+ parent: 1
+ - uid: 33840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,43.5
+ parent: 1
+ - uid: 33846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,45.5
+ parent: 1
+ - uid: 33847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,45.5
+ parent: 1
+ - uid: 33848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,45.5
+ parent: 1
+ - uid: 33849
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,45.5
+ parent: 1
+ - uid: 33850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,45.5
+ parent: 1
+ - uid: 33851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,45.5
+ parent: 1
+ - uid: 33852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,45.5
+ parent: 1
+ - uid: 33853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,45.5
+ parent: 1
+ - uid: 33854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,45.5
+ parent: 1
+ - uid: 33855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,44.5
+ parent: 1
+ - uid: 33856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,44.5
+ parent: 1
+ - uid: 33857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,44.5
+ parent: 1
+ - uid: 33858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,44.5
+ parent: 1
+ - uid: 33859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,41.5
+ parent: 1
+ - uid: 33860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,42.5
+ parent: 1
+ - uid: 33861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,43.5
+ parent: 1
+ - uid: 33862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,44.5
+ parent: 1
+ - uid: 33863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,41.5
+ parent: 1
+ - uid: 33864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,41.5
+ parent: 1
+ - uid: 33865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,30.5
+ parent: 1
+ - uid: 33866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,31.5
+ parent: 1
+ - uid: 33867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,31.5
+ parent: 1
+ - uid: 33872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,23.5
+ parent: 1
+ - uid: 33873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,23.5
+ parent: 1
+ - uid: 33874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,24.5
+ parent: 1
+ - uid: 33876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,27.5
+ parent: 1
+ - uid: 33877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,28.5
+ parent: 1
+ - uid: 33878
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,29.5
+ parent: 1
+ - uid: 33879
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,30.5
+ parent: 1
+ - uid: 33881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,25.5
+ parent: 1
+ - uid: 33883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,48.5
+ parent: 1
+ - uid: 33897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,47.5
+ parent: 1
+ - uid: 33901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,54.5
+ parent: 1
+ - uid: 33917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,52.5
+ parent: 1
+ - uid: 33918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,51.5
+ parent: 1
+ - uid: 33919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,50.5
+ parent: 1
+ - uid: 33920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,49.5
+ parent: 1
+ - uid: 33921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,48.5
+ parent: 1
+ - uid: 33922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,47.5
+ parent: 1
+ - uid: 33923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,47.5
+ parent: 1
+ - uid: 33924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,47.5
+ parent: 1
+ - uid: 33925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,47.5
+ parent: 1
+ - uid: 33926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,46.5
+ parent: 1
+ - uid: 33927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,45.5
+ parent: 1
+ - uid: 33928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,44.5
+ parent: 1
+ - uid: 33929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,43.5
+ parent: 1
+ - uid: 33931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,41.5
+ parent: 1
+ - uid: 33933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,39.5
+ parent: 1
+ - uid: 33934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,38.5
+ parent: 1
+ - uid: 33935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,36.5
+ parent: 1
+ - uid: 33936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,35.5
+ parent: 1
+ - uid: 33937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,37.5
+ parent: 1
+ - uid: 33938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,34.5
+ parent: 1
+ - uid: 33942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,34.5
+ parent: 1
+ - uid: 33943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,34.5
+ parent: 1
+ - uid: 33944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,33.5
+ parent: 1
+ - uid: 33945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,33.5
+ parent: 1
+ - uid: 33946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,33.5
+ parent: 1
+ - uid: 33947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,31.5
+ parent: 1
+ - uid: 33948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,32.5
+ parent: 1
+ - uid: 33950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,30.5
+ parent: 1
+ - uid: 33951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,29.5
+ parent: 1
+ - uid: 33952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,29.5
+ parent: 1
+ - uid: 33953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,28.5
+ parent: 1
+ - uid: 33954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,27.5
+ parent: 1
+ - uid: 33955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,26.5
+ parent: 1
+ - uid: 33956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,25.5
+ parent: 1
+ - uid: 33957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,24.5
+ parent: 1
+ - uid: 33958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,22.5
+ parent: 1
+ - uid: 33959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,21.5
+ parent: 1
+ - uid: 33960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,23.5
+ parent: 1
+ - uid: 33961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,20.5
+ parent: 1
+ - uid: 33986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,33.5
+ parent: 1
+ - uid: 33987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,32.5
+ parent: 1
+ - uid: 33988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,31.5
+ parent: 1
+ - uid: 33989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,30.5
+ parent: 1
+ - uid: 33990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,29.5
+ parent: 1
+ - uid: 33991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,28.5
+ parent: 1
+ - uid: 33992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,27.5
+ parent: 1
+ - uid: 33993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,28.5
+ parent: 1
+ - uid: 34002
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,33.5
+ parent: 1
+ - uid: 34003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,33.5
+ parent: 1
+ - uid: 34004
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,33.5
+ parent: 1
+ - uid: 34005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,33.5
+ parent: 1
+ - uid: 34006
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,33.5
+ parent: 1
+ - uid: 34184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,113.5
+ parent: 1
+ - uid: 34232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,144.5
+ parent: 1
+ - uid: 34233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,146.5
+ parent: 1
+ - uid: 34234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,143.5
+ parent: 1
+ - uid: 34272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,147.5
+ parent: 1
+ - uid: 34273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,146.5
+ parent: 1
+ - uid: 34287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,148.5
+ parent: 1
+ - uid: 34289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,142.5
+ parent: 1
+ - uid: 34290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,142.5
+ parent: 1
+ - uid: 34293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,148.5
+ parent: 1
+ - uid: 34294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,148.5
+ parent: 1
+ - uid: 34296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,150.5
+ parent: 1
+ - uid: 34406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,151.5
+ parent: 1
+ - uid: 34414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,85.5
+ parent: 1
+ - uid: 34415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,85.5
+ parent: 1
+ - uid: 34416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,85.5
+ parent: 1
+ - uid: 34426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,85.5
+ parent: 1
+ - uid: 34429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,84.5
+ parent: 1
+ - uid: 34430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,83.5
+ parent: 1
+ - uid: 34431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,82.5
+ parent: 1
+ - uid: 34440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,74.5
+ parent: 1
+ - uid: 34448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 34449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 34450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,75.5
+ parent: 1
+ - uid: 34451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,73.5
+ parent: 1
+ - uid: 34452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,72.5
+ parent: 1
+ - uid: 34453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,71.5
+ parent: 1
+ - uid: 34454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,70.5
+ parent: 1
+ - uid: 34455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,69.5
+ parent: 1
+ - uid: 34456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,68.5
+ parent: 1
+ - uid: 34457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,67.5
+ parent: 1
+ - uid: 34458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,66.5
+ parent: 1
+ - uid: 34459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,74.5
+ parent: 1
+ - uid: 34460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,66.5
+ parent: 1
+ - uid: 34461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,63.5
+ parent: 1
+ - uid: 34462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,66.5
+ parent: 1
+ - uid: 34463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,65.5
+ parent: 1
+ - uid: 34464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,62.5
+ parent: 1
+ - uid: 34465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,61.5
+ parent: 1
+ - uid: 34466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,60.5
+ parent: 1
+ - uid: 34467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,59.5
+ parent: 1
+ - uid: 34468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,58.5
+ parent: 1
+ - uid: 34469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,57.5
+ parent: 1
+ - uid: 34471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,156.5
+ parent: 1
+ - uid: 34475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,57.5
+ parent: 1
+ - uid: 34481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,46.5
+ parent: 1
+ - uid: 34482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,46.5
+ parent: 1
+ - uid: 34483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,46.5
+ parent: 1
+ - uid: 34484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,46.5
+ parent: 1
+ - uid: 34485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,46.5
+ parent: 1
+ - uid: 34486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,46.5
+ parent: 1
+ - uid: 34487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,46.5
+ parent: 1
+ - uid: 34488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,46.5
+ parent: 1
+ - uid: 34489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,46.5
+ parent: 1
+ - uid: 34490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,46.5
+ parent: 1
+ - uid: 34491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,46.5
+ parent: 1
+ - uid: 34492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,46.5
+ parent: 1
+ - uid: 34493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,46.5
+ parent: 1
+ - uid: 34494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,46.5
+ parent: 1
+ - uid: 34603
+ components:
+ - type: Transform
+ pos: 153.5,85.5
+ parent: 1
+ - uid: 34623
+ components:
+ - type: Transform
+ pos: 62.5,34.5
+ parent: 1
+ - uid: 34628
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 1
+ - uid: 34649
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,123.5
+ parent: 1
+ - uid: 34717
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - uid: 34718
+ components:
+ - type: Transform
+ pos: 94.5,110.5
+ parent: 1
+ - uid: 34725
+ components:
+ - type: Transform
+ pos: 93.5,110.5
+ parent: 1
+ - uid: 34726
+ components:
+ - type: Transform
+ pos: 91.5,110.5
+ parent: 1
+ - uid: 34729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,157.5
+ parent: 1
+ - uid: 34730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,157.5
+ parent: 1
+ - uid: 34732
+ components:
+ - type: Transform
+ pos: 157.5,91.5
+ parent: 1
+ - uid: 34733
+ components:
+ - type: Transform
+ pos: 92.5,110.5
+ parent: 1
+ - uid: 34734
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - uid: 34746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,157.5
+ parent: 1
+ - uid: 34747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,157.5
+ parent: 1
+ - uid: 34748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,157.5
+ parent: 1
+ - uid: 34832
+ components:
+ - type: Transform
+ pos: 95.5,84.5
+ parent: 1
+ - uid: 34838
+ components:
+ - type: Transform
+ pos: 168.5,128.5
+ parent: 1
+ - uid: 34846
+ components:
+ - type: Transform
+ pos: 85.5,80.5
+ parent: 1
+ - uid: 34847
+ components:
+ - type: Transform
+ pos: 84.5,80.5
+ parent: 1
+ - uid: 34848
+ components:
+ - type: Transform
+ pos: 83.5,80.5
+ parent: 1
+ - uid: 34849
+ components:
+ - type: Transform
+ pos: 82.5,80.5
+ parent: 1
+ - uid: 34850
+ components:
+ - type: Transform
+ pos: 81.5,80.5
+ parent: 1
+ - uid: 34851
+ components:
+ - type: Transform
+ pos: 80.5,80.5
+ parent: 1
+ - uid: 34852
+ components:
+ - type: Transform
+ pos: 79.5,80.5
+ parent: 1
+ - uid: 34853
+ components:
+ - type: Transform
+ pos: 78.5,80.5
+ parent: 1
+ - uid: 34854
+ components:
+ - type: Transform
+ pos: 77.5,80.5
+ parent: 1
+ - uid: 34856
+ components:
+ - type: Transform
+ pos: 75.5,80.5
+ parent: 1
+ - uid: 34857
+ components:
+ - type: Transform
+ pos: 74.5,80.5
+ parent: 1
+ - uid: 34858
+ components:
+ - type: Transform
+ pos: 73.5,80.5
+ parent: 1
+ - uid: 34859
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - uid: 34860
+ components:
+ - type: Transform
+ pos: 77.5,81.5
+ parent: 1
+ - uid: 34861
+ components:
+ - type: Transform
+ pos: 77.5,82.5
+ parent: 1
+ - uid: 34862
+ components:
+ - type: Transform
+ pos: 77.5,83.5
+ parent: 1
+ - uid: 34863
+ components:
+ - type: Transform
+ pos: 72.5,79.5
+ parent: 1
+ - uid: 34864
+ components:
+ - type: Transform
+ pos: 72.5,78.5
+ parent: 1
+ - uid: 34865
+ components:
+ - type: Transform
+ pos: 71.5,78.5
+ parent: 1
+ - uid: 34866
+ components:
+ - type: Transform
+ pos: 70.5,78.5
+ parent: 1
+ - uid: 34867
+ components:
+ - type: Transform
+ pos: 68.5,78.5
+ parent: 1
+ - uid: 34869
+ components:
+ - type: Transform
+ pos: 69.5,78.5
+ parent: 1
+ - uid: 34878
+ components:
+ - type: Transform
+ pos: 88.5,79.5
+ parent: 1
+ - uid: 34880
+ components:
+ - type: Transform
+ pos: 59.5,73.5
+ parent: 1
+ - uid: 34881
+ components:
+ - type: Transform
+ pos: 59.5,72.5
+ parent: 1
+ - uid: 34882
+ components:
+ - type: Transform
+ pos: 59.5,71.5
+ parent: 1
+ - uid: 34883
+ components:
+ - type: Transform
+ pos: 59.5,70.5
+ parent: 1
+ - uid: 34884
+ components:
+ - type: Transform
+ pos: 59.5,69.5
+ parent: 1
+ - uid: 34903
+ components:
+ - type: Transform
+ pos: 116.5,88.5
+ parent: 1
+ - uid: 34904
+ components:
+ - type: Transform
+ pos: 117.5,88.5
+ parent: 1
+ - uid: 34905
+ components:
+ - type: Transform
+ pos: 118.5,88.5
+ parent: 1
+ - uid: 34906
+ components:
+ - type: Transform
+ pos: 119.5,88.5
+ parent: 1
+ - uid: 34907
+ components:
+ - type: Transform
+ pos: 120.5,88.5
+ parent: 1
+ - uid: 34908
+ components:
+ - type: Transform
+ pos: 121.5,88.5
+ parent: 1
+ - uid: 34918
+ components:
+ - type: Transform
+ pos: 125.5,94.5
+ parent: 1
+ - uid: 34919
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - uid: 34929
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - uid: 34930
+ components:
+ - type: Transform
+ pos: 123.5,94.5
+ parent: 1
+ - uid: 34931
+ components:
+ - type: Transform
+ pos: 122.5,94.5
+ parent: 1
+ - uid: 34932
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 34960
+ components:
+ - type: Transform
+ pos: 158.5,146.5
+ parent: 1
+ - uid: 34961
+ components:
+ - type: Transform
+ pos: 154.5,146.5
+ parent: 1
+ - uid: 34963
+ components:
+ - type: Transform
+ pos: 156.5,146.5
+ parent: 1
+ - uid: 34991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,157.5
+ parent: 1
+ - uid: 35012
+ components:
+ - type: Transform
+ pos: 161.5,129.5
+ parent: 1
+ - uid: 35015
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 1
+ - uid: 35087
+ components:
+ - type: Transform
+ pos: 155.5,146.5
+ parent: 1
+ - uid: 35101
+ components:
+ - type: Transform
+ pos: 164.5,139.5
+ parent: 1
+ - uid: 35186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,165.5
+ parent: 1
+ - uid: 35187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,165.5
+ parent: 1
+ - uid: 35205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,82.5
+ parent: 1
+ - uid: 35363
+ components:
+ - type: Transform
+ pos: 91.5,159.5
+ parent: 1
+ - uid: 35433
+ components:
+ - type: Transform
+ pos: 122.5,164.5
+ parent: 1
+ - uid: 35436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,165.5
+ parent: 1
+ - uid: 35449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,157.5
+ parent: 1
+ - uid: 35450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,158.5
+ parent: 1
+ - uid: 35457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,46.5
+ parent: 1
+ - uid: 35485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,47.5
+ parent: 1
+ - uid: 35494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,48.5
+ parent: 1
+ - uid: 35514
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - uid: 35545
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - uid: 35571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,174.5
+ parent: 1
+ - uid: 35586
+ components:
+ - type: Transform
+ pos: 149.5,86.5
+ parent: 1
+ - uid: 35599
+ components:
+ - type: Transform
+ pos: 151.5,86.5
+ parent: 1
+ - uid: 35634
+ components:
+ - type: Transform
+ pos: 150.5,86.5
+ parent: 1
+ - uid: 35644
+ components:
+ - type: Transform
+ pos: 152.5,86.5
+ parent: 1
+ - uid: 35664
+ components:
+ - type: Transform
+ pos: 127.5,173.5
+ parent: 1
+ - uid: 35745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,126.5
+ parent: 1
+ - uid: 35746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,126.5
+ parent: 1
+ - uid: 35747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,126.5
+ parent: 1
+ - uid: 35749
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,126.5
+ parent: 1
+ - uid: 35795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,152.5
+ parent: 1
+ - uid: 35812
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - uid: 35819
+ components:
+ - type: Transform
+ pos: 123.5,163.5
+ parent: 1
+ - uid: 35897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,119.5
+ parent: 1
+ - uid: 35898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,119.5
+ parent: 1
+ - uid: 35899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,118.5
+ parent: 1
+ - uid: 35900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,117.5
+ parent: 1
+ - uid: 35901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,116.5
+ parent: 1
+ - uid: 35903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,148.5
+ parent: 1
+ - uid: 35906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,145.5
+ parent: 1
+ - uid: 35907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,149.5
+ parent: 1
+ - uid: 35919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,119.5
+ parent: 1
+ - uid: 35922
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,119.5
+ parent: 1
+ - uid: 35923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,119.5
+ parent: 1
+ - uid: 35924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,119.5
+ parent: 1
+ - uid: 35925
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,119.5
+ parent: 1
+ - uid: 35926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,119.5
+ parent: 1
+ - uid: 35927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,119.5
+ parent: 1
+ - uid: 35928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,119.5
+ parent: 1
+ - uid: 35939
+ components:
+ - type: Transform
+ pos: 27.5,74.5
+ parent: 1
+ - uid: 35947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,50.5
+ parent: 1
+ - uid: 35948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,84.5
+ parent: 1
+ - uid: 35959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,119.5
+ parent: 1
+ - uid: 35960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,118.5
+ parent: 1
+ - uid: 35961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,117.5
+ parent: 1
+ - uid: 35962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,116.5
+ parent: 1
+ - uid: 35963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,116.5
+ parent: 1
+ - uid: 35964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,116.5
+ parent: 1
+ - uid: 35965
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,116.5
+ parent: 1
+ - uid: 35967
+ components:
+ - type: Transform
+ pos: 27.5,78.5
+ parent: 1
+ - uid: 35970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,113.5
+ parent: 1
+ - uid: 35971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,112.5
+ parent: 1
+ - uid: 35972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,111.5
+ parent: 1
+ - uid: 35973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,110.5
+ parent: 1
+ - uid: 35974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,109.5
+ parent: 1
+ - uid: 35975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,108.5
+ parent: 1
+ - uid: 35976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,108.5
+ parent: 1
+ - uid: 35977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,108.5
+ parent: 1
+ - uid: 35978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,108.5
+ parent: 1
+ - uid: 35979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,108.5
+ parent: 1
+ - uid: 35980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,107.5
+ parent: 1
+ - uid: 35981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,106.5
+ parent: 1
+ - uid: 35982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,105.5
+ parent: 1
+ - uid: 35983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,104.5
+ parent: 1
+ - uid: 36043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,114.5
+ parent: 1
+ - uid: 36044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,113.5
+ parent: 1
+ - uid: 36045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,113.5
+ parent: 1
+ - uid: 36046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,113.5
+ parent: 1
+ - uid: 36056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,152.5
+ parent: 1
+ - uid: 36057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,152.5
+ parent: 1
+ - uid: 36140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,165.5
+ parent: 1
+ - uid: 36141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,165.5
+ parent: 1
+ - uid: 36155
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,136.5
+ parent: 1
+ - uid: 36331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,104.5
+ parent: 1
+ - uid: 36332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,104.5
+ parent: 1
+ - uid: 36333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,104.5
+ parent: 1
+ - uid: 36334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,103.5
+ parent: 1
+ - uid: 36335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,102.5
+ parent: 1
+ - uid: 36336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,101.5
+ parent: 1
+ - uid: 36345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,96.5
+ parent: 1
+ - uid: 36346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,96.5
+ parent: 1
+ - uid: 36347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,96.5
+ parent: 1
+ - uid: 36348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,96.5
+ parent: 1
+ - uid: 36349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,97.5
+ parent: 1
+ - uid: 36350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,99.5
+ parent: 1
+ - uid: 36351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,100.5
+ parent: 1
+ - uid: 36352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,98.5
+ parent: 1
+ - uid: 36353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,97.5
+ parent: 1
+ - uid: 36354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,97.5
+ parent: 1
+ - uid: 36355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,97.5
+ parent: 1
+ - uid: 36356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,97.5
+ parent: 1
+ - uid: 36357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,97.5
+ parent: 1
+ - uid: 36358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,97.5
+ parent: 1
+ - uid: 36359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,97.5
+ parent: 1
+ - uid: 36360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,97.5
+ parent: 1
+ - uid: 36361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,97.5
+ parent: 1
+ - uid: 36365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,96.5
+ parent: 1
+ - uid: 36374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,95.5
+ parent: 1
+ - uid: 36375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,93.5
+ parent: 1
+ - uid: 36376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,92.5
+ parent: 1
+ - uid: 36377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,91.5
+ parent: 1
+ - uid: 36378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,90.5
+ parent: 1
+ - uid: 36379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,89.5
+ parent: 1
+ - uid: 36380
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,88.5
+ parent: 1
+ - uid: 36381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,87.5
+ parent: 1
+ - uid: 36382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,86.5
+ parent: 1
+ - uid: 36383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,85.5
+ parent: 1
+ - uid: 36385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,84.5
+ parent: 1
+ - uid: 36386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,84.5
+ parent: 1
+ - uid: 36387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,84.5
+ parent: 1
+ - uid: 36388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,83.5
+ parent: 1
+ - uid: 36389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,82.5
+ parent: 1
+ - uid: 36390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,81.5
+ parent: 1
+ - uid: 36391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,80.5
+ parent: 1
+ - uid: 36396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,74.5
+ parent: 1
+ - uid: 36398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,73.5
+ parent: 1
+ - uid: 36407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,80.5
+ parent: 1
+ - uid: 36408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 36409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,80.5
+ parent: 1
+ - uid: 36412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,78.5
+ parent: 1
+ - uid: 36413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,78.5
+ parent: 1
+ - uid: 36414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,78.5
+ parent: 1
+ - uid: 36415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,78.5
+ parent: 1
+ - uid: 36416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,78.5
+ parent: 1
+ - uid: 36417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,78.5
+ parent: 1
+ - uid: 36433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,84.5
+ parent: 1
+ - uid: 36449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,134.5
+ parent: 1
+ - uid: 36450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,133.5
+ parent: 1
+ - uid: 36453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,132.5
+ parent: 1
+ - uid: 36455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,131.5
+ parent: 1
+ - uid: 36468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,131.5
+ parent: 1
+ - uid: 36474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,131.5
+ parent: 1
+ - uid: 36478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,131.5
+ parent: 1
+ - uid: 36479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,130.5
+ parent: 1
+ - uid: 36480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,129.5
+ parent: 1
+ - uid: 36481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,128.5
+ parent: 1
+ - uid: 36482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,128.5
+ parent: 1
+ - uid: 36483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,128.5
+ parent: 1
+ - uid: 36484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,127.5
+ parent: 1
+ - uid: 36485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,126.5
+ parent: 1
+ - uid: 36486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,125.5
+ parent: 1
+ - uid: 36487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,124.5
+ parent: 1
+ - uid: 36493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,124.5
+ parent: 1
+ - uid: 36499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,122.5
+ parent: 1
+ - uid: 36503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,121.5
+ parent: 1
+ - uid: 36504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,121.5
+ parent: 1
+ - uid: 36526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,168.5
+ parent: 1
+ - uid: 36528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,167.5
+ parent: 1
+ - uid: 36531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,166.5
+ parent: 1
+ - uid: 36532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,165.5
+ parent: 1
+ - uid: 36533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,164.5
+ parent: 1
+ - uid: 36534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,162.5
+ parent: 1
+ - uid: 36535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,163.5
+ parent: 1
+ - uid: 36831
+ components:
+ - type: Transform
+ pos: 95.5,87.5
+ parent: 1
+ - uid: 37043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,157.5
+ parent: 1
+ - uid: 37044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,157.5
+ parent: 1
+ - uid: 37054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,82.5
+ parent: 1
+ - uid: 37055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,82.5
+ parent: 1
+ - uid: 37057
+ components:
+ - type: Transform
+ pos: 151.5,115.5
+ parent: 1
+ - uid: 37058
+ components:
+ - type: Transform
+ pos: 152.5,115.5
+ parent: 1
+ - uid: 37059
+ components:
+ - type: Transform
+ pos: 153.5,115.5
+ parent: 1
+ - uid: 37060
+ components:
+ - type: Transform
+ pos: 154.5,115.5
+ parent: 1
+ - uid: 37061
+ components:
+ - type: Transform
+ pos: 155.5,115.5
+ parent: 1
+ - uid: 37062
+ components:
+ - type: Transform
+ pos: 155.5,114.5
+ parent: 1
+ - uid: 37063
+ components:
+ - type: Transform
+ pos: 155.5,113.5
+ parent: 1
+ - uid: 37064
+ components:
+ - type: Transform
+ pos: 156.5,113.5
+ parent: 1
+ - uid: 37065
+ components:
+ - type: Transform
+ pos: 157.5,113.5
+ parent: 1
+ - uid: 37066
+ components:
+ - type: Transform
+ pos: 158.5,113.5
+ parent: 1
+ - uid: 37067
+ components:
+ - type: Transform
+ pos: 159.5,113.5
+ parent: 1
+ - uid: 37068
+ components:
+ - type: Transform
+ pos: 160.5,113.5
+ parent: 1
+ - uid: 37069
+ components:
+ - type: Transform
+ pos: 161.5,113.5
+ parent: 1
+ - uid: 37070
+ components:
+ - type: Transform
+ pos: 162.5,113.5
+ parent: 1
+ - uid: 37071
+ components:
+ - type: Transform
+ pos: 157.5,114.5
+ parent: 1
+ - uid: 37072
+ components:
+ - type: Transform
+ pos: 157.5,115.5
+ parent: 1
+ - uid: 37093
+ components:
+ - type: Transform
+ pos: 170.5,129.5
+ parent: 1
+ - uid: 37094
+ components:
+ - type: Transform
+ pos: 171.5,129.5
+ parent: 1
+ - uid: 37095
+ components:
+ - type: Transform
+ pos: 172.5,129.5
+ parent: 1
+ - uid: 37096
+ components:
+ - type: Transform
+ pos: 172.5,130.5
+ parent: 1
+ - uid: 37097
+ components:
+ - type: Transform
+ pos: 172.5,131.5
+ parent: 1
+ - uid: 37098
+ components:
+ - type: Transform
+ pos: 172.5,132.5
+ parent: 1
+ - uid: 37099
+ components:
+ - type: Transform
+ pos: 161.5,152.5
+ parent: 1
+ - uid: 37100
+ components:
+ - type: Transform
+ pos: 162.5,152.5
+ parent: 1
+ - uid: 37101
+ components:
+ - type: Transform
+ pos: 163.5,152.5
+ parent: 1
+ - uid: 37102
+ components:
+ - type: Transform
+ pos: 164.5,152.5
+ parent: 1
+ - uid: 37103
+ components:
+ - type: Transform
+ pos: 165.5,152.5
+ parent: 1
+ - uid: 37104
+ components:
+ - type: Transform
+ pos: 166.5,152.5
+ parent: 1
+ - uid: 37105
+ components:
+ - type: Transform
+ pos: 167.5,152.5
+ parent: 1
+ - uid: 37106
+ components:
+ - type: Transform
+ pos: 167.5,151.5
+ parent: 1
+ - uid: 37107
+ components:
+ - type: Transform
+ pos: 167.5,150.5
+ parent: 1
+ - uid: 37108
+ components:
+ - type: Transform
+ pos: 167.5,149.5
+ parent: 1
+ - uid: 37109
+ components:
+ - type: Transform
+ pos: 167.5,148.5
+ parent: 1
+ - uid: 37110
+ components:
+ - type: Transform
+ pos: 168.5,148.5
+ parent: 1
+ - uid: 37111
+ components:
+ - type: Transform
+ pos: 168.5,147.5
+ parent: 1
+ - uid: 37112
+ components:
+ - type: Transform
+ pos: 168.5,146.5
+ parent: 1
+ - uid: 37113
+ components:
+ - type: Transform
+ pos: 168.5,145.5
+ parent: 1
+ - uid: 37114
+ components:
+ - type: Transform
+ pos: 168.5,144.5
+ parent: 1
+ - uid: 37115
+ components:
+ - type: Transform
+ pos: 168.5,143.5
+ parent: 1
+ - uid: 37116
+ components:
+ - type: Transform
+ pos: 168.5,142.5
+ parent: 1
+ - uid: 37117
+ components:
+ - type: Transform
+ pos: 168.5,141.5
+ parent: 1
+ - uid: 37118
+ components:
+ - type: Transform
+ pos: 168.5,140.5
+ parent: 1
+ - uid: 37119
+ components:
+ - type: Transform
+ pos: 169.5,140.5
+ parent: 1
+ - uid: 37120
+ components:
+ - type: Transform
+ pos: 170.5,140.5
+ parent: 1
+ - uid: 37121
+ components:
+ - type: Transform
+ pos: 170.5,139.5
+ parent: 1
+ - uid: 37122
+ components:
+ - type: Transform
+ pos: 171.5,139.5
+ parent: 1
+ - uid: 37123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 172.5,139.5
+ parent: 1
+ - uid: 37124
+ components:
+ - type: Transform
+ pos: 172.5,138.5
+ parent: 1
+ - uid: 37125
+ components:
+ - type: Transform
+ pos: 172.5,137.5
+ parent: 1
+ - uid: 37126
+ components:
+ - type: Transform
+ pos: 172.5,136.5
+ parent: 1
+ - uid: 37127
+ components:
+ - type: Transform
+ pos: 172.5,135.5
+ parent: 1
+ - uid: 37128
+ components:
+ - type: Transform
+ pos: 172.5,134.5
+ parent: 1
+ - uid: 37129
+ components:
+ - type: Transform
+ pos: 172.5,133.5
+ parent: 1
+ - uid: 37153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,131.5
+ parent: 1
+ - uid: 37163
+ components:
+ - type: Transform
+ pos: 152.5,146.5
+ parent: 1
+ - uid: 37178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,132.5
+ parent: 1
+ - uid: 37187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,133.5
+ parent: 1
+ - uid: 37192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,131.5
+ parent: 1
+ - uid: 37193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 163.5,131.5
+ parent: 1
+ - uid: 37194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,131.5
+ parent: 1
+ - uid: 37195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,131.5
+ parent: 1
+ - uid: 37202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,86.5
+ parent: 1
+ - uid: 37203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,86.5
+ parent: 1
+ - uid: 37204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,86.5
+ parent: 1
+ - uid: 37205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,86.5
+ parent: 1
+ - uid: 37209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,85.5
+ parent: 1
+- proto: Chair
+ entities:
+ - uid: 107
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,117.5
+ parent: 1
+ - uid: 745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,171.5
+ parent: 1
+ - uid: 755
+ components:
+ - type: Transform
+ pos: 91.5,173.5
+ parent: 1
+ - uid: 774
+ components:
+ - type: Transform
+ pos: 92.5,173.5
+ parent: 1
+ - uid: 952
+ components:
+ - type: Transform
+ pos: 92.5,45.5
+ parent: 1
+ - uid: 1053
+ components:
+ - type: Transform
+ pos: 142.5,96.5
+ parent: 1
+ - uid: 1383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,50.5
+ parent: 1
+ - uid: 1697
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,54.5
+ parent: 1
+ - uid: 1912
+ components:
+ - type: Transform
+ pos: 95.5,44.5
+ parent: 1
+ - uid: 2096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,70.5
+ parent: 1
+ - uid: 3063
+ components:
+ - type: Transform
+ pos: 130.5,113.5
+ parent: 1
+ - uid: 3793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,80.5
+ parent: 1
+ - uid: 3943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,150.5
+ parent: 1
+ - uid: 4183
+ components:
+ - type: Transform
+ pos: 98.5,46.5
+ parent: 1
+ - uid: 4185
+ components:
+ - type: Transform
+ pos: 97.5,45.5
+ parent: 1
+ - uid: 4373
+ components:
+ - type: Transform
+ pos: 86.5,34.5
+ parent: 1
+ - uid: 4699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,44.5
+ parent: 1
+ - uid: 4879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,54.5
+ parent: 1
+ - uid: 4880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,55.5
+ parent: 1
+ - uid: 5241
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,67.5
+ parent: 1
+ - uid: 5372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,143.5
+ parent: 1
+ - uid: 5947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,102.5
+ parent: 1
+ - uid: 6491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,112.5
+ parent: 1
+ - uid: 6492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,112.5
+ parent: 1
+ - uid: 6523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,171.5
+ parent: 1
+ - uid: 6907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,122.5
+ parent: 1
+ - uid: 7201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,55.5
+ parent: 1
+ - uid: 7209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,55.5
+ parent: 1
+ - uid: 7468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,50.5
+ parent: 1
+ - uid: 7508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,50.5
+ parent: 1
+ - uid: 9260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,107.5
+ parent: 1
+ - uid: 9403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,98.5
+ parent: 1
+ - uid: 9660
+ components:
+ - type: Transform
+ pos: 87.5,42.5
+ parent: 1
+ - uid: 9776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,68.5
+ parent: 1
+ - uid: 9787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,53.5
+ parent: 1
+ - uid: 9806
+ components:
+ - type: Transform
+ pos: 109.5,71.5
+ parent: 1
+ - uid: 9827
+ components:
+ - type: Transform
+ pos: 110.5,71.5
+ parent: 1
+ - uid: 9828
+ components:
+ - type: Transform
+ pos: 111.5,71.5
+ parent: 1
+ - uid: 9829
+ components:
+ - type: Transform
+ pos: 104.5,72.5
+ parent: 1
+ - uid: 9836
+ components:
+ - type: Transform
+ pos: 108.5,71.5
+ parent: 1
+ - uid: 9837
+ components:
+ - type: Transform
+ pos: 108.5,72.5
+ parent: 1
+ - uid: 10336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,149.5
+ parent: 1
+ - uid: 10925
+ components:
+ - type: Transform
+ pos: 79.5,63.5
+ parent: 1
+ - uid: 11046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,117.5
+ parent: 1
+ - uid: 11102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,34.5
+ parent: 1
+ - uid: 12047
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,115.5
+ parent: 1
+ - uid: 12704
+ components:
+ - type: Transform
+ pos: 93.5,45.5
+ parent: 1
+ - uid: 13769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,144.5
+ parent: 1
+ - uid: 14067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,117.5
+ parent: 1
+ - uid: 15047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,158.5
+ parent: 1
+ - uid: 15048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,159.5
+ parent: 1
+ - uid: 15058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,78.5
+ parent: 1
+ - uid: 15059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,78.5
+ parent: 1
+ - uid: 15060
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,78.5
+ parent: 1
+ - uid: 15061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,78.5
+ parent: 1
+ - uid: 15080
+ components:
+ - type: Transform
+ pos: 105.5,86.5
+ parent: 1
+ - uid: 16013
+ components:
+ - type: Transform
+ pos: 104.5,86.5
+ parent: 1
+ - uid: 16014
+ components:
+ - type: Transform
+ pos: 107.5,86.5
+ parent: 1
+ - uid: 16044
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - uid: 16045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,136.5
+ parent: 1
+ - uid: 16046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,134.5
+ parent: 1
+ - uid: 16047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,133.5
+ parent: 1
+ - uid: 16048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,136.5
+ parent: 1
+ - uid: 16084
+ components:
+ - type: Transform
+ pos: 108.5,86.5
+ parent: 1
+ - uid: 16193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,132.5
+ parent: 1
+ - uid: 16194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,132.5
+ parent: 1
+ - uid: 16195
+ components:
+ - type: Transform
+ pos: 121.5,134.5
+ parent: 1
+ - uid: 16196
+ components:
+ - type: Transform
+ pos: 95.5,134.5
+ parent: 1
+ - uid: 16197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,154.5
+ parent: 1
+ - uid: 16198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,154.5
+ parent: 1
+ - uid: 16209
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,121.5
+ parent: 1
+ - uid: 16210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,121.5
+ parent: 1
+ - uid: 17303
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,147.5
+ parent: 1
+ - uid: 17722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,102.5
+ parent: 1
+ - uid: 17723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,102.5
+ parent: 1
+ - uid: 17724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,103.5
+ parent: 1
+ - uid: 17725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,104.5
+ parent: 1
+ - uid: 17921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,93.5
+ parent: 1
+ - uid: 17968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,100.5
+ parent: 1
+ - uid: 18021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,84.5
+ parent: 1
+ - uid: 18023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,84.5
+ parent: 1
+ - uid: 18135
+ components:
+ - type: Transform
+ pos: 60.5,107.5
+ parent: 1
+ - uid: 18140
+ components:
+ - type: Transform
+ pos: 62.5,107.5
+ parent: 1
+ - uid: 18150
+ components:
+ - type: Transform
+ pos: 62.5,106.5
+ parent: 1
+ - uid: 18151
+ components:
+ - type: Transform
+ pos: 61.5,106.5
+ parent: 1
+ - uid: 18152
+ components:
+ - type: Transform
+ pos: 60.5,106.5
+ parent: 1
+ - uid: 18193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,98.5
+ parent: 1
+ - uid: 18194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,100.5
+ parent: 1
+ - uid: 18195
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,99.5
+ parent: 1
+ - uid: 18196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,92.5
+ parent: 1
+ - uid: 18197
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,93.5
+ parent: 1
+ - uid: 18198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,94.5
+ parent: 1
+ - uid: 18225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,101.5
+ parent: 1
+ - uid: 18226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,102.5
+ parent: 1
+ - uid: 18227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,95.5
+ parent: 1
+ - uid: 18228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,94.5
+ parent: 1
+ - uid: 18229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,93.5
+ parent: 1
+ - uid: 18571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,146.5
+ parent: 1
+ - uid: 18713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,78.5
+ parent: 1
+ - uid: 18714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,79.5
+ parent: 1
+ - uid: 18884
+ components:
+ - type: Transform
+ pos: 133.5,78.5
+ parent: 1
+ - uid: 18885
+ components:
+ - type: Transform
+ pos: 132.5,78.5
+ parent: 1
+ - uid: 18903
+ components:
+ - type: Transform
+ pos: 80.5,158.5
+ parent: 1
+ - uid: 19070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,87.5
+ parent: 1
+ - uid: 19071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,88.5
+ parent: 1
+ - uid: 19332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,104.5
+ parent: 1
+ - uid: 19333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,103.5
+ parent: 1
+ - uid: 19334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,102.5
+ parent: 1
+ - uid: 19352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,102.5
+ parent: 1
+ - uid: 19355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,103.5
+ parent: 1
+ - uid: 19356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,104.5
+ parent: 1
+ - uid: 19415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,102.5
+ parent: 1
+ - uid: 19416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,102.5
+ parent: 1
+ - uid: 19417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,102.5
+ parent: 1
+ - uid: 19454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,134.5
+ parent: 1
+ - uid: 19848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,149.5
+ parent: 1
+ - uid: 20445
+ components:
+ - type: Transform
+ pos: 33.5,101.5
+ parent: 1
+ - uid: 20447
+ components:
+ - type: Transform
+ pos: 28.5,103.5
+ parent: 1
+ - uid: 20448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,101.5
+ parent: 1
+ - uid: 20458
+ components:
+ - type: Transform
+ pos: 34.5,101.5
+ parent: 1
+ - uid: 20459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,101.5
+ parent: 1
+ - uid: 20460
+ components:
+ - type: Transform
+ pos: 27.5,103.5
+ parent: 1
+ - uid: 20826
+ components:
+ - type: Transform
+ pos: 35.5,101.5
+ parent: 1
+ - uid: 20858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,90.5
+ parent: 1
+ - uid: 20859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,91.5
+ parent: 1
+ - uid: 20860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,92.5
+ parent: 1
+ - uid: 20861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,93.5
+ parent: 1
+ - uid: 20933
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,105.5
+ parent: 1
+ - uid: 20934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,104.5
+ parent: 1
+ - uid: 20935
+ components:
+ - type: Transform
+ pos: 42.5,87.5
+ parent: 1
+ - uid: 20936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,85.5
+ parent: 1
+ - uid: 21019
+ components:
+ - type: Transform
+ pos: 114.5,156.5
+ parent: 1
+ - uid: 21020
+ components:
+ - type: Transform
+ pos: 115.5,156.5
+ parent: 1
+ - uid: 21021
+ components:
+ - type: Transform
+ pos: 102.5,156.5
+ parent: 1
+ - uid: 21022
+ components:
+ - type: Transform
+ pos: 103.5,156.5
+ parent: 1
+ - uid: 21026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,151.5
+ parent: 1
+ - uid: 21027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,152.5
+ parent: 1
+ - uid: 21028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,151.5
+ parent: 1
+ - uid: 21029
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,152.5
+ parent: 1
+ - uid: 21035
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,150.5
+ parent: 1
+ - uid: 21871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,151.5
+ parent: 1
+ - uid: 22681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,51.5
+ parent: 1
+ - uid: 22682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,52.5
+ parent: 1
+ - uid: 22683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,51.5
+ parent: 1
+ - uid: 22684
+ components:
+ - type: Transform
+ pos: 144.5,51.5
+ parent: 1
+ - uid: 22685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,49.5
+ parent: 1
+ - uid: 22686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,48.5
+ parent: 1
+ - uid: 22687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,48.5
+ parent: 1
+ - uid: 22699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,62.5
+ parent: 1
+ - uid: 22717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,73.5
+ parent: 1
+ - uid: 22718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,70.5
+ parent: 1
+ - uid: 22719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,67.5
+ parent: 1
+ - uid: 22851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,52.5
+ parent: 1
+ - uid: 22874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,72.5
+ parent: 1
+ - uid: 22875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,65.5
+ parent: 1
+ - uid: 22876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,66.5
+ parent: 1
+ - uid: 22996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,61.5
+ parent: 1
+ - uid: 22997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,62.5
+ parent: 1
+ - uid: 22998
+ components:
+ - type: Transform
+ pos: 141.5,71.5
+ parent: 1
+ - uid: 22999
+ components:
+ - type: Transform
+ pos: 140.5,71.5
+ parent: 1
+ - uid: 23000
+ components:
+ - type: Transform
+ pos: 142.5,71.5
+ parent: 1
+ - uid: 23001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,69.5
+ parent: 1
+ - uid: 23002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,70.5
+ parent: 1
+ - uid: 23003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,71.5
+ parent: 1
+ - uid: 23020
+ components:
+ - type: Transform
+ pos: 131.5,50.5
+ parent: 1
+ - uid: 23021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,48.5
+ parent: 1
+ - uid: 23075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,54.5
+ parent: 1
+ - uid: 23076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,54.5
+ parent: 1
+ - uid: 23077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,54.5
+ parent: 1
+ - uid: 23139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,55.5
+ parent: 1
+ - uid: 23140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,55.5
+ parent: 1
+ - uid: 23141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,55.5
+ parent: 1
+ - uid: 23355
+ components:
+ - type: Transform
+ pos: 98.5,45.5
+ parent: 1
+ - uid: 23597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,120.5
+ parent: 1
+ - uid: 23880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,122.5
+ parent: 1
+ - uid: 24348
+ components:
+ - type: Transform
+ pos: 101.5,71.5
+ parent: 1
+ - uid: 24389
+ components:
+ - type: Transform
+ pos: 102.5,71.5
+ parent: 1
+ - uid: 24391
+ components:
+ - type: Transform
+ pos: 103.5,71.5
+ parent: 1
+ - uid: 24412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,44.5
+ parent: 1
+ - uid: 24517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,45.5
+ parent: 1
+ - uid: 24538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,142.5
+ parent: 1
+ - uid: 24699
+ components:
+ - type: Transform
+ pos: 104.5,71.5
+ parent: 1
+ - uid: 25172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,54.5
+ parent: 1
+ - uid: 25475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,56.5
+ parent: 1
+ - uid: 26173
+ components:
+ - type: Transform
+ pos: 96.5,45.5
+ parent: 1
+ - uid: 26588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,103.5
+ parent: 1
+ - uid: 26687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,109.5
+ parent: 1
+ - uid: 26688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,108.5
+ parent: 1
+ - uid: 26689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,107.5
+ parent: 1
+ - uid: 26724
+ components:
+ - type: Transform
+ pos: 109.5,72.5
+ parent: 1
+ - uid: 26725
+ components:
+ - type: Transform
+ pos: 110.5,72.5
+ parent: 1
+ - uid: 26726
+ components:
+ - type: Transform
+ pos: 111.5,72.5
+ parent: 1
+ - uid: 26730
+ components:
+ - type: Transform
+ pos: 103.5,72.5
+ parent: 1
+ - uid: 26731
+ components:
+ - type: Transform
+ pos: 102.5,72.5
+ parent: 1
+ - uid: 26732
+ components:
+ - type: Transform
+ pos: 101.5,72.5
+ parent: 1
+ - uid: 26824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,143.5
+ parent: 1
+ - uid: 26848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,83.5
+ parent: 1
+ - uid: 26849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,82.5
+ parent: 1
+ - uid: 26850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,81.5
+ parent: 1
+ - uid: 26851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,82.5
+ parent: 1
+ - uid: 26852
+ components:
+ - type: Transform
+ pos: 98.5,85.5
+ parent: 1
+ - uid: 26853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,83.5
+ parent: 1
+ - uid: 26854
+ components:
+ - type: Transform
+ pos: 114.5,83.5
+ parent: 1
+ - uid: 26855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,81.5
+ parent: 1
+ - uid: 26858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,91.5
+ parent: 1
+ - uid: 26859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,92.5
+ parent: 1
+ - uid: 26860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,93.5
+ parent: 1
+ - uid: 27221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,82.5
+ parent: 1
+ - uid: 27225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,82.5
+ parent: 1
+ - uid: 27255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,94.5
+ parent: 1
+ - uid: 27397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,81.5
+ parent: 1
+ - uid: 27398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,80.5
+ parent: 1
+ - uid: 27962
+ components:
+ - type: Transform
+ pos: 62.5,65.5
+ parent: 1
+ - uid: 27963
+ components:
+ - type: Transform
+ pos: 61.5,65.5
+ parent: 1
+ - uid: 27964
+ components:
+ - type: Transform
+ pos: 63.5,65.5
+ parent: 1
+ - uid: 28144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,104.5
+ parent: 1
+ - uid: 28145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,103.5
+ parent: 1
+ - uid: 28163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,102.5
+ parent: 1
+ - uid: 28255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,123.5
+ parent: 1
+ - uid: 28260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,123.5
+ parent: 1
+ - uid: 28261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,123.5
+ parent: 1
+ - uid: 28262
+ components:
+ - type: Transform
+ pos: 109.5,119.5
+ parent: 1
+ - uid: 28263
+ components:
+ - type: Transform
+ pos: 107.5,119.5
+ parent: 1
+ - uid: 28264
+ components:
+ - type: Transform
+ pos: 108.5,119.5
+ parent: 1
+ - uid: 28282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,120.5
+ parent: 1
+ - uid: 28283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,120.5
+ parent: 1
+ - uid: 28285
+ components:
+ - type: Transform
+ pos: 105.5,122.5
+ parent: 1
+ - uid: 28287
+ components:
+ - type: Transform
+ pos: 111.5,122.5
+ parent: 1
+ - uid: 28489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,143.5
+ parent: 1
+ - uid: 28619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,86.5
+ parent: 1
+ - uid: 28620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,85.5
+ parent: 1
+ - uid: 28621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,84.5
+ parent: 1
+ - uid: 28652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,53.5
+ parent: 1
+ - uid: 28653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,54.5
+ parent: 1
+ - uid: 28654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,55.5
+ parent: 1
+ - uid: 28739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,142.5
+ parent: 1
+ - uid: 28800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,92.5
+ parent: 1
+ - uid: 28801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,91.5
+ parent: 1
+ - uid: 28802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,90.5
+ parent: 1
+ - uid: 28898
+ components:
+ - type: Transform
+ pos: 136.5,78.5
+ parent: 1
+ - uid: 28901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,63.5
+ parent: 1
+ - uid: 28902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,63.5
+ parent: 1
+ - uid: 28930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,66.5
+ parent: 1
+ - uid: 28931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,65.5
+ parent: 1
+ - uid: 28935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,77.5
+ parent: 1
+ - uid: 28936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,76.5
+ parent: 1
+ - uid: 28937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,75.5
+ parent: 1
+ - uid: 28949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,41.5
+ parent: 1
+ - uid: 28951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,71.5
+ parent: 1
+ - uid: 29059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,144.5
+ parent: 1
+ - uid: 29103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,150.5
+ parent: 1
+ - uid: 29104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,151.5
+ parent: 1
+ - uid: 29136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,41.5
+ parent: 1
+ - uid: 29137
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,41.5
+ parent: 1
+ - uid: 29138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,41.5
+ parent: 1
+ - uid: 29139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,41.5
+ parent: 1
+ - uid: 29140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,41.5
+ parent: 1
+ - uid: 29651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,117.5
+ parent: 1
+ - uid: 29652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,117.5
+ parent: 1
+ - uid: 29653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,117.5
+ parent: 1
+ - uid: 29734
+ components:
+ - type: Transform
+ pos: 150.5,139.5
+ parent: 1
+ - uid: 29735
+ components:
+ - type: Transform
+ pos: 151.5,139.5
+ parent: 1
+ - uid: 29818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,127.5
+ parent: 1
+ - uid: 29819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,129.5
+ parent: 1
+ - uid: 29820
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,128.5
+ parent: 1
+ - uid: 29843
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,151.5
+ parent: 1
+ - uid: 29845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,150.5
+ parent: 1
+ - uid: 29847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,149.5
+ parent: 1
+ - uid: 29861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,151.5
+ parent: 1
+ - uid: 29866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,149.5
+ parent: 1
+ - uid: 29868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,150.5
+ parent: 1
+ - uid: 29929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,151.5
+ parent: 1
+ - uid: 29933
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,151.5
+ parent: 1
+ - uid: 30013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,150.5
+ parent: 1
+ - uid: 30137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,136.5
+ parent: 1
+ - uid: 30191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,148.5
+ parent: 1
+ - uid: 30424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,85.5
+ parent: 1
+ - uid: 30555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,155.5
+ parent: 1
+ - uid: 30597
+ components:
+ - type: Transform
+ pos: 137.5,78.5
+ parent: 1
+ - uid: 32073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,155.5
+ parent: 1
+ - uid: 32090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,75.5
+ parent: 1
+ - uid: 32091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,74.5
+ parent: 1
+ - uid: 32092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,73.5
+ parent: 1
+ - uid: 32126
+ components:
+ - type: Transform
+ pos: 18.5,116.5
+ parent: 1
+ - uid: 32165
+ components:
+ - type: Transform
+ pos: 19.5,116.5
+ parent: 1
+ - uid: 32387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,171.5
+ parent: 1
+ - uid: 33436
+ components:
+ - type: Transform
+ pos: 90.5,20.5
+ parent: 1
+ - uid: 33438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,21.5
+ parent: 1
+ - uid: 33439
+ components:
+ - type: Transform
+ pos: 93.5,20.5
+ parent: 1
+ - uid: 33441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,21.5
+ parent: 1
+ - uid: 33442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,21.5
+ parent: 1
+ - uid: 33444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,21.5
+ parent: 1
+ - uid: 33445
+ components:
+ - type: Transform
+ pos: 91.5,20.5
+ parent: 1
+ - uid: 33447
+ components:
+ - type: Transform
+ pos: 96.5,20.5
+ parent: 1
+ - uid: 33464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,22.5
+ parent: 1
+ - uid: 33465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,23.5
+ parent: 1
+ - uid: 33607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,37.5
+ parent: 1
+ - uid: 33608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,36.5
+ parent: 1
+ - uid: 33609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,35.5
+ parent: 1
+ - uid: 33610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,34.5
+ parent: 1
+ - uid: 33611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,31.5
+ parent: 1
+ - uid: 33612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,31.5
+ parent: 1
+ - uid: 33718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,27.5
+ parent: 1
+ - uid: 33719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,26.5
+ parent: 1
+ - uid: 33720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,25.5
+ parent: 1
+ - uid: 33721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,18.5
+ parent: 1
+ - uid: 33722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,18.5
+ parent: 1
+ - uid: 33723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,18.5
+ parent: 1
+ - uid: 33724
+ components:
+ - type: Transform
+ pos: 94.5,32.5
+ parent: 1
+ - uid: 33725
+ components:
+ - type: Transform
+ pos: 96.5,32.5
+ parent: 1
+ - uid: 33726
+ components:
+ - type: Transform
+ pos: 95.5,32.5
+ parent: 1
+ - uid: 33744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,45.5
+ parent: 1
+ - uid: 33745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,44.5
+ parent: 1
+ - uid: 33746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,45.5
+ parent: 1
+ - uid: 33892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,17.5
+ parent: 1
+ - uid: 33972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,15.5
+ parent: 1
+ - uid: 33973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,16.5
+ parent: 1
+ - uid: 33977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,16.5
+ parent: 1
+ - uid: 33978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,16.5
+ parent: 1
+ - uid: 34030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,16.5
+ parent: 1
+ - uid: 34035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,17.5
+ parent: 1
+ - uid: 34041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,16.5
+ parent: 1
+ - uid: 34042
+ components:
+ - type: Transform
+ pos: 74.5,18.5
+ parent: 1
+ - uid: 34043
+ components:
+ - type: Transform
+ pos: 75.5,18.5
+ parent: 1
+ - uid: 34044
+ components:
+ - type: Transform
+ pos: 76.5,18.5
+ parent: 1
+ - uid: 34045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,16.5
+ parent: 1
+ - uid: 34046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,16.5
+ parent: 1
+ - uid: 34047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,16.5
+ parent: 1
+ - uid: 34080
+ components:
+ - type: Transform
+ pos: 96.5,44.5
+ parent: 1
+ - uid: 34087
+ components:
+ - type: Transform
+ pos: 92.5,32.5
+ parent: 1
+ - uid: 34476
+ components:
+ - type: Transform
+ pos: 92.5,46.5
+ parent: 1
+ - uid: 34477
+ components:
+ - type: Transform
+ pos: 91.5,45.5
+ parent: 1
+ - uid: 34479
+ components:
+ - type: Transform
+ pos: 91.5,46.5
+ parent: 1
+ - uid: 34506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,48.5
+ parent: 1
+ - uid: 34507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,48.5
+ parent: 1
+ - uid: 34508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,47.5
+ parent: 1
+ - uid: 34509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,50.5
+ parent: 1
+ - uid: 34510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,51.5
+ parent: 1
+ - uid: 34511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,51.5
+ parent: 1
+ - uid: 34612
+ components:
+ - type: Transform
+ pos: 94.5,45.5
+ parent: 1
+ - uid: 34626
+ components:
+ - type: Transform
+ pos: 136.5,86.5
+ parent: 1
+ - uid: 34642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,64.5
+ parent: 1
+ - uid: 34643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,65.5
+ parent: 1
+ - uid: 34694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,71.5
+ parent: 1
+ - uid: 34700
+ components:
+ - type: Transform
+ pos: 95.5,45.5
+ parent: 1
+ - uid: 34773
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,138.5
+ parent: 1
+ - uid: 34875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,77.5
+ parent: 1
+ - uid: 34876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,77.5
+ parent: 1
+ - uid: 34987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,148.5
+ parent: 1
+ - uid: 34989
+ components:
+ - type: Transform
+ pos: 93.5,44.5
+ parent: 1
+ - uid: 34990
+ components:
+ - type: Transform
+ pos: 94.5,44.5
+ parent: 1
+ - uid: 35161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,170.5
+ parent: 1
+ - uid: 35225
+ components:
+ - type: Transform
+ pos: 97.5,46.5
+ parent: 1
+ - uid: 35227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,172.5
+ parent: 1
+ - uid: 35228
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,171.5
+ parent: 1
+ - uid: 35264
+ components:
+ - type: Transform
+ pos: 93.5,46.5
+ parent: 1
+ - uid: 35380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,164.5
+ parent: 1
+ - uid: 35381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,163.5
+ parent: 1
+ - uid: 35411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,170.5
+ parent: 1
+ - uid: 35412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,171.5
+ parent: 1
+ - uid: 35484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,128.5
+ parent: 1
+ - uid: 35531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,114.5
+ parent: 1
+ - uid: 35608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,159.5
+ parent: 1
+ - uid: 35609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,160.5
+ parent: 1
+ - uid: 35631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,155.5
+ parent: 1
+ - uid: 35632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,157.5
+ parent: 1
+ - uid: 35633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,158.5
+ parent: 1
+ - uid: 35841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,131.5
+ parent: 1
+ - uid: 35842
+ components:
+ - type: Transform
+ pos: 52.5,133.5
+ parent: 1
+ - uid: 35843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,131.5
+ parent: 1
+ - uid: 35844
+ components:
+ - type: Transform
+ pos: 51.5,133.5
+ parent: 1
+ - uid: 35845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,128.5
+ parent: 1
+ - uid: 35846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,129.5
+ parent: 1
+ - uid: 35847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,129.5
+ parent: 1
+ - uid: 35910
+ components:
+ - type: Transform
+ pos: 96.5,46.5
+ parent: 1
+ - uid: 35918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,142.5
+ parent: 1
+ - uid: 35941
+ components:
+ - type: Transform
+ pos: 96.5,115.5
+ parent: 1
+ - uid: 36122
+ components:
+ - type: Transform
+ pos: 34.5,123.5
+ parent: 1
+ - uid: 36124
+ components:
+ - type: Transform
+ pos: 33.5,123.5
+ parent: 1
+ - uid: 36125
+ components:
+ - type: Transform
+ pos: 32.5,123.5
+ parent: 1
+ - uid: 36171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,109.5
+ parent: 1
+ - uid: 36172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,118.5
+ parent: 1
+ - uid: 36173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,118.5
+ parent: 1
+ - uid: 36174
+ components:
+ - type: Transform
+ pos: 16.5,108.5
+ parent: 1
+ - uid: 36175
+ components:
+ - type: Transform
+ pos: 15.5,108.5
+ parent: 1
+ - uid: 36434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,88.5
+ parent: 1
+ - uid: 36435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,87.5
+ parent: 1
+ - uid: 36436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,86.5
+ parent: 1
+ - uid: 36443
+ components:
+ - type: Transform
+ pos: 19.5,84.5
+ parent: 1
+ - uid: 36444
+ components:
+ - type: Transform
+ pos: 20.5,84.5
+ parent: 1
+ - uid: 36445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,82.5
+ parent: 1
+ - uid: 36446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 20.5,82.5
+ parent: 1
+ - uid: 36472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,82.5
+ parent: 1
+ - uid: 36473
+ components:
+ - type: Transform
+ pos: 35.5,84.5
+ parent: 1
+ - uid: 36868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,165.5
+ parent: 1
+ - uid: 36870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,164.5
+ parent: 1
+ - uid: 36872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,168.5
+ parent: 1
+ - uid: 36964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,169.5
+ parent: 1
+ - uid: 37047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,157.5
+ parent: 1
+ - uid: 37048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,155.5
+ parent: 1
+ - uid: 37140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 163.5,148.5
+ parent: 1
+ - uid: 37151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 166.5,132.5
+ parent: 1
+ - uid: 37200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,135.5
+ parent: 1
+ - uid: 37363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,64.5
+ parent: 1
+- proto: ChairFolding
+ entities:
+ - uid: 14489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 166.70659,134.48993
+ parent: 1
+ - uid: 33440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.61871,26.82513
+ parent: 1
+ - uid: 33443
+ components:
+ - type: Transform
+ pos: 99.6083,27.866798
+ parent: 1
+ - uid: 33446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.07705,25.866798
+ parent: 1
+ - uid: 33727
+ components:
+ - type: Transform
+ pos: 94.51011,20.608078
+ parent: 1
+ - uid: 33728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.369484,18.559784
+ parent: 1
+- proto: ChairFoldingSpawnFolded
+ entities:
+ - uid: 27823
+ components:
+ - type: Transform
+ pos: 90.5,48.5
+ parent: 1
+ - uid: 30278
+ components:
+ - type: Transform
+ pos: 91.5,48.5
+ parent: 1
+ - uid: 30279
+ components:
+ - type: Transform
+ pos: 90.5016,48.969498
+ parent: 1
+ - uid: 30284
+ components:
+ - type: Transform
+ pos: 91.49901,48.966404
+ parent: 1
+ - uid: 33437
+ components:
+ - type: Transform
+ pos: 101.3583,26.898048
+ parent: 1
+ - uid: 37150
+ components:
+ - type: Transform
+ pos: 168.17188,136.5177
+ parent: 1
+- proto: ChairGreyscale
+ entities:
+ - uid: 32297
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,42.5
+ parent: 1
+- proto: ChairOfficeDark
+ entities:
+ - uid: 210
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,103.5
+ parent: 1
+ - uid: 211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,103.5
+ parent: 1
+ - uid: 494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,105.5
+ parent: 1
+ - uid: 558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,96.5
+ parent: 1
+ - uid: 760
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,42.5
+ parent: 1
+ - uid: 930
+ components:
+ - type: Transform
+ pos: 88.5,93.5
+ parent: 1
+ - uid: 966
+ components:
+ - type: Transform
+ pos: 106.5,40.5
+ parent: 1
+ - uid: 1427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,89.5
+ parent: 1
+ - uid: 1730
+ components:
+ - type: Transform
+ pos: 134.5,93.5
+ parent: 1
+ - uid: 1817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,145.5
+ parent: 1
+ - uid: 5484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,128.5
+ parent: 1
+ - uid: 5507
+ components:
+ - type: Transform
+ pos: 39.546955,107.65251
+ parent: 1
+ - uid: 5836
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,54.5
+ parent: 1
+ - uid: 5838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,58.5
+ parent: 1
+ - uid: 5900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,96.5
+ parent: 1
+ - uid: 6374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.53877,141.65424
+ parent: 1
+ - uid: 6485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,169.5
+ parent: 1
+ - uid: 9579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,43.5
+ parent: 1
+ - uid: 9632
+ components:
+ - type: Transform
+ pos: 34.5,50.5
+ parent: 1
+ - uid: 9641
+ components:
+ - type: Transform
+ pos: 38.5,49.5
+ parent: 1
+ - uid: 9647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,62.5
+ parent: 1
+ - uid: 9651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,63.5
+ parent: 1
+ - uid: 9658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,42.5
+ parent: 1
+ - uid: 11284
+ components:
+ - type: Transform
+ pos: 104.5,45.5
+ parent: 1
+ - uid: 12540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,92.5
+ parent: 1
+ - uid: 13531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.56832,56.67458
+ parent: 1
+ - uid: 13580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,75.5
+ parent: 1
+ - uid: 13669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,59.5
+ parent: 1
+ - uid: 14490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 168.5,134.5
+ parent: 1
+ - uid: 15402
+ components:
+ - type: Transform
+ pos: 126.5,145.5
+ parent: 1
+ - uid: 15403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,143.5
+ parent: 1
+ - uid: 16188
+ components:
+ - type: Transform
+ pos: 116.5,123.5
+ parent: 1
+ - uid: 16200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,159.5
+ parent: 1
+ - uid: 16457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,74.5
+ parent: 1
+ - uid: 17739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,103.5
+ parent: 1
+ - uid: 18088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,91.5
+ parent: 1
+ - uid: 18191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,108.5
+ parent: 1
+ - uid: 18192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,108.5
+ parent: 1
+ - uid: 18841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,140.5
+ parent: 1
+ - uid: 18880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,41.5
+ parent: 1
+ - uid: 18888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,41.5
+ parent: 1
+ - uid: 19340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,108.5
+ parent: 1
+ - uid: 19399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,102.5
+ parent: 1
+ - uid: 19441
+ components:
+ - type: Transform
+ pos: 143.5,105.5
+ parent: 1
+ - uid: 19442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,103.5
+ parent: 1
+ - uid: 19505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,98.5
+ parent: 1
+ - uid: 20403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,92.5
+ parent: 1
+ - uid: 20417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,86.5
+ parent: 1
+ - uid: 20476
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,113.5
+ parent: 1
+ - uid: 20477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,114.5
+ parent: 1
+ - uid: 20478
+ components:
+ - type: Transform
+ pos: 33.5,116.5
+ parent: 1
+ - uid: 20479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,108.5
+ parent: 1
+ - uid: 20945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,113.5
+ parent: 1
+ - uid: 20946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,113.5
+ parent: 1
+ - uid: 21033
+ components:
+ - type: Transform
+ pos: 143.5,124.5
+ parent: 1
+ - uid: 22688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,57.5
+ parent: 1
+ - uid: 22698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,63.5
+ parent: 1
+ - uid: 22700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,61.5
+ parent: 1
+ - uid: 22733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,52.5
+ parent: 1
+ - uid: 22873
+ components:
+ - type: Transform
+ pos: 128.5,69.5
+ parent: 1
+ - uid: 22901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,66.5
+ parent: 1
+ - uid: 22970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,74.5
+ parent: 1
+ - uid: 22971
+ components:
+ - type: Transform
+ pos: 131.5,74.5
+ parent: 1
+ - uid: 23173
+ components:
+ - type: Transform
+ pos: 133.5,73.5
+ parent: 1
+ - uid: 23174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,69.5
+ parent: 1
+ - uid: 23408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,89.5
+ parent: 1
+ - uid: 24734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,65.5
+ parent: 1
+ - uid: 25541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,115.5
+ parent: 1
+ - uid: 26699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,107.5
+ parent: 1
+ - uid: 27070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,75.5
+ parent: 1
+ - uid: 27071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,68.5
+ parent: 1
+ - uid: 27218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,48.5
+ parent: 1
+ - uid: 27322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,53.5
+ parent: 1
+ - uid: 28150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,123.5
+ parent: 1
+ - uid: 29341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,133.5
+ parent: 1
+ - uid: 30393
+ components:
+ - type: Transform
+ pos: 136.5,93.5
+ parent: 1
+ - uid: 30455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,112.5
+ parent: 1
+ - uid: 32293
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+ - uid: 33422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,23.5
+ parent: 1
+ - uid: 33614
+ components:
+ - type: Transform
+ pos: 115.5,39.5
+ parent: 1
+ - uid: 34641
+ components:
+ - type: Transform
+ pos: 162.5,62.5
+ parent: 1
+ - uid: 34651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,55.5
+ parent: 1
+ - uid: 35328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,162.5
+ parent: 1
+ - uid: 35329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,161.5
+ parent: 1
+ - uid: 35330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,160.5
+ parent: 1
+ - uid: 35338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,161.5
+ parent: 1
+ - uid: 35382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,161.5
+ parent: 1
+ - uid: 35383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,161.5
+ parent: 1
+ - uid: 35384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,161.5
+ parent: 1
+ - uid: 35385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,161.5
+ parent: 1
+ - uid: 35386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,162.5
+ parent: 1
+ - uid: 35387
+ components:
+ - type: Transform
+ pos: 84.5,162.5
+ parent: 1
+ - uid: 35388
+ components:
+ - type: Transform
+ pos: 83.5,160.5
+ parent: 1
+ - uid: 35389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,162.5
+ parent: 1
+ - uid: 35390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.92874,160.96445
+ parent: 1
+ - uid: 35391
+ components:
+ - type: Transform
+ pos: 82.96951,161.98367
+ parent: 1
+ - uid: 35392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.98872,162.06522
+ parent: 1
+ - uid: 35393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.99164,161.96738
+ parent: 1
+ - uid: 35588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,89.5
+ parent: 1
+ - uid: 35754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,90.5
+ parent: 1
+ - uid: 36498
+ components:
+ - type: Transform
+ pos: 76.5,116.5
+ parent: 1
+ - uid: 37263
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,43.5
+ parent: 1
+ - uid: 37369
+ components:
+ - type: Transform
+ pos: 131.5,62.5
+ parent: 1
+ - uid: 37475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,38.5
+ parent: 1
+- proto: ChairOfficeLight
+ entities:
+ - uid: 13593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,75.5
+ parent: 1
+ - uid: 13722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,60.5
+ parent: 1
+ - uid: 26769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,59.5
+ parent: 1
+ - uid: 28721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,51.5
+ parent: 1
+- proto: ChairPilotSeat
+ entities:
+ - uid: 29520
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,91.5
+ parent: 1
+ - uid: 30166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,152.5
+ parent: 1
+ - uid: 30167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,152.5
+ parent: 1
+ - uid: 30168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,152.5
+ parent: 1
+ - uid: 30169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,152.5
+ parent: 1
+ - uid: 33453
+ components:
+ - type: Transform
+ pos: 91.5,26.5
+ parent: 1
+ - uid: 33454
+ components:
+ - type: Transform
+ pos: 89.5,26.5
+ parent: 1
+- proto: ChairWood
+ entities:
+ - uid: 2114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,107.5
+ parent: 1
+ - uid: 3556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,115.5
+ parent: 1
+ - uid: 3583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,111.5
+ parent: 1
+ - uid: 3592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,111.5
+ parent: 1
+ - uid: 3599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,112.5
+ parent: 1
+ - uid: 3665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,111.5
+ parent: 1
+ - uid: 3827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,115.5
+ parent: 1
+ - uid: 3829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,112.5
+ parent: 1
+ - uid: 3834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,115.5
+ parent: 1
+ - uid: 3891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,112.5
+ parent: 1
+ - uid: 3942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,51.5
+ parent: 1
+ - uid: 3992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,114.5
+ parent: 1
+ - uid: 4025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,114.5
+ parent: 1
+ - uid: 4026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,107.5
+ parent: 1
+ - uid: 4629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,39.5
+ parent: 1
+ - uid: 4638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,39.5
+ parent: 1
+ - uid: 4639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,39.5
+ parent: 1
+ - uid: 4640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,39.5
+ parent: 1
+ - uid: 6741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,124.5
+ parent: 1
+ - uid: 9840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,51.5
+ parent: 1
+ - uid: 11672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,114.5
+ parent: 1
+ - uid: 11673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,111.5
+ parent: 1
+ - uid: 11674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,112.5
+ parent: 1
+ - uid: 12127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,115.5
+ parent: 1
+ - uid: 12397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,54.5
+ parent: 1
+ - uid: 12689
+ components:
+ - type: Transform
+ pos: 64.5,53.5
+ parent: 1
+ - uid: 13710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,51.5
+ parent: 1
+ - uid: 15093
+ components:
+ - type: Transform
+ pos: 39.5,125.5
+ parent: 1
+ - uid: 15094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,123.5
+ parent: 1
+ - uid: 18685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,123.5
+ parent: 1
+ - uid: 19349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,124.5
+ parent: 1
+ - uid: 23789
+ components:
+ - type: Transform
+ pos: 118.5,109.5
+ parent: 1
+ - uid: 23790
+ components:
+ - type: Transform
+ pos: 98.5,109.5
+ parent: 1
+ - uid: 25612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,114.5
+ parent: 1
+ - uid: 26217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,78.5
+ parent: 1
+ - uid: 26218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,78.5
+ parent: 1
+ - uid: 26219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,74.5
+ parent: 1
+ - uid: 26638
+ components:
+ - type: Transform
+ pos: 105.5,99.5
+ parent: 1
+ - uid: 27112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,58.5
+ parent: 1
+ - uid: 27113
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,59.5
+ parent: 1
+ - uid: 27115
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - uid: 27116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,58.5
+ parent: 1
+ - uid: 27202
+ components:
+ - type: Transform
+ pos: 77.5,60.5
+ parent: 1
+ - uid: 27203
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,57.5
+ parent: 1
+ - uid: 27509
+ components:
+ - type: Transform
+ pos: 63.5,53.5
+ parent: 1
+ - uid: 27824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,54.5
+ parent: 1
+ - uid: 28349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,124.5
+ parent: 1
+ - uid: 34083
+ components:
+ - type: Transform
+ pos: 114.47426,168.51218
+ parent: 1
+ - uid: 35163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,171.5
+ parent: 1
+ - uid: 35164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,170.5
+ parent: 1
+ - uid: 35598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,164.5
+ parent: 1
+ - uid: 35605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,162.5
+ parent: 1
+ - uid: 37039
+ components:
+ - type: Transform
+ pos: 67.5,163.5
+ parent: 1
+- proto: CheapLighter
+ entities:
+ - uid: 23778
+ components:
+ - type: Transform
+ pos: 35.43704,90.71716
+ parent: 1
+ - uid: 37161
+ components:
+ - type: Transform
+ pos: 167.68417,134.58716
+ parent: 1
+- proto: CheapRollerBed
+ entities:
+ - uid: 28659
+ components:
+ - type: Transform
+ pos: 119.5,47.5
+ parent: 1
+- proto: CheckerBoard
+ entities:
+ - uid: 27213
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.504555,58.54173
+ parent: 1
+- proto: ChemDispenser
+ entities:
+ - uid: 18026
+ components:
+ - type: Transform
+ pos: 89.5,103.5
+ parent: 1
+ - uid: 18027
+ components:
+ - type: Transform
+ pos: 89.5,109.5
+ parent: 1
+ - uid: 18030
+ components:
+ - type: Transform
+ pos: 87.5,99.5
+ parent: 1
+- proto: ChemistryHotplate
+ entities:
+ - uid: 18039
+ components:
+ - type: Transform
+ pos: 85.5,110.5
+ parent: 1
+ - uid: 18043
+ components:
+ - type: Transform
+ pos: 85.5,100.5
+ parent: 1
+- proto: ChemMaster
+ entities:
+ - uid: 18025
+ components:
+ - type: Transform
+ pos: 89.5,104.5
+ parent: 1
+ - uid: 18028
+ components:
+ - type: Transform
+ pos: 89.5,108.5
+ parent: 1
+ - uid: 18029
+ components:
+ - type: Transform
+ pos: 88.5,99.5
+ parent: 1
+- proto: ChessBoard
+ entities:
+ - uid: 20843
+ components:
+ - type: Transform
+ pos: 28.472893,102.60607
+ parent: 1
+ - uid: 27210
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 80.47809,58.50562
+ parent: 1
+- proto: ChurchBell
+ entities:
+ - uid: 26943
+ components:
+ - type: Transform
+ pos: 84.5,78.5
+ parent: 1
+- proto: ChurchOrganInstrument
+ entities:
+ - uid: 26216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,70.5
+ parent: 1
+- proto: Cigar
+ entities:
+ - uid: 26645
+ components:
+ - type: Transform
+ pos: 110.78028,104.48201
+ parent: 1
+ - uid: 26646
+ components:
+ - type: Transform
+ pos: 110.71547,104.66411
+ parent: 1
+- proto: Cigarette
+ entities:
+ - uid: 33527
+ components:
+ - type: Transform
+ pos: 101.67412,26.29095
+ parent: 1
+ - uid: 34586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.44785,87.628365
+ parent: 1
+ - uid: 34587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.87535,86.886765
+ parent: 1
+ - uid: 34588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.44016,87.0381
+ parent: 1
+ - uid: 34589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.3707,86.23851
+ parent: 1
+ - uid: 34590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.61452,86.19836
+ parent: 1
+ - uid: 34591
+ components:
+ - type: Transform
+ pos: 155.712,85.47564
+ parent: 1
+ - uid: 34592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.49905,85.50652
+ parent: 1
+- proto: CigaretteSpent
+ entities:
+ - uid: 33511
+ components:
+ - type: Transform
+ pos: 101.83153,21.814949
+ parent: 1
+ - uid: 33512
+ components:
+ - type: Transform
+ pos: 101.93338,21.65754
+ parent: 1
+ - uid: 33513
+ components:
+ - type: Transform
+ pos: 101.67412,21.53717
+ parent: 1
+ - uid: 33514
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 102.0306,21.476982
+ parent: 1
+ - uid: 33515
+ components:
+ - type: Transform
+ pos: 101.52134,21.889023
+ parent: 1
+ - uid: 33516
+ components:
+ - type: Transform
+ pos: 101.64171,21.666801
+ parent: 1
+ - uid: 33517
+ components:
+ - type: Transform
+ pos: 101.95653,21.370506
+ parent: 1
+ - uid: 33518
+ components:
+ - type: Transform
+ pos: 101.438,21.509392
+ parent: 1
+ - uid: 33519
+ components:
+ - type: Transform
+ pos: 99.660225,26.21096
+ parent: 1
+ - uid: 33520
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 99.734886,27.018402
+ parent: 1
+ - uid: 33521
+ components:
+ - type: Transform
+ pos: 98.89634,27.507256
+ parent: 1
+ - uid: 33522
+ components:
+ - type: Transform
+ pos: 101.70653,28.340588
+ parent: 1
+ - uid: 33523
+ components:
+ - type: Transform
+ pos: 102.42412,27.368366
+ parent: 1
+ - uid: 33524
+ components:
+ - type: Transform
+ pos: 101.813,25.715591
+ parent: 1
+ - uid: 33525
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 99.8269,28.372997
+ parent: 1
+ - uid: 33526
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 100.56359,28.532291
+ parent: 1
+ - uid: 34593
+ components:
+ - type: Transform
+ pos: 155.68123,85.77784
+ parent: 1
+ - uid: 34594
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 155.1593,86.93618
+ parent: 1
+ - uid: 34595
+ components:
+ - type: Transform
+ pos: 155.65036,87.71746
+ parent: 1
+- proto: CigarGold
+ entities:
+ - uid: 13596
+ components:
+ - type: Transform
+ pos: 40.739925,74.47635
+ parent: 1
+ - uid: 26891
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 107.484314,72.47673
+ parent: 1
+ - uid: 30172
+ components:
+ - type: Transform
+ pos: 136.544,153.60684
+ parent: 1
+ - uid: 35793
+ components:
+ - type: Transform
+ pos: 54.95068,122.90553
+ parent: 1
+- proto: CigarGoldCase
+ entities:
+ - uid: 13597
+ components:
+ - type: Transform
+ rot: -50.265482457436725 rad
+ pos: 131.52324,93.61302
+ parent: 1
+- proto: CigCartonGreen
+ entities:
+ - uid: 2819
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 146.51993,108.51358
+ parent: 1
+ - uid: 26504
+ components:
+ - type: Transform
+ pos: 86.52094,55.628357
+ parent: 1
+- proto: CigPackGreen
+ entities:
+ - uid: 13675
+ components:
+ - type: Transform
+ pos: 59.571968,59.56051
+ parent: 1
+ - uid: 13720
+ components:
+ - type: Transform
+ rot: -257.61059759436245 rad
+ pos: 50.00238,48.642887
+ parent: 1
+ - uid: 18080
+ components:
+ - type: Transform
+ pos: 167.68417,135.19826
+ parent: 1
+ - uid: 21000
+ components:
+ - type: Transform
+ pos: 26.243996,99.750244
+ parent: 1
+ - uid: 23777
+ components:
+ - type: Transform
+ pos: 35.78079,90.45675
+ parent: 1
+ - uid: 34596
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 155.50189,86.72616
+ parent: 1
+- proto: CircuitImprinter
+ entities:
+ - uid: 593
+ components:
+ - type: Transform
+ pos: 49.5,89.5
+ parent: 1
+- proto: CleanerDispenser
+ entities:
+ - uid: 29573
+ components:
+ - type: Transform
+ pos: 156.5,124.5
+ parent: 1
+- proto: ClosetBombFilled
+ entities:
+ - uid: 5345
+ components:
+ - type: Transform
+ pos: 37.5,82.5
+ parent: 1
+ - uid: 26718
+ components:
+ - type: Transform
+ pos: 151.5,58.5
+ parent: 1
+- proto: ClosetChefFilled
+ entities:
+ - uid: 13310
+ components:
+ - type: Transform
+ pos: 115.5,93.5
+ parent: 1
+ - type: EntityStorage
+ air:
+ volume: 200
+ immutable: False
+ temperature: 234.99739
+ moles:
+ - 1.7459903
+ - 6.568249
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+- proto: ClosetEmergencyFilledRandom
+ entities:
+ - uid: 3731
+ components:
+ - type: Transform
+ pos: 94.5,106.5
+ parent: 1
+ - uid: 4234
+ components:
+ - type: Transform
+ pos: 86.5,66.5
+ parent: 1
+ - uid: 4589
+ components:
+ - type: Transform
+ pos: 87.5,119.5
+ parent: 1
+ - uid: 5321
+ components:
+ - type: Transform
+ pos: 161.5,132.5
+ parent: 1
+ - uid: 6507
+ components:
+ - type: Transform
+ pos: 164.5,78.5
+ parent: 1
+ - uid: 6676
+ components:
+ - type: Transform
+ pos: 141.5,42.5
+ parent: 1
+ - uid: 7099
+ components:
+ - type: Transform
+ pos: 18.5,106.5
+ parent: 1
+ - uid: 9406
+ components:
+ - type: Transform
+ pos: 24.5,95.5
+ parent: 1
+ - uid: 9994
+ components:
+ - type: Transform
+ pos: 132.5,85.5
+ parent: 1
+ - uid: 10344
+ components:
+ - type: Transform
+ pos: 117.5,65.5
+ parent: 1
+ - uid: 10385
+ components:
+ - type: Transform
+ pos: 54.5,145.5
+ parent: 1
+ - uid: 13539
+ components:
+ - type: Transform
+ pos: 44.5,48.5
+ parent: 1
+ - uid: 16122
+ components:
+ - type: Transform
+ pos: 96.5,129.5
+ parent: 1
+ - uid: 16123
+ components:
+ - type: Transform
+ pos: 120.5,128.5
+ parent: 1
+ - uid: 16124
+ components:
+ - type: Transform
+ pos: 120.5,146.5
+ parent: 1
+ - uid: 17780
+ components:
+ - type: Transform
+ pos: 65.5,104.5
+ parent: 1
+ - uid: 18268
+ components:
+ - type: Transform
+ pos: 90.5,37.5
+ parent: 1
+ - uid: 18475
+ components:
+ - type: Transform
+ pos: 159.5,62.5
+ parent: 1
+ - uid: 18484
+ components:
+ - type: Transform
+ pos: 93.5,84.5
+ parent: 1
+ - uid: 18840
+ components:
+ - type: Transform
+ pos: 139.5,140.5
+ parent: 1
+ - uid: 19268
+ components:
+ - type: Transform
+ pos: 147.5,106.5
+ parent: 1
+ - uid: 19418
+ components:
+ - type: Transform
+ pos: 60.5,34.5
+ parent: 1
+ - uid: 19473
+ components:
+ - type: Transform
+ pos: 36.5,126.5
+ parent: 1
+ - uid: 19483
+ components:
+ - type: Transform
+ pos: 23.5,82.5
+ parent: 1
+ - uid: 19688
+ components:
+ - type: Transform
+ pos: 153.5,93.5
+ parent: 1
+ - uid: 20425
+ components:
+ - type: Transform
+ pos: 149.5,147.5
+ parent: 1
+ - uid: 21012
+ components:
+ - type: Transform
+ pos: 31.5,99.5
+ parent: 1
+ - uid: 21016
+ components:
+ - type: Transform
+ pos: 83.5,123.5
+ parent: 1
+ - uid: 21023
+ components:
+ - type: Transform
+ pos: 104.5,156.5
+ parent: 1
+ - uid: 21528
+ components:
+ - type: Transform
+ pos: 142.5,48.5
+ parent: 1
+ - uid: 23134
+ components:
+ - type: Transform
+ pos: 148.5,72.5
+ parent: 1
+ - uid: 24166
+ components:
+ - type: Transform
+ pos: 107.5,96.5
+ parent: 1
+ - uid: 26314
+ components:
+ - type: Transform
+ pos: 140.5,78.5
+ parent: 1
+ - uid: 26901
+ components:
+ - type: Transform
+ pos: 111.5,115.5
+ parent: 1
+ - uid: 27172
+ components:
+ - type: Transform
+ pos: 122.5,116.5
+ parent: 1
+ - uid: 27840
+ components:
+ - type: Transform
+ pos: 68.5,36.5
+ parent: 1
+ - uid: 27946
+ components:
+ - type: Transform
+ pos: 83.5,103.5
+ parent: 1
+ - uid: 27949
+ components:
+ - type: Transform
+ pos: 53.5,63.5
+ parent: 1
+ - uid: 27958
+ components:
+ - type: Transform
+ pos: 49.5,95.5
+ parent: 1
+ - uid: 27970
+ components:
+ - type: Transform
+ pos: 82.5,36.5
+ parent: 1
+ - uid: 28139
+ components:
+ - type: Transform
+ pos: 78.5,112.5
+ parent: 1
+ - uid: 28189
+ components:
+ - type: Transform
+ pos: 39.5,79.5
+ parent: 1
+ - uid: 28266
+ components:
+ - type: Transform
+ pos: 100.5,120.5
+ parent: 1
+ - uid: 28267
+ components:
+ - type: Transform
+ pos: 58.5,111.5
+ parent: 1
+ - uid: 28804
+ components:
+ - type: Transform
+ pos: 58.5,81.5
+ parent: 1
+ - uid: 29606
+ components:
+ - type: Transform
+ pos: 160.5,117.5
+ parent: 1
+ - uid: 29737
+ components:
+ - type: Transform
+ pos: 144.5,136.5
+ parent: 1
+ - uid: 30174
+ components:
+ - type: Transform
+ pos: 133.5,150.5
+ parent: 1
+ - uid: 30181
+ components:
+ - type: Transform
+ pos: 139.5,153.5
+ parent: 1
+ - uid: 30691
+ components:
+ - type: Transform
+ pos: 108.5,32.5
+ parent: 1
+ - uid: 31847
+ components:
+ - type: Transform
+ pos: 96.5,74.5
+ parent: 1
+ - uid: 32399
+ components:
+ - type: Transform
+ pos: 94.5,25.5
+ parent: 1
+ - uid: 33433
+ components:
+ - type: Transform
+ pos: 113.5,23.5
+ parent: 1
+ - uid: 33434
+ components:
+ - type: Transform
+ pos: 118.5,42.5
+ parent: 1
+ - uid: 34033
+ components:
+ - type: Transform
+ pos: 113.5,20.5
+ parent: 1
+ - uid: 34034
+ components:
+ - type: Transform
+ pos: 114.5,20.5
+ parent: 1
+ - uid: 34610
+ components:
+ - type: Transform
+ pos: 144.5,46.5
+ parent: 1
+ - uid: 34720
+ components:
+ - type: Transform
+ pos: 136.5,148.5
+ parent: 1
+ - uid: 34757
+ components:
+ - type: Transform
+ pos: 139.5,134.5
+ parent: 1
+ - uid: 35229
+ components:
+ - type: Transform
+ pos: 104.5,172.5
+ parent: 1
+ - uid: 35591
+ components:
+ - type: Transform
+ pos: 59.5,155.5
+ parent: 1
+ - uid: 36148
+ components:
+ - type: Transform
+ pos: 21.5,118.5
+ parent: 1
+ - uid: 37040
+ components:
+ - type: Transform
+ pos: 108.5,164.5
+ parent: 1
+ - uid: 37201
+ components:
+ - type: Transform
+ pos: 162.5,139.5
+ parent: 1
+- proto: ClosetEmergencyN2FilledRandom
+ entities:
+ - uid: 2499
+ components:
+ - type: Transform
+ pos: 145.5,154.5
+ parent: 1
+ - uid: 3127
+ components:
+ - type: Transform
+ pos: 44.5,49.5
+ parent: 1
+ - uid: 4213
+ components:
+ - type: Transform
+ pos: 86.5,67.5
+ parent: 1
+ - uid: 6442
+ components:
+ - type: Transform
+ pos: 68.5,37.5
+ parent: 1
+ - uid: 7111
+ components:
+ - type: Transform
+ pos: 21.5,102.5
+ parent: 1
+ - uid: 8517
+ components:
+ - type: Transform
+ pos: 58.5,144.5
+ parent: 1
+ - uid: 9853
+ components:
+ - type: Transform
+ pos: 111.5,48.5
+ parent: 1
+ - uid: 12417
+ components:
+ - type: Transform
+ pos: 96.5,87.5
+ parent: 1
+ - uid: 14493
+ components:
+ - type: Transform
+ pos: 142.5,47.5
+ parent: 1
+ - uid: 17966
+ components:
+ - type: Transform
+ pos: 65.5,103.5
+ parent: 1
+ - uid: 19047
+ components:
+ - type: Transform
+ pos: 23.5,84.5
+ parent: 1
+ - uid: 19261
+ components:
+ - type: Transform
+ pos: 93.5,161.5
+ parent: 1
+ - uid: 19425
+ components:
+ - type: Transform
+ pos: 116.5,165.5
+ parent: 1
+ - uid: 19704
+ components:
+ - type: Transform
+ pos: 153.5,94.5
+ parent: 1
+ - uid: 21013
+ components:
+ - type: Transform
+ pos: 30.5,99.5
+ parent: 1
+ - uid: 21015
+ components:
+ - type: Transform
+ pos: 84.5,123.5
+ parent: 1
+ - uid: 21018
+ components:
+ - type: Transform
+ pos: 113.5,156.5
+ parent: 1
+ - uid: 23074
+ components:
+ - type: Transform
+ pos: 149.5,72.5
+ parent: 1
+ - uid: 23496
+ components:
+ - type: Transform
+ pos: 36.5,97.5
+ parent: 1
+ - uid: 26900
+ components:
+ - type: Transform
+ pos: 105.5,115.5
+ parent: 1
+ - uid: 27950
+ components:
+ - type: Transform
+ pos: 54.5,63.5
+ parent: 1
+ - uid: 27957
+ components:
+ - type: Transform
+ pos: 48.5,95.5
+ parent: 1
+ - uid: 28167
+ components:
+ - type: Transform
+ pos: 40.5,79.5
+ parent: 1
+ - uid: 29100
+ components:
+ - type: Transform
+ pos: 121.5,116.5
+ parent: 1
+ - uid: 29738
+ components:
+ - type: Transform
+ pos: 146.5,136.5
+ parent: 1
+ - uid: 32046
+ components:
+ - type: Transform
+ pos: 158.5,54.5
+ parent: 1
+ - uid: 32952
+ components:
+ - type: Transform
+ pos: 135.5,148.5
+ parent: 1
+ - uid: 34749
+ components:
+ - type: Transform
+ pos: 94.5,108.5
+ parent: 1
+ - uid: 34975
+ components:
+ - type: Transform
+ pos: 159.5,131.5
+ parent: 1
+ - uid: 36149
+ components:
+ - type: Transform
+ pos: 21.5,119.5
+ parent: 1
+ - uid: 37270
+ components:
+ - type: Transform
+ pos: 87.5,118.5
+ parent: 1
+- proto: ClosetFireFilled
+ entities:
+ - uid: 449
+ components:
+ - type: Transform
+ pos: 37.5,84.5
+ parent: 1
+ - uid: 780
+ components:
+ - type: Transform
+ pos: 44.5,50.5
+ parent: 1
+ - uid: 1624
+ components:
+ - type: Transform
+ pos: 77.5,112.5
+ parent: 1
+ - uid: 3329
+ components:
+ - type: Transform
+ pos: 87.5,117.5
+ parent: 1
+ - uid: 8142
+ components:
+ - type: Transform
+ pos: 148.5,147.5
+ parent: 1
+ - uid: 12470
+ components:
+ - type: Transform
+ pos: 29.5,78.5
+ parent: 1
+ - uid: 16125
+ components:
+ - type: Transform
+ pos: 120.5,147.5
+ parent: 1
+ - uid: 16127
+ components:
+ - type: Transform
+ pos: 120.5,127.5
+ parent: 1
+ - uid: 17950
+ components:
+ - type: Transform
+ pos: 117.5,66.5
+ parent: 1
+ - uid: 17967
+ components:
+ - type: Transform
+ pos: 83.5,104.5
+ parent: 1
+ - uid: 19229
+ components:
+ - type: Transform
+ pos: 59.5,34.5
+ parent: 1
+ - uid: 19422
+ components:
+ - type: Transform
+ pos: 139.5,133.5
+ parent: 1
+ - uid: 20890
+ components:
+ - type: Transform
+ pos: 53.5,80.5
+ parent: 1
+ - uid: 21014
+ components:
+ - type: Transform
+ pos: 85.5,123.5
+ parent: 1
+ - uid: 21669
+ components:
+ - type: Transform
+ pos: 147.5,105.5
+ parent: 1
+ - uid: 26312
+ components:
+ - type: Transform
+ pos: 141.5,78.5
+ parent: 1
+ - uid: 26899
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 1
+ - uid: 27945
+ components:
+ - type: Transform
+ pos: 32.5,99.5
+ parent: 1
+ - uid: 27948
+ components:
+ - type: Transform
+ pos: 52.5,63.5
+ parent: 1
+ - uid: 27956
+ components:
+ - type: Transform
+ pos: 47.5,95.5
+ parent: 1
+ - uid: 27972
+ components:
+ - type: Transform
+ pos: 82.5,37.5
+ parent: 1
+ - uid: 28265
+ components:
+ - type: Transform
+ pos: 100.5,121.5
+ parent: 1
+ - uid: 28797
+ components:
+ - type: Transform
+ pos: 58.5,110.5
+ parent: 1
+ - uid: 28799
+ components:
+ - type: Transform
+ pos: 58.5,80.5
+ parent: 1
+ - uid: 28932
+ components:
+ - type: Transform
+ pos: 86.5,68.5
+ parent: 1
+ - uid: 29096
+ components:
+ - type: Transform
+ pos: 120.5,116.5
+ parent: 1
+ - uid: 29607
+ components:
+ - type: Transform
+ pos: 160.5,118.5
+ parent: 1
+ - uid: 29739
+ components:
+ - type: Transform
+ pos: 145.5,136.5
+ parent: 1
+ - uid: 30180
+ components:
+ - type: Transform
+ pos: 138.5,153.5
+ parent: 1
+ - uid: 30239
+ components:
+ - type: Transform
+ pos: 96.5,128.5
+ parent: 1
+ - uid: 33431
+ components:
+ - type: Transform
+ pos: 94.5,24.5
+ parent: 1
+ - uid: 33432
+ components:
+ - type: Transform
+ pos: 113.5,22.5
+ parent: 1
+ - uid: 33435
+ components:
+ - type: Transform
+ pos: 118.5,41.5
+ parent: 1
+- proto: ClosetJanitorFilled
+ entities:
+ - uid: 29555
+ components:
+ - type: Transform
+ pos: 154.5,125.5
+ parent: 1
+- proto: ClosetL3JanitorFilled
+ entities:
+ - uid: 29559
+ components:
+ - type: Transform
+ pos: 155.5,128.5
+ parent: 1
+- proto: ClosetL3ScienceFilled
+ entities:
+ - uid: 454
+ components:
+ - type: Transform
+ pos: 38.5,82.5
+ parent: 1
+ - uid: 11360
+ components:
+ - type: Transform
+ pos: 51.5,80.5
+ parent: 1
+ - uid: 20853
+ components:
+ - type: Transform
+ pos: 30.5,105.5
+ parent: 1
+ - uid: 20854
+ components:
+ - type: Transform
+ pos: 30.5,103.5
+ parent: 1
+ - uid: 20969
+ components:
+ - type: Transform
+ pos: 50.5,80.5
+ parent: 1
+- proto: ClosetL3SecurityFilled
+ entities:
+ - uid: 22689
+ components:
+ - type: Transform
+ pos: 145.5,58.5
+ parent: 1
+ - uid: 22690
+ components:
+ - type: Transform
+ pos: 144.5,58.5
+ parent: 1
+- proto: ClosetLegalFilled
+ entities:
+ - uid: 4253
+ components:
+ - type: Transform
+ pos: 102.5,39.5
+ parent: 1
+- proto: ClosetMaintenanceFilledRandom
+ entities:
+ - uid: 202
+ components:
+ - type: Transform
+ pos: 65.5,122.5
+ parent: 1
+ - uid: 256
+ components:
+ - type: Transform
+ pos: 16.5,106.5
+ parent: 1
+ - uid: 3034
+ components:
+ - type: Transform
+ pos: 59.5,154.5
+ parent: 1
+ - uid: 3480
+ components:
+ - type: Transform
+ pos: 63.5,49.5
+ parent: 1
+ - uid: 4125
+ components:
+ - type: Transform
+ pos: 76.5,83.5
+ parent: 1
+ - uid: 4132
+ components:
+ - type: Transform
+ pos: 120.5,19.5
+ parent: 1
+ - uid: 4643
+ components:
+ - type: Transform
+ pos: 57.5,47.5
+ parent: 1
+ - uid: 5393
+ components:
+ - type: Transform
+ pos: 154.5,145.5
+ parent: 1
+ - uid: 5961
+ components:
+ - type: Transform
+ pos: 86.5,39.5
+ parent: 1
+ - uid: 6640
+ components:
+ - type: Transform
+ pos: 69.5,157.5
+ parent: 1
+ - uid: 6748
+ components:
+ - type: Transform
+ pos: 43.5,121.5
+ parent: 1
+ - uid: 8273
+ components:
+ - type: Transform
+ pos: 31.5,80.5
+ parent: 1
+ - uid: 17293
+ components:
+ - type: Transform
+ pos: 58.5,140.5
+ parent: 1
+ - uid: 18483
+ components:
+ - type: Transform
+ pos: 93.5,88.5
+ parent: 1
+ - uid: 18744
+ components:
+ - type: Transform
+ pos: 92.5,106.5
+ parent: 1
+ - uid: 19217
+ components:
+ - type: Transform
+ pos: 151.5,76.5
+ parent: 1
+ - uid: 19234
+ components:
+ - type: Transform
+ pos: 109.5,26.5
+ parent: 1
+ - uid: 19260
+ components:
+ - type: Transform
+ pos: 102.5,166.5
+ parent: 1
+ - uid: 19447
+ components:
+ - type: Transform
+ pos: 150.5,85.5
+ parent: 1
+ - uid: 19514
+ components:
+ - type: Transform
+ pos: 51.5,77.5
+ parent: 1
+ - uid: 20140
+ components:
+ - type: Transform
+ pos: 51.5,128.5
+ parent: 1
+ - uid: 23347
+ components:
+ - type: Transform
+ pos: 140.5,88.5
+ parent: 1
+ - uid: 23521
+ components:
+ - type: Transform
+ pos: 109.5,44.5
+ parent: 1
+ - uid: 24540
+ components:
+ - type: Transform
+ pos: 96.5,65.5
+ parent: 1
+ - uid: 25128
+ components:
+ - type: Transform
+ pos: 159.5,112.5
+ parent: 1
+ - uid: 25291
+ components:
+ - type: Transform
+ pos: 98.5,34.5
+ parent: 1
+ - uid: 25424
+ components:
+ - type: Transform
+ pos: 101.5,54.5
+ parent: 1
+ - uid: 26656
+ components:
+ - type: Transform
+ pos: 106.5,34.5
+ parent: 1
+ - uid: 26728
+ components:
+ - type: Transform
+ pos: 61.5,48.5
+ parent: 1
+ - uid: 27120
+ components:
+ - type: Transform
+ pos: 95.5,55.5
+ parent: 1
+ - uid: 27180
+ components:
+ - type: Transform
+ pos: 113.5,44.5
+ parent: 1
+ - uid: 28142
+ components:
+ - type: Transform
+ pos: 115.5,72.5
+ parent: 1
+ - uid: 28336
+ components:
+ - type: Transform
+ pos: 23.5,78.5
+ parent: 1
+ - uid: 28515
+ components:
+ - type: Transform
+ pos: 71.5,45.5
+ parent: 1
+ - uid: 29594
+ components:
+ - type: Transform
+ pos: 61.5,70.5
+ parent: 1
+ - uid: 30452
+ components:
+ - type: Transform
+ pos: 91.5,158.5
+ parent: 1
+ - uid: 30542
+ components:
+ - type: Transform
+ pos: 161.5,135.5
+ parent: 1
+ - uid: 30545
+ components:
+ - type: Transform
+ pos: 125.5,88.5
+ parent: 1
+ - uid: 30690
+ components:
+ - type: Transform
+ pos: 122.5,42.5
+ parent: 1
+ - uid: 31844
+ components:
+ - type: Transform
+ pos: 97.5,72.5
+ parent: 1
+ - uid: 32277
+ components:
+ - type: Transform
+ pos: 62.5,28.5
+ parent: 1
+ - uid: 32375
+ components:
+ - type: Transform
+ pos: 137.5,139.5
+ parent: 1
+ - uid: 33597
+ components:
+ - type: Transform
+ pos: 94.5,26.5
+ parent: 1
+ - uid: 33599
+ components:
+ - type: Transform
+ pos: 106.5,32.5
+ parent: 1
+ - uid: 33600
+ components:
+ - type: Transform
+ pos: 105.5,22.5
+ parent: 1
+ - uid: 33601
+ components:
+ - type: Transform
+ pos: 110.5,18.5
+ parent: 1
+ - uid: 33602
+ components:
+ - type: Transform
+ pos: 115.5,25.5
+ parent: 1
+ - uid: 33603
+ components:
+ - type: Transform
+ pos: 124.5,33.5
+ parent: 1
+ - uid: 33604
+ components:
+ - type: Transform
+ pos: 126.5,39.5
+ parent: 1
+ - uid: 33605
+ components:
+ - type: Transform
+ pos: 115.5,42.5
+ parent: 1
+ - uid: 33606
+ components:
+ - type: Transform
+ pos: 120.5,36.5
+ parent: 1
+ - uid: 33711
+ components:
+ - type: Transform
+ pos: 116.5,33.5
+ parent: 1
+ - uid: 33713
+ components:
+ - type: Transform
+ pos: 88.5,30.5
+ parent: 1
+ - uid: 33715
+ components:
+ - type: Transform
+ pos: 84.5,16.5
+ parent: 1
+ - uid: 33716
+ components:
+ - type: Transform
+ pos: 66.5,22.5
+ parent: 1
+ - uid: 33731
+ components:
+ - type: Transform
+ anchored: True
+ pos: 87.5,19.5
+ parent: 1
+ - type: Physics
+ bodyType: Static
+ - uid: 33963
+ components:
+ - type: Transform
+ pos: 86.5,22.5
+ parent: 1
+ - uid: 34341
+ components:
+ - type: Transform
+ pos: 155.5,78.5
+ parent: 1
+ - uid: 34354
+ components:
+ - type: Transform
+ pos: 157.5,59.5
+ parent: 1
+ - uid: 34355
+ components:
+ - type: Transform
+ pos: 152.5,47.5
+ parent: 1
+ - uid: 34505
+ components:
+ - type: Transform
+ pos: 163.5,52.5
+ parent: 1
+ - uid: 34644
+ components:
+ - type: Transform
+ pos: 160.5,64.5
+ parent: 1
+ - uid: 34713
+ components:
+ - type: Transform
+ pos: 90.5,99.5
+ parent: 1
+ - uid: 34783
+ components:
+ - type: Transform
+ pos: 122.5,167.5
+ parent: 1
+ - uid: 34870
+ components:
+ - type: Transform
+ pos: 63.5,77.5
+ parent: 1
+ - uid: 34943
+ components:
+ - type: Transform
+ pos: 161.5,141.5
+ parent: 1
+ - uid: 34945
+ components:
+ - type: Transform
+ pos: 153.5,123.5
+ parent: 1
+ - uid: 34946
+ components:
+ - type: Transform
+ pos: 162.5,124.5
+ parent: 1
+ - uid: 35130
+ components:
+ - type: Transform
+ pos: 19.5,113.5
+ parent: 1
+ - uid: 35169
+ components:
+ - type: Transform
+ pos: 115.5,171.5
+ parent: 1
+ - uid: 35189
+ components:
+ - type: Transform
+ pos: 117.5,167.5
+ parent: 1
+ - uid: 35323
+ components:
+ - type: Transform
+ pos: 90.5,167.5
+ parent: 1
+ - uid: 35324
+ components:
+ - type: Transform
+ pos: 87.5,165.5
+ parent: 1
+ - uid: 35325
+ components:
+ - type: Transform
+ pos: 78.5,162.5
+ parent: 1
+ - uid: 35327
+ components:
+ - type: Transform
+ pos: 85.5,161.5
+ parent: 1
+ - uid: 35367
+ components:
+ - type: Transform
+ pos: 90.5,173.5
+ parent: 1
+ - uid: 35426
+ components:
+ - type: Transform
+ pos: 91.5,147.5
+ parent: 1
+ - uid: 35440
+ components:
+ - type: Transform
+ pos: 91.5,131.5
+ parent: 1
+ - uid: 35442
+ components:
+ - type: Transform
+ pos: 74.5,158.5
+ parent: 1
+ - uid: 35614
+ components:
+ - type: Transform
+ pos: 65.5,159.5
+ parent: 1
+ - uid: 35622
+ components:
+ - type: Transform
+ pos: 71.5,164.5
+ parent: 1
+ - uid: 35740
+ components:
+ - type: Transform
+ pos: 41.5,120.5
+ parent: 1
+ - uid: 35896
+ components:
+ - type: Transform
+ pos: 57.5,121.5
+ parent: 1
+ - uid: 35917
+ components:
+ - type: Transform
+ pos: 90.5,79.5
+ parent: 1
+ - uid: 36041
+ components:
+ - type: Transform
+ pos: 50.5,120.5
+ parent: 1
+ - uid: 36042
+ components:
+ - type: Transform
+ pos: 50.5,113.5
+ parent: 1
+ - uid: 36129
+ components:
+ - type: Transform
+ pos: 64.5,40.5
+ parent: 1
+ - uid: 36178
+ components:
+ - type: Transform
+ pos: 20.5,105.5
+ parent: 1
+ - uid: 36421
+ components:
+ - type: Transform
+ pos: 30.5,82.5
+ parent: 1
+ - uid: 36422
+ components:
+ - type: Transform
+ pos: 27.5,83.5
+ parent: 1
+ - uid: 36423
+ components:
+ - type: Transform
+ pos: 20.5,102.5
+ parent: 1
+ - uid: 36424
+ components:
+ - type: Transform
+ pos: 24.5,93.5
+ parent: 1
+ - uid: 36425
+ components:
+ - type: Transform
+ pos: 31.5,96.5
+ parent: 1
+ - uid: 36426
+ components:
+ - type: Transform
+ pos: 29.5,73.5
+ parent: 1
+ - uid: 36518
+ components:
+ - type: Transform
+ pos: 141.5,123.5
+ parent: 1
+ - uid: 36871
+ components:
+ - type: Transform
+ pos: 125.5,163.5
+ parent: 1
+ - uid: 37160
+ components:
+ - type: Transform
+ pos: 147.5,115.5
+ parent: 1
+- proto: ClosetRadiationSuitFilled
+ entities:
+ - uid: 1393
+ components:
+ - type: Transform
+ pos: 39.5,82.5
+ parent: 1
+ - uid: 4199
+ components:
+ - type: Transform
+ pos: 91.5,121.5
+ parent: 1
+ - uid: 14255
+ components:
+ - type: Transform
+ pos: 121.5,135.5
+ parent: 1
+ - uid: 16192
+ components:
+ - type: Transform
+ pos: 95.5,135.5
+ parent: 1
+ - uid: 16585
+ components:
+ - type: Transform
+ pos: 115.5,152.5
+ parent: 1
+ - uid: 16588
+ components:
+ - type: Transform
+ pos: 104.5,147.5
+ parent: 1
+ - uid: 16589
+ components:
+ - type: Transform
+ pos: 112.5,147.5
+ parent: 1
+ - uid: 16592
+ components:
+ - type: Transform
+ pos: 92.5,121.5
+ parent: 1
+ - uid: 18909
+ components:
+ - type: Transform
+ pos: 52.5,145.5
+ parent: 1
+ - uid: 21017
+ components:
+ - type: Transform
+ pos: 123.5,156.5
+ parent: 1
+ - uid: 21087
+ components:
+ - type: Transform
+ pos: 93.5,156.5
+ parent: 1
+- proto: ClosetToolFilled
+ entities:
+ - uid: 33452
+ components:
+ - type: Transform
+ pos: 120.5,27.5
+ parent: 1
+- proto: ClosetWallEmergencyFilledRandom
+ entities:
+ - uid: 23133
+ components:
+ - type: Transform
+ pos: 126.5,75.5
+ parent: 1
+- proto: ClosetWallMaintenanceFilledRandom
+ entities:
+ - uid: 35877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,128.5
+ parent: 1
+- proto: ClothingBackpackDuffelSurgeryFilled
+ entities:
+ - uid: 2678
+ components:
+ - type: Transform
+ pos: 61.388664,103.79057
+ parent: 1
+ - uid: 2683
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 62.513664,104.59613
+ parent: 1
+- proto: ClothingBeltUtility
+ entities:
+ - uid: 20971
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 49.668606,86.363846
+ parent: 1
+- proto: ClothingBeltUtilityFilled
+ entities:
+ - uid: 29029
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 93.496254,61.484695
+ parent: 1
+ - uid: 32040
+ components:
+ - type: Transform
+ pos: 143.51147,132.92966
+ parent: 1
+- proto: ClothingEyesEyepatch
+ entities:
+ - uid: 21091
+ components:
+ - type: Transform
+ pos: 155.482,94.42513
+ parent: 1
+- proto: ClothingEyesGlasses
+ entities:
+ - uid: 20976
+ components:
+ - type: Transform
+ pos: 50.490788,92.148834
+ parent: 1
+- proto: ClothingEyesGlassesChemical
+ entities:
+ - uid: 18044
+ components:
+ - type: Transform
+ pos: 84.5,107.5
+ parent: 1
+- proto: ClothingEyesGlassesMeson
+ entities:
+ - uid: 16079
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 129.44867,135.59929
+ parent: 1
+- proto: ClothingEyesGlassesSunglasses
+ entities:
+ - uid: 22787
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 135.45728,66.05876
+ parent: 1
+ - uid: 26705
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 110.8869,99.52175
+ parent: 1
+ - uid: 27399
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 123.4769,83.39688
+ parent: 1
+ - uid: 36342
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 55.405693,150.59633
+ parent: 1
+- proto: ClothingHandsGlovesBoxingBlue
+ entities:
+ - uid: 26827
+ components:
+ - type: Transform
+ pos: 110.54211,83.542854
+ parent: 1
+ - uid: 26828
+ components:
+ - type: Transform
+ pos: 110.562935,82.917854
+ parent: 1
+- proto: ClothingHandsGlovesBoxingRed
+ entities:
+ - uid: 26833
+ components:
+ - type: Transform
+ pos: 102.54729,82.65397
+ parent: 1
+ - uid: 26834
+ components:
+ - type: Transform
+ pos: 102.54729,83.417854
+ parent: 1
+- proto: ClothingHandsGlovesColorYellow
+ entities:
+ - uid: 16066
+ components:
+ - type: Transform
+ pos: 97.5,125.5
+ parent: 1
+ - uid: 16182
+ components:
+ - type: Transform
+ pos: 128.5,137.5
+ parent: 1
+ - uid: 24546
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 94.51709,60.526367
+ parent: 1
+- proto: ClothingHandsGlovesLatex
+ entities:
+ - uid: 26995
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 61.525307,73.71391
+ parent: 1
+- proto: ClothingHandsGlovesNitrile
+ entities:
+ - uid: 18063
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.52326,83.70832
+ parent: 1
+- proto: ClothingHandsGlovesRobohands
+ entities:
+ - uid: 20956
+ components:
+ - type: Transform
+ pos: 63.492237,92.968124
+ parent: 1
+- proto: ClothingHeadHatBeretFrench
+ entities:
+ - uid: 23608
+ components:
+ - type: Transform
+ pos: 127.20696,43.77549
+ parent: 1
+- proto: ClothingHeadHatCone
+ entities:
+ - uid: 18348
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 102.61632,147.48788
+ parent: 1
+ - uid: 19731
+ components:
+ - type: Transform
+ pos: 38.41707,112.75604
+ parent: 1
+ - uid: 19733
+ components:
+ - type: Transform
+ pos: 38.222626,112.11716
+ parent: 1
+ - uid: 37021
+ components:
+ - type: Transform
+ pos: 96.66736,165.98862
+ parent: 1
+ - uid: 37308
+ components:
+ - type: Transform
+ pos: 102.1302,147.75177
+ parent: 1
+- proto: ClothingHeadHatFlowerWreath
+ entities:
+ - uid: 36005
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 47.987442,122.19965
+ parent: 1
+- proto: ClothingHeadHatHardhatBlue
+ entities:
+ - uid: 36727
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 89.715004,61.453438
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 12660
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 12660
+ - type: ActionsContainer
+- proto: ClothingHeadHatHardhatOrange
+ entities:
+ - uid: 36726
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 89.277504,61.411774
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 12661
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 12661
+ - type: ActionsContainer
+- proto: ClothingHeadHatHardhatRed
+ entities:
+ - uid: 36563
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 89.44417,61.661774
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 12663
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 12663
+ - type: ActionsContainer
+- proto: ClothingHeadHatMagician
+ entities:
+ - uid: 26681
+ components:
+ - type: Transform
+ pos: 120.54324,108.58552
+ parent: 1
+- proto: ClothingHeadHatOrangesoft
+ entities:
+ - uid: 30143
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 140.45529,140.5683
+ parent: 1
+- proto: ClothingHeadHatParamedicsoft
+ entities:
+ - uid: 17737
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 76.52033,103.52702
+ parent: 1
+- proto: ClothingHeadHatPwig
+ entities:
+ - uid: 35616
+ components:
+ - type: Transform
+ pos: 70.55852,163.01608
+ parent: 1
+- proto: ClothingHeadHatSecurityTrooper
+ entities:
+ - uid: 12395
+ components:
+ - type: Transform
+ pos: 154.5,49.5
+ parent: 1
+- proto: ClothingHeadHatWelding
+ entities:
+ - uid: 20954
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 63.662262,91.464645
+ parent: 1
+ - uid: 32079
+ components:
+ - type: Transform
+ pos: 54.5,154.5
+ parent: 1
+- proto: ClothingHeadHatWeldingMaskPainted
+ entities:
+ - uid: 16207
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 68.768234,123.3293
+ parent: 1
+- proto: ClothingHeadHatWizardFake
+ entities:
+ - uid: 26743
+ components:
+ - type: Transform
+ rot: -182.21237390820767 rad
+ pos: 105.0978,64.79724
+ parent: 1
+- proto: ClothingHeadHelmetBasic
+ entities:
+ - uid: 22801
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 135.66498,65.6239
+ parent: 1
+- proto: ClothingHeadHelmetCosmonaut
+ entities:
+ - uid: 32170
+ components:
+ - type: Transform
+ pos: 25.906517,123.33156
+ parent: 1
+- proto: ClothingHeadHelmetRiot
+ entities:
+ - uid: 22757
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.43488,65.39503
+ parent: 1
+ - uid: 22800
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.22287,65.38669
+ parent: 1
+- proto: ClothingHeadPyjamaSyndicateRed
+ entities:
+ - uid: 23063
+ components:
+ - type: Transform
+ pos: 136.4019,43.70142
+ parent: 1
+- proto: ClothingHeadsetGrey
+ entities:
+ - uid: 23068
+ components:
+ - type: Transform
+ pos: 122.98261,56.57529
+ parent: 1
+- proto: ClothingHeadsetRobotics
+ entities:
+ - uid: 20952
+ components:
+ - type: Transform
+ pos: 63.406113,93.697296
+ parent: 1
+- proto: ClothingMaskGas
+ entities:
+ - uid: 20816
+ components:
+ - type: Transform
+ pos: 30.588554,110.555145
+ parent: 1
+ - uid: 34075
+ components:
+ - type: Transform
+ pos: 82.51302,29.535202
+ parent: 1
+- proto: ClothingMaskGasAtmos
+ entities:
+ - uid: 16001
+ components:
+ - type: Transform
+ pos: 76.5,115.5
+ parent: 1
+- proto: ClothingMaskGasSecurity
+ entities:
+ - uid: 23079
+ components:
+ - type: Transform
+ pos: 138.42004,48.3799
+ parent: 1
+ - uid: 23080
+ components:
+ - type: Transform
+ pos: 138.65154,48.648422
+ parent: 1
+- proto: ClothingMaskSterile
+ entities:
+ - uid: 20947
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 35.398285,116.456924
+ parent: 1
+ - uid: 26992
+ components:
+ - type: Transform
+ pos: 61.52346,74.61896
+ parent: 1
+- proto: ClothingNeckCloakTrans
+ entities:
+ - uid: 34617
+ components:
+ - type: Transform
+ pos: 159.5,76.5
+ parent: 1
+- proto: ClothingNeckScarfStripedBlue
+ entities:
+ - uid: 17692
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 70.48974,92.38226
+ parent: 1
+- proto: ClothingNeckScarfStripedZebra
+ entities:
+ - uid: 26512
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 99.168976,60.634724
+ parent: 1
+- proto: ClothingNeckTieSci
+ entities:
+ - uid: 20845
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 26.5206,99.49299
+ parent: 1
+ - uid: 20992
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 33.606068,104.52185
+ parent: 1
+- proto: ClothingNeckTransPin
+ entities:
+ - uid: 27324
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 80.74132,53.58903
+ parent: 1
+- proto: ClothingOuterApronBar
+ entities:
+ - uid: 35137
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 106.46106,171.5699
+ parent: 1
+- proto: ClothingOuterApronChef
+ entities:
+ - uid: 30142
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 140.47258,136.44305
+ parent: 1
+ - uid: 33459
+ components:
+ - type: Transform
+ pos: 90.5,28.5
+ parent: 1
+- proto: ClothingOuterArmorBasic
+ entities:
+ - uid: 6321
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 135.7041,63.442642
+ parent: 1
+- proto: ClothingOuterArmorBulletproof
+ entities:
+ - uid: 21587
+ components:
+ - type: Transform
+ pos: 130.45798,63.573776
+ parent: 1
+ - uid: 22755
+ components:
+ - type: Transform
+ pos: 130.25798,63.588444
+ parent: 1
+- proto: ClothingOuterArmorReflective
+ entities:
+ - uid: 22761
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 130.6559,63.59461
+ parent: 1
+- proto: ClothingOuterArmorRiot
+ entities:
+ - uid: 22628
+ components:
+ - type: Transform
+ pos: 130.61674,63.16445
+ parent: 1
+ - uid: 22780
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.33136,63.148144
+ parent: 1
+- proto: ClothingOuterCoatRnd
+ entities:
+ - uid: 20818
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 31.299149,109.690636
+ parent: 1
+- proto: ClothingOuterHoodieChaplain
+ entities:
+ - uid: 4303
+ components:
+ - type: Transform
+ pos: 72.40076,75.076164
+ parent: 1
+- proto: ClothingOuterRobesJudge
+ entities:
+ - uid: 35615
+ components:
+ - type: Transform
+ pos: 70.53574,162.71033
+ parent: 1
+- proto: ClothingOuterStraightjacket
+ entities:
+ - uid: 28664
+ components:
+ - type: Transform
+ pos: 115.5,47.5
+ parent: 1
+- proto: ClothingOuterSuitEmergency
+ entities:
+ - uid: 6506
+ components:
+ - type: Transform
+ pos: 163.5,78.5
+ parent: 1
+ - uid: 19042
+ components:
+ - type: Transform
+ pos: 25.813568,122.86206
+ parent: 1
+- proto: ClothingOuterVestHazard
+ entities:
+ - uid: 15054
+ components:
+ - type: Transform
+ pos: 96.5,161.5
+ parent: 1
+ - uid: 35848
+ components:
+ - type: Transform
+ rot: 6.661338147750939E-16 rad
+ pos: 52.402252,128.59384
+ parent: 1
+ - uid: 36857
+ components:
+ - type: Transform
+ pos: 93.5,61.5
+ parent: 1
+ - uid: 37221
+ components:
+ - type: Transform
+ pos: 94.593605,121.6181
+ parent: 1
+ - uid: 37222
+ components:
+ - type: Transform
+ pos: 129.5,134.5
+ parent: 1
+ - uid: 37309
+ components:
+ - type: Transform
+ pos: 104.45654,162.53265
+ parent: 1
+- proto: ClothingOuterWinterColorGray
+ entities:
+ - uid: 17691
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 79.448074,92.50726
+ parent: 1
+- proto: ClothingOuterWizard
+ entities:
+ - uid: 26751
+ components:
+ - type: Transform
+ rot: -182.21237390820767 rad
+ pos: 105.62867,64.621315
+ parent: 1
+- proto: ClothingShoesBootsJack
+ entities:
+ - uid: 7478
+ components:
+ - type: Transform
+ pos: 154.5,49.5
+ parent: 1
+- proto: ClothingShoesBootsMag
+ entities:
+ - uid: 15055
+ components:
+ - type: Transform
+ pos: 102.51466,158.63791
+ parent: 1
+ - uid: 16085
+ components:
+ - type: Transform
+ pos: 96.5,162.5
+ parent: 1
+ - uid: 23312
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 53.47536,73.59036
+ parent: 1
+ - uid: 30024
+ components:
+ - type: Transform
+ pos: 96.5,158.5
+ parent: 1
+ - uid: 35593
+ components:
+ - type: Transform
+ pos: 53.58951,74.15608
+ parent: 1
+- proto: ClothingShoesBootsMoon
+ entities:
+ - uid: 30790
+ components:
+ - type: Transform
+ pos: 21.422173,121.56831
+ parent: 1
+- proto: ClothingShoesBootsWork
+ entities:
+ - uid: 35870
+ components:
+ - type: Transform
+ pos: 51.60364,132.62259
+ parent: 1
+- proto: ClothingShoesWizard
+ entities:
+ - uid: 26788
+ components:
+ - type: Transform
+ pos: 107.51806,64.67996
+ parent: 1
+- proto: ClothingUniformJumpskirtPurpleElegantDress
+ entities:
+ - uid: 36337
+ components:
+ - type: Transform
+ pos: 56.361767,133.63138
+ parent: 1
+- proto: ClothingUniformJumpsuitHawaiBlack
+ entities:
+ - uid: 27402
+ components:
+ - type: Transform
+ pos: 123.73384,83.58438
+ parent: 1
+- proto: ClothingUniformJumpsuitHawaiRed
+ entities:
+ - uid: 27401
+ components:
+ - type: Transform
+ pos: 123.35884,83.70243
+ parent: 1
+- proto: ClothingUniformJumpsuitPyjamaSyndicateRed
+ entities:
+ - uid: 23061
+ components:
+ - type: Transform
+ pos: 136.41232,43.347256
+ parent: 1
+- proto: ClothingUniformJumpsuitSecBlue
+ entities:
+ - uid: 26227
+ components:
+ - type: Transform
+ pos: 155.5,49.5
+ parent: 1
+- proto: ClothingUniformSecurityTrooper
+ entities:
+ - uid: 12394
+ components:
+ - type: Transform
+ pos: 154.5,49.5
+ parent: 1
+- proto: Cobweb1
+ entities:
+ - uid: 17758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,80.5
+ parent: 1
+ - uid: 35396
+ components:
+ - type: Transform
+ pos: 86.5,88.5
+ parent: 1
+- proto: Cobweb2
+ entities:
+ - uid: 35362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,84.5
+ parent: 1
+- proto: CombatKnife
+ entities:
+ - uid: 22950
+ components:
+ - type: Transform
+ pos: 152.78305,69.64975
+ parent: 1
+- proto: ComfyChair
+ entities:
+ - uid: 261
+ components:
+ - type: Transform
+ pos: 58.5,119.5
+ parent: 1
+ - uid: 3129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,102.5
+ parent: 1
+ - uid: 11003
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,41.5
+ parent: 1
+ - uid: 13592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,75.5
+ parent: 1
+ - uid: 26541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,103.5
+ parent: 1
+ - uid: 27174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,48.5
+ parent: 1
+ - uid: 28960
+ components:
+ - type: Transform
+ pos: 105.5,73.5
+ parent: 1
+ - uid: 28961
+ components:
+ - type: Transform
+ pos: 106.5,73.5
+ parent: 1
+ - uid: 29030
+ components:
+ - type: Transform
+ pos: 107.5,73.5
+ parent: 1
+ - uid: 34557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,74.5
+ parent: 1
+ - uid: 34558
+ components:
+ - type: Transform
+ pos: 161.5,75.5
+ parent: 1
+ - uid: 34562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,68.5
+ parent: 1
+ - uid: 34563
+ components:
+ - type: Transform
+ pos: 158.5,69.5
+ parent: 1
+ - uid: 35768
+ components:
+ - type: Transform
+ pos: 55.5,124.5
+ parent: 1
+ - uid: 35769
+ components:
+ - type: Transform
+ pos: 54.5,124.5
+ parent: 1
+ - uid: 35770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,121.5
+ parent: 1
+ - uid: 35771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,121.5
+ parent: 1
+- proto: CommandmentCircuitBoard
+ entities:
+ - uid: 13269
+ components:
+ - type: Transform
+ pos: 43.350765,37.512234
+ parent: 1
+- proto: CommsComputerCircuitboard
+ entities:
+ - uid: 32045
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 141.67947,133.35913
+ parent: 1
+- proto: ComputerAlert
+ entities:
+ - uid: 1784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,149.5
+ parent: 1
+ - uid: 7125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,121.5
+ parent: 1
+ - uid: 9649
+ components:
+ - type: Transform
+ pos: 37.5,64.5
+ parent: 1
+ - uid: 15998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,116.5
+ parent: 1
+ - uid: 16166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,147.5
+ parent: 1
+ - uid: 16175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,144.5
+ parent: 1
+ - uid: 28127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,121.5
+ parent: 1
+ - uid: 32984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,129.5
+ parent: 1
+- proto: ComputerAnalysisConsole
+ entities:
+ - uid: 19686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,88.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19682:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+ - uid: 19687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,92.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19683:
+ - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver
+- proto: ComputerAtmosMonitoring
+ entities:
+ - uid: 3199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,142.5
+ parent: 1
+ - uid: 19135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,133.5
+ parent: 1
+ - uid: 19139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,145.5
+ parent: 1
+ - uid: 36646
+ components:
+ - type: Transform
+ pos: 76.5,119.5
+ parent: 1
+- proto: computerBodyScanner
+ entities:
+ - uid: 213
+ components:
+ - type: Transform
+ pos: 63.5,104.5
+ parent: 1
+- proto: ComputerBroken
+ entities:
+ - uid: 731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,162.5
+ parent: 1
+ - uid: 6289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,114.5
+ parent: 1
+ - uid: 19464
+ components:
+ - type: Transform
+ pos: 55.5,154.5
+ parent: 1
+ - uid: 32075
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,150.5
+ parent: 1
+ - uid: 32115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,112.5
+ parent: 1
+ - uid: 33058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,22.5
+ parent: 1
+ - uid: 33707
+ components:
+ - type: Transform
+ pos: 115.5,40.5
+ parent: 1
+ - uid: 34638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,61.5
+ parent: 1
+ - uid: 35250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,160.5
+ parent: 1
+ - uid: 35262
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,161.5
+ parent: 1
+ - uid: 35335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,162.5
+ parent: 1
+ - uid: 35364
+ components:
+ - type: Transform
+ pos: 92.5,170.5
+ parent: 1
+ - uid: 37143
+ components:
+ - type: MetaData
+ desc: Originally used to make maps, this computer has seen better days.
+ name: broken cartography computer
+ - type: Transform
+ pos: 163.5,149.5
+ parent: 1
+- proto: ComputerCargoBounty
+ entities:
+ - uid: 2215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,48.5
+ parent: 1
+ - uid: 6299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,106.5
+ parent: 1
+ - uid: 19308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,102.5
+ parent: 1
+- proto: ComputerCargoOrders
+ entities:
+ - uid: 2689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,48.5
+ parent: 1
+ - uid: 6341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,105.5
+ parent: 1
+ - uid: 19312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,105.5
+ parent: 1
+ - uid: 19330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,101.5
+ parent: 1
+ - uid: 19351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,104.5
+ parent: 1
+- proto: ComputerComms
+ entities:
+ - uid: 9635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,58.5
+ parent: 1
+ - uid: 13582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,74.5
+ parent: 1
+- proto: ComputerCrewMonitoring
+ entities:
+ - uid: 1967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,90.5
+ parent: 1
+ - uid: 3742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,54.5
+ parent: 1
+ - uid: 5819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,66.5
+ parent: 1
+ - uid: 9642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,54.5
+ parent: 1
+ - uid: 17720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,104.5
+ parent: 1
+ - uid: 22965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,72.5
+ parent: 1
+- proto: ComputerCriminalRecords
+ entities:
+ - uid: 9638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,62.5
+ parent: 1
+ - uid: 11907
+ components:
+ - type: Transform
+ pos: 157.5,149.5
+ parent: 1
+ - uid: 22868
+ components:
+ - type: Transform
+ pos: 143.5,67.5
+ parent: 1
+ - uid: 22869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,74.5
+ parent: 1
+ - uid: 22870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,73.5
+ parent: 1
+ - uid: 22871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,54.5
+ parent: 1
+ - uid: 22872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,68.5
+ parent: 1
+ - uid: 37452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,56.5
+ parent: 1
+- proto: ComputerFrame
+ entities:
+ - uid: 6549
+ components:
+ - type: Transform
+ pos: 57.5,124.5
+ parent: 1
+ - uid: 34122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,86.5
+ parent: 1
+- proto: ComputerId
+ entities:
+ - uid: 9629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,59.5
+ parent: 1
+ - uid: 9637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,59.5
+ parent: 1
+ - uid: 13581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,76.5
+ parent: 1
+- proto: ComputerMassMedia
+ entities:
+ - uid: 5485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,128.5
+ parent: 1
+- proto: ComputerMedicalRecords
+ entities:
+ - uid: 551
+ components:
+ - type: Transform
+ pos: 59.5,104.5
+ parent: 1
+ - uid: 4207
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,90.5
+ parent: 1
+ - uid: 9646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,55.5
+ parent: 1
+ - uid: 20830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,89.5
+ parent: 1
+ - uid: 28589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,51.5
+ parent: 1
+- proto: ComputerPowerMonitoring
+ entities:
+ - uid: 6368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,140.5
+ parent: 1
+ - uid: 9390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,121.5
+ parent: 1
+ - uid: 9650
+ components:
+ - type: Transform
+ pos: 36.5,64.5
+ parent: 1
+ - uid: 16141
+ components:
+ - type: Transform
+ pos: 116.5,125.5
+ parent: 1
+ - uid: 16162
+ components:
+ - type: Transform
+ pos: 99.5,125.5
+ parent: 1
+ - uid: 16165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,147.5
+ parent: 1
+ - uid: 31757
+ components:
+ - type: Transform
+ pos: 161.5,59.5
+ parent: 1
+ - uid: 36781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,139.5
+ parent: 1
+- proto: ComputerRadar
+ entities:
+ - uid: 6350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,48.5
+ parent: 1
+ - uid: 20432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,88.5
+ parent: 1
+ - uid: 21673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,93.5
+ parent: 1
+ - uid: 21682
+ components:
+ - type: Transform
+ pos: 162.5,92.5
+ parent: 1
+- proto: ComputerResearchAndDevelopment
+ entities:
+ - uid: 2046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,49.5
+ parent: 1
+ - uid: 8857
+ components:
+ - type: Transform
+ pos: 48.5,108.5
+ parent: 1
+ - uid: 20348
+ components:
+ - type: Transform
+ pos: 49.5,93.5
+ parent: 1
+ - uid: 20412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,104.5
+ parent: 1
+ - uid: 20422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,86.5
+ parent: 1
+- proto: ComputerRoboticsControl
+ entities:
+ - uid: 585
+ components:
+ - type: Transform
+ pos: 63.5,97.5
+ parent: 1
+ - uid: 2015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,49.5
+ parent: 1
+ - uid: 5896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,105.5
+ parent: 1
+- proto: ComputerSalvageExpedition
+ entities:
+ - uid: 20401
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,94.5
+ parent: 1
+ - uid: 32333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,88.5
+ parent: 1
+- proto: ComputerShuttleCargo
+ entities:
+ - uid: 6349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,98.5
+ parent: 1
+ - uid: 19339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,108.5
+ parent: 1
+- proto: ComputerSolarControl
+ entities:
+ - uid: 250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,141.5
+ parent: 1
+ - uid: 9648
+ components:
+ - type: Transform
+ pos: 35.5,64.5
+ parent: 1
+ - uid: 16140
+ components:
+ - type: Transform
+ pos: 117.5,125.5
+ parent: 1
+ - uid: 16156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,145.5
+ parent: 1
+ - uid: 16157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,131.5
+ parent: 1
+ - uid: 16163
+ components:
+ - type: Transform
+ pos: 100.5,125.5
+ parent: 1
+ - uid: 31154
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,71.5
+ parent: 1
+ - uid: 34274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,55.5
+ parent: 1
+- proto: ComputerStationRecords
+ entities:
+ - uid: 3353
+ components:
+ - type: Transform
+ pos: 133.5,70.5
+ parent: 1
+ - uid: 9643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,57.5
+ parent: 1
+ - uid: 9644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,59.5
+ parent: 1
+ - uid: 37451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,54.5
+ parent: 1
+- proto: ComputerSurveillanceCameraMonitor
+ entities:
+ - uid: 5765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,66.5
+ parent: 1
+ - uid: 9630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,61.5
+ parent: 1
+ - uid: 22957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,74.5
+ parent: 1
+ - uid: 22959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,73.5
+ parent: 1
+ - uid: 34020
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,112.5
+ parent: 1
+- proto: ComputerSurveillanceWirelessCameraMonitor
+ entities:
+ - uid: 9639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,63.5
+ parent: 1
+- proto: ComputerTechnologyDiskTerminal
+ entities:
+ - uid: 20452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,93.5
+ parent: 1
+- proto: ComputerTelevision
+ entities:
+ - uid: 11453
+ components:
+ - type: Transform
+ pos: 37.5,66.5
+ parent: 1
+ - uid: 13659
+ components:
+ - type: Transform
+ pos: 55.5,59.5
+ parent: 1
+ - uid: 16095
+ components:
+ - type: Transform
+ pos: 124.5,115.5
+ parent: 1
+ - uid: 19421
+ components:
+ - type: Transform
+ pos: 142.5,102.5
+ parent: 1
+ - uid: 23043
+ components:
+ - type: Transform
+ pos: 130.5,52.5
+ parent: 1
+ - uid: 26591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,96.5
+ parent: 1
+ - uid: 29665
+ components:
+ - type: Transform
+ pos: 146.5,127.5
+ parent: 1
+ - uid: 31888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,48.5
+ parent: 1
+ - uid: 31924
+ components:
+ - type: Transform
+ pos: 132.5,71.5
+ parent: 1
+ - uid: 32100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,108.5
+ parent: 1
+ - uid: 36641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,64.5
+ parent: 1
+ - uid: 36642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,67.5
+ parent: 1
+ - uid: 36643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,70.5
+ parent: 1
+ - uid: 36644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,73.5
+ parent: 1
+- proto: ContainmentFieldGenerator
+ entities:
+ - uid: 9090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,141.5
+ parent: 1
+ - uid: 9098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,133.5
+ parent: 1
+ - uid: 9117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,141.5
+ parent: 1
+ - uid: 14061
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,133.5
+ parent: 1
+ - uid: 24662
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,150.5
+ parent: 1
+ - uid: 26980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,149.5
+ parent: 1
+- proto: ConveyorBelt
+ entities:
+ - uid: 1438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,97.5
+ parent: 1
+ - uid: 4529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,73.5
+ parent: 1
+ - uid: 5034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,73.5
+ parent: 1
+ - uid: 5888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,73.5
+ parent: 1
+ - uid: 16219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,100.5
+ parent: 1
+ - uid: 16220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,101.5
+ parent: 1
+ - uid: 16221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,102.5
+ parent: 1
+ - uid: 16222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,104.5
+ parent: 1
+ - uid: 16227
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,103.5
+ parent: 1
+ - uid: 19277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,106.5
+ parent: 1
+ - uid: 19278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,106.5
+ parent: 1
+ - uid: 19279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,106.5
+ parent: 1
+ - uid: 19280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,106.5
+ parent: 1
+ - uid: 19281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,106.5
+ parent: 1
+ - uid: 19282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,106.5
+ parent: 1
+ - uid: 19283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,106.5
+ parent: 1
+ - uid: 19284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,110.5
+ parent: 1
+ - uid: 19285
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,110.5
+ parent: 1
+ - uid: 19286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,110.5
+ parent: 1
+ - uid: 19287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,110.5
+ parent: 1
+ - uid: 19288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,110.5
+ parent: 1
+ - uid: 19289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,110.5
+ parent: 1
+ - uid: 19290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,110.5
+ parent: 1
+ - uid: 19291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 19292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,112.5
+ parent: 1
+ - uid: 19293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,112.5
+ parent: 1
+ - uid: 19294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,112.5
+ parent: 1
+ - uid: 19295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,112.5
+ parent: 1
+ - uid: 19296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 19297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,112.5
+ parent: 1
+ - uid: 19315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,99.5
+ parent: 1
+ - uid: 19317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,99.5
+ parent: 1
+ - uid: 19319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,99.5
+ parent: 1
+ - uid: 22735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,93.5
+ parent: 1
+ - uid: 22742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,73.5
+ parent: 1
+ - uid: 22792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,74.5
+ parent: 1
+ - uid: 22793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,74.5
+ parent: 1
+ - uid: 22802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,74.5
+ parent: 1
+ - uid: 22804
+ components:
+ - type: Transform
+ pos: 151.5,74.5
+ parent: 1
+ - uid: 23947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,95.5
+ parent: 1
+ - uid: 26175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,96.5
+ parent: 1
+ - uid: 29397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,98.5
+ parent: 1
+ - uid: 32972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 32974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 34309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,83.5
+ parent: 1
+ - uid: 34310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,84.5
+ parent: 1
+ - uid: 34311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,83.5
+ parent: 1
+ - uid: 34312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,82.5
+ parent: 1
+ - uid: 34313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,83.5
+ parent: 1
+ - uid: 34314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,83.5
+ parent: 1
+ - uid: 34315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,83.5
+ parent: 1
+ - uid: 34316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,81.5
+ parent: 1
+ - uid: 34323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,85.5
+ parent: 1
+ - uid: 34324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,85.5
+ parent: 1
+ - uid: 34325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,85.5
+ parent: 1
+ - uid: 34329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,81.5
+ parent: 1
+ - uid: 34330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,82.5
+ parent: 1
+ - uid: 36553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 36554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,111.5
+ parent: 1
+ - uid: 36555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,110.5
+ parent: 1
+ - uid: 36556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,110.5
+ parent: 1
+ - uid: 36557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,110.5
+ parent: 1
+- proto: CorporateCircuitBoard
+ entities:
+ - uid: 13259
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.371597,39.701252
+ parent: 1
+- proto: CrateArtifactContainer
+ entities:
+ - uid: 10760
+ components:
+ - type: Transform
+ pos: 51.5,81.5
+ parent: 1
+ - uid: 20490
+ components:
+ - type: Transform
+ pos: 48.5,82.5
+ parent: 1
+- proto: CrateCoffin
+ entities:
+ - uid: 27063
+ components:
+ - type: Transform
+ pos: 64.5,72.5
+ parent: 1
+- proto: CrateContrabandStorageSecure
+ entities:
+ - uid: 22744
+ components:
+ - type: Transform
+ pos: 133.5,66.5
+ parent: 1
+- proto: CrateEmergencyInflatablewall
+ entities:
+ - uid: 19406
+ components:
+ - type: Transform
+ pos: 148.5,107.5
+ parent: 1
+- proto: CrateEmptySpawner
+ entities:
+ - uid: 19427
+ components:
+ - type: Transform
+ pos: 155.5,105.5
+ parent: 1
+ - uid: 19428
+ components:
+ - type: Transform
+ pos: 154.5,104.5
+ parent: 1
+ - uid: 19429
+ components:
+ - type: Transform
+ pos: 149.5,108.5
+ parent: 1
+ - uid: 19433
+ components:
+ - type: Transform
+ pos: 137.5,111.5
+ parent: 1
+ - uid: 19434
+ components:
+ - type: Transform
+ pos: 139.5,110.5
+ parent: 1
+- proto: CrateEngineeringAMEJar
+ entities:
+ - uid: 18182
+ components:
+ - type: Transform
+ pos: 107.5,162.5
+ parent: 1
+- proto: CrateEngineeringAMEShielding
+ entities:
+ - uid: 18181
+ components:
+ - type: Transform
+ pos: 108.5,162.5
+ parent: 1
+ - uid: 33908
+ components:
+ - type: Transform
+ pos: 109.5,162.5
+ parent: 1
+- proto: CrateEngineeringCableBulk
+ entities:
+ - uid: 16062
+ components:
+ - type: Transform
+ pos: 136.5,133.5
+ parent: 1
+ - uid: 32024
+ components:
+ - type: Transform
+ pos: 143.5,130.5
+ parent: 1
+- proto: CrateFilledSpawner
+ entities:
+ - uid: 19404
+ components:
+ - type: Transform
+ pos: 150.5,104.5
+ parent: 1
+ - uid: 19405
+ components:
+ - type: Transform
+ pos: 148.5,105.5
+ parent: 1
+ - uid: 19407
+ components:
+ - type: Transform
+ pos: 156.5,105.5
+ parent: 1
+ - uid: 19410
+ components:
+ - type: Transform
+ pos: 137.5,112.5
+ parent: 1
+ - uid: 19411
+ components:
+ - type: Transform
+ pos: 139.5,111.5
+ parent: 1
+- proto: CrateFreezer
+ entities:
+ - uid: 17898
+ components:
+ - type: Transform
+ pos: 59.5,83.5
+ parent: 1
+ - uid: 20895
+ components:
+ - type: Transform
+ pos: 59.5,100.5
+ parent: 1
+ - uid: 26447
+ components:
+ - type: Transform
+ pos: 115.5,90.5
+ parent: 1
+ - uid: 34523
+ components:
+ - type: Transform
+ pos: 157.5,42.5
+ parent: 1
+- proto: CrateFunPirate
+ entities:
+ - uid: 21080
+ components:
+ - type: Transform
+ pos: 155.5,93.5
+ parent: 1
+- proto: CrateMedicalSurgery
+ entities:
+ - uid: 36639
+ components:
+ - type: Transform
+ pos: 63.5,101.5
+ parent: 1
+- proto: CrateNPCChicken
+ entities:
+ - uid: 26627
+ components:
+ - type: Transform
+ pos: 113.5,93.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCCow
+ entities:
+ - uid: 26629
+ components:
+ - type: Transform
+ pos: 107.5,94.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCGoat
+ entities:
+ - uid: 26628
+ components:
+ - type: Transform
+ pos: 113.5,90.5
+ parent: 1
+ - type: EntityStorage
+ open: True
+ removedMasks: 28
+ - type: Fixtures
+ fixtures:
+ fix1:
+ shape: !type:PolygonShape
+ radius: 0.01
+ vertices:
+ - -0.4,-0.4
+ - 0.4,-0.4
+ - 0.4,0.29
+ - -0.4,0.29
+ mask:
+ - Impassable
+ - HighImpassable
+ - LowImpassable
+ layer:
+ - BulletImpassable
+ - Opaque
+ density: 135
+ hard: True
+ restitution: 0
+ friction: 0.4
+ - type: PlaceableSurface
+ isPlaceable: True
+- proto: CrateNPCHamlet
+ entities:
+ - uid: 13535
+ components:
+ - type: Transform
+ pos: 39.5,64.5
+ parent: 1
+- proto: CrateSecurityTrackingMindshieldImplants
+ entities:
+ - uid: 6406
+ components:
+ - type: Transform
+ pos: 135.5,64.5
+ parent: 1
+- proto: CrateServiceJanitorialSupplies
+ entities:
+ - uid: 19400
+ components:
+ - type: Transform
+ pos: 154.5,128.5
+ parent: 1
+- proto: CrateServiceTheatre
+ entities:
+ - uid: 26764
+ components:
+ - type: Transform
+ pos: 104.5,61.5
+ parent: 1
+- proto: CrateTrainingBombs
+ entities:
+ - uid: 5862
+ components:
+ - type: Transform
+ pos: 153.5,66.5
+ parent: 1
+- proto: CrateTrashCart
+ entities:
+ - uid: 34336
+ components:
+ - type: Transform
+ pos: 161.5,78.5
+ parent: 1
+- proto: CrateTrashCartJani
+ entities:
+ - uid: 29609
+ components:
+ - type: Transform
+ pos: 156.5,123.5
+ parent: 1
+- proto: CrayonBox
+ entities:
+ - uid: 23060
+ components:
+ - type: Transform
+ pos: 128.6639,49.201008
+ parent: 1
+ - uid: 26770
+ components:
+ - type: Transform
+ pos: 98.507614,60.647522
+ parent: 1
+ - uid: 26771
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 105.51406,56.639446
+ parent: 1
+- proto: Crematorium
+ entities:
+ - uid: 13479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,72.5
+ parent: 1
+- proto: CrewMonitoringServer
+ entities:
+ - uid: 19361
+ components:
+ - type: Transform
+ pos: 52.5,105.5
+ parent: 1
+ - type: SingletonDeviceNetServer
+ active: False
+ available: False
+- proto: Crowbar
+ entities:
+ - uid: 13554
+ components:
+ - type: Transform
+ rot: -138.2300767579507 rad
+ pos: 54.47016,25.617409
+ parent: 1
+ - uid: 23775
+ components:
+ - type: Transform
+ pos: 36.477272,90.52966
+ parent: 1
+ - uid: 26701
+ components:
+ - type: Transform
+ pos: 107.54996,99.53275
+ parent: 1
+ - uid: 34088
+ components:
+ - type: Transform
+ pos: 91.50937,32.475586
+ parent: 1
+ - uid: 35223
+ components:
+ - type: Transform
+ rot: -100.53096491487331 rad
+ pos: 87.62293,85.93254
+ parent: 1
+- proto: CrowbarRed
+ entities:
+ - uid: 37145
+ components:
+ - type: Transform
+ pos: 162.5,147.5
+ parent: 1
+- proto: CryogenicSleepUnit
+ entities:
+ - uid: 5293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,63.5
+ parent: 1
+ - uid: 23059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,49.5
+ parent: 1
+- proto: CryogenicSleepUnitSpawnerLateJoin
+ entities:
+ - uid: 29717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,141.5
+ parent: 1
+ - uid: 29718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,143.5
+ parent: 1
+ - uid: 29719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,141.5
+ parent: 1
+ - uid: 29722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,143.5
+ parent: 1
+- proto: CryoPod
+ entities:
+ - uid: 17060
+ components:
+ - type: Transform
+ pos: 77.5,92.5
+ parent: 1
+ - uid: 17061
+ components:
+ - type: Transform
+ pos: 72.5,92.5
+ parent: 1
+- proto: CryoxadoneBeakerSmall
+ entities:
+ - uid: 17687
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 79.291824,91.93435
+ parent: 1
+ - uid: 17688
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 70.323074,91.51768
+ parent: 1
+- proto: CurtainsBlackOpen
+ entities:
+ - uid: 12411
+ components:
+ - type: Transform
+ pos: 91.5,72.5
+ parent: 1
+ - uid: 12419
+ components:
+ - type: Transform
+ pos: 91.5,76.5
+ parent: 1
+ - uid: 12431
+ components:
+ - type: Transform
+ pos: 91.5,74.5
+ parent: 1
+ - uid: 26791
+ components:
+ - type: Transform
+ pos: 114.5,60.5
+ parent: 1
+- proto: CurtainsOrange
+ entities:
+ - uid: 25167
+ components:
+ - type: Transform
+ pos: 143.5,111.5
+ parent: 1
+- proto: CurtainsPinkOpen
+ entities:
+ - uid: 26789
+ components:
+ - type: Transform
+ pos: 108.5,59.5
+ parent: 1
+- proto: CurtainsRed
+ entities:
+ - uid: 24592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,66.5
+ parent: 1
+ - uid: 31863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,66.5
+ parent: 1
+- proto: CurtainsRedOpen
+ entities:
+ - uid: 18060
+ components:
+ - type: Transform
+ pos: 170.5,134.5
+ parent: 1
+ - uid: 25848
+ components:
+ - type: Transform
+ pos: 105.5,43.5
+ parent: 1
+ - uid: 34582
+ components:
+ - type: Transform
+ pos: 162.5,74.5
+ parent: 1
+ - uid: 34583
+ components:
+ - type: Transform
+ pos: 162.5,75.5
+ parent: 1
+ - uid: 34584
+ components:
+ - type: Transform
+ pos: 157.5,75.5
+ parent: 1
+ - uid: 34585
+ components:
+ - type: Transform
+ pos: 157.5,74.5
+ parent: 1
+ - uid: 37176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 170.5,135.5
+ parent: 1
+- proto: CurtainsWhiteOpen
+ entities:
+ - uid: 26790
+ components:
+ - type: Transform
+ pos: 102.5,60.5
+ parent: 1
+- proto: d6Dice
+ entities:
+ - uid: 16911
+ components:
+ - type: Transform
+ pos: 124.887955,170.62903
+ parent: 1
+ - uid: 27208
+ components:
+ - type: Transform
+ pos: 76.48402,59.31955
+ parent: 1
+ - uid: 27209
+ components:
+ - type: Transform
+ pos: 76.67846,59.63205
+ parent: 1
+ - uid: 35772
+ components:
+ - type: Transform
+ pos: 55.238964,123.09625
+ parent: 1
+ - uid: 35773
+ components:
+ - type: Transform
+ pos: 54.789604,123.18323
+ parent: 1
+ - uid: 35837
+ components:
+ - type: Transform
+ pos: 124.61699,170.9832
+ parent: 1
+- proto: DefaultStationBeaconAICore
+ entities:
+ - uid: 13727
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 1
+- proto: DefaultStationBeaconAME
+ entities:
+ - uid: 36732
+ components:
+ - type: Transform
+ pos: 108.5,160.5
+ parent: 1
+- proto: DefaultStationBeaconAnomalyGenerator
+ entities:
+ - uid: 554
+ components:
+ - type: Transform
+ pos: 43.5,113.5
+ parent: 1
+- proto: DefaultStationBeaconArmory
+ entities:
+ - uid: 22554
+ components:
+ - type: Transform
+ pos: 133.5,63.5
+ parent: 1
+- proto: DefaultStationBeaconArrivals
+ entities:
+ - uid: 2561
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+ - uid: 27676
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+- proto: DefaultStationBeaconArtifactLab
+ entities:
+ - uid: 19684
+ components:
+ - type: Transform
+ pos: 37.5,90.5
+ parent: 1
+- proto: DefaultStationBeaconAtmospherics
+ entities:
+ - uid: 2778
+ components:
+ - type: Transform
+ pos: 74.5,139.5
+ parent: 1
+- proto: DefaultStationBeaconBar
+ entities:
+ - uid: 26539
+ components:
+ - type: Transform
+ pos: 108.5,108.5
+ parent: 1
+- proto: DefaultStationBeaconBotany
+ entities:
+ - uid: 26456
+ components:
+ - type: Transform
+ pos: 98.5,100.5
+ parent: 1
+- proto: DefaultStationBeaconBridge
+ entities:
+ - uid: 11341
+ components:
+ - type: Transform
+ pos: 36.5,57.5
+ parent: 1
+- proto: DefaultStationBeaconBrig
+ entities:
+ - uid: 22556
+ components:
+ - type: Transform
+ pos: 126.5,69.5
+ parent: 1
+- proto: DefaultStationBeaconCaptainsQuarters
+ entities:
+ - uid: 13473
+ components:
+ - type: Transform
+ pos: 36.5,73.5
+ parent: 1
+- proto: DefaultStationBeaconCargoBay
+ entities:
+ - uid: 30361
+ components:
+ - type: Transform
+ pos: 152.5,107.5
+ parent: 1
+- proto: DefaultStationBeaconCargoReception
+ entities:
+ - uid: 19322
+ components:
+ - type: Transform
+ pos: 133.5,103.5
+ parent: 1
+- proto: DefaultStationBeaconCERoom
+ entities:
+ - uid: 8997
+ components:
+ - type: Transform
+ pos: 127.5,144.5
+ parent: 1
+- proto: DefaultStationBeaconChapel
+ entities:
+ - uid: 26974
+ components:
+ - type: Transform
+ pos: 84.5,74.5
+ parent: 1
+- proto: DefaultStationBeaconChemistry
+ entities:
+ - uid: 18038
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 1
+- proto: DefaultStationBeaconClinic
+ entities:
+ - uid: 22776
+ components:
+ - type: Transform
+ pos: 116.5,49.5
+ parent: 1
+- proto: DefaultStationBeaconCMORoom
+ entities:
+ - uid: 18100
+ components:
+ - type: Transform
+ pos: 88.5,92.5
+ parent: 1
+- proto: DefaultStationBeaconCourtroom
+ entities:
+ - uid: 4261
+ components:
+ - type: Transform
+ pos: 94.5,41.5
+ parent: 1
+- proto: DefaultStationBeaconCryonics
+ entities:
+ - uid: 18101
+ components:
+ - type: Transform
+ pos: 74.5,91.5
+ parent: 1
+- proto: DefaultStationBeaconDetectiveRoom
+ entities:
+ - uid: 13538
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+- proto: DefaultStationBeaconDisposals
+ entities:
+ - uid: 34352
+ components:
+ - type: Transform
+ pos: 158.5,80.5
+ parent: 1
+- proto: DefaultStationBeaconEngineering
+ entities:
+ - uid: 9021
+ components:
+ - type: Transform
+ pos: 130.5,135.5
+ parent: 1
+- proto: DefaultStationBeaconEscapePod
+ entities:
+ - uid: 5561
+ components:
+ - type: Transform
+ pos: 16.5,107.5
+ parent: 1
+ - uid: 7220
+ components:
+ - type: Transform
+ pos: 103.5,172.5
+ parent: 1
+ - uid: 29191
+ components:
+ - type: Transform
+ pos: 114.5,17.5
+ parent: 1
+- proto: DefaultStationBeaconEVAStorage
+ entities:
+ - uid: 2553
+ components:
+ - type: Transform
+ pos: 50.5,70.5
+ parent: 1
+- proto: DefaultStationBeaconGravGen
+ entities:
+ - uid: 32997
+ components:
+ - type: Transform
+ pos: 99.5,160.5
+ parent: 1
+- proto: DefaultStationBeaconHOPOffice
+ entities:
+ - uid: 13532
+ components:
+ - type: Transform
+ pos: 58.5,56.5
+ parent: 1
+- proto: DefaultStationBeaconHOSRoom
+ entities:
+ - uid: 22989
+ components:
+ - type: Transform
+ pos: 143.5,65.5
+ parent: 1
+- proto: DefaultStationBeaconJanitorsCloset
+ entities:
+ - uid: 29556
+ components:
+ - type: Transform
+ pos: 157.5,124.5
+ parent: 1
+- proto: DefaultStationBeaconKitchen
+ entities:
+ - uid: 30317
+ components:
+ - type: Transform
+ pos: 119.5,101.5
+ parent: 1
+- proto: DefaultStationBeaconLawOffice
+ entities:
+ - uid: 33814
+ components:
+ - type: Transform
+ pos: 104.5,47.5
+ parent: 1
+- proto: DefaultStationBeaconLibrary
+ entities:
+ - uid: 24309
+ components:
+ - type: Transform
+ pos: 74.5,56.5
+ parent: 1
+- proto: DefaultStationBeaconMedbay
+ entities:
+ - uid: 17733
+ components:
+ - type: Transform
+ pos: 75.5,96.5
+ parent: 1
+- proto: DefaultStationBeaconMorgue
+ entities:
+ - uid: 18102
+ components:
+ - type: Transform
+ pos: 61.5,84.5
+ parent: 1
+- proto: DefaultStationBeaconPermaBrig
+ entities:
+ - uid: 22867
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+- proto: DefaultStationBeaconPowerBank
+ entities:
+ - uid: 14296
+ components:
+ - type: Transform
+ pos: 127.5,125.5
+ parent: 1
+- proto: DefaultStationBeaconRDRoom
+ entities:
+ - uid: 20887
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+- proto: DefaultStationBeaconRND
+ entities:
+ - uid: 20411
+ components:
+ - type: Transform
+ pos: 48.5,90.5
+ parent: 1
+- proto: DefaultStationBeaconRobotics
+ entities:
+ - uid: 20415
+ components:
+ - type: Transform
+ pos: 61.5,93.5
+ parent: 1
+- proto: DefaultStationBeaconSalvage
+ entities:
+ - uid: 23426
+ components:
+ - type: Transform
+ pos: 149.5,92.5
+ parent: 1
+- proto: DefaultStationBeaconScience
+ entities:
+ - uid: 20449
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+- proto: DefaultStationBeaconSecurity
+ entities:
+ - uid: 22558
+ components:
+ - type: Transform
+ pos: 139.5,60.5
+ parent: 1
+- proto: DefaultStationBeaconSecurityCheckpoint
+ entities:
+ - uid: 10337
+ components:
+ - type: Transform
+ pos: 153.5,149.5
+ parent: 1
+ - uid: 29513
+ components:
+ - type: Transform
+ pos: 93.5,114.5
+ parent: 1
+- proto: DefaultStationBeaconServerRoom
+ entities:
+ - uid: 20410
+ components:
+ - type: Transform
+ pos: 48.5,106.5
+ parent: 1
+- proto: DefaultStationBeaconService
+ entities:
+ - uid: 26523
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 1
+- proto: DefaultStationBeaconSingularity
+ entities:
+ - uid: 14297
+ components:
+ - type: Transform
+ pos: 108.5,147.5
+ parent: 1
+- proto: DefaultStationBeaconSolars
+ entities:
+ - uid: 30969
+ components:
+ - type: Transform
+ pos: 53.5,140.5
+ parent: 1
+ - uid: 31155
+ components:
+ - type: Transform
+ pos: 28.5,70.5
+ parent: 1
+ - uid: 31474
+ components:
+ - type: Transform
+ pos: 162.5,57.5
+ parent: 1
+- proto: DefaultStationBeaconSupply
+ entities:
+ - uid: 19516
+ components:
+ - type: Transform
+ pos: 145.5,104.5
+ parent: 1
+- proto: DefaultStationBeaconSurgery
+ entities:
+ - uid: 2745
+ components:
+ - type: Transform
+ pos: 61.5,101.5
+ parent: 1
+- proto: DefaultStationBeaconTechVault
+ entities:
+ - uid: 32043
+ components:
+ - type: Transform
+ pos: 144.5,133.5
+ parent: 1
+- proto: DefaultStationBeaconTEG
+ entities:
+ - uid: 3039
+ components:
+ - type: Transform
+ pos: 82.5,139.5
+ parent: 1
+- proto: DefaultStationBeaconTelecoms
+ entities:
+ - uid: 30369
+ components:
+ - type: Transform
+ pos: 133.5,127.5
+ parent: 1
+- proto: DefaultStationBeaconTheater
+ entities:
+ - uid: 3458
+ components:
+ - type: Transform
+ pos: 106.5,67.5
+ parent: 1
+- proto: DefaultStationBeaconToolRoom
+ entities:
+ - uid: 24594
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 1
+- proto: DefaultStationBeaconVault
+ entities:
+ - uid: 33968
+ components:
+ - type: Transform
+ pos: 47.5,74.5
+ parent: 1
+- proto: DefaultStationBeaconWardensOffice
+ entities:
+ - uid: 22557
+ components:
+ - type: Transform
+ pos: 132.5,70.5
+ parent: 1
+- proto: DefibrillatorCabinetFilled
+ entities:
+ - uid: 4558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,79.5
+ parent: 1
+ - uid: 18015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,91.5
+ parent: 1
+ - uid: 18016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,91.5
+ parent: 1
+ - uid: 18017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,95.5
+ parent: 1
+ - uid: 18018
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,99.5
+ parent: 1
+- proto: DeployableBarrier
+ entities:
+ - uid: 22539
+ components:
+ - type: Transform
+ pos: 141.5,60.5
+ parent: 1
+ - uid: 22705
+ components:
+ - type: Transform
+ pos: 141.5,59.5
+ parent: 1
+ - uid: 25147
+ components:
+ - type: Transform
+ pos: 129.5,54.5
+ parent: 1
+- proto: DeskBell
+ entities:
+ - uid: 529
+ components:
+ - type: Transform
+ pos: 61.764534,60.58877
+ parent: 1
+ - uid: 16578
+ components:
+ - type: Transform
+ pos: 75.5,115.5
+ parent: 1
+ - uid: 16579
+ components:
+ - type: Transform
+ pos: 115.5,122.5
+ parent: 1
+ - uid: 18215
+ components:
+ - type: Transform
+ pos: 84.539505,109.665535
+ parent: 1
+ - uid: 19391
+ components:
+ - type: Transform
+ pos: 137.52434,102.312515
+ parent: 1
+ - uid: 20972
+ components:
+ - type: Transform
+ pos: 50.50759,92.77167
+ parent: 1
+ - uid: 22972
+ components:
+ - type: Transform
+ pos: 132.35202,75.57144
+ parent: 1
+ - uid: 26579
+ components:
+ - type: Transform
+ pos: 117.713455,105.588936
+ parent: 1
+ - uid: 26580
+ components:
+ - type: Transform
+ pos: 99.25979,105.57845
+ parent: 1
+ - uid: 27183
+ components:
+ - type: Transform
+ pos: 76.5,54.5
+ parent: 1
+- proto: DiceBag
+ entities:
+ - uid: 26902
+ components:
+ - type: Transform
+ pos: 109.5,115.5
+ parent: 1
+ - uid: 27207
+ components:
+ - type: Transform
+ pos: 76.5,57.5
+ parent: 1
+ - uid: 27212
+ components:
+ - type: Transform
+ pos: 70.638725,61.613705
+ parent: 1
+ - uid: 30357
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 125.70212,170.54715
+ parent: 1
+- proto: DisgustingSweptSoup
+ entities:
+ - uid: 33553
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 100.41544,26.888775
+ parent: 1
+- proto: DisposalBend
+ entities:
+ - uid: 1133
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - uid: 1440
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - uid: 2732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,47.5
+ parent: 1
+ - uid: 2804
+ components:
+ - type: Transform
+ pos: 131.5,108.5
+ parent: 1
+ - uid: 4800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,148.5
+ parent: 1
+ - uid: 5092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,114.5
+ parent: 1
+ - uid: 5093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,50.5
+ parent: 1
+ - uid: 5410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,53.5
+ parent: 1
+ - uid: 5821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,114.5
+ parent: 1
+ - uid: 6142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,49.5
+ parent: 1
+ - uid: 6219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,153.5
+ parent: 1
+ - uid: 6292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,49.5
+ parent: 1
+ - uid: 6293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,49.5
+ parent: 1
+ - uid: 10599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,64.5
+ parent: 1
+ - uid: 11375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,64.5
+ parent: 1
+ - uid: 11376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,64.5
+ parent: 1
+ - uid: 11377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,65.5
+ parent: 1
+ - uid: 11399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,65.5
+ parent: 1
+ - uid: 11449
+ components:
+ - type: Transform
+ pos: 39.5,63.5
+ parent: 1
+ - uid: 11451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,63.5
+ parent: 1
+ - uid: 11495
+ components:
+ - type: Transform
+ pos: 44.5,76.5
+ parent: 1
+ - uid: 11496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,49.5
+ parent: 1
+ - uid: 11508
+ components:
+ - type: Transform
+ pos: 55.5,58.5
+ parent: 1
+ - uid: 12415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,127.5
+ parent: 1
+ - uid: 12430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,125.5
+ parent: 1
+ - uid: 12709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,40.5
+ parent: 1
+ - uid: 12712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,40.5
+ parent: 1
+ - uid: 13151
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,63.5
+ parent: 1
+ - uid: 13152
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - uid: 13220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,42.5
+ parent: 1
+ - uid: 13607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,73.5
+ parent: 1
+ - uid: 13750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,62.5
+ parent: 1
+ - uid: 13794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,122.5
+ parent: 1
+ - uid: 14751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,125.5
+ parent: 1
+ - uid: 14772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,126.5
+ parent: 1
+ - uid: 14971
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,126.5
+ parent: 1
+ - uid: 14972
+ components:
+ - type: Transform
+ pos: 138.5,122.5
+ parent: 1
+ - uid: 14980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,122.5
+ parent: 1
+ - uid: 15933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,52.5
+ parent: 1
+ - uid: 16118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,50.5
+ parent: 1
+ - uid: 16139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,98.5
+ parent: 1
+ - uid: 16178
+ components:
+ - type: Transform
+ pos: 100.5,104.5
+ parent: 1
+ - uid: 16318
+ components:
+ - type: Transform
+ pos: 74.5,118.5
+ parent: 1
+ - uid: 16319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,118.5
+ parent: 1
+ - uid: 16363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,124.5
+ parent: 1
+ - uid: 16364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,124.5
+ parent: 1
+ - uid: 16453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,117.5
+ parent: 1
+ - uid: 16458
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,122.5
+ parent: 1
+ - uid: 16518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,122.5
+ parent: 1
+ - uid: 16519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,122.5
+ parent: 1
+ - uid: 16536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,112.5
+ parent: 1
+ - uid: 16537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,114.5
+ parent: 1
+ - uid: 16538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,119.5
+ parent: 1
+ - uid: 16586
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - uid: 17090
+ components:
+ - type: Transform
+ pos: 82.5,65.5
+ parent: 1
+ - uid: 17237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,113.5
+ parent: 1
+ - uid: 17633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,112.5
+ parent: 1
+ - uid: 17841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,96.5
+ parent: 1
+ - uid: 17854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,109.5
+ parent: 1
+ - uid: 17855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,109.5
+ parent: 1
+ - uid: 17857
+ components:
+ - type: Transform
+ pos: 72.5,86.5
+ parent: 1
+ - uid: 17889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,102.5
+ parent: 1
+ - uid: 17890
+ components:
+ - type: Transform
+ pos: 68.5,102.5
+ parent: 1
+ - uid: 17891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,86.5
+ parent: 1
+ - uid: 17920
+ components:
+ - type: Transform
+ pos: 74.5,113.5
+ parent: 1
+ - uid: 17922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,84.5
+ parent: 1
+ - uid: 17936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,84.5
+ parent: 1
+ - uid: 18688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,96.5
+ parent: 1
+ - uid: 18787
+ components:
+ - type: Transform
+ pos: 127.5,119.5
+ parent: 1
+ - uid: 18789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,98.5
+ parent: 1
+ - uid: 18790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,99.5
+ parent: 1
+ - uid: 18791
+ components:
+ - type: Transform
+ pos: 140.5,107.5
+ parent: 1
+ - uid: 18868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,99.5
+ parent: 1
+ - uid: 18870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,110.5
+ parent: 1
+ - uid: 18871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,112.5
+ parent: 1
+ - uid: 20523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,87.5
+ parent: 1
+ - uid: 20524
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,90.5
+ parent: 1
+ - uid: 20559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,112.5
+ parent: 1
+ - uid: 20576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,112.5
+ parent: 1
+ - uid: 20577
+ components:
+ - type: Transform
+ pos: 42.5,112.5
+ parent: 1
+ - uid: 20624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,112.5
+ parent: 1
+ - uid: 20652
+ components:
+ - type: Transform
+ pos: 46.5,83.5
+ parent: 1
+ - uid: 20669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,97.5
+ parent: 1
+ - uid: 20680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,90.5
+ parent: 1
+ - uid: 20681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,83.5
+ parent: 1
+ - uid: 20690
+ components:
+ - type: Transform
+ pos: 48.5,112.5
+ parent: 1
+ - uid: 20723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,100.5
+ parent: 1
+ - uid: 20724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,99.5
+ parent: 1
+ - uid: 21045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,109.5
+ parent: 1
+ - uid: 21067
+ components:
+ - type: Transform
+ pos: 121.5,103.5
+ parent: 1
+ - uid: 21136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,141.5
+ parent: 1
+ - uid: 21385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,144.5
+ parent: 1
+ - uid: 21659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,109.5
+ parent: 1
+ - uid: 21660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,108.5
+ parent: 1
+ - uid: 22189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,95.5
+ parent: 1
+ - uid: 22191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,110.5
+ parent: 1
+ - uid: 22192
+ components:
+ - type: Transform
+ pos: 149.5,110.5
+ parent: 1
+ - uid: 22318
+ components:
+ - type: Transform
+ pos: 128.5,79.5
+ parent: 1
+ - uid: 22319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,78.5
+ parent: 1
+ - uid: 22320
+ components:
+ - type: Transform
+ pos: 137.5,78.5
+ parent: 1
+ - uid: 22321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,57.5
+ parent: 1
+ - uid: 22322
+ components:
+ - type: Transform
+ pos: 140.5,57.5
+ parent: 1
+ - uid: 22323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,51.5
+ parent: 1
+ - uid: 22324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,78.5
+ parent: 1
+ - uid: 22389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,78.5
+ parent: 1
+ - uid: 22390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,60.5
+ parent: 1
+ - uid: 22392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,71.5
+ parent: 1
+ - uid: 22393
+ components:
+ - type: Transform
+ pos: 134.5,71.5
+ parent: 1
+ - uid: 22394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,70.5
+ parent: 1
+ - uid: 22415
+ components:
+ - type: Transform
+ pos: 146.5,112.5
+ parent: 1
+ - uid: 22427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,76.5
+ parent: 1
+ - uid: 22430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,76.5
+ parent: 1
+ - uid: 22431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,77.5
+ parent: 1
+ - uid: 22496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,68.5
+ parent: 1
+ - uid: 22534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,55.5
+ parent: 1
+ - uid: 22535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,56.5
+ parent: 1
+ - uid: 22537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,48.5
+ parent: 1
+ - uid: 22538
+ components:
+ - type: Transform
+ pos: 151.5,56.5
+ parent: 1
+ - uid: 22542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,49.5
+ parent: 1
+ - uid: 22547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,80.5
+ parent: 1
+ - uid: 22549
+ components:
+ - type: Transform
+ pos: 156.5,80.5
+ parent: 1
+ - uid: 22552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,76.5
+ parent: 1
+ - uid: 23218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,148.5
+ parent: 1
+ - uid: 23224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,101.5
+ parent: 1
+ - uid: 23244
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,108.5
+ parent: 1
+ - uid: 23278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,98.5
+ parent: 1
+ - uid: 23410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,76.5
+ parent: 1
+ - uid: 23491
+ components:
+ - type: Transform
+ pos: 156.5,99.5
+ parent: 1
+ - uid: 24079
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,98.5
+ parent: 1
+ - uid: 24080
+ components:
+ - type: Transform
+ pos: 151.5,98.5
+ parent: 1
+ - uid: 25412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,55.5
+ parent: 1
+ - uid: 25413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,53.5
+ parent: 1
+ - uid: 25414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,54.5
+ parent: 1
+ - uid: 25420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,54.5
+ parent: 1
+ - uid: 25421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,55.5
+ parent: 1
+ - uid: 25422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,52.5
+ parent: 1
+ - uid: 25423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,53.5
+ parent: 1
+ - uid: 25532
+ components:
+ - type: Transform
+ pos: 102.5,47.5
+ parent: 1
+ - uid: 25899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,65.5
+ parent: 1
+ - uid: 26262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,103.5
+ parent: 1
+ - uid: 26263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,103.5
+ parent: 1
+ - uid: 26264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,110.5
+ parent: 1
+ - uid: 26265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,110.5
+ parent: 1
+ - uid: 26296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,113.5
+ parent: 1
+ - uid: 26297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,113.5
+ parent: 1
+ - uid: 26344
+ components:
+ - type: Transform
+ pos: 116.5,110.5
+ parent: 1
+ - uid: 26345
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,110.5
+ parent: 1
+ - uid: 26346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,103.5
+ parent: 1
+ - uid: 26360
+ components:
+ - type: Transform
+ pos: 108.5,101.5
+ parent: 1
+ - uid: 26380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,106.5
+ parent: 1
+ - uid: 27158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,70.5
+ parent: 1
+ - uid: 27159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,71.5
+ parent: 1
+ - uid: 27160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,70.5
+ parent: 1
+ - uid: 27161
+ components:
+ - type: Transform
+ pos: 74.5,74.5
+ parent: 1
+ - uid: 27162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,72.5
+ parent: 1
+ - uid: 27163
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,74.5
+ parent: 1
+ - uid: 28795
+ components:
+ - type: Transform
+ pos: 83.5,102.5
+ parent: 1
+ - uid: 28796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,102.5
+ parent: 1
+ - uid: 28844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,41.5
+ parent: 1
+ - uid: 28845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,25.5
+ parent: 1
+ - uid: 28847
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 1
+ - uid: 28963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,59.5
+ parent: 1
+ - uid: 28964
+ components:
+ - type: Transform
+ pos: 94.5,59.5
+ parent: 1
+ - uid: 29646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,117.5
+ parent: 1
+ - uid: 30091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,137.5
+ parent: 1
+ - uid: 30140
+ components:
+ - type: Transform
+ pos: 148.5,153.5
+ parent: 1
+ - uid: 30835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,96.5
+ parent: 1
+ - uid: 31890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,69.5
+ parent: 1
+ - uid: 31900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,46.5
+ parent: 1
+ - uid: 31918
+ components:
+ - type: Transform
+ pos: 131.5,58.5
+ parent: 1
+ - uid: 31920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,55.5
+ parent: 1
+ - uid: 31921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,55.5
+ parent: 1
+ - uid: 33342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,19.5
+ parent: 1
+ - uid: 33343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,19.5
+ parent: 1
+ - uid: 33344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,31.5
+ parent: 1
+ - uid: 33345
+ components:
+ - type: Transform
+ pos: 105.5,31.5
+ parent: 1
+ - uid: 33346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,19.5
+ parent: 1
+ - uid: 33347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,19.5
+ parent: 1
+ - uid: 33348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,23.5
+ parent: 1
+ - uid: 33349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,23.5
+ parent: 1
+ - uid: 33350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,30.5
+ parent: 1
+ - uid: 33351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,30.5
+ parent: 1
+ - uid: 33352
+ components:
+ - type: Transform
+ pos: 119.5,39.5
+ parent: 1
+ - uid: 33417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,39.5
+ parent: 1
+ - uid: 33461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,27.5
+ parent: 1
+ - uid: 33466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,27.5
+ parent: 1
+ - uid: 34384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,83.5
+ parent: 1
+ - uid: 34389
+ components:
+ - type: Transform
+ pos: 144.5,83.5
+ parent: 1
+ - uid: 34397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,80.5
+ parent: 1
+ - uid: 35584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,96.5
+ parent: 1
+ - uid: 36163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,91.5
+ parent: 1
+ - uid: 36164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,91.5
+ parent: 1
+ - uid: 37334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,132.5
+ parent: 1
+ - uid: 37351
+ components:
+ - type: Transform
+ pos: 126.5,140.5
+ parent: 1
+- proto: DisposalJunction
+ entities:
+ - uid: 108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,117.5
+ parent: 1
+ - uid: 858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,58.5
+ parent: 1
+ - uid: 6131
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,58.5
+ parent: 1
+ - uid: 6173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,69.5
+ parent: 1
+ - uid: 11409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,58.5
+ parent: 1
+ - uid: 11486
+ components:
+ - type: Transform
+ pos: 44.5,73.5
+ parent: 1
+ - uid: 15100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,117.5
+ parent: 1
+ - uid: 16334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,112.5
+ parent: 1
+ - uid: 16341
+ components:
+ - type: Transform
+ pos: 70.5,116.5
+ parent: 1
+ - uid: 16476
+ components:
+ - type: Transform
+ pos: 94.5,141.5
+ parent: 1
+ - uid: 16547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,108.5
+ parent: 1
+ - uid: 17832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,104.5
+ parent: 1
+ - uid: 17892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,90.5
+ parent: 1
+ - uid: 18739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,50.5
+ parent: 1
+ - uid: 20587
+ components:
+ - type: Transform
+ pos: 44.5,99.5
+ parent: 1
+ - uid: 20591
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,96.5
+ parent: 1
+ - uid: 20642
+ components:
+ - type: Transform
+ pos: 57.5,96.5
+ parent: 1
+ - uid: 20670
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,83.5
+ parent: 1
+ - uid: 20710
+ components:
+ - type: Transform
+ pos: 31.5,100.5
+ parent: 1
+ - uid: 21043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,96.5
+ parent: 1
+ - uid: 21670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,98.5
+ parent: 1
+ - uid: 22177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,98.5
+ parent: 1
+ - uid: 22409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,76.5
+ parent: 1
+ - uid: 22481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,58.5
+ parent: 1
+ - uid: 22513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,55.5
+ parent: 1
+ - uid: 25513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,47.5
+ parent: 1
+ - uid: 25533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,47.5
+ parent: 1
+ - uid: 26305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,98.5
+ parent: 1
+ - uid: 26310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,98.5
+ parent: 1
+ - uid: 28887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,63.5
+ parent: 1
+ - uid: 30097
+ components:
+ - type: Transform
+ pos: 146.5,144.5
+ parent: 1
+ - uid: 30114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,144.5
+ parent: 1
+ - uid: 33336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,19.5
+ parent: 1
+ - uid: 37361
+ components:
+ - type: Transform
+ pos: 128.5,65.5
+ parent: 1
+- proto: DisposalJunctionFlipped
+ entities:
+ - uid: 104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,117.5
+ parent: 1
+ - uid: 109
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,101.5
+ parent: 1
+ - uid: 110
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,107.5
+ parent: 1
+ - uid: 124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,63.5
+ parent: 1
+ - uid: 1747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,112.5
+ parent: 1
+ - uid: 1749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,112.5
+ parent: 1
+ - uid: 1957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,25.5
+ parent: 1
+ - uid: 4152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,44.5
+ parent: 1
+ - uid: 4154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,117.5
+ parent: 1
+ - uid: 7106
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,57.5
+ parent: 1
+ - uid: 11429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,49.5
+ parent: 1
+ - uid: 12684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,56.5
+ parent: 1
+ - uid: 13143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,63.5
+ parent: 1
+ - uid: 14992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,50.5
+ parent: 1
+ - uid: 16459
+ components:
+ - type: Transform
+ pos: 122.5,141.5
+ parent: 1
+ - uid: 17039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,63.5
+ parent: 1
+ - uid: 17750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,112.5
+ parent: 1
+ - uid: 17800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,96.5
+ parent: 1
+ - uid: 17899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,64.5
+ parent: 1
+ - uid: 17900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,77.5
+ parent: 1
+ - uid: 17910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,90.5
+ parent: 1
+ - uid: 17917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,87.5
+ parent: 1
+ - uid: 18139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,98.5
+ parent: 1
+ - uid: 20630
+ components:
+ - type: Transform
+ pos: 57.5,90.5
+ parent: 1
+ - uid: 21049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,98.5
+ parent: 1
+ - uid: 21683
+ components:
+ - type: Transform
+ pos: 150.5,99.5
+ parent: 1
+ - uid: 22516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,52.5
+ parent: 1
+ - uid: 22546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,55.5
+ parent: 1
+ - uid: 22553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,68.5
+ parent: 1
+ - uid: 26292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,106.5
+ parent: 1
+ - uid: 28962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,63.5
+ parent: 1
+ - uid: 29645
+ components:
+ - type: Transform
+ pos: 155.5,119.5
+ parent: 1
+ - uid: 33404
+ components:
+ - type: Transform
+ pos: 95.5,27.5
+ parent: 1
+ - uid: 33491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,27.5
+ parent: 1
+ - uid: 34383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,80.5
+ parent: 1
+- proto: DisposalMachineFrame
+ entities:
+ - uid: 33554
+ components:
+ - type: Transform
+ pos: 98.5,25.5
+ parent: 1
+- proto: DisposalPipe
+ entities:
+ - uid: 106
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,63.5
+ parent: 1
+ - uid: 135
+ components:
+ - type: Transform
+ pos: 95.5,49.5
+ parent: 1
+ - uid: 324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,119.5
+ parent: 1
+ - uid: 909
+ components:
+ - type: Transform
+ pos: 125.5,104.5
+ parent: 1
+ - uid: 1746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,64.5
+ parent: 1
+ - uid: 1933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,64.5
+ parent: 1
+ - uid: 2339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,52.5
+ parent: 1
+ - uid: 2803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,107.5
+ parent: 1
+ - uid: 2878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,64.5
+ parent: 1
+ - uid: 3362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,50.5
+ parent: 1
+ - uid: 3530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,68.5
+ parent: 1
+ - uid: 3799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,50.5
+ parent: 1
+ - uid: 3858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,50.5
+ parent: 1
+ - uid: 3947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,144.5
+ parent: 1
+ - uid: 4008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,148.5
+ parent: 1
+ - uid: 4057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,152.5
+ parent: 1
+ - uid: 4693
+ components:
+ - type: Transform
+ pos: 125.5,107.5
+ parent: 1
+ - uid: 4729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,47.5
+ parent: 1
+ - uid: 4756
+ components:
+ - type: Transform
+ pos: 95.5,48.5
+ parent: 1
+ - uid: 4900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,147.5
+ parent: 1
+ - uid: 5051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,67.5
+ parent: 1
+ - uid: 5403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,53.5
+ parent: 1
+ - uid: 5429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,53.5
+ parent: 1
+ - uid: 6149
+ components:
+ - type: Transform
+ pos: 155.5,81.5
+ parent: 1
+ - uid: 6218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,151.5
+ parent: 1
+ - uid: 6221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,149.5
+ parent: 1
+ - uid: 6274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,150.5
+ parent: 1
+ - uid: 6335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,57.5
+ parent: 1
+ - uid: 6336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,57.5
+ parent: 1
+ - uid: 6370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 6609
+ components:
+ - type: Transform
+ pos: 125.5,113.5
+ parent: 1
+ - uid: 7231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,114.5
+ parent: 1
+ - uid: 7234
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,114.5
+ parent: 1
+ - uid: 7577
+ components:
+ - type: Transform
+ pos: 82.5,57.5
+ parent: 1
+ - uid: 8012
+ components:
+ - type: Transform
+ pos: 82.5,61.5
+ parent: 1
+ - uid: 8175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,141.5
+ parent: 1
+ - uid: 8179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,141.5
+ parent: 1
+ - uid: 8711
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 1
+ - uid: 9397
+ components:
+ - type: Transform
+ pos: 82.5,60.5
+ parent: 1
+ - uid: 9506
+ components:
+ - type: Transform
+ pos: 125.5,111.5
+ parent: 1
+ - uid: 9847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,56.5
+ parent: 1
+ - uid: 9848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,56.5
+ parent: 1
+ - uid: 10307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,141.5
+ parent: 1
+ - uid: 10415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,50.5
+ parent: 1
+ - uid: 10582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,52.5
+ parent: 1
+ - uid: 11178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,109.5
+ parent: 1
+ - uid: 11378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,65.5
+ parent: 1
+ - uid: 11379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,65.5
+ parent: 1
+ - uid: 11380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,65.5
+ parent: 1
+ - uid: 11381
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,54.5
+ parent: 1
+ - uid: 11382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,55.5
+ parent: 1
+ - uid: 11383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,56.5
+ parent: 1
+ - uid: 11384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,57.5
+ parent: 1
+ - uid: 11385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,58.5
+ parent: 1
+ - uid: 11386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,59.5
+ parent: 1
+ - uid: 11387
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,60.5
+ parent: 1
+ - uid: 11388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,61.5
+ parent: 1
+ - uid: 11389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,62.5
+ parent: 1
+ - uid: 11390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,63.5
+ parent: 1
+ - uid: 11391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,64.5
+ parent: 1
+ - uid: 11392
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,65.5
+ parent: 1
+ - uid: 11393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,65.5
+ parent: 1
+ - uid: 11394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,65.5
+ parent: 1
+ - uid: 11395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,65.5
+ parent: 1
+ - uid: 11396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,65.5
+ parent: 1
+ - uid: 11397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,65.5
+ parent: 1
+ - uid: 11398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,65.5
+ parent: 1
+ - uid: 11400
+ components:
+ - type: Transform
+ pos: 55.5,66.5
+ parent: 1
+ - uid: 11401
+ components:
+ - type: Transform
+ pos: 55.5,67.5
+ parent: 1
+ - uid: 11402
+ components:
+ - type: Transform
+ pos: 55.5,68.5
+ parent: 1
+ - uid: 11403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,64.5
+ parent: 1
+ - uid: 11404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,64.5
+ parent: 1
+ - uid: 11405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,63.5
+ parent: 1
+ - uid: 11406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,62.5
+ parent: 1
+ - uid: 11407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,61.5
+ parent: 1
+ - uid: 11408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,60.5
+ parent: 1
+ - uid: 11411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,56.5
+ parent: 1
+ - uid: 11412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,55.5
+ parent: 1
+ - uid: 11413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,54.5
+ parent: 1
+ - uid: 11414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,53.5
+ parent: 1
+ - uid: 11415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,52.5
+ parent: 1
+ - uid: 11416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,51.5
+ parent: 1
+ - uid: 11417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,50.5
+ parent: 1
+ - uid: 11418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,59.5
+ parent: 1
+ - uid: 11422
+ components:
+ - type: Transform
+ pos: 44.5,50.5
+ parent: 1
+ - uid: 11423
+ components:
+ - type: Transform
+ pos: 44.5,51.5
+ parent: 1
+ - uid: 11424
+ components:
+ - type: Transform
+ pos: 44.5,52.5
+ parent: 1
+ - uid: 11425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,49.5
+ parent: 1
+ - uid: 11426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,49.5
+ parent: 1
+ - uid: 11427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,49.5
+ parent: 1
+ - uid: 11428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,49.5
+ parent: 1
+ - uid: 11430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,49.5
+ parent: 1
+ - uid: 11431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,49.5
+ parent: 1
+ - uid: 11432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,49.5
+ parent: 1
+ - uid: 11436
+ components:
+ - type: Transform
+ pos: 39.5,50.5
+ parent: 1
+ - uid: 11437
+ components:
+ - type: Transform
+ pos: 39.5,51.5
+ parent: 1
+ - uid: 11438
+ components:
+ - type: Transform
+ pos: 39.5,52.5
+ parent: 1
+ - uid: 11439
+ components:
+ - type: Transform
+ pos: 39.5,53.5
+ parent: 1
+ - uid: 11440
+ components:
+ - type: Transform
+ pos: 39.5,54.5
+ parent: 1
+ - uid: 11441
+ components:
+ - type: Transform
+ pos: 39.5,55.5
+ parent: 1
+ - uid: 11442
+ components:
+ - type: Transform
+ pos: 39.5,56.5
+ parent: 1
+ - uid: 11443
+ components:
+ - type: Transform
+ pos: 39.5,57.5
+ parent: 1
+ - uid: 11444
+ components:
+ - type: Transform
+ pos: 39.5,58.5
+ parent: 1
+ - uid: 11445
+ components:
+ - type: Transform
+ pos: 39.5,59.5
+ parent: 1
+ - uid: 11446
+ components:
+ - type: Transform
+ pos: 39.5,60.5
+ parent: 1
+ - uid: 11447
+ components:
+ - type: Transform
+ pos: 39.5,61.5
+ parent: 1
+ - uid: 11448
+ components:
+ - type: Transform
+ pos: 39.5,62.5
+ parent: 1
+ - uid: 11459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,73.5
+ parent: 1
+ - uid: 11460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,73.5
+ parent: 1
+ - uid: 11461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,73.5
+ parent: 1
+ - uid: 11462
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,72.5
+ parent: 1
+ - uid: 11464
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,69.5
+ parent: 1
+ - uid: 11465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,68.5
+ parent: 1
+ - uid: 11466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,67.5
+ parent: 1
+ - uid: 11467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,66.5
+ parent: 1
+ - uid: 11468
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,65.5
+ parent: 1
+ - uid: 11469
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,64.5
+ parent: 1
+ - uid: 11470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,63.5
+ parent: 1
+ - uid: 11471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,62.5
+ parent: 1
+ - uid: 11472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,61.5
+ parent: 1
+ - uid: 11473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,59.5
+ parent: 1
+ - uid: 11474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,58.5
+ parent: 1
+ - uid: 11475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,60.5
+ parent: 1
+ - uid: 11476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,56.5
+ parent: 1
+ - uid: 11477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,55.5
+ parent: 1
+ - uid: 11479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,53.5
+ parent: 1
+ - uid: 11480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,54.5
+ parent: 1
+ - uid: 11490
+ components:
+ - type: Transform
+ pos: 44.5,74.5
+ parent: 1
+ - uid: 11491
+ components:
+ - type: Transform
+ pos: 44.5,75.5
+ parent: 1
+ - uid: 11493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,76.5
+ parent: 1
+ - uid: 11499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,55.5
+ parent: 1
+ - uid: 11500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,56.5
+ parent: 1
+ - uid: 11501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,57.5
+ parent: 1
+ - uid: 11502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,58.5
+ parent: 1
+ - uid: 11503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,58.5
+ parent: 1
+ - uid: 11505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,58.5
+ parent: 1
+ - uid: 11506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,58.5
+ parent: 1
+ - uid: 11507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,58.5
+ parent: 1
+ - uid: 11715
+ components:
+ - type: Transform
+ pos: 156.5,97.5
+ parent: 1
+ - uid: 12061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,111.5
+ parent: 1
+ - uid: 12115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,99.5
+ parent: 1
+ - uid: 12145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,99.5
+ parent: 1
+ - uid: 12154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,111.5
+ parent: 1
+ - uid: 12406
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,50.5
+ parent: 1
+ - uid: 12682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,65.5
+ parent: 1
+ - uid: 12685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,56.5
+ parent: 1
+ - uid: 12686
+ components:
+ - type: Transform
+ pos: 68.5,53.5
+ parent: 1
+ - uid: 12706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,47.5
+ parent: 1
+ - uid: 12707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,40.5
+ parent: 1
+ - uid: 12829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,40.5
+ parent: 1
+ - uid: 12830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,40.5
+ parent: 1
+ - uid: 13139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,63.5
+ parent: 1
+ - uid: 13140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,63.5
+ parent: 1
+ - uid: 13141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,63.5
+ parent: 1
+ - uid: 13142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,63.5
+ parent: 1
+ - uid: 13144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,63.5
+ parent: 1
+ - uid: 13145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,63.5
+ parent: 1
+ - uid: 13146
+ components:
+ - type: Transform
+ pos: 57.5,64.5
+ parent: 1
+ - uid: 13147
+ components:
+ - type: Transform
+ pos: 57.5,65.5
+ parent: 1
+ - uid: 13148
+ components:
+ - type: Transform
+ pos: 57.5,66.5
+ parent: 1
+ - uid: 13149
+ components:
+ - type: Transform
+ pos: 57.5,67.5
+ parent: 1
+ - uid: 13150
+ components:
+ - type: Transform
+ pos: 57.5,68.5
+ parent: 1
+ - uid: 13153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,64.5
+ parent: 1
+ - uid: 13211
+ components:
+ - type: Transform
+ pos: 47.5,48.5
+ parent: 1
+ - uid: 13212
+ components:
+ - type: Transform
+ pos: 47.5,46.5
+ parent: 1
+ - uid: 13216
+ components:
+ - type: Transform
+ pos: 47.5,45.5
+ parent: 1
+ - uid: 13218
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - uid: 13219
+ components:
+ - type: Transform
+ pos: 47.5,47.5
+ parent: 1
+ - uid: 13311
+ components:
+ - type: Transform
+ pos: 125.5,110.5
+ parent: 1
+ - uid: 13315
+ components:
+ - type: Transform
+ pos: 125.5,106.5
+ parent: 1
+ - uid: 13516
+ components:
+ - type: Transform
+ pos: 51.5,59.5
+ parent: 1
+ - uid: 13517
+ components:
+ - type: Transform
+ pos: 51.5,60.5
+ parent: 1
+ - uid: 13605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,72.5
+ parent: 1
+ - uid: 13606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,71.5
+ parent: 1
+ - uid: 13800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,117.5
+ parent: 1
+ - uid: 14068
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,50.5
+ parent: 1
+ - uid: 14774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,51.5
+ parent: 1
+ - uid: 15102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,106.5
+ parent: 1
+ - uid: 15327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,50.5
+ parent: 1
+ - uid: 15674
+ components:
+ - type: Transform
+ pos: 156.5,98.5
+ parent: 1
+ - uid: 16028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,108.5
+ parent: 1
+ - uid: 16053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,104.5
+ parent: 1
+ - uid: 16155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,50.5
+ parent: 1
+ - uid: 16177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,118.5
+ parent: 1
+ - uid: 16180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,104.5
+ parent: 1
+ - uid: 16189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,51.5
+ parent: 1
+ - uid: 16310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,115.5
+ parent: 1
+ - uid: 16311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,116.5
+ parent: 1
+ - uid: 16312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,117.5
+ parent: 1
+ - uid: 16313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,118.5
+ parent: 1
+ - uid: 16314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,118.5
+ parent: 1
+ - uid: 16315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,118.5
+ parent: 1
+ - uid: 16316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,118.5
+ parent: 1
+ - uid: 16317
+ components:
+ - type: Transform
+ pos: 74.5,117.5
+ parent: 1
+ - uid: 16320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,114.5
+ parent: 1
+ - uid: 16322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,114.5
+ parent: 1
+ - uid: 16323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,114.5
+ parent: 1
+ - uid: 16324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,114.5
+ parent: 1
+ - uid: 16325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,114.5
+ parent: 1
+ - uid: 16326
+ components:
+ - type: Transform
+ pos: 70.5,113.5
+ parent: 1
+ - uid: 16327
+ components:
+ - type: Transform
+ pos: 70.5,114.5
+ parent: 1
+ - uid: 16328
+ components:
+ - type: Transform
+ pos: 70.5,115.5
+ parent: 1
+ - uid: 16329
+ components:
+ - type: Transform
+ pos: 70.5,117.5
+ parent: 1
+ - uid: 16330
+ components:
+ - type: Transform
+ pos: 70.5,118.5
+ parent: 1
+ - uid: 16331
+ components:
+ - type: Transform
+ pos: 70.5,119.5
+ parent: 1
+ - uid: 16332
+ components:
+ - type: Transform
+ pos: 70.5,120.5
+ parent: 1
+ - uid: 16333
+ components:
+ - type: Transform
+ pos: 70.5,121.5
+ parent: 1
+ - uid: 16336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,112.5
+ parent: 1
+ - uid: 16337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,112.5
+ parent: 1
+ - uid: 16338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,112.5
+ parent: 1
+ - uid: 16339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,112.5
+ parent: 1
+ - uid: 16344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,116.5
+ parent: 1
+ - uid: 16345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,124.5
+ parent: 1
+ - uid: 16346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,124.5
+ parent: 1
+ - uid: 16347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,124.5
+ parent: 1
+ - uid: 16348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,124.5
+ parent: 1
+ - uid: 16349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,124.5
+ parent: 1
+ - uid: 16350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,124.5
+ parent: 1
+ - uid: 16351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,124.5
+ parent: 1
+ - uid: 16352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,124.5
+ parent: 1
+ - uid: 16353
+ components:
+ - type: Transform
+ pos: 111.5,123.5
+ parent: 1
+ - uid: 16354
+ components:
+ - type: Transform
+ pos: 111.5,122.5
+ parent: 1
+ - uid: 16355
+ components:
+ - type: Transform
+ pos: 111.5,121.5
+ parent: 1
+ - uid: 16356
+ components:
+ - type: Transform
+ pos: 111.5,120.5
+ parent: 1
+ - uid: 16357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,119.5
+ parent: 1
+ - uid: 16358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,119.5
+ parent: 1
+ - uid: 16360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,119.5
+ parent: 1
+ - uid: 16361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,119.5
+ parent: 1
+ - uid: 16372
+ components:
+ - type: Transform
+ pos: 122.5,155.5
+ parent: 1
+ - uid: 16373
+ components:
+ - type: Transform
+ pos: 122.5,154.5
+ parent: 1
+ - uid: 16374
+ components:
+ - type: Transform
+ pos: 122.5,153.5
+ parent: 1
+ - uid: 16375
+ components:
+ - type: Transform
+ pos: 122.5,152.5
+ parent: 1
+ - uid: 16376
+ components:
+ - type: Transform
+ pos: 122.5,151.5
+ parent: 1
+ - uid: 16377
+ components:
+ - type: Transform
+ pos: 122.5,149.5
+ parent: 1
+ - uid: 16378
+ components:
+ - type: Transform
+ pos: 122.5,148.5
+ parent: 1
+ - uid: 16379
+ components:
+ - type: Transform
+ pos: 122.5,147.5
+ parent: 1
+ - uid: 16380
+ components:
+ - type: Transform
+ pos: 122.5,146.5
+ parent: 1
+ - uid: 16381
+ components:
+ - type: Transform
+ pos: 122.5,145.5
+ parent: 1
+ - uid: 16382
+ components:
+ - type: Transform
+ pos: 122.5,144.5
+ parent: 1
+ - uid: 16383
+ components:
+ - type: Transform
+ pos: 122.5,143.5
+ parent: 1
+ - uid: 16384
+ components:
+ - type: Transform
+ pos: 122.5,150.5
+ parent: 1
+ - uid: 16385
+ components:
+ - type: Transform
+ pos: 122.5,142.5
+ parent: 1
+ - uid: 16386
+ components:
+ - type: Transform
+ pos: 122.5,140.5
+ parent: 1
+ - uid: 16387
+ components:
+ - type: Transform
+ pos: 122.5,139.5
+ parent: 1
+ - uid: 16388
+ components:
+ - type: Transform
+ pos: 122.5,138.5
+ parent: 1
+ - uid: 16389
+ components:
+ - type: Transform
+ pos: 122.5,137.5
+ parent: 1
+ - uid: 16390
+ components:
+ - type: Transform
+ pos: 122.5,136.5
+ parent: 1
+ - uid: 16391
+ components:
+ - type: Transform
+ pos: 122.5,135.5
+ parent: 1
+ - uid: 16392
+ components:
+ - type: Transform
+ pos: 122.5,134.5
+ parent: 1
+ - uid: 16393
+ components:
+ - type: Transform
+ pos: 122.5,133.5
+ parent: 1
+ - uid: 16394
+ components:
+ - type: Transform
+ pos: 122.5,132.5
+ parent: 1
+ - uid: 16395
+ components:
+ - type: Transform
+ pos: 122.5,131.5
+ parent: 1
+ - uid: 16396
+ components:
+ - type: Transform
+ pos: 122.5,130.5
+ parent: 1
+ - uid: 16397
+ components:
+ - type: Transform
+ pos: 122.5,129.5
+ parent: 1
+ - uid: 16398
+ components:
+ - type: Transform
+ pos: 122.5,127.5
+ parent: 1
+ - uid: 16399
+ components:
+ - type: Transform
+ pos: 122.5,126.5
+ parent: 1
+ - uid: 16400
+ components:
+ - type: Transform
+ pos: 122.5,125.5
+ parent: 1
+ - uid: 16401
+ components:
+ - type: Transform
+ pos: 122.5,124.5
+ parent: 1
+ - uid: 16402
+ components:
+ - type: Transform
+ pos: 122.5,128.5
+ parent: 1
+ - uid: 16403
+ components:
+ - type: Transform
+ pos: 122.5,123.5
+ parent: 1
+ - uid: 16404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,122.5
+ parent: 1
+ - uid: 16405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,122.5
+ parent: 1
+ - uid: 16411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,117.5
+ parent: 1
+ - uid: 16412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,117.5
+ parent: 1
+ - uid: 16413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,117.5
+ parent: 1
+ - uid: 16414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,117.5
+ parent: 1
+ - uid: 16415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,117.5
+ parent: 1
+ - uid: 16416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,117.5
+ parent: 1
+ - uid: 16417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,117.5
+ parent: 1
+ - uid: 16418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,117.5
+ parent: 1
+ - uid: 16419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,117.5
+ parent: 1
+ - uid: 16420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,117.5
+ parent: 1
+ - uid: 16421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,117.5
+ parent: 1
+ - uid: 16422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,117.5
+ parent: 1
+ - uid: 16423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,117.5
+ parent: 1
+ - uid: 16424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,117.5
+ parent: 1
+ - uid: 16425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,117.5
+ parent: 1
+ - uid: 16426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,117.5
+ parent: 1
+ - uid: 16427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,117.5
+ parent: 1
+ - uid: 16428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,117.5
+ parent: 1
+ - uid: 16429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,117.5
+ parent: 1
+ - uid: 16430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,117.5
+ parent: 1
+ - uid: 16431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,117.5
+ parent: 1
+ - uid: 16434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,117.5
+ parent: 1
+ - uid: 16435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,117.5
+ parent: 1
+ - uid: 16436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,117.5
+ parent: 1
+ - uid: 16437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,117.5
+ parent: 1
+ - uid: 16438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,117.5
+ parent: 1
+ - uid: 16439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,117.5
+ parent: 1
+ - uid: 16440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,117.5
+ parent: 1
+ - uid: 16441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,117.5
+ parent: 1
+ - uid: 16442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,117.5
+ parent: 1
+ - uid: 16443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,117.5
+ parent: 1
+ - uid: 16444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,117.5
+ parent: 1
+ - uid: 16445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,117.5
+ parent: 1
+ - uid: 16446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,117.5
+ parent: 1
+ - uid: 16447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,117.5
+ parent: 1
+ - uid: 16448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,117.5
+ parent: 1
+ - uid: 16449
+ components:
+ - type: Transform
+ pos: 89.5,116.5
+ parent: 1
+ - uid: 16450
+ components:
+ - type: Transform
+ pos: 89.5,115.5
+ parent: 1
+ - uid: 16451
+ components:
+ - type: Transform
+ pos: 89.5,113.5
+ parent: 1
+ - uid: 16452
+ components:
+ - type: Transform
+ pos: 89.5,114.5
+ parent: 1
+ - uid: 16461
+ components:
+ - type: Transform
+ pos: 94.5,155.5
+ parent: 1
+ - uid: 16462
+ components:
+ - type: Transform
+ pos: 94.5,154.5
+ parent: 1
+ - uid: 16463
+ components:
+ - type: Transform
+ pos: 94.5,153.5
+ parent: 1
+ - uid: 16464
+ components:
+ - type: Transform
+ pos: 94.5,152.5
+ parent: 1
+ - uid: 16465
+ components:
+ - type: Transform
+ pos: 94.5,151.5
+ parent: 1
+ - uid: 16466
+ components:
+ - type: Transform
+ pos: 94.5,150.5
+ parent: 1
+ - uid: 16467
+ components:
+ - type: Transform
+ pos: 94.5,149.5
+ parent: 1
+ - uid: 16468
+ components:
+ - type: Transform
+ pos: 94.5,148.5
+ parent: 1
+ - uid: 16469
+ components:
+ - type: Transform
+ pos: 94.5,147.5
+ parent: 1
+ - uid: 16470
+ components:
+ - type: Transform
+ pos: 94.5,145.5
+ parent: 1
+ - uid: 16471
+ components:
+ - type: Transform
+ pos: 94.5,144.5
+ parent: 1
+ - uid: 16472
+ components:
+ - type: Transform
+ pos: 94.5,143.5
+ parent: 1
+ - uid: 16473
+ components:
+ - type: Transform
+ pos: 94.5,142.5
+ parent: 1
+ - uid: 16474
+ components:
+ - type: Transform
+ pos: 94.5,146.5
+ parent: 1
+ - uid: 16475
+ components:
+ - type: Transform
+ pos: 94.5,140.5
+ parent: 1
+ - uid: 16478
+ components:
+ - type: Transform
+ pos: 94.5,139.5
+ parent: 1
+ - uid: 16479
+ components:
+ - type: Transform
+ pos: 94.5,138.5
+ parent: 1
+ - uid: 16480
+ components:
+ - type: Transform
+ pos: 94.5,137.5
+ parent: 1
+ - uid: 16481
+ components:
+ - type: Transform
+ pos: 94.5,136.5
+ parent: 1
+ - uid: 16482
+ components:
+ - type: Transform
+ pos: 94.5,135.5
+ parent: 1
+ - uid: 16483
+ components:
+ - type: Transform
+ pos: 94.5,134.5
+ parent: 1
+ - uid: 16484
+ components:
+ - type: Transform
+ pos: 94.5,133.5
+ parent: 1
+ - uid: 16485
+ components:
+ - type: Transform
+ pos: 94.5,132.5
+ parent: 1
+ - uid: 16486
+ components:
+ - type: Transform
+ pos: 94.5,131.5
+ parent: 1
+ - uid: 16487
+ components:
+ - type: Transform
+ pos: 94.5,130.5
+ parent: 1
+ - uid: 16488
+ components:
+ - type: Transform
+ pos: 94.5,129.5
+ parent: 1
+ - uid: 16489
+ components:
+ - type: Transform
+ pos: 94.5,128.5
+ parent: 1
+ - uid: 16490
+ components:
+ - type: Transform
+ pos: 94.5,127.5
+ parent: 1
+ - uid: 16491
+ components:
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - uid: 16492
+ components:
+ - type: Transform
+ pos: 94.5,125.5
+ parent: 1
+ - uid: 16493
+ components:
+ - type: Transform
+ pos: 94.5,124.5
+ parent: 1
+ - uid: 16494
+ components:
+ - type: Transform
+ pos: 94.5,123.5
+ parent: 1
+ - uid: 16495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,122.5
+ parent: 1
+ - uid: 16496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,122.5
+ parent: 1
+ - uid: 16497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,122.5
+ parent: 1
+ - uid: 16498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,122.5
+ parent: 1
+ - uid: 16499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,122.5
+ parent: 1
+ - uid: 16500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,122.5
+ parent: 1
+ - uid: 16501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,122.5
+ parent: 1
+ - uid: 16502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,122.5
+ parent: 1
+ - uid: 16503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,122.5
+ parent: 1
+ - uid: 16504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,122.5
+ parent: 1
+ - uid: 16505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,122.5
+ parent: 1
+ - uid: 16506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,122.5
+ parent: 1
+ - uid: 16507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,122.5
+ parent: 1
+ - uid: 16508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,122.5
+ parent: 1
+ - uid: 16509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,122.5
+ parent: 1
+ - uid: 16510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,122.5
+ parent: 1
+ - uid: 16511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,122.5
+ parent: 1
+ - uid: 16512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,122.5
+ parent: 1
+ - uid: 16513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,122.5
+ parent: 1
+ - uid: 16514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,122.5
+ parent: 1
+ - uid: 16515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,122.5
+ parent: 1
+ - uid: 16516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,122.5
+ parent: 1
+ - uid: 16517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,122.5
+ parent: 1
+ - uid: 16522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,112.5
+ parent: 1
+ - uid: 16523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,112.5
+ parent: 1
+ - uid: 16524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,112.5
+ parent: 1
+ - uid: 16525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,112.5
+ parent: 1
+ - uid: 16526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,112.5
+ parent: 1
+ - uid: 16527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,112.5
+ parent: 1
+ - uid: 16529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,112.5
+ parent: 1
+ - uid: 16530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,112.5
+ parent: 1
+ - uid: 16531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,112.5
+ parent: 1
+ - uid: 16532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,112.5
+ parent: 1
+ - uid: 16533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,112.5
+ parent: 1
+ - uid: 16534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,112.5
+ parent: 1
+ - uid: 16535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,112.5
+ parent: 1
+ - uid: 16539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,114.5
+ parent: 1
+ - uid: 16540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,114.5
+ parent: 1
+ - uid: 16541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,114.5
+ parent: 1
+ - uid: 16542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,114.5
+ parent: 1
+ - uid: 16543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,114.5
+ parent: 1
+ - uid: 16544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,114.5
+ parent: 1
+ - uid: 16545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,114.5
+ parent: 1
+ - uid: 16546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,114.5
+ parent: 1
+ - uid: 16548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,114.5
+ parent: 1
+ - uid: 16549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,114.5
+ parent: 1
+ - uid: 16550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,114.5
+ parent: 1
+ - uid: 16551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,114.5
+ parent: 1
+ - uid: 16552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,114.5
+ parent: 1
+ - uid: 16553
+ components:
+ - type: Transform
+ pos: 87.5,115.5
+ parent: 1
+ - uid: 16554
+ components:
+ - type: Transform
+ pos: 87.5,116.5
+ parent: 1
+ - uid: 16555
+ components:
+ - type: Transform
+ pos: 87.5,117.5
+ parent: 1
+ - uid: 16556
+ components:
+ - type: Transform
+ pos: 87.5,118.5
+ parent: 1
+ - uid: 16557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,119.5
+ parent: 1
+ - uid: 16558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,119.5
+ parent: 1
+ - uid: 16559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,119.5
+ parent: 1
+ - uid: 16560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,119.5
+ parent: 1
+ - uid: 16561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,119.5
+ parent: 1
+ - uid: 16562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,119.5
+ parent: 1
+ - uid: 16563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,119.5
+ parent: 1
+ - uid: 16564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,119.5
+ parent: 1
+ - uid: 16565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,119.5
+ parent: 1
+ - uid: 16566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,119.5
+ parent: 1
+ - uid: 16567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,119.5
+ parent: 1
+ - uid: 16568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,119.5
+ parent: 1
+ - uid: 16569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,119.5
+ parent: 1
+ - uid: 16570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,119.5
+ parent: 1
+ - uid: 16572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,119.5
+ parent: 1
+ - uid: 16573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,119.5
+ parent: 1
+ - uid: 16574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,119.5
+ parent: 1
+ - uid: 16575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,119.5
+ parent: 1
+ - uid: 16576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,119.5
+ parent: 1
+ - uid: 16577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,119.5
+ parent: 1
+ - uid: 16627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,53.5
+ parent: 1
+ - uid: 16628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,52.5
+ parent: 1
+ - uid: 17115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,52.5
+ parent: 1
+ - uid: 17223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,52.5
+ parent: 1
+ - uid: 17224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,52.5
+ parent: 1
+ - uid: 17225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,50.5
+ parent: 1
+ - uid: 17227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,52.5
+ parent: 1
+ - uid: 17238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,93.5
+ parent: 1
+ - uid: 17329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,65.5
+ parent: 1
+ - uid: 17330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,77.5
+ parent: 1
+ - uid: 17673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,96.5
+ parent: 1
+ - uid: 17741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,52.5
+ parent: 1
+ - uid: 17795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,91.5
+ parent: 1
+ - uid: 17796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,92.5
+ parent: 1
+ - uid: 17797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,93.5
+ parent: 1
+ - uid: 17798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,94.5
+ parent: 1
+ - uid: 17799
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,95.5
+ parent: 1
+ - uid: 17801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,97.5
+ parent: 1
+ - uid: 17802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,98.5
+ parent: 1
+ - uid: 17803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,99.5
+ parent: 1
+ - uid: 17804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,100.5
+ parent: 1
+ - uid: 17805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,101.5
+ parent: 1
+ - uid: 17806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,103.5
+ parent: 1
+ - uid: 17807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,104.5
+ parent: 1
+ - uid: 17808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,105.5
+ parent: 1
+ - uid: 17809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,106.5
+ parent: 1
+ - uid: 17810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,107.5
+ parent: 1
+ - uid: 17811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,108.5
+ parent: 1
+ - uid: 17812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,109.5
+ parent: 1
+ - uid: 17813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,110.5
+ parent: 1
+ - uid: 17814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,111.5
+ parent: 1
+ - uid: 17815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,112.5
+ parent: 1
+ - uid: 17816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,111.5
+ parent: 1
+ - uid: 17817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,110.5
+ parent: 1
+ - uid: 17818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,109.5
+ parent: 1
+ - uid: 17819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,108.5
+ parent: 1
+ - uid: 17820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,107.5
+ parent: 1
+ - uid: 17821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,106.5
+ parent: 1
+ - uid: 17822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,105.5
+ parent: 1
+ - uid: 17823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,104.5
+ parent: 1
+ - uid: 17824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,104.5
+ parent: 1
+ - uid: 17825
+ components:
+ - type: Transform
+ pos: 66.5,103.5
+ parent: 1
+ - uid: 17826
+ components:
+ - type: Transform
+ pos: 66.5,102.5
+ parent: 1
+ - uid: 17827
+ components:
+ - type: Transform
+ pos: 66.5,101.5
+ parent: 1
+ - uid: 17828
+ components:
+ - type: Transform
+ pos: 66.5,100.5
+ parent: 1
+ - uid: 17829
+ components:
+ - type: Transform
+ pos: 66.5,99.5
+ parent: 1
+ - uid: 17830
+ components:
+ - type: Transform
+ pos: 66.5,98.5
+ parent: 1
+ - uid: 17831
+ components:
+ - type: Transform
+ pos: 66.5,97.5
+ parent: 1
+ - uid: 17835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,96.5
+ parent: 1
+ - uid: 17836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,96.5
+ parent: 1
+ - uid: 17837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,96.5
+ parent: 1
+ - uid: 17838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,96.5
+ parent: 1
+ - uid: 17843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,109.5
+ parent: 1
+ - uid: 17844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,109.5
+ parent: 1
+ - uid: 17845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,109.5
+ parent: 1
+ - uid: 17846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,109.5
+ parent: 1
+ - uid: 17847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,109.5
+ parent: 1
+ - uid: 17848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,109.5
+ parent: 1
+ - uid: 17849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,109.5
+ parent: 1
+ - uid: 17850
+ components:
+ - type: Transform
+ pos: 81.5,110.5
+ parent: 1
+ - uid: 17851
+ components:
+ - type: Transform
+ pos: 81.5,111.5
+ parent: 1
+ - uid: 17852
+ components:
+ - type: Transform
+ pos: 81.5,112.5
+ parent: 1
+ - uid: 17853
+ components:
+ - type: Transform
+ pos: 81.5,113.5
+ parent: 1
+ - uid: 17858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,86.5
+ parent: 1
+ - uid: 17859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,86.5
+ parent: 1
+ - uid: 17860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,86.5
+ parent: 1
+ - uid: 17863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,87.5
+ parent: 1
+ - uid: 17864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,89.5
+ parent: 1
+ - uid: 17865
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,90.5
+ parent: 1
+ - uid: 17866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,91.5
+ parent: 1
+ - uid: 17867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,92.5
+ parent: 1
+ - uid: 17868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,93.5
+ parent: 1
+ - uid: 17869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,94.5
+ parent: 1
+ - uid: 17870
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,95.5
+ parent: 1
+ - uid: 17871
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,96.5
+ parent: 1
+ - uid: 17872
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,88.5
+ parent: 1
+ - uid: 17873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,97.5
+ parent: 1
+ - uid: 17874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,98.5
+ parent: 1
+ - uid: 17875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,99.5
+ parent: 1
+ - uid: 17876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,101.5
+ parent: 1
+ - uid: 17877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,100.5
+ parent: 1
+ - uid: 17878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,103.5
+ parent: 1
+ - uid: 17879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,105.5
+ parent: 1
+ - uid: 17880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,106.5
+ parent: 1
+ - uid: 17881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,107.5
+ parent: 1
+ - uid: 17882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,108.5
+ parent: 1
+ - uid: 17883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,109.5
+ parent: 1
+ - uid: 17884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,110.5
+ parent: 1
+ - uid: 17885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,111.5
+ parent: 1
+ - uid: 17886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,104.5
+ parent: 1
+ - uid: 17887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,113.5
+ parent: 1
+ - uid: 17888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,112.5
+ parent: 1
+ - uid: 17902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,87.5
+ parent: 1
+ - uid: 17903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,87.5
+ parent: 1
+ - uid: 17904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,87.5
+ parent: 1
+ - uid: 17905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,87.5
+ parent: 1
+ - uid: 17906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,87.5
+ parent: 1
+ - uid: 17907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,87.5
+ parent: 1
+ - uid: 17908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,88.5
+ parent: 1
+ - uid: 17909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,89.5
+ parent: 1
+ - uid: 17911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,91.5
+ parent: 1
+ - uid: 17912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,92.5
+ parent: 1
+ - uid: 17913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,93.5
+ parent: 1
+ - uid: 17914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,94.5
+ parent: 1
+ - uid: 17915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,95.5
+ parent: 1
+ - uid: 17916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,96.5
+ parent: 1
+ - uid: 17923
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,85.5
+ parent: 1
+ - uid: 17924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,86.5
+ parent: 1
+ - uid: 17932
+ components:
+ - type: Transform
+ pos: 83.5,88.5
+ parent: 1
+ - uid: 17933
+ components:
+ - type: Transform
+ pos: 83.5,89.5
+ parent: 1
+ - uid: 17934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,85.5
+ parent: 1
+ - uid: 17935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,86.5
+ parent: 1
+ - uid: 17948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,77.5
+ parent: 1
+ - uid: 17951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,113.5
+ parent: 1
+ - uid: 17953
+ components:
+ - type: Transform
+ pos: 68.5,52.5
+ parent: 1
+ - uid: 17959
+ components:
+ - type: Transform
+ pos: 127.5,95.5
+ parent: 1
+ - uid: 17975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,52.5
+ parent: 1
+ - uid: 17976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,52.5
+ parent: 1
+ - uid: 18136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,104.5
+ parent: 1
+ - uid: 18138
+ components:
+ - type: Transform
+ pos: 100.5,103.5
+ parent: 1
+ - uid: 18208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,52.5
+ parent: 1
+ - uid: 18360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,77.5
+ parent: 1
+ - uid: 18407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,77.5
+ parent: 1
+ - uid: 18412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,77.5
+ parent: 1
+ - uid: 18413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,77.5
+ parent: 1
+ - uid: 18417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,77.5
+ parent: 1
+ - uid: 18418
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,77.5
+ parent: 1
+ - uid: 18540
+ components:
+ - type: Transform
+ pos: 125.5,109.5
+ parent: 1
+ - uid: 18649
+ components:
+ - type: Transform
+ pos: 129.5,116.5
+ parent: 1
+ - uid: 18650
+ components:
+ - type: Transform
+ pos: 129.5,115.5
+ parent: 1
+ - uid: 18651
+ components:
+ - type: Transform
+ pos: 129.5,114.5
+ parent: 1
+ - uid: 18652
+ components:
+ - type: Transform
+ pos: 129.5,113.5
+ parent: 1
+ - uid: 18653
+ components:
+ - type: Transform
+ pos: 129.5,112.5
+ parent: 1
+ - uid: 18654
+ components:
+ - type: Transform
+ pos: 129.5,111.5
+ parent: 1
+ - uid: 18655
+ components:
+ - type: Transform
+ pos: 129.5,110.5
+ parent: 1
+ - uid: 18656
+ components:
+ - type: Transform
+ pos: 129.5,109.5
+ parent: 1
+ - uid: 18657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,108.5
+ parent: 1
+ - uid: 18658
+ components:
+ - type: Transform
+ pos: 129.5,107.5
+ parent: 1
+ - uid: 18659
+ components:
+ - type: Transform
+ pos: 129.5,105.5
+ parent: 1
+ - uid: 18660
+ components:
+ - type: Transform
+ pos: 129.5,104.5
+ parent: 1
+ - uid: 18661
+ components:
+ - type: Transform
+ pos: 129.5,106.5
+ parent: 1
+ - uid: 18662
+ components:
+ - type: Transform
+ pos: 129.5,102.5
+ parent: 1
+ - uid: 18664
+ components:
+ - type: Transform
+ pos: 129.5,100.5
+ parent: 1
+ - uid: 18665
+ components:
+ - type: Transform
+ pos: 129.5,99.5
+ parent: 1
+ - uid: 18666
+ components:
+ - type: Transform
+ pos: 129.5,98.5
+ parent: 1
+ - uid: 18667
+ components:
+ - type: Transform
+ pos: 129.5,97.5
+ parent: 1
+ - uid: 18668
+ components:
+ - type: Transform
+ pos: 129.5,103.5
+ parent: 1
+ - uid: 18669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,96.5
+ parent: 1
+ - uid: 18670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,96.5
+ parent: 1
+ - uid: 18671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,96.5
+ parent: 1
+ - uid: 18672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,96.5
+ parent: 1
+ - uid: 18673
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,96.5
+ parent: 1
+ - uid: 18674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,96.5
+ parent: 1
+ - uid: 18675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,96.5
+ parent: 1
+ - uid: 18676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,96.5
+ parent: 1
+ - uid: 18694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,99.5
+ parent: 1
+ - uid: 18695
+ components:
+ - type: Transform
+ pos: 140.5,102.5
+ parent: 1
+ - uid: 18696
+ components:
+ - type: Transform
+ pos: 140.5,101.5
+ parent: 1
+ - uid: 18697
+ components:
+ - type: Transform
+ pos: 140.5,103.5
+ parent: 1
+ - uid: 18698
+ components:
+ - type: Transform
+ pos: 140.5,104.5
+ parent: 1
+ - uid: 18699
+ components:
+ - type: Transform
+ pos: 140.5,105.5
+ parent: 1
+ - uid: 18700
+ components:
+ - type: Transform
+ pos: 140.5,106.5
+ parent: 1
+ - uid: 18701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,107.5
+ parent: 1
+ - uid: 18722
+ components:
+ - type: Transform
+ pos: 150.5,107.5
+ parent: 1
+ - uid: 18723
+ components:
+ - type: Transform
+ pos: 150.5,106.5
+ parent: 1
+ - uid: 18724
+ components:
+ - type: Transform
+ pos: 150.5,105.5
+ parent: 1
+ - uid: 18725
+ components:
+ - type: Transform
+ pos: 150.5,104.5
+ parent: 1
+ - uid: 18726
+ components:
+ - type: Transform
+ pos: 150.5,103.5
+ parent: 1
+ - uid: 18727
+ components:
+ - type: Transform
+ pos: 150.5,102.5
+ parent: 1
+ - uid: 18728
+ components:
+ - type: Transform
+ pos: 150.5,101.5
+ parent: 1
+ - uid: 18729
+ components:
+ - type: Transform
+ pos: 150.5,100.5
+ parent: 1
+ - uid: 18747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,99.5
+ parent: 1
+ - uid: 18748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,99.5
+ parent: 1
+ - uid: 18749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,99.5
+ parent: 1
+ - uid: 18750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,99.5
+ parent: 1
+ - uid: 18751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,99.5
+ parent: 1
+ - uid: 18752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,98.5
+ parent: 1
+ - uid: 18753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,98.5
+ parent: 1
+ - uid: 18754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,98.5
+ parent: 1
+ - uid: 18755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,99.5
+ parent: 1
+ - uid: 18756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,100.5
+ parent: 1
+ - uid: 18757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,101.5
+ parent: 1
+ - uid: 18758
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,102.5
+ parent: 1
+ - uid: 18759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,103.5
+ parent: 1
+ - uid: 18760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,104.5
+ parent: 1
+ - uid: 18761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,105.5
+ parent: 1
+ - uid: 18762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,106.5
+ parent: 1
+ - uid: 18763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,107.5
+ parent: 1
+ - uid: 18764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,108.5
+ parent: 1
+ - uid: 18765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,109.5
+ parent: 1
+ - uid: 18767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,111.5
+ parent: 1
+ - uid: 18768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,112.5
+ parent: 1
+ - uid: 18769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,113.5
+ parent: 1
+ - uid: 18771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,115.5
+ parent: 1
+ - uid: 18772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,116.5
+ parent: 1
+ - uid: 18773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,117.5
+ parent: 1
+ - uid: 18774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,118.5
+ parent: 1
+ - uid: 18775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,119.5
+ parent: 1
+ - uid: 18776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,119.5
+ parent: 1
+ - uid: 18777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,119.5
+ parent: 1
+ - uid: 18778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,119.5
+ parent: 1
+ - uid: 18779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,119.5
+ parent: 1
+ - uid: 18780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,119.5
+ parent: 1
+ - uid: 18781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,119.5
+ parent: 1
+ - uid: 18782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,119.5
+ parent: 1
+ - uid: 18783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,119.5
+ parent: 1
+ - uid: 18784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,119.5
+ parent: 1
+ - uid: 18785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,119.5
+ parent: 1
+ - uid: 18786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,119.5
+ parent: 1
+ - uid: 18794
+ components:
+ - type: Transform
+ pos: 127.5,97.5
+ parent: 1
+ - uid: 18795
+ components:
+ - type: Transform
+ pos: 127.5,96.5
+ parent: 1
+ - uid: 18797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,99.5
+ parent: 1
+ - uid: 18798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,99.5
+ parent: 1
+ - uid: 18799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 18800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,99.5
+ parent: 1
+ - uid: 18801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,99.5
+ parent: 1
+ - uid: 18802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,99.5
+ parent: 1
+ - uid: 18803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,99.5
+ parent: 1
+ - uid: 18804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,99.5
+ parent: 1
+ - uid: 18805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,99.5
+ parent: 1
+ - uid: 18806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,100.5
+ parent: 1
+ - uid: 18807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,101.5
+ parent: 1
+ - uid: 18808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,102.5
+ parent: 1
+ - uid: 18809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,103.5
+ parent: 1
+ - uid: 18810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,104.5
+ parent: 1
+ - uid: 18811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,105.5
+ parent: 1
+ - uid: 18812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,106.5
+ parent: 1
+ - uid: 18813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,107.5
+ parent: 1
+ - uid: 18814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,108.5
+ parent: 1
+ - uid: 18820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,110.5
+ parent: 1
+ - uid: 18821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,110.5
+ parent: 1
+ - uid: 18822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,110.5
+ parent: 1
+ - uid: 18823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,110.5
+ parent: 1
+ - uid: 18824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,110.5
+ parent: 1
+ - uid: 18827
+ components:
+ - type: Transform
+ pos: 149.5,96.5
+ parent: 1
+ - uid: 18829
+ components:
+ - type: Transform
+ pos: 149.5,99.5
+ parent: 1
+ - uid: 18830
+ components:
+ - type: Transform
+ pos: 149.5,100.5
+ parent: 1
+ - uid: 18831
+ components:
+ - type: Transform
+ pos: 149.5,98.5
+ parent: 1
+ - uid: 18832
+ components:
+ - type: Transform
+ pos: 149.5,101.5
+ parent: 1
+ - uid: 18833
+ components:
+ - type: Transform
+ pos: 149.5,103.5
+ parent: 1
+ - uid: 18834
+ components:
+ - type: Transform
+ pos: 149.5,102.5
+ parent: 1
+ - uid: 18835
+ components:
+ - type: Transform
+ pos: 149.5,104.5
+ parent: 1
+ - uid: 18836
+ components:
+ - type: Transform
+ pos: 149.5,106.5
+ parent: 1
+ - uid: 18837
+ components:
+ - type: Transform
+ pos: 149.5,107.5
+ parent: 1
+ - uid: 18838
+ components:
+ - type: Transform
+ pos: 149.5,105.5
+ parent: 1
+ - uid: 18839
+ components:
+ - type: Transform
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 18842
+ components:
+ - type: Transform
+ pos: 149.5,108.5
+ parent: 1
+ - uid: 18845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,112.5
+ parent: 1
+ - uid: 18846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,112.5
+ parent: 1
+ - uid: 18847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,112.5
+ parent: 1
+ - uid: 18848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,112.5
+ parent: 1
+ - uid: 18849
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 18850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,112.5
+ parent: 1
+ - uid: 18851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,112.5
+ parent: 1
+ - uid: 18853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,110.5
+ parent: 1
+ - uid: 18854
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,110.5
+ parent: 1
+ - uid: 18855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,110.5
+ parent: 1
+ - uid: 18856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,110.5
+ parent: 1
+ - uid: 18857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,110.5
+ parent: 1
+ - uid: 18858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,111.5
+ parent: 1
+ - uid: 18869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,99.5
+ parent: 1
+ - uid: 20511
+ components:
+ - type: Transform
+ pos: 48.5,89.5
+ parent: 1
+ - uid: 20512
+ components:
+ - type: Transform
+ pos: 48.5,88.5
+ parent: 1
+ - uid: 20513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,87.5
+ parent: 1
+ - uid: 20514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,87.5
+ parent: 1
+ - uid: 20515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,87.5
+ parent: 1
+ - uid: 20516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,87.5
+ parent: 1
+ - uid: 20517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,87.5
+ parent: 1
+ - uid: 20518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,87.5
+ parent: 1
+ - uid: 20519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,88.5
+ parent: 1
+ - uid: 20520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,89.5
+ parent: 1
+ - uid: 20521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,86.5
+ parent: 1
+ - uid: 20522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,85.5
+ parent: 1
+ - uid: 20528
+ components:
+ - type: Transform
+ pos: 55.5,90.5
+ parent: 1
+ - uid: 20529
+ components:
+ - type: Transform
+ pos: 55.5,91.5
+ parent: 1
+ - uid: 20530
+ components:
+ - type: Transform
+ pos: 55.5,92.5
+ parent: 1
+ - uid: 20531
+ components:
+ - type: Transform
+ pos: 55.5,93.5
+ parent: 1
+ - uid: 20532
+ components:
+ - type: Transform
+ pos: 55.5,94.5
+ parent: 1
+ - uid: 20533
+ components:
+ - type: Transform
+ pos: 55.5,95.5
+ parent: 1
+ - uid: 20534
+ components:
+ - type: Transform
+ pos: 55.5,96.5
+ parent: 1
+ - uid: 20535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,97.5
+ parent: 1
+ - uid: 20536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,97.5
+ parent: 1
+ - uid: 20537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,97.5
+ parent: 1
+ - uid: 20538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,97.5
+ parent: 1
+ - uid: 20539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,97.5
+ parent: 1
+ - uid: 20540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,97.5
+ parent: 1
+ - uid: 20541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,97.5
+ parent: 1
+ - uid: 20542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,97.5
+ parent: 1
+ - uid: 20543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,97.5
+ parent: 1
+ - uid: 20544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,97.5
+ parent: 1
+ - uid: 20545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,97.5
+ parent: 1
+ - uid: 20546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,97.5
+ parent: 1
+ - uid: 20547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,98.5
+ parent: 1
+ - uid: 20548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,99.5
+ parent: 1
+ - uid: 20549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,100.5
+ parent: 1
+ - uid: 20550
+ components:
+ - type: Transform
+ pos: 44.5,107.5
+ parent: 1
+ - uid: 20551
+ components:
+ - type: Transform
+ pos: 44.5,108.5
+ parent: 1
+ - uid: 20552
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - uid: 20553
+ components:
+ - type: Transform
+ pos: 48.5,111.5
+ parent: 1
+ - uid: 20554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,112.5
+ parent: 1
+ - uid: 20556
+ components:
+ - type: Transform
+ pos: 44.5,111.5
+ parent: 1
+ - uid: 20557
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,112.5
+ parent: 1
+ - uid: 20558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,112.5
+ parent: 1
+ - uid: 20560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,102.5
+ parent: 1
+ - uid: 20561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,103.5
+ parent: 1
+ - uid: 20562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,104.5
+ parent: 1
+ - uid: 20563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,105.5
+ parent: 1
+ - uid: 20564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,106.5
+ parent: 1
+ - uid: 20565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,107.5
+ parent: 1
+ - uid: 20566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,108.5
+ parent: 1
+ - uid: 20567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,109.5
+ parent: 1
+ - uid: 20569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,110.5
+ parent: 1
+ - uid: 20570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,112.5
+ parent: 1
+ - uid: 20571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,112.5
+ parent: 1
+ - uid: 20572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,112.5
+ parent: 1
+ - uid: 20573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,112.5
+ parent: 1
+ - uid: 20574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,112.5
+ parent: 1
+ - uid: 20575
+ components:
+ - type: Transform
+ pos: 36.5,111.5
+ parent: 1
+ - uid: 20578
+ components:
+ - type: Transform
+ pos: 42.5,101.5
+ parent: 1
+ - uid: 20579
+ components:
+ - type: Transform
+ pos: 44.5,106.5
+ parent: 1
+ - uid: 20580
+ components:
+ - type: Transform
+ pos: 44.5,105.5
+ parent: 1
+ - uid: 20581
+ components:
+ - type: Transform
+ pos: 44.5,104.5
+ parent: 1
+ - uid: 20582
+ components:
+ - type: Transform
+ pos: 44.5,103.5
+ parent: 1
+ - uid: 20583
+ components:
+ - type: Transform
+ pos: 44.5,102.5
+ parent: 1
+ - uid: 20584
+ components:
+ - type: Transform
+ pos: 44.5,109.5
+ parent: 1
+ - uid: 20585
+ components:
+ - type: Transform
+ pos: 44.5,101.5
+ parent: 1
+ - uid: 20586
+ components:
+ - type: Transform
+ pos: 44.5,100.5
+ parent: 1
+ - uid: 20588
+ components:
+ - type: Transform
+ pos: 44.5,98.5
+ parent: 1
+ - uid: 20589
+ components:
+ - type: Transform
+ pos: 44.5,97.5
+ parent: 1
+ - uid: 20590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,96.5
+ parent: 1
+ - uid: 20592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,96.5
+ parent: 1
+ - uid: 20593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,96.5
+ parent: 1
+ - uid: 20594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,96.5
+ parent: 1
+ - uid: 20595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,96.5
+ parent: 1
+ - uid: 20596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,96.5
+ parent: 1
+ - uid: 20597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,96.5
+ parent: 1
+ - uid: 20598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,96.5
+ parent: 1
+ - uid: 20599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,96.5
+ parent: 1
+ - uid: 20600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,96.5
+ parent: 1
+ - uid: 20601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,96.5
+ parent: 1
+ - uid: 20602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,97.5
+ parent: 1
+ - uid: 20603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,98.5
+ parent: 1
+ - uid: 20604
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,99.5
+ parent: 1
+ - uid: 20605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,100.5
+ parent: 1
+ - uid: 20606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,101.5
+ parent: 1
+ - uid: 20607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,102.5
+ parent: 1
+ - uid: 20608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,103.5
+ parent: 1
+ - uid: 20609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,105.5
+ parent: 1
+ - uid: 20610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,106.5
+ parent: 1
+ - uid: 20611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,104.5
+ parent: 1
+ - uid: 20612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,108.5
+ parent: 1
+ - uid: 20613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,109.5
+ parent: 1
+ - uid: 20615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,110.5
+ parent: 1
+ - uid: 20616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,111.5
+ parent: 1
+ - uid: 20617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,112.5
+ parent: 1
+ - uid: 20618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,112.5
+ parent: 1
+ - uid: 20619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,112.5
+ parent: 1
+ - uid: 20620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,112.5
+ parent: 1
+ - uid: 20621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,112.5
+ parent: 1
+ - uid: 20622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,112.5
+ parent: 1
+ - uid: 20623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,112.5
+ parent: 1
+ - uid: 20625
+ components:
+ - type: Transform
+ pos: 57.5,95.5
+ parent: 1
+ - uid: 20626
+ components:
+ - type: Transform
+ pos: 57.5,94.5
+ parent: 1
+ - uid: 20628
+ components:
+ - type: Transform
+ pos: 57.5,92.5
+ parent: 1
+ - uid: 20629
+ components:
+ - type: Transform
+ pos: 57.5,91.5
+ parent: 1
+ - uid: 20631
+ components:
+ - type: Transform
+ pos: 57.5,89.5
+ parent: 1
+ - uid: 20632
+ components:
+ - type: Transform
+ pos: 57.5,87.5
+ parent: 1
+ - uid: 20633
+ components:
+ - type: Transform
+ pos: 57.5,86.5
+ parent: 1
+ - uid: 20634
+ components:
+ - type: Transform
+ pos: 57.5,85.5
+ parent: 1
+ - uid: 20635
+ components:
+ - type: Transform
+ pos: 57.5,84.5
+ parent: 1
+ - uid: 20636
+ components:
+ - type: Transform
+ pos: 57.5,83.5
+ parent: 1
+ - uid: 20637
+ components:
+ - type: Transform
+ pos: 57.5,82.5
+ parent: 1
+ - uid: 20638
+ components:
+ - type: Transform
+ pos: 57.5,81.5
+ parent: 1
+ - uid: 20639
+ components:
+ - type: Transform
+ pos: 57.5,80.5
+ parent: 1
+ - uid: 20640
+ components:
+ - type: Transform
+ pos: 57.5,79.5
+ parent: 1
+ - uid: 20641
+ components:
+ - type: Transform
+ pos: 57.5,88.5
+ parent: 1
+ - uid: 20645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,90.5
+ parent: 1
+ - uid: 20646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,90.5
+ parent: 1
+ - uid: 20647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,90.5
+ parent: 1
+ - uid: 20648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,90.5
+ parent: 1
+ - uid: 20649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,90.5
+ parent: 1
+ - uid: 20650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,83.5
+ parent: 1
+ - uid: 20651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,83.5
+ parent: 1
+ - uid: 20653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,83.5
+ parent: 1
+ - uid: 20655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,83.5
+ parent: 1
+ - uid: 20656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,83.5
+ parent: 1
+ - uid: 20657
+ components:
+ - type: Transform
+ pos: 44.5,84.5
+ parent: 1
+ - uid: 20658
+ components:
+ - type: Transform
+ pos: 44.5,85.5
+ parent: 1
+ - uid: 20659
+ components:
+ - type: Transform
+ pos: 44.5,86.5
+ parent: 1
+ - uid: 20660
+ components:
+ - type: Transform
+ pos: 44.5,87.5
+ parent: 1
+ - uid: 20661
+ components:
+ - type: Transform
+ pos: 44.5,88.5
+ parent: 1
+ - uid: 20662
+ components:
+ - type: Transform
+ pos: 44.5,89.5
+ parent: 1
+ - uid: 20663
+ components:
+ - type: Transform
+ pos: 44.5,90.5
+ parent: 1
+ - uid: 20664
+ components:
+ - type: Transform
+ pos: 44.5,91.5
+ parent: 1
+ - uid: 20665
+ components:
+ - type: Transform
+ pos: 44.5,92.5
+ parent: 1
+ - uid: 20666
+ components:
+ - type: Transform
+ pos: 44.5,93.5
+ parent: 1
+ - uid: 20667
+ components:
+ - type: Transform
+ pos: 44.5,94.5
+ parent: 1
+ - uid: 20668
+ components:
+ - type: Transform
+ pos: 44.5,95.5
+ parent: 1
+ - uid: 20673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,84.5
+ parent: 1
+ - uid: 20674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,86.5
+ parent: 1
+ - uid: 20675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,87.5
+ parent: 1
+ - uid: 20676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,88.5
+ parent: 1
+ - uid: 20677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,89.5
+ parent: 1
+ - uid: 20678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,85.5
+ parent: 1
+ - uid: 20679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,90.5
+ parent: 1
+ - uid: 20684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,81.5
+ parent: 1
+ - uid: 20685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,82.5
+ parent: 1
+ - uid: 20694
+ components:
+ - type: Transform
+ pos: 31.5,116.5
+ parent: 1
+ - uid: 20695
+ components:
+ - type: Transform
+ pos: 31.5,115.5
+ parent: 1
+ - uid: 20696
+ components:
+ - type: Transform
+ pos: 31.5,114.5
+ parent: 1
+ - uid: 20697
+ components:
+ - type: Transform
+ pos: 31.5,113.5
+ parent: 1
+ - uid: 20698
+ components:
+ - type: Transform
+ pos: 31.5,112.5
+ parent: 1
+ - uid: 20699
+ components:
+ - type: Transform
+ pos: 31.5,111.5
+ parent: 1
+ - uid: 20700
+ components:
+ - type: Transform
+ pos: 31.5,110.5
+ parent: 1
+ - uid: 20701
+ components:
+ - type: Transform
+ pos: 31.5,109.5
+ parent: 1
+ - uid: 20702
+ components:
+ - type: Transform
+ pos: 31.5,108.5
+ parent: 1
+ - uid: 20703
+ components:
+ - type: Transform
+ pos: 31.5,107.5
+ parent: 1
+ - uid: 20704
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - uid: 20705
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 1
+ - uid: 20706
+ components:
+ - type: Transform
+ pos: 31.5,104.5
+ parent: 1
+ - uid: 20707
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 1
+ - uid: 20708
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - uid: 20709
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 1
+ - uid: 20711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,99.5
+ parent: 1
+ - uid: 20712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,99.5
+ parent: 1
+ - uid: 20713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,99.5
+ parent: 1
+ - uid: 20714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,99.5
+ parent: 1
+ - uid: 20715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,99.5
+ parent: 1
+ - uid: 20716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,99.5
+ parent: 1
+ - uid: 20717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,99.5
+ parent: 1
+ - uid: 20718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,99.5
+ parent: 1
+ - uid: 20719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,99.5
+ parent: 1
+ - uid: 20720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,99.5
+ parent: 1
+ - uid: 20721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,99.5
+ parent: 1
+ - uid: 20722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,99.5
+ parent: 1
+ - uid: 20725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,100.5
+ parent: 1
+ - uid: 20726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,100.5
+ parent: 1
+ - uid: 20727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,100.5
+ parent: 1
+ - uid: 20728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,100.5
+ parent: 1
+ - uid: 20729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,100.5
+ parent: 1
+ - uid: 20730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,100.5
+ parent: 1
+ - uid: 20780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,120.5
+ parent: 1
+ - uid: 21044
+ components:
+ - type: Transform
+ pos: 138.5,97.5
+ parent: 1
+ - uid: 21048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,98.5
+ parent: 1
+ - uid: 21052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,110.5
+ parent: 1
+ - uid: 21135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,142.5
+ parent: 1
+ - uid: 21138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,87.5
+ parent: 1
+ - uid: 21379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,100.5
+ parent: 1
+ - uid: 21380
+ components:
+ - type: Transform
+ pos: 44.5,71.5
+ parent: 1
+ - uid: 21651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,143.5
+ parent: 1
+ - uid: 21657
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,99.5
+ parent: 1
+ - uid: 21658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,98.5
+ parent: 1
+ - uid: 21671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,95.5
+ parent: 1
+ - uid: 21687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,97.5
+ parent: 1
+ - uid: 21757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,61.5
+ parent: 1
+ - uid: 21759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,62.5
+ parent: 1
+ - uid: 21761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,60.5
+ parent: 1
+ - uid: 21764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,59.5
+ parent: 1
+ - uid: 21765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,63.5
+ parent: 1
+ - uid: 21809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,58.5
+ parent: 1
+ - uid: 21872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,98.5
+ parent: 1
+ - uid: 22047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,57.5
+ parent: 1
+ - uid: 22049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,50.5
+ parent: 1
+ - uid: 22102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,98.5
+ parent: 1
+ - uid: 22176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,98.5
+ parent: 1
+ - uid: 22185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,98.5
+ parent: 1
+ - uid: 22187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,110.5
+ parent: 1
+ - uid: 22193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,111.5
+ parent: 1
+ - uid: 22274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,52.5
+ parent: 1
+ - uid: 22281
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,51.5
+ parent: 1
+ - uid: 22282
+ components:
+ - type: Transform
+ pos: 140.5,52.5
+ parent: 1
+ - uid: 22283
+ components:
+ - type: Transform
+ pos: 140.5,53.5
+ parent: 1
+ - uid: 22284
+ components:
+ - type: Transform
+ pos: 140.5,54.5
+ parent: 1
+ - uid: 22285
+ components:
+ - type: Transform
+ pos: 140.5,55.5
+ parent: 1
+ - uid: 22286
+ components:
+ - type: Transform
+ pos: 140.5,56.5
+ parent: 1
+ - uid: 22287
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,57.5
+ parent: 1
+ - uid: 22288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,57.5
+ parent: 1
+ - uid: 22289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,58.5
+ parent: 1
+ - uid: 22290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,59.5
+ parent: 1
+ - uid: 22291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,60.5
+ parent: 1
+ - uid: 22292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,61.5
+ parent: 1
+ - uid: 22293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,62.5
+ parent: 1
+ - uid: 22294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,63.5
+ parent: 1
+ - uid: 22295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,64.5
+ parent: 1
+ - uid: 22296
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,65.5
+ parent: 1
+ - uid: 22297
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,67.5
+ parent: 1
+ - uid: 22298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,66.5
+ parent: 1
+ - uid: 22299
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,68.5
+ parent: 1
+ - uid: 22300
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,70.5
+ parent: 1
+ - uid: 22301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,71.5
+ parent: 1
+ - uid: 22302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,72.5
+ parent: 1
+ - uid: 22303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,69.5
+ parent: 1
+ - uid: 22304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,73.5
+ parent: 1
+ - uid: 22305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,74.5
+ parent: 1
+ - uid: 22306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,75.5
+ parent: 1
+ - uid: 22307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,76.5
+ parent: 1
+ - uid: 22308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,77.5
+ parent: 1
+ - uid: 22309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,78.5
+ parent: 1
+ - uid: 22310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,78.5
+ parent: 1
+ - uid: 22311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,78.5
+ parent: 1
+ - uid: 22312
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,78.5
+ parent: 1
+ - uid: 22313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,78.5
+ parent: 1
+ - uid: 22314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,78.5
+ parent: 1
+ - uid: 22315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,78.5
+ parent: 1
+ - uid: 22316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,78.5
+ parent: 1
+ - uid: 22325
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,80.5
+ parent: 1
+ - uid: 22326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,81.5
+ parent: 1
+ - uid: 22327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,82.5
+ parent: 1
+ - uid: 22328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,83.5
+ parent: 1
+ - uid: 22329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,85.5
+ parent: 1
+ - uid: 22330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,86.5
+ parent: 1
+ - uid: 22331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,87.5
+ parent: 1
+ - uid: 22332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,88.5
+ parent: 1
+ - uid: 22333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,89.5
+ parent: 1
+ - uid: 22334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,90.5
+ parent: 1
+ - uid: 22335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,91.5
+ parent: 1
+ - uid: 22336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,92.5
+ parent: 1
+ - uid: 22337
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,93.5
+ parent: 1
+ - uid: 22338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,84.5
+ parent: 1
+ - uid: 22339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,94.5
+ parent: 1
+ - uid: 22340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,71.5
+ parent: 1
+ - uid: 22341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,71.5
+ parent: 1
+ - uid: 22342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,71.5
+ parent: 1
+ - uid: 22343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,71.5
+ parent: 1
+ - uid: 22344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,71.5
+ parent: 1
+ - uid: 22345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,71.5
+ parent: 1
+ - uid: 22346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,71.5
+ parent: 1
+ - uid: 22347
+ components:
+ - type: Transform
+ pos: 126.5,70.5
+ parent: 1
+ - uid: 22348
+ components:
+ - type: Transform
+ pos: 126.5,69.5
+ parent: 1
+ - uid: 22349
+ components:
+ - type: Transform
+ pos: 126.5,68.5
+ parent: 1
+ - uid: 22350
+ components:
+ - type: Transform
+ pos: 126.5,67.5
+ parent: 1
+ - uid: 22351
+ components:
+ - type: Transform
+ pos: 126.5,66.5
+ parent: 1
+ - uid: 22352
+ components:
+ - type: Transform
+ pos: 126.5,65.5
+ parent: 1
+ - uid: 22353
+ components:
+ - type: Transform
+ pos: 126.5,64.5
+ parent: 1
+ - uid: 22354
+ components:
+ - type: Transform
+ pos: 126.5,63.5
+ parent: 1
+ - uid: 22355
+ components:
+ - type: Transform
+ pos: 126.5,62.5
+ parent: 1
+ - uid: 22356
+ components:
+ - type: Transform
+ pos: 126.5,61.5
+ parent: 1
+ - uid: 22357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,60.5
+ parent: 1
+ - uid: 22358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,60.5
+ parent: 1
+ - uid: 22359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,60.5
+ parent: 1
+ - uid: 22360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,60.5
+ parent: 1
+ - uid: 22361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,60.5
+ parent: 1
+ - uid: 22362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,60.5
+ parent: 1
+ - uid: 22363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,60.5
+ parent: 1
+ - uid: 22364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,61.5
+ parent: 1
+ - uid: 22365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,62.5
+ parent: 1
+ - uid: 22366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,63.5
+ parent: 1
+ - uid: 22367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,64.5
+ parent: 1
+ - uid: 22368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,65.5
+ parent: 1
+ - uid: 22369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,66.5
+ parent: 1
+ - uid: 22370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,67.5
+ parent: 1
+ - uid: 22371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,68.5
+ parent: 1
+ - uid: 22372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,69.5
+ parent: 1
+ - uid: 22373
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,71.5
+ parent: 1
+ - uid: 22374
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,72.5
+ parent: 1
+ - uid: 22375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,73.5
+ parent: 1
+ - uid: 22376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,74.5
+ parent: 1
+ - uid: 22377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,75.5
+ parent: 1
+ - uid: 22378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,70.5
+ parent: 1
+ - uid: 22379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,77.5
+ parent: 1
+ - uid: 22380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,76.5
+ parent: 1
+ - uid: 22381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,78.5
+ parent: 1
+ - uid: 22382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,78.5
+ parent: 1
+ - uid: 22383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,78.5
+ parent: 1
+ - uid: 22384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,78.5
+ parent: 1
+ - uid: 22385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,78.5
+ parent: 1
+ - uid: 22386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,78.5
+ parent: 1
+ - uid: 22387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,78.5
+ parent: 1
+ - uid: 22388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,78.5
+ parent: 1
+ - uid: 22400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,76.5
+ parent: 1
+ - uid: 22401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,76.5
+ parent: 1
+ - uid: 22402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,76.5
+ parent: 1
+ - uid: 22403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,76.5
+ parent: 1
+ - uid: 22404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,76.5
+ parent: 1
+ - uid: 22405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,76.5
+ parent: 1
+ - uid: 22406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,76.5
+ parent: 1
+ - uid: 22407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,76.5
+ parent: 1
+ - uid: 22408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,76.5
+ parent: 1
+ - uid: 22410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,76.5
+ parent: 1
+ - uid: 22411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,77.5
+ parent: 1
+ - uid: 22412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,77.5
+ parent: 1
+ - uid: 22413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,77.5
+ parent: 1
+ - uid: 22414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,77.5
+ parent: 1
+ - uid: 22416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,110.5
+ parent: 1
+ - uid: 22422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,76.5
+ parent: 1
+ - uid: 22423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,76.5
+ parent: 1
+ - uid: 22424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,77.5
+ parent: 1
+ - uid: 22425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,78.5
+ parent: 1
+ - uid: 22426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,79.5
+ parent: 1
+ - uid: 22432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,76.5
+ parent: 1
+ - uid: 22433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,76.5
+ parent: 1
+ - uid: 22434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,76.5
+ parent: 1
+ - uid: 22435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,76.5
+ parent: 1
+ - uid: 22436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,76.5
+ parent: 1
+ - uid: 22437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,76.5
+ parent: 1
+ - uid: 22438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,59.5
+ parent: 1
+ - uid: 22439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,60.5
+ parent: 1
+ - uid: 22440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,61.5
+ parent: 1
+ - uid: 22441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,63.5
+ parent: 1
+ - uid: 22444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,66.5
+ parent: 1
+ - uid: 22445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,67.5
+ parent: 1
+ - uid: 22446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,68.5
+ parent: 1
+ - uid: 22447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,69.5
+ parent: 1
+ - uid: 22448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,70.5
+ parent: 1
+ - uid: 22449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,71.5
+ parent: 1
+ - uid: 22450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,72.5
+ parent: 1
+ - uid: 22451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,73.5
+ parent: 1
+ - uid: 22452
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,62.5
+ parent: 1
+ - uid: 22453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,58.5
+ parent: 1
+ - uid: 22454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,58.5
+ parent: 1
+ - uid: 22455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,74.5
+ parent: 1
+ - uid: 22456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,58.5
+ parent: 1
+ - uid: 22457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,58.5
+ parent: 1
+ - uid: 22458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,58.5
+ parent: 1
+ - uid: 22459
+ components:
+ - type: Transform
+ pos: 128.5,59.5
+ parent: 1
+ - uid: 22460
+ components:
+ - type: Transform
+ pos: 128.5,60.5
+ parent: 1
+ - uid: 22461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,58.5
+ parent: 1
+ - uid: 22462
+ components:
+ - type: Transform
+ pos: 128.5,63.5
+ parent: 1
+ - uid: 22464
+ components:
+ - type: Transform
+ pos: 128.5,62.5
+ parent: 1
+ - uid: 22465
+ components:
+ - type: Transform
+ pos: 128.5,61.5
+ parent: 1
+ - uid: 22466
+ components:
+ - type: Transform
+ pos: 128.5,66.5
+ parent: 1
+ - uid: 22467
+ components:
+ - type: Transform
+ pos: 128.5,64.5
+ parent: 1
+ - uid: 22468
+ components:
+ - type: Transform
+ pos: 128.5,67.5
+ parent: 1
+ - uid: 22469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,58.5
+ parent: 1
+ - uid: 22470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,76.5
+ parent: 1
+ - uid: 22471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,76.5
+ parent: 1
+ - uid: 22472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,76.5
+ parent: 1
+ - uid: 22473
+ components:
+ - type: Transform
+ pos: 128.5,68.5
+ parent: 1
+ - uid: 22474
+ components:
+ - type: Transform
+ pos: 128.5,69.5
+ parent: 1
+ - uid: 22475
+ components:
+ - type: Transform
+ pos: 128.5,70.5
+ parent: 1
+ - uid: 22476
+ components:
+ - type: Transform
+ pos: 128.5,71.5
+ parent: 1
+ - uid: 22477
+ components:
+ - type: Transform
+ pos: 128.5,72.5
+ parent: 1
+ - uid: 22478
+ components:
+ - type: Transform
+ pos: 128.5,73.5
+ parent: 1
+ - uid: 22482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,57.5
+ parent: 1
+ - uid: 22484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,68.5
+ parent: 1
+ - uid: 22485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,68.5
+ parent: 1
+ - uid: 22486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,68.5
+ parent: 1
+ - uid: 22488
+ components:
+ - type: Transform
+ pos: 139.5,70.5
+ parent: 1
+ - uid: 22489
+ components:
+ - type: Transform
+ pos: 139.5,71.5
+ parent: 1
+ - uid: 22490
+ components:
+ - type: Transform
+ pos: 139.5,72.5
+ parent: 1
+ - uid: 22491
+ components:
+ - type: Transform
+ pos: 139.5,73.5
+ parent: 1
+ - uid: 22492
+ components:
+ - type: Transform
+ pos: 139.5,74.5
+ parent: 1
+ - uid: 22493
+ components:
+ - type: Transform
+ pos: 139.5,75.5
+ parent: 1
+ - uid: 22502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,67.5
+ parent: 1
+ - uid: 22503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,65.5
+ parent: 1
+ - uid: 22504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,64.5
+ parent: 1
+ - uid: 22505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,63.5
+ parent: 1
+ - uid: 22506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,62.5
+ parent: 1
+ - uid: 22507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,61.5
+ parent: 1
+ - uid: 22508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,60.5
+ parent: 1
+ - uid: 22509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,59.5
+ parent: 1
+ - uid: 22510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,58.5
+ parent: 1
+ - uid: 22511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,57.5
+ parent: 1
+ - uid: 22512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,56.5
+ parent: 1
+ - uid: 22514
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,54.5
+ parent: 1
+ - uid: 22515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,66.5
+ parent: 1
+ - uid: 22517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,51.5
+ parent: 1
+ - uid: 22518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,50.5
+ parent: 1
+ - uid: 22519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,53.5
+ parent: 1
+ - uid: 22520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,55.5
+ parent: 1
+ - uid: 22521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,55.5
+ parent: 1
+ - uid: 22522
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,55.5
+ parent: 1
+ - uid: 22523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,55.5
+ parent: 1
+ - uid: 22524
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,55.5
+ parent: 1
+ - uid: 22525
+ components:
+ - type: Transform
+ pos: 145.5,54.5
+ parent: 1
+ - uid: 22526
+ components:
+ - type: Transform
+ pos: 145.5,53.5
+ parent: 1
+ - uid: 22527
+ components:
+ - type: Transform
+ pos: 145.5,49.5
+ parent: 1
+ - uid: 22528
+ components:
+ - type: Transform
+ pos: 145.5,51.5
+ parent: 1
+ - uid: 22529
+ components:
+ - type: Transform
+ pos: 145.5,52.5
+ parent: 1
+ - uid: 22530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,55.5
+ parent: 1
+ - uid: 22531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,55.5
+ parent: 1
+ - uid: 22532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,55.5
+ parent: 1
+ - uid: 22533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,56.5
+ parent: 1
+ - uid: 22536
+ components:
+ - type: Transform
+ pos: 145.5,50.5
+ parent: 1
+ - uid: 22543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,59.5
+ parent: 1
+ - uid: 22551
+ components:
+ - type: Transform
+ pos: 120.5,75.5
+ parent: 1
+ - uid: 22642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,56.5
+ parent: 1
+ - uid: 22648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,55.5
+ parent: 1
+ - uid: 22650
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,50.5
+ parent: 1
+ - uid: 22652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,50.5
+ parent: 1
+ - uid: 22653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,50.5
+ parent: 1
+ - uid: 22667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,50.5
+ parent: 1
+ - uid: 22670
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,52.5
+ parent: 1
+ - uid: 22671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,52.5
+ parent: 1
+ - uid: 22672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,52.5
+ parent: 1
+ - uid: 22674
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,52.5
+ parent: 1
+ - uid: 22704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,54.5
+ parent: 1
+ - uid: 22893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,52.5
+ parent: 1
+ - uid: 23150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,46.5
+ parent: 1
+ - uid: 23189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,47.5
+ parent: 1
+ - uid: 23192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,47.5
+ parent: 1
+ - uid: 23193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,41.5
+ parent: 1
+ - uid: 23194
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,43.5
+ parent: 1
+ - uid: 23201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,45.5
+ parent: 1
+ - uid: 23202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,42.5
+ parent: 1
+ - uid: 23203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,44.5
+ parent: 1
+ - uid: 23225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,101.5
+ parent: 1
+ - uid: 23226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,102.5
+ parent: 1
+ - uid: 23250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,109.5
+ parent: 1
+ - uid: 23321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,109.5
+ parent: 1
+ - uid: 23326
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,101.5
+ parent: 1
+ - uid: 23414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,50.5
+ parent: 1
+ - uid: 23415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,50.5
+ parent: 1
+ - uid: 23428
+ components:
+ - type: Transform
+ pos: 125.5,105.5
+ parent: 1
+ - uid: 23489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,98.5
+ parent: 1
+ - uid: 23523
+ components:
+ - type: Transform
+ pos: 44.5,70.5
+ parent: 1
+ - uid: 23604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,52.5
+ parent: 1
+ - uid: 23609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,52.5
+ parent: 1
+ - uid: 23610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,50.5
+ parent: 1
+ - uid: 24131
+ components:
+ - type: Transform
+ pos: 57.5,76.5
+ parent: 1
+ - uid: 25093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,97.5
+ parent: 1
+ - uid: 25132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,109.5
+ parent: 1
+ - uid: 25153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,99.5
+ parent: 1
+ - uid: 25154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,99.5
+ parent: 1
+ - uid: 25155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,99.5
+ parent: 1
+ - uid: 25157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,110.5
+ parent: 1
+ - uid: 25318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,114.5
+ parent: 1
+ - uid: 25319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,114.5
+ parent: 1
+ - uid: 25320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,114.5
+ parent: 1
+ - uid: 25321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,114.5
+ parent: 1
+ - uid: 25322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,114.5
+ parent: 1
+ - uid: 25323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,114.5
+ parent: 1
+ - uid: 25324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,114.5
+ parent: 1
+ - uid: 25325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,114.5
+ parent: 1
+ - uid: 25326
+ components:
+ - type: Transform
+ pos: 55.5,113.5
+ parent: 1
+ - uid: 25327
+ components:
+ - type: Transform
+ pos: 55.5,112.5
+ parent: 1
+ - uid: 25328
+ components:
+ - type: Transform
+ pos: 55.5,111.5
+ parent: 1
+ - uid: 25329
+ components:
+ - type: Transform
+ pos: 55.5,110.5
+ parent: 1
+ - uid: 25330
+ components:
+ - type: Transform
+ pos: 55.5,109.5
+ parent: 1
+ - uid: 25331
+ components:
+ - type: Transform
+ pos: 55.5,108.5
+ parent: 1
+ - uid: 25332
+ components:
+ - type: Transform
+ pos: 55.5,107.5
+ parent: 1
+ - uid: 25333
+ components:
+ - type: Transform
+ pos: 55.5,106.5
+ parent: 1
+ - uid: 25334
+ components:
+ - type: Transform
+ pos: 55.5,105.5
+ parent: 1
+ - uid: 25335
+ components:
+ - type: Transform
+ pos: 55.5,104.5
+ parent: 1
+ - uid: 25336
+ components:
+ - type: Transform
+ pos: 55.5,102.5
+ parent: 1
+ - uid: 25337
+ components:
+ - type: Transform
+ pos: 55.5,101.5
+ parent: 1
+ - uid: 25338
+ components:
+ - type: Transform
+ pos: 55.5,100.5
+ parent: 1
+ - uid: 25339
+ components:
+ - type: Transform
+ pos: 55.5,99.5
+ parent: 1
+ - uid: 25340
+ components:
+ - type: Transform
+ pos: 55.5,103.5
+ parent: 1
+ - uid: 25341
+ components:
+ - type: Transform
+ pos: 55.5,98.5
+ parent: 1
+ - uid: 25342
+ components:
+ - type: Transform
+ pos: 55.5,69.5
+ parent: 1
+ - uid: 25343
+ components:
+ - type: Transform
+ pos: 55.5,71.5
+ parent: 1
+ - uid: 25344
+ components:
+ - type: Transform
+ pos: 55.5,72.5
+ parent: 1
+ - uid: 25345
+ components:
+ - type: Transform
+ pos: 55.5,73.5
+ parent: 1
+ - uid: 25346
+ components:
+ - type: Transform
+ pos: 55.5,74.5
+ parent: 1
+ - uid: 25347
+ components:
+ - type: Transform
+ pos: 55.5,75.5
+ parent: 1
+ - uid: 25348
+ components:
+ - type: Transform
+ pos: 55.5,76.5
+ parent: 1
+ - uid: 25349
+ components:
+ - type: Transform
+ pos: 55.5,77.5
+ parent: 1
+ - uid: 25350
+ components:
+ - type: Transform
+ pos: 55.5,78.5
+ parent: 1
+ - uid: 25351
+ components:
+ - type: Transform
+ pos: 55.5,79.5
+ parent: 1
+ - uid: 25352
+ components:
+ - type: Transform
+ pos: 55.5,80.5
+ parent: 1
+ - uid: 25353
+ components:
+ - type: Transform
+ pos: 55.5,81.5
+ parent: 1
+ - uid: 25354
+ components:
+ - type: Transform
+ pos: 55.5,82.5
+ parent: 1
+ - uid: 25355
+ components:
+ - type: Transform
+ pos: 55.5,83.5
+ parent: 1
+ - uid: 25356
+ components:
+ - type: Transform
+ pos: 55.5,84.5
+ parent: 1
+ - uid: 25357
+ components:
+ - type: Transform
+ pos: 55.5,70.5
+ parent: 1
+ - uid: 25358
+ components:
+ - type: Transform
+ pos: 57.5,78.5
+ parent: 1
+ - uid: 25361
+ components:
+ - type: Transform
+ pos: 57.5,75.5
+ parent: 1
+ - uid: 25362
+ components:
+ - type: Transform
+ pos: 57.5,74.5
+ parent: 1
+ - uid: 25363
+ components:
+ - type: Transform
+ pos: 57.5,73.5
+ parent: 1
+ - uid: 25364
+ components:
+ - type: Transform
+ pos: 57.5,72.5
+ parent: 1
+ - uid: 25365
+ components:
+ - type: Transform
+ pos: 57.5,71.5
+ parent: 1
+ - uid: 25366
+ components:
+ - type: Transform
+ pos: 57.5,70.5
+ parent: 1
+ - uid: 25367
+ components:
+ - type: Transform
+ pos: 57.5,69.5
+ parent: 1
+ - uid: 25368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,56.5
+ parent: 1
+ - uid: 25369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,55.5
+ parent: 1
+ - uid: 25370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,54.5
+ parent: 1
+ - uid: 25371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,53.5
+ parent: 1
+ - uid: 25372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,53.5
+ parent: 1
+ - uid: 25373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,53.5
+ parent: 1
+ - uid: 25374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,53.5
+ parent: 1
+ - uid: 25375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,53.5
+ parent: 1
+ - uid: 25376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,53.5
+ parent: 1
+ - uid: 25377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,53.5
+ parent: 1
+ - uid: 25378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,53.5
+ parent: 1
+ - uid: 25379
+ components:
+ - type: Transform
+ pos: 111.5,52.5
+ parent: 1
+ - uid: 25381
+ components:
+ - type: Transform
+ pos: 109.5,53.5
+ parent: 1
+ - uid: 25382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,50.5
+ parent: 1
+ - uid: 25383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,50.5
+ parent: 1
+ - uid: 25384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,50.5
+ parent: 1
+ - uid: 25385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,50.5
+ parent: 1
+ - uid: 25386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,50.5
+ parent: 1
+ - uid: 25387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,50.5
+ parent: 1
+ - uid: 25388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,50.5
+ parent: 1
+ - uid: 25394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,52.5
+ parent: 1
+ - uid: 25395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,52.5
+ parent: 1
+ - uid: 25396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,52.5
+ parent: 1
+ - uid: 25397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,52.5
+ parent: 1
+ - uid: 25398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,52.5
+ parent: 1
+ - uid: 25399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,52.5
+ parent: 1
+ - uid: 25400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,52.5
+ parent: 1
+ - uid: 25401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,52.5
+ parent: 1
+ - uid: 25402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,55.5
+ parent: 1
+ - uid: 25403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,55.5
+ parent: 1
+ - uid: 25404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,55.5
+ parent: 1
+ - uid: 25405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,55.5
+ parent: 1
+ - uid: 25406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,55.5
+ parent: 1
+ - uid: 25407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,55.5
+ parent: 1
+ - uid: 25408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,55.5
+ parent: 1
+ - uid: 25409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,56.5
+ parent: 1
+ - uid: 25410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,57.5
+ parent: 1
+ - uid: 25411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,58.5
+ parent: 1
+ - uid: 25425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,63.5
+ parent: 1
+ - uid: 25427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,63.5
+ parent: 1
+ - uid: 25428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,63.5
+ parent: 1
+ - uid: 25429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,63.5
+ parent: 1
+ - uid: 25430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,63.5
+ parent: 1
+ - uid: 25431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,63.5
+ parent: 1
+ - uid: 25432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,63.5
+ parent: 1
+ - uid: 25433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,63.5
+ parent: 1
+ - uid: 25434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,63.5
+ parent: 1
+ - uid: 25435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,63.5
+ parent: 1
+ - uid: 25436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,63.5
+ parent: 1
+ - uid: 25437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,63.5
+ parent: 1
+ - uid: 25438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,63.5
+ parent: 1
+ - uid: 25439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,63.5
+ parent: 1
+ - uid: 25440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,63.5
+ parent: 1
+ - uid: 25441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,63.5
+ parent: 1
+ - uid: 25443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,63.5
+ parent: 1
+ - uid: 25444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,63.5
+ parent: 1
+ - uid: 25445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,63.5
+ parent: 1
+ - uid: 25446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,63.5
+ parent: 1
+ - uid: 25447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,63.5
+ parent: 1
+ - uid: 25448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,63.5
+ parent: 1
+ - uid: 25449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,63.5
+ parent: 1
+ - uid: 25450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,63.5
+ parent: 1
+ - uid: 25451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,65.5
+ parent: 1
+ - uid: 25452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,65.5
+ parent: 1
+ - uid: 25453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,65.5
+ parent: 1
+ - uid: 25454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,65.5
+ parent: 1
+ - uid: 25455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,65.5
+ parent: 1
+ - uid: 25456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,65.5
+ parent: 1
+ - uid: 25457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,65.5
+ parent: 1
+ - uid: 25458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,65.5
+ parent: 1
+ - uid: 25459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,65.5
+ parent: 1
+ - uid: 25460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,65.5
+ parent: 1
+ - uid: 25461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,65.5
+ parent: 1
+ - uid: 25462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,65.5
+ parent: 1
+ - uid: 25463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,65.5
+ parent: 1
+ - uid: 25464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,65.5
+ parent: 1
+ - uid: 25465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,65.5
+ parent: 1
+ - uid: 25466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,65.5
+ parent: 1
+ - uid: 25467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,65.5
+ parent: 1
+ - uid: 25468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,65.5
+ parent: 1
+ - uid: 25469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,65.5
+ parent: 1
+ - uid: 25470
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,65.5
+ parent: 1
+ - uid: 25471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,65.5
+ parent: 1
+ - uid: 25472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,65.5
+ parent: 1
+ - uid: 25531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,40.5
+ parent: 1
+ - uid: 25853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,65.5
+ parent: 1
+ - uid: 26229
+ components:
+ - type: Transform
+ pos: 82.5,54.5
+ parent: 1
+ - uid: 26242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,118.5
+ parent: 1
+ - uid: 26244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,117.5
+ parent: 1
+ - uid: 26245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,116.5
+ parent: 1
+ - uid: 26246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,115.5
+ parent: 1
+ - uid: 26247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,114.5
+ parent: 1
+ - uid: 26248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,113.5
+ parent: 1
+ - uid: 26249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,112.5
+ parent: 1
+ - uid: 26250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,111.5
+ parent: 1
+ - uid: 26251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,110.5
+ parent: 1
+ - uid: 26252
+ components:
+ - type: Transform
+ pos: 99.5,109.5
+ parent: 1
+ - uid: 26253
+ components:
+ - type: Transform
+ pos: 99.5,108.5
+ parent: 1
+ - uid: 26254
+ components:
+ - type: Transform
+ pos: 99.5,107.5
+ parent: 1
+ - uid: 26255
+ components:
+ - type: Transform
+ pos: 99.5,106.5
+ parent: 1
+ - uid: 26256
+ components:
+ - type: Transform
+ pos: 99.5,105.5
+ parent: 1
+ - uid: 26257
+ components:
+ - type: Transform
+ pos: 99.5,104.5
+ parent: 1
+ - uid: 26258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,103.5
+ parent: 1
+ - uid: 26259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,103.5
+ parent: 1
+ - uid: 26260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,103.5
+ parent: 1
+ - uid: 26266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,110.5
+ parent: 1
+ - uid: 26269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,97.5
+ parent: 1
+ - uid: 26270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,98.5
+ parent: 1
+ - uid: 26278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,98.5
+ parent: 1
+ - uid: 26279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,98.5
+ parent: 1
+ - uid: 26280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,100.5
+ parent: 1
+ - uid: 26281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,101.5
+ parent: 1
+ - uid: 26282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,102.5
+ parent: 1
+ - uid: 26283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,103.5
+ parent: 1
+ - uid: 26284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,104.5
+ parent: 1
+ - uid: 26285
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,105.5
+ parent: 1
+ - uid: 26286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,107.5
+ parent: 1
+ - uid: 26287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,108.5
+ parent: 1
+ - uid: 26288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,109.5
+ parent: 1
+ - uid: 26289
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,110.5
+ parent: 1
+ - uid: 26290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,111.5
+ parent: 1
+ - uid: 26291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,112.5
+ parent: 1
+ - uid: 26293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,114.5
+ parent: 1
+ - uid: 26294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,115.5
+ parent: 1
+ - uid: 26295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,116.5
+ parent: 1
+ - uid: 26299
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,99.5
+ parent: 1
+ - uid: 26301
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,98.5
+ parent: 1
+ - uid: 26302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,98.5
+ parent: 1
+ - uid: 26306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,98.5
+ parent: 1
+ - uid: 26307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,98.5
+ parent: 1
+ - uid: 26308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,98.5
+ parent: 1
+ - uid: 26309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,98.5
+ parent: 1
+ - uid: 26311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,98.5
+ parent: 1
+ - uid: 26321
+ components:
+ - type: Transform
+ pos: 104.5,41.5
+ parent: 1
+ - uid: 26323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,103.5
+ parent: 1
+ - uid: 26324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,103.5
+ parent: 1
+ - uid: 26325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,103.5
+ parent: 1
+ - uid: 26326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,103.5
+ parent: 1
+ - uid: 26327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,104.5
+ parent: 1
+ - uid: 26328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,105.5
+ parent: 1
+ - uid: 26329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,106.5
+ parent: 1
+ - uid: 26330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,107.5
+ parent: 1
+ - uid: 26331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,108.5
+ parent: 1
+ - uid: 26332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,109.5
+ parent: 1
+ - uid: 26333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,110.5
+ parent: 1
+ - uid: 26334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,110.5
+ parent: 1
+ - uid: 26335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,110.5
+ parent: 1
+ - uid: 26336
+ components:
+ - type: Transform
+ pos: 112.5,111.5
+ parent: 1
+ - uid: 26337
+ components:
+ - type: Transform
+ pos: 112.5,112.5
+ parent: 1
+ - uid: 26338
+ components:
+ - type: Transform
+ pos: 112.5,113.5
+ parent: 1
+ - uid: 26339
+ components:
+ - type: Transform
+ pos: 112.5,114.5
+ parent: 1
+ - uid: 26340
+ components:
+ - type: Transform
+ pos: 112.5,115.5
+ parent: 1
+ - uid: 26341
+ components:
+ - type: Transform
+ pos: 112.5,116.5
+ parent: 1
+ - uid: 26342
+ components:
+ - type: Transform
+ pos: 112.5,118.5
+ parent: 1
+ - uid: 26343
+ components:
+ - type: Transform
+ pos: 112.5,117.5
+ parent: 1
+ - uid: 26356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,101.5
+ parent: 1
+ - uid: 26357
+ components:
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - uid: 26358
+ components:
+ - type: Transform
+ pos: 108.5,99.5
+ parent: 1
+ - uid: 26361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,106.5
+ parent: 1
+ - uid: 26362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,106.5
+ parent: 1
+ - uid: 26363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,106.5
+ parent: 1
+ - uid: 26364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,106.5
+ parent: 1
+ - uid: 26365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,106.5
+ parent: 1
+ - uid: 26367
+ components:
+ - type: Transform
+ pos: 113.5,99.5
+ parent: 1
+ - uid: 26368
+ components:
+ - type: Transform
+ pos: 113.5,100.5
+ parent: 1
+ - uid: 26369
+ components:
+ - type: Transform
+ pos: 113.5,101.5
+ parent: 1
+ - uid: 26370
+ components:
+ - type: Transform
+ pos: 113.5,102.5
+ parent: 1
+ - uid: 26371
+ components:
+ - type: Transform
+ pos: 113.5,103.5
+ parent: 1
+ - uid: 26372
+ components:
+ - type: Transform
+ pos: 113.5,104.5
+ parent: 1
+ - uid: 26373
+ components:
+ - type: Transform
+ pos: 113.5,105.5
+ parent: 1
+ - uid: 26374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,106.5
+ parent: 1
+ - uid: 26375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,106.5
+ parent: 1
+ - uid: 26376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,106.5
+ parent: 1
+ - uid: 26454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,114.5
+ parent: 1
+ - uid: 26486
+ components:
+ - type: Transform
+ pos: 82.5,58.5
+ parent: 1
+ - uid: 27111
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,70.5
+ parent: 1
+ - uid: 27122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,69.5
+ parent: 1
+ - uid: 27124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,65.5
+ parent: 1
+ - uid: 27125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,66.5
+ parent: 1
+ - uid: 27127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,63.5
+ parent: 1
+ - uid: 27128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,63.5
+ parent: 1
+ - uid: 27130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,73.5
+ parent: 1
+ - uid: 27131
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,74.5
+ parent: 1
+ - uid: 27132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,74.5
+ parent: 1
+ - uid: 27133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,74.5
+ parent: 1
+ - uid: 27134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,74.5
+ parent: 1
+ - uid: 27135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,74.5
+ parent: 1
+ - uid: 27136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,74.5
+ parent: 1
+ - uid: 27137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,74.5
+ parent: 1
+ - uid: 27138
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,74.5
+ parent: 1
+ - uid: 27139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,74.5
+ parent: 1
+ - uid: 27140
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,74.5
+ parent: 1
+ - uid: 27141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,74.5
+ parent: 1
+ - uid: 27142
+ components:
+ - type: Transform
+ pos: 74.5,73.5
+ parent: 1
+ - uid: 27143
+ components:
+ - type: Transform
+ pos: 74.5,72.5
+ parent: 1
+ - uid: 27144
+ components:
+ - type: Transform
+ pos: 74.5,71.5
+ parent: 1
+ - uid: 27145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,70.5
+ parent: 1
+ - uid: 27146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,70.5
+ parent: 1
+ - uid: 27147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,70.5
+ parent: 1
+ - uid: 27148
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,70.5
+ parent: 1
+ - uid: 27149
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,70.5
+ parent: 1
+ - uid: 27150
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,70.5
+ parent: 1
+ - uid: 27151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,70.5
+ parent: 1
+ - uid: 27152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,71.5
+ parent: 1
+ - uid: 27153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,71.5
+ parent: 1
+ - uid: 27154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,71.5
+ parent: 1
+ - uid: 27155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,71.5
+ parent: 1
+ - uid: 27156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,71.5
+ parent: 1
+ - uid: 27157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,71.5
+ parent: 1
+ - uid: 27277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,56.5
+ parent: 1
+ - uid: 27366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,44.5
+ parent: 1
+ - uid: 27367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,44.5
+ parent: 1
+ - uid: 27368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,44.5
+ parent: 1
+ - uid: 28293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,121.5
+ parent: 1
+ - uid: 28353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,123.5
+ parent: 1
+ - uid: 28520
+ components:
+ - type: Transform
+ pos: 125.5,112.5
+ parent: 1
+ - uid: 28544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,98.5
+ parent: 1
+ - uid: 28548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,98.5
+ parent: 1
+ - uid: 28598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,124.5
+ parent: 1
+ - uid: 28599
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,125.5
+ parent: 1
+ - uid: 28600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,126.5
+ parent: 1
+ - uid: 28613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,127.5
+ parent: 1
+ - uid: 28614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,64.5
+ parent: 1
+ - uid: 28622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,101.5
+ parent: 1
+ - uid: 28649
+ components:
+ - type: Transform
+ pos: 135.5,128.5
+ parent: 1
+ - uid: 28650
+ components:
+ - type: Transform
+ pos: 135.5,129.5
+ parent: 1
+ - uid: 28742
+ components:
+ - type: Transform
+ pos: 135.5,130.5
+ parent: 1
+ - uid: 28743
+ components:
+ - type: Transform
+ pos: 135.5,131.5
+ parent: 1
+ - uid: 28744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,127.5
+ parent: 1
+ - uid: 28794
+ components:
+ - type: Transform
+ pos: 106.5,118.5
+ parent: 1
+ - uid: 28809
+ components:
+ - type: Transform
+ pos: 67.5,26.5
+ parent: 1
+ - uid: 28810
+ components:
+ - type: Transform
+ pos: 67.5,27.5
+ parent: 1
+ - uid: 28811
+ components:
+ - type: Transform
+ pos: 67.5,28.5
+ parent: 1
+ - uid: 28812
+ components:
+ - type: Transform
+ pos: 67.5,29.5
+ parent: 1
+ - uid: 28813
+ components:
+ - type: Transform
+ pos: 67.5,30.5
+ parent: 1
+ - uid: 28814
+ components:
+ - type: Transform
+ pos: 67.5,31.5
+ parent: 1
+ - uid: 28815
+ components:
+ - type: Transform
+ pos: 67.5,32.5
+ parent: 1
+ - uid: 28816
+ components:
+ - type: Transform
+ pos: 67.5,33.5
+ parent: 1
+ - uid: 28817
+ components:
+ - type: Transform
+ pos: 67.5,34.5
+ parent: 1
+ - uid: 28818
+ components:
+ - type: Transform
+ pos: 67.5,35.5
+ parent: 1
+ - uid: 28819
+ components:
+ - type: Transform
+ pos: 67.5,36.5
+ parent: 1
+ - uid: 28820
+ components:
+ - type: Transform
+ pos: 67.5,37.5
+ parent: 1
+ - uid: 28821
+ components:
+ - type: Transform
+ pos: 67.5,38.5
+ parent: 1
+ - uid: 28822
+ components:
+ - type: Transform
+ pos: 67.5,39.5
+ parent: 1
+ - uid: 28823
+ components:
+ - type: Transform
+ pos: 67.5,40.5
+ parent: 1
+ - uid: 28824
+ components:
+ - type: Transform
+ pos: 68.5,42.5
+ parent: 1
+ - uid: 28825
+ components:
+ - type: Transform
+ pos: 68.5,43.5
+ parent: 1
+ - uid: 28826
+ components:
+ - type: Transform
+ pos: 68.5,44.5
+ parent: 1
+ - uid: 28827
+ components:
+ - type: Transform
+ pos: 68.5,45.5
+ parent: 1
+ - uid: 28828
+ components:
+ - type: Transform
+ pos: 68.5,46.5
+ parent: 1
+ - uid: 28829
+ components:
+ - type: Transform
+ pos: 68.5,47.5
+ parent: 1
+ - uid: 28830
+ components:
+ - type: Transform
+ pos: 68.5,48.5
+ parent: 1
+ - uid: 28831
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - uid: 28832
+ components:
+ - type: Transform
+ pos: 68.5,51.5
+ parent: 1
+ - uid: 28833
+ components:
+ - type: Transform
+ pos: 68.5,50.5
+ parent: 1
+ - uid: 28835
+ components:
+ - type: Transform
+ pos: 68.5,54.5
+ parent: 1
+ - uid: 28836
+ components:
+ - type: Transform
+ pos: 68.5,55.5
+ parent: 1
+ - uid: 28838
+ components:
+ - type: Transform
+ pos: 68.5,57.5
+ parent: 1
+ - uid: 28839
+ components:
+ - type: Transform
+ pos: 68.5,58.5
+ parent: 1
+ - uid: 28840
+ components:
+ - type: Transform
+ pos: 68.5,59.5
+ parent: 1
+ - uid: 28841
+ components:
+ - type: Transform
+ pos: 68.5,60.5
+ parent: 1
+ - uid: 28842
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 1
+ - uid: 28843
+ components:
+ - type: Transform
+ pos: 68.5,61.5
+ parent: 1
+ - uid: 28848
+ components:
+ - type: Transform
+ pos: 83.5,26.5
+ parent: 1
+ - uid: 28849
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 1
+ - uid: 28850
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 1
+ - uid: 28851
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 1
+ - uid: 28852
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 1
+ - uid: 28853
+ components:
+ - type: Transform
+ pos: 83.5,32.5
+ parent: 1
+ - uid: 28854
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 1
+ - uid: 28855
+ components:
+ - type: Transform
+ pos: 83.5,34.5
+ parent: 1
+ - uid: 28856
+ components:
+ - type: Transform
+ pos: 83.5,35.5
+ parent: 1
+ - uid: 28857
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 1
+ - uid: 28858
+ components:
+ - type: Transform
+ pos: 83.5,27.5
+ parent: 1
+ - uid: 28859
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 1
+ - uid: 28860
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 1
+ - uid: 28861
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 1
+ - uid: 28862
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 1
+ - uid: 28863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,41.5
+ parent: 1
+ - uid: 28864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,41.5
+ parent: 1
+ - uid: 28865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,41.5
+ parent: 1
+ - uid: 28866
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,41.5
+ parent: 1
+ - uid: 28867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,41.5
+ parent: 1
+ - uid: 28868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,41.5
+ parent: 1
+ - uid: 28869
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,41.5
+ parent: 1
+ - uid: 28870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,41.5
+ parent: 1
+ - uid: 28871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,41.5
+ parent: 1
+ - uid: 28872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,41.5
+ parent: 1
+ - uid: 28873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,41.5
+ parent: 1
+ - uid: 28874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,41.5
+ parent: 1
+ - uid: 28875
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,41.5
+ parent: 1
+ - uid: 28876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,41.5
+ parent: 1
+ - uid: 28889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,63.5
+ parent: 1
+ - uid: 28890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,63.5
+ parent: 1
+ - uid: 28911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,127.5
+ parent: 1
+ - uid: 28912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,127.5
+ parent: 1
+ - uid: 28913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,126.5
+ parent: 1
+ - uid: 28957
+ components:
+ - type: Transform
+ pos: 82.5,59.5
+ parent: 1
+ - uid: 28965
+ components:
+ - type: Transform
+ pos: 91.5,60.5
+ parent: 1
+ - uid: 28966
+ components:
+ - type: Transform
+ pos: 91.5,61.5
+ parent: 1
+ - uid: 28967
+ components:
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 1
+ - uid: 28968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,59.5
+ parent: 1
+ - uid: 28969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,59.5
+ parent: 1
+ - uid: 29299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,126.5
+ parent: 1
+ - uid: 29612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,119.5
+ parent: 1
+ - uid: 29613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,119.5
+ parent: 1
+ - uid: 29614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,119.5
+ parent: 1
+ - uid: 29615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,119.5
+ parent: 1
+ - uid: 29616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,120.5
+ parent: 1
+ - uid: 29617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,121.5
+ parent: 1
+ - uid: 29618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,122.5
+ parent: 1
+ - uid: 29619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,118.5
+ parent: 1
+ - uid: 29620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,117.5
+ parent: 1
+ - uid: 29621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,117.5
+ parent: 1
+ - uid: 29622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,117.5
+ parent: 1
+ - uid: 29623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,117.5
+ parent: 1
+ - uid: 29624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,117.5
+ parent: 1
+ - uid: 29625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,117.5
+ parent: 1
+ - uid: 29626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,117.5
+ parent: 1
+ - uid: 29627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,117.5
+ parent: 1
+ - uid: 29628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,117.5
+ parent: 1
+ - uid: 29629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,117.5
+ parent: 1
+ - uid: 29630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,117.5
+ parent: 1
+ - uid: 29631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,117.5
+ parent: 1
+ - uid: 29632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,117.5
+ parent: 1
+ - uid: 29633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,117.5
+ parent: 1
+ - uid: 29634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,117.5
+ parent: 1
+ - uid: 29635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,117.5
+ parent: 1
+ - uid: 29636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,125.5
+ parent: 1
+ - uid: 29637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,117.5
+ parent: 1
+ - uid: 29638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,117.5
+ parent: 1
+ - uid: 29639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,117.5
+ parent: 1
+ - uid: 29640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,117.5
+ parent: 1
+ - uid: 29641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,117.5
+ parent: 1
+ - uid: 29642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,117.5
+ parent: 1
+ - uid: 29643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,117.5
+ parent: 1
+ - uid: 29644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,117.5
+ parent: 1
+ - uid: 29707
+ components:
+ - type: Transform
+ pos: 82.5,62.5
+ parent: 1
+ - uid: 29708
+ components:
+ - type: Transform
+ pos: 82.5,53.5
+ parent: 1
+ - uid: 29709
+ components:
+ - type: Transform
+ pos: 82.5,55.5
+ parent: 1
+ - uid: 29711
+ components:
+ - type: Transform
+ pos: 82.5,63.5
+ parent: 1
+ - uid: 29712
+ components:
+ - type: Transform
+ pos: 82.5,64.5
+ parent: 1
+ - uid: 29720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,125.5
+ parent: 1
+ - uid: 29723
+ components:
+ - type: Transform
+ pos: 125.5,123.5
+ parent: 1
+ - uid: 29724
+ components:
+ - type: Transform
+ pos: 125.5,124.5
+ parent: 1
+ - uid: 29858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,141.5
+ parent: 1
+ - uid: 29939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,144.5
+ parent: 1
+ - uid: 29943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,144.5
+ parent: 1
+ - uid: 29949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,144.5
+ parent: 1
+ - uid: 30046
+ components:
+ - type: Transform
+ pos: 150.5,118.5
+ parent: 1
+ - uid: 30047
+ components:
+ - type: Transform
+ pos: 150.5,119.5
+ parent: 1
+ - uid: 30048
+ components:
+ - type: Transform
+ pos: 150.5,120.5
+ parent: 1
+ - uid: 30049
+ components:
+ - type: Transform
+ pos: 150.5,121.5
+ parent: 1
+ - uid: 30050
+ components:
+ - type: Transform
+ pos: 150.5,122.5
+ parent: 1
+ - uid: 30051
+ components:
+ - type: Transform
+ pos: 150.5,124.5
+ parent: 1
+ - uid: 30052
+ components:
+ - type: Transform
+ pos: 150.5,123.5
+ parent: 1
+ - uid: 30053
+ components:
+ - type: Transform
+ pos: 150.5,126.5
+ parent: 1
+ - uid: 30054
+ components:
+ - type: Transform
+ pos: 150.5,125.5
+ parent: 1
+ - uid: 30055
+ components:
+ - type: Transform
+ pos: 150.5,127.5
+ parent: 1
+ - uid: 30056
+ components:
+ - type: Transform
+ pos: 150.5,128.5
+ parent: 1
+ - uid: 30057
+ components:
+ - type: Transform
+ pos: 150.5,130.5
+ parent: 1
+ - uid: 30058
+ components:
+ - type: Transform
+ pos: 150.5,129.5
+ parent: 1
+ - uid: 30059
+ components:
+ - type: Transform
+ pos: 150.5,131.5
+ parent: 1
+ - uid: 30060
+ components:
+ - type: Transform
+ pos: 150.5,132.5
+ parent: 1
+ - uid: 30061
+ components:
+ - type: Transform
+ pos: 150.5,133.5
+ parent: 1
+ - uid: 30062
+ components:
+ - type: Transform
+ pos: 150.5,134.5
+ parent: 1
+ - uid: 30063
+ components:
+ - type: Transform
+ pos: 150.5,135.5
+ parent: 1
+ - uid: 30064
+ components:
+ - type: Transform
+ pos: 150.5,136.5
+ parent: 1
+ - uid: 30065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,137.5
+ parent: 1
+ - uid: 30066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,137.5
+ parent: 1
+ - uid: 30067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,137.5
+ parent: 1
+ - uid: 30068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,137.5
+ parent: 1
+ - uid: 30069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,137.5
+ parent: 1
+ - uid: 30070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,137.5
+ parent: 1
+ - uid: 30071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,137.5
+ parent: 1
+ - uid: 30072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,137.5
+ parent: 1
+ - uid: 30073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,137.5
+ parent: 1
+ - uid: 30080
+ components:
+ - type: Transform
+ pos: 146.5,146.5
+ parent: 1
+ - uid: 30081
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - uid: 30082
+ components:
+ - type: Transform
+ pos: 146.5,143.5
+ parent: 1
+ - uid: 30083
+ components:
+ - type: Transform
+ pos: 146.5,142.5
+ parent: 1
+ - uid: 30084
+ components:
+ - type: Transform
+ pos: 146.5,141.5
+ parent: 1
+ - uid: 30085
+ components:
+ - type: Transform
+ pos: 146.5,140.5
+ parent: 1
+ - uid: 30086
+ components:
+ - type: Transform
+ pos: 146.5,139.5
+ parent: 1
+ - uid: 30087
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - uid: 30088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,137.5
+ parent: 1
+ - uid: 30089
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,137.5
+ parent: 1
+ - uid: 30090
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,137.5
+ parent: 1
+ - uid: 30092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,144.5
+ parent: 1
+ - uid: 30095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,144.5
+ parent: 1
+ - uid: 30096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,144.5
+ parent: 1
+ - uid: 30243
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,107.5
+ parent: 1
+ - uid: 30244
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,107.5
+ parent: 1
+ - uid: 30286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,63.5
+ parent: 1
+ - uid: 30315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,65.5
+ parent: 1
+ - uid: 30400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,101.5
+ parent: 1
+ - uid: 30521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,108.5
+ parent: 1
+ - uid: 31891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,69.5
+ parent: 1
+ - uid: 31892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,69.5
+ parent: 1
+ - uid: 31893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,69.5
+ parent: 1
+ - uid: 31894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,69.5
+ parent: 1
+ - uid: 31895
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,69.5
+ parent: 1
+ - uid: 31896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,69.5
+ parent: 1
+ - uid: 31897
+ components:
+ - type: Transform
+ pos: 146.5,70.5
+ parent: 1
+ - uid: 31898
+ components:
+ - type: Transform
+ pos: 146.5,71.5
+ parent: 1
+ - uid: 31899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,47.5
+ parent: 1
+ - uid: 31901
+ components:
+ - type: Transform
+ pos: 123.5,49.5
+ parent: 1
+ - uid: 31902
+ components:
+ - type: Transform
+ pos: 123.5,50.5
+ parent: 1
+ - uid: 31903
+ components:
+ - type: Transform
+ pos: 123.5,51.5
+ parent: 1
+ - uid: 31904
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - uid: 31905
+ components:
+ - type: Transform
+ pos: 123.5,53.5
+ parent: 1
+ - uid: 31906
+ components:
+ - type: Transform
+ pos: 123.5,54.5
+ parent: 1
+ - uid: 31907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,55.5
+ parent: 1
+ - uid: 31908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,55.5
+ parent: 1
+ - uid: 31909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,55.5
+ parent: 1
+ - uid: 31910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,55.5
+ parent: 1
+ - uid: 31911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,55.5
+ parent: 1
+ - uid: 31912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,55.5
+ parent: 1
+ - uid: 31913
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,55.5
+ parent: 1
+ - uid: 31914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,56.5
+ parent: 1
+ - uid: 31915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,57.5
+ parent: 1
+ - uid: 31916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,58.5
+ parent: 1
+ - uid: 31917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,58.5
+ parent: 1
+ - uid: 31919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,48.5
+ parent: 1
+ - uid: 32247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,97.5
+ parent: 1
+ - uid: 32307
+ components:
+ - type: Transform
+ pos: 125.5,108.5
+ parent: 1
+ - uid: 33326
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - uid: 33327
+ components:
+ - type: Transform
+ pos: 83.5,23.5
+ parent: 1
+ - uid: 33328
+ components:
+ - type: Transform
+ pos: 83.5,22.5
+ parent: 1
+ - uid: 33329
+ components:
+ - type: Transform
+ pos: 83.5,21.5
+ parent: 1
+ - uid: 33330
+ components:
+ - type: Transform
+ pos: 83.5,20.5
+ parent: 1
+ - uid: 33331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,19.5
+ parent: 1
+ - uid: 33332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,19.5
+ parent: 1
+ - uid: 33333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,19.5
+ parent: 1
+ - uid: 33334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,19.5
+ parent: 1
+ - uid: 33335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,19.5
+ parent: 1
+ - uid: 33337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,19.5
+ parent: 1
+ - uid: 33338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,19.5
+ parent: 1
+ - uid: 33339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,19.5
+ parent: 1
+ - uid: 33340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,19.5
+ parent: 1
+ - uid: 33341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,19.5
+ parent: 1
+ - uid: 33354
+ components:
+ - type: Transform
+ pos: 116.5,41.5
+ parent: 1
+ - uid: 33355
+ components:
+ - type: Transform
+ pos: 116.5,40.5
+ parent: 1
+ - uid: 33356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,39.5
+ parent: 1
+ - uid: 33357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,39.5
+ parent: 1
+ - uid: 33358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,38.5
+ parent: 1
+ - uid: 33359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,37.5
+ parent: 1
+ - uid: 33360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,36.5
+ parent: 1
+ - uid: 33361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,35.5
+ parent: 1
+ - uid: 33362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,34.5
+ parent: 1
+ - uid: 33363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,33.5
+ parent: 1
+ - uid: 33364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,32.5
+ parent: 1
+ - uid: 33365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,31.5
+ parent: 1
+ - uid: 33366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,30.5
+ parent: 1
+ - uid: 33367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,30.5
+ parent: 1
+ - uid: 33368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,30.5
+ parent: 1
+ - uid: 33369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,30.5
+ parent: 1
+ - uid: 33370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,30.5
+ parent: 1
+ - uid: 33371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,30.5
+ parent: 1
+ - uid: 33372
+ components:
+ - type: Transform
+ pos: 112.5,29.5
+ parent: 1
+ - uid: 33373
+ components:
+ - type: Transform
+ pos: 112.5,28.5
+ parent: 1
+ - uid: 33374
+ components:
+ - type: Transform
+ pos: 112.5,26.5
+ parent: 1
+ - uid: 33375
+ components:
+ - type: Transform
+ pos: 112.5,25.5
+ parent: 1
+ - uid: 33376
+ components:
+ - type: Transform
+ pos: 112.5,24.5
+ parent: 1
+ - uid: 33377
+ components:
+ - type: Transform
+ pos: 112.5,27.5
+ parent: 1
+ - uid: 33378
+ components:
+ - type: Transform
+ pos: 109.5,20.5
+ parent: 1
+ - uid: 33379
+ components:
+ - type: Transform
+ pos: 109.5,21.5
+ parent: 1
+ - uid: 33380
+ components:
+ - type: Transform
+ pos: 109.5,22.5
+ parent: 1
+ - uid: 33381
+ components:
+ - type: Transform
+ pos: 105.5,20.5
+ parent: 1
+ - uid: 33382
+ components:
+ - type: Transform
+ pos: 105.5,21.5
+ parent: 1
+ - uid: 33383
+ components:
+ - type: Transform
+ pos: 105.5,22.5
+ parent: 1
+ - uid: 33384
+ components:
+ - type: Transform
+ pos: 105.5,23.5
+ parent: 1
+ - uid: 33385
+ components:
+ - type: Transform
+ pos: 105.5,24.5
+ parent: 1
+ - uid: 33386
+ components:
+ - type: Transform
+ pos: 105.5,25.5
+ parent: 1
+ - uid: 33387
+ components:
+ - type: Transform
+ pos: 105.5,26.5
+ parent: 1
+ - uid: 33388
+ components:
+ - type: Transform
+ pos: 105.5,27.5
+ parent: 1
+ - uid: 33389
+ components:
+ - type: Transform
+ pos: 105.5,28.5
+ parent: 1
+ - uid: 33390
+ components:
+ - type: Transform
+ pos: 105.5,29.5
+ parent: 1
+ - uid: 33391
+ components:
+ - type: Transform
+ pos: 105.5,30.5
+ parent: 1
+ - uid: 33392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,31.5
+ parent: 1
+ - uid: 33393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,31.5
+ parent: 1
+ - uid: 33394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,31.5
+ parent: 1
+ - uid: 33395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,31.5
+ parent: 1
+ - uid: 33396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,31.5
+ parent: 1
+ - uid: 33397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,31.5
+ parent: 1
+ - uid: 33398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,31.5
+ parent: 1
+ - uid: 33399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,31.5
+ parent: 1
+ - uid: 33400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,31.5
+ parent: 1
+ - uid: 33401
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,30.5
+ parent: 1
+ - uid: 33402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,29.5
+ parent: 1
+ - uid: 33403
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,28.5
+ parent: 1
+ - uid: 33405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,26.5
+ parent: 1
+ - uid: 33406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,25.5
+ parent: 1
+ - uid: 33407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,24.5
+ parent: 1
+ - uid: 33408
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,23.5
+ parent: 1
+ - uid: 33409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,21.5
+ parent: 1
+ - uid: 33410
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,20.5
+ parent: 1
+ - uid: 33411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,22.5
+ parent: 1
+ - uid: 33412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,19.5
+ parent: 1
+ - uid: 33413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,19.5
+ parent: 1
+ - uid: 33414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,19.5
+ parent: 1
+ - uid: 33415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,23.5
+ parent: 1
+ - uid: 33416
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,23.5
+ parent: 1
+ - uid: 33467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,27.5
+ parent: 1
+ - uid: 33468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,27.5
+ parent: 1
+ - uid: 33469
+ components:
+ - type: Transform
+ pos: 89.5,26.5
+ parent: 1
+ - uid: 33470
+ components:
+ - type: Transform
+ pos: 89.5,24.5
+ parent: 1
+ - uid: 33471
+ components:
+ - type: Transform
+ pos: 89.5,23.5
+ parent: 1
+ - uid: 33472
+ components:
+ - type: Transform
+ pos: 89.5,22.5
+ parent: 1
+ - uid: 33473
+ components:
+ - type: Transform
+ pos: 89.5,21.5
+ parent: 1
+ - uid: 33474
+ components:
+ - type: Transform
+ pos: 89.5,25.5
+ parent: 1
+ - uid: 33475
+ components:
+ - type: Transform
+ pos: 89.5,20.5
+ parent: 1
+ - uid: 33484
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,26.5
+ parent: 1
+ - uid: 33485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,27.5
+ parent: 1
+ - uid: 33490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,27.5
+ parent: 1
+ - uid: 33792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,95.5
+ parent: 1
+ - uid: 34387
+ components:
+ - type: Transform
+ pos: 144.5,82.5
+ parent: 1
+ - uid: 34390
+ components:
+ - type: Transform
+ pos: 140.5,82.5
+ parent: 1
+ - uid: 34393
+ components:
+ - type: Transform
+ pos: 144.5,81.5
+ parent: 1
+ - uid: 34394
+ components:
+ - type: Transform
+ pos: 140.5,81.5
+ parent: 1
+ - uid: 34396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,80.5
+ parent: 1
+ - uid: 35652
+ components:
+ - type: Transform
+ pos: 82.5,56.5
+ parent: 1
+ - uid: 36165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,92.5
+ parent: 1
+ - uid: 36176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,93.5
+ parent: 1
+ - uid: 36177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,94.5
+ parent: 1
+ - uid: 36192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,95.5
+ parent: 1
+ - uid: 36193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,91.5
+ parent: 1
+ - uid: 36657
+ components:
+ - type: Transform
+ pos: 100.5,102.5
+ parent: 1
+ - uid: 36658
+ components:
+ - type: Transform
+ pos: 100.5,101.5
+ parent: 1
+ - uid: 36659
+ components:
+ - type: Transform
+ pos: 100.5,100.5
+ parent: 1
+ - uid: 36660
+ components:
+ - type: Transform
+ pos: 100.5,99.5
+ parent: 1
+ - uid: 37220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,77.5
+ parent: 1
+ - uid: 37360
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,65.5
+ parent: 1
+ - uid: 37371
+ components:
+ - type: Transform
+ pos: 126.5,133.5
+ parent: 1
+ - uid: 37373
+ components:
+ - type: Transform
+ pos: 126.5,134.5
+ parent: 1
+ - uid: 37426
+ components:
+ - type: Transform
+ pos: 126.5,135.5
+ parent: 1
+ - uid: 37490
+ components:
+ - type: Transform
+ pos: 126.5,136.5
+ parent: 1
+ - uid: 37539
+ components:
+ - type: Transform
+ pos: 126.5,137.5
+ parent: 1
+ - uid: 37540
+ components:
+ - type: Transform
+ pos: 126.5,138.5
+ parent: 1
+ - uid: 37541
+ components:
+ - type: Transform
+ pos: 126.5,139.5
+ parent: 1
+ - uid: 37542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,132.5
+ parent: 1
+ - uid: 37543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,132.5
+ parent: 1
+ - uid: 37544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,132.5
+ parent: 1
+ - uid: 37545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,132.5
+ parent: 1
+ - uid: 37546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,132.5
+ parent: 1
+ - uid: 37547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,132.5
+ parent: 1
+ - uid: 37548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,132.5
+ parent: 1
+ - uid: 37549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,132.5
+ parent: 1
+ - uid: 37594
+ components:
+ - type: Transform
+ pos: 94.5,51.5
+ parent: 1
+ - uid: 37595
+ components:
+ - type: Transform
+ pos: 94.5,52.5
+ parent: 1
+- proto: DisposalPipeBroken
+ entities:
+ - uid: 33534
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,27.5
+ parent: 1
+ - uid: 34395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,80.5
+ parent: 1
+ - uid: 34398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,80.5
+ parent: 1
+- proto: DisposalRouter
+ entities:
+ - uid: 11374
+ components:
+ - type: Transform
+ pos: 55.5,65.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Bridge
+ - uid: 16309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,114.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Atmos
+ - uid: 16362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,119.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Engineering
+ - uid: 18766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,110.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Salvage
+ - uid: 18788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,98.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Cargo
+ - uid: 20510
+ components:
+ - type: Transform
+ pos: 55.5,87.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Science
+ - uid: 20526
+ components:
+ - type: Transform
+ pos: 55.5,97.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Xenobio
+ - uid: 22317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,79.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Security
+ - uid: 22391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,60.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Warden
+- proto: DisposalRouterFlipped
+ entities:
+ - uid: 1686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,114.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Medbay
+ - uid: 1807
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,114.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Chemistry
+ - uid: 4153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,119.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Kitchen
+ - uid: 4155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,119.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Botany
+ - uid: 22186
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,114.5
+ parent: 1
+ - type: DisposalRouter
+ tags:
+ - Arcade
+- proto: DisposalTrunk
+ entities:
+ - uid: 842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,70.5
+ parent: 1
+ - uid: 4477
+ components:
+ - type: Transform
+ pos: 104.5,42.5
+ parent: 1
+ - uid: 5400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,53.5
+ parent: 1
+ - uid: 6227
+ components:
+ - type: Transform
+ pos: 146.5,72.5
+ parent: 1
+ - uid: 8182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,141.5
+ parent: 1
+ - uid: 10308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,143.5
+ parent: 1
+ - uid: 11434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,48.5
+ parent: 1
+ - uid: 11435
+ components:
+ - type: Transform
+ pos: 38.5,64.5
+ parent: 1
+ - uid: 11492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,76.5
+ parent: 1
+ - uid: 11498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,54.5
+ parent: 1
+ - uid: 12066
+ components:
+ - type: Transform
+ pos: 152.5,112.5
+ parent: 1
+ - uid: 12683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,56.5
+ parent: 1
+ - uid: 12703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,39.5
+ parent: 1
+ - uid: 12708
+ components:
+ - type: Transform
+ pos: 101.5,48.5
+ parent: 1
+ - uid: 13222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,42.5
+ parent: 1
+ - uid: 13515
+ components:
+ - type: Transform
+ pos: 51.5,61.5
+ parent: 1
+ - uid: 15074
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,96.5
+ parent: 1
+ - uid: 15408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,112.5
+ parent: 1
+ - uid: 16038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,105.5
+ parent: 1
+ - uid: 16051
+ components:
+ - type: Transform
+ pos: 94.5,53.5
+ parent: 1
+ - uid: 16308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,116.5
+ parent: 1
+ - uid: 16343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,116.5
+ parent: 1
+ - uid: 16365
+ components:
+ - type: Transform
+ pos: 120.5,125.5
+ parent: 1
+ - uid: 16370
+ components:
+ - type: Transform
+ pos: 94.5,156.5
+ parent: 1
+ - uid: 16371
+ components:
+ - type: Transform
+ pos: 122.5,156.5
+ parent: 1
+ - uid: 16460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,141.5
+ parent: 1
+ - uid: 16477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,141.5
+ parent: 1
+ - uid: 16655
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,87.5
+ parent: 1
+ - uid: 17794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,90.5
+ parent: 1
+ - uid: 17840
+ components:
+ - type: Transform
+ pos: 77.5,97.5
+ parent: 1
+ - uid: 17856
+ components:
+ - type: Transform
+ pos: 89.5,110.5
+ parent: 1
+ - uid: 17862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,85.5
+ parent: 1
+ - uid: 17893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,104.5
+ parent: 1
+ - uid: 17894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,84.5
+ parent: 1
+ - uid: 17918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,90.5
+ parent: 1
+ - uid: 17937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,84.5
+ parent: 1
+ - uid: 18137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,77.5
+ parent: 1
+ - uid: 18687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,107.5
+ parent: 1
+ - uid: 18720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,96.5
+ parent: 1
+ - uid: 20525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,90.5
+ parent: 1
+ - uid: 20555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,110.5
+ parent: 1
+ - uid: 20644
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,90.5
+ parent: 1
+ - uid: 20671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,82.5
+ parent: 1
+ - uid: 20672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,90.5
+ parent: 1
+ - uid: 20686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,80.5
+ parent: 1
+ - uid: 20688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,95.5
+ parent: 1
+ - uid: 20691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,110.5
+ parent: 1
+ - uid: 20692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,99.5
+ parent: 1
+ - uid: 20693
+ components:
+ - type: Transform
+ pos: 31.5,117.5
+ parent: 1
+ - uid: 22280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,51.5
+ parent: 1
+ - uid: 22395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,70.5
+ parent: 1
+ - uid: 22479
+ components:
+ - type: Transform
+ pos: 128.5,74.5
+ parent: 1
+ - uid: 22494
+ components:
+ - type: Transform
+ pos: 135.5,69.5
+ parent: 1
+ - uid: 22499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,48.5
+ parent: 1
+ - uid: 22540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,55.5
+ parent: 1
+ - uid: 22541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,49.5
+ parent: 1
+ - uid: 22544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,52.5
+ parent: 1
+ - uid: 23151
+ components:
+ - type: Transform
+ pos: 99.5,48.5
+ parent: 1
+ - uid: 23267
+ components:
+ - type: Transform
+ pos: 115.5,99.5
+ parent: 1
+ - uid: 23286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,95.5
+ parent: 1
+ - uid: 25156
+ components:
+ - type: Transform
+ pos: 153.5,112.5
+ parent: 1
+ - uid: 25898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,62.5
+ parent: 1
+ - uid: 26261
+ components:
+ - type: Transform
+ pos: 95.5,104.5
+ parent: 1
+ - uid: 26267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,104.5
+ parent: 1
+ - uid: 26359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,101.5
+ parent: 1
+ - uid: 26366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,106.5
+ parent: 1
+ - uid: 26379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,106.5
+ parent: 1
+ - uid: 26562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,103.5
+ parent: 1
+ - uid: 27129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,71.5
+ parent: 1
+ - uid: 27164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,72.5
+ parent: 1
+ - uid: 27369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,44.5
+ parent: 1
+ - uid: 28793
+ components:
+ - type: Transform
+ pos: 106.5,119.5
+ parent: 1
+ - uid: 28846
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,25.5
+ parent: 1
+ - uid: 28877
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,25.5
+ parent: 1
+ - uid: 28886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,63.5
+ parent: 1
+ - uid: 28888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,58.5
+ parent: 1
+ - uid: 29094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,64.5
+ parent: 1
+ - uid: 29610
+ components:
+ - type: Transform
+ pos: 155.5,123.5
+ parent: 1
+ - uid: 29611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,119.5
+ parent: 1
+ - uid: 30075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,137.5
+ parent: 1
+ - uid: 30225
+ components:
+ - type: Transform
+ pos: 147.5,154.5
+ parent: 1
+ - uid: 30245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,107.5
+ parent: 1
+ - uid: 30362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,96.5
+ parent: 1
+ - uid: 30522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,96.5
+ parent: 1
+ - uid: 31922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,46.5
+ parent: 1
+ - uid: 33418
+ components:
+ - type: Transform
+ pos: 116.5,42.5
+ parent: 1
+ - uid: 33463
+ components:
+ - type: Transform
+ pos: 92.5,28.5
+ parent: 1
+ - uid: 33488
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,25.5
+ parent: 1
+ - uid: 33827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,101.5
+ parent: 1
+ - uid: 34317
+ components:
+ - type: Transform
+ pos: 155.5,82.5
+ parent: 1
+ - uid: 34388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,83.5
+ parent: 1
+ - uid: 34391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,83.5
+ parent: 1
+ - uid: 34443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,101.5
+ parent: 1
+ - uid: 36162
+ components:
+ - type: Transform
+ pos: 131.5,92.5
+ parent: 1
+ - uid: 37352
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,140.5
+ parent: 1
+- proto: DisposalUnit
+ entities:
+ - uid: 589
+ components:
+ - type: Transform
+ pos: 40.5,90.5
+ parent: 1
+ - uid: 1193
+ components:
+ - type: Transform
+ pos: 51.5,61.5
+ parent: 1
+ - uid: 1258
+ components:
+ - type: Transform
+ pos: 131.5,105.5
+ parent: 1
+ - uid: 2724
+ components:
+ - type: Transform
+ pos: 99.5,48.5
+ parent: 1
+ - uid: 3528
+ components:
+ - type: Transform
+ pos: 90.5,71.5
+ parent: 1
+ - uid: 4300
+ components:
+ - type: Transform
+ pos: 43.5,44.5
+ parent: 1
+ - uid: 4432
+ components:
+ - type: Transform
+ pos: 101.5,48.5
+ parent: 1
+ - uid: 4468
+ components:
+ - type: Transform
+ pos: 104.5,42.5
+ parent: 1
+ - uid: 4476
+ components:
+ - type: Transform
+ pos: 98.5,39.5
+ parent: 1
+ - uid: 10327
+ components:
+ - type: Transform
+ pos: 142.5,143.5
+ parent: 1
+ - uid: 10329
+ components:
+ - type: Transform
+ pos: 142.5,141.5
+ parent: 1
+ - uid: 11433
+ components:
+ - type: Transform
+ pos: 35.5,48.5
+ parent: 1
+ - uid: 11450
+ components:
+ - type: Transform
+ pos: 38.5,64.5
+ parent: 1
+ - uid: 11494
+ components:
+ - type: Transform
+ pos: 42.5,76.5
+ parent: 1
+ - uid: 11497
+ components:
+ - type: Transform
+ pos: 55.5,54.5
+ parent: 1
+ - uid: 13221
+ components:
+ - type: Transform
+ pos: 46.5,42.5
+ parent: 1
+ - uid: 13604
+ components:
+ - type: Transform
+ pos: 40.5,70.5
+ parent: 1
+ - uid: 13717
+ components:
+ - type: Transform
+ pos: 106.5,96.5
+ parent: 1
+ - uid: 14063
+ components:
+ - type: Transform
+ pos: 73.5,112.5
+ parent: 1
+ - uid: 16029
+ components:
+ - type: Transform
+ pos: 153.5,112.5
+ parent: 1
+ - uid: 16342
+ components:
+ - type: Transform
+ pos: 68.5,116.5
+ parent: 1
+ - uid: 16366
+ components:
+ - type: Transform
+ pos: 123.5,141.5
+ parent: 1
+ - uid: 16367
+ components:
+ - type: Transform
+ pos: 93.5,141.5
+ parent: 1
+ - uid: 16368
+ components:
+ - type: Transform
+ pos: 94.5,156.5
+ parent: 1
+ - uid: 16369
+ components:
+ - type: Transform
+ pos: 122.5,156.5
+ parent: 1
+ - uid: 17233
+ components:
+ - type: Transform
+ pos: 59.5,87.5
+ parent: 1
+ - uid: 17632
+ components:
+ - type: Transform
+ pos: 69.5,104.5
+ parent: 1
+ - uid: 17711
+ components:
+ - type: Transform
+ pos: 84.5,84.5
+ parent: 1
+ - uid: 17791
+ components:
+ - type: Transform
+ pos: 84.5,90.5
+ parent: 1
+ - uid: 17839
+ components:
+ - type: Transform
+ pos: 77.5,97.5
+ parent: 1
+ - uid: 17919
+ components:
+ - type: Transform
+ pos: 65.5,90.5
+ parent: 1
+ - uid: 17925
+ components:
+ - type: Transform
+ pos: 65.5,84.5
+ parent: 1
+ - uid: 18690
+ components:
+ - type: Transform
+ pos: 138.5,107.5
+ parent: 1
+ - uid: 18692
+ components:
+ - type: Transform
+ pos: 156.5,96.5
+ parent: 1
+ - uid: 19269
+ components:
+ - type: Transform
+ pos: 152.5,96.5
+ parent: 1
+ - uid: 19458
+ components:
+ - type: Transform
+ pos: 94.5,53.5
+ parent: 1
+ - uid: 19701
+ components:
+ - type: Transform
+ pos: 48.5,110.5
+ parent: 1
+ - uid: 20328
+ components:
+ - type: Transform
+ pos: 117.5,64.5
+ parent: 1
+ - uid: 20507
+ components:
+ - type: Transform
+ pos: 24.5,99.5
+ parent: 1
+ - uid: 20509
+ components:
+ - type: Transform
+ pos: 31.5,117.5
+ parent: 1
+ - uid: 20643
+ components:
+ - type: Transform
+ pos: 63.5,90.5
+ parent: 1
+ - uid: 20654
+ components:
+ - type: Transform
+ pos: 42.5,82.5
+ parent: 1
+ - uid: 20683
+ components:
+ - type: Transform
+ pos: 46.5,80.5
+ parent: 1
+ - uid: 20689
+ components:
+ - type: Transform
+ pos: 46.5,95.5
+ parent: 1
+ - uid: 22480
+ components:
+ - type: Transform
+ pos: 128.5,74.5
+ parent: 1
+ - uid: 22495
+ components:
+ - type: Transform
+ pos: 135.5,69.5
+ parent: 1
+ - uid: 22497
+ components:
+ - type: Transform
+ pos: 146.5,72.5
+ parent: 1
+ - uid: 22500
+ components:
+ - type: Transform
+ pos: 151.5,55.5
+ parent: 1
+ - uid: 22501
+ components:
+ - type: Transform
+ pos: 138.5,49.5
+ parent: 1
+ - uid: 22545
+ components:
+ - type: Transform
+ pos: 138.5,52.5
+ parent: 1
+ - uid: 22703
+ components:
+ - type: Transform
+ pos: 144.5,48.5
+ parent: 1
+ - uid: 23222
+ components:
+ - type: Transform
+ pos: 126.5,101.5
+ parent: 1
+ - uid: 23403
+ components:
+ - type: Transform
+ pos: 144.5,96.5
+ parent: 1
+ - uid: 26268
+ components:
+ - type: Transform
+ pos: 96.5,104.5
+ parent: 1
+ - uid: 26355
+ components:
+ - type: Transform
+ pos: 106.5,101.5
+ parent: 1
+ - uid: 26377
+ components:
+ - type: Transform
+ pos: 118.5,106.5
+ parent: 1
+ - uid: 26378
+ components:
+ - type: Transform
+ pos: 98.5,106.5
+ parent: 1
+ - uid: 27064
+ components:
+ - type: Transform
+ pos: 61.5,72.5
+ parent: 1
+ - uid: 27280
+ components:
+ - type: Transform
+ pos: 63.5,56.5
+ parent: 1
+ - uid: 28626
+ components:
+ - type: Transform
+ pos: 54.5,77.5
+ parent: 1
+ - uid: 28792
+ components:
+ - type: Transform
+ pos: 106.5,119.5
+ parent: 1
+ - uid: 28878
+ components:
+ - type: Transform
+ pos: 68.5,25.5
+ parent: 1
+ - uid: 28884
+ components:
+ - type: Transform
+ pos: 82.5,25.5
+ parent: 1
+ - uid: 28891
+ components:
+ - type: Transform
+ pos: 94.5,63.5
+ parent: 1
+ - uid: 29031
+ components:
+ - type: Transform
+ pos: 94.5,58.5
+ parent: 1
+ - uid: 29565
+ components:
+ - type: Transform
+ pos: 155.5,123.5
+ parent: 1
+ - uid: 29608
+ components:
+ - type: Transform
+ pos: 160.5,119.5
+ parent: 1
+ - uid: 30076
+ components:
+ - type: Transform
+ pos: 160.5,137.5
+ parent: 1
+ - uid: 30226
+ components:
+ - type: Transform
+ pos: 147.5,154.5
+ parent: 1
+ - uid: 30246
+ components:
+ - type: Transform
+ pos: 54.5,107.5
+ parent: 1
+ - uid: 31923
+ components:
+ - type: Transform
+ pos: 122.5,46.5
+ parent: 1
+ - uid: 32976
+ components:
+ - type: Transform
+ pos: 131.5,92.5
+ parent: 1
+ - uid: 33353
+ components:
+ - type: Transform
+ pos: 116.5,42.5
+ parent: 1
+ - uid: 33462
+ components:
+ - type: Transform
+ pos: 92.5,28.5
+ parent: 1
+ - uid: 34131
+ components:
+ - type: Transform
+ pos: 115.5,99.5
+ parent: 1
+ - uid: 36180
+ components:
+ - type: Transform
+ pos: 125.5,140.5
+ parent: 1
+- proto: DisposalYJunction
+ entities:
+ - uid: 6372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,57.5
+ parent: 1
+ - uid: 20682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,83.5
+ parent: 1
+ - uid: 20687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,96.5
+ parent: 1
+ - uid: 25538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,40.5
+ parent: 1
+ - uid: 26298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,98.5
+ parent: 1
+ - uid: 27126
+ components:
+ - type: Transform
+ pos: 89.5,71.5
+ parent: 1
+ - uid: 28879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,41.5
+ parent: 1
+ - uid: 30074
+ components:
+ - type: Transform
+ pos: 150.5,137.5
+ parent: 1
+- proto: DogBed
+ entities:
+ - uid: 13534
+ components:
+ - type: Transform
+ pos: 55.5,56.5
+ parent: 1
+ - uid: 13577
+ components:
+ - type: Transform
+ pos: 37.5,70.5
+ parent: 1
+ - uid: 19444
+ components:
+ - type: Transform
+ pos: 144.5,102.5
+ parent: 1
+ - uid: 20883
+ components:
+ - type: Transform
+ pos: 40.5,108.5
+ parent: 1
+ - uid: 22968
+ components:
+ - type: Transform
+ pos: 130.5,70.5
+ parent: 1
+ - uid: 23681
+ components:
+ - type: Transform
+ pos: 88.5,94.5
+ parent: 1
+- proto: DonkpocketBoxSpawner
+ entities:
+ - uid: 13719
+ components:
+ - type: Transform
+ pos: 50.5,49.5
+ parent: 1
+ - uid: 22852
+ components:
+ - type: Transform
+ pos: 150.5,52.5
+ parent: 1
+- proto: DoubleEmergencyOxygenTankFilled
+ entities:
+ - uid: 19472
+ components:
+ - type: Transform
+ pos: 155.5,89.5
+ parent: 1
+- proto: DresserCaptainFilled
+ entities:
+ - uid: 1279
+ components:
+ - type: Transform
+ pos: 40.5,68.5
+ parent: 1
+- proto: DresserChiefEngineerFilled
+ entities:
+ - uid: 16148
+ components:
+ - type: Transform
+ pos: 132.5,146.5
+ parent: 1
+- proto: DresserChiefMedicalOfficerFilled
+ entities:
+ - uid: 3171
+ components:
+ - type: Transform
+ pos: 93.5,92.5
+ parent: 1
+- proto: DresserFilled
+ entities:
+ - uid: 26759
+ components:
+ - type: Transform
+ pos: 114.5,59.5
+ parent: 1
+ - uid: 26761
+ components:
+ - type: Transform
+ pos: 108.5,58.5
+ parent: 1
+ - uid: 26762
+ components:
+ - type: Transform
+ pos: 102.5,59.5
+ parent: 1
+ - uid: 26933
+ components:
+ - type: Transform
+ pos: 69.5,70.5
+ parent: 1
+ - uid: 27306
+ components:
+ - type: Transform
+ pos: 77.5,47.5
+ parent: 1
+ - uid: 29794
+ components:
+ - type: Transform
+ pos: 153.5,133.5
+ parent: 1
+ - uid: 29795
+ components:
+ - type: Transform
+ pos: 156.5,133.5
+ parent: 1
+ - uid: 29796
+ components:
+ - type: Transform
+ pos: 159.5,133.5
+ parent: 1
+ - uid: 29797
+ components:
+ - type: Transform
+ pos: 158.5,143.5
+ parent: 1
+ - uid: 29798
+ components:
+ - type: Transform
+ pos: 152.5,143.5
+ parent: 1
+ - uid: 29799
+ components:
+ - type: Transform
+ pos: 155.5,143.5
+ parent: 1
+- proto: DresserHeadOfPersonnelFilled
+ entities:
+ - uid: 13660
+ components:
+ - type: Transform
+ pos: 58.5,49.5
+ parent: 1
+- proto: DresserHeadOfSecurityFilled
+ entities:
+ - uid: 22936
+ components:
+ - type: Transform
+ pos: 145.5,60.5
+ parent: 1
+- proto: DresserQuarterMasterFilled
+ entities:
+ - uid: 19378
+ components:
+ - type: Transform
+ pos: 142.5,110.5
+ parent: 1
+- proto: DresserResearchDirectorFilled
+ entities:
+ - uid: 20406
+ components:
+ - type: Transform
+ pos: 33.5,105.5
+ parent: 1
+- proto: DrinkBeepskySmashGlass
+ entities:
+ - uid: 23128
+ components:
+ - type: Transform
+ pos: 147.4688,51.692593
+ parent: 1
+- proto: DrinkBeerBottleFull
+ entities:
+ - uid: 13697
+ components:
+ - type: Transform
+ pos: 46.669025,65.20469
+ parent: 1
+ - uid: 13698
+ components:
+ - type: Transform
+ pos: 46.377357,64.881775
+ parent: 1
+ - uid: 16152
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 129.7259,135.31372
+ parent: 1
+ - uid: 19475
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 35151
+ components:
+ - type: Transform
+ pos: 107.40368,170.63882
+ parent: 1
+ - uid: 35152
+ components:
+ - type: Transform
+ pos: 107.64014,170.76112
+ parent: 1
+- proto: DrinkBeerGrowler
+ entities:
+ - uid: 35144
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 106.34629,171.48898
+ parent: 1
+- proto: DrinkBottleOfNothingFull
+ entities:
+ - uid: 26778
+ components:
+ - type: Transform
+ pos: 98.30359,59.92186
+ parent: 1
+- proto: DrinkChampagneBottleFull
+ entities:
+ - uid: 35792
+ components:
+ - type: Transform
+ pos: 55.680527,123.92868
+ parent: 1
+- proto: DrinkDrGibbCan
+ entities:
+ - uid: 33505
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 101.01259,27.87312
+ parent: 1
+- proto: DrinkEnergyDrinkCan
+ entities:
+ - uid: 26888
+ components:
+ - type: Transform
+ pos: 114.50276,82.58419
+ parent: 1
+- proto: DrinkFlask
+ entities:
+ - uid: 13528
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 35.670593,76.30603
+ parent: 1
+- proto: DrinkFlaskBar
+ entities:
+ - uid: 35138
+ components:
+ - type: Transform
+ pos: 110.5,171.5
+ parent: 1
+- proto: DrinkGildlagerBottleFull
+ entities:
+ - uid: 26869
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 105.44265,72.66436
+ parent: 1
+- proto: DrinkGlass
+ entities:
+ - uid: 3026
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 106.57773,106.73536
+ parent: 1
+ - uid: 5901
+ components:
+ - type: Transform
+ pos: 106.24439,106.54091
+ parent: 1
+ - uid: 23034
+ components:
+ - type: Transform
+ pos: 128.33939,50.610058
+ parent: 1
+ - uid: 23036
+ components:
+ - type: Transform
+ pos: 128.62064,50.839226
+ parent: 1
+ - uid: 32103
+ components:
+ - type: Transform
+ pos: 110.45967,106.54091
+ parent: 1
+ - uid: 32104
+ components:
+ - type: Transform
+ pos: 110.74439,106.73536
+ parent: 1
+- proto: DrinkGrapeCan
+ entities:
+ - uid: 30658
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 59.272648,132.84619
+ parent: 1
+ - uid: 32235
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 59.765915,132.5168
+ parent: 1
+ - uid: 32237
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 59.290768,134.15079
+ parent: 1
+ - uid: 32989
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 59.80215,133.1075
+ parent: 1
+ - uid: 32992
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 59.28756,134.73462
+ parent: 1
+ - uid: 33492
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 100.688515,25.623123
+ parent: 1
+ - uid: 34408
+ components:
+ - type: Transform
+ pos: 59.740353,134.32512
+ parent: 1
+- proto: DrinkHotCoffee
+ entities:
+ - uid: 10309
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 139.78354,142.58481
+ parent: 1
+ - uid: 10313
+ components:
+ - type: Transform
+ pos: 142.79439,138.6644
+ parent: 1
+ - uid: 10314
+ components:
+ - type: Transform
+ pos: 142.53397,138.74773
+ parent: 1
+ - uid: 18145
+ components:
+ - type: Transform
+ pos: 60.463547,110.73983
+ parent: 1
+ - uid: 18146
+ components:
+ - type: Transform
+ pos: 60.8316,110.50372
+ parent: 1
+ - uid: 30113
+ components:
+ - type: Transform
+ pos: 142.53523,145.54161
+ parent: 1
+ - uid: 30129
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 139.34784,142.48033
+ parent: 1
+- proto: DrinkIcedCoffeeGlass
+ entities:
+ - uid: 13634
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 136.4754,92.59015
+ parent: 1
+- proto: DrinkIcedTeaCan
+ entities:
+ - uid: 33507
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 99.30888,26.488861
+ parent: 1
+ - uid: 33508
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 99.11452,25.840393
+ parent: 1
+- proto: DrinkLean
+ entities:
+ - uid: 34407
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 59.28352,133.45863
+ parent: 1
+- proto: DrinkMug
+ entities:
+ - uid: 13653
+ components:
+ - type: Transform
+ pos: 50.72685,50.354713
+ parent: 1
+- proto: DrinkMugHeart
+ entities:
+ - uid: 503
+ components:
+ - type: Transform
+ pos: 50.37268,50.278324
+ parent: 1
+- proto: DrinkMugMoebius
+ entities:
+ - uid: 20993
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 39.4454,106.54369
+ parent: 1
+- proto: DrinkMugOne
+ entities:
+ - uid: 1195
+ components:
+ - type: Transform
+ pos: 50.47685,50.597767
+ parent: 1
+- proto: DrinkPoisonWinebottleFull
+ entities:
+ - uid: 27035
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 71.46709,73.75255
+ parent: 1
+- proto: DrinkShaker
+ entities:
+ - uid: 35139
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 106.7268,171.45094
+ parent: 1
+- proto: DrinkShotGlass
+ entities:
+ - uid: 27036
+ components:
+ - type: Transform
+ pos: 71.795204,73.69125
+ parent: 1
+ - uid: 27037
+ components:
+ - type: Transform
+ pos: 72.13766,73.46295
+ parent: 1
+- proto: DrinkSodaWaterCan
+ entities:
+ - uid: 34542
+ components:
+ - type: Transform
+ pos: 162.5,47.5
+ parent: 1
+ - uid: 37364
+ components:
+ - type: MetaData
+ desc: It's just some soda water... you think that it is, at least.
+ name: dr. breen's private reserve
+ - type: Transform
+ pos: 122.5,63.5
+ parent: 1
+- proto: DrinkSyndicatebomb
+ entities:
+ - uid: 18085
+ components:
+ - type: Transform
+ rot: -50.265482457436725 rad
+ pos: 88.48815,92.5693
+ parent: 1
+- proto: DrinkTeacup
+ entities:
+ - uid: 1263
+ components:
+ - type: Transform
+ pos: 98.22192,54.420486
+ parent: 1
+ - uid: 27845
+ components:
+ - type: Transform
+ pos: 98.73858,54.453102
+ parent: 1
+- proto: DrinkTeapot
+ entities:
+ - uid: 19720
+ components:
+ - type: Transform
+ pos: 98.37963,54.746635
+ parent: 1
+- proto: DrinkVodkaBottleFull
+ entities:
+ - uid: 35853
+ components:
+ - type: Transform
+ pos: 54.707806,128.79317
+ parent: 1
+ - uid: 37037
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 122.515144,171.48755
+ parent: 1
+- proto: DrinkVodkaGlass
+ entities:
+ - uid: 35817
+ components:
+ - type: Transform
+ pos: 54.311974,129.48761
+ parent: 1
+ - uid: 37179
+ components:
+ - type: Transform
+ pos: 167.3439,134.64966
+ parent: 1
+ - uid: 37180
+ components:
+ - type: Transform
+ pos: 167.30917,135.62187
+ parent: 1
+- proto: DrinkWhiskeyBottleFull
+ entities:
+ - uid: 26318
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 88.40253,57.67301
+ parent: 1
+ - uid: 35170
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 113.83795,167.55002
+ parent: 1
+- proto: DrinkWhiskeyColaGlass
+ entities:
+ - uid: 30171
+ components:
+ - type: Transform
+ pos: 134.46994,153.60684
+ parent: 1
+- proto: DrinkWhiskeyGlass
+ entities:
+ - uid: 18741
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 89.53657,57.55711
+ parent: 1
+ - uid: 35171
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 114.47426,167.61526
+ parent: 1
+- proto: DrinkWineBottleFull
+ entities:
+ - uid: 13590
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 40.330204,74.6678
+ parent: 1
+ - uid: 18578
+ components:
+ - type: Transform
+ pos: 38.5,124.5
+ parent: 1
+- proto: DrinkWineGlass
+ entities:
+ - uid: 13594
+ components:
+ - type: Transform
+ pos: 40.739925,74.71641
+ parent: 1
+ - uid: 26779
+ components:
+ - type: Transform
+ pos: 98.68322,59.750565
+ parent: 1
+ - uid: 27176
+ components:
+ - type: Transform
+ pos: 74.5,49.5
+ parent: 1
+ - uid: 35790
+ components:
+ - type: Transform
+ pos: 54.765514,123.87313
+ parent: 1
+ - uid: 35791
+ components:
+ - type: Transform
+ pos: 55.097195,122.52128
+ parent: 1
+- proto: EmergencyLight
+ entities:
+ - uid: 1425
+ components:
+ - type: Transform
+ pos: 119.5,104.5
+ parent: 1
+ - uid: 6229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,58.5
+ parent: 1
+ - uid: 6232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,69.5
+ parent: 1
+ - uid: 8000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,101.5
+ parent: 1
+ - uid: 9842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,47.5
+ parent: 1
+ - uid: 13302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,71.5
+ parent: 1
+ - uid: 13555
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,19.5
+ parent: 1
+ - uid: 13556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,19.5
+ parent: 1
+ - uid: 13557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,29.5
+ parent: 1
+ - uid: 13558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,29.5
+ parent: 1
+ - uid: 13559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,37.5
+ parent: 1
+ - uid: 13560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,39.5
+ parent: 1
+ - uid: 13561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,44.5
+ parent: 1
+ - uid: 13562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,60.5
+ parent: 1
+ - uid: 13563
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,52.5
+ parent: 1
+ - uid: 13565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,53.5
+ parent: 1
+ - uid: 13566
+ components:
+ - type: Transform
+ pos: 49.5,60.5
+ parent: 1
+ - uid: 13567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,54.5
+ parent: 1
+ - uid: 13568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,56.5
+ parent: 1
+ - uid: 13569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,60.5
+ parent: 1
+ - uid: 13570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,49.5
+ parent: 1
+ - uid: 13572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,68.5
+ parent: 1
+ - uid: 13576
+ components:
+ - type: Transform
+ pos: 47.5,66.5
+ parent: 1
+ - uid: 13583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,74.5
+ parent: 1
+ - uid: 16456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,111.5
+ parent: 1
+ - uid: 16596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,147.5
+ parent: 1
+ - uid: 16602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,131.5
+ parent: 1
+ - uid: 16603
+ components:
+ - type: Transform
+ pos: 122.5,156.5
+ parent: 1
+ - uid: 16604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,131.5
+ parent: 1
+ - uid: 16605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,143.5
+ parent: 1
+ - uid: 16606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,143.5
+ parent: 1
+ - uid: 16607
+ components:
+ - type: Transform
+ pos: 94.5,156.5
+ parent: 1
+ - uid: 16608
+ components:
+ - type: Transform
+ pos: 103.5,156.5
+ parent: 1
+ - uid: 16609
+ components:
+ - type: Transform
+ pos: 113.5,156.5
+ parent: 1
+ - uid: 16610
+ components:
+ - type: Transform
+ pos: 109.5,162.5
+ parent: 1
+ - uid: 16613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,147.5
+ parent: 1
+ - uid: 16614
+ components:
+ - type: Transform
+ pos: 97.5,125.5
+ parent: 1
+ - uid: 16615
+ components:
+ - type: Transform
+ pos: 81.5,123.5
+ parent: 1
+ - uid: 16616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,129.5
+ parent: 1
+ - uid: 16617
+ components:
+ - type: Transform
+ pos: 113.5,145.5
+ parent: 1
+ - uid: 16618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,131.5
+ parent: 1
+ - uid: 16619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,143.5
+ parent: 1
+ - uid: 16620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,131.5
+ parent: 1
+ - uid: 16621
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,143.5
+ parent: 1
+ - uid: 16622
+ components:
+ - type: Transform
+ pos: 103.5,145.5
+ parent: 1
+ - uid: 16623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,129.5
+ parent: 1
+ - uid: 16624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,120.5
+ parent: 1
+ - uid: 16625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,116.5
+ parent: 1
+ - uid: 16626
+ components:
+ - type: Transform
+ pos: 74.5,119.5
+ parent: 1
+ - uid: 16629
+ components:
+ - type: Transform
+ pos: 73.5,153.5
+ parent: 1
+ - uid: 16632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,125.5
+ parent: 1
+ - uid: 16633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 16634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 16640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,144.5
+ parent: 1
+ - uid: 16641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,131.5
+ parent: 1
+ - uid: 16642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,137.5
+ parent: 1
+ - uid: 16643
+ components:
+ - type: Transform
+ pos: 133.5,136.5
+ parent: 1
+ - uid: 16644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,125.5
+ parent: 1
+ - uid: 16645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,125.5
+ parent: 1
+ - uid: 17971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,142.5
+ parent: 1
+ - uid: 18156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,100.5
+ parent: 1
+ - uid: 18158
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,91.5
+ parent: 1
+ - uid: 18159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,91.5
+ parent: 1
+ - uid: 18160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,86.5
+ parent: 1
+ - uid: 18161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,86.5
+ parent: 1
+ - uid: 18162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,84.5
+ parent: 1
+ - uid: 18163
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,80.5
+ parent: 1
+ - uid: 18164
+ components:
+ - type: Transform
+ pos: 82.5,84.5
+ parent: 1
+ - uid: 18166
+ components:
+ - type: Transform
+ pos: 87.5,94.5
+ parent: 1
+ - uid: 18167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,102.5
+ parent: 1
+ - uid: 18168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,106.5
+ parent: 1
+ - uid: 18169
+ components:
+ - type: Transform
+ pos: 68.5,108.5
+ parent: 1
+ - uid: 18170
+ components:
+ - type: Transform
+ pos: 80.5,108.5
+ parent: 1
+ - uid: 18172
+ components:
+ - type: Transform
+ pos: 62.5,110.5
+ parent: 1
+ - uid: 18173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,90.5
+ parent: 1
+ - uid: 18174
+ components:
+ - type: Transform
+ pos: 62.5,97.5
+ parent: 1
+ - uid: 18175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,94.5
+ parent: 1
+ - uid: 18176
+ components:
+ - type: Transform
+ pos: 76.5,100.5
+ parent: 1
+ - uid: 18177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,90.5
+ parent: 1
+ - uid: 18178
+ components:
+ - type: Transform
+ pos: 73.5,92.5
+ parent: 1
+ - uid: 18179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,94.5
+ parent: 1
+ - uid: 18180
+ components:
+ - type: Transform
+ pos: 73.5,100.5
+ parent: 1
+ - uid: 18525
+ components:
+ - type: Transform
+ pos: 86.5,153.5
+ parent: 1
+ - uid: 20503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,125.5
+ parent: 1
+ - uid: 26710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,71.5
+ parent: 1
+ - uid: 26711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,71.5
+ parent: 1
+ - uid: 26870
+ components:
+ - type: Transform
+ pos: 79.5,61.5
+ parent: 1
+ - uid: 27119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,55.5
+ parent: 1
+ - uid: 27416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,90.5
+ parent: 1
+ - uid: 27418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,101.5
+ parent: 1
+ - uid: 27421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,106.5
+ parent: 1
+ - uid: 27422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,111.5
+ parent: 1
+ - uid: 27423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,83.5
+ parent: 1
+ - uid: 27424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,83.5
+ parent: 1
+ - uid: 27425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,83.5
+ parent: 1
+ - uid: 27426
+ components:
+ - type: Transform
+ pos: 109.5,94.5
+ parent: 1
+ - uid: 27429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,61.5
+ parent: 1
+ - uid: 27430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,59.5
+ parent: 1
+ - uid: 27431
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,58.5
+ parent: 1
+ - uid: 27432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,59.5
+ parent: 1
+ - uid: 27434
+ components:
+ - type: Transform
+ pos: 81.5,78.5
+ parent: 1
+ - uid: 27435
+ components:
+ - type: Transform
+ pos: 71.5,76.5
+ parent: 1
+ - uid: 27436
+ components:
+ - type: Transform
+ pos: 63.5,75.5
+ parent: 1
+ - uid: 27437
+ components:
+ - type: Transform
+ pos: 70.5,70.5
+ parent: 1
+ - uid: 27438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,80.5
+ parent: 1
+ - uid: 27439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,112.5
+ parent: 1
+ - uid: 27440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,95.5
+ parent: 1
+ - uid: 27441
+ components:
+ - type: Transform
+ pos: 50.5,97.5
+ parent: 1
+ - uid: 27442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,86.5
+ parent: 1
+ - uid: 27443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,88.5
+ parent: 1
+ - uid: 27444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,86.5
+ parent: 1
+ - uid: 27445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,82.5
+ parent: 1
+ - uid: 27446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,103.5
+ parent: 1
+ - uid: 27447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,107.5
+ parent: 1
+ - uid: 27448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,103.5
+ parent: 1
+ - uid: 27450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,105.5
+ parent: 1
+ - uid: 27451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,106.5
+ parent: 1
+ - uid: 27452
+ components:
+ - type: Transform
+ pos: 50.5,103.5
+ parent: 1
+ - uid: 27453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,113.5
+ parent: 1
+ - uid: 27454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,113.5
+ parent: 1
+ - uid: 27455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,105.5
+ parent: 1
+ - uid: 27456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,99.5
+ parent: 1
+ - uid: 27457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,88.5
+ parent: 1
+ - uid: 27460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,102.5
+ parent: 1
+ - uid: 27461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,96.5
+ parent: 1
+ - uid: 27462
+ components:
+ - type: Transform
+ pos: 146.5,100.5
+ parent: 1
+ - uid: 27463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,90.5
+ parent: 1
+ - uid: 27464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,88.5
+ parent: 1
+ - uid: 27465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,93.5
+ parent: 1
+ - uid: 27466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,98.5
+ parent: 1
+ - uid: 27467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,107.5
+ parent: 1
+ - uid: 27468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,110.5
+ parent: 1
+ - uid: 27469
+ components:
+ - type: Transform
+ pos: 133.5,110.5
+ parent: 1
+ - uid: 27470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,96.5
+ parent: 1
+ - uid: 27471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,100.5
+ parent: 1
+ - uid: 27472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,102.5
+ parent: 1
+ - uid: 27473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,109.5
+ parent: 1
+ - uid: 27474
+ components:
+ - type: Transform
+ pos: 155.5,91.5
+ parent: 1
+ - uid: 27475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,73.5
+ parent: 1
+ - uid: 27476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,59.5
+ parent: 1
+ - uid: 27477
+ components:
+ - type: Transform
+ pos: 144.5,71.5
+ parent: 1
+ - uid: 27478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,68.5
+ parent: 1
+ - uid: 27479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,58.5
+ parent: 1
+ - uid: 27480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,65.5
+ parent: 1
+ - uid: 27481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,63.5
+ parent: 1
+ - uid: 27482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,54.5
+ parent: 1
+ - uid: 27483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,50.5
+ parent: 1
+ - uid: 27484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,49.5
+ parent: 1
+ - uid: 27485
+ components:
+ - type: Transform
+ pos: 133.5,56.5
+ parent: 1
+ - uid: 27487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,58.5
+ parent: 1
+ - uid: 27490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,66.5
+ parent: 1
+ - uid: 27491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,66.5
+ parent: 1
+ - uid: 27492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,58.5
+ parent: 1
+ - uid: 27493
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,64.5
+ parent: 1
+ - uid: 27494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,61.5
+ parent: 1
+ - uid: 27495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,55.5
+ parent: 1
+ - uid: 27496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,46.5
+ parent: 1
+ - uid: 27497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,48.5
+ parent: 1
+ - uid: 27498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,53.5
+ parent: 1
+ - uid: 27507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,47.5
+ parent: 1
+ - uid: 27508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,51.5
+ parent: 1
+ - uid: 27511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 27719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,31.5
+ parent: 1
+ - uid: 27721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,31.5
+ parent: 1
+ - uid: 27723
+ components:
+ - type: Transform
+ pos: 69.5,43.5
+ parent: 1
+ - uid: 27724
+ components:
+ - type: Transform
+ pos: 81.5,43.5
+ parent: 1
+ - uid: 27826
+ components:
+ - type: Transform
+ pos: 65.5,65.5
+ parent: 1
+ - uid: 27827
+ components:
+ - type: Transform
+ pos: 53.5,66.5
+ parent: 1
+ - uid: 27856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,111.5
+ parent: 1
+ - uid: 27936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,70.5
+ parent: 1
+ - uid: 27937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,79.5
+ parent: 1
+ - uid: 27938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,87.5
+ parent: 1
+ - uid: 27939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,98.5
+ parent: 1
+ - uid: 27940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,104.5
+ parent: 1
+ - uid: 27941
+ components:
+ - type: Transform
+ pos: 57.5,114.5
+ parent: 1
+ - uid: 28188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,99.5
+ parent: 1
+ - uid: 28238
+ components:
+ - type: Transform
+ pos: 68.5,114.5
+ parent: 1
+ - uid: 28240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,112.5
+ parent: 1
+ - uid: 28250
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,118.5
+ parent: 1
+ - uid: 28251
+ components:
+ - type: Transform
+ pos: 98.5,119.5
+ parent: 1
+ - uid: 28252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,121.5
+ parent: 1
+ - uid: 28253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,125.5
+ parent: 1
+ - uid: 28254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,125.5
+ parent: 1
+ - uid: 28651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,114.5
+ parent: 1
+ - uid: 28752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,50.5
+ parent: 1
+ - uid: 28881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,67.5
+ parent: 1
+ - uid: 28885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,90.5
+ parent: 1
+ - uid: 28940
+ components:
+ - type: Transform
+ pos: 103.5,52.5
+ parent: 1
+ - uid: 28941
+ components:
+ - type: Transform
+ pos: 114.5,55.5
+ parent: 1
+ - uid: 28942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,60.5
+ parent: 1
+ - uid: 28944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,72.5
+ parent: 1
+ - uid: 28945
+ components:
+ - type: Transform
+ pos: 121.5,78.5
+ parent: 1
+ - uid: 28946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,76.5
+ parent: 1
+ - uid: 28947
+ components:
+ - type: Transform
+ pos: 142.5,78.5
+ parent: 1
+ - uid: 28952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,117.5
+ parent: 1
+ - uid: 28953
+ components:
+ - type: Transform
+ pos: 130.5,119.5
+ parent: 1
+ - uid: 28954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,99.5
+ parent: 1
+ - uid: 28955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,99.5
+ parent: 1
+ - uid: 29061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,151.5
+ parent: 1
+ - uid: 30398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,98.5
+ parent: 1
+ - uid: 31831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,83.5
+ parent: 1
+ - uid: 32172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,140.5
+ parent: 1
+ - uid: 32173
+ components:
+ - type: Transform
+ pos: 154.5,139.5
+ parent: 1
+ - uid: 32174
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,129.5
+ parent: 1
+ - uid: 32175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,130.5
+ parent: 1
+ - uid: 32176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,124.5
+ parent: 1
+ - uid: 32177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,120.5
+ parent: 1
+ - uid: 32178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,117.5
+ parent: 1
+ - uid: 32179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,117.5
+ parent: 1
+ - uid: 32306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,90.5
+ parent: 1
+ - uid: 33911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,84.5
+ parent: 1
+ - uid: 34470
+ components:
+ - type: Transform
+ pos: 99.5,163.5
+ parent: 1
+ - uid: 35558
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,102.5
+ parent: 1
+ - uid: 35628
+ components:
+ - type: Transform
+ pos: 151.5,111.5
+ parent: 1
+ - uid: 35635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,78.5
+ parent: 1
+ - uid: 35640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,92.5
+ parent: 1
+ - uid: 36428
+ components:
+ - type: Transform
+ pos: 48.5,71.5
+ parent: 1
+ - uid: 36451
+ components:
+ - type: Transform
+ pos: 53.5,75.5
+ parent: 1
+ - uid: 37457
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,57.5
+ parent: 1
+ - uid: 37575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,100.5
+ parent: 1
+- proto: EmergencyOxygenTankFilled
+ entities:
+ - uid: 34089
+ components:
+ - type: Transform
+ pos: 68.49849,29.545628
+ parent: 1
+- proto: EmergencyRollerBed
+ entities:
+ - uid: 18012
+ components:
+ - type: Transform
+ pos: 79.5,86.5
+ parent: 1
+ - uid: 18013
+ components:
+ - type: Transform
+ pos: 81.5,86.5
+ parent: 1
+ - uid: 18014
+ components:
+ - type: Transform
+ pos: 80.5,86.5
+ parent: 1
+ - uid: 27074
+ components:
+ - type: Transform
+ pos: 102.5,80.5
+ parent: 1
+ - uid: 27075
+ components:
+ - type: Transform
+ pos: 110.5,84.5
+ parent: 1
+- proto: Emitter
+ entities:
+ - uid: 14027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,141.5
+ parent: 1
+ - uid: 14029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,133.5
+ parent: 1
+ - uid: 14032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,133.5
+ parent: 1
+ - uid: 14044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,141.5
+ parent: 1
+ - uid: 24346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,152.5
+ parent: 1
+ - uid: 29056
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,151.5
+ parent: 1
+- proto: EncryptionKeyCommon
+ entities:
+ - uid: 25187
+ components:
+ - type: Transform
+ pos: 137.21156,121.59246
+ parent: 1
+- proto: EncryptionKeyRobo
+ entities:
+ - uid: 20957
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.685715,93.891304
+ parent: 1
+- proto: ExosuitFabricator
+ entities:
+ - uid: 20894
+ components:
+ - type: Transform
+ pos: 63.5,94.5
+ parent: 1
+- proto: ExplosivesSignMed
+ entities:
+ - uid: 16032
+ components:
+ - type: Transform
+ pos: 78.5,118.5
+ parent: 1
+ - uid: 20977
+ components:
+ - type: Transform
+ pos: 32.5,90.5
+ parent: 1
+ - uid: 33544
+ components:
+ - type: Transform
+ pos: 118.5,24.5
+ parent: 1
+- proto: ExtendedEmergencyOxygenTankFilled
+ entities:
+ - uid: 32011
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 27.586464,121.38221
+ parent: 1
+ - type: GasTank
+ toggleActionEntity: 32012
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 32012
+- proto: ExtinguisherCabinetFilled
+ entities:
+ - uid: 6191
+ components:
+ - type: Transform
+ pos: 154.5,101.5
+ parent: 1
+ - uid: 13712
+ components:
+ - type: Transform
+ pos: 51.5,53.5
+ parent: 1
+ - uid: 13713
+ components:
+ - type: Transform
+ pos: 34.5,48.5
+ parent: 1
+ - uid: 13714
+ components:
+ - type: Transform
+ pos: 41.5,67.5
+ parent: 1
+ - uid: 13716
+ components:
+ - type: Transform
+ pos: 57.5,21.5
+ parent: 1
+ - uid: 18119
+ components:
+ - type: Transform
+ pos: 69.5,94.5
+ parent: 1
+ - uid: 18120
+ components:
+ - type: Transform
+ pos: 79.5,89.5
+ parent: 1
+ - uid: 18121
+ components:
+ - type: Transform
+ pos: 80.5,94.5
+ parent: 1
+ - uid: 18122
+ components:
+ - type: Transform
+ pos: 69.5,105.5
+ parent: 1
+ - uid: 18123
+ components:
+ - type: Transform
+ pos: 80.5,105.5
+ parent: 1
+ - uid: 18124
+ components:
+ - type: Transform
+ pos: 86.5,105.5
+ parent: 1
+ - uid: 19502
+ components:
+ - type: Transform
+ pos: 142.5,101.5
+ parent: 1
+ - uid: 19503
+ components:
+ - type: Transform
+ pos: 135.5,111.5
+ parent: 1
+ - uid: 19506
+ components:
+ - type: Transform
+ pos: 131.5,95.5
+ parent: 1
+ - uid: 26563
+ components:
+ - type: Transform
+ pos: 111.5,100.5
+ parent: 1
+ - uid: 26564
+ components:
+ - type: Transform
+ pos: 121.5,95.5
+ parent: 1
+ - uid: 27321
+ components:
+ - type: Transform
+ pos: 79.5,62.5
+ parent: 1
+ - uid: 30831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,97.5
+ parent: 1
+ - uid: 30863
+ components:
+ - type: Transform
+ pos: 126.5,104.5
+ parent: 1
+- proto: FaxMachineBase
+ entities:
+ - uid: 13518
+ components:
+ - type: Transform
+ pos: 40.5,59.5
+ parent: 1
+ - type: FaxMachine
+ name: Bridge
+ destinationAddress: Bridge
+ - uid: 13529
+ components:
+ - type: Transform
+ pos: 57.5,59.5
+ parent: 1
+ - type: FaxMachine
+ name: HOP
+ destinationAddress: HOP
+ - uid: 18187
+ components:
+ - type: Transform
+ pos: 76.5,105.5
+ parent: 1
+ - type: FaxMachine
+ name: Medbay
+ destinationAddress: Medbay
+ - uid: 19439
+ components:
+ - type: Transform
+ pos: 140.5,103.5
+ parent: 1
+ - type: FaxMachine
+ name: Cargo
+ destinationAddress: Cargo
+ - uid: 19867
+ components:
+ - type: Transform
+ pos: 80.5,59.5
+ parent: 1
+ - type: FaxMachine
+ name: Library
+ destinationAddress: Library
+ - uid: 21011
+ components:
+ - type: Transform
+ pos: 46.5,93.5
+ parent: 1
+ - type: FaxMachine
+ name: Science
+ destinationAddress: Science
+ - uid: 26952
+ components:
+ - type: Transform
+ pos: 108.5,64.5
+ parent: 1
+ - type: FaxMachine
+ name: Theater
+ destinationAddress: Theater
+ - uid: 26957
+ components:
+ - type: Transform
+ pos: 76.5,67.5
+ parent: 1
+ - type: FaxMachine
+ name: Chapel
+ destinationAddress: Chapel
+ - uid: 27030
+ components:
+ - type: Transform
+ pos: 111.5,99.5
+ parent: 1
+ - type: FaxMachine
+ name: Service
+ destinationAddress: Service
+ - uid: 28642
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - type: FaxMachine
+ name: Court
+ destinationAddress: Court
+ - uid: 32398
+ components:
+ - type: Transform
+ pos: 131.5,89.5
+ parent: 1
+ - type: FaxMachine
+ name: 'Conference room '
+ destinationAddress: 'Conference room '
+ - uid: 33817
+ components:
+ - type: Transform
+ pos: 101.5,45.5
+ parent: 1
+ - type: FaxMachine
+ name: Lawyer
+ destinationAddress: Lawyer
+- proto: FaxMachineCaptain
+ entities:
+ - uid: 13494
+ components:
+ - type: Transform
+ pos: 34.5,73.5
+ parent: 1
+ - type: FaxMachine
+ destinationAddress: Captain's office
+- proto: FenceMetalBroken
+ entities:
+ - uid: 33533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,29.5
+ parent: 1
+- proto: FenceMetalStraight
+ entities:
+ - uid: 33541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,29.5
+ parent: 1
+ - uid: 33542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,29.5
+ parent: 1
+- proto: filingCabinetDrawerRandom
+ entities:
+ - uid: 11512
+ components:
+ - type: Transform
+ pos: 155.5,96.5
+ parent: 1
+ - uid: 13617
+ components:
+ - type: Transform
+ pos: 32.5,75.5
+ parent: 1
+ - uid: 13657
+ components:
+ - type: Transform
+ pos: 62.5,58.5
+ parent: 1
+ - uid: 18118
+ components:
+ - type: Transform
+ pos: 77.5,102.5
+ parent: 1
+ - uid: 20840
+ components:
+ - type: Transform
+ pos: 37.5,90.5
+ parent: 1
+ - uid: 22969
+ components:
+ - type: Transform
+ pos: 130.5,72.5
+ parent: 1
+ - uid: 26313
+ components:
+ - type: Transform
+ pos: 107.5,42.5
+ parent: 1
+ - uid: 27194
+ components:
+ - type: Transform
+ pos: 88.5,54.5
+ parent: 1
+ - uid: 30175
+ components:
+ - type: Transform
+ pos: 136.5,150.5
+ parent: 1
+ - uid: 37486
+ components:
+ - type: Transform
+ pos: 91.5,39.5
+ parent: 1
+- proto: filingCabinetRandom
+ entities:
+ - uid: 1868
+ components:
+ - type: Transform
+ pos: 89.5,93.5
+ parent: 1
+ - uid: 3700
+ components:
+ - type: Transform
+ pos: 140.5,106.5
+ parent: 1
+ - uid: 13616
+ components:
+ - type: Transform
+ pos: 40.5,71.5
+ parent: 1
+ - uid: 21006
+ components:
+ - type: Transform
+ pos: 49.5,80.5
+ parent: 1
+ - uid: 27261
+ components:
+ - type: Transform
+ pos: 107.5,44.5
+ parent: 1
+ - uid: 30176
+ components:
+ - type: Transform
+ pos: 135.5,150.5
+ parent: 1
+- proto: filingCabinetTallRandom
+ entities:
+ - uid: 1696
+ components:
+ - type: Transform
+ pos: 53.5,55.5
+ parent: 1
+ - uid: 21004
+ components:
+ - type: Transform
+ pos: 46.5,91.5
+ parent: 1
+- proto: FireAlarm
+ entities:
+ - uid: 443
+ components:
+ - type: MetaData
+ name: hallway 8 fire alarm
+ - type: Transform
+ pos: 125.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28130
+ - 28128
+ - 28129
+ - 296
+ - 282
+ - 27980
+ - 11687
+ - 28133
+ - 28132
+ - 28131
+ - uid: 1457
+ components:
+ - type: MetaData
+ name: arrivals south fire alarm
+ - type: Transform
+ pos: 81.5,19.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2176
+ - 2233
+ - 3141
+ - 5547
+ - 5549
+ - 6852
+ - 3190
+ - uid: 3115
+ components:
+ - type: MetaData
+ name: theater fire alarm
+ - type: Transform
+ pos: 102.5,65.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1846
+ - 1847
+ - 1780
+ - 4764
+ - 4472
+ - 4169
+ - 1845
+ - uid: 3459
+ components:
+ - type: MetaData
+ name: engineering hallway north fire alarm
+ - type: Transform
+ pos: 116.5,157.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5246
+ - 5327
+ - 5363
+ - 5087
+ - 5003
+ - 5002
+ - 4706
+ - 4393
+ - 4392
+ - 4187
+ - 4144
+ - 4062
+ - 4013
+ - 4061
+ - 3822
+ - 3773
+ - 3737
+ - 3623
+ - uid: 3553
+ components:
+ - type: MetaData
+ name: bridge hallway north fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,72.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 834
+ - 862
+ - 891
+ - 861
+ - 6048
+ - 23644
+ - 32244
+ - 34188
+ - uid: 3966
+ components:
+ - type: MetaData
+ name: canteen fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,113.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4564
+ - 24349
+ - 18093
+ - 4236
+ - 4298
+ - 4353
+ - 4745
+ - 4818
+ - 4859
+ - 25609
+ - 3667
+ - 25715
+ - 25714
+ - 25712
+ - 25713
+ - uid: 10790
+ components:
+ - type: MetaData
+ name: bridge hallway south fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,56.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 834
+ - 862
+ - 891
+ - 5920
+ - 5826
+ - 5822
+ - 811
+ - 812
+ - 813
+ - 718
+ - 14866
+ - 15015
+ - 14973
+ - uid: 14826
+ components:
+ - type: MetaData
+ name: engineering hallway east fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,131.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5248
+ - 5328
+ - 5365
+ - 4603
+ - 4602
+ - 5188
+ - 5186
+ - 5246
+ - 5327
+ - 5363
+ - uid: 14844
+ components:
+ - type: MetaData
+ name: engineering hallway north fire alarm
+ - type: Transform
+ pos: 95.5,157.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5246
+ - 5327
+ - 5363
+ - 5087
+ - 5003
+ - 5002
+ - 4706
+ - 4393
+ - 4392
+ - 4187
+ - 4144
+ - 4062
+ - 4013
+ - 4061
+ - 3822
+ - 3773
+ - 3737
+ - 3623
+ - uid: 14847
+ components:
+ - type: MetaData
+ name: engineering hallway west fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,131.5
+ parent: 1
+ - uid: 15938
+ components:
+ - type: MetaData
+ name: atmospherics hallway fire alarm
+ - type: Transform
+ pos: 80.5,124.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2319
+ - 2423
+ - 15434
+ - 15435
+ - 2207
+ - 2458
+ - 2516
+ - 2906
+ - 2985
+ - 3047
+ - 3102
+ - 3158
+ - 3300
+ - uid: 17009
+ components:
+ - type: MetaData
+ name: medical hallway south fire alarm
+ - type: Transform
+ pos: 80.5,89.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2165
+ - 2021
+ - 2164
+ - 2279
+ - 2473
+ - 2749
+ - 3107
+ - 3238
+ - 3106
+ - 2989
+ - 2795
+ - uid: 17010
+ components:
+ - type: MetaData
+ name: medical hallway west fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,93.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2279
+ - 2164
+ - 2331
+ - 2328
+ - 2009
+ - 3333
+ - 1809
+ - uid: 17011
+ components:
+ - type: MetaData
+ name: medical hallway east fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,93.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2989
+ - 3106
+ - 3228
+ - 2918
+ - 2915
+ - 2858
+ - 2988
+ - 3050
+ - 3169
+ - uid: 17013
+ components:
+ - type: MetaData
+ name: medical front entrance fire alarm
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2594
+ - 2634
+ - 2858
+ - 2988
+ - 3050
+ - 17019
+ - 17022
+ - 17021
+ - 3104
+ - 3049
+ - 2987
+ - 2214
+ - 2162
+ - 2072
+ - 2000
+ - 3333
+ - 1809
+ - uid: 18615
+ components:
+ - type: MetaData
+ name: cargo front desk fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,101.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6256
+ - 6036
+ - 5427
+ - 30843
+ - 21677
+ - 35996
+ - 30687
+ - 6300
+ - 6109
+ - 18632
+ - 18633
+ - uid: 18630
+ components:
+ - type: MetaData
+ name: cargo front entrance fire alarm
+ - type: Transform
+ pos: 132.5,111.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5745
+ - 5744
+ - 5743
+ - 6256
+ - 6036
+ - 5929
+ - 5928
+ - 5726
+ - 5725
+ - 5724
+ - 18632
+ - 18633
+ - uid: 20341
+ components:
+ - type: MetaData
+ name: science hallway south fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,85.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 860
+ - 939
+ - 770
+ - 933
+ - 932
+ - 19750
+ - 19751
+ - 19752
+ - uid: 20350
+ components:
+ - type: MetaData
+ name: science front entrance fire alarm
+ - type: Transform
+ pos: 48.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 1181
+ - 1313
+ - 1404
+ - 1403
+ - 1402
+ - 20346
+ - 293
+ - 1391
+ - 1390
+ - 1389
+ - 926
+ - 925
+ - uid: 20357
+ components:
+ - type: MetaData
+ name: science hallway north fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,104.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 327
+ - 380
+ - 736
+ - 831
+ - 888
+ - 915
+ - 922
+ - 921
+ - 926
+ - 925
+ - 19750
+ - 19751
+ - 19752
+ - 1256
+ - uid: 22158
+ components:
+ - type: MetaData
+ name: brig fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,67.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21573
+ - 21572
+ - 21571
+ - 5687
+ - uid: 22161
+ components:
+ - type: MetaData
+ name: security west hallway fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5476
+ - 5473
+ - 21571
+ - 21572
+ - 21573
+ - 21576
+ - 5655
+ - 21575
+ - 21574
+ - uid: 22163
+ components:
+ - type: MetaData
+ name: security hallway south fire alarm
+ - type: Transform
+ pos: 146.5,59.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6117
+ - 21576
+ - 21575
+ - 21574
+ - 6413
+ - 6605
+ - 6604
+ - 5994
+ - 21577
+ - 21578
+ - 21579
+ - 6207
+ - 21580
+ - 21581
+ - 21582
+ - 6600
+ - 22230
+ - uid: 22265
+ components:
+ - type: MetaData
+ name: security hallway north fire alarm
+ - type: Transform
+ pos: 141.5,72.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 21580
+ - 21581
+ - 21582
+ - 6592
+ - 6511
+ - 21389
+ - 6116
+ - 6054
+ - 5985
+ - 21577
+ - 21578
+ - 21579
+ - uid: 26189
+ components:
+ - type: MetaData
+ name: service hall fire alarm
+ - type: Transform
+ pos: 106.5,100.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4361
+ - 4240
+ - 24349
+ - 4565
+ - 25609
+ - 4863
+ - 4671
+ - uid: 26193
+ components:
+ - type: MetaData
+ name: boxing ring fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,80.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3925
+ - 3924
+ - 3923
+ - 1846
+ - 1847
+ - 4985
+ - 4984
+ - 4983
+ - 4624
+ - 4308
+ - 4921
+ - 4361
+ - uid: 27671
+ components:
+ - type: MetaData
+ name: arrivals fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,30.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2290
+ - 2233
+ - 3141
+ - 3069
+ - 3066
+ - 2287
+ - 2285
+ - 2232
+ - 2172
+ - 2540
+ - 6730
+ - 751
+ - 6611
+ - 4360
+ - 4960
+ - 5992
+ - uid: 27822
+ components:
+ - type: MetaData
+ name: hallway 2 fire alarm
+ - type: Transform
+ pos: 58.5,66.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2537
+ - 2536
+ - 2535
+ - 10747
+ - 10748
+ - 10749
+ - 2034
+ - 1270
+ - 1269
+ - 27815
+ - 27816
+ - 27817
+ - 10792
+ - uid: 27825
+ components:
+ - type: MetaData
+ name: hallway 3 fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,76.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27817
+ - 27816
+ - 27815
+ - 1626
+ - 122
+ - 27820
+ - 27819
+ - 27818
+ - 23633
+ - 23637
+ - uid: 27853
+ components:
+ - type: MetaData
+ name: hallway 4 fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,88.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27820
+ - 27819
+ - 27818
+ - 1404
+ - 1403
+ - 1402
+ - 1391
+ - 1390
+ - 1389
+ - 20736
+ - 20737
+ - 20738
+ - 1605
+ - 1615
+ - 1614
+ - 1613
+ - uid: 27866
+ components:
+ - type: MetaData
+ name: hallway 5 fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20738
+ - 20737
+ - 20736
+ - 1373
+ - 20739
+ - 20740
+ - 20741
+ - 28230
+ - uid: 27985
+ components:
+ - type: MetaData
+ name: hallway 6 fire alarm
+ - type: Transform
+ pos: 79.5,115.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 20739
+ - 20740
+ - 20741
+ - 2072
+ - 2162
+ - 2214
+ - 2987
+ - 3049
+ - 3104
+ - 27977
+ - 27978
+ - 27979
+ - 2423
+ - 2319
+ - 2161
+ - 1927
+ - 15936
+ - 15937
+ - uid: 28229
+ components:
+ - type: MetaData
+ name: hallway 7 fire alarm
+ - type: Transform
+ pos: 91.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4357
+ - 25537
+ - 27977
+ - 27978
+ - 27979
+ - 4511
+ - 3808
+ - 297
+ - uid: 28237
+ components:
+ - type: MetaData
+ name: engineering front entrance fire alarm
+ - type: Transform
+ pos: 101.5,122.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 4511
+ - 3808
+ - 297
+ - 4233
+ - 4856
+ - 16581
+ - 16582
+ - 296
+ - 282
+ - 27980
+ - 4859
+ - 4818
+ - 4745
+ - 4353
+ - 4298
+ - 4236
+ - uid: 28348
+ components:
+ - type: MetaData
+ name: hallway 10 fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,105.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 505
+ - 506
+ - 507
+ - 5745
+ - 5744
+ - 5743
+ - 5726
+ - 5725
+ - 5724
+ - 23848
+ - 23847
+ - 5578
+ - 28128
+ - 28129
+ - 28130
+ - uid: 28488
+ components:
+ - type: MetaData
+ name: hallway 11 fire alarm
+ - type: Transform
+ pos: 131.5,79.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6115
+ - 6053
+ - 23305
+ - 23306
+ - 23307
+ - 22261
+ - 22262
+ - 6799
+ - 5756
+ - 5602
+ - 21066
+ - 505
+ - 506
+ - 507
+ - uid: 28596
+ components:
+ - type: MetaData
+ name: hallway 12 fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,68.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27513
+ - 27514
+ - 27515
+ - 5055
+ - 5380
+ - 5466
+ - 23305
+ - 23306
+ - 23307
+ - 4985
+ - 4984
+ - 4983
+ - uid: 28633
+ components:
+ - type: MetaData
+ name: hallway 13 fire alarm
+ - type: Transform
+ pos: 116.5,56.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 28437
+ - 28438
+ - 5291
+ - 5288
+ - 27513
+ - 27514
+ - 27515
+ - 26174
+ - 4882
+ - 27516
+ - 27517
+ - 27518
+ - 950
+ - 1641
+ - uid: 28745
+ components:
+ - type: MetaData
+ name: hallway 14 fire alarm
+ - type: Transform
+ pos: 93.5,53.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 16030
+ - 2077
+ - 10727
+ - 10726
+ - 3181
+ - 1385
+ - 1884
+ - 30043
+ - 27518
+ - 27517
+ - 27516
+ - 4960
+ - 4360
+ - 6611
+ - 30188
+ - uid: 28907
+ components:
+ - type: MetaData
+ name: hallway 15 fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,71.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 3181
+ - 10726
+ - 10727
+ - 3601
+ - 2815
+ - 2704
+ - 2537
+ - 2536
+ - 2535
+ - 3402
+ - 3452
+ - 3841
+ - 3925
+ - 3924
+ - 3923
+ - 3754
+ - uid: 28943
+ components:
+ - type: MetaData
+ name: hallway 1 fire alarm
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,57.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 2285
+ - 2232
+ - 2172
+ - 10749
+ - 10748
+ - 10747
+ - 1849
+ - 6729
+ - uid: 29230
+ components:
+ - type: MetaData
+ name: hallway 9 fire alarm
+ - type: Transform
+ pos: 151.5,120.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6243
+ - 28133
+ - 28132
+ - 28131
+ - 6475
+ - 6174
+ - 6337
+ - 6669
+ - 6787
+ - 6869
+ - 6916
+ - 6870
+ - 27984
+ - 27983
+ - 27982
+ - uid: 29482
+ components:
+ - type: MetaData
+ name: dorms fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,134.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 27984
+ - 27983
+ - 27982
+ - 6624
+ - 8673
+ - 13735
+ - 13734
+ - 13733
+ - 5239
+ - 6688
+ - 6667
+ - 6783
+ - 6913
+ - 7044
+ - 6944
+ - 6814
+ - uid: 29826
+ components:
+ - type: MetaData
+ name: evac fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,146.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 13734
+ - 13733
+ - 29822
+ - 6542
+ - 6272
+ - 13735
+ - 4007
+ - 6168
+ - 6005
+ - 6278
+ - 6127
+ - 1471
+ - 6009
+ - uid: 30837
+ components:
+ - type: MetaData
+ name: cargo hallway fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,98.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 6928
+ - 6929
+ - 6192
+ - 16223
+ - 11539
+ - 1362
+ - 23406
+ - 266
+ - 21677
+ - 35996
+ - 30687
+ - 1363
+ - uid: 33283
+ components:
+ - type: MetaData
+ name: maintance 2 fire alarm
+ - type: Transform
+ pos: 93.5,24.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 5549
+ - 6852
+ - 5547
+ - 33172
+ - 8333
+ - 33286
+ - 7137
+ - 8357
+ - 4128
+ - 4127
+ - 3766
+ - 3864
+ - uid: 33284
+ components:
+ - type: MetaData
+ name: maintance 1 fire alarm
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,25.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 9823
+ - 8357
+ - 4128
+ - 4127
+ - 8526
+ - 27657
+ - 11336
+ - 12738
+ - 29188
+ - uid: 33285
+ components:
+ - type: MetaData
+ name: maintance 3 fire alarm
+ - type: Transform
+ pos: 117.5,32.5
+ parent: 1
+ - type: DeviceList
+ devices:
+ - 12738
+ - 11336
+ - 27657
+ - 12735
+ - 9802
+ - 12729
+ - 12739
+ - 27649
+ - 30509
+- proto: FireAxeCabinetFilled
+ entities:
+ - uid: 16214
+ components:
+ - type: Transform
+ pos: 74.5,124.5
+ parent: 1
+ - uid: 25932
+ components:
+ - type: Transform
+ pos: 33.5,65.5
+ parent: 1
+- proto: FireExtinguisher
+ entities:
+ - uid: 19043
+ components:
+ - type: Transform
+ pos: 26.5,123.5
+ parent: 1
+ - uid: 19484
+ components:
+ - type: Transform
+ pos: 147.47488,88.51422
+ parent: 1
+ - uid: 19485
+ components:
+ - type: Transform
+ pos: 147.6728,88.7538
+ parent: 1
+ - uid: 19486
+ components:
+ - type: Transform
+ pos: 147.37071,88.72255
+ parent: 1
+- proto: FirelockGlass
+ entities:
+ - uid: 54
+ components:
+ - type: Transform
+ pos: 18.5,114.5
+ parent: 1
+ - uid: 121
+ components:
+ - type: Transform
+ pos: 20.5,88.5
+ parent: 1
+ - uid: 122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - uid: 123
+ components:
+ - type: Transform
+ pos: 20.5,86.5
+ parent: 1
+ - uid: 126
+ components:
+ - type: Transform
+ pos: 20.5,80.5
+ parent: 1
+ - uid: 128
+ components:
+ - type: Transform
+ pos: 20.5,78.5
+ parent: 1
+ - uid: 138
+ components:
+ - type: Transform
+ pos: 21.5,104.5
+ parent: 1
+ - uid: 157
+ components:
+ - type: Transform
+ pos: 22.5,95.5
+ parent: 1
+ - uid: 158
+ components:
+ - type: Transform
+ pos: 22.5,89.5
+ parent: 1
+ - uid: 159
+ components:
+ - type: Transform
+ pos: 22.5,77.5
+ parent: 1
+ - uid: 161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,31.5
+ parent: 1
+ - uid: 163
+ components:
+ - type: Transform
+ pos: 23.5,114.5
+ parent: 1
+ - uid: 171
+ components:
+ - type: Transform
+ pos: 23.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20376
+ - uid: 187
+ components:
+ - type: Transform
+ pos: 24.5,120.5
+ parent: 1
+ - uid: 225
+ components:
+ - type: Transform
+ pos: 25.5,83.5
+ parent: 1
+ - uid: 248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,110.5
+ parent: 1
+ - uid: 254
+ components:
+ - type: Transform
+ pos: 26.5,75.5
+ parent: 1
+ - uid: 266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 15662
+ - uid: 282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28237
+ - 28247
+ - 443
+ - 28288
+ - uid: 293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20352
+ - 20350
+ - 20345
+ - uid: 295
+ components:
+ - type: Transform
+ pos: 28.5,72.5
+ parent: 1
+ - uid: 296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28237
+ - 28247
+ - 443
+ - 28288
+ - uid: 297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,119.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28229
+ - 28237
+ - 28247
+ - 30227
+ - uid: 303
+ components:
+ - type: Transform
+ pos: 29.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20374
+ - 20375
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 29.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20373
+ - 20375
+ - uid: 317
+ components:
+ - type: Transform
+ pos: 29.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20372
+ - 20375
+ - uid: 327
+ components:
+ - type: Transform
+ pos: 29.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20376
+ - uid: 343
+ components:
+ - type: Transform
+ pos: 30.5,122.5
+ parent: 1
+ - uid: 350
+ components:
+ - type: Transform
+ pos: 30.5,97.5
+ parent: 1
+ - uid: 360
+ components:
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - uid: 379
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - 20378
+ - uid: 380
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20378
+ - uid: 435
+ components:
+ - type: Transform
+ pos: 32.5,81.5
+ parent: 1
+ - uid: 444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,91.5
+ parent: 1
+ - uid: 447
+ components:
+ - type: Transform
+ pos: 88.5,43.5
+ parent: 1
+ - uid: 466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,35.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - uid: 479
+ components:
+ - type: Transform
+ pos: 34.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - uid: 489
+ components:
+ - type: Transform
+ pos: 34.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - uid: 505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 28488
+ - 28486
+ - uid: 506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 28488
+ - 28486
+ - uid: 507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 28488
+ - 28486
+ - uid: 509
+ components:
+ - type: Transform
+ pos: 35.5,122.5
+ parent: 1
+ - uid: 550
+ components:
+ - type: Transform
+ pos: 100.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - uid: 556
+ components:
+ - type: Transform
+ pos: 36.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20363
+ - uid: 568
+ components:
+ - type: Transform
+ pos: 36.5,67.5
+ parent: 1
+ - uid: 631
+ components:
+ - type: Transform
+ pos: 38.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - 20336
+ - uid: 666
+ components:
+ - type: Transform
+ pos: 39.5,69.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10730
+ - uid: 718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - 10732
+ - 10790
+ - uid: 736
+ components:
+ - type: Transform
+ pos: 41.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20363
+ - uid: 751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - uid: 770
+ components:
+ - type: Transform
+ pos: 41.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20336
+ - 20341
+ - 20340
+ - uid: 773
+ components:
+ - type: Transform
+ pos: 41.5,80.5
+ parent: 1
+ - uid: 811
+ components:
+ - type: Transform
+ pos: 41.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 41.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 813
+ components:
+ - type: Transform
+ pos: 41.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 831
+ components:
+ - type: Transform
+ pos: 42.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 37335
+ - uid: 834
+ components:
+ - type: Transform
+ pos: 42.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - 10790
+ - 10733
+ - 3553
+ - uid: 860
+ components:
+ - type: Transform
+ pos: 43.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - uid: 861
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 3553
+ - uid: 862
+ components:
+ - type: Transform
+ pos: 43.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - 10790
+ - 10733
+ - 3553
+ - uid: 874
+ components:
+ - type: Transform
+ pos: 102.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - uid: 883
+ components:
+ - type: Transform
+ pos: 106.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - 29340
+ - uid: 888
+ components:
+ - type: Transform
+ pos: 44.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 37335
+ - uid: 891
+ components:
+ - type: Transform
+ pos: 44.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - 10790
+ - 10733
+ - 3553
+ - uid: 915
+ components:
+ - type: Transform
+ pos: 45.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20362
+ - uid: 921
+ components:
+ - type: Transform
+ pos: 45.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20359
+ - uid: 922
+ components:
+ - type: Transform
+ pos: 45.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - 20359
+ - uid: 925
+ components:
+ - type: Transform
+ pos: 45.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 20357
+ - 20353
+ - uid: 926
+ components:
+ - type: Transform
+ pos: 45.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 20357
+ - 20353
+ - uid: 932
+ components:
+ - type: Transform
+ pos: 45.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20345
+ - uid: 933
+ components:
+ - type: Transform
+ pos: 45.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20345
+ - uid: 939
+ components:
+ - type: Transform
+ pos: 45.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20343
+ - uid: 944
+ components:
+ - type: Transform
+ pos: 45.5,78.5
+ parent: 1
+ - uid: 950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - uid: 1028
+ components:
+ - type: Transform
+ pos: 46.5,28.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - 10685
+ - uid: 1033
+ components:
+ - type: Transform
+ pos: 46.5,20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - 10685
+ - uid: 1054
+ components:
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - 10746
+ - uid: 1056
+ components:
+ - type: Transform
+ pos: 47.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - 13230
+ - uid: 1058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 164.5,140.5
+ parent: 1
+ - uid: 1099
+ components:
+ - type: Transform
+ pos: 48.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - 10746
+ - uid: 1131
+ components:
+ - type: Transform
+ pos: 49.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20362
+ - uid: 1137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,169.5
+ parent: 1
+ - uid: 1164
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 1
+ - uid: 1181
+ components:
+ - type: Transform
+ pos: 50.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20345
+ - 20350
+ - 20352
+ - uid: 1198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - uid: 1254
+ components:
+ - type: Transform
+ pos: 51.5,115.5
+ parent: 1
+ - uid: 1256
+ components:
+ - type: Transform
+ pos: 34.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20357
+ - 20353
+ - uid: 1269
+ components:
+ - type: Transform
+ pos: 51.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - 27822
+ - 1303
+ - uid: 1270
+ components:
+ - type: Transform
+ pos: 51.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - 27822
+ - 1303
+ - uid: 1282
+ components:
+ - type: Transform
+ pos: 45.5,126.5
+ parent: 1
+ - uid: 1283
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10686
+ - uid: 1292
+ components:
+ - type: Transform
+ pos: 51.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10685
+ - 10686
+ - uid: 1311
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - uid: 1313
+ components:
+ - type: Transform
+ pos: 52.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20343
+ - 20350
+ - 20352
+ - uid: 1318
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - uid: 1360
+ components:
+ - type: Transform
+ pos: 153.5,147.5
+ parent: 1
+ - uid: 1362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 15662
+ - uid: 1363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 15662
+ - uid: 1373
+ components:
+ - type: Transform
+ pos: 54.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - uid: 1381
+ components:
+ - type: Transform
+ pos: 37.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - uid: 1385
+ components:
+ - type: Transform
+ pos: 95.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - uid: 1389
+ components:
+ - type: Transform
+ pos: 54.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1390
+ components:
+ - type: Transform
+ pos: 54.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1391
+ components:
+ - type: Transform
+ pos: 54.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: 54.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1403
+ components:
+ - type: Transform
+ pos: 54.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1404
+ components:
+ - type: Transform
+ pos: 54.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20350
+ - 20352
+ - 27853
+ - 27854
+ - uid: 1419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,150.5
+ parent: 1
+ - uid: 1435
+ components:
+ - type: Transform
+ pos: 54.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - 10751
+ - uid: 1441
+ components:
+ - type: Transform
+ pos: 54.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10752
+ - uid: 1462
+ components:
+ - type: Transform
+ pos: 55.5,146.5
+ parent: 1
+ - uid: 1469
+ components:
+ - type: Transform
+ pos: 55.5,139.5
+ parent: 1
+ - uid: 1471
+ components:
+ - type: Transform
+ pos: 139.5,146.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - 29830
+ - 29826
+ - uid: 1495
+ components:
+ - type: Transform
+ pos: 97.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - uid: 1498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - uid: 1513
+ components:
+ - type: Transform
+ pos: 126.5,152.5
+ parent: 1
+ - uid: 1561
+ components:
+ - type: Transform
+ pos: 57.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - 10752
+ - uid: 1578
+ components:
+ - type: Transform
+ pos: 58.5,153.5
+ parent: 1
+ - uid: 1579
+ components:
+ - type: Transform
+ pos: 58.5,135.5
+ parent: 1
+ - uid: 1583
+ components:
+ - type: Transform
+ pos: 58.5,130.5
+ parent: 1
+ - uid: 1605
+ components:
+ - type: Transform
+ pos: 58.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - 27853
+ - 27854
+ - uid: 1613
+ components:
+ - type: Transform
+ pos: 58.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - 27853
+ - 27854
+ - uid: 1614
+ components:
+ - type: Transform
+ pos: 58.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - 27853
+ - 27854
+ - uid: 1615
+ components:
+ - type: Transform
+ pos: 58.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - 27853
+ - 27854
+ - uid: 1626
+ components:
+ - type: Transform
+ pos: 58.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - uid: 1641
+ components:
+ - type: Transform
+ pos: 108.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28634
+ - 28633
+ - uid: 1690
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - uid: 1700
+ components:
+ - type: Transform
+ pos: 59.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10752
+ - uid: 1750
+ components:
+ - type: Transform
+ pos: 60.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17112
+ - 17614
+ - uid: 1780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - 3115
+ - uid: 1786
+ components:
+ - type: Transform
+ pos: 61.5,158.5
+ parent: 1
+ - uid: 1809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 17013
+ - 17109
+ - uid: 1829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,166.5
+ parent: 1
+ - uid: 1845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - 3115
+ - uid: 1846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 3115
+ - 3121
+ - uid: 1847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 3115
+ - 3121
+ - uid: 1849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 28943
+ - uid: 1867
+ components:
+ - type: Transform
+ pos: 62.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26214
+ - uid: 1884
+ components:
+ - type: Transform
+ pos: 96.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - uid: 1895
+ components:
+ - type: Transform
+ pos: 62.5,20.5
+ parent: 1
+ - uid: 1927
+ components:
+ - type: Transform
+ pos: 63.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - uid: 1954
+ components:
+ - type: Transform
+ pos: 63.5,46.5
+ parent: 1
+ - uid: 1965
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - uid: 2000
+ components:
+ - type: Transform
+ pos: 64.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17107
+ - 17013
+ - 17109
+ - uid: 2009
+ components:
+ - type: Transform
+ pos: 64.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 17112
+ - uid: 2013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - uid: 2021
+ components:
+ - type: Transform
+ pos: 64.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - 17009
+ - 17102
+ - uid: 2034
+ components:
+ - type: Transform
+ pos: 64.5,66.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - uid: 2072
+ components:
+ - type: Transform
+ pos: 65.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 2077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - 37459
+ - uid: 2133
+ components:
+ - type: Transform
+ pos: 66.5,161.5
+ parent: 1
+ - uid: 2161
+ components:
+ - type: Transform
+ pos: 66.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - uid: 2162
+ components:
+ - type: Transform
+ pos: 66.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 2164
+ components:
+ - type: Transform
+ pos: 66.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - 17010
+ - 17103
+ - uid: 2165
+ components:
+ - type: Transform
+ pos: 66.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - 17009
+ - 17102
+ - uid: 2168
+ components:
+ - type: Transform
+ pos: 66.5,78.5
+ parent: 1
+ - uid: 2172
+ components:
+ - type: Transform
+ pos: 66.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 27729
+ - 28943
+ - 25478
+ - uid: 2176
+ components:
+ - type: Transform
+ pos: 66.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1457
+ - uid: 2207
+ components:
+ - type: Transform
+ pos: 67.5,121.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 15938
+ - uid: 2214
+ components:
+ - type: Transform
+ pos: 67.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 2223
+ components:
+ - type: Transform
+ pos: 67.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - 26214
+ - uid: 2232
+ components:
+ - type: Transform
+ pos: 67.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 27729
+ - 28943
+ - 25478
+ - uid: 2233
+ components:
+ - type: Transform
+ pos: 67.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 1457
+ - 25478
+ - uid: 2279
+ components:
+ - type: Transform
+ pos: 68.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - 17010
+ - 17103
+ - uid: 2285
+ components:
+ - type: Transform
+ pos: 68.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 27729
+ - 28943
+ - 25478
+ - uid: 2287
+ components:
+ - type: Transform
+ pos: 68.5,34.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 2290
+ components:
+ - type: Transform
+ pos: 68.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 2319
+ components:
+ - type: Transform
+ pos: 69.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 15938
+ - 27985
+ - 27986
+ - uid: 2328
+ components:
+ - type: Transform
+ pos: 69.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 27355
+ - uid: 2331
+ components:
+ - type: Transform
+ pos: 69.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 27355
+ - uid: 2423
+ components:
+ - type: Transform
+ pos: 70.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 15938
+ - 27985
+ - 27986
+ - uid: 2458
+ components:
+ - type: Transform
+ pos: 71.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 2464
+ - 15938
+ - uid: 2473
+ components:
+ - type: Transform
+ pos: 71.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - 17106
+ - uid: 2479
+ components:
+ - type: Transform
+ pos: 71.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - uid: 2493
+ components:
+ - type: Transform
+ pos: 72.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - uid: 2516
+ components:
+ - type: Transform
+ pos: 72.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 2464
+ - 15938
+ - uid: 2535
+ components:
+ - type: Transform
+ pos: 72.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 28907
+ - 28908
+ - uid: 2536
+ components:
+ - type: Transform
+ pos: 72.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 28907
+ - 28908
+ - uid: 2537
+ components:
+ - type: Transform
+ pos: 72.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 28907
+ - 28908
+ - uid: 2540
+ components:
+ - type: Transform
+ pos: 72.5,44.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 2594
+ components:
+ - type: Transform
+ pos: 74.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27355
+ - uid: 2596
+ components:
+ - type: Transform
+ pos: 74.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - 27355
+ - uid: 2600
+ components:
+ - type: Transform
+ pos: 74.5,81.5
+ parent: 1
+ - uid: 2622
+ components:
+ - type: Transform
+ pos: 75.5,157.5
+ parent: 1
+ - uid: 2634
+ components:
+ - type: Transform
+ pos: 75.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27355
+ - uid: 2636
+ components:
+ - type: Transform
+ pos: 75.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - 27355
+ - uid: 2704
+ components:
+ - type: Transform
+ pos: 76.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - 28907
+ - 28908
+ - uid: 2749
+ components:
+ - type: Transform
+ pos: 77.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - uid: 2758
+ components:
+ - type: Transform
+ pos: 77.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - uid: 2795
+ components:
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17009
+ - 17102
+ - 17106
+ - uid: 2810
+ components:
+ - type: Transform
+ pos: 78.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - 26965
+ - uid: 2815
+ components:
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - 28907
+ - 28908
+ - uid: 2829
+ components:
+ - type: Transform
+ pos: 79.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 2830
+ components:
+ - type: Transform
+ pos: 79.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 2847
+ components:
+ - type: Transform
+ pos: 79.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 2848
+ components:
+ - type: Transform
+ pos: 79.5,125.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 2858
+ components:
+ - type: Transform
+ pos: 79.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17013
+ - 17109
+ - uid: 2906
+ components:
+ - type: Transform
+ pos: 80.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 2915
+ components:
+ - type: Transform
+ pos: 80.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 27355
+ - uid: 2918
+ components:
+ - type: Transform
+ pos: 80.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 27355
+ - uid: 2985
+ components:
+ - type: Transform
+ pos: 81.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 2987
+ components:
+ - type: Transform
+ pos: 81.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 2988
+ components:
+ - type: Transform
+ pos: 81.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17013
+ - 17109
+ - uid: 2989
+ components:
+ - type: Transform
+ pos: 81.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17009
+ - 17102
+ - uid: 3047
+ components:
+ - type: Transform
+ pos: 82.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 3049
+ components:
+ - type: Transform
+ pos: 82.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 3050
+ components:
+ - type: Transform
+ pos: 82.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17013
+ - 17109
+ - uid: 3066
+ components:
+ - type: Transform
+ pos: 82.5,34.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 3069
+ components:
+ - type: Transform
+ pos: 82.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 3102
+ components:
+ - type: Transform
+ pos: 83.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 3104
+ components:
+ - type: Transform
+ pos: 83.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17013
+ - 17109
+ - 27985
+ - 27986
+ - uid: 3106
+ components:
+ - type: Transform
+ pos: 83.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17011
+ - 17097
+ - 17009
+ - 17102
+ - uid: 3107
+ components:
+ - type: Transform
+ pos: 83.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - 17009
+ - 17102
+ - uid: 3141
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 1457
+ - 25478
+ - uid: 3146
+ components:
+ - type: Transform
+ pos: 84.5,158.5
+ parent: 1
+ - uid: 3158
+ components:
+ - type: Transform
+ pos: 84.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - 2464
+ - 15938
+ - uid: 3169
+ components:
+ - type: Transform
+ pos: 84.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - 17011
+ - 17097
+ - uid: 3181
+ components:
+ - type: Transform
+ pos: 84.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - 28907
+ - 28908
+ - uid: 3190
+ components:
+ - type: Transform
+ pos: 85.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1457
+ - uid: 3226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - uid: 3228
+ components:
+ - type: Transform
+ pos: 85.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - 17011
+ - 17097
+ - uid: 3238
+ components:
+ - type: Transform
+ pos: 85.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30728
+ - 17009
+ - 17102
+ - uid: 3289
+ components:
+ - type: Transform
+ pos: 86.5,162.5
+ parent: 1
+ - uid: 3294
+ components:
+ - type: Transform
+ pos: 86.5,156.5
+ parent: 1
+ - uid: 3300
+ components:
+ - type: Transform
+ pos: 86.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - 2464
+ - 15938
+ - uid: 3312
+ components:
+ - type: Transform
+ pos: 86.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17091
+ - 17093
+ - uid: 3320
+ components:
+ - type: Transform
+ pos: 123.5,40.5
+ parent: 1
+ - uid: 3332
+ components:
+ - type: Transform
+ pos: 87.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - 17096
+ - uid: 3333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17010
+ - 17103
+ - 17013
+ - 17109
+ - uid: 3385
+ components:
+ - type: Transform
+ pos: 88.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - 36756
+ - uid: 3402
+ components:
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - 28907
+ - 28908
+ - uid: 3439
+ components:
+ - type: Transform
+ pos: 80.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - uid: 3452
+ components:
+ - type: Transform
+ pos: 89.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - 28907
+ - 28908
+ - uid: 3488
+ components:
+ - type: Transform
+ pos: 90.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - uid: 3519
+ components:
+ - type: Transform
+ pos: 90.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - uid: 3524
+ components:
+ - type: Transform
+ pos: 90.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - 2722
+ - uid: 3550
+ components:
+ - type: Transform
+ pos: 90.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - uid: 3573
+ components:
+ - type: Transform
+ pos: 91.5,166.5
+ parent: 1
+ - uid: 3585
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - uid: 3601
+ components:
+ - type: Transform
+ pos: 91.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - 28907
+ - 28908
+ - uid: 3608
+ components:
+ - type: Transform
+ pos: 149.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 3623
+ components:
+ - type: Transform
+ pos: 92.5,155.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 3459
+ - uid: 3657
+ components:
+ - type: Transform
+ pos: 92.5,130.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - uid: 3667
+ components:
+ - type: Transform
+ pos: 119.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 15935
+ - uid: 3733
+ components:
+ - type: Transform
+ pos: 119.5,166.5
+ parent: 1
+ - uid: 3737
+ components:
+ - type: Transform
+ pos: 93.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14603
+ - 3459
+ - uid: 3739
+ components:
+ - type: Transform
+ pos: 93.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 14597
+ - uid: 3754
+ components:
+ - type: Transform
+ pos: 93.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28907
+ - 28908
+ - uid: 3766
+ components:
+ - type: Transform
+ pos: 93.5,17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 3773
+ components:
+ - type: Transform
+ pos: 94.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14603
+ - 3459
+ - uid: 3774
+ components:
+ - type: Transform
+ pos: 94.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 14597
+ - uid: 3808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28229
+ - 28237
+ - 28247
+ - 30227
+ - uid: 3819
+ components:
+ - type: Transform
+ pos: 95.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14669
+ - uid: 3822
+ components:
+ - type: Transform
+ pos: 95.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14603
+ - 3459
+ - uid: 3824
+ components:
+ - type: Transform
+ pos: 95.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 14597
+ - uid: 3841
+ components:
+ - type: Transform
+ pos: 95.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28907
+ - 28908
+ - uid: 3855
+ components:
+ - type: Transform
+ pos: 95.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - uid: 3864
+ components:
+ - type: Transform
+ pos: 95.5,17.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 3868
+ components:
+ - type: Transform
+ pos: 96.5,172.5
+ parent: 1
+ - uid: 3882
+ components:
+ - type: Transform
+ pos: 96.5,145.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - uid: 3892
+ components:
+ - type: Transform
+ pos: 96.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - 14603
+ - uid: 3894
+ components:
+ - type: Transform
+ pos: 96.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - 14603
+ - uid: 3916
+ components:
+ - type: Transform
+ pos: 96.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26186
+ - uid: 3923
+ components:
+ - type: Transform
+ pos: 96.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28907
+ - 28908
+ - uid: 3924
+ components:
+ - type: Transform
+ pos: 96.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28907
+ - 28908
+ - uid: 3925
+ components:
+ - type: Transform
+ pos: 96.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28907
+ - 28908
+ - uid: 4007
+ components:
+ - type: Transform
+ pos: 147.5,145.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - 29826
+ - uid: 4013
+ components:
+ - type: Transform
+ pos: 98.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14667
+ - 14844
+ - 3459
+ - uid: 4061
+ components:
+ - type: Transform
+ pos: 99.5,157.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14669
+ - 14844
+ - 3459
+ - uid: 4062
+ components:
+ - type: Transform
+ pos: 99.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14667
+ - 14844
+ - 3459
+ - uid: 4103
+ components:
+ - type: Transform
+ pos: 99.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - 26186
+ - uid: 4109
+ components:
+ - type: Transform
+ pos: 99.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3113
+ - uid: 4124
+ components:
+ - type: Transform
+ pos: 101.5,38.5
+ parent: 1
+ - uid: 4127
+ components:
+ - type: Transform
+ pos: 99.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 33284
+ - uid: 4128
+ components:
+ - type: Transform
+ pos: 99.5,31.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 33284
+ - uid: 4144
+ components:
+ - type: Transform
+ pos: 100.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14667
+ - 14844
+ - 3459
+ - uid: 4169
+ components:
+ - type: Transform
+ pos: 100.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3115
+ - 3121
+ - 3113
+ - uid: 4187
+ components:
+ - type: Transform
+ pos: 101.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14667
+ - 14844
+ - 3459
+ - uid: 4233
+ components:
+ - type: Transform
+ pos: 102.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - 28237
+ - 28247
+ - uid: 4236
+ components:
+ - type: Transform
+ pos: 102.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4240
+ components:
+ - type: Transform
+ pos: 102.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - 26189
+ - 26188
+ - uid: 4273
+ components:
+ - type: Transform
+ pos: 103.5,170.5
+ parent: 1
+ - uid: 4298
+ components:
+ - type: Transform
+ pos: 103.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - 10750
+ - uid: 4308
+ components:
+ - type: Transform
+ pos: 103.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - uid: 4353
+ components:
+ - type: Transform
+ pos: 104.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4357
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - 28229
+ - 30227
+ - uid: 4360
+ components:
+ - type: Transform
+ pos: 83.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - 28745
+ - 25419
+ - uid: 4361
+ components:
+ - type: Transform
+ pos: 104.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26189
+ - 26188
+ - 26193
+ - 26190
+ - uid: 4371
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3112
+ - uid: 4392
+ components:
+ - type: Transform
+ pos: 105.5,157.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14840
+ - 14844
+ - 3459
+ - uid: 4393
+ components:
+ - type: Transform
+ pos: 105.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - 14573
+ - 14844
+ - 3459
+ - uid: 4472
+ components:
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3115
+ - 3121
+ - 3112
+ - uid: 4474
+ components:
+ - type: Transform
+ pos: 95.5,85.5
+ parent: 1
+ - uid: 4494
+ components:
+ - type: Transform
+ pos: 118.5,166.5
+ parent: 1
+ - uid: 4511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28229
+ - 28237
+ - 28247
+ - 30227
+ - uid: 4564
+ components:
+ - type: Transform
+ pos: 108.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26182
+ - uid: 4565
+ components:
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26182
+ - 26189
+ - 26188
+ - uid: 4602
+ components:
+ - type: Transform
+ pos: 124.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14600
+ - uid: 4603
+ components:
+ - type: Transform
+ pos: 124.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14600
+ - uid: 4624
+ components:
+ - type: Transform
+ pos: 109.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - uid: 4671
+ components:
+ - type: Transform
+ pos: 110.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26180
+ - 26189
+ - 26188
+ - uid: 4677
+ components:
+ - type: Transform
+ pos: 88.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - uid: 4706
+ components:
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - 14573
+ - 14844
+ - 3459
+ - uid: 4736
+ components:
+ - type: Transform
+ pos: 112.5,163.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14840
+ - uid: 4745
+ components:
+ - type: Transform
+ pos: 112.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4764
+ components:
+ - type: Transform
+ pos: 112.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3115
+ - 3121
+ - 4625
+ - uid: 4779
+ components:
+ - type: Transform
+ pos: 112.5,38.5
+ parent: 1
+ - uid: 4818
+ components:
+ - type: Transform
+ pos: 113.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4856
+ components:
+ - type: Transform
+ pos: 114.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - 28237
+ - 28247
+ - uid: 4859
+ components:
+ - type: Transform
+ pos: 114.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 28237
+ - 28247
+ - uid: 4863
+ components:
+ - type: Transform
+ pos: 114.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26189
+ - 26188
+ - 143
+ - uid: 4882
+ components:
+ - type: Transform
+ pos: 114.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28638
+ - uid: 4883
+ components:
+ - type: Transform
+ pos: 139.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - uid: 4906
+ components:
+ - type: Transform
+ pos: 115.5,164.5
+ parent: 1
+ - uid: 4921
+ components:
+ - type: Transform
+ pos: 115.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - uid: 4949
+ components:
+ - type: Transform
+ pos: 115.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 4625
+ - uid: 4960
+ components:
+ - type: Transform
+ pos: 84.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - 28745
+ - 25419
+ - uid: 4983
+ components:
+ - type: Transform
+ pos: 116.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28596
+ - 28597
+ - uid: 4984
+ components:
+ - type: Transform
+ pos: 116.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28596
+ - 28597
+ - uid: 4985
+ components:
+ - type: Transform
+ pos: 116.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26193
+ - 26190
+ - 28596
+ - 28597
+ - uid: 5002
+ components:
+ - type: Transform
+ pos: 117.5,157.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 36963
+ - 3459
+ - uid: 5003
+ components:
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14846
+ - 3459
+ - uid: 5048
+ components:
+ - type: Transform
+ pos: 117.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - uid: 5055
+ components:
+ - type: Transform
+ pos: 117.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28596
+ - 28597
+ - uid: 5087
+ components:
+ - type: Transform
+ pos: 118.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14846
+ - 3459
+ - uid: 5103
+ components:
+ - type: Transform
+ pos: 118.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28638
+ - uid: 5168
+ components:
+ - type: Transform
+ pos: 120.5,160.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36963
+ - uid: 5170
+ components:
+ - type: Transform
+ pos: 72.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - uid: 5186
+ components:
+ - type: Transform
+ pos: 120.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14594
+ - uid: 5188
+ components:
+ - type: Transform
+ pos: 120.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14594
+ - uid: 5239
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 5246
+ components:
+ - type: Transform
+ pos: 121.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14826
+ - 14595
+ - 3459
+ - uid: 5248
+ components:
+ - type: Transform
+ pos: 121.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14596
+ - uid: 5288
+ components:
+ - type: Transform
+ pos: 121.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - uid: 5291
+ components:
+ - type: Transform
+ pos: 121.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - uid: 5299
+ components:
+ - type: Transform
+ pos: 121.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - 28638
+ - uid: 5327
+ components:
+ - type: Transform
+ pos: 122.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14826
+ - 14595
+ - 3459
+ - uid: 5328
+ components:
+ - type: Transform
+ pos: 122.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14596
+ - uid: 5335
+ components:
+ - type: Transform
+ pos: 122.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - uid: 5338
+ components:
+ - type: Transform
+ pos: 122.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - uid: 5363
+ components:
+ - type: Transform
+ pos: 123.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - 14844
+ - 14826
+ - 14595
+ - 3459
+ - uid: 5365
+ components:
+ - type: Transform
+ pos: 123.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14826
+ - 14595
+ - 14596
+ - uid: 5380
+ components:
+ - type: Transform
+ pos: 123.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - 28596
+ - 28597
+ - uid: 5388
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - 22635
+ - uid: 5389
+ components:
+ - type: Transform
+ pos: 123.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - uid: 5427
+ components:
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18615
+ - 18616
+ - uid: 5428
+ components:
+ - type: Transform
+ pos: 124.5,128.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - uid: 5466
+ components:
+ - type: Transform
+ pos: 124.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - 28596
+ - 28597
+ - uid: 5473
+ components:
+ - type: Transform
+ pos: 124.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - uid: 5476
+ components:
+ - type: Transform
+ pos: 124.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - uid: 5547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,20.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 1457
+ - uid: 5549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,18.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 1457
+ - uid: 5568
+ components:
+ - type: Transform
+ pos: 126.5,148.5
+ parent: 1
+ - uid: 5578
+ components:
+ - type: Transform
+ pos: 126.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 15935
+ - uid: 5585
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 164.5,126.5
+ parent: 1
+ - uid: 5602
+ components:
+ - type: Transform
+ pos: 126.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 5616
+ components:
+ - type: Transform
+ pos: 126.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22635
+ - 22634
+ - uid: 5617
+ components:
+ - type: Transform
+ pos: 126.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - uid: 5619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,31.5
+ parent: 1
+ - uid: 5648
+ components:
+ - type: Transform
+ pos: 128.5,141.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - 14601
+ - uid: 5649
+ components:
+ - type: Transform
+ pos: 128.5,130.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - 14600
+ - uid: 5655
+ components:
+ - type: Transform
+ pos: 128.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - 22635
+ - uid: 5669
+ components:
+ - type: Transform
+ pos: 129.5,145.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14601
+ - uid: 5687
+ components:
+ - type: Transform
+ pos: 129.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22158
+ - 22154
+ - 3062
+ - uid: 5711
+ components:
+ - type: Transform
+ pos: 130.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - 14599
+ - uid: 5724
+ components:
+ - type: Transform
+ pos: 130.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5725
+ components:
+ - type: Transform
+ pos: 130.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5726
+ components:
+ - type: Transform
+ pos: 130.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5743
+ components:
+ - type: Transform
+ pos: 130.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5744
+ components:
+ - type: Transform
+ pos: 130.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5745
+ components:
+ - type: Transform
+ pos: 130.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 28348
+ - 18539
+ - uid: 5756
+ components:
+ - type: Transform
+ pos: 130.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 5822
+ components:
+ - type: Transform
+ pos: 45.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10790
+ - 10732
+ - 10750
+ - uid: 5826
+ components:
+ - type: Transform
+ pos: 45.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10790
+ - 10732
+ - 10750
+ - uid: 5851
+ components:
+ - type: Transform
+ pos: 133.5,114.5
+ parent: 1
+ - uid: 5870
+ components:
+ - type: Transform
+ pos: 134.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - uid: 5889
+ components:
+ - type: Transform
+ pos: 134.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - 22270
+ - uid: 5918
+ components:
+ - type: Transform
+ pos: 135.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - uid: 5919
+ components:
+ - type: Transform
+ pos: 135.5,130.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - 14599
+ - uid: 5920
+ components:
+ - type: Transform
+ pos: 45.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10790
+ - 10732
+ - 10750
+ - uid: 5928
+ components:
+ - type: Transform
+ pos: 135.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - 18630
+ - 18634
+ - uid: 5929
+ components:
+ - type: Transform
+ pos: 135.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - 18630
+ - 18634
+ - uid: 5985
+ components:
+ - type: Transform
+ pos: 136.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22265
+ - 22267
+ - 3062
+ - uid: 5992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - uid: 5994
+ components:
+ - type: Transform
+ pos: 136.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22270
+ - uid: 6005
+ components:
+ - type: Transform
+ pos: 137.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6009
+ components:
+ - type: Transform
+ pos: 137.5,147.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,35.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - uid: 6022
+ components:
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - uid: 6036
+ components:
+ - type: Transform
+ pos: 137.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18615
+ - 18616
+ - 18630
+ - 18634
+ - uid: 6048
+ components:
+ - type: Transform
+ pos: 41.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 10730
+ - 3553
+ - uid: 6053
+ components:
+ - type: Transform
+ pos: 137.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 6054
+ components:
+ - type: Transform
+ pos: 137.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22265
+ - 22267
+ - uid: 6109
+ components:
+ - type: Transform
+ pos: 139.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - 18615
+ - 18616
+ - uid: 6115
+ components:
+ - type: Transform
+ pos: 139.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 6116
+ components:
+ - type: Transform
+ pos: 139.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22265
+ - 22267
+ - uid: 6117
+ components:
+ - type: Transform
+ pos: 139.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22252
+ - uid: 6127
+ components:
+ - type: Transform
+ pos: 140.5,146.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - 10326
+ - uid: 6168
+ components:
+ - type: Transform
+ pos: 141.5,154.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6174
+ components:
+ - type: Transform
+ pos: 141.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6178
+ components:
+ - type: Transform
+ pos: 141.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - uid: 6192
+ components:
+ - type: Transform
+ pos: 150.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30837
+ - 18621
+ - 20038
+ - uid: 6207
+ components:
+ - type: Transform
+ pos: 141.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22269
+ - uid: 6243
+ components:
+ - type: Transform
+ pos: 142.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6250
+ components:
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+ - uid: 6256
+ components:
+ - type: Transform
+ pos: 136.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18615
+ - 18616
+ - 18630
+ - 18634
+ - uid: 6272
+ components:
+ - type: Transform
+ pos: 143.5,154.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6278
+ components:
+ - type: Transform
+ pos: 143.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - 10326
+ - uid: 6298
+ components:
+ - type: Transform
+ pos: 143.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - uid: 6300
+ components:
+ - type: Transform
+ pos: 143.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - 18615
+ - 18616
+ - uid: 6337
+ components:
+ - type: Transform
+ pos: 144.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 3344
+ - uid: 6356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - 3062
+ - uid: 6360
+ components:
+ - type: Transform
+ pos: 144.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22269
+ - uid: 6413
+ components:
+ - type: Transform
+ pos: 145.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22209
+ - uid: 6414
+ components:
+ - type: Transform
+ pos: 145.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - uid: 6475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6511
+ components:
+ - type: Transform
+ pos: 147.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22265
+ - 22267
+ - uid: 6542
+ components:
+ - type: Transform
+ pos: 149.5,154.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29826
+ - 29830
+ - uid: 6546
+ components:
+ - type: Transform
+ pos: 149.5,144.5
+ parent: 1
+ - uid: 6592
+ components:
+ - type: Transform
+ pos: 150.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22258
+ - 22265
+ - 22267
+ - uid: 6600
+ components:
+ - type: Transform
+ pos: 150.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22246
+ - uid: 6604
+ components:
+ - type: Transform
+ pos: 150.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22229
+ - uid: 6605
+ components:
+ - type: Transform
+ pos: 150.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22229
+ - uid: 6611
+ components:
+ - type: Transform
+ pos: 82.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - 27671
+ - 28745
+ - 25419
+ - uid: 6612
+ components:
+ - type: Transform
+ pos: 151.5,154.5
+ parent: 1
+ - uid: 6624
+ components:
+ - type: Transform
+ pos: 151.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6667
+ components:
+ - type: Transform
+ pos: 152.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6669
+ components:
+ - type: Transform
+ pos: 152.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6688
+ components:
+ - type: Transform
+ pos: 153.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6702
+ components:
+ - type: Transform
+ pos: 153.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 6703
+ components:
+ - type: Transform
+ pos: 153.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 6708
+ components:
+ - type: Transform
+ pos: 153.5,84.5
+ parent: 1
+ - uid: 6729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 28943
+ - uid: 6730
+ components:
+ - type: Transform
+ pos: 65.5,36.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27671
+ - 25478
+ - uid: 6783
+ components:
+ - type: Transform
+ pos: 155.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6787
+ components:
+ - type: Transform
+ pos: 155.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29236
+ - uid: 6799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - uid: 6814
+ components:
+ - type: Transform
+ pos: 156.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6820
+ components:
+ - type: Transform
+ pos: 156.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - uid: 6828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 6836
+ components:
+ - type: Transform
+ pos: 156.5,77.5
+ parent: 1
+ - uid: 6837
+ components:
+ - type: Transform
+ pos: 156.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22246
+ - uid: 6852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 1457
+ - uid: 6869
+ components:
+ - type: Transform
+ pos: 157.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29236
+ - uid: 6870
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - uid: 6890
+ components:
+ - type: Transform
+ pos: 157.5,70.5
+ parent: 1
+ - uid: 6913
+ components:
+ - type: Transform
+ pos: 158.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6916
+ components:
+ - type: Transform
+ pos: 158.5,120.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29236
+ - uid: 6920
+ components:
+ - type: Transform
+ pos: 158.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 6921
+ components:
+ - type: Transform
+ pos: 158.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 6923
+ components:
+ - type: Transform
+ pos: 158.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 6924
+ components:
+ - type: Transform
+ pos: 158.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 6928
+ components:
+ - type: Transform
+ pos: 148.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30837
+ - 18621
+ - 20038
+ - uid: 6929
+ components:
+ - type: Transform
+ pos: 149.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30837
+ - 18621
+ - 20038
+ - uid: 6944
+ components:
+ - type: Transform
+ pos: 159.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 6990
+ components:
+ - type: Transform
+ pos: 159.5,46.5
+ parent: 1
+ - uid: 7033
+ components:
+ - type: Transform
+ pos: 160.5,57.5
+ parent: 1
+ - uid: 7044
+ components:
+ - type: Transform
+ pos: 161.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - uid: 7102
+ components:
+ - type: Transform
+ pos: 151.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - 22229
+ - uid: 7137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,31.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 7154
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,29.5
+ parent: 1
+ - uid: 8333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 8357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,30.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - 33284
+ - uid: 8526
+ components:
+ - type: Transform
+ pos: 107.5,28.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - uid: 8635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37459
+ - uid: 8673
+ components:
+ - type: Transform
+ pos: 147.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - 1588
+ - uid: 8854
+ components:
+ - type: Transform
+ pos: 116.5,170.5
+ parent: 1
+ - uid: 9254
+ components:
+ - type: Transform
+ pos: 133.5,142.5
+ parent: 1
+ - uid: 9300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - 14598
+ - uid: 9802
+ components:
+ - type: Transform
+ pos: 110.5,27.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 9823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - uid: 10317
+ components:
+ - type: Transform
+ pos: 130.5,149.5
+ parent: 1
+ - uid: 10318
+ components:
+ - type: Transform
+ pos: 126.5,153.5
+ parent: 1
+ - uid: 10700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - uid: 10726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - 28907
+ - 28745
+ - 25419
+ - uid: 10727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - 28907
+ - 28745
+ - 25419
+ - uid: 10747
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 27822
+ - 1303
+ - 28943
+ - uid: 10748
+ components:
+ - type: Transform
+ pos: 67.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 27822
+ - 1303
+ - 28943
+ - uid: 10749
+ components:
+ - type: Transform
+ pos: 66.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - 27822
+ - 1303
+ - 28943
+ - uid: 10792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - 27822
+ - 1303
+ - uid: 11103
+ components:
+ - type: Transform
+ pos: 97.5,36.5
+ parent: 1
+ - uid: 11336
+ components:
+ - type: Transform
+ pos: 109.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - 33285
+ - uid: 11366
+ components:
+ - type: Transform
+ pos: 142.5,131.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1588
+ - uid: 11520
+ components:
+ - type: Transform
+ pos: 157.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - 37358
+ - uid: 11539
+ components:
+ - type: Transform
+ pos: 153.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30837
+ - 18621
+ - 37358
+ - uid: 11687
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - uid: 12729
+ components:
+ - type: Transform
+ pos: 115.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 12735
+ components:
+ - type: Transform
+ pos: 114.5,26.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 12738
+ components:
+ - type: Transform
+ pos: 110.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - 33285
+ - uid: 12739
+ components:
+ - type: Transform
+ pos: 117.5,39.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 13207
+ components:
+ - type: Transform
+ pos: 37.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - uid: 13312
+ components:
+ - type: Transform
+ pos: 125.5,99.5
+ parent: 1
+ - uid: 13733
+ components:
+ - type: Transform
+ pos: 146.5,141.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - 29826
+ - 29830
+ - uid: 13734
+ components:
+ - type: Transform
+ pos: 145.5,141.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - 29826
+ - 29830
+ - uid: 13735
+ components:
+ - type: Transform
+ pos: 144.5,141.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29482
+ - 29481
+ - 29826
+ - 29830
+ - uid: 14749
+ components:
+ - type: Transform
+ pos: 88.5,38.5
+ parent: 1
+ - uid: 14793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,136.5
+ parent: 1
+ - uid: 14866
+ components:
+ - type: Transform
+ pos: 41.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 14973
+ components:
+ - type: Transform
+ pos: 41.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 15015
+ components:
+ - type: Transform
+ pos: 41.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - 10732
+ - 10790
+ - uid: 15071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,168.5
+ parent: 1
+ - uid: 15334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,149.5
+ parent: 1
+ - uid: 15434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 2486
+ - 15938
+ - uid: 15435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - 2486
+ - 15938
+ - uid: 15519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 15936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - 27985
+ - 27986
+ - uid: 15937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - 27985
+ - 27986
+ - uid: 15984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 36756
+ - uid: 16009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 16017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 36756
+ - uid: 16030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - uid: 16223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 20038
+ - uid: 16581
+ components:
+ - type: Transform
+ pos: 115.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - 28237
+ - 28247
+ - uid: 16582
+ components:
+ - type: Transform
+ pos: 116.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - 28237
+ - 28247
+ - uid: 16639
+ components:
+ - type: Transform
+ pos: 102.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - 26188
+ - uid: 16979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - uid: 17019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - 17013
+ - 17109
+ - uid: 17020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - uid: 17021
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - 17013
+ - 17109
+ - uid: 17022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - 17013
+ - 17109
+ - uid: 17710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,80.5
+ parent: 1
+ - uid: 18093
+ components:
+ - type: Transform
+ pos: 97.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - uid: 18632
+ components:
+ - type: Transform
+ pos: 137.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 18615
+ - 18616
+ - uid: 18633
+ components:
+ - type: Transform
+ pos: 137.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18630
+ - 18634
+ - 18615
+ - 18616
+ - uid: 18844
+ components:
+ - type: Transform
+ pos: 87.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30728
+ - uid: 19117
+ components:
+ - type: Transform
+ pos: 105.5,35.5
+ parent: 1
+ - uid: 19750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20357
+ - 20353
+ - uid: 19751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20357
+ - 20353
+ - uid: 19752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20341
+ - 20340
+ - 20357
+ - 20353
+ - uid: 20346
+ components:
+ - type: Transform
+ pos: 50.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20345
+ - 20350
+ - 20352
+ - uid: 20736
+ components:
+ - type: Transform
+ pos: 55.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27853
+ - 27854
+ - 27866
+ - 27728
+ - uid: 20737
+ components:
+ - type: Transform
+ pos: 56.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27853
+ - 27854
+ - 27866
+ - 27728
+ - uid: 20738
+ components:
+ - type: Transform
+ pos: 57.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27853
+ - 27854
+ - 27866
+ - 27728
+ - uid: 20739
+ components:
+ - type: Transform
+ pos: 61.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - 27985
+ - 27986
+ - uid: 20740
+ components:
+ - type: Transform
+ pos: 61.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - 27985
+ - 27986
+ - uid: 20741
+ components:
+ - type: Transform
+ pos: 61.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - 27985
+ - 27986
+ - uid: 20755
+ components:
+ - type: Transform
+ pos: 114.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26188
+ - 143
+ - uid: 21066
+ components:
+ - type: MetaData
+ name: glass firelock
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - 23328
+ - uid: 21389
+ components:
+ - type: Transform
+ pos: 143.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - 22265
+ - 22267
+ - uid: 21571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22158
+ - 22154
+ - 22160
+ - 22161
+ - uid: 21572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22158
+ - 22154
+ - 22160
+ - 22161
+ - uid: 21573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22158
+ - 22154
+ - 22160
+ - 22161
+ - uid: 21574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - 22163
+ - 22164
+ - uid: 21575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - 22163
+ - 22164
+ - uid: 21576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - 22161
+ - 22163
+ - 22164
+ - uid: 21577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22265
+ - 22267
+ - uid: 21677
+ components:
+ - type: Transform
+ pos: 145.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 18616
+ - 18615
+ - uid: 22230
+ components:
+ - type: Transform
+ pos: 140.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22163
+ - 22164
+ - 22252
+ - uid: 22259
+ components:
+ - type: Transform
+ pos: 140.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - uid: 22260
+ components:
+ - type: Transform
+ pos: 140.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - uid: 22261
+ components:
+ - type: Transform
+ pos: 142.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - 28488
+ - 28486
+ - uid: 22262
+ components:
+ - type: Transform
+ pos: 143.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - 28488
+ - 28486
+ - uid: 22275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - uid: 22276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - uid: 22419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - uid: 23305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - 28596
+ - 28597
+ - uid: 23306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - 28596
+ - 28597
+ - uid: 23307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,78.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28488
+ - 28486
+ - 28596
+ - 28597
+ - uid: 23364
+ components:
+ - type: Transform
+ pos: 89.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28741
+ - uid: 23375
+ components:
+ - type: Transform
+ pos: 52.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18183
+ - uid: 23406
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 15662
+ - uid: 23442
+ components:
+ - type: Transform
+ pos: 103.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - uid: 23633
+ components:
+ - type: Transform
+ pos: 54.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 18183
+ - uid: 23637
+ components:
+ - type: Transform
+ pos: 54.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 18183
+ - uid: 23644
+ components:
+ - type: Transform
+ pos: 45.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 3553
+ - 18183
+ - uid: 23847
+ components:
+ - type: Transform
+ pos: 126.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 15935
+ - uid: 23848
+ components:
+ - type: Transform
+ pos: 126.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28348
+ - 18539
+ - 15935
+ - uid: 23853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,128.5
+ parent: 1
+ - uid: 23856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3344
+ - uid: 24202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,147.5
+ parent: 1
+ - uid: 24286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,89.5
+ parent: 1
+ - uid: 24312
+ components:
+ - type: Transform
+ pos: 75.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - uid: 24349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26189
+ - 26188
+ - uid: 25505
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - uid: 25537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - 28229
+ - 30227
+ - uid: 25609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26189
+ - 26188
+ - uid: 25712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 143
+ - uid: 25713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 143
+ - uid: 25714
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26183
+ - uid: 25715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3966
+ - 25615
+ - 26183
+ - uid: 26174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - uid: 26210
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 1
+ - uid: 26471
+ components:
+ - type: Transform
+ pos: 125.5,100.5
+ parent: 1
+ - uid: 26556
+ components:
+ - type: Transform
+ pos: 126.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18539
+ - uid: 26668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,44.5
+ parent: 1
+ - uid: 27271
+ components:
+ - type: Transform
+ pos: 34.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - uid: 27513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28596
+ - 28597
+ - 28633
+ - 28634
+ - uid: 27514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28596
+ - 28597
+ - 28633
+ - 28634
+ - uid: 27515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,62.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28596
+ - 28597
+ - 28633
+ - 28634
+ - uid: 27516
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28745
+ - 25419
+ - uid: 27517
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28745
+ - 25419
+ - uid: 27518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28745
+ - 25419
+ - uid: 27639
+ components:
+ - type: Transform
+ pos: 119.5,24.5
+ parent: 1
+ - uid: 27649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 27657
+ components:
+ - type: Transform
+ pos: 108.5,21.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - 33285
+ - uid: 27658
+ components:
+ - type: Transform
+ pos: 121.5,26.5
+ parent: 1
+ - uid: 27815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 27825
+ - 27831
+ - uid: 27816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 27825
+ - 27831
+ - uid: 27817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27822
+ - 1303
+ - 27825
+ - 27831
+ - uid: 27818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 27853
+ - 27854
+ - uid: 27819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 27853
+ - 27854
+ - uid: 27820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27825
+ - 27831
+ - 27853
+ - 27854
+ - uid: 27977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - 28229
+ - 30227
+ - uid: 27978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - 28229
+ - 30227
+ - uid: 27979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27985
+ - 27986
+ - 28229
+ - 30227
+ - uid: 27980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,119.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28237
+ - 28247
+ - 443
+ - 28288
+ - uid: 27982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29482
+ - 29481
+ - uid: 27983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29482
+ - 29481
+ - uid: 27984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29230
+ - 29545
+ - 29482
+ - 29481
+ - uid: 28128
+ components:
+ - type: Transform
+ pos: 127.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 28348
+ - 18539
+ - uid: 28129
+ components:
+ - type: Transform
+ pos: 128.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 28348
+ - 18539
+ - uid: 28130
+ components:
+ - type: Transform
+ pos: 129.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 28348
+ - 18539
+ - uid: 28131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,119.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 29230
+ - 29545
+ - uid: 28132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 29230
+ - 29545
+ - uid: 28133
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 443
+ - 28288
+ - 29230
+ - 29545
+ - uid: 28193
+ components:
+ - type: Transform
+ pos: 53.5,118.5
+ parent: 1
+ - uid: 28230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27866
+ - 27728
+ - uid: 28437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28638
+ - uid: 28438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28633
+ - 28634
+ - 28638
+ - uid: 28531
+ components:
+ - type: Transform
+ pos: 135.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28594
+ - uid: 29188
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,19.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33284
+ - uid: 29235
+ components:
+ - type: Transform
+ pos: 153.5,127.5
+ parent: 1
+ - uid: 29238
+ components:
+ - type: Transform
+ pos: 160.5,130.5
+ parent: 1
+ - uid: 29822
+ components:
+ - type: Transform
+ pos: 150.5,148.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - 29826
+ - uid: 30037
+ components:
+ - type: Transform
+ pos: 100.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - 28741
+ - uid: 30043
+ components:
+ - type: Transform
+ pos: 106.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - 28745
+ - 25419
+ - uid: 30178
+ components:
+ - type: Transform
+ pos: 129.5,149.5
+ parent: 1
+ - uid: 30188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28745
+ - 25419
+ - uid: 30372
+ components:
+ - type: MetaData
+ name: lawyer's office glass firelock
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,37.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - uid: 30509
+ components:
+ - type: Transform
+ pos: 121.5,41.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33285
+ - uid: 30559
+ components:
+ - type: Transform
+ pos: 138.5,135.5
+ parent: 1
+ - uid: 30649
+ components:
+ - type: Transform
+ pos: 87.5,159.5
+ parent: 1
+ - uid: 30687
+ components:
+ - type: Transform
+ pos: 145.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 18616
+ - 18615
+ - uid: 30688
+ components:
+ - type: Transform
+ pos: 147.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - uid: 30843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18616
+ - 18615
+ - uid: 30960
+ components:
+ - type: Transform
+ pos: 123.5,34.5
+ parent: 1
+ - uid: 31870
+ components:
+ - type: Transform
+ pos: 160.5,61.5
+ parent: 1
+ - uid: 32008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - 15935
+ - uid: 32244
+ components:
+ - type: Transform
+ pos: 45.5,69.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 3553
+ - 18183
+ - uid: 32279
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,41.5
+ parent: 1
+ - uid: 32951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,160.5
+ parent: 1
+ - uid: 33172
+ components:
+ - type: Transform
+ pos: 89.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 33286
+ components:
+ - type: Transform
+ pos: 100.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 33283
+ - uid: 33313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,24.5
+ parent: 1
+ - uid: 33748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,38.5
+ parent: 1
+ - uid: 33750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,41.5
+ parent: 1
+ - uid: 33752
+ components:
+ - type: Transform
+ pos: 58.5,42.5
+ parent: 1
+ - uid: 33845
+ components:
+ - type: Transform
+ pos: 108.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - uid: 34108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,78.5
+ parent: 1
+ - uid: 34188
+ components:
+ - type: Transform
+ pos: 45.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - 19097
+ - 3553
+ - uid: 34303
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - uid: 34304
+ components:
+ - type: Transform
+ pos: 144.5,85.5
+ parent: 1
+ - uid: 34716
+ components:
+ - type: Transform
+ pos: 116.5,169.5
+ parent: 1
+ - uid: 34727
+ components:
+ - type: Transform
+ pos: 116.5,168.5
+ parent: 1
+ - uid: 34736
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - uid: 35646
+ components:
+ - type: Transform
+ pos: 134.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23328
+ - uid: 35667
+ components:
+ - type: Transform
+ pos: 52.5,120.5
+ parent: 1
+ - uid: 35735
+ components:
+ - type: Transform
+ pos: 17.5,107.5
+ parent: 1
+ - uid: 35800
+ components:
+ - type: Transform
+ pos: 160.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - uid: 35801
+ components:
+ - type: Transform
+ pos: 93.5,168.5
+ parent: 1
+ - uid: 35996
+ components:
+ - type: Transform
+ pos: 145.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - 30837
+ - 18616
+ - 18615
+ - uid: 36004
+ components:
+ - type: Transform
+ pos: 89.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - uid: 36166
+ components:
+ - type: Transform
+ pos: 59.5,126.5
+ parent: 1
+ - uid: 36282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,57.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - uid: 36755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,140.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - 36756
+ - uid: 36757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - 36756
+ - uid: 36976
+ components:
+ - type: Transform
+ pos: 101.5,169.5
+ parent: 1
+ - uid: 37138
+ components:
+ - type: Transform
+ pos: 163.5,146.5
+ parent: 1
+- proto: Fireplace
+ entities:
+ - uid: 13176
+ components:
+ - type: Transform
+ pos: 106.5,64.5
+ parent: 1
+ - uid: 13493
+ components:
+ - type: Transform
+ pos: 38.5,76.5
+ parent: 1
+ - uid: 26483
+ components:
+ - type: Transform
+ pos: 109.5,104.5
+ parent: 1
+ - uid: 26975
+ components:
+ - type: Transform
+ pos: 69.5,76.5
+ parent: 1
+ - uid: 27168
+ components:
+ - type: Transform
+ pos: 75.5,49.5
+ parent: 1
+ - uid: 34539
+ components:
+ - type: Transform
+ pos: 160.5,76.5
+ parent: 1
+- proto: Flash
+ entities:
+ - uid: 13645
+ components:
+ - type: Transform
+ pos: 32.98226,64.61545
+ parent: 1
+ - uid: 22743
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 135.30386,65.6239
+ parent: 1
+ - uid: 22953
+ components:
+ - type: Transform
+ pos: 144.52515,67.61508
+ parent: 1
+ - uid: 22954
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 154.3164,58.696693
+ parent: 1
+ - uid: 22955
+ components:
+ - type: Transform
+ pos: 152.02014,66.68728
+ parent: 1
+ - uid: 30328
+ components:
+ - type: Transform
+ pos: 95.6445,112.5665
+ parent: 1
+- proto: FlashlightLantern
+ entities:
+ - uid: 16136
+ components:
+ - type: Transform
+ pos: 93.5,121.5
+ parent: 1
+ - uid: 36664
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 94.45459,60.995117
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 19863
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 19863
+ - type: ActionsContainer
+- proto: FlashlightSeclite
+ entities:
+ - uid: 15306
+ components:
+ - type: Transform
+ pos: 153.5,152.5
+ parent: 1
+ - uid: 22657
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 153.14178,58.45595
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 20506
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20506
+ - type: ActionsContainer
+ - uid: 22658
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 155.35611,58.58867
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 20855
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 20855
+ - type: ActionsContainer
+- proto: FlippoLighter
+ entities:
+ - uid: 34597
+ components:
+ - type: Transform
+ pos: 155.76785,86.17871
+ parent: 1
+- proto: FloodlightBroken
+ entities:
+ - uid: 33535
+ components:
+ - type: Transform
+ pos: 116.779175,27.51175
+ parent: 1
+ - uid: 33536
+ components:
+ - type: Transform
+ pos: 116.279724,27.51175
+ parent: 1
+- proto: FloorDrain
+ entities:
+ - uid: 13485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,66.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17094
+ components:
+ - type: Transform
+ pos: 87.5,101.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 17964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,102.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 23058
+ components:
+ - type: Transform
+ pos: 129.5,49.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 23625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,84.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 25689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,93.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 28166
+ components:
+ - type: Transform
+ pos: 55.5,117.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+ - uid: 29576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,122.5
+ parent: 1
+ - type: Fixtures
+ fixtures: {}
+- proto: FloorTileItemEighties
+ entities:
+ - uid: 26453
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 124.5533,103.70149
+ parent: 1
+ - type: Stack
+ count: 30
+- proto: FloorTileItemSteel
+ entities:
+ - uid: 31766
+ components:
+ - type: Transform
+ rot: -100.53096491487331 rad
+ pos: 87.56043,86.67213
+ parent: 1
+ - type: Stack
+ count: 5
+- proto: FloorWaterEntity
+ entities:
+ - uid: 24108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,85.5
+ parent: 1
+ - uid: 24109
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,84.5
+ parent: 1
+ - uid: 24110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,83.5
+ parent: 1
+ - uid: 24111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,82.5
+ parent: 1
+ - uid: 24112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,81.5
+ parent: 1
+ - uid: 24113
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,85.5
+ parent: 1
+ - uid: 24114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,84.5
+ parent: 1
+ - uid: 24115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,83.5
+ parent: 1
+ - uid: 24116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,82.5
+ parent: 1
+ - uid: 24117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,81.5
+ parent: 1
+ - uid: 24118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,85.5
+ parent: 1
+ - uid: 24119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,84.5
+ parent: 1
+ - uid: 24120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,83.5
+ parent: 1
+ - uid: 24121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,82.5
+ parent: 1
+ - uid: 24122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,81.5
+ parent: 1
+ - uid: 24123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,85.5
+ parent: 1
+ - uid: 24124
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,84.5
+ parent: 1
+ - uid: 24125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,82.5
+ parent: 1
+ - uid: 24126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,81.5
+ parent: 1
+ - uid: 24127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,83.5
+ parent: 1
+- proto: FloraTree
+ entities:
+ - uid: 510
+ components:
+ - type: Transform
+ pos: 132.5,82.5
+ parent: 1
+ - uid: 511
+ components:
+ - type: Transform
+ pos: 137.5,82.5
+ parent: 1
+ - uid: 30631
+ components:
+ - type: Transform
+ pos: 80.2924,67.71148
+ parent: 1
+- proto: FloraTreeLarge
+ entities:
+ - uid: 23432
+ components:
+ - type: Transform
+ pos: 47.5,124.5
+ parent: 1
+ - uid: 32994
+ components:
+ - type: Transform
+ pos: 135.4169,80.63467
+ parent: 1
+- proto: FloraTreeStump
+ entities:
+ - uid: 30370
+ components:
+ - type: Transform
+ pos: 83.84448,67.888565
+ parent: 1
+- proto: FoamBlade
+ entities:
+ - uid: 26742
+ components:
+ - type: Transform
+ rot: -163.36281798666897 rad
+ pos: 107.63894,64.48506
+ parent: 1
+- proto: FoamCrossbow
+ entities:
+ - uid: 26739
+ components:
+ - type: Transform
+ rot: -163.36281798666897 rad
+ pos: 104.52089,64.69341
+ parent: 1
+- proto: FoamCutlass
+ entities:
+ - uid: 26740
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 107.667625,64.4946
+ parent: 1
+- proto: FolderSpawner
+ entities:
+ - uid: 4747
+ components:
+ - type: Transform
+ pos: 42.51443,46.481495
+ parent: 1
+ - uid: 13688
+ components:
+ - type: Transform
+ pos: 46.512775,66.11094
+ parent: 1
+ - uid: 13689
+ components:
+ - type: Transform
+ pos: 46.794025,66.5901
+ parent: 1
+ - uid: 13690
+ components:
+ - type: Transform
+ pos: 52.48501,61.60936
+ parent: 1
+ - uid: 13699
+ components:
+ - type: Transform
+ pos: 50.504868,21.575989
+ parent: 1
+ - uid: 13700
+ components:
+ - type: Transform
+ pos: 54.53611,26.513496
+ parent: 1
+ - uid: 13708
+ components:
+ - type: Transform
+ pos: 55.57418,52.593765
+ parent: 1
+ - uid: 23417
+ components:
+ - type: Transform
+ pos: 80.42439,53.24668
+ parent: 1
+ - uid: 23770
+ components:
+ - type: Transform
+ pos: 56.84047,59.38771
+ parent: 1
+ - uid: 23771
+ components:
+ - type: Transform
+ pos: 56.51408,59.693268
+ parent: 1
+ - uid: 23773
+ components:
+ - type: Transform
+ pos: 35.51894,91.40594
+ parent: 1
+ - uid: 23774
+ components:
+ - type: Transform
+ pos: 40.352272,89.33302
+ parent: 1
+ - uid: 28738
+ components:
+ - type: Transform
+ pos: 92.61783,48.61313
+ parent: 1
+ - uid: 35617
+ components:
+ - type: Transform
+ pos: 68.61028,164.4226
+ parent: 1
+- proto: FoodApple
+ entities:
+ - uid: 11962
+ components:
+ - type: Transform
+ pos: 102.5,161.5
+ parent: 1
+- proto: FoodBakedCookie
+ entities:
+ - uid: 34691
+ components:
+ - type: Transform
+ pos: 161.5,65.5
+ parent: 1
+- proto: FoodBakedCookieRaisin
+ entities:
+ - uid: 19554
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 56.406578,132.32835
+ parent: 1
+ - uid: 34024
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 56.859146,133.51724
+ parent: 1
+- proto: FoodBanana
+ entities:
+ - uid: 25170
+ components:
+ - type: Transform
+ pos: 49.5,48.5
+ parent: 1
+- proto: FoodBoxDonkpocketTeriyaki
+ entities:
+ - uid: 16583
+ components:
+ - type: Transform
+ pos: 128.5,134.5
+ parent: 1
+- proto: FoodBoxDonut
+ entities:
+ - uid: 30128
+ components:
+ - type: Transform
+ pos: 142.42981,138.46648
+ parent: 1
+- proto: FoodBoxPizzaFilled
+ entities:
+ - uid: 26684
+ components:
+ - type: Transform
+ pos: 120.50048,112.75305
+ parent: 1
+ - uid: 30442
+ components:
+ - type: Transform
+ pos: 124.55523,103.64611
+ parent: 1
+- proto: FoodBreadBaguette
+ entities:
+ - uid: 32296
+ components:
+ - type: Transform
+ rot: -194.7787445225668 rad
+ pos: 126.485794,43.59578
+ parent: 1
+- proto: FoodBreadMoldySlice
+ entities:
+ - uid: 18600
+ components:
+ - type: Transform
+ pos: 38.5,125.5
+ parent: 1
+ - uid: 22886
+ components:
+ - type: Transform
+ pos: 35.5,108.5
+ parent: 1
+ - uid: 33552
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 102.46174,28.731365
+ parent: 1
+ - uid: 34540
+ components:
+ - type: Transform
+ pos: 162.5,48.5
+ parent: 1
+- proto: FoodBreadPlain
+ entities:
+ - uid: 37391
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 75.449486,67.63112
+ parent: 1
+- proto: FoodBurgerMcrib
+ entities:
+ - uid: 23117
+ components:
+ - type: Transform
+ pos: 147.60422,52.473843
+ parent: 1
+- proto: FoodBurgerMime
+ entities:
+ - uid: 26767
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 99.53356,60.41597
+ parent: 1
+- proto: FoodBurgerRobot
+ entities:
+ - uid: 20416
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 63.502007,96.42015
+ parent: 1
+- proto: FoodBurgerXeno
+ entities:
+ - uid: 20475
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 33.511524,107.538055
+ parent: 1
+- proto: FoodCakeAppleSlice
+ entities:
+ - uid: 34564
+ components:
+ - type: Transform
+ pos: 158.5,75.5
+ parent: 1
+- proto: FoodCakeSpacemanSlice
+ entities:
+ - uid: 32105
+ components:
+ - type: MetaData
+ desc: A spaceman's trumpet frosted cake.
+ name: slice of spacemann's cake
+ - type: Transform
+ pos: 110.482544,99.59047
+ parent: 1
+- proto: FoodCartCold
+ entities:
+ - uid: 33267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,91.5
+ parent: 1
+- proto: FoodCartHot
+ entities:
+ - uid: 37427
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,96.5
+ parent: 1
+- proto: FoodCondimentBottleEnzyme
+ entities:
+ - uid: 27380
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 117.7593,101.903946
+ parent: 1
+- proto: FoodCondimentBottleHotsauce
+ entities:
+ - uid: 26643
+ components:
+ - type: Transform
+ pos: 112.283844,104.58257
+ parent: 1
+- proto: FoodCondimentBottleKetchup
+ entities:
+ - uid: 26642
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 112.627594,104.57216
+ parent: 1
+- proto: FoodDonutCaramel
+ entities:
+ - uid: 10311
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 140.70483,142.64963
+ parent: 1
+- proto: FoodDonutChocolate
+ entities:
+ - uid: 10310
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 140.45483,142.38112
+ parent: 1
+- proto: FoodDonutHomer
+ entities:
+ - uid: 10325
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 140.2465,142.64038
+ parent: 1
+- proto: FoodDonutSpaceman
+ entities:
+ - uid: 10312
+ components:
+ - type: Transform
+ pos: 137.5347,145.6211
+ parent: 1
+- proto: FoodFrozenFreezy
+ entities:
+ - uid: 26450
+ components:
+ - type: Transform
+ pos: 119.5,94.5
+ parent: 1
+- proto: FoodFrozenSandwichStrawberry
+ entities:
+ - uid: 19955
+ components:
+ - type: Transform
+ pos: 119.61484,93.92325
+ parent: 1
+- proto: FoodFrozenSnowconeClown
+ entities:
+ - uid: 27405
+ components:
+ - type: Transform
+ pos: 107.220566,56.786407
+ parent: 1
+- proto: FoodFrozenSnowconeMime
+ entities:
+ - uid: 27406
+ components:
+ - type: Transform
+ pos: 98.604836,60.272522
+ parent: 1
+- proto: FoodGrape
+ entities:
+ - uid: 19558
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 56.71238,132.77524
+ parent: 1
+ - uid: 32991
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 57.18892,134.0457
+ parent: 1
+ - uid: 34021
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 56.659832,134.83932
+ parent: 1
+- proto: FoodMeat
+ entities:
+ - uid: 34524
+ components:
+ - type: Transform
+ pos: 156.31778,42.554203
+ parent: 1
+ - uid: 34528
+ components:
+ - type: Transform
+ pos: 155.89923,43.995697
+ parent: 1
+ - uid: 34535
+ components:
+ - type: Transform
+ rot: -175.9291886010281 rad
+ pos: 156.52957,43.19607
+ parent: 1
+- proto: FoodMeatRotten
+ entities:
+ - uid: 33559
+ components:
+ - type: Transform
+ pos: 122.5,38.5
+ parent: 1
+- proto: FoodNoodlesSpesslaw
+ entities:
+ - uid: 1523
+ components:
+ - type: Transform
+ rot: -113.09733552923244 rad
+ pos: 106.15585,39.57194
+ parent: 1
+- proto: FoodPieBananaCream
+ entities:
+ - uid: 26772
+ components:
+ - type: Transform
+ pos: 106.21408,56.485596
+ parent: 1
+ - uid: 26773
+ components:
+ - type: Transform
+ pos: 106.24803,56.72942
+ parent: 1
+- proto: FoodPizzaMoldySlice
+ entities:
+ - uid: 9266
+ components:
+ - type: Transform
+ pos: 42.5,123.5
+ parent: 1
+ - uid: 16335
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 33.648132,115.63224
+ parent: 1
+ - uid: 33550
+ components:
+ - type: Transform
+ rot: -1.3100631690576847E-14 rad
+ pos: 98.85063,26.207417
+ parent: 1
+ - uid: 33561
+ components:
+ - type: Transform
+ pos: 122.58568,36.756916
+ parent: 1
+ - uid: 33562
+ components:
+ - type: Transform
+ pos: 122.25235,36.770805
+ parent: 1
+ - uid: 33563
+ components:
+ - type: Transform
+ pos: 122.1829,36.45136
+ parent: 1
+ - uid: 33564
+ components:
+ - type: Transform
+ pos: 122.53012,36.45136
+ parent: 1
+ - uid: 34541
+ components:
+ - type: Transform
+ pos: 161.5,50.5
+ parent: 1
+- proto: FoodPlate
+ entities:
+ - uid: 1936
+ components:
+ - type: Transform
+ rot: -113.09733552923244 rad
+ pos: 106.16974,39.620552
+ parent: 1
+ - uid: 4102
+ components:
+ - type: Transform
+ pos: 46.499126,50.44821
+ parent: 1
+ - uid: 23037
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+ - uid: 25168
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 46.494495,50.749138
+ parent: 1
+ - uid: 26571
+ components:
+ - type: Transform
+ pos: 113.478195,97.01262
+ parent: 1
+ - uid: 26572
+ components:
+ - type: Transform
+ pos: 113.48437,96.51262
+ parent: 1
+ - uid: 26573
+ components:
+ - type: Transform
+ pos: 112.48128,96.51879
+ parent: 1
+ - uid: 26574
+ components:
+ - type: Transform
+ pos: 112.478195,97.00645
+ parent: 1
+ - uid: 26577
+ components:
+ - type: Transform
+ pos: 112.48335,96.76889
+ parent: 1
+ - uid: 26578
+ components:
+ - type: Transform
+ pos: 113.46483,96.76889
+ parent: 1
+- proto: FoodPlateSmallTrash
+ entities:
+ - uid: 33539
+ components:
+ - type: Transform
+ pos: 100.27154,26.038002
+ parent: 1
+- proto: FoodPlateTin
+ entities:
+ - uid: 26582
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 122.460686,104.14006
+ parent: 1
+ - uid: 26583
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 122.54402,103.79284
+ parent: 1
+- proto: FoodPoppy
+ entities:
+ - uid: 27411
+ components:
+ - type: Transform
+ pos: 82.69254,76.55759
+ parent: 1
+ - uid: 36006
+ components:
+ - type: Transform
+ pos: 48.964294,122.71123
+ parent: 1
+ - uid: 36007
+ components:
+ - type: Transform
+ pos: 46.818462,124.63484
+ parent: 1
+- proto: FoodRiceGumbo
+ entities:
+ - uid: 21604
+ components:
+ - type: Transform
+ pos: 110.51361,57.701256
+ parent: 1
+- proto: FoodSaladValid
+ entities:
+ - uid: 23127
+ components:
+ - type: Transform
+ pos: 148.48964,48.713425
+ parent: 1
+- proto: FoodShakerPepper
+ entities:
+ - uid: 26609
+ components:
+ - type: Transform
+ pos: 118.5,108.5
+ parent: 1
+- proto: FoodShakerSalt
+ entities:
+ - uid: 18574
+ components:
+ - type: Transform
+ pos: 42.5,124.5
+ parent: 1
+ - uid: 26608
+ components:
+ - type: Transform
+ pos: 98.5,108.5
+ parent: 1
+- proto: FoodSnackEnergy
+ entities:
+ - uid: 26889
+ components:
+ - type: Transform
+ pos: 98.5296,84.59
+ parent: 1
+- proto: FoodSnackPopcorn
+ entities:
+ - uid: 26875
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 105.945145,72.56824
+ parent: 1
+- proto: FoodSnackRaisins
+ entities:
+ - uid: 55
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 59.725636,133.70143
+ parent: 1
+ - uid: 66
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 56.3183,134.3746
+ parent: 1
+ - uid: 34022
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 57.6564,133.54198
+ parent: 1
+- proto: FoodSnackSemki
+ entities:
+ - uid: 5084
+ components:
+ - type: Transform
+ pos: 97.809265,96.53194
+ parent: 1
+ - uid: 5116
+ components:
+ - type: Transform
+ pos: 97.50744,96.64693
+ parent: 1
+- proto: FoodSnackSyndi
+ entities:
+ - uid: 33567
+ components:
+ - type: Transform
+ pos: 122.55096,37.52775
+ parent: 1
+- proto: FoodSoupChiliClown
+ entities:
+ - uid: 26747
+ components:
+ - type: Transform
+ pos: 107.46935,56.64298
+ parent: 1
+- proto: FoodSoupChiliHot
+ entities:
+ - uid: 27384
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 118.26624,102.43867
+ parent: 1
+- proto: FoodSoupClown
+ entities:
+ - uid: 30031
+ components:
+ - type: Transform
+ pos: 145.46883,60.96853
+ parent: 1
+- proto: FoodSoupEscargot
+ entities:
+ - uid: 7988
+ components:
+ - type: Transform
+ rot: -201.06192982974636 rad
+ pos: 126.78421,43.42259
+ parent: 1
+- proto: FoodTartGrape
+ entities:
+ - uid: 19557
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 56.37808,132.98724
+ parent: 1
+- proto: FoodTinBeans
+ entities:
+ - uid: 33510
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 98.51259,28.553677
+ parent: 1
+- proto: FoodTinPeachesMaint
+ entities:
+ - uid: 33504
+ components:
+ - type: Transform
+ pos: 101.61907,27.424046
+ parent: 1
+ - uid: 34068
+ components:
+ - type: Transform
+ pos: 53.503582,44.877876
+ parent: 1
+ - uid: 34544
+ components:
+ - type: Transform
+ rot: -194.7787445225668 rad
+ pos: 161.25739,45.757877
+ parent: 1
+- proto: Fork
+ entities:
+ - uid: 26594
+ components:
+ - type: Transform
+ pos: 104.31464,104.51566
+ parent: 1
+ - uid: 27381
+ components:
+ - type: Transform
+ pos: 104.4918,104.48849
+ parent: 1
+- proto: ForkPlastic
+ entities:
+ - uid: 23040
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 129.15233,50.581802
+ parent: 1
+- proto: FrenchHornInstrument
+ entities:
+ - uid: 7989
+ components:
+ - type: Transform
+ pos: 127.5,43.5
+ parent: 1
+ - uid: 31925
+ components:
+ - type: Transform
+ pos: 132.5,72.5
+ parent: 1
+- proto: GameMasterCircuitBoard
+ entities:
+ - uid: 13262
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.632015,39.10709
+ parent: 1
+- proto: GasAnalyzer
+ entities:
+ - uid: 20940
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 46.37894,103.55269
+ parent: 1
+- proto: GasCanisterBrokenBase
+ entities:
+ - uid: 32078
+ components:
+ - type: Transform
+ pos: 52.5,147.5
+ parent: 1
+ - uid: 33537
+ components:
+ - type: Transform
+ pos: 120.5,22.5
+ parent: 1
+ - uid: 33538
+ components:
+ - type: Transform
+ pos: 118.5,23.5
+ parent: 1
+- proto: GasFilter
+ entities:
+ - uid: 34495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,45.5
+ parent: 1
+- proto: GasFilterFlipped
+ entities:
+ - uid: 4386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,37.5
+ parent: 1
+ - uid: 16959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasMinerCarbonDioxide
+ entities:
+ - uid: 30677
+ components:
+ - type: Transform
+ pos: 63.5,143.5
+ parent: 1
+- proto: GasMinerNitrogen
+ entities:
+ - uid: 30626
+ components:
+ - type: Transform
+ pos: 64.5,131.5
+ parent: 1
+- proto: GasMinerOxygenStationLarge
+ entities:
+ - uid: 35068
+ components:
+ - type: Transform
+ pos: 65.5,127.5
+ parent: 1
+- proto: GasMinerWaterVapor
+ entities:
+ - uid: 30807
+ components:
+ - type: Transform
+ pos: 63.5,135.5
+ parent: 1
+- proto: GasMixer
+ entities:
+ - uid: 36921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+- proto: GasOutletInjector
+ entities:
+ - uid: 7375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7378
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 19678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 36930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36931
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,130.5
+ parent: 1
+- proto: GasPassiveVent
+ entities:
+ - uid: 7382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7383
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7384
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7386
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7388
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,110.5
+ parent: 1
+ - uid: 19680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 25731
+ components:
+ - type: Transform
+ pos: 117.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 36918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,132.5
+ parent: 1
+- proto: GasPipeBend
+ entities:
+ - uid: 151
+ components:
+ - type: Transform
+ pos: 72.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 175
+ components:
+ - type: Transform
+ pos: 98.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 177
+ components:
+ - type: Transform
+ pos: 91.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 821
+ components:
+ - type: Transform
+ pos: 53.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 866
+ components:
+ - type: Transform
+ pos: 52.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1138
+ components:
+ - type: Transform
+ pos: 67.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1428
+ components:
+ - type: Transform
+ pos: 151.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1744
+ components:
+ - type: Transform
+ pos: 157.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2660
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 3001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3090
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3103
+ components:
+ - type: Transform
+ pos: 138.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3150
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3581
+ components:
+ - type: Transform
+ pos: 150.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4320
+ components:
+ - type: Transform
+ pos: 89.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4428
+ components:
+ - type: Transform
+ pos: 63.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4739
+ components:
+ - type: Transform
+ pos: 143.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4833
+ components:
+ - type: Transform
+ pos: 135.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5265
+ components:
+ - type: Transform
+ pos: 88.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5413
+ components:
+ - type: Transform
+ pos: 123.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5456
+ components:
+ - type: Transform
+ pos: 57.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5734
+ components:
+ - type: Transform
+ pos: 97.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6501
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6995
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7300
+ components:
+ - type: Transform
+ pos: 165.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7393
+ components:
+ - type: Transform
+ pos: 89.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7672
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7675
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7766
+ components:
+ - type: Transform
+ pos: 91.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8202
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8353
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8354
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8636
+ components:
+ - type: Transform
+ pos: 83.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8739
+ components:
+ - type: Transform
+ pos: 44.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9120
+ components:
+ - type: Transform
+ pos: 121.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9121
+ components:
+ - type: Transform
+ pos: 123.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9268
+ components:
+ - type: Transform
+ pos: 35.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9387
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9461
+ components:
+ - type: Transform
+ pos: 113.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9504
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9505
+ components:
+ - type: Transform
+ pos: 113.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9676
+ components:
+ - type: Transform
+ pos: 96.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9767
+ components:
+ - type: Transform
+ pos: 65.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9770
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9772
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9773
+ components:
+ - type: Transform
+ pos: 57.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9774
+ components:
+ - type: Transform
+ pos: 59.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9775
+ components:
+ - type: Transform
+ pos: 61.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9778
+ components:
+ - type: Transform
+ pos: 55.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9826
+ components:
+ - type: Transform
+ pos: 135.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10334
+ components:
+ - type: Transform
+ pos: 153.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10488
+ components:
+ - type: Transform
+ pos: 22.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10490
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10495
+ components:
+ - type: Transform
+ pos: 28.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10503
+ components:
+ - type: Transform
+ pos: 43.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10570
+ components:
+ - type: Transform
+ pos: 49.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10571
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10608
+ components:
+ - type: Transform
+ pos: 51.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10670
+ components:
+ - type: Transform
+ pos: 38.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10671
+ components:
+ - type: Transform
+ pos: 39.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10672
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10673
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11180
+ components:
+ - type: Transform
+ pos: 162.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11182
+ components:
+ - type: Transform
+ pos: 157.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11410
+ components:
+ - type: Transform
+ pos: 162.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11869
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11899
+ components:
+ - type: Transform
+ pos: 69.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12041
+ components:
+ - type: Transform
+ pos: 148.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12933
+ components:
+ - type: Transform
+ pos: 52.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13163
+ components:
+ - type: Transform
+ pos: 50.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14047
+ components:
+ - type: Transform
+ pos: 97.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14544
+ components:
+ - type: Transform
+ pos: 125.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14559
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14611
+ components:
+ - type: Transform
+ pos: 119.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14643
+ components:
+ - type: Transform
+ pos: 104.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14660
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14670
+ components:
+ - type: Transform
+ pos: 75.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14721
+ components:
+ - type: Transform
+ pos: 60.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14816
+ components:
+ - type: Transform
+ pos: 61.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14823
+ components:
+ - type: Transform
+ pos: 125.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14829
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14839
+ components:
+ - type: Transform
+ pos: 91.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15277
+ components:
+ - type: Transform
+ pos: 128.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15333
+ components:
+ - type: Transform
+ pos: 138.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15337
+ components:
+ - type: Transform
+ pos: 131.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15438
+ components:
+ - type: Transform
+ pos: 71.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,136.5
+ parent: 1
+ - uid: 16673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16715
+ components:
+ - type: Transform
+ pos: 83.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16747
+ components:
+ - type: Transform
+ pos: 68.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16776
+ components:
+ - type: Transform
+ pos: 62.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16874
+ components:
+ - type: Transform
+ pos: 95.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16887
+ components:
+ - type: Transform
+ pos: 65.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16907
+ components:
+ - type: Transform
+ pos: 72.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16947
+ components:
+ - type: Transform
+ pos: 72.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16949
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16973
+ components:
+ - type: Transform
+ pos: 67.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16989
+ components:
+ - type: Transform
+ pos: 88.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17056
+ components:
+ - type: Transform
+ pos: 89.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17065
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17069
+ components:
+ - type: Transform
+ pos: 52.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17084
+ components:
+ - type: Transform
+ pos: 64.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18249
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18389
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18405
+ components:
+ - type: Transform
+ pos: 147.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18444
+ components:
+ - type: Transform
+ pos: 158.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18478
+ components:
+ - type: Transform
+ pos: 96.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18500
+ components:
+ - type: Transform
+ pos: 140.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18506
+ components:
+ - type: Transform
+ pos: 161.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18549
+ components:
+ - type: Transform
+ pos: 71.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18647
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18717
+ components:
+ - type: Transform
+ pos: 25.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19041
+ components:
+ - type: Transform
+ pos: 48.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19350
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19545
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19628
+ components:
+ - type: Transform
+ pos: 38.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19658
+ components:
+ - type: Transform
+ pos: 39.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19695
+ components:
+ - type: Transform
+ pos: 42.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19769
+ components:
+ - type: Transform
+ pos: 31.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19835
+ components:
+ - type: Transform
+ pos: 40.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20392
+ components:
+ - type: Transform
+ pos: 39.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21443
+ components:
+ - type: Transform
+ pos: 139.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21479
+ components:
+ - type: Transform
+ pos: 129.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21617
+ components:
+ - type: Transform
+ pos: 126.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21618
+ components:
+ - type: Transform
+ pos: 128.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21694
+ components:
+ - type: Transform
+ pos: 158.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21715
+ components:
+ - type: Transform
+ pos: 149.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21778
+ components:
+ - type: Transform
+ pos: 144.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22175
+ components:
+ - type: Transform
+ pos: 149.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22224
+ components:
+ - type: Transform
+ pos: 154.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22563
+ components:
+ - type: Transform
+ pos: 130.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22586
+ components:
+ - type: Transform
+ pos: 122.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22590
+ components:
+ - type: Transform
+ pos: 160.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22596
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23179
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23181
+ components:
+ - type: Transform
+ pos: 124.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23264
+ components:
+ - type: Transform
+ pos: 106.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23288
+ components:
+ - type: Transform
+ pos: 120.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23479
+ components:
+ - type: Transform
+ pos: 135.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,37.5
+ parent: 1
+ - uid: 23517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23519
+ components:
+ - type: Transform
+ pos: 22.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23537
+ components:
+ - type: Transform
+ pos: 94.5,37.5
+ parent: 1
+ - uid: 23551
+ components:
+ - type: Transform
+ pos: 52.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23570
+ components:
+ - type: Transform
+ pos: 64.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 160.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23583
+ components:
+ - type: Transform
+ pos: 28.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23595
+ components:
+ - type: Transform
+ pos: 20.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23662
+ components:
+ - type: Transform
+ pos: 159.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23669
+ components:
+ - type: Transform
+ pos: 94.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23673
+ components:
+ - type: Transform
+ pos: 112.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23739
+ components:
+ - type: Transform
+ pos: 141.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24247
+ components:
+ - type: Transform
+ pos: 147.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24248
+ components:
+ - type: Transform
+ pos: 150.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24249
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24781
+ components:
+ - type: Transform
+ pos: 64.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24784
+ components:
+ - type: Transform
+ pos: 61.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25123
+ components:
+ - type: Transform
+ pos: 155.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25124
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25191
+ components:
+ - type: Transform
+ pos: 37.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25221
+ components:
+ - type: Transform
+ pos: 116.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25280
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25284
+ components:
+ - type: Transform
+ pos: 111.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25658
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25670
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25674
+ components:
+ - type: Transform
+ pos: 98.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25675
+ components:
+ - type: Transform
+ pos: 100.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25710
+ components:
+ - type: Transform
+ pos: 122.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 25802
+ components:
+ - type: Transform
+ pos: 112.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25934
+ components:
+ - type: Transform
+ pos: 102.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25942
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25945
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25978
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26015
+ components:
+ - type: Transform
+ pos: 86.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26017
+ components:
+ - type: Transform
+ pos: 89.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26097
+ components:
+ - type: Transform
+ pos: 106.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26099
+ components:
+ - type: Transform
+ pos: 114.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26452
+ components:
+ - type: Transform
+ pos: 137.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28217
+ components:
+ - type: Transform
+ pos: 63.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28533
+ components:
+ - type: Transform
+ pos: 58.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28541
+ components:
+ - type: Transform
+ pos: 151.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28543
+ components:
+ - type: Transform
+ pos: 157.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29148
+ components:
+ - type: Transform
+ pos: 92.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29227
+ components:
+ - type: Transform
+ pos: 154.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29228
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29250
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29252
+ components:
+ - type: Transform
+ pos: 144.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30179
+ components:
+ - type: Transform
+ pos: 136.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30382
+ components:
+ - type: Transform
+ pos: 137.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32431
+ components:
+ - type: Transform
+ pos: 164.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33254
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33256
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33257
+ components:
+ - type: Transform
+ pos: 105.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34071
+ components:
+ - type: Transform
+ pos: 102.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34130
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34306
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34357
+ components:
+ - type: Transform
+ pos: 152.5,45.5
+ parent: 1
+ - uid: 34970
+ components:
+ - type: Transform
+ pos: 52.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35011
+ components:
+ - type: Transform
+ pos: 163.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35455
+ components:
+ - type: Transform
+ pos: 99.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,171.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36402
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36494
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36588
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,171.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36753
+ components:
+ - type: Transform
+ pos: 87.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,146.5
+ parent: 1
+ - uid: 36900
+ components:
+ - type: Transform
+ pos: 81.5,148.5
+ parent: 1
+ - uid: 36902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36903
+ components:
+ - type: Transform
+ pos: 84.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36996
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 18.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36997
+ components:
+ - type: Transform
+ pos: 21.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,110.5
+ parent: 1
+ - uid: 37211
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeFourway
+ entities:
+ - uid: 96
+ components:
+ - type: Transform
+ pos: 147.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 234
+ components:
+ - type: Transform
+ pos: 42.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 244
+ components:
+ - type: Transform
+ pos: 42.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 246
+ components:
+ - type: Transform
+ pos: 44.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1112
+ components:
+ - type: Transform
+ pos: 148.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1329
+ components:
+ - type: Transform
+ pos: 118.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1518
+ components:
+ - type: Transform
+ pos: 149.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2498
+ components:
+ - type: Transform
+ pos: 66.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3406
+ components:
+ - type: Transform
+ pos: 123.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3582
+ components:
+ - type: Transform
+ pos: 148.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3711
+ components:
+ - type: Transform
+ pos: 143.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4714
+ components:
+ - type: Transform
+ pos: 62.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4912
+ components:
+ - type: Transform
+ pos: 105.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5090
+ components:
+ - type: Transform
+ pos: 93.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5424
+ components:
+ - type: Transform
+ pos: 123.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7423
+ components:
+ - type: Transform
+ pos: 93.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7486
+ components:
+ - type: Transform
+ pos: 121.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7532
+ components:
+ - type: Transform
+ pos: 55.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8166
+ components:
+ - type: Transform
+ pos: 42.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15280
+ components:
+ - type: Transform
+ pos: 126.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16765
+ components:
+ - type: Transform
+ pos: 57.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16855
+ components:
+ - type: Transform
+ pos: 91.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19462
+ components:
+ - type: Transform
+ pos: 117.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20174
+ components:
+ - type: Transform
+ pos: 82.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21386
+ components:
+ - type: Transform
+ pos: 44.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21436
+ components:
+ - type: Transform
+ pos: 126.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21482
+ components:
+ - type: Transform
+ pos: 139.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21620
+ components:
+ - type: Transform
+ pos: 126.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21714
+ components:
+ - type: Transform
+ pos: 147.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22607
+ components:
+ - type: Transform
+ pos: 133.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23346
+ components:
+ - type: Transform
+ pos: 95.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25311
+ components:
+ - type: Transform
+ pos: 88.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeSensorDistribution
+ entities:
+ - uid: 26271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeSensorMixedAir
+ entities:
+ - uid: 19729
+ components:
+ - type: MetaData
+ name: gas pipe sensor (Cryogenics)
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,91.5
+ parent: 1
+ - type: Label
+ currentLabel: Cryogenics
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - type: NameModifier
+ baseName: gas pipe sensor
+ - uid: 19734
+ components:
+ - type: MetaData
+ name: gas pipe sensor (Server room)
+ - type: Transform
+ pos: 46.5,107.5
+ parent: 1
+ - type: Label
+ currentLabel: Server room
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - type: NameModifier
+ baseName: gas pipe sensor
+ - uid: 19744
+ components:
+ - type: MetaData
+ name: gas pipe sensor (Freezer)
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,91.5
+ parent: 1
+ - type: Label
+ currentLabel: Freezer
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - type: NameModifier
+ baseName: gas pipe sensor
+- proto: GasPipeSensorTEGCold
+ entities:
+ - uid: 36884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+- proto: GasPipeSensorTEGHot
+ entities:
+ - uid: 36896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+- proto: GasPipeSensorWaste
+ entities:
+ - uid: 26272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasPipeStraight
+ entities:
+ - uid: 37
+ components:
+ - type: Transform
+ pos: 149.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 180
+ components:
+ - type: Transform
+ pos: 63.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 183
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 189
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 196
+ components:
+ - type: Transform
+ pos: 147.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 237
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 470
+ components:
+ - type: Transform
+ pos: 47.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 578
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1214
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1215
+ components:
+ - type: Transform
+ pos: 149.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1354
+ components:
+ - type: Transform
+ pos: 101.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1452
+ components:
+ - type: Transform
+ pos: 150.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1541
+ components:
+ - type: Transform
+ pos: 146.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1552
+ components:
+ - type: Transform
+ pos: 146.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1742
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1938
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2082
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2273
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2304
+ components:
+ - type: Transform
+ pos: 82.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 2508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2609
+ components:
+ - type: Transform
+ pos: 84.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2725
+ components:
+ - type: Transform
+ pos: 94.5,35.5
+ parent: 1
+ - uid: 2808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3088
+ components:
+ - type: Transform
+ pos: 137.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3089
+ components:
+ - type: Transform
+ pos: 137.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3093
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3095
+ components:
+ - type: Transform
+ pos: 122.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,163.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3172
+ components:
+ - type: Transform
+ pos: 87.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3254
+ components:
+ - type: Transform
+ pos: 131.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3255
+ components:
+ - type: Transform
+ pos: 131.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3256
+ components:
+ - type: Transform
+ pos: 131.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3258
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3282
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3295
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3366
+ components:
+ - type: Transform
+ pos: 72.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3373
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3390
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3477
+ components:
+ - type: Transform
+ pos: 127.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3602
+ components:
+ - type: Transform
+ pos: 84.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3612
+ components:
+ - type: Transform
+ pos: 55.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3643
+ components:
+ - type: Transform
+ pos: 82.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 3680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3690
+ components:
+ - type: Transform
+ pos: 108.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3702
+ components:
+ - type: Transform
+ pos: 108.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3720
+ components:
+ - type: Transform
+ pos: 28.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,130.5
+ parent: 1
+ - uid: 4028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4039
+ components:
+ - type: Transform
+ pos: 47.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4051
+ components:
+ - type: Transform
+ pos: 90.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4096
+ components:
+ - type: Transform
+ pos: 47.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4115
+ components:
+ - type: Transform
+ pos: 106.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4117
+ components:
+ - type: Transform
+ pos: 106.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4118
+ components:
+ - type: Transform
+ pos: 106.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4161
+ components:
+ - type: Transform
+ pos: 61.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4194
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4211
+ components:
+ - type: Transform
+ pos: 96.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4319
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4367
+ components:
+ - type: Transform
+ pos: 84.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4375
+ components:
+ - type: Transform
+ pos: 92.5,36.5
+ parent: 1
+ - uid: 4414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4421
+ components:
+ - type: Transform
+ pos: 92.5,35.5
+ parent: 1
+ - uid: 4425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4427
+ components:
+ - type: Transform
+ pos: 86.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4457
+ components:
+ - type: Transform
+ pos: 72.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4536
+ components:
+ - type: Transform
+ pos: 91.5,35.5
+ parent: 1
+ - uid: 4561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4707
+ components:
+ - type: Transform
+ pos: 137.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4803
+ components:
+ - type: Transform
+ pos: 91.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4838
+ components:
+ - type: Transform
+ pos: 103.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4873
+ components:
+ - type: Transform
+ pos: 84.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4943
+ components:
+ - type: Transform
+ pos: 84.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5009
+ components:
+ - type: Transform
+ pos: 143.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5011
+ components:
+ - type: Transform
+ pos: 143.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5018
+ components:
+ - type: Transform
+ pos: 137.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5200
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5202
+ components:
+ - type: Transform
+ pos: 47.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5460
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5461
+ components:
+ - type: Transform
+ pos: 57.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5730
+ components:
+ - type: Transform
+ pos: 89.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6379
+ components:
+ - type: Transform
+ pos: 139.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6434
+ components:
+ - type: Transform
+ pos: 139.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6473
+ components:
+ - type: Transform
+ pos: 125.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,44.5
+ parent: 1
+ - uid: 6707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,45.5
+ parent: 1
+ - uid: 6718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,45.5
+ parent: 1
+ - uid: 6722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7181
+ components:
+ - type: Transform
+ pos: 47.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7185
+ components:
+ - type: Transform
+ pos: 47.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7251
+ components:
+ - type: Transform
+ pos: 83.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7301
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7302
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7303
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7304
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7307
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7308
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7312
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7313
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7314
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7315
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7316
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7318
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7323
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7325
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7326
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7328
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7330
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7331
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7333
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7335
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7336
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7340
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7341
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7344
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7349
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7351
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7353
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7361
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7362
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7363
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7364
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7365
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#54A81BFF'
+ - uid: 7366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7367
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7369
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7389
+ components:
+ - type: Transform
+ pos: 71.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7404
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7408
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7434
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7440
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7442
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7456
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7462
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7464
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7465
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7490
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7498
+ components:
+ - type: Transform
+ pos: 55.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7499
+ components:
+ - type: Transform
+ pos: 55.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7500
+ components:
+ - type: Transform
+ pos: 55.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7501
+ components:
+ - type: Transform
+ pos: 55.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7503
+ components:
+ - type: Transform
+ pos: 55.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7504
+ components:
+ - type: Transform
+ pos: 55.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7505
+ components:
+ - type: Transform
+ pos: 55.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7506
+ components:
+ - type: Transform
+ pos: 55.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7507
+ components:
+ - type: Transform
+ pos: 55.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7509
+ components:
+ - type: Transform
+ pos: 55.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7510
+ components:
+ - type: Transform
+ pos: 55.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7511
+ components:
+ - type: Transform
+ pos: 55.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7512
+ components:
+ - type: Transform
+ pos: 55.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7514
+ components:
+ - type: Transform
+ pos: 55.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7515
+ components:
+ - type: Transform
+ pos: 55.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7517
+ components:
+ - type: Transform
+ pos: 55.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7518
+ components:
+ - type: Transform
+ pos: 55.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7520
+ components:
+ - type: Transform
+ pos: 55.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7522
+ components:
+ - type: Transform
+ pos: 55.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7523
+ components:
+ - type: Transform
+ pos: 55.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7524
+ components:
+ - type: Transform
+ pos: 55.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7525
+ components:
+ - type: Transform
+ pos: 55.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7526
+ components:
+ - type: Transform
+ pos: 55.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7527
+ components:
+ - type: Transform
+ pos: 55.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7528
+ components:
+ - type: Transform
+ pos: 55.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7529
+ components:
+ - type: Transform
+ pos: 55.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7530
+ components:
+ - type: Transform
+ pos: 55.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7531
+ components:
+ - type: Transform
+ pos: 55.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7534
+ components:
+ - type: Transform
+ pos: 55.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7535
+ components:
+ - type: Transform
+ pos: 55.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7536
+ components:
+ - type: Transform
+ pos: 55.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7537
+ components:
+ - type: Transform
+ pos: 55.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7538
+ components:
+ - type: Transform
+ pos: 55.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7540
+ components:
+ - type: Transform
+ pos: 55.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7541
+ components:
+ - type: Transform
+ pos: 55.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7542
+ components:
+ - type: Transform
+ pos: 55.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7543
+ components:
+ - type: Transform
+ pos: 55.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7546
+ components:
+ - type: Transform
+ pos: 55.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7552
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7555
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7562
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7572
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7586
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7609
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7615
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7636
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7649
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7651
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7653
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7657
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7658
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7660
+ components:
+ - type: Transform
+ pos: 72.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7662
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7668
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7669
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7677
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7683
+ components:
+ - type: Transform
+ pos: 65.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7684
+ components:
+ - type: Transform
+ pos: 65.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7685
+ components:
+ - type: Transform
+ pos: 65.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7686
+ components:
+ - type: Transform
+ pos: 65.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7687
+ components:
+ - type: Transform
+ pos: 65.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7699
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7705
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7708
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7723
+ components:
+ - type: Transform
+ pos: 71.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7724
+ components:
+ - type: Transform
+ pos: 71.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7740
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7755
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7756
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7769
+ components:
+ - type: Transform
+ pos: 70.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7770
+ components:
+ - type: Transform
+ pos: 70.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7772
+ components:
+ - type: Transform
+ pos: 70.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7773
+ components:
+ - type: Transform
+ pos: 70.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7774
+ components:
+ - type: Transform
+ pos: 70.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7775
+ components:
+ - type: Transform
+ pos: 70.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7776
+ components:
+ - type: Transform
+ pos: 70.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7794
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7807
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7809
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7831
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7840
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7842
+ components:
+ - type: Transform
+ pos: 63.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7853
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7856
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7870
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7875
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7876
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7877
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7896
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7897
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7909
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7911
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7912
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7917
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7920
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7924
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7932
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7946
+ components:
+ - type: Transform
+ pos: 118.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7947
+ components:
+ - type: Transform
+ pos: 118.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7948
+ components:
+ - type: Transform
+ pos: 120.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7949
+ components:
+ - type: Transform
+ pos: 120.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7950
+ components:
+ - type: Transform
+ pos: 120.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7951
+ components:
+ - type: Transform
+ pos: 120.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7953
+ components:
+ - type: Transform
+ pos: 120.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7954
+ components:
+ - type: Transform
+ pos: 120.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7955
+ components:
+ - type: Transform
+ pos: 120.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7956
+ components:
+ - type: Transform
+ pos: 120.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7957
+ components:
+ - type: Transform
+ pos: 120.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7958
+ components:
+ - type: Transform
+ pos: 120.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7959
+ components:
+ - type: Transform
+ pos: 120.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7960
+ components:
+ - type: Transform
+ pos: 120.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7961
+ components:
+ - type: Transform
+ pos: 120.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7962
+ components:
+ - type: Transform
+ pos: 120.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7963
+ components:
+ - type: Transform
+ pos: 120.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7965
+ components:
+ - type: Transform
+ pos: 120.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7966
+ components:
+ - type: Transform
+ pos: 120.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7967
+ components:
+ - type: Transform
+ pos: 120.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7968
+ components:
+ - type: Transform
+ pos: 120.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7969
+ components:
+ - type: Transform
+ pos: 120.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7970
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7973
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7983
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7985
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8015
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8018
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8020
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8021
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8029
+ components:
+ - type: Transform
+ pos: 83.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8030
+ components:
+ - type: Transform
+ pos: 83.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8032
+ components:
+ - type: Transform
+ pos: 83.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8033
+ components:
+ - type: Transform
+ pos: 83.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8068
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8069
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8073
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8077
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8079
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8082
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8083
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8085
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8087
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8108
+ components:
+ - type: Transform
+ pos: 148.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8109
+ components:
+ - type: Transform
+ pos: 148.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8110
+ components:
+ - type: Transform
+ pos: 148.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8111
+ components:
+ - type: Transform
+ pos: 148.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8112
+ components:
+ - type: Transform
+ pos: 148.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8113
+ components:
+ - type: Transform
+ pos: 148.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8114
+ components:
+ - type: Transform
+ pos: 148.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8115
+ components:
+ - type: Transform
+ pos: 148.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8116
+ components:
+ - type: Transform
+ pos: 148.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8117
+ components:
+ - type: Transform
+ pos: 148.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8119
+ components:
+ - type: Transform
+ pos: 148.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8120
+ components:
+ - type: Transform
+ pos: 148.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8121
+ components:
+ - type: Transform
+ pos: 148.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8122
+ components:
+ - type: Transform
+ pos: 148.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8123
+ components:
+ - type: Transform
+ pos: 148.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8124
+ components:
+ - type: Transform
+ pos: 148.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8126
+ components:
+ - type: Transform
+ pos: 148.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8128
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8143
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8144
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8145
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8151
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8168
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8176
+ components:
+ - type: Transform
+ pos: 148.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8203
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8208
+ components:
+ - type: Transform
+ pos: 146.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8209
+ components:
+ - type: Transform
+ pos: 146.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8210
+ components:
+ - type: Transform
+ pos: 146.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8211
+ components:
+ - type: Transform
+ pos: 146.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8212
+ components:
+ - type: Transform
+ pos: 146.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8213
+ components:
+ - type: Transform
+ pos: 146.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8214
+ components:
+ - type: Transform
+ pos: 146.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8215
+ components:
+ - type: Transform
+ pos: 146.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8216
+ components:
+ - type: Transform
+ pos: 146.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8233
+ components:
+ - type: Transform
+ pos: 150.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8245
+ components:
+ - type: Transform
+ pos: 150.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8246
+ components:
+ - type: Transform
+ pos: 150.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8247
+ components:
+ - type: Transform
+ pos: 150.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8248
+ components:
+ - type: Transform
+ pos: 150.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8249
+ components:
+ - type: Transform
+ pos: 150.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8250
+ components:
+ - type: Transform
+ pos: 150.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8251
+ components:
+ - type: Transform
+ pos: 150.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8252
+ components:
+ - type: Transform
+ pos: 150.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8253
+ components:
+ - type: Transform
+ pos: 150.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8254
+ components:
+ - type: Transform
+ pos: 150.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8255
+ components:
+ - type: Transform
+ pos: 150.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8256
+ components:
+ - type: Transform
+ pos: 150.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8257
+ components:
+ - type: Transform
+ pos: 150.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8258
+ components:
+ - type: Transform
+ pos: 150.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8259
+ components:
+ - type: Transform
+ pos: 150.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8260
+ components:
+ - type: Transform
+ pos: 150.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8261
+ components:
+ - type: Transform
+ pos: 150.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8274
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8278
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8280
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8286
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8289
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8300
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8302
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8310
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8315
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8318
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8324
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8325
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8329
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8330
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8334
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8347
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8370
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8372
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8373
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8375
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8379
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8380
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8385
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8388
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8398
+ components:
+ - type: Transform
+ pos: 129.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8399
+ components:
+ - type: Transform
+ pos: 129.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8401
+ components:
+ - type: Transform
+ pos: 129.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8402
+ components:
+ - type: Transform
+ pos: 129.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8403
+ components:
+ - type: Transform
+ pos: 129.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8404
+ components:
+ - type: Transform
+ pos: 129.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8405
+ components:
+ - type: Transform
+ pos: 129.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8406
+ components:
+ - type: Transform
+ pos: 129.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8407
+ components:
+ - type: Transform
+ pos: 129.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8408
+ components:
+ - type: Transform
+ pos: 129.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8409
+ components:
+ - type: Transform
+ pos: 129.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8410
+ components:
+ - type: Transform
+ pos: 129.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8412
+ components:
+ - type: Transform
+ pos: 129.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8413
+ components:
+ - type: Transform
+ pos: 129.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8414
+ components:
+ - type: Transform
+ pos: 129.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8415
+ components:
+ - type: Transform
+ pos: 129.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8417
+ components:
+ - type: Transform
+ pos: 129.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8418
+ components:
+ - type: Transform
+ pos: 129.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8419
+ components:
+ - type: Transform
+ pos: 129.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8420
+ components:
+ - type: Transform
+ pos: 129.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8421
+ components:
+ - type: Transform
+ pos: 129.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8422
+ components:
+ - type: Transform
+ pos: 129.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8423
+ components:
+ - type: Transform
+ pos: 129.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8424
+ components:
+ - type: Transform
+ pos: 129.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8426
+ components:
+ - type: Transform
+ pos: 129.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8427
+ components:
+ - type: Transform
+ pos: 129.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8429
+ components:
+ - type: Transform
+ pos: 129.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8430
+ components:
+ - type: Transform
+ pos: 129.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8431
+ components:
+ - type: Transform
+ pos: 129.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8432
+ components:
+ - type: Transform
+ pos: 129.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8457
+ components:
+ - type: Transform
+ pos: 131.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8458
+ components:
+ - type: Transform
+ pos: 131.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8459
+ components:
+ - type: Transform
+ pos: 131.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8460
+ components:
+ - type: Transform
+ pos: 131.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8461
+ components:
+ - type: Transform
+ pos: 131.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8462
+ components:
+ - type: Transform
+ pos: 131.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8463
+ components:
+ - type: Transform
+ pos: 131.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8464
+ components:
+ - type: Transform
+ pos: 131.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8480
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8489
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8528
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8539
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8540
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8541
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8546
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8547
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8548
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8550
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8552
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8574
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8584
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8585
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8587
+ components:
+ - type: Transform
+ pos: 83.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8588
+ components:
+ - type: Transform
+ pos: 83.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8589
+ components:
+ - type: Transform
+ pos: 83.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8590
+ components:
+ - type: Transform
+ pos: 83.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8591
+ components:
+ - type: Transform
+ pos: 83.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8592
+ components:
+ - type: Transform
+ pos: 83.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8594
+ components:
+ - type: Transform
+ pos: 83.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8597
+ components:
+ - type: Transform
+ pos: 83.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8598
+ components:
+ - type: Transform
+ pos: 83.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8599
+ components:
+ - type: Transform
+ pos: 83.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8600
+ components:
+ - type: Transform
+ pos: 83.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8602
+ components:
+ - type: Transform
+ pos: 83.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8607
+ components:
+ - type: Transform
+ pos: 84.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8608
+ components:
+ - type: Transform
+ pos: 84.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8609
+ components:
+ - type: Transform
+ pos: 84.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8610
+ components:
+ - type: Transform
+ pos: 84.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8611
+ components:
+ - type: Transform
+ pos: 84.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8612
+ components:
+ - type: Transform
+ pos: 84.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8614
+ components:
+ - type: Transform
+ pos: 84.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8615
+ components:
+ - type: Transform
+ pos: 84.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8616
+ components:
+ - type: Transform
+ pos: 84.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8617
+ components:
+ - type: Transform
+ pos: 84.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8628
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8639
+ components:
+ - type: Transform
+ pos: 68.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8640
+ components:
+ - type: Transform
+ pos: 68.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8641
+ components:
+ - type: Transform
+ pos: 68.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8642
+ components:
+ - type: Transform
+ pos: 68.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8643
+ components:
+ - type: Transform
+ pos: 68.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8644
+ components:
+ - type: Transform
+ pos: 68.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8645
+ components:
+ - type: Transform
+ pos: 68.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8647
+ components:
+ - type: Transform
+ pos: 68.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8648
+ components:
+ - type: Transform
+ pos: 68.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8649
+ components:
+ - type: Transform
+ pos: 68.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8650
+ components:
+ - type: Transform
+ pos: 68.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8651
+ components:
+ - type: Transform
+ pos: 68.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8652
+ components:
+ - type: Transform
+ pos: 68.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8653
+ components:
+ - type: Transform
+ pos: 68.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8654
+ components:
+ - type: Transform
+ pos: 68.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8655
+ components:
+ - type: Transform
+ pos: 68.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8656
+ components:
+ - type: Transform
+ pos: 68.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8657
+ components:
+ - type: Transform
+ pos: 68.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8658
+ components:
+ - type: Transform
+ pos: 68.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8672
+ components:
+ - type: Transform
+ pos: 47.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8675
+ components:
+ - type: Transform
+ pos: 47.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8676
+ components:
+ - type: Transform
+ pos: 47.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8677
+ components:
+ - type: Transform
+ pos: 47.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8679
+ components:
+ - type: Transform
+ pos: 47.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8702
+ components:
+ - type: Transform
+ pos: 141.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8715
+ components:
+ - type: Transform
+ pos: 44.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8717
+ components:
+ - type: Transform
+ pos: 44.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8718
+ components:
+ - type: Transform
+ pos: 44.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8719
+ components:
+ - type: Transform
+ pos: 44.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8720
+ components:
+ - type: Transform
+ pos: 44.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8721
+ components:
+ - type: Transform
+ pos: 44.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8723
+ components:
+ - type: Transform
+ pos: 44.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8725
+ components:
+ - type: Transform
+ pos: 44.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8726
+ components:
+ - type: Transform
+ pos: 44.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8727
+ components:
+ - type: Transform
+ pos: 44.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8728
+ components:
+ - type: Transform
+ pos: 44.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8729
+ components:
+ - type: Transform
+ pos: 44.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8730
+ components:
+ - type: Transform
+ pos: 44.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8731
+ components:
+ - type: Transform
+ pos: 44.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8732
+ components:
+ - type: Transform
+ pos: 44.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8733
+ components:
+ - type: Transform
+ pos: 44.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8734
+ components:
+ - type: Transform
+ pos: 44.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8736
+ components:
+ - type: Transform
+ pos: 44.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8737
+ components:
+ - type: Transform
+ pos: 44.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8738
+ components:
+ - type: Transform
+ pos: 44.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8740
+ components:
+ - type: Transform
+ pos: 44.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8746
+ components:
+ - type: Transform
+ pos: 42.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8748
+ components:
+ - type: Transform
+ pos: 42.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8749
+ components:
+ - type: Transform
+ pos: 42.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8750
+ components:
+ - type: Transform
+ pos: 42.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8751
+ components:
+ - type: Transform
+ pos: 42.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8752
+ components:
+ - type: Transform
+ pos: 42.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8753
+ components:
+ - type: Transform
+ pos: 42.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8754
+ components:
+ - type: Transform
+ pos: 42.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8755
+ components:
+ - type: Transform
+ pos: 42.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8756
+ components:
+ - type: Transform
+ pos: 42.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8758
+ components:
+ - type: Transform
+ pos: 42.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8759
+ components:
+ - type: Transform
+ pos: 42.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8761
+ components:
+ - type: Transform
+ pos: 42.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8762
+ components:
+ - type: Transform
+ pos: 42.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8763
+ components:
+ - type: Transform
+ pos: 42.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8764
+ components:
+ - type: Transform
+ pos: 42.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8770
+ components:
+ - type: Transform
+ pos: 162.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8776
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8782
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8793
+ components:
+ - type: Transform
+ pos: 53.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8794
+ components:
+ - type: Transform
+ pos: 53.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8795
+ components:
+ - type: Transform
+ pos: 53.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8796
+ components:
+ - type: Transform
+ pos: 53.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8797
+ components:
+ - type: Transform
+ pos: 53.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8798
+ components:
+ - type: Transform
+ pos: 53.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8799
+ components:
+ - type: Transform
+ pos: 53.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8801
+ components:
+ - type: Transform
+ pos: 53.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8802
+ components:
+ - type: Transform
+ pos: 51.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8803
+ components:
+ - type: Transform
+ pos: 51.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8804
+ components:
+ - type: Transform
+ pos: 51.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8805
+ components:
+ - type: Transform
+ pos: 51.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8806
+ components:
+ - type: Transform
+ pos: 51.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8808
+ components:
+ - type: Transform
+ pos: 51.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8809
+ components:
+ - type: Transform
+ pos: 51.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8817
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8818
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8823
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8824
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8858
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8859
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8860
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8873
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8874
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8893
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8894
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8898
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8900
+ components:
+ - type: Transform
+ pos: 43.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8901
+ components:
+ - type: Transform
+ pos: 102.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8902
+ components:
+ - type: Transform
+ pos: 102.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8903
+ components:
+ - type: Transform
+ pos: 102.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8906
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8907
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8910
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8911
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8914
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8916
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8917
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8918
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8921
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8931
+ components:
+ - type: Transform
+ pos: 114.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8932
+ components:
+ - type: Transform
+ pos: 114.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8938
+ components:
+ - type: Transform
+ pos: 95.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8940
+ components:
+ - type: Transform
+ pos: 95.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8941
+ components:
+ - type: Transform
+ pos: 95.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8942
+ components:
+ - type: Transform
+ pos: 95.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8943
+ components:
+ - type: Transform
+ pos: 95.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8944
+ components:
+ - type: Transform
+ pos: 95.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8945
+ components:
+ - type: Transform
+ pos: 95.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8946
+ components:
+ - type: Transform
+ pos: 95.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8947
+ components:
+ - type: Transform
+ pos: 95.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8948
+ components:
+ - type: Transform
+ pos: 95.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8949
+ components:
+ - type: Transform
+ pos: 95.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8950
+ components:
+ - type: Transform
+ pos: 95.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8951
+ components:
+ - type: Transform
+ pos: 95.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8953
+ components:
+ - type: Transform
+ pos: 95.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8954
+ components:
+ - type: Transform
+ pos: 95.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 8956
+ components:
+ - type: Transform
+ pos: 95.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8958
+ components:
+ - type: Transform
+ pos: 95.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8959
+ components:
+ - type: Transform
+ pos: 95.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8960
+ components:
+ - type: Transform
+ pos: 95.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8961
+ components:
+ - type: Transform
+ pos: 95.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8962
+ components:
+ - type: Transform
+ pos: 95.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8963
+ components:
+ - type: Transform
+ pos: 95.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8964
+ components:
+ - type: Transform
+ pos: 95.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8965
+ components:
+ - type: Transform
+ pos: 95.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8966
+ components:
+ - type: Transform
+ pos: 95.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8968
+ components:
+ - type: Transform
+ pos: 95.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8969
+ components:
+ - type: Transform
+ pos: 95.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8977
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8979
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8980
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8989
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8991
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8994
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9007
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9009
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9011
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9015
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9019
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9032
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9038
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9052
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9057
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9063
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9065
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9066
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9067
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9071
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9072
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9073
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9077
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9078
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9085
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9091
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9102
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9103
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9111
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9113
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9118
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9119
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9256
+ components:
+ - type: Transform
+ pos: 83.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 9267
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9367
+ components:
+ - type: Transform
+ pos: 20.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9373
+ components:
+ - type: Transform
+ pos: 91.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9374
+ components:
+ - type: Transform
+ pos: 91.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9375
+ components:
+ - type: Transform
+ pos: 91.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9376
+ components:
+ - type: Transform
+ pos: 91.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9377
+ components:
+ - type: Transform
+ pos: 91.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9378
+ components:
+ - type: Transform
+ pos: 91.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9385
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9398
+ components:
+ - type: Transform
+ pos: 82.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9402
+ components:
+ - type: Transform
+ pos: 20.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 9432
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,146.5
+ parent: 1
+ - uid: 9436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,132.5
+ parent: 1
+ - uid: 9437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,132.5
+ parent: 1
+ - uid: 9438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,130.5
+ parent: 1
+ - uid: 9439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,130.5
+ parent: 1
+ - uid: 9446
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9450
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9458
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9463
+ components:
+ - type: Transform
+ pos: 105.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9464
+ components:
+ - type: Transform
+ pos: 105.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9466
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9468
+ components:
+ - type: Transform
+ pos: 111.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9469
+ components:
+ - type: Transform
+ pos: 111.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9470
+ components:
+ - type: Transform
+ pos: 111.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9471
+ components:
+ - type: Transform
+ pos: 111.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9479
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9490
+ components:
+ - type: Transform
+ pos: 113.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9491
+ components:
+ - type: Transform
+ pos: 113.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9492
+ components:
+ - type: Transform
+ pos: 113.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9493
+ components:
+ - type: Transform
+ pos: 113.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9494
+ components:
+ - type: Transform
+ pos: 113.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9680
+ components:
+ - type: Transform
+ pos: 64.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9699
+ components:
+ - type: Transform
+ pos: 64.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9700
+ components:
+ - type: Transform
+ pos: 64.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9701
+ components:
+ - type: Transform
+ pos: 64.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9702
+ components:
+ - type: Transform
+ pos: 64.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9704
+ components:
+ - type: Transform
+ pos: 64.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9705
+ components:
+ - type: Transform
+ pos: 64.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9720
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9721
+ components:
+ - type: Transform
+ pos: 59.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9722
+ components:
+ - type: Transform
+ pos: 60.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9723
+ components:
+ - type: Transform
+ pos: 61.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9724
+ components:
+ - type: Transform
+ pos: 61.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9725
+ components:
+ - type: Transform
+ pos: 61.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9726
+ components:
+ - type: Transform
+ pos: 61.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9727
+ components:
+ - type: Transform
+ pos: 61.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9728
+ components:
+ - type: Transform
+ pos: 61.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9729
+ components:
+ - type: Transform
+ pos: 61.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9730
+ components:
+ - type: Transform
+ pos: 61.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9733
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9734
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9735
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9736
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9755
+ components:
+ - type: Transform
+ pos: 83.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9756
+ components:
+ - type: Transform
+ pos: 83.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9757
+ components:
+ - type: Transform
+ pos: 83.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9759
+ components:
+ - type: Transform
+ pos: 83.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9760
+ components:
+ - type: Transform
+ pos: 83.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9779
+ components:
+ - type: Transform
+ pos: 52.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9780
+ components:
+ - type: Transform
+ pos: 52.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9781
+ components:
+ - type: Transform
+ pos: 52.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9782
+ components:
+ - type: Transform
+ pos: 52.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9783
+ components:
+ - type: Transform
+ pos: 52.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9784
+ components:
+ - type: Transform
+ pos: 52.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9785
+ components:
+ - type: Transform
+ pos: 52.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9793
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9799
+ components:
+ - type: Transform
+ pos: 55.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9801
+ components:
+ - type: Transform
+ pos: 55.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9830
+ components:
+ - type: Transform
+ pos: 99.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9835
+ components:
+ - type: Transform
+ pos: 99.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9839
+ components:
+ - type: Transform
+ pos: 99.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10339
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10341
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10347
+ components:
+ - type: Transform
+ pos: 59.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10348
+ components:
+ - type: Transform
+ pos: 59.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10349
+ components:
+ - type: Transform
+ pos: 59.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10350
+ components:
+ - type: Transform
+ pos: 59.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10351
+ components:
+ - type: Transform
+ pos: 59.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10352
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10353
+ components:
+ - type: Transform
+ pos: 59.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10354
+ components:
+ - type: Transform
+ pos: 59.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10355
+ components:
+ - type: Transform
+ pos: 59.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10364
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10365
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10366
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10373
+ components:
+ - type: Transform
+ pos: 43.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10378
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10401
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10402
+ components:
+ - type: Transform
+ pos: 25.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10403
+ components:
+ - type: Transform
+ pos: 25.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10404
+ components:
+ - type: Transform
+ pos: 25.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10405
+ components:
+ - type: Transform
+ pos: 25.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10406
+ components:
+ - type: Transform
+ pos: 25.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10407
+ components:
+ - type: Transform
+ pos: 25.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10408
+ components:
+ - type: Transform
+ pos: 25.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10409
+ components:
+ - type: Transform
+ pos: 25.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10410
+ components:
+ - type: Transform
+ pos: 25.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10411
+ components:
+ - type: Transform
+ pos: 25.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10412
+ components:
+ - type: Transform
+ pos: 25.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10423
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10429
+ components:
+ - type: Transform
+ pos: 22.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10430
+ components:
+ - type: Transform
+ pos: 22.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10431
+ components:
+ - type: Transform
+ pos: 22.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10438
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10447
+ components:
+ - type: Transform
+ pos: 24.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10448
+ components:
+ - type: Transform
+ pos: 24.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10449
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10450
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10451
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10456
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10467
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10475
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10498
+ components:
+ - type: Transform
+ pos: 43.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10499
+ components:
+ - type: Transform
+ pos: 43.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10500
+ components:
+ - type: Transform
+ pos: 43.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10501
+ components:
+ - type: Transform
+ pos: 43.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10519
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10520
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10532
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10536
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10537
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10542
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10550
+ components:
+ - type: Transform
+ pos: 45.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10551
+ components:
+ - type: Transform
+ pos: 45.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10552
+ components:
+ - type: Transform
+ pos: 39.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10553
+ components:
+ - type: Transform
+ pos: 45.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10554
+ components:
+ - type: Transform
+ pos: 45.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10555
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10556
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10557
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10559
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10565
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10566
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10567
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10578
+ components:
+ - type: Transform
+ pos: 52.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10579
+ components:
+ - type: Transform
+ pos: 52.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10580
+ components:
+ - type: Transform
+ pos: 52.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10581
+ components:
+ - type: Transform
+ pos: 52.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10583
+ components:
+ - type: Transform
+ pos: 51.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10584
+ components:
+ - type: Transform
+ pos: 51.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10585
+ components:
+ - type: Transform
+ pos: 51.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10586
+ components:
+ - type: Transform
+ pos: 51.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10587
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10588
+ components:
+ - type: Transform
+ pos: 51.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10589
+ components:
+ - type: Transform
+ pos: 51.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10590
+ components:
+ - type: Transform
+ pos: 51.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10591
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10592
+ components:
+ - type: Transform
+ pos: 51.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10597
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10602
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10609
+ components:
+ - type: Transform
+ pos: 38.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10610
+ components:
+ - type: Transform
+ pos: 38.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10611
+ components:
+ - type: Transform
+ pos: 38.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10612
+ components:
+ - type: Transform
+ pos: 38.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10613
+ components:
+ - type: Transform
+ pos: 38.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10614
+ components:
+ - type: Transform
+ pos: 38.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10615
+ components:
+ - type: Transform
+ pos: 38.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10616
+ components:
+ - type: Transform
+ pos: 38.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10617
+ components:
+ - type: Transform
+ pos: 38.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10618
+ components:
+ - type: Transform
+ pos: 38.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10619
+ components:
+ - type: Transform
+ pos: 38.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10628
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10644
+ components:
+ - type: Transform
+ pos: 39.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10645
+ components:
+ - type: Transform
+ pos: 39.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10646
+ components:
+ - type: Transform
+ pos: 39.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10647
+ components:
+ - type: Transform
+ pos: 39.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10648
+ components:
+ - type: Transform
+ pos: 39.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10649
+ components:
+ - type: Transform
+ pos: 39.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10650
+ components:
+ - type: Transform
+ pos: 39.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10651
+ components:
+ - type: Transform
+ pos: 39.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10652
+ components:
+ - type: Transform
+ pos: 39.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10653
+ components:
+ - type: Transform
+ pos: 39.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10660
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10664
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10666
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10669
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10688
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10690
+ components:
+ - type: Transform
+ pos: 39.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10693
+ components:
+ - type: Transform
+ pos: 47.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10694
+ components:
+ - type: Transform
+ pos: 47.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10696
+ components:
+ - type: Transform
+ pos: 39.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10697
+ components:
+ - type: Transform
+ pos: 39.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10698
+ components:
+ - type: Transform
+ pos: 39.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10708
+ components:
+ - type: Transform
+ pos: 45.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10712
+ components:
+ - type: Transform
+ pos: 63.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10713
+ components:
+ - type: Transform
+ pos: 63.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10725
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10768
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10769
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10771
+ components:
+ - type: Transform
+ pos: 57.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10772
+ components:
+ - type: Transform
+ pos: 57.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10773
+ components:
+ - type: Transform
+ pos: 57.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10776
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10781
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10902
+ components:
+ - type: Transform
+ pos: 62.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11022
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11169
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11260
+ components:
+ - type: Transform
+ pos: 125.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11266
+ components:
+ - type: Transform
+ pos: 115.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11420
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11481
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11923
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11956
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11957
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11958
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11966
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12030
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12064
+ components:
+ - type: Transform
+ pos: 162.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12153
+ components:
+ - type: Transform
+ pos: 150.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12156
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12399
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12400
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12474
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12480
+ components:
+ - type: Transform
+ pos: 147.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12517
+ components:
+ - type: Transform
+ pos: 127.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12556
+ components:
+ - type: Transform
+ pos: 147.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12649
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12677
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12924
+ components:
+ - type: Transform
+ pos: 45.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12928
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12930
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12937
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12938
+ components:
+ - type: Transform
+ pos: 50.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12939
+ components:
+ - type: Transform
+ pos: 50.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12940
+ components:
+ - type: Transform
+ pos: 50.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12941
+ components:
+ - type: Transform
+ pos: 50.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12993
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13161
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13166
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13170
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13206
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13284
+ components:
+ - type: Transform
+ pos: 106.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13816
+ components:
+ - type: Transform
+ pos: 125.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14059
+ components:
+ - type: Transform
+ pos: 96.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14060
+ components:
+ - type: Transform
+ pos: 96.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14260
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14270
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14271
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14528
+ components:
+ - type: Transform
+ pos: 123.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14532
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14534
+ components:
+ - type: Transform
+ pos: 129.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14536
+ components:
+ - type: Transform
+ pos: 129.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14537
+ components:
+ - type: Transform
+ pos: 129.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14575
+ components:
+ - type: Transform
+ pos: 105.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14576
+ components:
+ - type: Transform
+ pos: 105.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14577
+ components:
+ - type: Transform
+ pos: 105.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14578
+ components:
+ - type: Transform
+ pos: 111.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14579
+ components:
+ - type: Transform
+ pos: 111.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14580
+ components:
+ - type: Transform
+ pos: 111.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14581
+ components:
+ - type: Transform
+ pos: 111.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14582
+ components:
+ - type: Transform
+ pos: 111.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14589
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14602
+ components:
+ - type: Transform
+ pos: 125.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14604
+ components:
+ - type: Transform
+ pos: 118.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14605
+ components:
+ - type: Transform
+ pos: 118.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14606
+ components:
+ - type: Transform
+ pos: 118.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14607
+ components:
+ - type: Transform
+ pos: 118.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14608
+ components:
+ - type: Transform
+ pos: 117.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14609
+ components:
+ - type: Transform
+ pos: 117.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14610
+ components:
+ - type: Transform
+ pos: 117.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14613
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14614
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14616
+ components:
+ - type: Transform
+ pos: 114.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14617
+ components:
+ - type: Transform
+ pos: 114.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14618
+ components:
+ - type: Transform
+ pos: 114.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,166.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,167.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14634
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14638
+ components:
+ - type: Transform
+ pos: 104.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14639
+ components:
+ - type: Transform
+ pos: 104.5,166.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14640
+ components:
+ - type: Transform
+ pos: 57.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14641
+ components:
+ - type: Transform
+ pos: 104.5,167.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,163.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14710
+ components:
+ - type: Transform
+ pos: 125.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14711
+ components:
+ - type: Transform
+ pos: 125.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14712
+ components:
+ - type: Transform
+ pos: 125.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14713
+ components:
+ - type: Transform
+ pos: 125.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14714
+ components:
+ - type: Transform
+ pos: 125.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14715
+ components:
+ - type: Transform
+ pos: 125.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14716
+ components:
+ - type: Transform
+ pos: 125.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14717
+ components:
+ - type: Transform
+ pos: 125.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14729
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14738
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14763
+ components:
+ - type: Transform
+ pos: 61.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14764
+ components:
+ - type: Transform
+ pos: 61.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14765
+ components:
+ - type: Transform
+ pos: 61.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14766
+ components:
+ - type: Transform
+ pos: 61.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14767
+ components:
+ - type: Transform
+ pos: 60.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14768
+ components:
+ - type: Transform
+ pos: 60.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14769
+ components:
+ - type: Transform
+ pos: 60.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14779
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14794
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14798
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14805
+ components:
+ - type: Transform
+ pos: 66.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14806
+ components:
+ - type: Transform
+ pos: 66.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14807
+ components:
+ - type: Transform
+ pos: 66.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14808
+ components:
+ - type: Transform
+ pos: 66.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14809
+ components:
+ - type: Transform
+ pos: 66.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14810
+ components:
+ - type: Transform
+ pos: 66.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14828
+ components:
+ - type: Transform
+ pos: 125.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14833
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14967
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14985
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15095
+ components:
+ - type: Transform
+ pos: 48.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15096
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,110.5
+ parent: 1
+ - uid: 15283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15284
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15285
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15286
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15288
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15290
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15291
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15292
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15295
+ components:
+ - type: Transform
+ pos: 131.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15296
+ components:
+ - type: Transform
+ pos: 131.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15298
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15300
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15301
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15310
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15311
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15313
+ components:
+ - type: Transform
+ pos: 138.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15314
+ components:
+ - type: Transform
+ pos: 138.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15315
+ components:
+ - type: Transform
+ pos: 138.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15316
+ components:
+ - type: Transform
+ pos: 138.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15317
+ components:
+ - type: Transform
+ pos: 138.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15319
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,148.5
+ parent: 1
+ - uid: 15323
+ components:
+ - type: Transform
+ pos: 62.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15338
+ components:
+ - type: Transform
+ pos: 135.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15339
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15340
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15341
+ components:
+ - type: Transform
+ pos: 128.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15342
+ components:
+ - type: Transform
+ pos: 128.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15343
+ components:
+ - type: Transform
+ pos: 128.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15344
+ components:
+ - type: Transform
+ pos: 128.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15345
+ components:
+ - type: Transform
+ pos: 128.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15346
+ components:
+ - type: Transform
+ pos: 128.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15355
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15358
+ components:
+ - type: Transform
+ pos: 127.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15412
+ components:
+ - type: Transform
+ pos: 81.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15413
+ components:
+ - type: Transform
+ pos: 81.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15414
+ components:
+ - type: Transform
+ pos: 81.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15415
+ components:
+ - type: Transform
+ pos: 81.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15416
+ components:
+ - type: Transform
+ pos: 83.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15417
+ components:
+ - type: Transform
+ pos: 83.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15421
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15425
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15426
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15429
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15431
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15440
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15453
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15454
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15455
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15459
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15460
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15463
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15465
+ components:
+ - type: Transform
+ pos: 88.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15466
+ components:
+ - type: Transform
+ pos: 88.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15467
+ components:
+ - type: Transform
+ pos: 88.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15468
+ components:
+ - type: Transform
+ pos: 88.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15469
+ components:
+ - type: Transform
+ pos: 88.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15470
+ components:
+ - type: Transform
+ pos: 88.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15472
+ components:
+ - type: Transform
+ pos: 88.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15473
+ components:
+ - type: Transform
+ pos: 88.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15474
+ components:
+ - type: Transform
+ pos: 88.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15475
+ components:
+ - type: Transform
+ pos: 88.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15477
+ components:
+ - type: Transform
+ pos: 88.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15478
+ components:
+ - type: Transform
+ pos: 88.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15479
+ components:
+ - type: Transform
+ pos: 88.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15480
+ components:
+ - type: Transform
+ pos: 88.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15481
+ components:
+ - type: Transform
+ pos: 88.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15482
+ components:
+ - type: Transform
+ pos: 88.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15484
+ components:
+ - type: Transform
+ pos: 88.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15485
+ components:
+ - type: Transform
+ pos: 88.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15486
+ components:
+ - type: Transform
+ pos: 88.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15487
+ components:
+ - type: Transform
+ pos: 88.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15488
+ components:
+ - type: Transform
+ pos: 88.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15489
+ components:
+ - type: Transform
+ pos: 88.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15490
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15493
+ components:
+ - type: Transform
+ pos: 83.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15650
+ components:
+ - type: Transform
+ pos: 82.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15666
+ components:
+ - type: Transform
+ pos: 82.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 15669
+ components:
+ - type: Transform
+ pos: 83.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15670
+ components:
+ - type: Transform
+ pos: 82.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 15711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15734
+ components:
+ - type: Transform
+ pos: 82.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,148.5
+ parent: 1
+ - uid: 15739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,132.5
+ parent: 1
+ - uid: 15740
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,130.5
+ parent: 1
+ - uid: 15950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16666
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16667
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16668
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16675
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16676
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16683
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16686
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16703
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16705
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16710
+ components:
+ - type: Transform
+ pos: 81.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16711
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16712
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16713
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16717
+ components:
+ - type: Transform
+ pos: 66.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16718
+ components:
+ - type: Transform
+ pos: 66.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16719
+ components:
+ - type: Transform
+ pos: 66.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16720
+ components:
+ - type: Transform
+ pos: 66.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16721
+ components:
+ - type: Transform
+ pos: 66.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16722
+ components:
+ - type: Transform
+ pos: 66.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16723
+ components:
+ - type: Transform
+ pos: 66.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16726
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16727
+ components:
+ - type: Transform
+ pos: 66.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16729
+ components:
+ - type: Transform
+ pos: 66.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16730
+ components:
+ - type: Transform
+ pos: 66.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16731
+ components:
+ - type: Transform
+ pos: 66.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16732
+ components:
+ - type: Transform
+ pos: 66.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16733
+ components:
+ - type: Transform
+ pos: 66.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16734
+ components:
+ - type: Transform
+ pos: 68.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16735
+ components:
+ - type: Transform
+ pos: 68.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16736
+ components:
+ - type: Transform
+ pos: 68.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16737
+ components:
+ - type: Transform
+ pos: 68.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16740
+ components:
+ - type: Transform
+ pos: 68.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16741
+ components:
+ - type: Transform
+ pos: 68.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16743
+ components:
+ - type: Transform
+ pos: 68.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16744
+ components:
+ - type: Transform
+ pos: 68.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16745
+ components:
+ - type: Transform
+ pos: 68.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16746
+ components:
+ - type: Transform
+ pos: 68.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16754
+ components:
+ - type: Transform
+ pos: 60.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16755
+ components:
+ - type: Transform
+ pos: 60.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16756
+ components:
+ - type: Transform
+ pos: 60.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16757
+ components:
+ - type: Transform
+ pos: 60.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16758
+ components:
+ - type: Transform
+ pos: 60.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16759
+ components:
+ - type: Transform
+ pos: 60.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16761
+ components:
+ - type: Transform
+ pos: 60.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16763
+ components:
+ - type: Transform
+ pos: 60.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16764
+ components:
+ - type: Transform
+ pos: 60.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16766
+ components:
+ - type: Transform
+ pos: 60.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16767
+ components:
+ - type: Transform
+ pos: 60.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16769
+ components:
+ - type: Transform
+ pos: 60.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16770
+ components:
+ - type: Transform
+ pos: 60.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16771
+ components:
+ - type: Transform
+ pos: 60.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16783
+ components:
+ - type: Transform
+ pos: 60.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16796
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16797
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16798
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16802
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16806
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16807
+ components:
+ - type: Transform
+ pos: 72.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16810
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16832
+ components:
+ - type: Transform
+ pos: 93.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16837
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16845
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16850
+ components:
+ - type: Transform
+ pos: 91.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16851
+ components:
+ - type: Transform
+ pos: 91.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16852
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16853
+ components:
+ - type: Transform
+ pos: 91.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16854
+ components:
+ - type: Transform
+ pos: 91.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16856
+ components:
+ - type: Transform
+ pos: 91.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16857
+ components:
+ - type: Transform
+ pos: 91.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16858
+ components:
+ - type: Transform
+ pos: 91.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16859
+ components:
+ - type: Transform
+ pos: 91.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16860
+ components:
+ - type: Transform
+ pos: 91.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16862
+ components:
+ - type: Transform
+ pos: 91.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16863
+ components:
+ - type: Transform
+ pos: 91.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16864
+ components:
+ - type: Transform
+ pos: 91.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16866
+ components:
+ - type: Transform
+ pos: 91.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16867
+ components:
+ - type: Transform
+ pos: 91.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16869
+ components:
+ - type: Transform
+ pos: 108.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16870
+ components:
+ - type: Transform
+ pos: 108.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16881
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16883
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16888
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16896
+ components:
+ - type: Transform
+ pos: 75.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16899
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16901
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16902
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16903
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16908
+ components:
+ - type: Transform
+ pos: 77.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16919
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16921
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16936
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16938
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16939
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16946
+ components:
+ - type: Transform
+ pos: 68.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16955
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16963
+ components:
+ - type: Transform
+ pos: 78.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16964
+ components:
+ - type: Transform
+ pos: 78.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16965
+ components:
+ - type: Transform
+ pos: 78.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16966
+ components:
+ - type: Transform
+ pos: 75.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16980
+ components:
+ - type: Transform
+ pos: 88.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16981
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16982
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16984
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16998
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16999
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17027
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17029
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17030
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17031
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17034
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17044
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17048
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17053
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17059
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17062
+ components:
+ - type: Transform
+ pos: 75.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17064
+ components:
+ - type: Transform
+ pos: 75.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17071
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17073
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17781
+ components:
+ - type: Transform
+ pos: 84.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17944
+ components:
+ - type: Transform
+ pos: 72.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17973
+ components:
+ - type: Transform
+ pos: 84.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17979
+ components:
+ - type: Transform
+ pos: 84.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18105
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18251
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18253
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18255
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18284
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18286
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18287
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18288
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18290
+ components:
+ - type: Transform
+ pos: 138.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18291
+ components:
+ - type: Transform
+ pos: 138.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18296
+ components:
+ - type: Transform
+ pos: 138.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,146.5
+ parent: 1
+ - uid: 18298
+ components:
+ - type: Transform
+ pos: 138.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18299
+ components:
+ - type: Transform
+ pos: 140.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18300
+ components:
+ - type: Transform
+ pos: 138.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18301
+ components:
+ - type: Transform
+ pos: 140.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18302
+ components:
+ - type: Transform
+ pos: 140.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18303
+ components:
+ - type: Transform
+ pos: 140.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18304
+ components:
+ - type: Transform
+ pos: 140.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18311
+ components:
+ - type: Transform
+ pos: 63.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18315
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18317
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18321
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18329
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,148.5
+ parent: 1
+ - uid: 18359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18363
+ components:
+ - type: Transform
+ pos: 143.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18364
+ components:
+ - type: Transform
+ pos: 143.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18365
+ components:
+ - type: Transform
+ pos: 143.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18368
+ components:
+ - type: Transform
+ pos: 142.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18369
+ components:
+ - type: Transform
+ pos: 142.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18370
+ components:
+ - type: Transform
+ pos: 142.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18372
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18373
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18393
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18396
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18406
+ components:
+ - type: Transform
+ pos: 147.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18410
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18427
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18448
+ components:
+ - type: Transform
+ pos: 140.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18449
+ components:
+ - type: Transform
+ pos: 140.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18450
+ components:
+ - type: Transform
+ pos: 140.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18459
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18461
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18462
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18463
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18464
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18466
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18488
+ components:
+ - type: Transform
+ pos: 157.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18489
+ components:
+ - type: Transform
+ pos: 157.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18490
+ components:
+ - type: Transform
+ pos: 157.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18493
+ components:
+ - type: Transform
+ pos: 137.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18494
+ components:
+ - type: Transform
+ pos: 137.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18496
+ components:
+ - type: Transform
+ pos: 139.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18497
+ components:
+ - type: Transform
+ pos: 139.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18509
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18512
+ components:
+ - type: Transform
+ pos: 124.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18515
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18522
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18526
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18532
+ components:
+ - type: Transform
+ pos: 124.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18548
+ components:
+ - type: Transform
+ pos: 162.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18554
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18556
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18557
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18567
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18568
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18570
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18591
+ components:
+ - type: Transform
+ pos: 72.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18594
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18598
+ components:
+ - type: Transform
+ pos: 143.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18599
+ components:
+ - type: Transform
+ pos: 143.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18603
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18604
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18639
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18644
+ components:
+ - type: Transform
+ pos: 136.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18679
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18704
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,163.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18883
+ components:
+ - type: Transform
+ pos: 137.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18890
+ components:
+ - type: Transform
+ pos: 147.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18892
+ components:
+ - type: Transform
+ pos: 147.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19216
+ components:
+ - type: Transform
+ pos: 56.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19321
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19348
+ components:
+ - type: Transform
+ pos: 56.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19398
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19504
+ components:
+ - type: Transform
+ pos: 139.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19549
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19566
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19605
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19615
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19616
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19633
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19634
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19636
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19641
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19642
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19643
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19646
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19649
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19650
+ components:
+ - type: Transform
+ pos: 39.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19652
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19707
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19716
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19730
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19757
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19759
+ components:
+ - type: Transform
+ pos: 31.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19760
+ components:
+ - type: Transform
+ pos: 31.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19761
+ components:
+ - type: Transform
+ pos: 31.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19763
+ components:
+ - type: Transform
+ pos: 31.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19764
+ components:
+ - type: Transform
+ pos: 31.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19765
+ components:
+ - type: Transform
+ pos: 31.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19776
+ components:
+ - type: Transform
+ pos: 31.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 31.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 30.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19783
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19784
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19786
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19790
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 28.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19792
+ components:
+ - type: Transform
+ pos: 31.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19793
+ components:
+ - type: Transform
+ pos: 31.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19794
+ components:
+ - type: Transform
+ pos: 31.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19800
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19801
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19802
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19804
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19822
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19831
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19847
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19850
+ components:
+ - type: Transform
+ pos: 22.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19851
+ components:
+ - type: Transform
+ pos: 22.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19852
+ components:
+ - type: Transform
+ pos: 22.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19861
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20133
+ components:
+ - type: Transform
+ pos: 82.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20366
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20381
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20382
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20383
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20384
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20385
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20386
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20387
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20399
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20470
+ components:
+ - type: Transform
+ pos: 108.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20494
+ components:
+ - type: Transform
+ pos: 69.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20847
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20850
+ components:
+ - type: Transform
+ pos: 91.5,36.5
+ parent: 1
+ - uid: 20863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21055
+ components:
+ - type: Transform
+ pos: 84.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21056
+ components:
+ - type: Transform
+ pos: 84.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21057
+ components:
+ - type: Transform
+ pos: 84.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21062
+ components:
+ - type: Transform
+ pos: 90.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21390
+ components:
+ - type: Transform
+ pos: 137.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21391
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21392
+ components:
+ - type: Transform
+ pos: 137.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21393
+ components:
+ - type: Transform
+ pos: 137.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21395
+ components:
+ - type: Transform
+ pos: 137.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21396
+ components:
+ - type: Transform
+ pos: 137.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21397
+ components:
+ - type: Transform
+ pos: 137.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21398
+ components:
+ - type: Transform
+ pos: 137.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21399
+ components:
+ - type: Transform
+ pos: 137.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21400
+ components:
+ - type: Transform
+ pos: 137.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21401
+ components:
+ - type: Transform
+ pos: 137.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21402
+ components:
+ - type: Transform
+ pos: 137.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21404
+ components:
+ - type: Transform
+ pos: 137.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21405
+ components:
+ - type: Transform
+ pos: 137.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21407
+ components:
+ - type: Transform
+ pos: 137.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21412
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21414
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21416
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21426
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21428
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21429
+ components:
+ - type: Transform
+ pos: 126.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21430
+ components:
+ - type: Transform
+ pos: 126.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21431
+ components:
+ - type: Transform
+ pos: 126.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21432
+ components:
+ - type: Transform
+ pos: 126.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21433
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21434
+ components:
+ - type: Transform
+ pos: 126.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21435
+ components:
+ - type: Transform
+ pos: 126.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21437
+ components:
+ - type: Transform
+ pos: 126.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21438
+ components:
+ - type: Transform
+ pos: 126.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21440
+ components:
+ - type: Transform
+ pos: 126.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21441
+ components:
+ - type: Transform
+ pos: 126.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21446
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21447
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21450
+ components:
+ - type: Transform
+ pos: 140.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21451
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21454
+ components:
+ - type: Transform
+ pos: 147.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21455
+ components:
+ - type: Transform
+ pos: 147.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21456
+ components:
+ - type: Transform
+ pos: 147.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21458
+ components:
+ - type: Transform
+ pos: 147.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21459
+ components:
+ - type: Transform
+ pos: 147.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21460
+ components:
+ - type: Transform
+ pos: 147.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21461
+ components:
+ - type: Transform
+ pos: 147.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21462
+ components:
+ - type: Transform
+ pos: 147.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21463
+ components:
+ - type: Transform
+ pos: 147.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21464
+ components:
+ - type: Transform
+ pos: 147.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21465
+ components:
+ - type: Transform
+ pos: 147.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21466
+ components:
+ - type: Transform
+ pos: 147.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21467
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21469
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21470
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21472
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21476
+ components:
+ - type: Transform
+ pos: 147.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21480
+ components:
+ - type: Transform
+ pos: 139.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21481
+ components:
+ - type: Transform
+ pos: 139.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21483
+ components:
+ - type: Transform
+ pos: 139.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21484
+ components:
+ - type: Transform
+ pos: 139.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21487
+ components:
+ - type: Transform
+ pos: 139.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21488
+ components:
+ - type: Transform
+ pos: 139.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21489
+ components:
+ - type: Transform
+ pos: 139.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21490
+ components:
+ - type: Transform
+ pos: 139.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21491
+ components:
+ - type: Transform
+ pos: 139.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21492
+ components:
+ - type: Transform
+ pos: 139.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21493
+ components:
+ - type: Transform
+ pos: 139.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21494
+ components:
+ - type: Transform
+ pos: 139.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21495
+ components:
+ - type: Transform
+ pos: 139.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21496
+ components:
+ - type: Transform
+ pos: 139.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21497
+ components:
+ - type: Transform
+ pos: 139.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21498
+ components:
+ - type: Transform
+ pos: 139.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21515
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21520
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21524
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21529
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21536
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21539
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21546
+ components:
+ - type: Transform
+ pos: 149.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21547
+ components:
+ - type: Transform
+ pos: 149.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21548
+ components:
+ - type: Transform
+ pos: 149.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21549
+ components:
+ - type: Transform
+ pos: 149.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21550
+ components:
+ - type: Transform
+ pos: 149.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21551
+ components:
+ - type: Transform
+ pos: 149.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21553
+ components:
+ - type: Transform
+ pos: 149.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21554
+ components:
+ - type: Transform
+ pos: 149.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21555
+ components:
+ - type: Transform
+ pos: 149.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21557
+ components:
+ - type: Transform
+ pos: 149.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21568
+ components:
+ - type: Transform
+ pos: 140.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21609
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21612
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21631
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21632
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21633
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21634
+ components:
+ - type: Transform
+ pos: 156.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21635
+ components:
+ - type: Transform
+ pos: 156.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21636
+ components:
+ - type: Transform
+ pos: 156.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21637
+ components:
+ - type: Transform
+ pos: 156.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21638
+ components:
+ - type: Transform
+ pos: 156.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21639
+ components:
+ - type: Transform
+ pos: 156.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21640
+ components:
+ - type: Transform
+ pos: 156.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21641
+ components:
+ - type: Transform
+ pos: 156.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21642
+ components:
+ - type: Transform
+ pos: 156.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21643
+ components:
+ - type: Transform
+ pos: 156.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21644
+ components:
+ - type: Transform
+ pos: 156.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21645
+ components:
+ - type: Transform
+ pos: 156.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21646
+ components:
+ - type: Transform
+ pos: 156.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21648
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21668
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21681
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21688
+ components:
+ - type: Transform
+ pos: 146.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21689
+ components:
+ - type: Transform
+ pos: 140.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21695
+ components:
+ - type: Transform
+ pos: 158.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21696
+ components:
+ - type: Transform
+ pos: 158.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21697
+ components:
+ - type: Transform
+ pos: 158.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21701
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21704
+ components:
+ - type: Transform
+ pos: 147.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21705
+ components:
+ - type: Transform
+ pos: 147.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21709
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21710
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21734
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21737
+ components:
+ - type: Transform
+ pos: 134.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21738
+ components:
+ - type: Transform
+ pos: 134.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21739
+ components:
+ - type: Transform
+ pos: 134.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21741
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21746
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21748
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21752
+ components:
+ - type: Transform
+ pos: 132.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21753
+ components:
+ - type: Transform
+ pos: 132.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21754
+ components:
+ - type: Transform
+ pos: 132.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21755
+ components:
+ - type: Transform
+ pos: 132.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21756
+ components:
+ - type: Transform
+ pos: 132.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21763
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21768
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21772
+ components:
+ - type: Transform
+ pos: 144.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21773
+ components:
+ - type: Transform
+ pos: 144.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21774
+ components:
+ - type: Transform
+ pos: 144.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21775
+ components:
+ - type: Transform
+ pos: 144.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21776
+ components:
+ - type: Transform
+ pos: 144.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21975
+ components:
+ - type: Transform
+ pos: 139.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22048
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22165
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22166
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22168
+ components:
+ - type: Transform
+ pos: 145.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22171
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22180
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22182
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22206
+ components:
+ - type: Transform
+ pos: 145.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22207
+ components:
+ - type: Transform
+ pos: 145.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22212
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22215
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22217
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22219
+ components:
+ - type: Transform
+ pos: 154.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22220
+ components:
+ - type: Transform
+ pos: 154.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22221
+ components:
+ - type: Transform
+ pos: 154.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22222
+ components:
+ - type: Transform
+ pos: 154.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22231
+ components:
+ - type: Transform
+ pos: 140.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22232
+ components:
+ - type: Transform
+ pos: 140.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22233
+ components:
+ - type: Transform
+ pos: 140.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22234
+ components:
+ - type: Transform
+ pos: 140.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22235
+ components:
+ - type: Transform
+ pos: 140.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22236
+ components:
+ - type: Transform
+ pos: 140.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22237
+ components:
+ - type: Transform
+ pos: 139.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22238
+ components:
+ - type: Transform
+ pos: 139.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22239
+ components:
+ - type: Transform
+ pos: 139.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22240
+ components:
+ - type: Transform
+ pos: 139.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22241
+ components:
+ - type: Transform
+ pos: 139.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22255
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22567
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22571
+ components:
+ - type: Transform
+ pos: 126.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22572
+ components:
+ - type: Transform
+ pos: 126.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22573
+ components:
+ - type: Transform
+ pos: 126.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22574
+ components:
+ - type: Transform
+ pos: 126.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22575
+ components:
+ - type: Transform
+ pos: 123.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22576
+ components:
+ - type: Transform
+ pos: 123.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22577
+ components:
+ - type: Transform
+ pos: 123.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22591
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22604
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22608
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22611
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22613
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22617
+ components:
+ - type: Transform
+ pos: 130.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22618
+ components:
+ - type: Transform
+ pos: 130.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22619
+ components:
+ - type: Transform
+ pos: 130.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22620
+ components:
+ - type: Transform
+ pos: 130.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22621
+ components:
+ - type: Transform
+ pos: 130.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22622
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22625
+ components:
+ - type: Transform
+ pos: 132.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22676
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22691
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22916
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22956
+ components:
+ - type: Transform
+ pos: 86.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23078
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23096
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23098
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23136
+ components:
+ - type: Transform
+ pos: 82.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23137
+ components:
+ - type: Transform
+ pos: 134.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23170
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23175
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23177
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23178
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23183
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23188
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23190
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23191
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23198
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23228
+ components:
+ - type: Transform
+ pos: 86.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23229
+ components:
+ - type: Transform
+ pos: 86.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23231
+ components:
+ - type: Transform
+ pos: 86.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23232
+ components:
+ - type: Transform
+ pos: 86.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23233
+ components:
+ - type: Transform
+ pos: 86.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23234
+ components:
+ - type: Transform
+ pos: 86.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23235
+ components:
+ - type: Transform
+ pos: 86.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23240
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23246
+ components:
+ - type: Transform
+ pos: 86.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23247
+ components:
+ - type: Transform
+ pos: 86.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23248
+ components:
+ - type: Transform
+ pos: 86.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23249
+ components:
+ - type: Transform
+ pos: 86.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23257
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23259
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23291
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23292
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23293
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23294
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23295
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23296
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23297
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23300
+ components:
+ - type: Transform
+ pos: 118.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23301
+ components:
+ - type: Transform
+ pos: 118.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23302
+ components:
+ - type: Transform
+ pos: 118.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23338
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23354
+ components:
+ - type: Transform
+ pos: 95.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23373
+ components:
+ - type: Transform
+ pos: 94.5,36.5
+ parent: 1
+ - uid: 23376
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23382
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23383
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23395
+ components:
+ - type: Transform
+ pos: 101.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23452
+ components:
+ - type: Transform
+ pos: 110.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23455
+ components:
+ - type: Transform
+ pos: 155.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23472
+ components:
+ - type: Transform
+ pos: 125.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23473
+ components:
+ - type: Transform
+ pos: 56.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23488
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23490
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23492
+ components:
+ - type: Transform
+ pos: 157.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23508
+ components:
+ - type: Transform
+ pos: 137.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23510
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,37.5
+ parent: 1
+ - uid: 23567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23579
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23581
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23588
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23607
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23612
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,111.5
+ parent: 1
+ - uid: 23645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23710
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23722
+ components:
+ - type: Transform
+ pos: 57.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23727
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23731
+ components:
+ - type: Transform
+ pos: 141.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23732
+ components:
+ - type: Transform
+ pos: 141.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23755
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24082
+ components:
+ - type: Transform
+ pos: 157.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24096
+ components:
+ - type: Transform
+ pos: 157.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24097
+ components:
+ - type: Transform
+ pos: 157.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24134
+ components:
+ - type: Transform
+ pos: 157.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24244
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24245
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24246
+ components:
+ - type: Transform
+ pos: 150.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24324
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24332
+ components:
+ - type: Transform
+ pos: 108.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24333
+ components:
+ - type: Transform
+ pos: 108.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24342
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24709
+ components:
+ - type: Transform
+ pos: 99.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24715
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24806
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24810
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25038
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25082
+ components:
+ - type: Transform
+ pos: 147.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25083
+ components:
+ - type: Transform
+ pos: 147.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25108
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25146
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25190
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25192
+ components:
+ - type: Transform
+ pos: 137.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25193
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25195
+ components:
+ - type: Transform
+ pos: 137.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25205
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25213
+ components:
+ - type: Transform
+ pos: 125.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25215
+ components:
+ - type: Transform
+ pos: 139.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25229
+ components:
+ - type: Transform
+ pos: 139.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25241
+ components:
+ - type: Transform
+ pos: 139.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25242
+ components:
+ - type: Transform
+ pos: 139.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25272
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25289
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25302
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25303
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25305
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25316
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25485
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25552
+ components:
+ - type: Transform
+ pos: 95.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25557
+ components:
+ - type: Transform
+ pos: 102.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25558
+ components:
+ - type: Transform
+ pos: 102.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25559
+ components:
+ - type: Transform
+ pos: 102.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25560
+ components:
+ - type: Transform
+ pos: 102.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25561
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25563
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25564
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25565
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25572
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25573
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25578
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25579
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25583
+ components:
+ - type: Transform
+ pos: 112.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25584
+ components:
+ - type: Transform
+ pos: 112.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25585
+ components:
+ - type: Transform
+ pos: 112.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25590
+ components:
+ - type: Transform
+ pos: 114.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25616
+ components:
+ - type: Transform
+ pos: 108.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25618
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25620
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25624
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25626
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25627
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25629
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25640
+ components:
+ - type: Transform
+ pos: 113.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25641
+ components:
+ - type: Transform
+ pos: 113.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25642
+ components:
+ - type: Transform
+ pos: 113.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25643
+ components:
+ - type: Transform
+ pos: 113.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25644
+ components:
+ - type: Transform
+ pos: 113.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25645
+ components:
+ - type: Transform
+ pos: 113.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25646
+ components:
+ - type: Transform
+ pos: 113.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25647
+ components:
+ - type: Transform
+ pos: 113.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25648
+ components:
+ - type: Transform
+ pos: 113.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25649
+ components:
+ - type: Transform
+ pos: 113.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25655
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25665
+ components:
+ - type: Transform
+ pos: 100.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25666
+ components:
+ - type: Transform
+ pos: 99.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25667
+ components:
+ - type: Transform
+ pos: 99.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25669
+ components:
+ - type: Transform
+ pos: 100.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25677
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25680
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25681
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25684
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25695
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25696
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25700
+ components:
+ - type: Transform
+ pos: 122.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25701
+ components:
+ - type: Transform
+ pos: 122.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25702
+ components:
+ - type: Transform
+ pos: 122.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25703
+ components:
+ - type: Transform
+ pos: 122.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25704
+ components:
+ - type: Transform
+ pos: 122.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25705
+ components:
+ - type: Transform
+ pos: 122.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25706
+ components:
+ - type: Transform
+ pos: 122.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25733
+ components:
+ - type: Transform
+ pos: 122.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25734
+ components:
+ - type: Transform
+ pos: 122.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25735
+ components:
+ - type: Transform
+ pos: 122.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25736
+ components:
+ - type: Transform
+ pos: 122.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25737
+ components:
+ - type: Transform
+ pos: 122.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25742
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25744
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25745
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25746
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25749
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25750
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25762
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25769
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25793
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25794
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25795
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 109.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25796
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25797
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25798
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25803
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25812
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25813
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25815
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25816
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25821
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25822
+ components:
+ - type: Transform
+ pos: 104.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25823
+ components:
+ - type: Transform
+ pos: 108.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25824
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25833
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25859
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25860
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25875
+ components:
+ - type: Transform
+ pos: 96.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25876
+ components:
+ - type: Transform
+ pos: 96.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25877
+ components:
+ - type: Transform
+ pos: 96.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25879
+ components:
+ - type: Transform
+ pos: 96.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25880
+ components:
+ - type: Transform
+ pos: 96.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25883
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25886
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25888
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25890
+ components:
+ - type: Transform
+ pos: 104.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25891
+ components:
+ - type: Transform
+ pos: 104.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25892
+ components:
+ - type: Transform
+ pos: 104.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25900
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25903
+ components:
+ - type: Transform
+ pos: 88.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25904
+ components:
+ - type: Transform
+ pos: 88.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25905
+ components:
+ - type: Transform
+ pos: 88.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25906
+ components:
+ - type: Transform
+ pos: 88.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25907
+ components:
+ - type: Transform
+ pos: 88.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25910
+ components:
+ - type: Transform
+ pos: 88.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25911
+ components:
+ - type: Transform
+ pos: 88.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25912
+ components:
+ - type: Transform
+ pos: 88.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25913
+ components:
+ - type: Transform
+ pos: 88.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25914
+ components:
+ - type: Transform
+ pos: 88.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25915
+ components:
+ - type: Transform
+ pos: 88.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25916
+ components:
+ - type: Transform
+ pos: 88.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25950
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25954
+ components:
+ - type: Transform
+ pos: 106.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25955
+ components:
+ - type: Transform
+ pos: 106.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25956
+ components:
+ - type: Transform
+ pos: 106.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25962
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25963
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25966
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25967
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25969
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25974
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25975
+ components:
+ - type: Transform
+ pos: 74.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25981
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25983
+ components:
+ - type: Transform
+ pos: 74.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25984
+ components:
+ - type: Transform
+ pos: 74.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25986
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25988
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25990
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25995
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25996
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25999
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26000
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26001
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26002
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26004
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26005
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26006
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26010
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26011
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26018
+ components:
+ - type: Transform
+ pos: 89.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26019
+ components:
+ - type: Transform
+ pos: 89.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26020
+ components:
+ - type: Transform
+ pos: 89.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26021
+ components:
+ - type: Transform
+ pos: 89.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26022
+ components:
+ - type: Transform
+ pos: 89.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26023
+ components:
+ - type: Transform
+ pos: 89.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26024
+ components:
+ - type: Transform
+ pos: 89.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26025
+ components:
+ - type: Transform
+ pos: 89.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26026
+ components:
+ - type: Transform
+ pos: 89.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26027
+ components:
+ - type: Transform
+ pos: 89.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26028
+ components:
+ - type: Transform
+ pos: 89.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26029
+ components:
+ - type: Transform
+ pos: 89.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26030
+ components:
+ - type: Transform
+ pos: 89.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26034
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26035
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26037
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26039
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26041
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26043
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26045
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26046
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26047
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26048
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26051
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26052
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26054
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26055
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26056
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26058
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26064
+ components:
+ - type: Transform
+ pos: 114.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26065
+ components:
+ - type: Transform
+ pos: 114.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26066
+ components:
+ - type: Transform
+ pos: 114.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26067
+ components:
+ - type: Transform
+ pos: 114.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26068
+ components:
+ - type: Transform
+ pos: 114.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26069
+ components:
+ - type: Transform
+ pos: 114.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26070
+ components:
+ - type: Transform
+ pos: 114.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26071
+ components:
+ - type: Transform
+ pos: 114.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26073
+ components:
+ - type: Transform
+ pos: 112.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26074
+ components:
+ - type: Transform
+ pos: 112.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26075
+ components:
+ - type: Transform
+ pos: 112.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26076
+ components:
+ - type: Transform
+ pos: 112.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26077
+ components:
+ - type: Transform
+ pos: 112.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26078
+ components:
+ - type: Transform
+ pos: 112.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26079
+ components:
+ - type: Transform
+ pos: 112.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26080
+ components:
+ - type: Transform
+ pos: 112.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26081
+ components:
+ - type: Transform
+ pos: 112.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26082
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26084
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26086
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26096
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26105
+ components:
+ - type: Transform
+ pos: 76.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26106
+ components:
+ - type: Transform
+ pos: 76.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26107
+ components:
+ - type: Transform
+ pos: 76.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26108
+ components:
+ - type: Transform
+ pos: 76.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26109
+ components:
+ - type: Transform
+ pos: 78.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26110
+ components:
+ - type: Transform
+ pos: 78.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26111
+ components:
+ - type: Transform
+ pos: 78.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26112
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26113
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26114
+ components:
+ - type: Transform
+ pos: 78.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26116
+ components:
+ - type: Transform
+ pos: 78.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26117
+ components:
+ - type: Transform
+ pos: 78.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26120
+ components:
+ - type: Transform
+ pos: 77.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26121
+ components:
+ - type: Transform
+ pos: 77.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26124
+ components:
+ - type: Transform
+ pos: 75.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26125
+ components:
+ - type: Transform
+ pos: 75.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26132
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26134
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26136
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26138
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26149
+ components:
+ - type: Transform
+ pos: 152.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26150
+ components:
+ - type: Transform
+ pos: 152.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26151
+ components:
+ - type: Transform
+ pos: 152.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26152
+ components:
+ - type: Transform
+ pos: 152.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26153
+ components:
+ - type: Transform
+ pos: 155.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26154
+ components:
+ - type: Transform
+ pos: 155.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26155
+ components:
+ - type: Transform
+ pos: 155.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26156
+ components:
+ - type: Transform
+ pos: 155.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26157
+ components:
+ - type: Transform
+ pos: 158.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26158
+ components:
+ - type: Transform
+ pos: 158.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26159
+ components:
+ - type: Transform
+ pos: 158.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26160
+ components:
+ - type: Transform
+ pos: 158.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26161
+ components:
+ - type: Transform
+ pos: 153.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26162
+ components:
+ - type: Transform
+ pos: 153.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26163
+ components:
+ - type: Transform
+ pos: 156.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26164
+ components:
+ - type: Transform
+ pos: 156.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26165
+ components:
+ - type: Transform
+ pos: 159.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26166
+ components:
+ - type: Transform
+ pos: 159.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26558
+ components:
+ - type: Transform
+ pos: 124.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26600
+ components:
+ - type: Transform
+ pos: 84.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27276
+ components:
+ - type: Transform
+ pos: 82.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27592
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27621
+ components:
+ - type: Transform
+ pos: 82.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28148
+ components:
+ - type: Transform
+ pos: 63.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28214
+ components:
+ - type: Transform
+ pos: 63.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28215
+ components:
+ - type: Transform
+ pos: 63.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28494
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28495
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28496
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28516
+ components:
+ - type: Transform
+ pos: 60.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28527
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28528
+ components:
+ - type: Transform
+ pos: 28.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28540
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28545
+ components:
+ - type: Transform
+ pos: 147.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28547
+ components:
+ - type: Transform
+ pos: 150.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28566
+ components:
+ - type: Transform
+ pos: 157.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28569
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28639
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29108
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29124
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29125
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29127
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29133
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29134
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29211
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29212
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29213
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29214
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29216
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29217
+ components:
+ - type: Transform
+ pos: 152.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29218
+ components:
+ - type: Transform
+ pos: 152.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29224
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29225
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29241
+ components:
+ - type: Transform
+ pos: 144.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29242
+ components:
+ - type: Transform
+ pos: 144.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29243
+ components:
+ - type: Transform
+ pos: 144.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29244
+ components:
+ - type: Transform
+ pos: 144.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29245
+ components:
+ - type: Transform
+ pos: 144.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29248
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29298
+ components:
+ - type: Transform
+ pos: 87.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29318
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29398
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29733
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29825
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29827
+ components:
+ - type: Transform
+ pos: 87.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29839
+ components:
+ - type: Transform
+ pos: 155.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29862
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29944
+ components:
+ - type: Transform
+ pos: 91.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30028
+ components:
+ - type: Transform
+ pos: 140.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30039
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30044
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30112
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,171.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,146.5
+ parent: 1
+ - uid: 30217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,132.5
+ parent: 1
+ - uid: 30252
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30305
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,150.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30307
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30308
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30443
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30548
+ components:
+ - type: Transform
+ pos: 63.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30781
+ components:
+ - type: Transform
+ pos: 53.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30783
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31151
+ components:
+ - type: Transform
+ pos: 28.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31763
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31764
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31767
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 164.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32013
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32226
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,170.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32281
+ components:
+ - type: Transform
+ pos: 64.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32364
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32411
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32891
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33184
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33187
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33189
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33192
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33195
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33198
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33199
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33201
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33206
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33207
+ components:
+ - type: Transform
+ pos: 105.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33208
+ components:
+ - type: Transform
+ pos: 105.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33209
+ components:
+ - type: Transform
+ pos: 105.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33210
+ components:
+ - type: Transform
+ pos: 105.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33211
+ components:
+ - type: Transform
+ pos: 105.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33212
+ components:
+ - type: Transform
+ pos: 105.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33214
+ components:
+ - type: Transform
+ pos: 105.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33215
+ components:
+ - type: Transform
+ pos: 105.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33216
+ components:
+ - type: Transform
+ pos: 105.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33217
+ components:
+ - type: Transform
+ pos: 105.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33222
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,21.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,22.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33225
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33226
+ components:
+ - type: Transform
+ pos: 112.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33227
+ components:
+ - type: Transform
+ pos: 112.5,25.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33228
+ components:
+ - type: Transform
+ pos: 112.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33229
+ components:
+ - type: Transform
+ pos: 112.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33230
+ components:
+ - type: Transform
+ pos: 112.5,28.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33231
+ components:
+ - type: Transform
+ pos: 112.5,29.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33234
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33236
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33246
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33249
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33250
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33251
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,33.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33261
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33262
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33266
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33760
+ components:
+ - type: Transform
+ pos: 64.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33761
+ components:
+ - type: Transform
+ pos: 64.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33762
+ components:
+ - type: Transform
+ pos: 64.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33875
+ components:
+ - type: Transform
+ pos: 91.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33887
+ components:
+ - type: Transform
+ pos: 40.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33888
+ components:
+ - type: Transform
+ pos: 40.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33980
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 33982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34105
+ components:
+ - type: Transform
+ pos: 40.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34129
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34222
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34358
+ components:
+ - type: Transform
+ pos: 148.5,44.5
+ parent: 1
+ - uid: 34367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34368
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34370
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34371
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34372
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34427
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34428
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34433
+ components:
+ - type: Transform
+ pos: 69.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34435
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34436
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,44.5
+ parent: 1
+ - uid: 34625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34648
+ components:
+ - type: Transform
+ pos: 140.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34657
+ components:
+ - type: Transform
+ pos: 139.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34836
+ components:
+ - type: Transform
+ pos: 137.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35008
+ components:
+ - type: Transform
+ pos: 163.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35009
+ components:
+ - type: Transform
+ pos: 163.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35125
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35172
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 35176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35177
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,167.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,166.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,165.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35220
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35346
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35347
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35348
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35350
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35351
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35352
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,161.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35357
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35360
+ components:
+ - type: Transform
+ pos: 98.5,170.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35361
+ components:
+ - type: Transform
+ pos: 98.5,171.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35422
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35435
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35448
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35452
+ components:
+ - type: Transform
+ pos: 101.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35454
+ components:
+ - type: Transform
+ pos: 101.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35532
+ components:
+ - type: Transform
+ pos: 52.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35533
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35534
+ components:
+ - type: Transform
+ pos: 52.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35535
+ components:
+ - type: Transform
+ pos: 52.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35536
+ components:
+ - type: Transform
+ pos: 52.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35537
+ components:
+ - type: Transform
+ pos: 52.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35538
+ components:
+ - type: Transform
+ pos: 52.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35540
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35541
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35542
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35543
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35544
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35562
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35565
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35694
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35888
+ components:
+ - type: Transform
+ pos: 33.5,120.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35889
+ components:
+ - type: Transform
+ pos: 33.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35893
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35894
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 38.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,37.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36012
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36031
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36153
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36397
+ components:
+ - type: Transform
+ pos: 137.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36429
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36430
+ components:
+ - type: Transform
+ pos: 25.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36431
+ components:
+ - type: Transform
+ pos: 25.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36432
+ components:
+ - type: Transform
+ pos: 25.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36746
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36758
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36772
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36812
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36819
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36864
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36880
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36885
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36889
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36893
+ components:
+ - type: Transform
+ pos: 81.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36895
+ components:
+ - type: Transform
+ pos: 81.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36905
+ components:
+ - type: Transform
+ pos: 82.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36908
+ components:
+ - type: Transform
+ pos: 82.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36917
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36941
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36957
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,157.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36958
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36969
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36970
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36972
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36973
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36984
+ components:
+ - type: Transform
+ pos: 21.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36986
+ components:
+ - type: Transform
+ pos: 21.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36987
+ components:
+ - type: Transform
+ pos: 21.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36988
+ components:
+ - type: Transform
+ pos: 21.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36989
+ components:
+ - type: Transform
+ pos: 21.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36990
+ components:
+ - type: Transform
+ pos: 21.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36991
+ components:
+ - type: Transform
+ pos: 21.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36992
+ components:
+ - type: Transform
+ pos: 21.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37009
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,18.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37167
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37168
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 158.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37214
+ components:
+ - type: Transform
+ pos: 133.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,127.5
+ parent: 1
+ - uid: 37292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,127.5
+ parent: 1
+ - uid: 37293
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,127.5
+ parent: 1
+ - uid: 37294
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,151.5
+ parent: 1
+ - uid: 37295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,151.5
+ parent: 1
+ - uid: 37296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,151.5
+ parent: 1
+ - uid: 37412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37532
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 163.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPipeTJunction
+ entities:
+ - uid: 218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 219
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 233
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 238
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 245
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 366
+ components:
+ - type: Transform
+ pos: 51.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 399
+ components:
+ - type: Transform
+ pos: 60.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 617
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 824
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 864
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 984
+ components:
+ - type: Transform
+ pos: 48.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1076
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1239
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1241
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1242
+ components:
+ - type: Transform
+ pos: 61.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1244
+ components:
+ - type: Transform
+ pos: 75.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1247
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1330
+ components:
+ - type: Transform
+ pos: 117.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1365
+ components:
+ - type: Transform
+ pos: 88.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1460
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1464
+ components:
+ - type: Transform
+ pos: 130.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1466
+ components:
+ - type: Transform
+ pos: 131.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1902
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2039
+ components:
+ - type: Transform
+ pos: 109.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2040
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2132
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2182
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,32.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2450
+ components:
+ - type: Transform
+ pos: 82.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2469
+ components:
+ - type: Transform
+ pos: 66.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2472
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2477
+ components:
+ - type: Transform
+ pos: 75.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2478
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2979
+ components:
+ - type: Transform
+ pos: 81.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 3000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,30.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3072
+ components:
+ - type: Transform
+ pos: 64.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3139
+ components:
+ - type: Transform
+ pos: 109.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3186
+ components:
+ - type: Transform
+ pos: 75.5,17.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3287
+ components:
+ - type: Transform
+ pos: 162.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3323
+ components:
+ - type: Transform
+ pos: 115.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3324
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3365
+ components:
+ - type: Transform
+ pos: 114.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3367
+ components:
+ - type: Transform
+ pos: 118.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3368
+ components:
+ - type: Transform
+ pos: 148.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3405
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,23.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3462
+ components:
+ - type: Transform
+ pos: 93.5,82.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3471
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3472
+ components:
+ - type: Transform
+ pos: 119.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3564
+ components:
+ - type: Transform
+ pos: 146.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4035
+ components:
+ - type: Transform
+ pos: 96.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4104
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4249
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4317
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4322
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4364
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4366
+ components:
+ - type: Transform
+ pos: 98.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4369
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4402
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4407
+ components:
+ - type: Transform
+ pos: 76.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4409
+ components:
+ - type: Transform
+ pos: 78.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4415
+ components:
+ - type: Transform
+ pos: 99.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4436
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4437
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4446
+ components:
+ - type: Transform
+ pos: 109.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4450
+ components:
+ - type: Transform
+ pos: 113.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4455
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4461
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4465
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4470
+ components:
+ - type: Transform
+ pos: 158.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4471
+ components:
+ - type: Transform
+ pos: 155.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4473
+ components:
+ - type: Transform
+ pos: 152.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4499
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4517
+ components:
+ - type: Transform
+ pos: 108.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4522
+ components:
+ - type: Transform
+ pos: 84.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4551
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4567
+ components:
+ - type: Transform
+ pos: 83.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4569
+ components:
+ - type: Transform
+ pos: 88.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4596
+ components:
+ - type: Transform
+ pos: 132.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4616
+ components:
+ - type: Transform
+ pos: 91.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4672
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4911
+ components:
+ - type: Transform
+ pos: 98.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5013
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5020
+ components:
+ - type: Transform
+ pos: 40.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5422
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5721
+ components:
+ - type: Transform
+ pos: 131.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5723
+ components:
+ - type: Transform
+ pos: 142.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5874
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6084
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6396
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6462
+ components:
+ - type: Transform
+ pos: 152.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6574
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 6664
+ components:
+ - type: Transform
+ pos: 149.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6709
+ components:
+ - type: Transform
+ pos: 148.5,45.5
+ parent: 1
+ - uid: 7040
+ components:
+ - type: Transform
+ pos: 136.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7196
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7198
+ components:
+ - type: Transform
+ pos: 49.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7392
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7396
+ components:
+ - type: Transform
+ pos: 88.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7411
+ components:
+ - type: Transform
+ pos: 88.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7473
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7477
+ components:
+ - type: Transform
+ pos: 75.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7483
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7487
+ components:
+ - type: Transform
+ pos: 81.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7521
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7689
+ components:
+ - type: Transform
+ pos: 65.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7713
+ components:
+ - type: Transform
+ pos: 81.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7728
+ components:
+ - type: Transform
+ pos: 89.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7729
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7735
+ components:
+ - type: Transform
+ pos: 83.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7779
+ components:
+ - type: Transform
+ pos: 67.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7787
+ components:
+ - type: Transform
+ pos: 83.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7800
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8013
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8064
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8100
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8165
+ components:
+ - type: Transform
+ pos: 148.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8200
+ components:
+ - type: Transform
+ pos: 118.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8327
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8335
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8336
+ components:
+ - type: Transform
+ pos: 104.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8355
+ components:
+ - type: Transform
+ pos: 127.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8356
+ components:
+ - type: Transform
+ pos: 129.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8358
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8362
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8466
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 129.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8510
+ components:
+ - type: Transform
+ pos: 118.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8511
+ components:
+ - type: Transform
+ pos: 120.5,76.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8633
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8659
+ components:
+ - type: Transform
+ pos: 66.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8660
+ components:
+ - type: Transform
+ pos: 68.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8678
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8724
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8743
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8810
+ components:
+ - type: Transform
+ pos: 52.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8815
+ components:
+ - type: Transform
+ pos: 51.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8816
+ components:
+ - type: Transform
+ pos: 53.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8870
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8871
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8933
+ components:
+ - type: Transform
+ pos: 102.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8935
+ components:
+ - type: Transform
+ pos: 112.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8936
+ components:
+ - type: Transform
+ pos: 114.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8939
+ components:
+ - type: Transform
+ pos: 111.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8957
+ components:
+ - type: Transform
+ pos: 101.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8967
+ components:
+ - type: Transform
+ pos: 120.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9001
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9460
+ components:
+ - type: Transform
+ pos: 111.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,124.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9790
+ components:
+ - type: Transform
+ pos: 52.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 9825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10359
+ components:
+ - type: Transform
+ pos: 59.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10497
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10512
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,83.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10533
+ components:
+ - type: Transform
+ pos: 39.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10607
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10642
+ components:
+ - type: Transform
+ pos: 36.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10643
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 39.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10704
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11452
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 11482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11919
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12178
+ components:
+ - type: Transform
+ pos: 149.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,26.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12944
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,38.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,44.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13248
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14306
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,154.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14554
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,129.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14619
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,159.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14697
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14811
+ components:
+ - type: Transform
+ pos: 66.5,121.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15120
+ components:
+ - type: Transform
+ pos: 76.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15281
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,135.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15348
+ components:
+ - type: Transform
+ pos: 126.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15419
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15422
+ components:
+ - type: Transform
+ pos: 73.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15427
+ components:
+ - type: Transform
+ pos: 72.5,118.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15464
+ components:
+ - type: Transform
+ pos: 87.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 15713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,133.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15962
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15965
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15966
+ components:
+ - type: Transform
+ pos: 43.5,49.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16692
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16708
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16709
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16728
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,95.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16742
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16760
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16768
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,92.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16781
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,160.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16878
+ components:
+ - type: Transform
+ pos: 72.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16892
+ components:
+ - type: Transform
+ pos: 66.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16897
+ components:
+ - type: Transform
+ pos: 73.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16905
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16950
+ components:
+ - type: Transform
+ pos: 76.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 83.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17002
+ components:
+ - type: Transform
+ pos: 86.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17050
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17067
+ components:
+ - type: Transform
+ pos: 76.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 17072
+ components:
+ - type: Transform
+ pos: 74.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 18204
+ components:
+ - type: Transform
+ pos: 93.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18294
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18295
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18307
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18319
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18454
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,99.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18467
+ components:
+ - type: Transform
+ pos: 137.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18608
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,103.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,112.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18719
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19463
+ components:
+ - type: Transform
+ pos: 127.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19629
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19736
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,48.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19740
+ components:
+ - type: Transform
+ pos: 47.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19743
+ components:
+ - type: Transform
+ pos: 38.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,111.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19768
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19771
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19772
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19819
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,41.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20176
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20498
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21403
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21406
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21415
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21421
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21439
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21442
+ components:
+ - type: Transform
+ pos: 137.5,78.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21457
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21471
+ components:
+ - type: Transform
+ pos: 141.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21477
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21506
+ components:
+ - type: Transform
+ pos: 132.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21511
+ components:
+ - type: Transform
+ pos: 130.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21513
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21517
+ components:
+ - type: Transform
+ pos: 122.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21531
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21541
+ components:
+ - type: Transform
+ pos: 145.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21542
+ components:
+ - type: Transform
+ pos: 142.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21561
+ components:
+ - type: Transform
+ pos: 144.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21586
+ components:
+ - type: Transform
+ pos: 82.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21619
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21630
+ components:
+ - type: Transform
+ pos: 152.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21721
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21729
+ components:
+ - type: Transform
+ pos: 84.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21740
+ components:
+ - type: Transform
+ pos: 134.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21769
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22025
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22243
+ components:
+ - type: Transform
+ pos: 140.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22254
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22643
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,102.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22720
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22894
+ components:
+ - type: Transform
+ pos: 86.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,123.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23101
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23242
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 50.5,101.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23389
+ components:
+ - type: Transform
+ pos: 88.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23495
+ components:
+ - type: Transform
+ pos: 152.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23497
+ components:
+ - type: Transform
+ pos: 22.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23532
+ components:
+ - type: Transform
+ pos: 80.5,148.5
+ parent: 1
+ - uid: 23533
+ components:
+ - type: Transform
+ pos: 153.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23540
+ components:
+ - type: Transform
+ pos: 106.5,50.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,96.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23549
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,43.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23550
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23553
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23555
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23563
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,36.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23582
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23606
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23730
+ components:
+ - type: Transform
+ pos: 139.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23740
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,146.5
+ parent: 1
+ - uid: 23743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24071
+ components:
+ - type: Transform
+ pos: 149.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24076
+ components:
+ - type: Transform
+ pos: 155.5,106.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24135
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 24243
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,100.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24695
+ components:
+ - type: Transform
+ pos: 109.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24696
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24698
+ components:
+ - type: Transform
+ pos: 60.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,65.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 24804
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25037
+ components:
+ - type: Transform
+ pos: 149.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25091
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25209
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,85.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,66.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25266
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25285
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25287
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,35.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,52.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25562
+ components:
+ - type: Transform
+ pos: 100.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25574
+ components:
+ - type: Transform
+ pos: 122.5,110.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25633
+ components:
+ - type: Transform
+ pos: 110.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25634
+ components:
+ - type: Transform
+ pos: 111.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25656
+ components:
+ - type: Transform
+ pos: 113.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25659
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,98.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 25760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25761
+ components:
+ - type: Transform
+ pos: 101.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25778
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,122.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,58.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25854
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25858
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25884
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,54.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25902
+ components:
+ - type: Transform
+ pos: 91.5,63.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25908
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,71.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,72.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25939
+ components:
+ - type: Transform
+ pos: 100.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25940
+ components:
+ - type: Transform
+ pos: 106.5,62.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25977
+ components:
+ - type: Transform
+ pos: 75.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25997
+ components:
+ - type: Transform
+ pos: 87.5,77.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,84.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26100
+ components:
+ - type: Transform
+ pos: 112.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26104
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26118
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,53.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26133
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26137
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,60.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26273
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27081
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27587
+ components:
+ - type: Transform
+ pos: 124.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28149
+ components:
+ - type: Transform
+ pos: 92.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28354
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,97.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28491
+ components:
+ - type: Transform
+ pos: 141.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28532
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,164.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28568
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,115.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29147
+ components:
+ - type: Transform
+ pos: 92.5,113.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29246
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29264
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29530
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,131.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29833
+ components:
+ - type: Transform
+ pos: 144.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29835
+ components:
+ - type: Transform
+ pos: 140.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29848
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29982
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,55.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29983
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,143.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30019
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30041
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30042
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30310
+ components:
+ - type: Transform
+ pos: 134.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30371
+ components:
+ - type: Transform
+ pos: 94.5,47.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,64.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32361
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,69.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,19.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33213
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33260
+ components:
+ - type: Transform
+ pos: 95.5,31.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34069
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,40.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35447
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,39.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36738
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36739
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36771
+ components:
+ - type: Transform
+ pos: 82.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36828
+ components:
+ - type: Transform
+ pos: 103.5,88.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36898
+ components:
+ - type: Transform
+ pos: 85.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36899
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36907
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,146.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36909
+ components:
+ - type: Transform
+ pos: 83.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,80.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasPort
+ entities:
+ - uid: 3152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 3154
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 9262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,105.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 15946
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,136.5
+ parent: 1
+ - uid: 15955
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,116.5
+ parent: 1
+ - uid: 15956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,116.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18617
+ components:
+ - type: Transform
+ pos: 21.5,113.5
+ parent: 1
+ - uid: 19662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19663
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,93.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19665
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 23314
+ components:
+ - type: Transform
+ pos: 83.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,34.5
+ parent: 1
+ - uid: 23522
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,34.5
+ parent: 1
+ - uid: 25730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,90.5
+ parent: 1
+ - uid: 27501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,34.5
+ parent: 1
+ - uid: 30564
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,149.5
+ parent: 1
+ - uid: 34356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,43.5
+ parent: 1
+ - uid: 34359
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,43.5
+ parent: 1
+ - uid: 34362
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,43.5
+ parent: 1
+ - uid: 36776
+ components:
+ - type: Transform
+ pos: 84.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36922
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,141.5
+ parent: 1
+ - uid: 36923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,137.5
+ parent: 1
+ - uid: 36925
+ components:
+ - type: Transform
+ pos: 85.5,126.5
+ parent: 1
+ - uid: 36926
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,152.5
+ parent: 1
+ - uid: 36932
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,136.5
+ parent: 1
+ - uid: 36933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,135.5
+ parent: 1
+ - uid: 36934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,142.5
+ parent: 1
+ - uid: 36935
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,143.5
+ parent: 1
+ - uid: 36936
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,143.5
+ parent: 1
+ - uid: 36937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,135.5
+ parent: 1
+- proto: GasPressurePump
+ entities:
+ - uid: 2731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,125.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2901
+ components:
+ - type: Transform
+ pos: 72.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7397
+ components:
+ - type: MetaData
+ name: oxygen gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,128.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 7410
+ components:
+ - type: MetaData
+ name: nitrogen gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,132.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15443
+ components:
+ - type: MetaData
+ name: storage gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,152.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15444
+ components:
+ - type: MetaData
+ name: tritium gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,148.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15445
+ components:
+ - type: MetaData
+ name: carbon dioxide gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,144.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15446
+ components:
+ - type: MetaData
+ name: plasma gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15447
+ components:
+ - type: MetaData
+ name: water vapor gas pump
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,136.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 15954
+ components:
+ - type: Transform
+ pos: 72.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 73.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19647
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,89.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 19654
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,86.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 25729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 34363
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,45.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36919
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+- proto: GasThermoMachineFreezer
+ entities:
+ - uid: 3043
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,143.5
+ parent: 1
+ - uid: 3970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,143.5
+ parent: 1
+ - uid: 16961
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 19742
+ components:
+ - type: Transform
+ pos: 46.5,108.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 23317
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,136.5
+ parent: 1
+ - uid: 25725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#03FCD3FF'
+ - uid: 36924
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,125.5
+ parent: 1
+- proto: GasThermoMachineHeater
+ entities:
+ - uid: 3206
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,135.5
+ parent: 1
+ - uid: 16635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,135.5
+ parent: 1
+ - uid: 36759
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,142.5
+ parent: 1
+ - uid: 36927
+ components:
+ - type: Transform
+ pos: 85.5,153.5
+ parent: 1
+- proto: GasValve
+ entities:
+ - uid: 15442
+ components:
+ - type: Transform
+ pos: 71.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,137.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 18618
+ components:
+ - type: Transform
+ pos: 21.5,112.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - uid: 36881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,137.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36914
+ components:
+ - type: MetaData
+ name: cold loop dump to waste manual valve
+ - type: Transform
+ pos: 87.5,144.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36915
+ components:
+ - type: MetaData
+ name: hot loop dump to waste manual valve
+ - type: Transform
+ pos: 87.5,134.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36928
+ components:
+ - type: MetaData
+ name: loop combiner manual valve
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,141.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - uid: 36938
+ components:
+ - type: MetaData
+ name: hot loop manual valve
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,138.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36939
+ components:
+ - type: MetaData
+ name: cold loop manual valve
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,140.5
+ parent: 1
+ - type: GasValve
+ open: False
+ - type: AtmosPipeColor
+ color: '#947507FF'
+- proto: GasVentPump
+ entities:
+ - uid: 6
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28486
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 182
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,155.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 257
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,117.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27986
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 1904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25419
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2349
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,30.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2853
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 19097
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2952
+ components:
+ - type: Transform
+ pos: 93.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3280
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29545
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 3722
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20376
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 4829
+ components:
+ - type: Transform
+ pos: 119.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14594
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 5016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 6025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7233
+ components:
+ - type: Transform
+ pos: 57.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 7390
+ components:
+ - type: Transform
+ pos: 73.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8172
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 8193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10568
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10730
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10680
+ components:
+ - type: Transform
+ pos: 36.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10686
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,38.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10715
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10744
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10752
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 10765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,51.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12922
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 12923
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,23.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10685
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 13828
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,121.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14276
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14277
+ components:
+ - type: Transform
+ pos: 97.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,139.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14595
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14561
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14569
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14667
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14623
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14846
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14671
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14669
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 14842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,160.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14840
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15181
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,145.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,143.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14601
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15507
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15513
+ components:
+ - type: Transform
+ pos: 87.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15972
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 15976
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17107
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16775
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17112
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16794
+ components:
+ - type: Transform
+ pos: 62.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16967
+ components:
+ - type: Transform
+ pos: 71.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17109
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 16993
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17091
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17003
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17005
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17103
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,95.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17097
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17023
+ components:
+ - type: Transform
+ pos: 67.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17026
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17038
+ components:
+ - type: Transform
+ pos: 87.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17074
+ components:
+ - type: Transform
+ pos: 87.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 17100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17102
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23328
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18371
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18616
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18505
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,90.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18593
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18607
+ components:
+ - type: Transform
+ pos: 143.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 18627
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19002
+ components:
+ - type: Transform
+ pos: 88.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37459
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28741
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19600
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20352
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20343
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19614
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19697
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20359
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20362
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19808
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20372
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19817
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20373
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19818
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,115.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20374
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20362
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 19838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,104.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20340
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20355
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 41.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20353
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20502
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 20797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26182
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21070
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20336
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21622
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21625
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22164
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,46.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22246
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22258
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22267
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,74.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21732
+ components:
+ - type: Transform
+ pos: 134.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22269
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 21762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,61.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22172
+ components:
+ - type: Transform
+ pos: 145.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22183
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22226
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 153.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22229
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22248
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22252
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22587
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22598
+ components:
+ - type: Transform
+ pos: 123.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22635
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,52.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22630
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 22770
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23110
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22270
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23365
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 23594
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,119.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25080
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25523
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25660
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25662
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26186
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25686
+ components:
+ - type: Transform
+ pos: 105.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26188
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15935
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25738
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25747
+ components:
+ - type: Transform
+ pos: 110.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26180
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25830
+ components:
+ - type: Transform
+ pos: 108.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3112
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25836
+ components:
+ - type: Transform
+ pos: 99.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3113
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25837
+ components:
+ - type: Transform
+ pos: 113.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 4625
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25965
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26214
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 25982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,68.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26102
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26103
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26141
+ components:
+ - type: Transform
+ pos: 75.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26167
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26168
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,134.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26170
+ components:
+ - type: Transform
+ pos: 153.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26171
+ components:
+ - type: Transform
+ pos: 156.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 26172
+ components:
+ - type: Transform
+ pos: 159.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,130.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,109.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27814
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1303
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27821
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27831
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27848
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,94.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27854
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27932
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30227
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 27934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27728
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28290
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28288
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18539
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28504
+ components:
+ - type: Transform
+ pos: 134.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28594
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28597
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28631
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28634
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28635
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28638
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 28904
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29237
+ components:
+ - type: Transform
+ pos: 155.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29253
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3344
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,127.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29345
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,75.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37358
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,138.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29481
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 29812
+ components:
+ - type: Transform
+ pos: 145.5,132.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1588
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30030
+ components:
+ - type: Transform
+ pos: 107.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30040
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30126
+ components:
+ - type: Transform
+ pos: 138.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30782
+ components:
+ - type: Transform
+ pos: 53.5,142.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 30785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,141.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31150
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,70.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,67.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,57.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 31761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 162.5,56.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32262
+ components:
+ - type: Transform
+ pos: 131.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32366
+ components:
+ - type: Transform
+ pos: 47.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18183
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32413
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,114.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32439
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32939
+ components:
+ - type: Transform
+ pos: 155.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 32983
+ components:
+ - type: Transform
+ pos: 156.5,153.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33319
+ components:
+ - type: Transform
+ pos: 92.5,20.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33321
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33322
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,24.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33498
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 33717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,16.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34364
+ components:
+ - type: Transform
+ pos: 157.5,80.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 34374
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34366
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 34855
+ components:
+ - type: Transform
+ pos: 76.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35010
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 163.5,126.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35025
+ components:
+ - type: Transform
+ pos: 90.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35064
+ components:
+ - type: Transform
+ pos: 99.5,43.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35174
+ components:
+ - type: Transform
+ pos: 119.5,169.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,168.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35344
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,162.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,172.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30728
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35456
+ components:
+ - type: Transform
+ pos: 101.5,42.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 35566
+ components:
+ - type: Transform
+ pos: 58.5,158.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36634
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20363
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36740
+ components:
+ - type: Transform
+ pos: 161.5,107.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36960
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,160.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36963
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36965
+ components:
+ - type: Transform
+ pos: 141.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36966
+ components:
+ - type: Transform
+ pos: 143.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36967
+ components:
+ - type: Transform
+ pos: 149.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36968
+ components:
+ - type: Transform
+ pos: 151.5,156.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36977
+ components:
+ - type: Transform
+ pos: 18.5,79.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 18.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36982
+ components:
+ - type: Transform
+ pos: 23.5,81.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 36999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,27.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37000
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,34.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 37007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,15.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+- proto: GasVentScrubber
+ entities:
+ - uid: 221
+ components:
+ - type: Transform
+ pos: 38.5,84.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20336
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 258
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27831
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 616
+ components:
+ - type: Transform
+ pos: 73.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27986
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 855
+ components:
+ - type: Transform
+ pos: 145.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3344
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1243
+ components:
+ - type: Transform
+ pos: 63.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1303
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1361
+ components:
+ - type: Transform
+ pos: 86.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37459
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1535
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,151.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,134.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1588
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 1721
+ components:
+ - type: Transform
+ pos: 146.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29545
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18539
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,30.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,32.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25478
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2809
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,98.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2855
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 19097
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 4705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,60.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2997
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,135.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14594
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7228
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10751
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 7232
+ components:
+ - type: Transform
+ pos: 49.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10750
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8194
+ components:
+ - type: Transform
+ pos: 140.5,149.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8197
+ components:
+ - type: Transform
+ pos: 148.5,149.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29830
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8554
+ components:
+ - type: Transform
+ pos: 124.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10679
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10682
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10732
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10730
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,61.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10683
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10735
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10733
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 10745
+ components:
+ - type: Transform
+ pos: 50.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10746
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 11043
+ components:
+ - type: Transform
+ pos: 87.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2722
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22270
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12920
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,25.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10684
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12921
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,25.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10685
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 12945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,38.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13229
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,24.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10686
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 13228
+ components:
+ - type: Transform
+ pos: 46.5,45.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 13230
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14603
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,153.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14573
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14523
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,137.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14595
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14526
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14596
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14553
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14598
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,127.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14599
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14570
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,123.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14597
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14584
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14574
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14586
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,151.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14667
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14621
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,150.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14846
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14659
+ components:
+ - type: Transform
+ pos: 100.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14669
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 14843
+ components:
+ - type: Transform
+ pos: 105.5,160.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14840
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15274
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,143.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14601
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,135.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14600
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15410
+ components:
+ - type: Transform
+ pos: 77.5,122.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2464
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15430
+ components:
+ - type: Transform
+ pos: 76.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 2486
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15450
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15521
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,126.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 15515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,152.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36756
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16753
+ components:
+ - type: Transform
+ pos: 60.5,108.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17107
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16762
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,101.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17112
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17614
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27355
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16795
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,85.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17077
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16962
+ components:
+ - type: Transform
+ pos: 78.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17106
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 16977
+ components:
+ - type: Transform
+ pos: 73.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17109
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17093
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17007
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17103
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17008
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17097
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17024
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17080
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17025
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17081
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17075
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,96.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17091
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17076
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17096
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 17101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 75.5,86.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17102
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18415
+ components:
+ - type: Transform
+ pos: 149.5,89.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15662
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18502
+ components:
+ - type: Transform
+ pos: 139.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18610
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18616
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18541
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,111.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18602
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,105.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18612
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 18628
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,107.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18634
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,116.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 1676
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19601
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20352
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19602
+ components:
+ - type: Transform
+ pos: 47.5,91.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19612
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,83.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20343
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19613
+ components:
+ - type: Transform
+ pos: 37.5,88.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20334
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,112.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37335
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19722
+ components:
+ - type: Transform
+ pos: 50.5,102.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20359
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 33.5,110.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20375
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20372
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,113.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20373
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19815
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 27.5,117.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20374
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19820
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20378
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,104.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20363
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 19840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20376
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,90.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20340
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20356
+ components:
+ - type: Transform
+ pos: 39.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20353
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20400
+ components:
+ - type: Transform
+ pos: 124.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20496
+ components:
+ - type: Transform
+ pos: 124.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20504
+ components:
+ - type: Transform
+ pos: 124.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 20798
+ components:
+ - type: Transform
+ pos: 109.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26182
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21233
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22634
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21584
+ components:
+ - type: Transform
+ pos: 123.5,59.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21623
+ components:
+ - type: Transform
+ pos: 130.5,59.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22160
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21624
+ components:
+ - type: Transform
+ pos: 146.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22164
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21700
+ components:
+ - type: Transform
+ pos: 152.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22246
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21717
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,67.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22258
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21719
+ components:
+ - type: Transform
+ pos: 145.5,70.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22267
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21722
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,73.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,73.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22263
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21733
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,64.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22271
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21750
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3062
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 21777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,65.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22269
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,69.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22154
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22173
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,50.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22209
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22229
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22244
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22252
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22636
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 22599
+ components:
+ - type: Transform
+ pos: 126.5,55.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 22635
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23328
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 23380
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,46.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29340
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,103.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 20038
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25488
+ components:
+ - type: Transform
+ pos: 95.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25419
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25521
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25534
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25599
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,109.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 25615
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25632
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26188
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26186
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25690
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,94.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25698
+ components:
+ - type: Transform
+ pos: 117.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 143
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25739
+ components:
+ - type: Transform
+ pos: 124.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3059
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,93.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26180
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25772
+ components:
+ - type: Transform
+ pos: 111.5,63.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25831
+ components:
+ - type: Transform
+ pos: 104.5,68.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3121
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25834
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3113
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 3112
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25944
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,58.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 4625
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25960
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,76.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26965
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25964
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,74.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26214
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 25985
+ components:
+ - type: Transform
+ pos: 70.5,75.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26215
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26059
+ components:
+ - type: Transform
+ pos: 109.5,87.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26089
+ components:
+ - type: Transform
+ pos: 106.5,81.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26101
+ components:
+ - type: Transform
+ pos: 103.5,77.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26190
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,48.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26231
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,53.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,56.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 16599
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 26422
+ components:
+ - type: Transform
+ pos: 100.5,100.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 26183
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,51.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27729
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27851
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,92.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27854
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 27933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.5,106.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 27728
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28225
+ components:
+ - type: Transform
+ pos: 90.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30227
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28231
+ components:
+ - type: Transform
+ pos: 107.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28232
+ components:
+ - type: Transform
+ pos: 107.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28247
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28291
+ components:
+ - type: Transform
+ pos: 128.5,118.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28288
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,79.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28486
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28503
+ components:
+ - type: Transform
+ pos: 136.5,82.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28594
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,71.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28597
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28522
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,149.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28630
+ components:
+ - type: Transform
+ pos: 115.5,54.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28634
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,49.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28638
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 28905
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,66.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28908
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29233
+ components:
+ - type: Transform
+ pos: 158.5,124.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29236
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 29478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,136.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 29481
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,144.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 10326
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30203
+ components:
+ - type: Transform
+ pos: 147.5,99.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18621
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 30830
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,87.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32367
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,72.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 18183
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 32979
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 30395
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 34731
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,97.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 37358
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 35065
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,47.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 28741
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,40.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 23351
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36637
+ components:
+ - type: Transform
+ pos: 122.5,114.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 15935
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 36961
+ components:
+ - type: Transform
+ pos: 117.5,159.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 36963
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37269
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,135.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 14520
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 37411
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,91.5
+ parent: 1
+ - type: DeviceNetwork
+ deviceLists:
+ - 17089
+ - type: AtmosPipeColor
+ color: '#990000FF'
+- proto: GasVolumePump
+ entities:
+ - uid: 15723
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,139.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#947507FF'
+ - uid: 36883
+ components:
+ - type: Transform
+ pos: 85.5,138.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#FF0000FF'
+ - uid: 36897
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,140.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+- proto: Gauze
+ entities:
+ - uid: 17629
+ components:
+ - type: Transform
+ pos: 61.076164,104.55446
+ parent: 1
+- proto: Girder
+ entities:
+ - uid: 1543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 28.5,77.5
+ parent: 1
+ - uid: 1896
+ components:
+ - type: Transform
+ pos: 89.5,36.5
+ parent: 1
+ - uid: 3239
+ components:
+ - type: Transform
+ pos: 69.5,159.5
+ parent: 1
+ - uid: 3563
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,81.5
+ parent: 1
+ - uid: 8595
+ components:
+ - type: Transform
+ pos: 104.5,33.5
+ parent: 1
+ - uid: 8706
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,127.5
+ parent: 1
+ - uid: 9633
+ components:
+ - type: Transform
+ pos: 101.5,33.5
+ parent: 1
+ - uid: 10379
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,145.5
+ parent: 1
+ - uid: 12610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,33.5
+ parent: 1
+ - uid: 14770
+ components:
+ - type: Transform
+ pos: 108.5,34.5
+ parent: 1
+ - uid: 16912
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,166.5
+ parent: 1
+ - uid: 18614
+ components:
+ - type: Transform
+ pos: 46.5,120.5
+ parent: 1
+ - uid: 18689
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,119.5
+ parent: 1
+ - uid: 23435
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,162.5
+ parent: 1
+ - uid: 23502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,47.5
+ parent: 1
+ - uid: 32993
+ components:
+ - type: Transform
+ pos: 58.5,141.5
+ parent: 1
+ - uid: 34744
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,158.5
+ parent: 1
+ - uid: 35196
+ components:
+ - type: Transform
+ pos: 60.5,124.5
+ parent: 1
+ - uid: 35649
+ components:
+ - type: Transform
+ pos: 156.5,115.5
+ parent: 1
+ - uid: 35655
+ components:
+ - type: Transform
+ pos: 38.5,121.5
+ parent: 1
+ - uid: 35687
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,164.5
+ parent: 1
+ - uid: 36157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,107.5
+ parent: 1
+ - uid: 37032
+ components:
+ - type: Transform
+ pos: 95.5,164.5
+ parent: 1
+ - uid: 37046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,156.5
+ parent: 1
+- proto: GlassBoxLaserFilled
+ entities:
+ - uid: 13602
+ components:
+ - type: Transform
+ pos: 36.5,70.5
+ parent: 1
+- proto: GlowstickBase
+ entities:
+ - uid: 6214
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 146.5331,154.59888
+ parent: 1
+ - uid: 20942
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 51.897156,107.52971
+ parent: 1
+ - uid: 20943
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 52.459656,107.59221
+ parent: 1
+ - uid: 26694
+ components:
+ - type: Transform
+ pos: 121.13164,108.69944
+ parent: 1
+ - uid: 34090
+ components:
+ - type: Transform
+ pos: 76.52835,41.63775
+ parent: 1
+ - uid: 34091
+ components:
+ - type: Transform
+ pos: 76.11168,41.575207
+ parent: 1
+ - uid: 36520
+ components:
+ - type: Transform
+ pos: 23.5,74.5
+ parent: 1
+- proto: GlowstickBlue
+ entities:
+ - uid: 26697
+ components:
+ - type: Transform
+ pos: 121.28789,108.397354
+ parent: 1
+- proto: GlowstickPurple
+ entities:
+ - uid: 26695
+ components:
+ - type: Transform
+ pos: 121.48581,108.803604
+ parent: 1
+ - uid: 36318
+ components:
+ - type: Transform
+ pos: 57.193447,133.42755
+ parent: 1
+ - uid: 36457
+ components:
+ - type: Transform
+ pos: 23.5,71.5
+ parent: 1
+- proto: GlowstickRed
+ entities:
+ - uid: 26700
+ components:
+ - type: Transform
+ pos: 121.66289,108.51194
+ parent: 1
+ - uid: 36456
+ components:
+ - type: Transform
+ pos: 25.5,69.5
+ parent: 1
+- proto: GlowstickYellow
+ entities:
+ - uid: 36519
+ components:
+ - type: Transform
+ pos: 20.5,70.5
+ parent: 1
+- proto: GrapeSeeds
+ entities:
+ - uid: 30618
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 59.686188,134.72012
+ parent: 1
+ - uid: 30662
+ components:
+ - type: Transform
+ pos: 59.27669,132.274
+ parent: 1
+- proto: GrassBattlemap
+ entities:
+ - uid: 12694
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.56398,55.693684
+ parent: 1
+- proto: GravityGenerator
+ entities:
+ - uid: 30814
+ components:
+ - type: Transform
+ pos: 99.5,162.5
+ parent: 1
+- proto: Grille
+ entities:
+ - uid: 10
+ components:
+ - type: Transform
+ pos: 17.5,113.5
+ parent: 1
+ - uid: 12
+ components:
+ - type: Transform
+ pos: 17.5,112.5
+ parent: 1
+ - uid: 14
+ components:
+ - type: Transform
+ pos: 17.5,111.5
+ parent: 1
+ - uid: 16
+ components:
+ - type: Transform
+ pos: 17.5,110.5
+ parent: 1
+ - uid: 25
+ components:
+ - type: Transform
+ pos: 17.5,102.5
+ parent: 1
+ - uid: 27
+ components:
+ - type: Transform
+ pos: 17.5,101.5
+ parent: 1
+ - uid: 29
+ components:
+ - type: Transform
+ pos: 17.5,100.5
+ parent: 1
+ - uid: 31
+ components:
+ - type: Transform
+ pos: 17.5,99.5
+ parent: 1
+ - uid: 60
+ components:
+ - type: Transform
+ pos: 18.5,84.5
+ parent: 1
+ - uid: 62
+ components:
+ - type: Transform
+ pos: 18.5,83.5
+ parent: 1
+ - uid: 64
+ components:
+ - type: Transform
+ pos: 18.5,82.5
+ parent: 1
+ - uid: 90
+ components:
+ - type: Transform
+ pos: 19.5,75.5
+ parent: 1
+ - uid: 92
+ components:
+ - type: Transform
+ pos: 19.5,74.5
+ parent: 1
+ - uid: 94
+ components:
+ - type: Transform
+ pos: 19.5,73.5
+ parent: 1
+ - uid: 98
+ components:
+ - type: Transform
+ pos: 19.5,71.5
+ parent: 1
+ - uid: 100
+ components:
+ - type: Transform
+ pos: 19.5,70.5
+ parent: 1
+ - uid: 102
+ components:
+ - type: Transform
+ pos: 19.5,69.5
+ parent: 1
+ - uid: 149
+ components:
+ - type: Transform
+ pos: 22.5,125.5
+ parent: 1
+ - uid: 186
+ components:
+ - type: Transform
+ pos: 24.5,125.5
+ parent: 1
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 26.5,125.5
+ parent: 1
+ - uid: 268
+ components:
+ - type: Transform
+ pos: 27.5,114.5
+ parent: 1
+ - uid: 270
+ components:
+ - type: Transform
+ pos: 27.5,110.5
+ parent: 1
+ - uid: 276
+ components:
+ - type: Transform
+ pos: 62.5,37.5
+ parent: 1
+ - uid: 281
+ components:
+ - type: Transform
+ pos: 27.5,68.5
+ parent: 1
+ - uid: 284
+ components:
+ - type: Transform
+ pos: 28.5,125.5
+ parent: 1
+ - uid: 288
+ components:
+ - type: Transform
+ pos: 28.5,114.5
+ parent: 1
+ - uid: 290
+ components:
+ - type: Transform
+ pos: 28.5,110.5
+ parent: 1
+ - uid: 302
+ components:
+ - type: Transform
+ pos: 29.5,117.5
+ parent: 1
+ - uid: 305
+ components:
+ - type: Transform
+ pos: 29.5,115.5
+ parent: 1
+ - uid: 307
+ components:
+ - type: Transform
+ pos: 29.5,114.5
+ parent: 1
+ - uid: 309
+ components:
+ - type: Transform
+ pos: 29.5,113.5
+ parent: 1
+ - uid: 312
+ components:
+ - type: Transform
+ pos: 29.5,111.5
+ parent: 1
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 29.5,110.5
+ parent: 1
+ - uid: 316
+ components:
+ - type: Transform
+ pos: 29.5,109.5
+ parent: 1
+ - uid: 319
+ components:
+ - type: Transform
+ pos: 29.5,107.5
+ parent: 1
+ - uid: 338
+ components:
+ - type: Transform
+ pos: 29.5,68.5
+ parent: 1
+ - uid: 402
+ components:
+ - type: Transform
+ pos: 31.5,63.5
+ parent: 1
+ - uid: 404
+ components:
+ - type: Transform
+ pos: 31.5,62.5
+ parent: 1
+ - uid: 406
+ components:
+ - type: Transform
+ pos: 31.5,61.5
+ parent: 1
+ - uid: 409
+ components:
+ - type: Transform
+ pos: 31.5,59.5
+ parent: 1
+ - uid: 411
+ components:
+ - type: Transform
+ pos: 31.5,58.5
+ parent: 1
+ - uid: 413
+ components:
+ - type: Transform
+ pos: 31.5,57.5
+ parent: 1
+ - uid: 416
+ components:
+ - type: Transform
+ pos: 31.5,55.5
+ parent: 1
+ - uid: 418
+ components:
+ - type: Transform
+ pos: 31.5,54.5
+ parent: 1
+ - uid: 420
+ components:
+ - type: Transform
+ pos: 31.5,53.5
+ parent: 1
+ - uid: 432
+ components:
+ - type: Transform
+ pos: 39.5,103.5
+ parent: 1
+ - uid: 478
+ components:
+ - type: Transform
+ pos: 34.5,94.5
+ parent: 1
+ - uid: 481
+ components:
+ - type: Transform
+ pos: 34.5,92.5
+ parent: 1
+ - uid: 483
+ components:
+ - type: Transform
+ pos: 34.5,91.5
+ parent: 1
+ - uid: 486
+ components:
+ - type: Transform
+ pos: 34.5,89.5
+ parent: 1
+ - uid: 488
+ components:
+ - type: Transform
+ pos: 34.5,88.5
+ parent: 1
+ - uid: 491
+ components:
+ - type: Transform
+ pos: 34.5,86.5
+ parent: 1
+ - uid: 516
+ components:
+ - type: Transform
+ pos: 85.5,97.5
+ parent: 1
+ - uid: 526
+ components:
+ - type: Transform
+ pos: 37.5,85.5
+ parent: 1
+ - uid: 595
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 1
+ - uid: 615
+ components:
+ - type: Transform
+ pos: 37.5,47.5
+ parent: 1
+ - uid: 620
+ components:
+ - type: Transform
+ pos: 38.5,115.5
+ parent: 1
+ - uid: 622
+ components:
+ - type: Transform
+ pos: 50.5,94.5
+ parent: 1
+ - uid: 633
+ components:
+ - type: Transform
+ pos: 41.5,84.5
+ parent: 1
+ - uid: 638
+ components:
+ - type: Transform
+ pos: 38.5,47.5
+ parent: 1
+ - uid: 639
+ components:
+ - type: Transform
+ pos: 41.5,75.5
+ parent: 1
+ - uid: 642
+ components:
+ - type: Transform
+ pos: 41.5,71.5
+ parent: 1
+ - uid: 653
+ components:
+ - type: Transform
+ pos: 84.5,163.5
+ parent: 1
+ - uid: 654
+ components:
+ - type: Transform
+ pos: 39.5,115.5
+ parent: 1
+ - uid: 660
+ components:
+ - type: Transform
+ pos: 39.5,98.5
+ parent: 1
+ - uid: 669
+ components:
+ - type: Transform
+ pos: 39.5,47.5
+ parent: 1
+ - uid: 678
+ components:
+ - type: Transform
+ pos: 40.5,117.5
+ parent: 1
+ - uid: 680
+ components:
+ - type: Transform
+ pos: 40.5,116.5
+ parent: 1
+ - uid: 686
+ components:
+ - type: Transform
+ pos: 40.5,98.5
+ parent: 1
+ - uid: 738
+ components:
+ - type: Transform
+ pos: 41.5,106.5
+ parent: 1
+ - uid: 740
+ components:
+ - type: Transform
+ pos: 41.5,105.5
+ parent: 1
+ - uid: 742
+ components:
+ - type: Transform
+ pos: 41.5,104.5
+ parent: 1
+ - uid: 746
+ components:
+ - type: Transform
+ pos: 41.5,98.5
+ parent: 1
+ - uid: 748
+ components:
+ - type: Transform
+ pos: 41.5,97.5
+ parent: 1
+ - uid: 750
+ components:
+ - type: Transform
+ pos: 41.5,96.5
+ parent: 1
+ - uid: 754
+ components:
+ - type: Transform
+ pos: 41.5,93.5
+ parent: 1
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 41.5,92.5
+ parent: 1
+ - uid: 758
+ components:
+ - type: Transform
+ pos: 41.5,91.5
+ parent: 1
+ - uid: 762
+ components:
+ - type: Transform
+ pos: 41.5,89.5
+ parent: 1
+ - uid: 764
+ components:
+ - type: Transform
+ pos: 41.5,88.5
+ parent: 1
+ - uid: 766
+ components:
+ - type: Transform
+ pos: 41.5,87.5
+ parent: 1
+ - uid: 798
+ components:
+ - type: Transform
+ pos: 41.5,59.5
+ parent: 1
+ - uid: 800
+ components:
+ - type: Transform
+ pos: 41.5,58.5
+ parent: 1
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 41.5,57.5
+ parent: 1
+ - uid: 805
+ components:
+ - type: Transform
+ pos: 41.5,55.5
+ parent: 1
+ - uid: 807
+ components:
+ - type: Transform
+ pos: 41.5,54.5
+ parent: 1
+ - uid: 809
+ components:
+ - type: Transform
+ pos: 41.5,53.5
+ parent: 1
+ - uid: 847
+ components:
+ - type: Transform
+ pos: 79.5,127.5
+ parent: 1
+ - uid: 901
+ components:
+ - type: Transform
+ pos: 44.5,25.5
+ parent: 1
+ - uid: 904
+ components:
+ - type: Transform
+ pos: 44.5,23.5
+ parent: 1
+ - uid: 971
+ components:
+ - type: Transform
+ pos: 45.5,55.5
+ parent: 1
+ - uid: 973
+ components:
+ - type: Transform
+ pos: 45.5,54.5
+ parent: 1
+ - uid: 975
+ components:
+ - type: Transform
+ pos: 45.5,53.5
+ parent: 1
+ - uid: 990
+ components:
+ - type: Transform
+ pos: 45.5,30.5
+ parent: 1
+ - uid: 992
+ components:
+ - type: Transform
+ pos: 45.5,29.5
+ parent: 1
+ - uid: 994
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 1
+ - uid: 996
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 1
+ - uid: 1006
+ components:
+ - type: Transform
+ pos: 46.5,117.5
+ parent: 1
+ - uid: 1008
+ components:
+ - type: Transform
+ pos: 46.5,116.5
+ parent: 1
+ - uid: 1027
+ components:
+ - type: Transform
+ pos: 46.5,29.5
+ parent: 1
+ - uid: 1030
+ components:
+ - type: Transform
+ pos: 46.5,27.5
+ parent: 1
+ - uid: 1032
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 1
+ - uid: 1035
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 1
+ - uid: 1043
+ components:
+ - type: Transform
+ pos: 47.5,115.5
+ parent: 1
+ - uid: 1047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,74.5
+ parent: 1
+ - uid: 1060
+ components:
+ - type: Transform
+ pos: 47.5,27.5
+ parent: 1
+ - uid: 1062
+ components:
+ - type: Transform
+ pos: 47.5,26.5
+ parent: 1
+ - uid: 1064
+ components:
+ - type: Transform
+ pos: 47.5,25.5
+ parent: 1
+ - uid: 1066
+ components:
+ - type: Transform
+ pos: 47.5,24.5
+ parent: 1
+ - uid: 1068
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 1
+ - uid: 1070
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 1
+ - uid: 1072
+ components:
+ - type: Transform
+ pos: 47.5,21.5
+ parent: 1
+ - uid: 1081
+ components:
+ - type: Transform
+ pos: 48.5,115.5
+ parent: 1
+ - uid: 1090
+ components:
+ - type: Transform
+ pos: 48.5,94.5
+ parent: 1
+ - uid: 1096
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 1107
+ components:
+ - type: Transform
+ pos: 49.5,142.5
+ parent: 1
+ - uid: 1110
+ components:
+ - type: Transform
+ pos: 49.5,140.5
+ parent: 1
+ - uid: 1128
+ components:
+ - type: Transform
+ pos: 49.5,107.5
+ parent: 1
+ - uid: 1130
+ components:
+ - type: Transform
+ pos: 49.5,106.5
+ parent: 1
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 49.5,31.5
+ parent: 1
+ - uid: 1152
+ components:
+ - type: Transform
+ pos: 49.5,30.5
+ parent: 1
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 49.5,18.5
+ parent: 1
+ - uid: 1156
+ components:
+ - type: Transform
+ pos: 49.5,17.5
+ parent: 1
+ - uid: 1160
+ components:
+ - type: Transform
+ pos: 50.5,142.5
+ parent: 1
+ - uid: 1162
+ components:
+ - type: Transform
+ pos: 50.5,140.5
+ parent: 1
+ - uid: 1177
+ components:
+ - type: Transform
+ pos: 50.5,90.5
+ parent: 1
+ - uid: 1179
+ components:
+ - type: Transform
+ pos: 50.5,89.5
+ parent: 1
+ - uid: 1201
+ components:
+ - type: Transform
+ pos: 50.5,30.5
+ parent: 1
+ - uid: 1203
+ components:
+ - type: Transform
+ pos: 50.5,29.5
+ parent: 1
+ - uid: 1205
+ components:
+ - type: Transform
+ pos: 50.5,28.5
+ parent: 1
+ - uid: 1207
+ components:
+ - type: Transform
+ pos: 50.5,20.5
+ parent: 1
+ - uid: 1209
+ components:
+ - type: Transform
+ pos: 50.5,19.5
+ parent: 1
+ - uid: 1211
+ components:
+ - type: Transform
+ pos: 50.5,18.5
+ parent: 1
+ - uid: 1217
+ components:
+ - type: Transform
+ pos: 51.5,153.5
+ parent: 1
+ - uid: 1219
+ components:
+ - type: Transform
+ pos: 51.5,152.5
+ parent: 1
+ - uid: 1221
+ components:
+ - type: Transform
+ pos: 51.5,151.5
+ parent: 1
+ - uid: 1224
+ components:
+ - type: Transform
+ pos: 51.5,149.5
+ parent: 1
+ - uid: 1226
+ components:
+ - type: Transform
+ pos: 51.5,148.5
+ parent: 1
+ - uid: 1228
+ components:
+ - type: Transform
+ pos: 51.5,147.5
+ parent: 1
+ - uid: 1234
+ components:
+ - type: Transform
+ pos: 51.5,142.5
+ parent: 1
+ - uid: 1237
+ components:
+ - type: Transform
+ pos: 51.5,140.5
+ parent: 1
+ - uid: 1250
+ components:
+ - type: Transform
+ pos: 27.5,93.5
+ parent: 1
+ - uid: 1252
+ components:
+ - type: Transform
+ pos: 27.5,92.5
+ parent: 1
+ - uid: 1255
+ components:
+ - type: Transform
+ pos: 27.5,88.5
+ parent: 1
+ - uid: 1273
+ components:
+ - type: Transform
+ pos: 54.5,56.5
+ parent: 1
+ - uid: 1274
+ components:
+ - type: Transform
+ pos: 54.5,55.5
+ parent: 1
+ - uid: 1285
+ components:
+ - type: Transform
+ pos: 51.5,28.5
+ parent: 1
+ - uid: 1287
+ components:
+ - type: Transform
+ pos: 51.5,27.5
+ parent: 1
+ - uid: 1289
+ components:
+ - type: Transform
+ pos: 51.5,26.5
+ parent: 1
+ - uid: 1291
+ components:
+ - type: Transform
+ pos: 51.5,25.5
+ parent: 1
+ - uid: 1294
+ components:
+ - type: Transform
+ pos: 51.5,23.5
+ parent: 1
+ - uid: 1296
+ components:
+ - type: Transform
+ pos: 51.5,22.5
+ parent: 1
+ - uid: 1298
+ components:
+ - type: Transform
+ pos: 51.5,21.5
+ parent: 1
+ - uid: 1300
+ components:
+ - type: Transform
+ pos: 51.5,20.5
+ parent: 1
+ - uid: 1306
+ components:
+ - type: Transform
+ pos: 27.5,87.5
+ parent: 1
+ - uid: 1328
+ components:
+ - type: Transform
+ pos: 53.5,155.5
+ parent: 1
+ - uid: 1394
+ components:
+ - type: Transform
+ pos: 54.5,93.5
+ parent: 1
+ - uid: 1396
+ components:
+ - type: Transform
+ pos: 54.5,92.5
+ parent: 1
+ - uid: 1398
+ components:
+ - type: Transform
+ pos: 54.5,91.5
+ parent: 1
+ - uid: 1400
+ components:
+ - type: Transform
+ pos: 54.5,90.5
+ parent: 1
+ - uid: 1520
+ components:
+ - type: Transform
+ pos: 56.5,62.5
+ parent: 1
+ - uid: 1522
+ components:
+ - type: Transform
+ pos: 56.5,60.5
+ parent: 1
+ - uid: 1559
+ components:
+ - type: Transform
+ pos: 57.5,60.5
+ parent: 1
+ - uid: 1585
+ components:
+ - type: Transform
+ pos: 17.5,93.5
+ parent: 1
+ - uid: 1609
+ components:
+ - type: Transform
+ pos: 58.5,94.5
+ parent: 1
+ - uid: 1611
+ components:
+ - type: Transform
+ pos: 58.5,93.5
+ parent: 1
+ - uid: 1666
+ components:
+ - type: Transform
+ pos: 17.5,91.5
+ parent: 1
+ - uid: 1695
+ components:
+ - type: Transform
+ pos: 59.5,60.5
+ parent: 1
+ - uid: 1748
+ components:
+ - type: Transform
+ pos: 60.5,105.5
+ parent: 1
+ - uid: 1767
+ components:
+ - type: Transform
+ pos: 78.5,149.5
+ parent: 1
+ - uid: 1773
+ components:
+ - type: Transform
+ pos: 78.5,148.5
+ parent: 1
+ - uid: 1776
+ components:
+ - type: Transform
+ pos: 78.5,147.5
+ parent: 1
+ - uid: 1808
+ components:
+ - type: Transform
+ pos: 61.5,105.5
+ parent: 1
+ - uid: 1825
+ components:
+ - type: Transform
+ pos: 50.5,71.5
+ parent: 1
+ - uid: 1839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,44.5
+ parent: 1
+ - uid: 1862
+ components:
+ - type: Transform
+ pos: 62.5,105.5
+ parent: 1
+ - uid: 1911
+ components:
+ - type: Transform
+ pos: 104.5,49.5
+ parent: 1
+ - uid: 1964
+ components:
+ - type: Transform
+ pos: 93.5,27.5
+ parent: 1
+ - uid: 2052
+ components:
+ - type: Transform
+ pos: 65.5,140.5
+ parent: 1
+ - uid: 2054
+ components:
+ - type: Transform
+ pos: 65.5,139.5
+ parent: 1
+ - uid: 2056
+ components:
+ - type: Transform
+ pos: 65.5,138.5
+ parent: 1
+ - uid: 2086
+ components:
+ - type: Transform
+ pos: 65.5,61.5
+ parent: 1
+ - uid: 2143
+ components:
+ - type: Transform
+ pos: 66.5,144.5
+ parent: 1
+ - uid: 2145
+ components:
+ - type: Transform
+ pos: 66.5,143.5
+ parent: 1
+ - uid: 2147
+ components:
+ - type: Transform
+ pos: 66.5,142.5
+ parent: 1
+ - uid: 2151
+ components:
+ - type: Transform
+ pos: 66.5,136.5
+ parent: 1
+ - uid: 2153
+ components:
+ - type: Transform
+ pos: 66.5,135.5
+ parent: 1
+ - uid: 2155
+ components:
+ - type: Transform
+ pos: 66.5,134.5
+ parent: 1
+ - uid: 2189
+ components:
+ - type: Transform
+ pos: 67.5,148.5
+ parent: 1
+ - uid: 2191
+ components:
+ - type: Transform
+ pos: 67.5,147.5
+ parent: 1
+ - uid: 2193
+ components:
+ - type: Transform
+ pos: 67.5,146.5
+ parent: 1
+ - uid: 2197
+ components:
+ - type: Transform
+ pos: 67.5,132.5
+ parent: 1
+ - uid: 2199
+ components:
+ - type: Transform
+ pos: 67.5,131.5
+ parent: 1
+ - uid: 2201
+ components:
+ - type: Transform
+ pos: 67.5,130.5
+ parent: 1
+ - uid: 2217
+ components:
+ - type: Transform
+ pos: 67.5,89.5
+ parent: 1
+ - uid: 2228
+ components:
+ - type: Transform
+ pos: 71.5,40.5
+ parent: 1
+ - uid: 2236
+ components:
+ - type: Transform
+ pos: 68.5,165.5
+ parent: 1
+ - uid: 2243
+ components:
+ - type: Transform
+ pos: 68.5,152.5
+ parent: 1
+ - uid: 2245
+ components:
+ - type: Transform
+ pos: 68.5,151.5
+ parent: 1
+ - uid: 2247
+ components:
+ - type: Transform
+ pos: 68.5,150.5
+ parent: 1
+ - uid: 2250
+ components:
+ - type: Transform
+ pos: 68.5,143.5
+ parent: 1
+ - uid: 2252
+ components:
+ - type: Transform
+ pos: 68.5,142.5
+ parent: 1
+ - uid: 2255
+ components:
+ - type: Transform
+ pos: 68.5,140.5
+ parent: 1
+ - uid: 2257
+ components:
+ - type: Transform
+ pos: 68.5,139.5
+ parent: 1
+ - uid: 2259
+ components:
+ - type: Transform
+ pos: 68.5,138.5
+ parent: 1
+ - uid: 2262
+ components:
+ - type: Transform
+ pos: 68.5,136.5
+ parent: 1
+ - uid: 2264
+ components:
+ - type: Transform
+ pos: 68.5,135.5
+ parent: 1
+ - uid: 2267
+ components:
+ - type: Transform
+ pos: 68.5,128.5
+ parent: 1
+ - uid: 2269
+ components:
+ - type: Transform
+ pos: 68.5,127.5
+ parent: 1
+ - uid: 2271
+ components:
+ - type: Transform
+ pos: 68.5,126.5
+ parent: 1
+ - uid: 2295
+ components:
+ - type: Transform
+ pos: 69.5,165.5
+ parent: 1
+ - uid: 2301
+ components:
+ - type: Transform
+ pos: 69.5,147.5
+ parent: 1
+ - uid: 2303
+ components:
+ - type: Transform
+ pos: 69.5,146.5
+ parent: 1
+ - uid: 2306
+ components:
+ - type: Transform
+ pos: 69.5,144.5
+ parent: 1
+ - uid: 2308
+ components:
+ - type: Transform
+ pos: 69.5,143.5
+ parent: 1
+ - uid: 2310
+ components:
+ - type: Transform
+ pos: 69.5,135.5
+ parent: 1
+ - uid: 2312
+ components:
+ - type: Transform
+ pos: 69.5,134.5
+ parent: 1
+ - uid: 2315
+ components:
+ - type: Transform
+ pos: 69.5,132.5
+ parent: 1
+ - uid: 2317
+ components:
+ - type: Transform
+ pos: 69.5,131.5
+ parent: 1
+ - uid: 2330
+ components:
+ - type: Transform
+ pos: 69.5,97.5
+ parent: 1
+ - uid: 2366
+ components:
+ - type: Transform
+ pos: 69.5,38.5
+ parent: 1
+ - uid: 2368
+ components:
+ - type: Transform
+ pos: 69.5,37.5
+ parent: 1
+ - uid: 2370
+ components:
+ - type: Transform
+ pos: 69.5,36.5
+ parent: 1
+ - uid: 2374
+ components:
+ - type: Transform
+ pos: 69.5,32.5
+ parent: 1
+ - uid: 2376
+ components:
+ - type: Transform
+ pos: 69.5,31.5
+ parent: 1
+ - uid: 2378
+ components:
+ - type: Transform
+ pos: 69.5,30.5
+ parent: 1
+ - uid: 2380
+ components:
+ - type: Transform
+ pos: 69.5,29.5
+ parent: 1
+ - uid: 2391
+ components:
+ - type: Transform
+ pos: 69.5,15.5
+ parent: 1
+ - uid: 2393
+ components:
+ - type: Transform
+ pos: 70.5,165.5
+ parent: 1
+ - uid: 2397
+ components:
+ - type: Transform
+ pos: 70.5,153.5
+ parent: 1
+ - uid: 2399
+ components:
+ - type: Transform
+ pos: 70.5,152.5
+ parent: 1
+ - uid: 2401
+ components:
+ - type: Transform
+ pos: 70.5,151.5
+ parent: 1
+ - uid: 2403
+ components:
+ - type: Transform
+ pos: 70.5,150.5
+ parent: 1
+ - uid: 2406
+ components:
+ - type: Transform
+ pos: 70.5,148.5
+ parent: 1
+ - uid: 2408
+ components:
+ - type: Transform
+ pos: 70.5,147.5
+ parent: 1
+ - uid: 2410
+ components:
+ - type: Transform
+ pos: 70.5,131.5
+ parent: 1
+ - uid: 2412
+ components:
+ - type: Transform
+ pos: 70.5,130.5
+ parent: 1
+ - uid: 2415
+ components:
+ - type: Transform
+ pos: 70.5,128.5
+ parent: 1
+ - uid: 2417
+ components:
+ - type: Transform
+ pos: 70.5,127.5
+ parent: 1
+ - uid: 2419
+ components:
+ - type: Transform
+ pos: 70.5,126.5
+ parent: 1
+ - uid: 2454
+ components:
+ - type: Transform
+ pos: 70.5,15.5
+ parent: 1
+ - uid: 2505
+ components:
+ - type: Transform
+ pos: 71.5,15.5
+ parent: 1
+ - uid: 2513
+ components:
+ - type: Transform
+ pos: 37.5,127.5
+ parent: 1
+ - uid: 2531
+ components:
+ - type: Transform
+ pos: 111.5,102.5
+ parent: 1
+ - uid: 2542
+ components:
+ - type: Transform
+ pos: 72.5,40.5
+ parent: 1
+ - uid: 2579
+ components:
+ - type: Transform
+ pos: 73.5,40.5
+ parent: 1
+ - uid: 2583
+ components:
+ - type: Transform
+ pos: 74.5,163.5
+ parent: 1
+ - uid: 2598
+ components:
+ - type: Transform
+ pos: 74.5,88.5
+ parent: 1
+ - uid: 2616
+ components:
+ - type: Transform
+ pos: 74.5,40.5
+ parent: 1
+ - uid: 2619
+ components:
+ - type: Transform
+ pos: 74.5,15.5
+ parent: 1
+ - uid: 2621
+ components:
+ - type: Transform
+ pos: 75.5,163.5
+ parent: 1
+ - uid: 2627
+ components:
+ - type: Transform
+ pos: 75.5,124.5
+ parent: 1
+ - uid: 2635
+ components:
+ - type: Transform
+ pos: 73.5,88.5
+ parent: 1
+ - uid: 2637
+ components:
+ - type: Transform
+ pos: 73.5,89.5
+ parent: 1
+ - uid: 2638
+ components:
+ - type: Transform
+ pos: 75.5,88.5
+ parent: 1
+ - uid: 2655
+ components:
+ - type: Transform
+ pos: 75.5,40.5
+ parent: 1
+ - uid: 2658
+ components:
+ - type: Transform
+ pos: 75.5,15.5
+ parent: 1
+ - uid: 2664
+ components:
+ - type: Transform
+ pos: 76.5,124.5
+ parent: 1
+ - uid: 2679
+ components:
+ - type: Transform
+ pos: 76.5,89.5
+ parent: 1
+ - uid: 2681
+ components:
+ - type: Transform
+ pos: 76.5,88.5
+ parent: 1
+ - uid: 2688
+ components:
+ - type: Transform
+ pos: 76.5,78.5
+ parent: 1
+ - uid: 2691
+ components:
+ - type: Transform
+ pos: 76.5,76.5
+ parent: 1
+ - uid: 2693
+ components:
+ - type: Transform
+ pos: 76.5,75.5
+ parent: 1
+ - uid: 2695
+ components:
+ - type: Transform
+ pos: 76.5,74.5
+ parent: 1
+ - uid: 2697
+ components:
+ - type: Transform
+ pos: 76.5,73.5
+ parent: 1
+ - uid: 2699
+ components:
+ - type: Transform
+ pos: 76.5,72.5
+ parent: 1
+ - uid: 2701
+ components:
+ - type: Transform
+ pos: 76.5,71.5
+ parent: 1
+ - uid: 2710
+ components:
+ - type: Transform
+ pos: 76.5,40.5
+ parent: 1
+ - uid: 2713
+ components:
+ - type: Transform
+ pos: 76.5,15.5
+ parent: 1
+ - uid: 2715
+ components:
+ - type: Transform
+ pos: 77.5,163.5
+ parent: 1
+ - uid: 2737
+ components:
+ - type: Transform
+ pos: 77.5,124.5
+ parent: 1
+ - uid: 2753
+ components:
+ - type: Transform
+ pos: 77.5,71.5
+ parent: 1
+ - uid: 2762
+ components:
+ - type: Transform
+ pos: 77.5,40.5
+ parent: 1
+ - uid: 2767
+ components:
+ - type: Transform
+ pos: 78.5,163.5
+ parent: 1
+ - uid: 2822
+ components:
+ - type: Transform
+ pos: 78.5,40.5
+ parent: 1
+ - uid: 2866
+ components:
+ - type: Transform
+ pos: 79.5,85.5
+ parent: 1
+ - uid: 2870
+ components:
+ - type: Transform
+ pos: 79.5,77.5
+ parent: 1
+ - uid: 2872
+ components:
+ - type: Transform
+ pos: 79.5,71.5
+ parent: 1
+ - uid: 2875
+ components:
+ - type: Transform
+ pos: 79.5,66.5
+ parent: 1
+ - uid: 2889
+ components:
+ - type: Transform
+ pos: 79.5,40.5
+ parent: 1
+ - uid: 2892
+ components:
+ - type: Transform
+ pos: 79.5,15.5
+ parent: 1
+ - uid: 2894
+ components:
+ - type: Transform
+ pos: 80.5,163.5
+ parent: 1
+ - uid: 2917
+ components:
+ - type: Transform
+ pos: 80.5,97.5
+ parent: 1
+ - uid: 2927
+ components:
+ - type: Transform
+ pos: 80.5,85.5
+ parent: 1
+ - uid: 2933
+ components:
+ - type: Transform
+ pos: 80.5,77.5
+ parent: 1
+ - uid: 2935
+ components:
+ - type: Transform
+ pos: 80.5,76.5
+ parent: 1
+ - uid: 2937
+ components:
+ - type: Transform
+ pos: 80.5,75.5
+ parent: 1
+ - uid: 2939
+ components:
+ - type: Transform
+ pos: 80.5,74.5
+ parent: 1
+ - uid: 2941
+ components:
+ - type: Transform
+ pos: 80.5,73.5
+ parent: 1
+ - uid: 2943
+ components:
+ - type: Transform
+ pos: 80.5,72.5
+ parent: 1
+ - uid: 2945
+ components:
+ - type: Transform
+ pos: 80.5,71.5
+ parent: 1
+ - uid: 2948
+ components:
+ - type: Transform
+ pos: 80.5,66.5
+ parent: 1
+ - uid: 2971
+ components:
+ - type: Transform
+ pos: 80.5,15.5
+ parent: 1
+ - uid: 2973
+ components:
+ - type: Transform
+ pos: 81.5,163.5
+ parent: 1
+ - uid: 2978
+ components:
+ - type: Transform
+ pos: 78.5,142.5
+ parent: 1
+ - uid: 2982
+ components:
+ - type: Transform
+ pos: 83.5,128.5
+ parent: 1
+ - uid: 2991
+ components:
+ - type: Transform
+ pos: 81.5,85.5
+ parent: 1
+ - uid: 2995
+ components:
+ - type: Transform
+ pos: 40.5,43.5
+ parent: 1
+ - uid: 2996
+ components:
+ - type: Transform
+ pos: 81.5,66.5
+ parent: 1
+ - uid: 3008
+ components:
+ - type: Transform
+ pos: 81.5,38.5
+ parent: 1
+ - uid: 3010
+ components:
+ - type: Transform
+ pos: 81.5,37.5
+ parent: 1
+ - uid: 3012
+ components:
+ - type: Transform
+ pos: 81.5,36.5
+ parent: 1
+ - uid: 3016
+ components:
+ - type: Transform
+ pos: 81.5,32.5
+ parent: 1
+ - uid: 3018
+ components:
+ - type: Transform
+ pos: 81.5,31.5
+ parent: 1
+ - uid: 3020
+ components:
+ - type: Transform
+ pos: 81.5,30.5
+ parent: 1
+ - uid: 3022
+ components:
+ - type: Transform
+ pos: 81.5,29.5
+ parent: 1
+ - uid: 3033
+ components:
+ - type: Transform
+ pos: 81.5,15.5
+ parent: 1
+ - uid: 3038
+ components:
+ - type: Transform
+ pos: 86.5,129.5
+ parent: 1
+ - uid: 3040
+ components:
+ - type: Transform
+ pos: 85.5,128.5
+ parent: 1
+ - uid: 3041
+ components:
+ - type: Transform
+ pos: 78.5,143.5
+ parent: 1
+ - uid: 3052
+ components:
+ - type: Transform
+ pos: 82.5,89.5
+ parent: 1
+ - uid: 3060
+ components:
+ - type: Transform
+ pos: 82.5,66.5
+ parent: 1
+ - uid: 3075
+ components:
+ - type: Transform
+ pos: 83.5,163.5
+ parent: 1
+ - uid: 3086
+ components:
+ - type: Transform
+ pos: 50.5,74.5
+ parent: 1
+ - uid: 3116
+ components:
+ - type: Transform
+ pos: 83.5,66.5
+ parent: 1
+ - uid: 3136
+ components:
+ - type: Transform
+ pos: 86.5,53.5
+ parent: 1
+ - uid: 3137
+ components:
+ - type: Transform
+ pos: 85.5,53.5
+ parent: 1
+ - uid: 3140
+ components:
+ - type: Transform
+ pos: 85.5,55.5
+ parent: 1
+ - uid: 3180
+ components:
+ - type: Transform
+ pos: 84.5,66.5
+ parent: 1
+ - uid: 3198
+ components:
+ - type: Transform
+ pos: 86.5,130.5
+ parent: 1
+ - uid: 3231
+ components:
+ - type: Transform
+ pos: 85.5,92.5
+ parent: 1
+ - uid: 3233
+ components:
+ - type: Transform
+ pos: 85.5,91.5
+ parent: 1
+ - uid: 3235
+ components:
+ - type: Transform
+ pos: 85.5,90.5
+ parent: 1
+ - uid: 3236
+ components:
+ - type: Transform
+ pos: 64.5,95.5
+ parent: 1
+ - uid: 3248
+ components:
+ - type: Transform
+ pos: 85.5,68.5
+ parent: 1
+ - uid: 3250
+ components:
+ - type: Transform
+ pos: 85.5,67.5
+ parent: 1
+ - uid: 3252
+ components:
+ - type: Transform
+ pos: 85.5,66.5
+ parent: 1
+ - uid: 3299
+ components:
+ - type: Transform
+ pos: 86.5,123.5
+ parent: 1
+ - uid: 3309
+ components:
+ - type: Transform
+ pos: 86.5,111.5
+ parent: 1
+ - uid: 3313
+ components:
+ - type: Transform
+ pos: 64.5,94.5
+ parent: 1
+ - uid: 3314
+ components:
+ - type: Transform
+ pos: 64.5,93.5
+ parent: 1
+ - uid: 3331
+ components:
+ - type: Transform
+ pos: 87.5,111.5
+ parent: 1
+ - uid: 3380
+ components:
+ - type: Transform
+ pos: 87.5,17.5
+ parent: 1
+ - uid: 3388
+ components:
+ - type: Transform
+ pos: 88.5,111.5
+ parent: 1
+ - uid: 3391
+ components:
+ - type: Transform
+ pos: 38.5,103.5
+ parent: 1
+ - uid: 3410
+ components:
+ - type: Transform
+ pos: 88.5,17.5
+ parent: 1
+ - uid: 3414
+ components:
+ - type: Transform
+ pos: 89.5,172.5
+ parent: 1
+ - uid: 3416
+ components:
+ - type: Transform
+ pos: 89.5,171.5
+ parent: 1
+ - uid: 3420
+ components:
+ - type: Transform
+ pos: 89.5,169.5
+ parent: 1
+ - uid: 3422
+ components:
+ - type: Transform
+ pos: 89.5,168.5
+ parent: 1
+ - uid: 3456
+ components:
+ - type: Transform
+ pos: 102.5,70.5
+ parent: 1
+ - uid: 3457
+ components:
+ - type: Transform
+ pos: 102.5,69.5
+ parent: 1
+ - uid: 3476
+ components:
+ - type: Transform
+ pos: 89.5,17.5
+ parent: 1
+ - uid: 3493
+ components:
+ - type: Transform
+ pos: 90.5,144.5
+ parent: 1
+ - uid: 3495
+ components:
+ - type: Transform
+ pos: 90.5,143.5
+ parent: 1
+ - uid: 3509
+ components:
+ - type: Transform
+ pos: 90.5,135.5
+ parent: 1
+ - uid: 3511
+ components:
+ - type: Transform
+ pos: 90.5,134.5
+ parent: 1
+ - uid: 3523
+ components:
+ - type: Transform
+ pos: 90.5,123.5
+ parent: 1
+ - uid: 3557
+ components:
+ - type: Transform
+ pos: 90.5,66.5
+ parent: 1
+ - uid: 3560
+ components:
+ - type: Transform
+ pos: 152.5,54.5
+ parent: 1
+ - uid: 3570
+ components:
+ - type: Transform
+ pos: 90.5,17.5
+ parent: 1
+ - uid: 3572
+ components:
+ - type: Transform
+ pos: 91.5,174.5
+ parent: 1
+ - uid: 3600
+ components:
+ - type: Transform
+ pos: 91.5,66.5
+ parent: 1
+ - uid: 3616
+ components:
+ - type: Transform
+ pos: 91.5,17.5
+ parent: 1
+ - uid: 3618
+ components:
+ - type: Transform
+ pos: 92.5,174.5
+ parent: 1
+ - uid: 3635
+ components:
+ - type: Transform
+ pos: 92.5,144.5
+ parent: 1
+ - uid: 3637
+ components:
+ - type: Transform
+ pos: 92.5,143.5
+ parent: 1
+ - uid: 3651
+ components:
+ - type: Transform
+ pos: 92.5,135.5
+ parent: 1
+ - uid: 3653
+ components:
+ - type: Transform
+ pos: 92.5,134.5
+ parent: 1
+ - uid: 3691
+ components:
+ - type: Transform
+ pos: 92.5,62.5
+ parent: 1
+ - uid: 3756
+ components:
+ - type: Transform
+ pos: 93.5,62.5
+ parent: 1
+ - uid: 3776
+ components:
+ - type: Transform
+ pos: 94.5,120.5
+ parent: 1
+ - uid: 3805
+ components:
+ - type: Transform
+ pos: 94.5,17.5
+ parent: 1
+ - uid: 3807
+ components:
+ - type: Transform
+ pos: 94.5,14.5
+ parent: 1
+ - uid: 3826
+ components:
+ - type: Transform
+ pos: 95.5,120.5
+ parent: 1
+ - uid: 3828
+ components:
+ - type: Transform
+ pos: 95.5,116.5
+ parent: 1
+ - uid: 3863
+ components:
+ - type: Transform
+ pos: 125.5,30.5
+ parent: 1
+ - uid: 3886
+ components:
+ - type: Transform
+ pos: 96.5,142.5
+ parent: 1
+ - uid: 3888
+ components:
+ - type: Transform
+ pos: 96.5,141.5
+ parent: 1
+ - uid: 3890
+ components:
+ - type: Transform
+ pos: 96.5,140.5
+ parent: 1
+ - uid: 3897
+ components:
+ - type: Transform
+ pos: 96.5,134.5
+ parent: 1
+ - uid: 3899
+ components:
+ - type: Transform
+ pos: 96.5,133.5
+ parent: 1
+ - uid: 3901
+ components:
+ - type: Transform
+ pos: 96.5,132.5
+ parent: 1
+ - uid: 3905
+ components:
+ - type: Transform
+ pos: 96.5,120.5
+ parent: 1
+ - uid: 3931
+ components:
+ - type: Transform
+ pos: 125.5,32.5
+ parent: 1
+ - uid: 3932
+ components:
+ - type: Transform
+ pos: 125.5,27.5
+ parent: 1
+ - uid: 3934
+ components:
+ - type: Transform
+ pos: 125.5,31.5
+ parent: 1
+ - uid: 3936
+ components:
+ - type: Transform
+ pos: 34.5,138.5
+ parent: 1
+ - uid: 3937
+ components:
+ - type: Transform
+ pos: 33.5,138.5
+ parent: 1
+ - uid: 3938
+ components:
+ - type: Transform
+ pos: 32.5,138.5
+ parent: 1
+ - uid: 3939
+ components:
+ - type: Transform
+ pos: 31.5,138.5
+ parent: 1
+ - uid: 3940
+ components:
+ - type: Transform
+ pos: 35.5,138.5
+ parent: 1
+ - uid: 4011
+ components:
+ - type: Transform
+ pos: 78.5,129.5
+ parent: 1
+ - uid: 4021
+ components:
+ - type: Transform
+ pos: 98.5,116.5
+ parent: 1
+ - uid: 4022
+ components:
+ - type: Transform
+ pos: 45.5,50.5
+ parent: 1
+ - uid: 4038
+ components:
+ - type: Transform
+ pos: 78.5,132.5
+ parent: 1
+ - uid: 4053
+ components:
+ - type: Transform
+ pos: 78.5,15.5
+ parent: 1
+ - uid: 4055
+ components:
+ - type: Transform
+ pos: 71.5,19.5
+ parent: 1
+ - uid: 4069
+ components:
+ - type: Transform
+ pos: 99.5,142.5
+ parent: 1
+ - uid: 4071
+ components:
+ - type: Transform
+ pos: 99.5,141.5
+ parent: 1
+ - uid: 4073
+ components:
+ - type: Transform
+ pos: 99.5,140.5
+ parent: 1
+ - uid: 4076
+ components:
+ - type: Transform
+ pos: 99.5,138.5
+ parent: 1
+ - uid: 4078
+ components:
+ - type: Transform
+ pos: 99.5,137.5
+ parent: 1
+ - uid: 4080
+ components:
+ - type: Transform
+ pos: 99.5,136.5
+ parent: 1
+ - uid: 4083
+ components:
+ - type: Transform
+ pos: 99.5,134.5
+ parent: 1
+ - uid: 4085
+ components:
+ - type: Transform
+ pos: 99.5,133.5
+ parent: 1
+ - uid: 4086
+ components:
+ - type: Transform
+ pos: 50.5,52.5
+ parent: 1
+ - uid: 4087
+ components:
+ - type: Transform
+ pos: 99.5,132.5
+ parent: 1
+ - uid: 4097
+ components:
+ - type: Transform
+ pos: 99.5,116.5
+ parent: 1
+ - uid: 4134
+ components:
+ - type: Transform
+ pos: 125.5,28.5
+ parent: 1
+ - uid: 4136
+ components:
+ - type: Transform
+ pos: 125.5,26.5
+ parent: 1
+ - uid: 4151
+ components:
+ - type: Transform
+ pos: 100.5,116.5
+ parent: 1
+ - uid: 4195
+ components:
+ - type: Transform
+ pos: 101.5,105.5
+ parent: 1
+ - uid: 4292
+ components:
+ - type: Transform
+ pos: 79.5,151.5
+ parent: 1
+ - uid: 4295
+ components:
+ - type: Transform
+ pos: 103.5,128.5
+ parent: 1
+ - uid: 4297
+ components:
+ - type: Transform
+ pos: 103.5,126.5
+ parent: 1
+ - uid: 4307
+ components:
+ - type: Transform
+ pos: 103.5,85.5
+ parent: 1
+ - uid: 4310
+ components:
+ - type: Transform
+ pos: 103.5,83.5
+ parent: 1
+ - uid: 4312
+ components:
+ - type: Transform
+ pos: 103.5,82.5
+ parent: 1
+ - uid: 4314
+ components:
+ - type: Transform
+ pos: 103.5,81.5
+ parent: 1
+ - uid: 4316
+ components:
+ - type: Transform
+ pos: 103.5,80.5
+ parent: 1
+ - uid: 4318
+ components:
+ - type: Transform
+ pos: 103.5,79.5
+ parent: 1
+ - uid: 4348
+ components:
+ - type: Transform
+ pos: 104.5,146.5
+ parent: 1
+ - uid: 4350
+ components:
+ - type: Transform
+ pos: 104.5,128.5
+ parent: 1
+ - uid: 4352
+ components:
+ - type: Transform
+ pos: 104.5,126.5
+ parent: 1
+ - uid: 4358
+ components:
+ - type: Transform
+ pos: 104.5,106.5
+ parent: 1
+ - uid: 4363
+ components:
+ - type: Transform
+ pos: 104.5,85.5
+ parent: 1
+ - uid: 4365
+ components:
+ - type: Transform
+ pos: 104.5,79.5
+ parent: 1
+ - uid: 4395
+ components:
+ - type: Transform
+ pos: 105.5,146.5
+ parent: 1
+ - uid: 4397
+ components:
+ - type: Transform
+ pos: 105.5,128.5
+ parent: 1
+ - uid: 4399
+ components:
+ - type: Transform
+ pos: 105.5,126.5
+ parent: 1
+ - uid: 4408
+ components:
+ - type: Transform
+ pos: 105.5,85.5
+ parent: 1
+ - uid: 4410
+ components:
+ - type: Transform
+ pos: 105.5,79.5
+ parent: 1
+ - uid: 4430
+ components:
+ - type: Transform
+ pos: 105.5,17.5
+ parent: 1
+ - uid: 4447
+ components:
+ - type: Transform
+ pos: 106.5,116.5
+ parent: 1
+ - uid: 4454
+ components:
+ - type: Transform
+ pos: 106.5,94.5
+ parent: 1
+ - uid: 4456
+ components:
+ - type: Transform
+ pos: 106.5,93.5
+ parent: 1
+ - uid: 4458
+ components:
+ - type: Transform
+ pos: 106.5,92.5
+ parent: 1
+ - uid: 4460
+ components:
+ - type: Transform
+ pos: 106.5,91.5
+ parent: 1
+ - uid: 4462
+ components:
+ - type: Transform
+ pos: 106.5,90.5
+ parent: 1
+ - uid: 4464
+ components:
+ - type: Transform
+ pos: 106.5,85.5
+ parent: 1
+ - uid: 4466
+ components:
+ - type: Transform
+ pos: 106.5,79.5
+ parent: 1
+ - uid: 4491
+ components:
+ - type: Transform
+ pos: 106.5,17.5
+ parent: 1
+ - uid: 4498
+ components:
+ - type: Transform
+ pos: 107.5,153.5
+ parent: 1
+ - uid: 4500
+ components:
+ - type: Transform
+ pos: 107.5,146.5
+ parent: 1
+ - uid: 4502
+ components:
+ - type: Transform
+ pos: 107.5,128.5
+ parent: 1
+ - uid: 4504
+ components:
+ - type: Transform
+ pos: 107.5,126.5
+ parent: 1
+ - uid: 4510
+ components:
+ - type: Transform
+ pos: 107.5,116.5
+ parent: 1
+ - uid: 4516
+ components:
+ - type: Transform
+ pos: 107.5,90.5
+ parent: 1
+ - uid: 4518
+ components:
+ - type: Transform
+ pos: 107.5,89.5
+ parent: 1
+ - uid: 4520
+ components:
+ - type: Transform
+ pos: 107.5,85.5
+ parent: 1
+ - uid: 4543
+ components:
+ - type: Transform
+ pos: 107.5,17.5
+ parent: 1
+ - uid: 4550
+ components:
+ - type: Transform
+ pos: 108.5,153.5
+ parent: 1
+ - uid: 4552
+ components:
+ - type: Transform
+ pos: 108.5,146.5
+ parent: 1
+ - uid: 4554
+ components:
+ - type: Transform
+ pos: 108.5,128.5
+ parent: 1
+ - uid: 4556
+ components:
+ - type: Transform
+ pos: 108.5,126.5
+ parent: 1
+ - uid: 4557
+ components:
+ - type: Transform
+ pos: 159.5,96.5
+ parent: 1
+ - uid: 4562
+ components:
+ - type: Transform
+ pos: 108.5,116.5
+ parent: 1
+ - uid: 4568
+ components:
+ - type: Transform
+ pos: 108.5,89.5
+ parent: 1
+ - uid: 4570
+ components:
+ - type: Transform
+ pos: 108.5,85.5
+ parent: 1
+ - uid: 4572
+ components:
+ - type: Transform
+ pos: 108.5,79.5
+ parent: 1
+ - uid: 4574
+ components:
+ - type: Transform
+ pos: 69.5,52.5
+ parent: 1
+ - uid: 4588
+ components:
+ - type: Transform
+ pos: 108.5,17.5
+ parent: 1
+ - uid: 4595
+ components:
+ - type: Transform
+ pos: 109.5,153.5
+ parent: 1
+ - uid: 4597
+ components:
+ - type: Transform
+ pos: 109.5,146.5
+ parent: 1
+ - uid: 4599
+ components:
+ - type: Transform
+ pos: 109.5,128.5
+ parent: 1
+ - uid: 4601
+ components:
+ - type: Transform
+ pos: 109.5,126.5
+ parent: 1
+ - uid: 4607
+ components:
+ - type: Transform
+ pos: 109.5,116.5
+ parent: 1
+ - uid: 4613
+ components:
+ - type: Transform
+ pos: 109.5,89.5
+ parent: 1
+ - uid: 4615
+ components:
+ - type: Transform
+ pos: 109.5,85.5
+ parent: 1
+ - uid: 4617
+ components:
+ - type: Transform
+ pos: 109.5,84.5
+ parent: 1
+ - uid: 4619
+ components:
+ - type: Transform
+ pos: 109.5,83.5
+ parent: 1
+ - uid: 4621
+ components:
+ - type: Transform
+ pos: 109.5,82.5
+ parent: 1
+ - uid: 4623
+ components:
+ - type: Transform
+ pos: 109.5,81.5
+ parent: 1
+ - uid: 4626
+ components:
+ - type: Transform
+ pos: 109.5,79.5
+ parent: 1
+ - uid: 4649
+ components:
+ - type: Transform
+ pos: 109.5,17.5
+ parent: 1
+ - uid: 4666
+ components:
+ - type: Transform
+ pos: 110.5,116.5
+ parent: 1
+ - uid: 4673
+ components:
+ - type: Transform
+ pos: 110.5,89.5
+ parent: 1
+ - uid: 4708
+ components:
+ - type: Transform
+ pos: 111.5,146.5
+ parent: 1
+ - uid: 4710
+ components:
+ - type: Transform
+ pos: 111.5,128.5
+ parent: 1
+ - uid: 4712
+ components:
+ - type: Transform
+ pos: 111.5,126.5
+ parent: 1
+ - uid: 4721
+ components:
+ - type: Transform
+ pos: 111.5,89.5
+ parent: 1
+ - uid: 4740
+ components:
+ - type: Transform
+ pos: 112.5,146.5
+ parent: 1
+ - uid: 4742
+ components:
+ - type: Transform
+ pos: 112.5,128.5
+ parent: 1
+ - uid: 4744
+ components:
+ - type: Transform
+ pos: 112.5,126.5
+ parent: 1
+ - uid: 4746
+ components:
+ - type: Transform
+ pos: 42.5,42.5
+ parent: 1
+ - uid: 4750
+ components:
+ - type: Transform
+ pos: 112.5,106.5
+ parent: 1
+ - uid: 4755
+ components:
+ - type: Transform
+ pos: 112.5,89.5
+ parent: 1
+ - uid: 4793
+ components:
+ - type: Transform
+ pos: 79.5,19.5
+ parent: 1
+ - uid: 4794
+ components:
+ - type: Transform
+ pos: 75.5,19.5
+ parent: 1
+ - uid: 4795
+ components:
+ - type: Transform
+ pos: 74.5,19.5
+ parent: 1
+ - uid: 4796
+ components:
+ - type: Transform
+ pos: 72.5,19.5
+ parent: 1
+ - uid: 4798
+ components:
+ - type: Transform
+ pos: 76.5,19.5
+ parent: 1
+ - uid: 4799
+ components:
+ - type: Transform
+ pos: 78.5,19.5
+ parent: 1
+ - uid: 4815
+ components:
+ - type: Transform
+ pos: 113.5,128.5
+ parent: 1
+ - uid: 4817
+ components:
+ - type: Transform
+ pos: 113.5,126.5
+ parent: 1
+ - uid: 4827
+ components:
+ - type: Transform
+ pos: 113.5,89.5
+ parent: 1
+ - uid: 4849
+ components:
+ - type: Transform
+ pos: 114.5,153.5
+ parent: 1
+ - uid: 4891
+ components:
+ - type: Transform
+ pos: 72.5,15.5
+ parent: 1
+ - uid: 4910
+ components:
+ - type: Transform
+ pos: 115.5,153.5
+ parent: 1
+ - uid: 4918
+ components:
+ - type: Transform
+ pos: 115.5,105.5
+ parent: 1
+ - uid: 4958
+ components:
+ - type: Transform
+ pos: 158.5,152.5
+ parent: 1
+ - uid: 4971
+ components:
+ - type: Transform
+ pos: 116.5,116.5
+ parent: 1
+ - uid: 4989
+ components:
+ - type: Transform
+ pos: 116.5,52.5
+ parent: 1
+ - uid: 5000
+ components:
+ - type: Transform
+ pos: 94.5,116.5
+ parent: 1
+ - uid: 5010
+ components:
+ - type: Transform
+ pos: 117.5,142.5
+ parent: 1
+ - uid: 5012
+ components:
+ - type: Transform
+ pos: 117.5,141.5
+ parent: 1
+ - uid: 5014
+ components:
+ - type: Transform
+ pos: 117.5,140.5
+ parent: 1
+ - uid: 5017
+ components:
+ - type: Transform
+ pos: 117.5,138.5
+ parent: 1
+ - uid: 5019
+ components:
+ - type: Transform
+ pos: 117.5,137.5
+ parent: 1
+ - uid: 5021
+ components:
+ - type: Transform
+ pos: 117.5,136.5
+ parent: 1
+ - uid: 5024
+ components:
+ - type: Transform
+ pos: 117.5,134.5
+ parent: 1
+ - uid: 5026
+ components:
+ - type: Transform
+ pos: 117.5,133.5
+ parent: 1
+ - uid: 5027
+ components:
+ - type: Transform
+ pos: 162.5,94.5
+ parent: 1
+ - uid: 5028
+ components:
+ - type: Transform
+ pos: 117.5,132.5
+ parent: 1
+ - uid: 5038
+ components:
+ - type: Transform
+ pos: 117.5,116.5
+ parent: 1
+ - uid: 5043
+ components:
+ - type: Transform
+ pos: 85.5,60.5
+ parent: 1
+ - uid: 5052
+ components:
+ - type: Transform
+ pos: 117.5,79.5
+ parent: 1
+ - uid: 5081
+ components:
+ - type: Transform
+ pos: 117.5,18.5
+ parent: 1
+ - uid: 5082
+ components:
+ - type: Transform
+ pos: 108.5,172.5
+ parent: 1
+ - uid: 5094
+ components:
+ - type: Transform
+ pos: 118.5,116.5
+ parent: 1
+ - uid: 5100
+ components:
+ - type: Transform
+ pos: 118.5,79.5
+ parent: 1
+ - uid: 5101
+ components:
+ - type: Transform
+ pos: 141.5,142.5
+ parent: 1
+ - uid: 5113
+ components:
+ - type: Transform
+ pos: 118.5,18.5
+ parent: 1
+ - uid: 5115
+ components:
+ - type: Transform
+ pos: 112.5,172.5
+ parent: 1
+ - uid: 5123
+ components:
+ - type: Transform
+ pos: 161.5,115.5
+ parent: 1
+ - uid: 5131
+ components:
+ - type: Transform
+ pos: 85.5,54.5
+ parent: 1
+ - uid: 5140
+ components:
+ - type: Transform
+ pos: 85.5,56.5
+ parent: 1
+ - uid: 5144
+ components:
+ - type: Transform
+ pos: 119.5,79.5
+ parent: 1
+ - uid: 5147
+ components:
+ - type: Transform
+ pos: 119.5,52.5
+ parent: 1
+ - uid: 5151
+ components:
+ - type: Transform
+ pos: 127.5,37.5
+ parent: 1
+ - uid: 5152
+ components:
+ - type: Transform
+ pos: 127.5,38.5
+ parent: 1
+ - uid: 5162
+ components:
+ - type: Transform
+ pos: 119.5,18.5
+ parent: 1
+ - uid: 5180
+ components:
+ - type: Transform
+ pos: 120.5,142.5
+ parent: 1
+ - uid: 5182
+ components:
+ - type: Transform
+ pos: 120.5,141.5
+ parent: 1
+ - uid: 5184
+ components:
+ - type: Transform
+ pos: 120.5,140.5
+ parent: 1
+ - uid: 5191
+ components:
+ - type: Transform
+ pos: 120.5,134.5
+ parent: 1
+ - uid: 5193
+ components:
+ - type: Transform
+ pos: 120.5,133.5
+ parent: 1
+ - uid: 5195
+ components:
+ - type: Transform
+ pos: 120.5,132.5
+ parent: 1
+ - uid: 5199
+ components:
+ - type: Transform
+ pos: 120.5,120.5
+ parent: 1
+ - uid: 5221
+ components:
+ - type: Transform
+ pos: 120.5,79.5
+ parent: 1
+ - uid: 5250
+ components:
+ - type: Transform
+ pos: 121.5,120.5
+ parent: 1
+ - uid: 5267
+ components:
+ - type: Transform
+ pos: 121.5,74.5
+ parent: 1
+ - uid: 5269
+ components:
+ - type: Transform
+ pos: 121.5,73.5
+ parent: 1
+ - uid: 5272
+ components:
+ - type: Transform
+ pos: 121.5,71.5
+ parent: 1
+ - uid: 5274
+ components:
+ - type: Transform
+ pos: 121.5,70.5
+ parent: 1
+ - uid: 5277
+ components:
+ - type: Transform
+ pos: 121.5,68.5
+ parent: 1
+ - uid: 5279
+ components:
+ - type: Transform
+ pos: 121.5,67.5
+ parent: 1
+ - uid: 5282
+ components:
+ - type: Transform
+ pos: 121.5,65.5
+ parent: 1
+ - uid: 5284
+ components:
+ - type: Transform
+ pos: 121.5,64.5
+ parent: 1
+ - uid: 5290
+ components:
+ - type: Transform
+ pos: 121.5,59.5
+ parent: 1
+ - uid: 5296
+ components:
+ - type: Transform
+ pos: 131.5,67.5
+ parent: 1
+ - uid: 5301
+ components:
+ - type: Transform
+ pos: 121.5,49.5
+ parent: 1
+ - uid: 5303
+ components:
+ - type: Transform
+ pos: 121.5,48.5
+ parent: 1
+ - uid: 5313
+ components:
+ - type: Transform
+ pos: 121.5,21.5
+ parent: 1
+ - uid: 5315
+ components:
+ - type: Transform
+ pos: 121.5,20.5
+ parent: 1
+ - uid: 5326
+ components:
+ - type: Transform
+ pos: 130.5,93.5
+ parent: 1
+ - uid: 5330
+ components:
+ - type: Transform
+ pos: 122.5,120.5
+ parent: 1
+ - uid: 5397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,145.5
+ parent: 1
+ - uid: 5434
+ components:
+ - type: Transform
+ pos: 35.5,55.5
+ parent: 1
+ - uid: 5475
+ components:
+ - type: Transform
+ pos: 124.5,59.5
+ parent: 1
+ - uid: 5488
+ components:
+ - type: Transform
+ pos: 163.5,123.5
+ parent: 1
+ - uid: 5495
+ components:
+ - type: Transform
+ pos: 125.5,141.5
+ parent: 1
+ - uid: 5509
+ components:
+ - type: Transform
+ pos: 125.5,73.5
+ parent: 1
+ - uid: 5513
+ components:
+ - type: Transform
+ pos: 125.5,70.5
+ parent: 1
+ - uid: 5517
+ components:
+ - type: Transform
+ pos: 125.5,67.5
+ parent: 1
+ - uid: 5521
+ components:
+ - type: Transform
+ pos: 125.5,64.5
+ parent: 1
+ - uid: 5539
+ components:
+ - type: Transform
+ pos: 163.5,122.5
+ parent: 1
+ - uid: 5571
+ components:
+ - type: Transform
+ pos: 126.5,141.5
+ parent: 1
+ - uid: 5573
+ components:
+ - type: Transform
+ pos: 126.5,130.5
+ parent: 1
+ - uid: 5622
+ components:
+ - type: Transform
+ pos: 63.5,162.5
+ parent: 1
+ - uid: 5627
+ components:
+ - type: Transform
+ pos: 35.5,61.5
+ parent: 1
+ - uid: 5630
+ components:
+ - type: Transform
+ pos: 35.5,58.5
+ parent: 1
+ - uid: 5636
+ components:
+ - type: Transform
+ pos: 132.5,67.5
+ parent: 1
+ - uid: 5642
+ components:
+ - type: Transform
+ pos: 127.5,36.5
+ parent: 1
+ - uid: 5647
+ components:
+ - type: Transform
+ pos: 35.5,60.5
+ parent: 1
+ - uid: 5652
+ components:
+ - type: Transform
+ pos: 162.5,95.5
+ parent: 1
+ - uid: 5667
+ components:
+ - type: Transform
+ pos: 39.5,28.5
+ parent: 1
+ - uid: 5670
+ components:
+ - type: Transform
+ pos: 60.5,62.5
+ parent: 1
+ - uid: 5671
+ components:
+ - type: Transform
+ pos: 57.5,62.5
+ parent: 1
+ - uid: 5672
+ components:
+ - type: Transform
+ pos: 58.5,62.5
+ parent: 1
+ - uid: 5673
+ components:
+ - type: Transform
+ pos: 59.5,62.5
+ parent: 1
+ - uid: 5678
+ components:
+ - type: Transform
+ pos: 69.5,111.5
+ parent: 1
+ - uid: 5684
+ components:
+ - type: Transform
+ pos: 129.5,73.5
+ parent: 1
+ - uid: 5686
+ components:
+ - type: Transform
+ pos: 129.5,72.5
+ parent: 1
+ - uid: 5689
+ components:
+ - type: Transform
+ pos: 129.5,70.5
+ parent: 1
+ - uid: 5691
+ components:
+ - type: Transform
+ pos: 129.5,69.5
+ parent: 1
+ - uid: 5693
+ components:
+ - type: Transform
+ pos: 129.5,68.5
+ parent: 1
+ - uid: 5705
+ components:
+ - type: Transform
+ pos: 71.5,109.5
+ parent: 1
+ - uid: 5706
+ components:
+ - type: Transform
+ pos: 75.5,111.5
+ parent: 1
+ - uid: 5709
+ components:
+ - type: Transform
+ pos: 72.5,109.5
+ parent: 1
+ - uid: 5712
+ components:
+ - type: Transform
+ pos: 70.5,109.5
+ parent: 1
+ - uid: 5713
+ components:
+ - type: Transform
+ pos: 76.5,109.5
+ parent: 1
+ - uid: 5715
+ components:
+ - type: Transform
+ pos: 79.5,111.5
+ parent: 1
+ - uid: 5716
+ components:
+ - type: Transform
+ pos: 110.5,120.5
+ parent: 1
+ - uid: 5717
+ components:
+ - type: Transform
+ pos: 77.5,109.5
+ parent: 1
+ - uid: 5729
+ components:
+ - type: Transform
+ pos: 130.5,106.5
+ parent: 1
+ - uid: 5731
+ components:
+ - type: Transform
+ pos: 130.5,105.5
+ parent: 1
+ - uid: 5733
+ components:
+ - type: Transform
+ pos: 130.5,104.5
+ parent: 1
+ - uid: 5737
+ components:
+ - type: Transform
+ pos: 130.5,102.5
+ parent: 1
+ - uid: 5739
+ components:
+ - type: Transform
+ pos: 130.5,101.5
+ parent: 1
+ - uid: 5741
+ components:
+ - type: Transform
+ pos: 130.5,100.5
+ parent: 1
+ - uid: 5746
+ components:
+ - type: Transform
+ pos: 71.5,111.5
+ parent: 1
+ - uid: 5748
+ components:
+ - type: Transform
+ pos: 76.5,111.5
+ parent: 1
+ - uid: 5749
+ components:
+ - type: Transform
+ pos: 109.5,120.5
+ parent: 1
+ - uid: 5750
+ components:
+ - type: Transform
+ pos: 69.5,109.5
+ parent: 1
+ - uid: 5751
+ components:
+ - type: Transform
+ pos: 77.5,111.5
+ parent: 1
+ - uid: 5767
+ components:
+ - type: Transform
+ pos: 130.5,53.5
+ parent: 1
+ - uid: 5769
+ components:
+ - type: Transform
+ pos: 130.5,43.5
+ parent: 1
+ - uid: 5773
+ components:
+ - type: Transform
+ pos: 107.5,120.5
+ parent: 1
+ - uid: 5782
+ components:
+ - type: Transform
+ pos: 106.5,121.5
+ parent: 1
+ - uid: 5787
+ components:
+ - type: Transform
+ pos: 131.5,75.5
+ parent: 1
+ - uid: 5792
+ components:
+ - type: Transform
+ pos: 131.5,53.5
+ parent: 1
+ - uid: 5794
+ components:
+ - type: Transform
+ pos: 131.5,43.5
+ parent: 1
+ - uid: 5801
+ components:
+ - type: Transform
+ pos: 106.5,122.5
+ parent: 1
+ - uid: 5805
+ components:
+ - type: Transform
+ pos: 132.5,124.5
+ parent: 1
+ - uid: 5806
+ components:
+ - type: Transform
+ pos: 107.5,122.5
+ parent: 1
+ - uid: 5812
+ components:
+ - type: Transform
+ pos: 36.5,61.5
+ parent: 1
+ - uid: 5815
+ components:
+ - type: Transform
+ pos: 35.5,54.5
+ parent: 1
+ - uid: 5829
+ components:
+ - type: Transform
+ pos: 132.5,53.5
+ parent: 1
+ - uid: 5831
+ components:
+ - type: Transform
+ pos: 132.5,43.5
+ parent: 1
+ - uid: 5835
+ components:
+ - type: Transform
+ pos: 35.5,59.5
+ parent: 1
+ - uid: 5845
+ components:
+ - type: Transform
+ pos: 35.5,56.5
+ parent: 1
+ - uid: 5846
+ components:
+ - type: Transform
+ pos: 35.5,57.5
+ parent: 1
+ - uid: 5847
+ components:
+ - type: Transform
+ pos: 74.5,115.5
+ parent: 1
+ - uid: 5848
+ components:
+ - type: Transform
+ pos: 77.5,115.5
+ parent: 1
+ - uid: 5865
+ components:
+ - type: Transform
+ pos: 134.5,154.5
+ parent: 1
+ - uid: 5868
+ components:
+ - type: Transform
+ pos: 78.5,109.5
+ parent: 1
+ - uid: 5871
+ components:
+ - type: Transform
+ pos: 73.5,109.5
+ parent: 1
+ - uid: 5875
+ components:
+ - type: Transform
+ pos: 75.5,109.5
+ parent: 1
+ - uid: 5880
+ components:
+ - type: Transform
+ pos: 72.5,111.5
+ parent: 1
+ - uid: 5887
+ components:
+ - type: Transform
+ pos: 134.5,75.5
+ parent: 1
+ - uid: 5891
+ components:
+ - type: Transform
+ pos: 162.5,97.5
+ parent: 1
+ - uid: 5894
+ components:
+ - type: Transform
+ pos: 134.5,51.5
+ parent: 1
+ - uid: 5898
+ components:
+ - type: Transform
+ pos: 134.5,48.5
+ parent: 1
+ - uid: 5902
+ components:
+ - type: Transform
+ pos: 134.5,45.5
+ parent: 1
+ - uid: 5907
+ components:
+ - type: Transform
+ pos: 135.5,154.5
+ parent: 1
+ - uid: 5931
+ components:
+ - type: Transform
+ pos: 73.5,111.5
+ parent: 1
+ - uid: 5953
+ components:
+ - type: Transform
+ pos: 78.5,111.5
+ parent: 1
+ - uid: 5959
+ components:
+ - type: Transform
+ pos: 70.5,111.5
+ parent: 1
+ - uid: 5969
+ components:
+ - type: Transform
+ pos: 79.5,109.5
+ parent: 1
+ - uid: 5973
+ components:
+ - type: Transform
+ pos: 109.5,122.5
+ parent: 1
+ - uid: 5980
+ components:
+ - type: Transform
+ pos: 136.5,71.5
+ parent: 1
+ - uid: 5982
+ components:
+ - type: Transform
+ pos: 136.5,70.5
+ parent: 1
+ - uid: 5984
+ components:
+ - type: Transform
+ pos: 136.5,69.5
+ parent: 1
+ - uid: 6013
+ components:
+ - type: Transform
+ pos: 108.5,120.5
+ parent: 1
+ - uid: 6017
+ components:
+ - type: Transform
+ pos: 106.5,120.5
+ parent: 1
+ - uid: 6027
+ components:
+ - type: Transform
+ pos: 137.5,106.5
+ parent: 1
+ - uid: 6029
+ components:
+ - type: Transform
+ pos: 137.5,105.5
+ parent: 1
+ - uid: 6089
+ components:
+ - type: Transform
+ pos: 138.5,75.5
+ parent: 1
+ - uid: 6091
+ components:
+ - type: Transform
+ pos: 138.5,72.5
+ parent: 1
+ - uid: 6094
+ components:
+ - type: Transform
+ pos: 138.5,43.5
+ parent: 1
+ - uid: 6156
+ components:
+ - type: Transform
+ pos: 140.5,68.5
+ parent: 1
+ - uid: 6158
+ components:
+ - type: Transform
+ pos: 140.5,67.5
+ parent: 1
+ - uid: 6160
+ components:
+ - type: Transform
+ pos: 140.5,66.5
+ parent: 1
+ - uid: 6186
+ components:
+ - type: Transform
+ pos: 141.5,105.5
+ parent: 1
+ - uid: 6188
+ components:
+ - type: Transform
+ pos: 141.5,104.5
+ parent: 1
+ - uid: 6190
+ components:
+ - type: Transform
+ pos: 141.5,103.5
+ parent: 1
+ - uid: 6204
+ components:
+ - type: Transform
+ pos: 141.5,68.5
+ parent: 1
+ - uid: 6211
+ components:
+ - type: Transform
+ pos: 126.5,57.5
+ parent: 1
+ - uid: 6244
+ components:
+ - type: Transform
+ pos: 163.5,119.5
+ parent: 1
+ - uid: 6261
+ components:
+ - type: Transform
+ pos: 142.5,68.5
+ parent: 1
+ - uid: 6264
+ components:
+ - type: Transform
+ pos: 60.5,60.5
+ parent: 1
+ - uid: 6309
+ components:
+ - type: Transform
+ pos: 143.5,68.5
+ parent: 1
+ - uid: 6334
+ components:
+ - type: Transform
+ pos: 144.5,135.5
+ parent: 1
+ - uid: 6342
+ components:
+ - type: Transform
+ pos: 146.5,103.5
+ parent: 1
+ - uid: 6343
+ components:
+ - type: Transform
+ pos: 146.5,104.5
+ parent: 1
+ - uid: 6358
+ components:
+ - type: Transform
+ pos: 144.5,68.5
+ parent: 1
+ - uid: 6367
+ components:
+ - type: Transform
+ pos: 145.5,155.5
+ parent: 1
+ - uid: 6371
+ components:
+ - type: Transform
+ pos: 145.5,135.5
+ parent: 1
+ - uid: 6400
+ components:
+ - type: Transform
+ pos: 159.5,82.5
+ parent: 1
+ - uid: 6408
+ components:
+ - type: Transform
+ pos: 145.5,68.5
+ parent: 1
+ - uid: 6418
+ components:
+ - type: Transform
+ pos: 146.5,155.5
+ parent: 1
+ - uid: 6422
+ components:
+ - type: Transform
+ pos: 146.5,135.5
+ parent: 1
+ - uid: 6428
+ components:
+ - type: Transform
+ pos: 146.5,120.5
+ parent: 1
+ - uid: 6437
+ components:
+ - type: Transform
+ pos: 146.5,68.5
+ parent: 1
+ - uid: 6439
+ components:
+ - type: Transform
+ pos: 146.5,67.5
+ parent: 1
+ - uid: 6441
+ components:
+ - type: Transform
+ pos: 146.5,66.5
+ parent: 1
+ - uid: 6450
+ components:
+ - type: Transform
+ pos: 146.5,54.5
+ parent: 1
+ - uid: 6458
+ components:
+ - type: Transform
+ pos: 147.5,155.5
+ parent: 1
+ - uid: 6484
+ components:
+ - type: Transform
+ pos: 147.5,122.5
+ parent: 1
+ - uid: 6486
+ components:
+ - type: Transform
+ pos: 147.5,121.5
+ parent: 1
+ - uid: 6488
+ components:
+ - type: Transform
+ pos: 147.5,120.5
+ parent: 1
+ - uid: 6489
+ components:
+ - type: Transform
+ pos: 163.5,120.5
+ parent: 1
+ - uid: 6493
+ components:
+ - type: Transform
+ pos: 163.5,117.5
+ parent: 1
+ - uid: 6498
+ components:
+ - type: Transform
+ pos: 163.5,116.5
+ parent: 1
+ - uid: 6505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,151.5
+ parent: 1
+ - uid: 6513
+ components:
+ - type: Transform
+ pos: 147.5,54.5
+ parent: 1
+ - uid: 6537
+ components:
+ - type: Transform
+ pos: 148.5,54.5
+ parent: 1
+ - uid: 6544
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,152.5
+ parent: 1
+ - uid: 6550
+ components:
+ - type: Transform
+ pos: 163.5,114.5
+ parent: 1
+ - uid: 6552
+ components:
+ - type: Transform
+ pos: 163.5,113.5
+ parent: 1
+ - uid: 6580
+ components:
+ - type: Transform
+ pos: 152.5,42.5
+ parent: 1
+ - uid: 6585
+ components:
+ - type: Transform
+ pos: 150.5,72.5
+ parent: 1
+ - uid: 6587
+ components:
+ - type: Transform
+ pos: 150.5,71.5
+ parent: 1
+ - uid: 6589
+ components:
+ - type: Transform
+ pos: 150.5,70.5
+ parent: 1
+ - uid: 6597
+ components:
+ - type: Transform
+ pos: 150.5,63.5
+ parent: 1
+ - uid: 6599
+ components:
+ - type: Transform
+ pos: 150.5,62.5
+ parent: 1
+ - uid: 6647
+ components:
+ - type: Transform
+ pos: 141.5,50.5
+ parent: 1
+ - uid: 6656
+ components:
+ - type: Transform
+ pos: 101.5,166.5
+ parent: 1
+ - uid: 6757
+ components:
+ - type: Transform
+ pos: 151.5,42.5
+ parent: 1
+ - uid: 6759
+ components:
+ - type: Transform
+ pos: 148.5,42.5
+ parent: 1
+ - uid: 6760
+ components:
+ - type: Transform
+ pos: 149.5,42.5
+ parent: 1
+ - uid: 6775
+ components:
+ - type: Transform
+ pos: 156.5,41.5
+ parent: 1
+ - uid: 6789
+ components:
+ - type: Transform
+ pos: 22.5,111.5
+ parent: 1
+ - uid: 6806
+ components:
+ - type: Transform
+ pos: 160.5,41.5
+ parent: 1
+ - uid: 6825
+ components:
+ - type: Transform
+ pos: 24.5,111.5
+ parent: 1
+ - uid: 6835
+ components:
+ - type: Transform
+ pos: 156.5,82.5
+ parent: 1
+ - uid: 6880
+ components:
+ - type: Transform
+ pos: 157.5,82.5
+ parent: 1
+ - uid: 6881
+ components:
+ - type: Transform
+ pos: 164.5,49.5
+ parent: 1
+ - uid: 6883
+ components:
+ - type: Transform
+ pos: 164.5,51.5
+ parent: 1
+ - uid: 6884
+ components:
+ - type: Transform
+ pos: 157.5,75.5
+ parent: 1
+ - uid: 6886
+ components:
+ - type: Transform
+ pos: 157.5,74.5
+ parent: 1
+ - uid: 6896
+ components:
+ - type: Transform
+ pos: 164.5,47.5
+ parent: 1
+ - uid: 6903
+ components:
+ - type: Transform
+ pos: 103.5,27.5
+ parent: 1
+ - uid: 6904
+ components:
+ - type: Transform
+ pos: 103.5,26.5
+ parent: 1
+ - uid: 6935
+ components:
+ - type: Transform
+ pos: 158.5,82.5
+ parent: 1
+ - uid: 6936
+ components:
+ - type: Transform
+ pos: 164.5,45.5
+ parent: 1
+ - uid: 6955
+ components:
+ - type: Transform
+ pos: 159.5,108.5
+ parent: 1
+ - uid: 6959
+ components:
+ - type: Transform
+ pos: 159.5,103.5
+ parent: 1
+ - uid: 6967
+ components:
+ - type: Transform
+ pos: 159.5,99.5
+ parent: 1
+ - uid: 6969
+ components:
+ - type: Transform
+ pos: 159.5,98.5
+ parent: 1
+ - uid: 7020
+ components:
+ - type: Transform
+ pos: 160.5,108.5
+ parent: 1
+ - uid: 7039
+ components:
+ - type: Transform
+ pos: 46.5,52.5
+ parent: 1
+ - uid: 7055
+ components:
+ - type: Transform
+ pos: 161.5,108.5
+ parent: 1
+ - uid: 7081
+ components:
+ - type: Transform
+ pos: 162.5,108.5
+ parent: 1
+ - uid: 7091
+ components:
+ - type: Transform
+ pos: 162.5,75.5
+ parent: 1
+ - uid: 7093
+ components:
+ - type: Transform
+ pos: 162.5,74.5
+ parent: 1
+ - uid: 7161
+ components:
+ - type: Transform
+ pos: 164.5,58.5
+ parent: 1
+ - uid: 7164
+ components:
+ - type: Transform
+ pos: 164.5,56.5
+ parent: 1
+ - uid: 7176
+ components:
+ - type: Transform
+ pos: 45.5,49.5
+ parent: 1
+ - uid: 7177
+ components:
+ - type: Transform
+ pos: 45.5,51.5
+ parent: 1
+ - uid: 7192
+ components:
+ - type: Transform
+ pos: 165.5,58.5
+ parent: 1
+ - uid: 7194
+ components:
+ - type: Transform
+ pos: 165.5,56.5
+ parent: 1
+ - uid: 7211
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,128.5
+ parent: 1
+ - uid: 7213
+ components:
+ - type: Transform
+ pos: 166.5,58.5
+ parent: 1
+ - uid: 7216
+ components:
+ - type: Transform
+ pos: 166.5,56.5
+ parent: 1
+ - uid: 7254
+ components:
+ - type: Transform
+ pos: 108.5,122.5
+ parent: 1
+ - uid: 7259
+ components:
+ - type: Transform
+ pos: 110.5,121.5
+ parent: 1
+ - uid: 7261
+ components:
+ - type: Transform
+ pos: 110.5,122.5
+ parent: 1
+ - uid: 7292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,80.5
+ parent: 1
+ - uid: 7563
+ components:
+ - type: Transform
+ pos: 81.5,52.5
+ parent: 1
+ - uid: 7576
+ components:
+ - type: Transform
+ pos: 81.5,55.5
+ parent: 1
+ - uid: 7644
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,127.5
+ parent: 1
+ - uid: 7673
+ components:
+ - type: Transform
+ pos: 81.5,58.5
+ parent: 1
+ - uid: 7718
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,127.5
+ parent: 1
+ - uid: 7750
+ components:
+ - type: Transform
+ pos: 81.5,150.5
+ parent: 1
+ - uid: 7760
+ components:
+ - type: Transform
+ pos: 82.5,150.5
+ parent: 1
+ - uid: 8090
+ components:
+ - type: Transform
+ pos: 93.5,26.5
+ parent: 1
+ - uid: 8147
+ components:
+ - type: Transform
+ pos: 91.5,24.5
+ parent: 1
+ - uid: 8150
+ components:
+ - type: Transform
+ pos: 146.5,150.5
+ parent: 1
+ - uid: 8160
+ components:
+ - type: Transform
+ pos: 114.5,172.5
+ parent: 1
+ - uid: 8188
+ components:
+ - type: Transform
+ pos: 113.5,172.5
+ parent: 1
+ - uid: 8637
+ components:
+ - type: Transform
+ pos: 34.5,45.5
+ parent: 1
+ - uid: 9012
+ components:
+ - type: Transform
+ pos: 103.5,127.5
+ parent: 1
+ - uid: 9050
+ components:
+ - type: Transform
+ pos: 97.5,157.5
+ parent: 1
+ - uid: 9109
+ components:
+ - type: Transform
+ pos: 101.5,157.5
+ parent: 1
+ - uid: 9123
+ components:
+ - type: Transform
+ pos: 104.5,127.5
+ parent: 1
+ - uid: 9124
+ components:
+ - type: Transform
+ pos: 105.5,127.5
+ parent: 1
+ - uid: 9125
+ components:
+ - type: Transform
+ pos: 106.5,127.5
+ parent: 1
+ - uid: 9126
+ components:
+ - type: Transform
+ pos: 107.5,127.5
+ parent: 1
+ - uid: 9127
+ components:
+ - type: Transform
+ pos: 108.5,127.5
+ parent: 1
+ - uid: 9128
+ components:
+ - type: Transform
+ pos: 109.5,127.5
+ parent: 1
+ - uid: 9129
+ components:
+ - type: Transform
+ pos: 110.5,127.5
+ parent: 1
+ - uid: 9130
+ components:
+ - type: Transform
+ pos: 111.5,127.5
+ parent: 1
+ - uid: 9131
+ components:
+ - type: Transform
+ pos: 113.5,127.5
+ parent: 1
+ - uid: 9132
+ components:
+ - type: Transform
+ pos: 112.5,127.5
+ parent: 1
+ - uid: 9368
+ components:
+ - type: Transform
+ pos: 82.5,144.5
+ parent: 1
+ - uid: 9422
+ components:
+ - type: Transform
+ pos: 86.5,145.5
+ parent: 1
+ - uid: 9426
+ components:
+ - type: Transform
+ pos: 86.5,148.5
+ parent: 1
+ - uid: 9429
+ components:
+ - type: Transform
+ pos: 85.5,150.5
+ parent: 1
+ - uid: 9430
+ components:
+ - type: Transform
+ pos: 86.5,146.5
+ parent: 1
+ - uid: 9473
+ components:
+ - type: Transform
+ pos: 39.5,27.5
+ parent: 1
+ - uid: 9480
+ components:
+ - type: Transform
+ pos: 124.5,133.5
+ parent: 1
+ - uid: 9507
+ components:
+ - type: Transform
+ pos: 37.5,61.5
+ parent: 1
+ - uid: 9508
+ components:
+ - type: Transform
+ pos: 37.5,60.5
+ parent: 1
+ - uid: 9509
+ components:
+ - type: Transform
+ pos: 37.5,59.5
+ parent: 1
+ - uid: 9510
+ components:
+ - type: Transform
+ pos: 37.5,58.5
+ parent: 1
+ - uid: 9511
+ components:
+ - type: Transform
+ pos: 37.5,57.5
+ parent: 1
+ - uid: 9512
+ components:
+ - type: Transform
+ pos: 37.5,56.5
+ parent: 1
+ - uid: 9513
+ components:
+ - type: Transform
+ pos: 37.5,55.5
+ parent: 1
+ - uid: 9514
+ components:
+ - type: Transform
+ pos: 37.5,54.5
+ parent: 1
+ - uid: 9515
+ components:
+ - type: Transform
+ pos: 39.5,26.5
+ parent: 1
+ - uid: 9516
+ components:
+ - type: Transform
+ pos: 39.5,25.5
+ parent: 1
+ - uid: 9517
+ components:
+ - type: Transform
+ pos: 39.5,24.5
+ parent: 1
+ - uid: 9518
+ components:
+ - type: Transform
+ pos: 39.5,23.5
+ parent: 1
+ - uid: 9519
+ components:
+ - type: Transform
+ pos: 39.5,22.5
+ parent: 1
+ - uid: 9520
+ components:
+ - type: Transform
+ pos: 39.5,21.5
+ parent: 1
+ - uid: 9521
+ components:
+ - type: Transform
+ pos: 39.5,20.5
+ parent: 1
+ - uid: 9522
+ components:
+ - type: Transform
+ pos: 40.5,20.5
+ parent: 1
+ - uid: 9523
+ components:
+ - type: Transform
+ pos: 40.5,19.5
+ parent: 1
+ - uid: 9524
+ components:
+ - type: Transform
+ pos: 41.5,18.5
+ parent: 1
+ - uid: 9525
+ components:
+ - type: Transform
+ pos: 41.5,17.5
+ parent: 1
+ - uid: 9526
+ components:
+ - type: Transform
+ pos: 42.5,17.5
+ parent: 1
+ - uid: 9527
+ components:
+ - type: Transform
+ pos: 43.5,16.5
+ parent: 1
+ - uid: 9528
+ components:
+ - type: Transform
+ pos: 44.5,16.5
+ parent: 1
+ - uid: 9529
+ components:
+ - type: Transform
+ pos: 45.5,15.5
+ parent: 1
+ - uid: 9530
+ components:
+ - type: Transform
+ pos: 46.5,15.5
+ parent: 1
+ - uid: 9531
+ components:
+ - type: Transform
+ pos: 47.5,15.5
+ parent: 1
+ - uid: 9532
+ components:
+ - type: Transform
+ pos: 48.5,15.5
+ parent: 1
+ - uid: 9533
+ components:
+ - type: Transform
+ pos: 49.5,15.5
+ parent: 1
+ - uid: 9534
+ components:
+ - type: Transform
+ pos: 50.5,15.5
+ parent: 1
+ - uid: 9535
+ components:
+ - type: Transform
+ pos: 51.5,15.5
+ parent: 1
+ - uid: 9536
+ components:
+ - type: Transform
+ pos: 52.5,15.5
+ parent: 1
+ - uid: 9537
+ components:
+ - type: Transform
+ pos: 53.5,15.5
+ parent: 1
+ - uid: 9538
+ components:
+ - type: Transform
+ pos: 54.5,16.5
+ parent: 1
+ - uid: 9539
+ components:
+ - type: Transform
+ pos: 55.5,16.5
+ parent: 1
+ - uid: 9540
+ components:
+ - type: Transform
+ pos: 56.5,17.5
+ parent: 1
+ - uid: 9541
+ components:
+ - type: Transform
+ pos: 57.5,17.5
+ parent: 1
+ - uid: 9542
+ components:
+ - type: Transform
+ pos: 57.5,18.5
+ parent: 1
+ - uid: 9543
+ components:
+ - type: Transform
+ pos: 58.5,19.5
+ parent: 1
+ - uid: 9544
+ components:
+ - type: Transform
+ pos: 58.5,20.5
+ parent: 1
+ - uid: 9545
+ components:
+ - type: Transform
+ pos: 59.5,20.5
+ parent: 1
+ - uid: 9546
+ components:
+ - type: Transform
+ pos: 59.5,21.5
+ parent: 1
+ - uid: 9547
+ components:
+ - type: Transform
+ pos: 59.5,22.5
+ parent: 1
+ - uid: 9548
+ components:
+ - type: Transform
+ pos: 59.5,23.5
+ parent: 1
+ - uid: 9549
+ components:
+ - type: Transform
+ pos: 59.5,24.5
+ parent: 1
+ - uid: 9550
+ components:
+ - type: Transform
+ pos: 59.5,25.5
+ parent: 1
+ - uid: 9551
+ components:
+ - type: Transform
+ pos: 59.5,26.5
+ parent: 1
+ - uid: 9552
+ components:
+ - type: Transform
+ pos: 59.5,27.5
+ parent: 1
+ - uid: 9553
+ components:
+ - type: Transform
+ pos: 58.5,28.5
+ parent: 1
+ - uid: 9554
+ components:
+ - type: Transform
+ pos: 58.5,29.5
+ parent: 1
+ - uid: 9555
+ components:
+ - type: Transform
+ pos: 57.5,30.5
+ parent: 1
+ - uid: 9556
+ components:
+ - type: Transform
+ pos: 57.5,31.5
+ parent: 1
+ - uid: 9557
+ components:
+ - type: Transform
+ pos: 56.5,31.5
+ parent: 1
+ - uid: 9558
+ components:
+ - type: Transform
+ pos: 55.5,32.5
+ parent: 1
+ - uid: 9559
+ components:
+ - type: Transform
+ pos: 54.5,32.5
+ parent: 1
+ - uid: 9560
+ components:
+ - type: Transform
+ pos: 53.5,33.5
+ parent: 1
+ - uid: 9561
+ components:
+ - type: Transform
+ pos: 48.5,33.5
+ parent: 1
+ - uid: 9562
+ components:
+ - type: Transform
+ pos: 46.5,33.5
+ parent: 1
+ - uid: 9563
+ components:
+ - type: Transform
+ pos: 45.5,33.5
+ parent: 1
+ - uid: 9564
+ components:
+ - type: Transform
+ pos: 47.5,33.5
+ parent: 1
+ - uid: 9565
+ components:
+ - type: Transform
+ pos: 44.5,32.5
+ parent: 1
+ - uid: 9566
+ components:
+ - type: Transform
+ pos: 43.5,32.5
+ parent: 1
+ - uid: 9567
+ components:
+ - type: Transform
+ pos: 42.5,31.5
+ parent: 1
+ - uid: 9568
+ components:
+ - type: Transform
+ pos: 41.5,31.5
+ parent: 1
+ - uid: 9569
+ components:
+ - type: Transform
+ pos: 41.5,30.5
+ parent: 1
+ - uid: 9570
+ components:
+ - type: Transform
+ pos: 40.5,29.5
+ parent: 1
+ - uid: 9571
+ components:
+ - type: Transform
+ pos: 40.5,28.5
+ parent: 1
+ - uid: 9572
+ components:
+ - type: Transform
+ pos: 43.5,34.5
+ parent: 1
+ - uid: 9573
+ components:
+ - type: Transform
+ pos: 42.5,35.5
+ parent: 1
+ - uid: 9574
+ components:
+ - type: Transform
+ pos: 41.5,36.5
+ parent: 1
+ - uid: 9575
+ components:
+ - type: Transform
+ pos: 41.5,37.5
+ parent: 1
+ - uid: 9576
+ components:
+ - type: Transform
+ pos: 41.5,38.5
+ parent: 1
+ - uid: 9577
+ components:
+ - type: Transform
+ pos: 41.5,39.5
+ parent: 1
+ - uid: 9578
+ components:
+ - type: Transform
+ pos: 41.5,40.5
+ parent: 1
+ - uid: 9580
+ components:
+ - type: Transform
+ pos: 43.5,42.5
+ parent: 1
+ - uid: 9582
+ components:
+ - type: Transform
+ pos: 39.5,45.5
+ parent: 1
+ - uid: 9583
+ components:
+ - type: Transform
+ pos: 38.5,45.5
+ parent: 1
+ - uid: 9584
+ components:
+ - type: Transform
+ pos: 37.5,45.5
+ parent: 1
+ - uid: 9585
+ components:
+ - type: Transform
+ pos: 36.5,45.5
+ parent: 1
+ - uid: 9586
+ components:
+ - type: Transform
+ pos: 33.5,45.5
+ parent: 1
+ - uid: 9587
+ components:
+ - type: Transform
+ pos: 32.5,45.5
+ parent: 1
+ - uid: 9588
+ components:
+ - type: Transform
+ pos: 32.5,46.5
+ parent: 1
+ - uid: 9589
+ components:
+ - type: Transform
+ pos: 30.5,48.5
+ parent: 1
+ - uid: 9590
+ components:
+ - type: Transform
+ pos: 31.5,46.5
+ parent: 1
+ - uid: 9591
+ components:
+ - type: Transform
+ pos: 29.5,48.5
+ parent: 1
+ - uid: 9592
+ components:
+ - type: Transform
+ pos: 29.5,49.5
+ parent: 1
+ - uid: 9593
+ components:
+ - type: Transform
+ pos: 29.5,50.5
+ parent: 1
+ - uid: 9594
+ components:
+ - type: Transform
+ pos: 29.5,51.5
+ parent: 1
+ - uid: 9596
+ components:
+ - type: Transform
+ pos: 29.5,53.5
+ parent: 1
+ - uid: 9597
+ components:
+ - type: Transform
+ pos: 29.5,54.5
+ parent: 1
+ - uid: 9598
+ components:
+ - type: Transform
+ pos: 29.5,55.5
+ parent: 1
+ - uid: 9599
+ components:
+ - type: Transform
+ pos: 29.5,56.5
+ parent: 1
+ - uid: 9600
+ components:
+ - type: Transform
+ pos: 29.5,57.5
+ parent: 1
+ - uid: 9601
+ components:
+ - type: Transform
+ pos: 29.5,59.5
+ parent: 1
+ - uid: 9602
+ components:
+ - type: Transform
+ pos: 29.5,60.5
+ parent: 1
+ - uid: 9603
+ components:
+ - type: Transform
+ pos: 29.5,61.5
+ parent: 1
+ - uid: 9604
+ components:
+ - type: Transform
+ pos: 29.5,62.5
+ parent: 1
+ - uid: 9605
+ components:
+ - type: Transform
+ pos: 29.5,63.5
+ parent: 1
+ - uid: 9606
+ components:
+ - type: Transform
+ pos: 27.5,55.5
+ parent: 1
+ - uid: 9607
+ components:
+ - type: Transform
+ pos: 27.5,56.5
+ parent: 1
+ - uid: 9608
+ components:
+ - type: Transform
+ pos: 27.5,57.5
+ parent: 1
+ - uid: 9609
+ components:
+ - type: Transform
+ pos: 27.5,58.5
+ parent: 1
+ - uid: 9610
+ components:
+ - type: Transform
+ pos: 27.5,59.5
+ parent: 1
+ - uid: 9611
+ components:
+ - type: Transform
+ pos: 27.5,51.5
+ parent: 1
+ - uid: 9612
+ components:
+ - type: Transform
+ pos: 27.5,50.5
+ parent: 1
+ - uid: 9613
+ components:
+ - type: Transform
+ pos: 27.5,49.5
+ parent: 1
+ - uid: 9614
+ components:
+ - type: Transform
+ pos: 27.5,48.5
+ parent: 1
+ - uid: 9615
+ components:
+ - type: Transform
+ pos: 27.5,47.5
+ parent: 1
+ - uid: 9616
+ components:
+ - type: Transform
+ pos: 33.5,43.5
+ parent: 1
+ - uid: 9617
+ components:
+ - type: Transform
+ pos: 28.5,44.5
+ parent: 1
+ - uid: 9618
+ components:
+ - type: Transform
+ pos: 28.5,45.5
+ parent: 1
+ - uid: 9619
+ components:
+ - type: Transform
+ pos: 29.5,44.5
+ parent: 1
+ - uid: 9620
+ components:
+ - type: Transform
+ pos: 30.5,44.5
+ parent: 1
+ - uid: 9621
+ components:
+ - type: Transform
+ pos: 34.5,43.5
+ parent: 1
+ - uid: 9622
+ components:
+ - type: Transform
+ pos: 32.5,43.5
+ parent: 1
+ - uid: 9623
+ components:
+ - type: Transform
+ pos: 38.5,43.5
+ parent: 1
+ - uid: 9624
+ components:
+ - type: Transform
+ pos: 39.5,43.5
+ parent: 1
+ - uid: 9625
+ components:
+ - type: Transform
+ pos: 27.5,61.5
+ parent: 1
+ - uid: 9626
+ components:
+ - type: Transform
+ pos: 27.5,62.5
+ parent: 1
+ - uid: 9627
+ components:
+ - type: Transform
+ pos: 27.5,63.5
+ parent: 1
+ - uid: 9628
+ components:
+ - type: Transform
+ pos: 27.5,64.5
+ parent: 1
+ - uid: 9659
+ components:
+ - type: Transform
+ pos: 35.5,53.5
+ parent: 1
+ - uid: 9661
+ components:
+ - type: Transform
+ pos: 37.5,53.5
+ parent: 1
+ - uid: 9671
+ components:
+ - type: Transform
+ pos: 69.5,54.5
+ parent: 1
+ - uid: 9820
+ components:
+ - type: Transform
+ pos: 107.5,23.5
+ parent: 1
+ - uid: 9989
+ components:
+ - type: Transform
+ pos: 81.5,128.5
+ parent: 1
+ - uid: 10222
+ components:
+ - type: Transform
+ pos: 44.5,42.5
+ parent: 1
+ - uid: 10223
+ components:
+ - type: Transform
+ pos: 44.5,34.5
+ parent: 1
+ - uid: 10225
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 1
+ - uid: 10228
+ components:
+ - type: Transform
+ pos: 53.5,34.5
+ parent: 1
+ - uid: 10799
+ components:
+ - type: Transform
+ pos: 98.5,105.5
+ parent: 1
+ - uid: 11350
+ components:
+ - type: Transform
+ pos: 130.5,89.5
+ parent: 1
+ - uid: 11362
+ components:
+ - type: Transform
+ pos: 133.5,95.5
+ parent: 1
+ - uid: 11363
+ components:
+ - type: Transform
+ pos: 135.5,95.5
+ parent: 1
+ - uid: 11916
+ components:
+ - type: Transform
+ pos: 54.5,73.5
+ parent: 1
+ - uid: 12401
+ components:
+ - type: Transform
+ pos: 146.5,109.5
+ parent: 1
+ - uid: 12495
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,121.5
+ parent: 1
+ - uid: 12687
+ components:
+ - type: Transform
+ pos: 65.5,59.5
+ parent: 1
+ - uid: 12688
+ components:
+ - type: Transform
+ pos: 69.5,59.5
+ parent: 1
+ - uid: 12990
+ components:
+ - type: Transform
+ pos: 45.5,37.5
+ parent: 1
+ - uid: 12994
+ components:
+ - type: Transform
+ pos: 45.5,36.5
+ parent: 1
+ - uid: 13126
+ components:
+ - type: Transform
+ pos: 45.5,39.5
+ parent: 1
+ - uid: 13127
+ components:
+ - type: Transform
+ pos: 45.5,40.5
+ parent: 1
+ - uid: 13234
+ components:
+ - type: Transform
+ pos: 124.5,134.5
+ parent: 1
+ - uid: 13300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,127.5
+ parent: 1
+ - uid: 13474
+ components:
+ - type: Transform
+ pos: 108.5,157.5
+ parent: 1
+ - uid: 13475
+ components:
+ - type: Transform
+ pos: 109.5,157.5
+ parent: 1
+ - uid: 13476
+ components:
+ - type: Transform
+ pos: 111.5,157.5
+ parent: 1
+ - uid: 13477
+ components:
+ - type: Transform
+ pos: 110.5,157.5
+ parent: 1
+ - uid: 13478
+ components:
+ - type: Transform
+ pos: 112.5,157.5
+ parent: 1
+ - uid: 13571
+ components:
+ - type: Transform
+ pos: 32.5,73.5
+ parent: 1
+ - uid: 13702
+ components:
+ - type: Transform
+ pos: 135.5,79.5
+ parent: 1
+ - uid: 13809
+ components:
+ - type: Transform
+ pos: 91.5,74.5
+ parent: 1
+ - uid: 14284
+ components:
+ - type: Transform
+ pos: 115.5,127.5
+ parent: 1
+ - uid: 14285
+ components:
+ - type: Transform
+ pos: 116.5,127.5
+ parent: 1
+ - uid: 14286
+ components:
+ - type: Transform
+ pos: 117.5,127.5
+ parent: 1
+ - uid: 14287
+ components:
+ - type: Transform
+ pos: 118.5,127.5
+ parent: 1
+ - uid: 14288
+ components:
+ - type: Transform
+ pos: 118.5,128.5
+ parent: 1
+ - uid: 14289
+ components:
+ - type: Transform
+ pos: 118.5,129.5
+ parent: 1
+ - uid: 14290
+ components:
+ - type: Transform
+ pos: 118.5,130.5
+ parent: 1
+ - uid: 14291
+ components:
+ - type: Transform
+ pos: 118.5,144.5
+ parent: 1
+ - uid: 14292
+ components:
+ - type: Transform
+ pos: 118.5,145.5
+ parent: 1
+ - uid: 14293
+ components:
+ - type: Transform
+ pos: 118.5,146.5
+ parent: 1
+ - uid: 14294
+ components:
+ - type: Transform
+ pos: 118.5,147.5
+ parent: 1
+ - uid: 14295
+ components:
+ - type: Transform
+ pos: 117.5,147.5
+ parent: 1
+ - uid: 14777
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,43.5
+ parent: 1
+ - uid: 14778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,43.5
+ parent: 1
+ - uid: 14977
+ components:
+ - type: Transform
+ pos: 124.5,132.5
+ parent: 1
+ - uid: 15111
+ components:
+ - type: Transform
+ pos: 137.5,79.5
+ parent: 1
+ - uid: 15458
+ components:
+ - type: Transform
+ pos: 107.5,79.5
+ parent: 1
+ - uid: 15494
+ components:
+ - type: Transform
+ pos: 83.5,134.5
+ parent: 1
+ - uid: 15509
+ components:
+ - type: Transform
+ pos: 86.5,133.5
+ parent: 1
+ - uid: 15517
+ components:
+ - type: Transform
+ pos: 82.5,134.5
+ parent: 1
+ - uid: 15520
+ components:
+ - type: Transform
+ pos: 86.5,132.5
+ parent: 1
+ - uid: 15687
+ components:
+ - type: Transform
+ pos: 81.5,144.5
+ parent: 1
+ - uid: 15714
+ components:
+ - type: Transform
+ pos: 86.5,147.5
+ parent: 1
+ - uid: 15717
+ components:
+ - type: Transform
+ pos: 78.5,135.5
+ parent: 1
+ - uid: 15721
+ components:
+ - type: Transform
+ pos: 86.5,149.5
+ parent: 1
+ - uid: 15732
+ components:
+ - type: Transform
+ pos: 83.5,150.5
+ parent: 1
+ - uid: 15737
+ components:
+ - type: Transform
+ pos: 83.5,144.5
+ parent: 1
+ - uid: 15738
+ components:
+ - type: Transform
+ pos: 81.5,134.5
+ parent: 1
+ - uid: 15762
+ components:
+ - type: Transform
+ pos: 82.5,128.5
+ parent: 1
+ - uid: 15820
+ components:
+ - type: Transform
+ pos: 166.5,144.5
+ parent: 1
+ - uid: 16007
+ components:
+ - type: Transform
+ pos: 170.5,134.5
+ parent: 1
+ - uid: 16019
+ components:
+ - type: Transform
+ pos: 78.5,136.5
+ parent: 1
+ - uid: 16112
+ components:
+ - type: Transform
+ pos: 63.5,59.5
+ parent: 1
+ - uid: 16116
+ components:
+ - type: Transform
+ pos: 63.5,58.5
+ parent: 1
+ - uid: 16132
+ components:
+ - type: Transform
+ pos: 119.5,112.5
+ parent: 1
+ - uid: 16298
+ components:
+ - type: Transform
+ pos: 132.5,79.5
+ parent: 1
+ - uid: 16307
+ components:
+ - type: Transform
+ pos: 96.5,150.5
+ parent: 1
+ - uid: 16528
+ components:
+ - type: Transform
+ pos: 161.5,105.5
+ parent: 1
+ - uid: 16909
+ components:
+ - type: Transform
+ pos: 107.5,164.5
+ parent: 1
+ - uid: 17346
+ components:
+ - type: Transform
+ pos: 126.5,169.5
+ parent: 1
+ - uid: 17625
+ components:
+ - type: Transform
+ pos: 125.5,172.5
+ parent: 1
+ - uid: 17641
+ components:
+ - type: Transform
+ pos: 123.5,172.5
+ parent: 1
+ - uid: 17650
+ components:
+ - type: Transform
+ pos: 126.5,170.5
+ parent: 1
+ - uid: 17742
+ components:
+ - type: Transform
+ pos: 126.5,171.5
+ parent: 1
+ - uid: 17771
+ components:
+ - type: Transform
+ pos: 128.5,120.5
+ parent: 1
+ - uid: 17926
+ components:
+ - type: Transform
+ pos: 124.5,172.5
+ parent: 1
+ - uid: 17930
+ components:
+ - type: Transform
+ pos: 125.5,171.5
+ parent: 1
+ - uid: 17931
+ components:
+ - type: Transform
+ pos: 126.5,159.5
+ parent: 1
+ - uid: 17939
+ components:
+ - type: Transform
+ pos: 126.5,161.5
+ parent: 1
+ - uid: 17960
+ components:
+ - type: Transform
+ pos: 167.5,138.5
+ parent: 1
+ - uid: 18019
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 1
+ - uid: 18024
+ components:
+ - type: Transform
+ pos: 168.5,137.5
+ parent: 1
+ - uid: 18062
+ components:
+ - type: Transform
+ pos: 168.5,138.5
+ parent: 1
+ - uid: 18065
+ components:
+ - type: Transform
+ pos: 170.5,135.5
+ parent: 1
+ - uid: 18073
+ components:
+ - type: Transform
+ pos: 168.5,131.5
+ parent: 1
+ - uid: 18076
+ components:
+ - type: Transform
+ pos: 168.5,132.5
+ parent: 1
+ - uid: 18081
+ components:
+ - type: Transform
+ pos: 167.5,131.5
+ parent: 1
+ - uid: 18082
+ components:
+ - type: Transform
+ pos: 169.5,132.5
+ parent: 1
+ - uid: 18224
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 1
+ - uid: 18275
+ components:
+ - type: Transform
+ pos: 146.5,105.5
+ parent: 1
+ - uid: 18347
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,127.5
+ parent: 1
+ - uid: 18886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,44.5
+ parent: 1
+ - uid: 18887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,44.5
+ parent: 1
+ - uid: 19107
+ components:
+ - type: Transform
+ pos: 102.5,49.5
+ parent: 1
+ - uid: 19235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,42.5
+ parent: 1
+ - uid: 19432
+ components:
+ - type: Transform
+ pos: 108.5,29.5
+ parent: 1
+ - uid: 19453
+ components:
+ - type: Transform
+ pos: 146.5,149.5
+ parent: 1
+ - uid: 19560
+ components:
+ - type: Transform
+ pos: 78.5,145.5
+ parent: 1
+ - uid: 19562
+ components:
+ - type: Transform
+ pos: 78.5,146.5
+ parent: 1
+ - uid: 20347
+ components:
+ - type: Transform
+ pos: 50.5,93.5
+ parent: 1
+ - uid: 20349
+ components:
+ - type: Transform
+ pos: 49.5,94.5
+ parent: 1
+ - uid: 20474
+ components:
+ - type: Transform
+ pos: 118.5,105.5
+ parent: 1
+ - uid: 20868
+ components:
+ - type: Transform
+ pos: 124.5,143.5
+ parent: 1
+ - uid: 21063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,43.5
+ parent: 1
+ - uid: 21069
+ components:
+ - type: Transform
+ pos: 162.5,93.5
+ parent: 1
+ - uid: 21073
+ components:
+ - type: Transform
+ pos: 162.5,100.5
+ parent: 1
+ - uid: 21075
+ components:
+ - type: Transform
+ pos: 162.5,102.5
+ parent: 1
+ - uid: 21076
+ components:
+ - type: Transform
+ pos: 162.5,99.5
+ parent: 1
+ - uid: 21077
+ components:
+ - type: Transform
+ pos: 162.5,103.5
+ parent: 1
+ - uid: 21078
+ components:
+ - type: Transform
+ pos: 162.5,104.5
+ parent: 1
+ - uid: 21079
+ components:
+ - type: Transform
+ pos: 162.5,88.5
+ parent: 1
+ - uid: 21081
+ components:
+ - type: Transform
+ pos: 162.5,86.5
+ parent: 1
+ - uid: 21082
+ components:
+ - type: Transform
+ pos: 162.5,84.5
+ parent: 1
+ - uid: 21083
+ components:
+ - type: Transform
+ pos: 163.5,88.5
+ parent: 1
+ - uid: 21084
+ components:
+ - type: Transform
+ pos: 163.5,93.5
+ parent: 1
+ - uid: 22668
+ components:
+ - type: Transform
+ pos: 45.5,106.5
+ parent: 1
+ - uid: 22734
+ components:
+ - type: Transform
+ pos: 130.5,155.5
+ parent: 1
+ - uid: 22751
+ components:
+ - type: Transform
+ pos: 128.5,155.5
+ parent: 1
+ - uid: 22860
+ components:
+ - type: Transform
+ pos: 99.5,121.5
+ parent: 1
+ - uid: 22861
+ components:
+ - type: Transform
+ pos: 100.5,122.5
+ parent: 1
+ - uid: 22862
+ components:
+ - type: Transform
+ pos: 99.5,122.5
+ parent: 1
+ - uid: 22864
+ components:
+ - type: Transform
+ pos: 124.5,144.5
+ parent: 1
+ - uid: 22865
+ components:
+ - type: Transform
+ pos: 124.5,145.5
+ parent: 1
+ - uid: 22920
+ components:
+ - type: Transform
+ pos: 127.5,120.5
+ parent: 1
+ - uid: 22974
+ components:
+ - type: Transform
+ pos: 159.5,95.5
+ parent: 1
+ - uid: 23094
+ components:
+ - type: Transform
+ pos: 158.5,95.5
+ parent: 1
+ - uid: 23135
+ components:
+ - type: Transform
+ pos: 147.5,133.5
+ parent: 1
+ - uid: 23219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,43.5
+ parent: 1
+ - uid: 23277
+ components:
+ - type: Transform
+ pos: 65.5,60.5
+ parent: 1
+ - uid: 23311
+ components:
+ - type: Transform
+ pos: 84.5,150.5
+ parent: 1
+ - uid: 23318
+ components:
+ - type: Transform
+ pos: 86.5,131.5
+ parent: 1
+ - uid: 23333
+ components:
+ - type: Transform
+ pos: 143.5,111.5
+ parent: 1
+ - uid: 23397
+ components:
+ - type: Transform
+ pos: 133.5,79.5
+ parent: 1
+ - uid: 23401
+ components:
+ - type: Transform
+ pos: 134.5,79.5
+ parent: 1
+ - uid: 23558
+ components:
+ - type: Transform
+ pos: 163.5,150.5
+ parent: 1
+ - uid: 23598
+ components:
+ - type: Transform
+ pos: 42.5,119.5
+ parent: 1
+ - uid: 23619
+ components:
+ - type: Transform
+ pos: 163.5,118.5
+ parent: 1
+ - uid: 23750
+ components:
+ - type: Transform
+ pos: 93.5,83.5
+ parent: 1
+ - uid: 23792
+ components:
+ - type: Transform
+ pos: 93.5,116.5
+ parent: 1
+ - uid: 23849
+ components:
+ - type: Transform
+ pos: 126.5,107.5
+ parent: 1
+ - uid: 23850
+ components:
+ - type: Transform
+ pos: 126.5,108.5
+ parent: 1
+ - uid: 23851
+ components:
+ - type: Transform
+ pos: 126.5,109.5
+ parent: 1
+ - uid: 23941
+ components:
+ - type: Transform
+ pos: 42.5,41.5
+ parent: 1
+ - uid: 24189
+ components:
+ - type: Transform
+ pos: 69.5,71.5
+ parent: 1
+ - uid: 24228
+ components:
+ - type: Transform
+ pos: 141.5,96.5
+ parent: 1
+ - uid: 24314
+ components:
+ - type: Transform
+ pos: 90.5,114.5
+ parent: 1
+ - uid: 24318
+ components:
+ - type: Transform
+ pos: 91.5,72.5
+ parent: 1
+ - uid: 24319
+ components:
+ - type: Transform
+ pos: 91.5,76.5
+ parent: 1
+ - uid: 24426
+ components:
+ - type: Transform
+ pos: 151.5,52.5
+ parent: 1
+ - uid: 24593
+ components:
+ - type: Transform
+ pos: 101.5,68.5
+ parent: 1
+ - uid: 24732
+ components:
+ - type: Transform
+ pos: 69.5,57.5
+ parent: 1
+ - uid: 24945
+ components:
+ - type: Transform
+ pos: 105.5,103.5
+ parent: 1
+ - uid: 25177
+ components:
+ - type: Transform
+ pos: 161.5,122.5
+ parent: 1
+ - uid: 25236
+ components:
+ - type: Transform
+ pos: 123.5,107.5
+ parent: 1
+ - uid: 25237
+ components:
+ - type: Transform
+ pos: 123.5,108.5
+ parent: 1
+ - uid: 25392
+ components:
+ - type: Transform
+ pos: 155.5,54.5
+ parent: 1
+ - uid: 25476
+ components:
+ - type: Transform
+ pos: 29.5,104.5
+ parent: 1
+ - uid: 25921
+ components:
+ - type: Transform
+ pos: 107.5,65.5
+ parent: 1
+ - uid: 25922
+ components:
+ - type: Transform
+ pos: 103.5,65.5
+ parent: 1
+ - uid: 26178
+ components:
+ - type: Transform
+ pos: 103.5,49.5
+ parent: 1
+ - uid: 26221
+ components:
+ - type: Transform
+ pos: 97.5,49.5
+ parent: 1
+ - uid: 26274
+ components:
+ - type: Transform
+ pos: 109.5,172.5
+ parent: 1
+ - uid: 26418
+ components:
+ - type: Transform
+ pos: 111.5,172.5
+ parent: 1
+ - uid: 26717
+ components:
+ - type: Transform
+ pos: 101.5,69.5
+ parent: 1
+ - uid: 26846
+ components:
+ - type: Transform
+ pos: 50.5,68.5
+ parent: 1
+ - uid: 26893
+ components:
+ - type: Transform
+ pos: 120.5,150.5
+ parent: 1
+ - uid: 26924
+ components:
+ - type: Transform
+ pos: 130.5,128.5
+ parent: 1
+ - uid: 26927
+ components:
+ - type: Transform
+ pos: 132.5,130.5
+ parent: 1
+ - uid: 26977
+ components:
+ - type: Transform
+ pos: 78.5,75.5
+ parent: 1
+ - uid: 27100
+ components:
+ - type: Transform
+ pos: 81.5,59.5
+ parent: 1
+ - uid: 27101
+ components:
+ - type: Transform
+ pos: 81.5,56.5
+ parent: 1
+ - uid: 27105
+ components:
+ - type: Transform
+ pos: 81.5,60.5
+ parent: 1
+ - uid: 27107
+ components:
+ - type: Transform
+ pos: 69.5,53.5
+ parent: 1
+ - uid: 27108
+ components:
+ - type: Transform
+ pos: 69.5,55.5
+ parent: 1
+ - uid: 27118
+ components:
+ - type: Transform
+ pos: 69.5,58.5
+ parent: 1
+ - uid: 27177
+ components:
+ - type: Transform
+ pos: 81.5,53.5
+ parent: 1
+ - uid: 27216
+ components:
+ - type: Transform
+ pos: 69.5,60.5
+ parent: 1
+ - uid: 27266
+ components:
+ - type: Transform
+ pos: 32.5,48.5
+ parent: 1
+ - uid: 27269
+ components:
+ - type: Transform
+ pos: 33.5,48.5
+ parent: 1
+ - uid: 27270
+ components:
+ - type: Transform
+ pos: 32.5,49.5
+ parent: 1
+ - uid: 27278
+ components:
+ - type: Transform
+ pos: 41.5,45.5
+ parent: 1
+ - uid: 27279
+ components:
+ - type: Transform
+ pos: 126.5,120.5
+ parent: 1
+ - uid: 27433
+ components:
+ - type: Transform
+ pos: 78.5,73.5
+ parent: 1
+ - uid: 27449
+ components:
+ - type: Transform
+ pos: 69.5,85.5
+ parent: 1
+ - uid: 27594
+ components:
+ - type: Transform
+ pos: 65.5,58.5
+ parent: 1
+ - uid: 27615
+ components:
+ - type: Transform
+ pos: 156.5,86.5
+ parent: 1
+ - uid: 27650
+ components:
+ - type: Transform
+ pos: 121.5,38.5
+ parent: 1
+ - uid: 27664
+ components:
+ - type: Transform
+ pos: 121.5,37.5
+ parent: 1
+ - uid: 27714
+ components:
+ - type: Transform
+ pos: 126.5,157.5
+ parent: 1
+ - uid: 27971
+ components:
+ - type: Transform
+ pos: 102.5,101.5
+ parent: 1
+ - uid: 27973
+ components:
+ - type: Transform
+ pos: 114.5,101.5
+ parent: 1
+ - uid: 28174
+ components:
+ - type: Transform
+ pos: 65.5,69.5
+ parent: 1
+ - uid: 28185
+ components:
+ - type: Transform
+ pos: 126.5,81.5
+ parent: 1
+ - uid: 28492
+ components:
+ - type: Transform
+ pos: 105.5,43.5
+ parent: 1
+ - uid: 28493
+ components:
+ - type: Transform
+ pos: 84.5,100.5
+ parent: 1
+ - uid: 28593
+ components:
+ - type: Transform
+ pos: 63.5,61.5
+ parent: 1
+ - uid: 28595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,65.5
+ parent: 1
+ - uid: 28609
+ components:
+ - type: Transform
+ pos: 62.5,70.5
+ parent: 1
+ - uid: 28714
+ components:
+ - type: Transform
+ pos: 121.5,36.5
+ parent: 1
+ - uid: 28755
+ components:
+ - type: Transform
+ pos: 94.5,49.5
+ parent: 1
+ - uid: 28785
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,35.5
+ parent: 1
+ - uid: 28903
+ components:
+ - type: Transform
+ pos: 158.5,84.5
+ parent: 1
+ - uid: 29057
+ components:
+ - type: Transform
+ pos: 121.5,115.5
+ parent: 1
+ - uid: 29064
+ components:
+ - type: Transform
+ pos: 109.5,65.5
+ parent: 1
+ - uid: 29065
+ components:
+ - type: Transform
+ pos: 105.5,65.5
+ parent: 1
+ - uid: 29153
+ components:
+ - type: Transform
+ pos: 142.5,149.5
+ parent: 1
+ - uid: 29157
+ components:
+ - type: Transform
+ pos: 142.5,150.5
+ parent: 1
+ - uid: 29163
+ components:
+ - type: Transform
+ pos: 117.5,36.5
+ parent: 1
+ - uid: 29336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,44.5
+ parent: 1
+ - uid: 29338
+ components:
+ - type: Transform
+ pos: 77.5,62.5
+ parent: 1
+ - uid: 29505
+ components:
+ - type: Transform
+ pos: 60.5,111.5
+ parent: 1
+ - uid: 29518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,161.5
+ parent: 1
+ - uid: 29564
+ components:
+ - type: Transform
+ pos: 146.5,151.5
+ parent: 1
+ - uid: 29647
+ components:
+ - type: Transform
+ pos: 59.5,111.5
+ parent: 1
+ - uid: 29670
+ components:
+ - type: Transform
+ pos: 148.5,140.5
+ parent: 1
+ - uid: 29671
+ components:
+ - type: Transform
+ pos: 150.5,140.5
+ parent: 1
+ - uid: 29672
+ components:
+ - type: Transform
+ pos: 169.5,137.5
+ parent: 1
+ - uid: 29714
+ components:
+ - type: Transform
+ pos: 87.5,62.5
+ parent: 1
+ - uid: 29821
+ components:
+ - type: Transform
+ pos: 150.5,152.5
+ parent: 1
+ - uid: 29846
+ components:
+ - type: Transform
+ pos: 150.5,151.5
+ parent: 1
+ - uid: 29872
+ components:
+ - type: Transform
+ pos: 142.5,151.5
+ parent: 1
+ - uid: 29930
+ components:
+ - type: Transform
+ pos: 150.5,150.5
+ parent: 1
+ - uid: 29992
+ components:
+ - type: Transform
+ pos: 142.5,156.5
+ parent: 1
+ - uid: 30011
+ components:
+ - type: Transform
+ pos: 142.5,155.5
+ parent: 1
+ - uid: 30023
+ components:
+ - type: Transform
+ pos: 150.5,156.5
+ parent: 1
+ - uid: 30025
+ components:
+ - type: Transform
+ pos: 150.5,155.5
+ parent: 1
+ - uid: 30035
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,42.5
+ parent: 1
+ - uid: 30145
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,154.5
+ parent: 1
+ - uid: 30152
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,154.5
+ parent: 1
+ - uid: 30155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,154.5
+ parent: 1
+ - uid: 30157
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,153.5
+ parent: 1
+ - uid: 30189
+ components:
+ - type: Transform
+ pos: 155.5,101.5
+ parent: 1
+ - uid: 30212
+ components:
+ - type: Transform
+ pos: 165.5,148.5
+ parent: 1
+ - uid: 30223
+ components:
+ - type: Transform
+ pos: 78.5,131.5
+ parent: 1
+ - uid: 30228
+ components:
+ - type: Transform
+ pos: 115.5,85.5
+ parent: 1
+ - uid: 30232
+ components:
+ - type: Transform
+ pos: 112.5,52.5
+ parent: 1
+ - uid: 30233
+ components:
+ - type: Transform
+ pos: 115.5,84.5
+ parent: 1
+ - uid: 30236
+ components:
+ - type: Transform
+ pos: 112.5,51.5
+ parent: 1
+ - uid: 30237
+ components:
+ - type: Transform
+ pos: 113.5,52.5
+ parent: 1
+ - uid: 30267
+ components:
+ - type: Transform
+ pos: 115.5,81.5
+ parent: 1
+ - uid: 30273
+ components:
+ - type: Transform
+ pos: 115.5,82.5
+ parent: 1
+ - uid: 30280
+ components:
+ - type: Transform
+ pos: 145.5,120.5
+ parent: 1
+ - uid: 30285
+ components:
+ - type: Transform
+ pos: 126.5,82.5
+ parent: 1
+ - uid: 30320
+ components:
+ - type: Transform
+ pos: 142.5,97.5
+ parent: 1
+ - uid: 30349
+ components:
+ - type: Transform
+ pos: 67.5,154.5
+ parent: 1
+ - uid: 30354
+ components:
+ - type: Transform
+ pos: 66.5,124.5
+ parent: 1
+ - uid: 30381
+ components:
+ - type: Transform
+ pos: 112.5,166.5
+ parent: 1
+ - uid: 30404
+ components:
+ - type: Transform
+ pos: 145.5,94.5
+ parent: 1
+ - uid: 30457
+ components:
+ - type: Transform
+ pos: 23.5,111.5
+ parent: 1
+ - uid: 30523
+ components:
+ - type: Transform
+ pos: 147.5,128.5
+ parent: 1
+ - uid: 30602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,43.5
+ parent: 1
+ - uid: 30733
+ components:
+ - type: Transform
+ pos: 161.5,118.5
+ parent: 1
+ - uid: 30847
+ components:
+ - type: Transform
+ pos: 144.5,97.5
+ parent: 1
+ - uid: 30861
+ components:
+ - type: Transform
+ pos: 59.5,110.5
+ parent: 1
+ - uid: 30963
+ components:
+ - type: Transform
+ pos: 31.5,139.5
+ parent: 1
+ - uid: 30964
+ components:
+ - type: Transform
+ pos: 31.5,144.5
+ parent: 1
+ - uid: 30965
+ components:
+ - type: Transform
+ pos: 31.5,142.5
+ parent: 1
+ - uid: 30966
+ components:
+ - type: Transform
+ pos: 31.5,143.5
+ parent: 1
+ - uid: 30967
+ components:
+ - type: Transform
+ pos: 32.5,144.5
+ parent: 1
+ - uid: 30968
+ components:
+ - type: Transform
+ pos: 33.5,144.5
+ parent: 1
+ - uid: 30991
+ components:
+ - type: Transform
+ pos: 35.5,134.5
+ parent: 1
+ - uid: 30993
+ components:
+ - type: Transform
+ pos: 35.5,128.5
+ parent: 1
+ - uid: 30994
+ components:
+ - type: Transform
+ pos: 35.5,136.5
+ parent: 1
+ - uid: 30995
+ components:
+ - type: Transform
+ pos: 35.5,135.5
+ parent: 1
+ - uid: 30996
+ components:
+ - type: Transform
+ pos: 35.5,129.5
+ parent: 1
+ - uid: 30997
+ components:
+ - type: Transform
+ pos: 35.5,133.5
+ parent: 1
+ - uid: 30998
+ components:
+ - type: Transform
+ pos: 35.5,132.5
+ parent: 1
+ - uid: 30999
+ components:
+ - type: Transform
+ pos: 35.5,130.5
+ parent: 1
+ - uid: 31019
+ components:
+ - type: Transform
+ pos: 35.5,144.5
+ parent: 1
+ - uid: 31021
+ components:
+ - type: Transform
+ pos: 35.5,149.5
+ parent: 1
+ - uid: 31023
+ components:
+ - type: Transform
+ pos: 35.5,147.5
+ parent: 1
+ - uid: 31024
+ components:
+ - type: Transform
+ pos: 35.5,146.5
+ parent: 1
+ - uid: 31025
+ components:
+ - type: Transform
+ pos: 35.5,148.5
+ parent: 1
+ - uid: 31026
+ components:
+ - type: Transform
+ pos: 35.5,155.5
+ parent: 1
+ - uid: 31027
+ components:
+ - type: Transform
+ pos: 35.5,151.5
+ parent: 1
+ - uid: 31029
+ components:
+ - type: Transform
+ pos: 35.5,155.5
+ parent: 1
+ - uid: 31040
+ components:
+ - type: Transform
+ pos: 35.5,153.5
+ parent: 1
+ - uid: 31041
+ components:
+ - type: Transform
+ pos: 35.5,152.5
+ parent: 1
+ - uid: 31042
+ components:
+ - type: Transform
+ pos: 35.5,154.5
+ parent: 1
+ - uid: 31043
+ components:
+ - type: Transform
+ pos: 36.5,155.5
+ parent: 1
+ - uid: 31044
+ components:
+ - type: Transform
+ pos: 37.5,155.5
+ parent: 1
+ - uid: 31045
+ components:
+ - type: Transform
+ pos: 38.5,155.5
+ parent: 1
+ - uid: 31046
+ components:
+ - type: Transform
+ pos: 39.5,155.5
+ parent: 1
+ - uid: 31047
+ components:
+ - type: Transform
+ pos: 40.5,155.5
+ parent: 1
+ - uid: 31048
+ components:
+ - type: Transform
+ pos: 41.5,155.5
+ parent: 1
+ - uid: 31049
+ components:
+ - type: Transform
+ pos: 42.5,155.5
+ parent: 1
+ - uid: 31050
+ components:
+ - type: Transform
+ pos: 43.5,155.5
+ parent: 1
+ - uid: 31051
+ components:
+ - type: Transform
+ pos: 45.5,155.5
+ parent: 1
+ - uid: 31052
+ components:
+ - type: Transform
+ pos: 47.5,155.5
+ parent: 1
+ - uid: 31053
+ components:
+ - type: Transform
+ pos: 48.5,155.5
+ parent: 1
+ - uid: 31054
+ components:
+ - type: Transform
+ pos: 49.5,155.5
+ parent: 1
+ - uid: 31055
+ components:
+ - type: Transform
+ pos: 50.5,155.5
+ parent: 1
+ - uid: 31349
+ components:
+ - type: Transform
+ pos: 21.5,27.5
+ parent: 1
+ - uid: 31410
+ components:
+ - type: Transform
+ pos: 37.5,24.5
+ parent: 1
+ - uid: 31411
+ components:
+ - type: Transform
+ pos: 36.5,24.5
+ parent: 1
+ - uid: 31412
+ components:
+ - type: Transform
+ pos: 35.5,24.5
+ parent: 1
+ - uid: 31413
+ components:
+ - type: Transform
+ pos: 34.5,24.5
+ parent: 1
+ - uid: 31414
+ components:
+ - type: Transform
+ pos: 33.5,24.5
+ parent: 1
+ - uid: 31415
+ components:
+ - type: Transform
+ pos: 31.5,24.5
+ parent: 1
+ - uid: 31416
+ components:
+ - type: Transform
+ pos: 30.5,24.5
+ parent: 1
+ - uid: 31417
+ components:
+ - type: Transform
+ pos: 29.5,24.5
+ parent: 1
+ - uid: 31418
+ components:
+ - type: Transform
+ pos: 28.5,24.5
+ parent: 1
+ - uid: 31419
+ components:
+ - type: Transform
+ pos: 27.5,24.5
+ parent: 1
+ - uid: 31420
+ components:
+ - type: Transform
+ pos: 25.5,24.5
+ parent: 1
+ - uid: 31421
+ components:
+ - type: Transform
+ pos: 23.5,24.5
+ parent: 1
+ - uid: 31422
+ components:
+ - type: Transform
+ pos: 21.5,26.5
+ parent: 1
+ - uid: 31423
+ components:
+ - type: Transform
+ pos: 21.5,24.5
+ parent: 1
+ - uid: 31424
+ components:
+ - type: Transform
+ pos: 21.5,28.5
+ parent: 1
+ - uid: 31425
+ components:
+ - type: Transform
+ pos: 21.5,29.5
+ parent: 1
+ - uid: 31426
+ components:
+ - type: Transform
+ pos: 21.5,30.5
+ parent: 1
+ - uid: 31427
+ components:
+ - type: Transform
+ pos: 21.5,31.5
+ parent: 1
+ - uid: 31428
+ components:
+ - type: Transform
+ pos: 21.5,32.5
+ parent: 1
+ - uid: 31429
+ components:
+ - type: Transform
+ pos: 21.5,34.5
+ parent: 1
+ - uid: 31430
+ components:
+ - type: Transform
+ pos: 21.5,36.5
+ parent: 1
+ - uid: 31431
+ components:
+ - type: Transform
+ pos: 21.5,38.5
+ parent: 1
+ - uid: 31432
+ components:
+ - type: Transform
+ pos: 21.5,39.5
+ parent: 1
+ - uid: 31433
+ components:
+ - type: Transform
+ pos: 21.5,40.5
+ parent: 1
+ - uid: 31434
+ components:
+ - type: Transform
+ pos: 21.5,42.5
+ parent: 1
+ - uid: 31435
+ components:
+ - type: Transform
+ pos: 21.5,43.5
+ parent: 1
+ - uid: 31436
+ components:
+ - type: Transform
+ pos: 21.5,41.5
+ parent: 1
+ - uid: 31437
+ components:
+ - type: Transform
+ pos: 20.5,50.5
+ parent: 1
+ - uid: 31438
+ components:
+ - type: Transform
+ pos: 21.5,45.5
+ parent: 1
+ - uid: 31439
+ components:
+ - type: Transform
+ pos: 21.5,46.5
+ parent: 1
+ - uid: 31440
+ components:
+ - type: Transform
+ pos: 21.5,47.5
+ parent: 1
+ - uid: 31441
+ components:
+ - type: Transform
+ pos: 21.5,48.5
+ parent: 1
+ - uid: 31442
+ components:
+ - type: Transform
+ pos: 17.5,52.5
+ parent: 1
+ - uid: 31443
+ components:
+ - type: Transform
+ pos: 18.5,50.5
+ parent: 1
+ - uid: 31444
+ components:
+ - type: Transform
+ pos: 17.5,50.5
+ parent: 1
+ - uid: 31445
+ components:
+ - type: Transform
+ pos: 19.5,50.5
+ parent: 1
+ - uid: 31446
+ components:
+ - type: Transform
+ pos: 17.5,56.5
+ parent: 1
+ - uid: 31447
+ components:
+ - type: Transform
+ pos: 18.5,56.5
+ parent: 1
+ - uid: 31448
+ components:
+ - type: Transform
+ pos: 19.5,56.5
+ parent: 1
+ - uid: 31449
+ components:
+ - type: Transform
+ pos: 21.5,57.5
+ parent: 1
+ - uid: 31450
+ components:
+ - type: Transform
+ pos: 21.5,58.5
+ parent: 1
+ - uid: 31451
+ components:
+ - type: Transform
+ pos: 21.5,59.5
+ parent: 1
+ - uid: 31452
+ components:
+ - type: Transform
+ pos: 21.5,60.5
+ parent: 1
+ - uid: 31453
+ components:
+ - type: Transform
+ pos: 21.5,62.5
+ parent: 1
+ - uid: 31454
+ components:
+ - type: Transform
+ pos: 21.5,63.5
+ parent: 1
+ - uid: 31455
+ components:
+ - type: Transform
+ pos: 21.5,61.5
+ parent: 1
+ - uid: 31456
+ components:
+ - type: Transform
+ pos: 21.5,66.5
+ parent: 1
+ - uid: 31494
+ components:
+ - type: Transform
+ pos: 165.5,43.5
+ parent: 1
+ - uid: 31495
+ components:
+ - type: Transform
+ pos: 166.5,43.5
+ parent: 1
+ - uid: 31496
+ components:
+ - type: Transform
+ pos: 167.5,43.5
+ parent: 1
+ - uid: 31497
+ components:
+ - type: Transform
+ pos: 169.5,43.5
+ parent: 1
+ - uid: 31498
+ components:
+ - type: Transform
+ pos: 171.5,43.5
+ parent: 1
+ - uid: 31499
+ components:
+ - type: Transform
+ pos: 173.5,43.5
+ parent: 1
+ - uid: 31500
+ components:
+ - type: Transform
+ pos: 174.5,43.5
+ parent: 1
+ - uid: 31501
+ components:
+ - type: Transform
+ pos: 175.5,43.5
+ parent: 1
+ - uid: 31502
+ components:
+ - type: Transform
+ pos: 176.5,43.5
+ parent: 1
+ - uid: 31503
+ components:
+ - type: Transform
+ pos: 177.5,43.5
+ parent: 1
+ - uid: 31504
+ components:
+ - type: Transform
+ pos: 178.5,43.5
+ parent: 1
+ - uid: 31505
+ components:
+ - type: Transform
+ pos: 180.5,43.5
+ parent: 1
+ - uid: 31506
+ components:
+ - type: Transform
+ pos: 181.5,43.5
+ parent: 1
+ - uid: 31507
+ components:
+ - type: Transform
+ pos: 181.5,44.5
+ parent: 1
+ - uid: 31508
+ components:
+ - type: Transform
+ pos: 181.5,45.5
+ parent: 1
+ - uid: 31509
+ components:
+ - type: Transform
+ pos: 181.5,50.5
+ parent: 1
+ - uid: 31510
+ components:
+ - type: Transform
+ pos: 181.5,51.5
+ parent: 1
+ - uid: 31511
+ components:
+ - type: Transform
+ pos: 181.5,52.5
+ parent: 1
+ - uid: 31512
+ components:
+ - type: Transform
+ pos: 181.5,53.5
+ parent: 1
+ - uid: 31513
+ components:
+ - type: Transform
+ pos: 181.5,54.5
+ parent: 1
+ - uid: 31514
+ components:
+ - type: Transform
+ pos: 182.5,54.5
+ parent: 1
+ - uid: 31515
+ components:
+ - type: Transform
+ pos: 184.5,54.5
+ parent: 1
+ - uid: 31516
+ components:
+ - type: Transform
+ pos: 184.5,55.5
+ parent: 1
+ - uid: 31517
+ components:
+ - type: Transform
+ pos: 184.5,56.5
+ parent: 1
+ - uid: 31518
+ components:
+ - type: Transform
+ pos: 184.5,57.5
+ parent: 1
+ - uid: 31519
+ components:
+ - type: Transform
+ pos: 184.5,58.5
+ parent: 1
+ - uid: 31520
+ components:
+ - type: Transform
+ pos: 184.5,59.5
+ parent: 1
+ - uid: 31521
+ components:
+ - type: Transform
+ pos: 184.5,60.5
+ parent: 1
+ - uid: 31522
+ components:
+ - type: Transform
+ pos: 183.5,60.5
+ parent: 1
+ - uid: 31523
+ components:
+ - type: Transform
+ pos: 182.5,60.5
+ parent: 1
+ - uid: 31524
+ components:
+ - type: Transform
+ pos: 181.5,60.5
+ parent: 1
+ - uid: 31525
+ components:
+ - type: Transform
+ pos: 180.5,60.5
+ parent: 1
+ - uid: 31526
+ components:
+ - type: Transform
+ pos: 180.5,61.5
+ parent: 1
+ - uid: 31527
+ components:
+ - type: Transform
+ pos: 180.5,62.5
+ parent: 1
+ - uid: 31528
+ components:
+ - type: Transform
+ pos: 180.5,63.5
+ parent: 1
+ - uid: 31529
+ components:
+ - type: Transform
+ pos: 180.5,64.5
+ parent: 1
+ - uid: 31530
+ components:
+ - type: Transform
+ pos: 180.5,65.5
+ parent: 1
+ - uid: 31531
+ components:
+ - type: Transform
+ pos: 180.5,67.5
+ parent: 1
+ - uid: 31532
+ components:
+ - type: Transform
+ pos: 180.5,66.5
+ parent: 1
+ - uid: 31533
+ components:
+ - type: Transform
+ pos: 180.5,71.5
+ parent: 1
+ - uid: 31534
+ components:
+ - type: Transform
+ pos: 179.5,71.5
+ parent: 1
+ - uid: 31535
+ components:
+ - type: Transform
+ pos: 178.5,71.5
+ parent: 1
+ - uid: 31536
+ components:
+ - type: Transform
+ pos: 176.5,71.5
+ parent: 1
+ - uid: 31537
+ components:
+ - type: Transform
+ pos: 175.5,71.5
+ parent: 1
+ - uid: 31538
+ components:
+ - type: Transform
+ pos: 174.5,71.5
+ parent: 1
+ - uid: 31539
+ components:
+ - type: Transform
+ pos: 173.5,71.5
+ parent: 1
+ - uid: 31540
+ components:
+ - type: Transform
+ pos: 172.5,71.5
+ parent: 1
+ - uid: 31541
+ components:
+ - type: Transform
+ pos: 170.5,71.5
+ parent: 1
+ - uid: 31542
+ components:
+ - type: Transform
+ pos: 168.5,71.5
+ parent: 1
+ - uid: 31543
+ components:
+ - type: Transform
+ pos: 169.5,71.5
+ parent: 1
+ - uid: 31544
+ components:
+ - type: Transform
+ pos: 166.5,71.5
+ parent: 1
+ - uid: 31545
+ components:
+ - type: Transform
+ pos: 164.5,71.5
+ parent: 1
+ - uid: 31546
+ components:
+ - type: Transform
+ pos: 163.5,71.5
+ parent: 1
+ - uid: 31547
+ components:
+ - type: Transform
+ pos: 165.5,71.5
+ parent: 1
+ - uid: 31791
+ components:
+ - type: Transform
+ pos: 145.5,126.5
+ parent: 1
+ - uid: 31794
+ components:
+ - type: Transform
+ pos: 143.5,126.5
+ parent: 1
+ - uid: 31800
+ components:
+ - type: Transform
+ pos: 87.5,53.5
+ parent: 1
+ - uid: 31801
+ components:
+ - type: Transform
+ pos: 89.5,62.5
+ parent: 1
+ - uid: 32128
+ components:
+ - type: Transform
+ pos: 63.5,154.5
+ parent: 1
+ - uid: 32129
+ components:
+ - type: Transform
+ pos: 63.5,153.5
+ parent: 1
+ - uid: 32130
+ components:
+ - type: Transform
+ pos: 63.5,152.5
+ parent: 1
+ - uid: 32131
+ components:
+ - type: Transform
+ pos: 63.5,151.5
+ parent: 1
+ - uid: 32132
+ components:
+ - type: Transform
+ pos: 63.5,150.5
+ parent: 1
+ - uid: 32133
+ components:
+ - type: Transform
+ pos: 62.5,150.5
+ parent: 1
+ - uid: 32134
+ components:
+ - type: Transform
+ pos: 62.5,149.5
+ parent: 1
+ - uid: 32135
+ components:
+ - type: Transform
+ pos: 62.5,148.5
+ parent: 1
+ - uid: 32136
+ components:
+ - type: Transform
+ pos: 62.5,147.5
+ parent: 1
+ - uid: 32137
+ components:
+ - type: Transform
+ pos: 62.5,146.5
+ parent: 1
+ - uid: 32138
+ components:
+ - type: Transform
+ pos: 61.5,146.5
+ parent: 1
+ - uid: 32139
+ components:
+ - type: Transform
+ pos: 61.5,145.5
+ parent: 1
+ - uid: 32140
+ components:
+ - type: Transform
+ pos: 61.5,144.5
+ parent: 1
+ - uid: 32141
+ components:
+ - type: Transform
+ pos: 61.5,142.5
+ parent: 1
+ - uid: 32142
+ components:
+ - type: Transform
+ pos: 61.5,143.5
+ parent: 1
+ - uid: 32143
+ components:
+ - type: Transform
+ pos: 60.5,142.5
+ parent: 1
+ - uid: 32144
+ components:
+ - type: Transform
+ pos: 60.5,141.5
+ parent: 1
+ - uid: 32145
+ components:
+ - type: Transform
+ pos: 60.5,140.5
+ parent: 1
+ - uid: 32146
+ components:
+ - type: Transform
+ pos: 60.5,139.5
+ parent: 1
+ - uid: 32147
+ components:
+ - type: Transform
+ pos: 60.5,138.5
+ parent: 1
+ - uid: 32148
+ components:
+ - type: Transform
+ pos: 60.5,137.5
+ parent: 1
+ - uid: 32149
+ components:
+ - type: Transform
+ pos: 60.5,136.5
+ parent: 1
+ - uid: 32150
+ components:
+ - type: Transform
+ pos: 61.5,136.5
+ parent: 1
+ - uid: 32151
+ components:
+ - type: Transform
+ pos: 61.5,135.5
+ parent: 1
+ - uid: 32152
+ components:
+ - type: Transform
+ pos: 61.5,134.5
+ parent: 1
+ - uid: 32153
+ components:
+ - type: Transform
+ pos: 61.5,133.5
+ parent: 1
+ - uid: 32154
+ components:
+ - type: Transform
+ pos: 61.5,132.5
+ parent: 1
+ - uid: 32155
+ components:
+ - type: Transform
+ pos: 62.5,132.5
+ parent: 1
+ - uid: 32156
+ components:
+ - type: Transform
+ pos: 62.5,131.5
+ parent: 1
+ - uid: 32157
+ components:
+ - type: Transform
+ pos: 62.5,129.5
+ parent: 1
+ - uid: 32158
+ components:
+ - type: Transform
+ pos: 62.5,128.5
+ parent: 1
+ - uid: 32159
+ components:
+ - type: Transform
+ pos: 62.5,130.5
+ parent: 1
+ - uid: 32160
+ components:
+ - type: Transform
+ pos: 63.5,128.5
+ parent: 1
+ - uid: 32161
+ components:
+ - type: Transform
+ pos: 63.5,127.5
+ parent: 1
+ - uid: 32162
+ components:
+ - type: Transform
+ pos: 63.5,126.5
+ parent: 1
+ - uid: 32163
+ components:
+ - type: Transform
+ pos: 63.5,125.5
+ parent: 1
+ - uid: 32164
+ components:
+ - type: Transform
+ pos: 63.5,124.5
+ parent: 1
+ - uid: 32273
+ components:
+ - type: Transform
+ pos: 62.5,39.5
+ parent: 1
+ - uid: 32274
+ components:
+ - type: Transform
+ pos: 151.5,78.5
+ parent: 1
+ - uid: 32276
+ components:
+ - type: Transform
+ pos: 148.5,81.5
+ parent: 1
+ - uid: 32290
+ components:
+ - type: Transform
+ pos: 141.5,97.5
+ parent: 1
+ - uid: 32291
+ components:
+ - type: Transform
+ pos: 88.5,62.5
+ parent: 1
+ - uid: 32295
+ components:
+ - type: Transform
+ pos: 125.5,43.5
+ parent: 1
+ - uid: 32348
+ components:
+ - type: Transform
+ pos: 78.5,130.5
+ parent: 1
+ - uid: 32349
+ components:
+ - type: Transform
+ pos: 78.5,133.5
+ parent: 1
+ - uid: 32404
+ components:
+ - type: Transform
+ pos: 117.5,41.5
+ parent: 1
+ - uid: 32405
+ components:
+ - type: Transform
+ pos: 121.5,30.5
+ parent: 1
+ - uid: 32406
+ components:
+ - type: Transform
+ pos: 117.5,37.5
+ parent: 1
+ - uid: 32416
+ components:
+ - type: Transform
+ pos: 136.5,79.5
+ parent: 1
+ - uid: 32938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,84.5
+ parent: 1
+ - uid: 33163
+ components:
+ - type: Transform
+ pos: 116.5,28.5
+ parent: 1
+ - uid: 33164
+ components:
+ - type: Transform
+ pos: 117.5,28.5
+ parent: 1
+ - uid: 33165
+ components:
+ - type: Transform
+ pos: 118.5,28.5
+ parent: 1
+ - uid: 33166
+ components:
+ - type: Transform
+ pos: 119.5,28.5
+ parent: 1
+ - uid: 33270
+ components:
+ - type: Transform
+ pos: 100.5,20.5
+ parent: 1
+ - uid: 33271
+ components:
+ - type: Transform
+ pos: 100.5,21.5
+ parent: 1
+ - uid: 33272
+ components:
+ - type: Transform
+ pos: 100.5,19.5
+ parent: 1
+ - uid: 33749
+ components:
+ - type: Transform
+ pos: 62.5,38.5
+ parent: 1
+ - uid: 34048
+ components:
+ - type: Transform
+ pos: 103.5,70.5
+ parent: 1
+ - uid: 34049
+ components:
+ - type: Transform
+ pos: 104.5,70.5
+ parent: 1
+ - uid: 34050
+ components:
+ - type: Transform
+ pos: 105.5,70.5
+ parent: 1
+ - uid: 34051
+ components:
+ - type: Transform
+ pos: 106.5,70.5
+ parent: 1
+ - uid: 34056
+ components:
+ - type: Transform
+ pos: 107.5,70.5
+ parent: 1
+ - uid: 34057
+ components:
+ - type: Transform
+ pos: 108.5,70.5
+ parent: 1
+ - uid: 34061
+ components:
+ - type: Transform
+ pos: 109.5,70.5
+ parent: 1
+ - uid: 34062
+ components:
+ - type: Transform
+ pos: 110.5,70.5
+ parent: 1
+ - uid: 34063
+ components:
+ - type: Transform
+ pos: 110.5,69.5
+ parent: 1
+ - uid: 34064
+ components:
+ - type: Transform
+ pos: 111.5,69.5
+ parent: 1
+ - uid: 34065
+ components:
+ - type: Transform
+ pos: 111.5,68.5
+ parent: 1
+ - uid: 34230
+ components:
+ - type: Transform
+ pos: 54.5,74.5
+ parent: 1
+ - uid: 34265
+ components:
+ - type: Transform
+ pos: 162.5,63.5
+ parent: 1
+ - uid: 34291
+ components:
+ - type: Transform
+ pos: 66.5,154.5
+ parent: 1
+ - uid: 34353
+ components:
+ - type: Transform
+ pos: 65.5,124.5
+ parent: 1
+ - uid: 34405
+ components:
+ - type: Transform
+ pos: 65.5,154.5
+ parent: 1
+ - uid: 34410
+ components:
+ - type: Transform
+ pos: 64.5,124.5
+ parent: 1
+ - uid: 34413
+ components:
+ - type: Transform
+ pos: 64.5,154.5
+ parent: 1
+ - uid: 34434
+ components:
+ - type: Transform
+ pos: 68.5,158.5
+ parent: 1
+ - uid: 34566
+ components:
+ - type: Transform
+ pos: 157.5,150.5
+ parent: 1
+ - uid: 34706
+ components:
+ - type: Transform
+ pos: 39.5,127.5
+ parent: 1
+ - uid: 34834
+ components:
+ - type: Transform
+ pos: 126.5,163.5
+ parent: 1
+ - uid: 34841
+ components:
+ - type: Transform
+ pos: 130.5,82.5
+ parent: 1
+ - uid: 34938
+ components:
+ - type: Transform
+ pos: 137.5,152.5
+ parent: 1
+ - uid: 34978
+ components:
+ - type: Transform
+ pos: 50.5,133.5
+ parent: 1
+ - uid: 34979
+ components:
+ - type: Transform
+ pos: 50.5,131.5
+ parent: 1
+ - uid: 34982
+ components:
+ - type: Transform
+ pos: 23.5,125.5
+ parent: 1
+ - uid: 34983
+ components:
+ - type: Transform
+ pos: 27.5,125.5
+ parent: 1
+ - uid: 34984
+ components:
+ - type: Transform
+ pos: 41.5,127.5
+ parent: 1
+ - uid: 34995
+ components:
+ - type: Transform
+ pos: 129.5,41.5
+ parent: 1
+ - uid: 34996
+ components:
+ - type: Transform
+ pos: 130.5,41.5
+ parent: 1
+ - uid: 34997
+ components:
+ - type: Transform
+ pos: 132.5,41.5
+ parent: 1
+ - uid: 34998
+ components:
+ - type: Transform
+ pos: 133.5,41.5
+ parent: 1
+ - uid: 34999
+ components:
+ - type: Transform
+ pos: 134.5,41.5
+ parent: 1
+ - uid: 35000
+ components:
+ - type: Transform
+ pos: 131.5,41.5
+ parent: 1
+ - uid: 35066
+ components:
+ - type: Transform
+ pos: 99.5,173.5
+ parent: 1
+ - uid: 35102
+ components:
+ - type: Transform
+ pos: 165.5,130.5
+ parent: 1
+ - uid: 35128
+ components:
+ - type: Transform
+ pos: 50.5,129.5
+ parent: 1
+ - uid: 35160
+ components:
+ - type: Transform
+ pos: 44.5,123.5
+ parent: 1
+ - uid: 35166
+ components:
+ - type: Transform
+ pos: 55.5,133.5
+ parent: 1
+ - uid: 35201
+ components:
+ - type: Transform
+ pos: 64.5,158.5
+ parent: 1
+ - uid: 35688
+ components:
+ - type: Transform
+ pos: 23.5,93.5
+ parent: 1
+ - uid: 35689
+ components:
+ - type: Transform
+ pos: 23.5,91.5
+ parent: 1
+ - uid: 35698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,98.5
+ parent: 1
+ - uid: 35742
+ components:
+ - type: Transform
+ pos: 39.5,121.5
+ parent: 1
+ - uid: 35757
+ components:
+ - type: Transform
+ pos: 79.5,157.5
+ parent: 1
+ - uid: 35797
+ components:
+ - type: Transform
+ pos: 55.5,125.5
+ parent: 1
+ - uid: 35798
+ components:
+ - type: Transform
+ pos: 77.5,157.5
+ parent: 1
+ - uid: 35799
+ components:
+ - type: Transform
+ pos: 81.5,157.5
+ parent: 1
+ - uid: 35909
+ components:
+ - type: Transform
+ pos: 59.5,149.5
+ parent: 1
+ - uid: 35937
+ components:
+ - type: Transform
+ pos: 56.5,138.5
+ parent: 1
+ - uid: 35999
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,43.5
+ parent: 1
+ - uid: 36017
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,44.5
+ parent: 1
+ - uid: 36063
+ components:
+ - type: Transform
+ pos: 32.5,124.5
+ parent: 1
+ - uid: 36095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,44.5
+ parent: 1
+ - uid: 36130
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,45.5
+ parent: 1
+ - uid: 36573
+ components:
+ - type: Transform
+ pos: 110.5,166.5
+ parent: 1
+ - uid: 37012
+ components:
+ - type: Transform
+ pos: 97.5,165.5
+ parent: 1
+- proto: GrilleBroken
+ entities:
+ - uid: 2179
+ components:
+ - type: Transform
+ pos: 121.5,31.5
+ parent: 1
+ - uid: 29522
+ components:
+ - type: Transform
+ pos: 19.5,99.5
+ parent: 1
+ - uid: 29900
+ components:
+ - type: Transform
+ pos: 67.5,159.5
+ parent: 1
+ - uid: 32238
+ components:
+ - type: Transform
+ pos: 40.5,121.5
+ parent: 1
+ - uid: 33162
+ components:
+ - type: Transform
+ pos: 121.5,32.5
+ parent: 1
+ - uid: 35794
+ components:
+ - type: Transform
+ pos: 54.5,125.5
+ parent: 1
+ - uid: 36156
+ components:
+ - type: Transform
+ pos: 48.5,121.5
+ parent: 1
+- proto: GrilleSpawner
+ entities:
+ - uid: 5297
+ components:
+ - type: Transform
+ pos: 162.5,98.5
+ parent: 1
+ - uid: 5298
+ components:
+ - type: Transform
+ pos: 162.5,96.5
+ parent: 1
+ - uid: 5892
+ components:
+ - type: Transform
+ pos: 162.5,87.5
+ parent: 1
+ - uid: 21074
+ components:
+ - type: Transform
+ pos: 162.5,101.5
+ parent: 1
+ - uid: 31020
+ components:
+ - type: Transform
+ pos: 46.5,155.5
+ parent: 1
+ - uid: 31129
+ components:
+ - type: Transform
+ pos: 44.5,155.5
+ parent: 1
+ - uid: 31130
+ components:
+ - type: Transform
+ pos: 35.5,145.5
+ parent: 1
+ - uid: 31131
+ components:
+ - type: Transform
+ pos: 35.5,150.5
+ parent: 1
+ - uid: 31132
+ components:
+ - type: Transform
+ pos: 31.5,141.5
+ parent: 1
+ - uid: 31133
+ components:
+ - type: Transform
+ pos: 34.5,144.5
+ parent: 1
+ - uid: 31134
+ components:
+ - type: Transform
+ pos: 31.5,140.5
+ parent: 1
+ - uid: 31136
+ components:
+ - type: Transform
+ pos: 35.5,137.5
+ parent: 1
+ - uid: 31137
+ components:
+ - type: Transform
+ pos: 35.5,131.5
+ parent: 1
+ - uid: 31457
+ components:
+ - type: Transform
+ pos: 32.5,24.5
+ parent: 1
+ - uid: 31458
+ components:
+ - type: Transform
+ pos: 26.5,24.5
+ parent: 1
+ - uid: 31459
+ components:
+ - type: Transform
+ pos: 24.5,24.5
+ parent: 1
+ - uid: 31460
+ components:
+ - type: Transform
+ pos: 22.5,24.5
+ parent: 1
+ - uid: 31461
+ components:
+ - type: Transform
+ pos: 21.5,25.5
+ parent: 1
+ - uid: 31462
+ components:
+ - type: Transform
+ pos: 21.5,33.5
+ parent: 1
+ - uid: 31463
+ components:
+ - type: Transform
+ pos: 21.5,35.5
+ parent: 1
+ - uid: 31464
+ components:
+ - type: Transform
+ pos: 21.5,37.5
+ parent: 1
+ - uid: 31465
+ components:
+ - type: Transform
+ pos: 21.5,50.5
+ parent: 1
+ - uid: 31466
+ components:
+ - type: Transform
+ pos: 21.5,44.5
+ parent: 1
+ - uid: 31467
+ components:
+ - type: Transform
+ pos: 21.5,49.5
+ parent: 1
+ - uid: 31468
+ components:
+ - type: Transform
+ pos: 17.5,51.5
+ parent: 1
+ - uid: 31469
+ components:
+ - type: Transform
+ pos: 17.5,54.5
+ parent: 1
+ - uid: 31470
+ components:
+ - type: Transform
+ pos: 17.5,53.5
+ parent: 1
+ - uid: 31471
+ components:
+ - type: Transform
+ pos: 17.5,55.5
+ parent: 1
+ - uid: 31472
+ components:
+ - type: Transform
+ pos: 20.5,56.5
+ parent: 1
+ - uid: 31473
+ components:
+ - type: Transform
+ pos: 21.5,56.5
+ parent: 1
+ - uid: 31475
+ components:
+ - type: Transform
+ pos: 21.5,64.5
+ parent: 1
+ - uid: 31476
+ components:
+ - type: Transform
+ pos: 21.5,65.5
+ parent: 1
+ - uid: 31477
+ components:
+ - type: Transform
+ pos: 168.5,43.5
+ parent: 1
+ - uid: 31478
+ components:
+ - type: Transform
+ pos: 170.5,43.5
+ parent: 1
+ - uid: 31479
+ components:
+ - type: Transform
+ pos: 172.5,43.5
+ parent: 1
+ - uid: 31480
+ components:
+ - type: Transform
+ pos: 179.5,43.5
+ parent: 1
+ - uid: 31481
+ components:
+ - type: Transform
+ pos: 181.5,46.5
+ parent: 1
+ - uid: 31482
+ components:
+ - type: Transform
+ pos: 181.5,47.5
+ parent: 1
+ - uid: 31483
+ components:
+ - type: Transform
+ pos: 181.5,48.5
+ parent: 1
+ - uid: 31484
+ components:
+ - type: Transform
+ pos: 181.5,49.5
+ parent: 1
+ - uid: 31485
+ components:
+ - type: Transform
+ pos: 183.5,54.5
+ parent: 1
+ - uid: 31486
+ components:
+ - type: Transform
+ pos: 184.5,54.5
+ parent: 1
+ - uid: 31487
+ components:
+ - type: Transform
+ pos: 184.5,55.5
+ parent: 1
+ - uid: 31488
+ components:
+ - type: Transform
+ pos: 180.5,68.5
+ parent: 1
+ - uid: 31489
+ components:
+ - type: Transform
+ pos: 180.5,69.5
+ parent: 1
+ - uid: 31490
+ components:
+ - type: Transform
+ pos: 180.5,70.5
+ parent: 1
+ - uid: 31491
+ components:
+ - type: Transform
+ pos: 177.5,71.5
+ parent: 1
+ - uid: 31492
+ components:
+ - type: Transform
+ pos: 171.5,71.5
+ parent: 1
+ - uid: 31493
+ components:
+ - type: Transform
+ pos: 167.5,71.5
+ parent: 1
+ - uid: 35648
+ components:
+ - type: Transform
+ pos: 149.5,114.5
+ parent: 1
+- proto: GroundCannabis
+ entities:
+ - uid: 37182
+ components:
+ - type: Transform
+ pos: 168.18417,135.67743
+ parent: 1
+- proto: GroundTobacco
+ entities:
+ - uid: 37183
+ components:
+ - type: Transform
+ pos: 167.42723,135.05243
+ parent: 1
+- proto: GunSafeDisabler
+ entities:
+ - uid: 22752
+ components:
+ - type: Transform
+ pos: 132.5,62.5
+ parent: 1
+- proto: GunSafeLaserCarbine
+ entities:
+ - uid: 22768
+ components:
+ - type: Transform
+ pos: 130.5,64.5
+ parent: 1
+- proto: GunSafePistolMk58
+ entities:
+ - uid: 22795
+ components:
+ - type: Transform
+ pos: 132.5,66.5
+ parent: 1
+- proto: GunSafeRifleLecter
+ entities:
+ - uid: 22609
+ components:
+ - type: Transform
+ pos: 130.5,62.5
+ parent: 1
+- proto: GunSafeShotgunKammerer
+ entities:
+ - uid: 22753
+ components:
+ - type: Transform
+ pos: 133.5,62.5
+ parent: 1
+- proto: GunSafeSubMachineGunDrozd
+ entities:
+ - uid: 22769
+ components:
+ - type: Transform
+ pos: 130.5,66.5
+ parent: 1
+- proto: Handcuffs
+ entities:
+ - uid: 1416
+ components:
+ - type: Transform
+ pos: 96.510605,113.38187
+ parent: 1
+ - uid: 13646
+ components:
+ - type: Transform
+ pos: 32.416855,53.002132
+ parent: 1
+ - uid: 22805
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 135.5195,63.00967
+ parent: 1
+- proto: HandheldGPSBasic
+ entities:
+ - uid: 23145
+ components:
+ - type: Transform
+ pos: 142.35602,49.441376
+ parent: 1
+ - uid: 23146
+ components:
+ - type: Transform
+ pos: 142.61298,49.614986
+ parent: 1
+- proto: HandheldHealthAnalyzer
+ entities:
+ - uid: 20418
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.426033,82.485245
+ parent: 1
+ - uid: 27073
+ components:
+ - type: Transform
+ pos: 61.51531,75.61516
+ parent: 1
+ - uid: 28662
+ components:
+ - type: Transform
+ pos: 113.5,50.5
+ parent: 1
+- proto: HandheldStationMap
+ entities:
+ - uid: 19599
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 134.56567,90.673485
+ parent: 1
+- proto: HandLabeler
+ entities:
+ - uid: 3874
+ components:
+ - type: Transform
+ pos: 60.575592,54.587025
+ parent: 1
+ - uid: 18061
+ components:
+ - type: Transform
+ pos: 85.50959,101.16237
+ parent: 1
+ - uid: 18826
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 86.52753,54.626137
+ parent: 1
+ - uid: 22765
+ components:
+ - type: Transform
+ pos: 93.53575,104.257324
+ parent: 1
+- proto: HarmonicaInstrument
+ entities:
+ - uid: 26785
+ components:
+ - type: Transform
+ pos: 110.56206,59.442657
+ parent: 1
+- proto: HeatExchanger
+ entities:
+ - uid: 32356
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,147.5
+ parent: 1
+ - uid: 36901
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,147.5
+ parent: 1
+ - type: AtmosPipeColor
+ color: '#00FFFFFF'
+ - uid: 36929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,147.5
+ parent: 1
+- proto: HighSecArmoryLocked
+ entities:
+ - uid: 22877
+ components:
+ - type: MetaData
+ name: armory high security door
+ - type: Transform
+ pos: 134.5,61.5
+ parent: 1
+ - uid: 22878
+ components:
+ - type: MetaData
+ name: armory entrance high security door
+ - type: Transform
+ pos: 136.5,59.5
+ parent: 1
+ - uid: 22879
+ components:
+ - type: MetaData
+ name: armory high security door
+ - type: Transform
+ pos: 134.5,67.5
+ parent: 1
+- proto: HighSecCommandLocked
+ entities:
+ - uid: 32039
+ components:
+ - type: MetaData
+ name: tech vault high security door
+ - type: Transform
+ pos: 142.5,134.5
+ parent: 1
+ - uid: 35207
+ components:
+ - type: MetaData
+ name: vault high security door
+ - type: Transform
+ pos: 45.5,74.5
+ parent: 1
+- proto: HolopadAiBackupPower
+ entities:
+ - uid: 32330
+ components:
+ - type: Transform
+ pos: 57.5,24.5
+ parent: 1
+- proto: HolopadAiCore
+ entities:
+ - uid: 27388
+ components:
+ - type: Transform
+ pos: 49.5,24.5
+ parent: 1
+- proto: HolopadAiEntrance
+ entities:
+ - uid: 25726
+ components:
+ - type: Transform
+ pos: 45.5,45.5
+ parent: 1
+- proto: HolopadAiUpload
+ entities:
+ - uid: 32329
+ components:
+ - type: Transform
+ pos: 51.5,39.5
+ parent: 1
+- proto: HolopadCargoBayLongRange
+ entities:
+ - uid: 35653
+ components:
+ - type: Transform
+ pos: 151.5,107.5
+ parent: 1
+- proto: HolopadCargoBreakroom
+ entities:
+ - uid: 34167
+ components:
+ - type: Transform
+ pos: 143.5,95.5
+ parent: 1
+- proto: HolopadCargoFront
+ entities:
+ - uid: 37357
+ components:
+ - type: Transform
+ pos: 140.5,99.5
+ parent: 1
+- proto: HolopadCargoSalvageBay
+ entities:
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 150.5,92.5
+ parent: 1
+- proto: HolopadCommandBridge
+ entities:
+ - uid: 36879
+ components:
+ - type: Transform
+ pos: 36.5,51.5
+ parent: 1
+- proto: HolopadCommandBridgeLongRange
+ entities:
+ - uid: 36488
+ components:
+ - type: Transform
+ pos: 50.5,57.5
+ parent: 1
+- proto: HolopadCommandCaptain
+ entities:
+ - uid: 5736
+ components:
+ - type: Transform
+ pos: 36.5,72.5
+ parent: 1
+- proto: HolopadCommandCe
+ entities:
+ - uid: 36490
+ components:
+ - type: Transform
+ pos: 127.5,145.5
+ parent: 1
+- proto: HolopadCommandCmo
+ entities:
+ - uid: 36492
+ components:
+ - type: Transform
+ pos: 87.5,91.5
+ parent: 1
+- proto: HolopadCommandHop
+ entities:
+ - uid: 36616
+ components:
+ - type: Transform
+ pos: 58.5,56.5
+ parent: 1
+- proto: HolopadCommandHos
+ entities:
+ - uid: 36617
+ components:
+ - type: Transform
+ pos: 142.5,66.5
+ parent: 1
+- proto: HolopadCommandLounge
+ entities:
+ - uid: 36506
+ components:
+ - type: Transform
+ pos: 135.5,151.5
+ parent: 1
+- proto: HolopadCommandMeetingRoom
+ entities:
+ - uid: 23433
+ components:
+ - type: Transform
+ pos: 133.5,91.5
+ parent: 1
+- proto: HolopadCommandQm
+ entities:
+ - uid: 19985
+ components:
+ - type: Transform
+ pos: 142.5,103.5
+ parent: 1
+- proto: HolopadCommandRd
+ entities:
+ - uid: 36633
+ components:
+ - type: Transform
+ pos: 38.5,105.5
+ parent: 1
+- proto: HolopadCommandVault
+ entities:
+ - uid: 23758
+ components:
+ - type: Transform
+ pos: 47.5,74.5
+ parent: 1
+- proto: HolopadEngineeringAtmosFront
+ entities:
+ - uid: 21535
+ components:
+ - type: Transform
+ pos: 75.5,117.5
+ parent: 1
+- proto: HolopadEngineeringAtmosMain
+ entities:
+ - uid: 36661
+ components:
+ - type: Transform
+ pos: 73.5,139.5
+ parent: 1
+- proto: HolopadEngineeringAtmosTeg
+ entities:
+ - uid: 9365
+ components:
+ - type: Transform
+ pos: 88.5,139.5
+ parent: 1
+- proto: HolopadEngineeringBreakroom
+ entities:
+ - uid: 36611
+ components:
+ - type: Transform
+ pos: 128.5,135.5
+ parent: 1
+- proto: HolopadEngineeringFront
+ entities:
+ - uid: 21526
+ components:
+ - type: Transform
+ pos: 119.5,123.5
+ parent: 1
+- proto: HolopadEngineeringStorage
+ entities:
+ - uid: 36614
+ components:
+ - type: Transform
+ pos: 97.5,123.5
+ parent: 1
+- proto: HolopadEngineeringTechVault
+ entities:
+ - uid: 33740
+ components:
+ - type: Transform
+ pos: 144.5,132.5
+ parent: 1
+- proto: HolopadEngineeringTelecoms
+ entities:
+ - uid: 34099
+ components:
+ - type: Transform
+ pos: 132.5,127.5
+ parent: 1
+- proto: HolopadGeneralArcade
+ entities:
+ - uid: 33194
+ components:
+ - type: Transform
+ pos: 120.5,111.5
+ parent: 1
+- proto: HolopadGeneralArrivals
+ entities:
+ - uid: 33449
+ components:
+ - type: Transform
+ pos: 75.5,42.5
+ parent: 1
+- proto: HolopadGeneralCryosleep
+ entities:
+ - uid: 36507
+ components:
+ - type: Transform
+ pos: 149.5,142.5
+ parent: 1
+- proto: HolopadGeneralDisposals
+ entities:
+ - uid: 36610
+ components:
+ - type: Transform
+ pos: 158.5,80.5
+ parent: 1
+- proto: HolopadGeneralEvac
+ entities:
+ - uid: 8186
+ components:
+ - type: Transform
+ pos: 144.5,150.5
+ parent: 1
+- proto: HolopadGeneralEVAStorage
+ entities:
+ - uid: 32995
+ components:
+ - type: Transform
+ pos: 51.5,70.5
+ parent: 1
+- proto: HolopadGeneralTheater
+ entities:
+ - uid: 36663
+ components:
+ - type: Transform
+ pos: 106.5,69.5
+ parent: 1
+- proto: HolopadGeneralTools
+ entities:
+ - uid: 25928
+ components:
+ - type: Transform
+ pos: 90.5,59.5
+ parent: 1
+- proto: HolopadMedicalBreakroom
+ entities:
+ - uid: 9679
+ components:
+ - type: Transform
+ pos: 80.5,83.5
+ parent: 1
+- proto: HolopadMedicalChemistry
+ entities:
+ - uid: 36500
+ components:
+ - type: Transform
+ pos: 86.5,108.5
+ parent: 1
+- proto: HolopadMedicalClinic
+ entities:
+ - uid: 22775
+ components:
+ - type: Transform
+ pos: 118.5,49.5
+ parent: 1
+- proto: HolopadMedicalCryopods
+ entities:
+ - uid: 36509
+ components:
+ - type: Transform
+ pos: 74.5,91.5
+ parent: 1
+- proto: HolopadMedicalFront
+ entities:
+ - uid: 36624
+ components:
+ - type: Transform
+ pos: 74.5,103.5
+ parent: 1
+- proto: HolopadMedicalMedbay
+ entities:
+ - uid: 36625
+ components:
+ - type: Transform
+ pos: 74.5,98.5
+ parent: 1
+- proto: HolopadMedicalMorgue
+ entities:
+ - uid: 26222
+ components:
+ - type: Transform
+ pos: 61.5,83.5
+ parent: 1
+- proto: HolopadMedicalParamed
+ entities:
+ - uid: 36630
+ components:
+ - type: Transform
+ pos: 77.5,104.5
+ parent: 1
+- proto: HolopadMedicalSurgery
+ entities:
+ - uid: 36638
+ components:
+ - type: Transform
+ pos: 60.5,102.5
+ parent: 1
+- proto: HolopadScienceAnomaly
+ entities:
+ - uid: 32331
+ components:
+ - type: Transform
+ pos: 43.5,113.5
+ parent: 1
+- proto: HolopadScienceArtifact
+ entities:
+ - uid: 33450
+ components:
+ - type: Transform
+ pos: 39.5,90.5
+ parent: 1
+- proto: HolopadScienceBreakroom
+ entities:
+ - uid: 36636
+ components:
+ - type: Transform
+ pos: 25.5,102.5
+ parent: 1
+- proto: HolopadScienceFront
+ entities:
+ - uid: 30015
+ components:
+ - type: Transform
+ pos: 52.5,96.5
+ parent: 1
+- proto: HolopadScienceRnd
+ entities:
+ - uid: 19864
+ components:
+ - type: Transform
+ pos: 48.5,89.5
+ parent: 1
+- proto: HolopadScienceRobotics
+ entities:
+ - uid: 19839
+ components:
+ - type: Transform
+ pos: 62.5,93.5
+ parent: 1
+- proto: HolopadSecurityArmory
+ entities:
+ - uid: 33448
+ components:
+ - type: Transform
+ pos: 134.5,64.5
+ parent: 1
+- proto: HolopadSecurityBrig
+ entities:
+ - uid: 36489
+ components:
+ - type: Transform
+ pos: 127.5,68.5
+ parent: 1
+- proto: HolopadSecurityCourtroom
+ entities:
+ - uid: 4260
+ components:
+ - type: Transform
+ pos: 95.5,41.5
+ parent: 1
+- proto: HolopadSecurityDetective
+ entities:
+ - uid: 37456
+ components:
+ - type: Transform
+ pos: 87.5,56.5
+ parent: 1
+- proto: HolopadSecurityFront
+ entities:
+ - uid: 22777
+ components:
+ - type: Transform
+ pos: 142.5,74.5
+ parent: 1
+- proto: HolopadSecurityInterrogation
+ entities:
+ - uid: 36618
+ components:
+ - type: Transform
+ pos: 154.5,64.5
+ parent: 1
+- proto: HolopadSecurityLawyer
+ entities:
+ - uid: 33868
+ components:
+ - type: Transform
+ pos: 103.5,47.5
+ parent: 1
+- proto: HolopadSecurityPerma
+ entities:
+ - uid: 36631
+ components:
+ - type: Transform
+ pos: 131.5,46.5
+ parent: 1
+- proto: HolopadSecurityWarden
+ entities:
+ - uid: 36640
+ components:
+ - type: Transform
+ pos: 131.5,71.5
+ parent: 1
+- proto: HolopadServiceBar
+ entities:
+ - uid: 33742
+ components:
+ - type: Transform
+ pos: 108.5,113.5
+ parent: 1
+- proto: HolopadServiceBotany
+ entities:
+ - uid: 33743
+ components:
+ - type: Transform
+ pos: 97.5,97.5
+ parent: 1
+- proto: HolopadServiceBoxer
+ entities:
+ - uid: 33741
+ components:
+ - type: Transform
+ pos: 106.5,82.5
+ parent: 1
+- proto: HolopadServiceChapel
+ entities:
+ - uid: 36501
+ components:
+ - type: Transform
+ pos: 85.5,74.5
+ parent: 1
+- proto: HolopadServiceClown
+ entities:
+ - uid: 33451
+ components:
+ - type: Transform
+ pos: 106.5,57.5
+ parent: 1
+- proto: HolopadServiceJanitor
+ entities:
+ - uid: 36619
+ components:
+ - type: Transform
+ pos: 158.5,122.5
+ parent: 1
+- proto: HolopadServiceKitchen
+ entities:
+ - uid: 36620
+ components:
+ - type: Transform
+ pos: 119.5,98.5
+ parent: 1
+- proto: HolopadServiceLibrary
+ entities:
+ - uid: 36622
+ components:
+ - type: Transform
+ pos: 77.5,57.5
+ parent: 1
+- proto: HolopadServiceMime
+ entities:
+ - uid: 36626
+ components:
+ - type: Transform
+ pos: 100.5,59.5
+ parent: 1
+- proto: HolopadServiceMusician
+ entities:
+ - uid: 36628
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 1
+- proto: HolopadServiceNewsroom
+ entities:
+ - uid: 36629
+ components:
+ - type: Transform
+ pos: 144.5,124.5
+ parent: 1
+- proto: HoloprojectorSecurity
+ entities:
+ - uid: 23654
+ components:
+ - type: Transform
+ pos: 153.17197,58.748314
+ parent: 1
+- proto: HospitalCurtainsOpen
+ entities:
+ - uid: 13482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,66.5
+ parent: 1
+ - uid: 13483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,66.5
+ parent: 1
+ - uid: 13484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,66.5
+ parent: 1
+ - uid: 17698
+ components:
+ - type: Transform
+ pos: 74.5,93.5
+ parent: 1
+ - uid: 17699
+ components:
+ - type: Transform
+ pos: 75.5,93.5
+ parent: 1
+ - uid: 20889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,95.5
+ parent: 1
+ - uid: 20891
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,94.5
+ parent: 1
+ - uid: 20892
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,93.5
+ parent: 1
+ - uid: 32259
+ components:
+ - type: Transform
+ pos: 62.5,105.5
+ parent: 1
+ - uid: 32260
+ components:
+ - type: Transform
+ pos: 61.5,105.5
+ parent: 1
+ - uid: 32261
+ components:
+ - type: Transform
+ pos: 60.5,105.5
+ parent: 1
+ - uid: 35912
+ components:
+ - type: Transform
+ pos: 54.5,119.5
+ parent: 1
+ - uid: 35916
+ components:
+ - type: Transform
+ pos: 56.5,119.5
+ parent: 1
+ - uid: 35969
+ components:
+ - type: Transform
+ pos: 55.5,119.5
+ parent: 1
+ - uid: 37362
+ components:
+ - type: Transform
+ pos: 124.5,62.5
+ parent: 1
+- proto: HydroponicsToolClippers
+ entities:
+ - uid: 23066
+ components:
+ - type: Transform
+ pos: 129.3514,45.367676
+ parent: 1
+ - uid: 26658
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.484825,93.68444
+ parent: 1
+- proto: HydroponicsToolHatchet
+ entities:
+ - uid: 26661
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.46399,93.29902
+ parent: 1
+- proto: HydroponicsToolMiniHoe
+ entities:
+ - uid: 23010
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 129.56793,45.5788
+ parent: 1
+ - uid: 26660
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.52649,92.89277
+ parent: 1
+- proto: HydroponicsToolScythe
+ entities:
+ - uid: 26662
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.44316,91.83027
+ parent: 1
+- proto: HydroponicsToolSpade
+ entities:
+ - uid: 23011
+ components:
+ - type: Transform
+ pos: 129.6096,45.630882
+ parent: 1
+ - uid: 26663
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.46399,92.351105
+ parent: 1
+- proto: hydroponicsTray
+ entities:
+ - uid: 7743
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,98.5
+ parent: 1
+ - uid: 23007
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,44.5
+ parent: 1
+ - uid: 23008
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,44.5
+ parent: 1
+ - uid: 26276
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,100.5
+ parent: 1
+ - uid: 26277
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,100.5
+ parent: 1
+ - uid: 26303
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,99.5
+ parent: 1
+ - uid: 26304
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,100.5
+ parent: 1
+ - uid: 26352
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,98.5
+ parent: 1
+ - uid: 26353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,99.5
+ parent: 1
+ - uid: 26409
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,98.5
+ parent: 1
+ - uid: 26412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,98.5
+ parent: 1
+ - uid: 26414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,102.5
+ parent: 1
+ - uid: 26417
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,102.5
+ parent: 1
+ - uid: 36632
+ components:
+ - type: Transform
+ pos: 131.5,44.5
+ parent: 1
+ - uid: 36650
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,98.5
+ parent: 1
+ - uid: 36651
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,100.5
+ parent: 1
+ - uid: 36652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,100.5
+ parent: 1
+ - uid: 36653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,102.5
+ parent: 1
+ - uid: 36654
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,102.5
+ parent: 1
+- proto: IDComputerCircuitboard
+ entities:
+ - uid: 11347
+ components:
+ - type: Transform
+ pos: 141.37207,133.47998
+ parent: 1
+- proto: InflatableWall
+ entities:
+ - uid: 34084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,166.5
+ parent: 1
+- proto: IngotGold
+ entities:
+ - uid: 23385
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 47.62524,73.43181
+ parent: 1
+- proto: IngotGold1
+ entities:
+ - uid: 35774
+ components:
+ - type: Transform
+ pos: 54.814972,122.498314
+ parent: 1
+ - uid: 35775
+ components:
+ - type: Transform
+ pos: 55.50713,122.694
+ parent: 1
+ - uid: 35776
+ components:
+ - type: Transform
+ pos: 55.00341,123.60359
+ parent: 1
+- proto: IngotSilver
+ entities:
+ - uid: 23757
+ components:
+ - type: Transform
+ rot: -113.09733552923244 rad
+ pos: 47.316784,73.72452
+ parent: 1
+- proto: IngotSilver1
+ entities:
+ - uid: 35777
+ components:
+ - type: Transform
+ pos: 54.36561,122.82809
+ parent: 1
+ - uid: 35778
+ components:
+ - type: Transform
+ pos: 55.518,123.44052
+ parent: 1
+- proto: IntercomAll
+ entities:
+ - uid: 13504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 43.5,23.5
+ parent: 1
+ - uid: 13505
+ components:
+ - type: Transform
+ pos: 43.5,25.5
+ parent: 1
+ - uid: 16299
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,122.5
+ parent: 1
+ - uid: 33791
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,91.5
+ parent: 1
+- proto: IntercomCommand
+ entities:
+ - uid: 26712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,55.5
+ parent: 1
+ - uid: 35913
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,72.5
+ parent: 1
+ - uid: 36851
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,47.5
+ parent: 1
+ - uid: 36852
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,41.5
+ parent: 1
+ - uid: 36853
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,17.5
+ parent: 1
+ - uid: 36854
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,52.5
+ parent: 1
+ - uid: 36855
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,61.5
+ parent: 1
+ - uid: 36860
+ components:
+ - type: Transform
+ pos: 36.5,77.5
+ parent: 1
+ - uid: 36861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,66.5
+ parent: 1
+- proto: IntercomCommon
+ entities:
+ - uid: 22946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 128.5,46.5
+ parent: 1
+ - uid: 25506
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,50.5
+ parent: 1
+- proto: IntercomElectronics
+ entities:
+ - uid: 16300
+ components:
+ - type: Transform
+ pos: 137.58682,121.40492
+ parent: 1
+ - uid: 16301
+ components:
+ - type: Transform
+ pos: 137.75815,121.60062
+ parent: 1
+- proto: IntercomEngineering
+ entities:
+ - uid: 1378
+ components:
+ - type: Transform
+ pos: 99.5,120.5
+ parent: 1
+ - uid: 15022
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,135.5
+ parent: 1
+ - uid: 15024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,135.5
+ parent: 1
+ - uid: 15101
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,151.5
+ parent: 1
+ - uid: 16083
+ components:
+ - type: Transform
+ pos: 127.5,147.5
+ parent: 1
+ - uid: 16086
+ components:
+ - type: Transform
+ pos: 115.5,157.5
+ parent: 1
+ - uid: 16087
+ components:
+ - type: Transform
+ pos: 102.5,157.5
+ parent: 1
+ - uid: 16088
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,143.5
+ parent: 1
+ - uid: 16090
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,148.5
+ parent: 1
+ - uid: 16092
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,120.5
+ parent: 1
+ - uid: 16094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,119.5
+ parent: 1
+ - uid: 18828
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,122.5
+ parent: 1
+ - uid: 26988
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,120.5
+ parent: 1
+- proto: IntercomMedical
+ entities:
+ - uid: 477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,88.5
+ parent: 1
+ - uid: 5943
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,83.5
+ parent: 1
+ - uid: 17752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,100.5
+ parent: 1
+ - uid: 17753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 80.5,100.5
+ parent: 1
+ - uid: 17754
+ components:
+ - type: Transform
+ pos: 67.5,85.5
+ parent: 1
+ - uid: 17755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,85.5
+ parent: 1
+ - uid: 17756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,89.5
+ parent: 1
+ - uid: 17757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,96.5
+ parent: 1
+ - uid: 17759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,105.5
+ parent: 1
+ - uid: 17761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,89.5
+ parent: 1
+ - uid: 17762
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,98.5
+ parent: 1
+ - uid: 20864
+ components:
+ - type: Transform
+ pos: 36.5,95.5
+ parent: 1
+ - uid: 20865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,101.5
+ parent: 1
+ - uid: 20866
+ components:
+ - type: Transform
+ pos: 32.5,118.5
+ parent: 1
+ - uid: 20867
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,110.5
+ parent: 1
+ - uid: 20869
+ components:
+ - type: Transform
+ pos: 48.5,109.5
+ parent: 1
+ - uid: 27330
+ components:
+ - type: Transform
+ pos: 48.5,104.5
+ parent: 1
+ - uid: 28268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,109.5
+ parent: 1
+ - uid: 28717
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,48.5
+ parent: 1
+- proto: IntercomScience
+ entities:
+ - uid: 20429
+ components:
+ - type: Transform
+ pos: 36.5,102.5
+ parent: 1
+ - uid: 20430
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 36.5,105.5
+ parent: 1
+- proto: IntercomSecurity
+ entities:
+ - uid: 22940
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,65.5
+ parent: 1
+ - uid: 22941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,75.5
+ parent: 1
+ - uid: 22942
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,65.5
+ parent: 1
+ - uid: 22943
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,53.5
+ parent: 1
+ - uid: 22944
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,60.5
+ parent: 1
+ - uid: 22945
+ components:
+ - type: Transform
+ pos: 142.5,72.5
+ parent: 1
+ - uid: 25517
+ components:
+ - type: Transform
+ pos: 92.5,116.5
+ parent: 1
+- proto: IntercomService
+ entities:
+ - uid: 26517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,98.5
+ parent: 1
+ - uid: 26518
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,100.5
+ parent: 1
+ - uid: 26519
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,100.5
+ parent: 1
+ - uid: 26801
+ components:
+ - type: Transform
+ pos: 112.5,65.5
+ parent: 1
+ - uid: 26802
+ components:
+ - type: Transform
+ pos: 100.5,65.5
+ parent: 1
+- proto: IntercomSupply
+ entities:
+ - uid: 4767
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,95.5
+ parent: 1
+ - uid: 19507
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,101.5
+ parent: 1
+ - uid: 19508
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,108.5
+ parent: 1
+ - uid: 19510
+ components:
+ - type: Transform
+ pos: 147.5,101.5
+ parent: 1
+ - uid: 19511
+ components:
+ - type: Transform
+ pos: 143.5,92.5
+ parent: 1
+- proto: JanitorialTrolley
+ entities:
+ - uid: 29558
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,123.5
+ parent: 1
+- proto: JanitorServiceLight
+ entities:
+ - uid: 36813
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,90.5
+ parent: 1
+ - uid: 36824
+ components:
+ - type: Transform
+ pos: 114.5,121.5
+ parent: 1
+ - uid: 36826
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,117.5
+ parent: 1
+ - uid: 36834
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,112.5
+ parent: 1
+ - uid: 36837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,94.5
+ parent: 1
+ - uid: 36839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,66.5
+ parent: 1
+ - uid: 36844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,76.5
+ parent: 1
+ - uid: 36845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,57.5
+ parent: 1
+ - uid: 36846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,96.5
+ parent: 1
+ - uid: 36847
+ components:
+ - type: Transform
+ pos: 131.5,110.5
+ parent: 1
+- proto: JetpackMiniFilled
+ entities:
+ - uid: 329
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 53.54334,75.409134
+ parent: 1
+ - type: GasTank
+ toggleActionEntity: 19390
+ - type: Jetpack
+ toggleActionEntity: 19389
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 19389
+ - 19390
+ - uid: 19098
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 53.457726,74.76046
+ parent: 1
+ - type: GasTank
+ toggleActionEntity: 26838
+ - type: Jetpack
+ toggleActionEntity: 23342
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 23342
+ - 26838
+- proto: Joint
+ entities:
+ - uid: 18090
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 89.441414,92.74157
+ parent: 1
+- proto: Jukebox
+ entities:
+ - uid: 23788
+ components:
+ - type: Transform
+ pos: 110.5,115.5
+ parent: 1
+- proto: KitchenElectricGrill
+ entities:
+ - uid: 30410
+ components:
+ - type: Transform
+ pos: 118.5,104.5
+ parent: 1
+ - uid: 32977
+ components:
+ - type: Transform
+ pos: 120.5,99.5
+ parent: 1
+ - uid: 33625
+ components:
+ - type: Transform
+ pos: 126.5,36.5
+ parent: 1
+- proto: KitchenKnife
+ entities:
+ - uid: 34534
+ components:
+ - type: Transform
+ pos: 157.5,44.5
+ parent: 1
+- proto: KitchenMicrowave
+ entities:
+ - uid: 7107
+ components:
+ - type: Transform
+ pos: 46.5,49.5
+ parent: 1
+ - uid: 9694
+ components:
+ - type: Transform
+ pos: 115.5,101.5
+ parent: 1
+ - uid: 10574
+ components:
+ - type: Transform
+ pos: 144.5,93.5
+ parent: 1
+ - uid: 20819
+ components:
+ - type: Transform
+ pos: 25.5,99.5
+ parent: 1
+ - uid: 22848
+ components:
+ - type: Transform
+ pos: 150.5,53.5
+ parent: 1
+ - uid: 23019
+ components:
+ - type: Transform
+ pos: 128.5,48.5
+ parent: 1
+ - uid: 32220
+ components:
+ - type: Transform
+ pos: 122.5,102.5
+ parent: 1
+ - uid: 34536
+ components:
+ - type: Transform
+ pos: 161.5,42.5
+ parent: 1
+- proto: KitchenReagentGrinder
+ entities:
+ - uid: 18045
+ components:
+ - type: Transform
+ pos: 85.5,104.5
+ parent: 1
+ - uid: 20468
+ components:
+ - type: Transform
+ pos: 35.5,109.5
+ parent: 1
+ - uid: 23041
+ components:
+ - type: Transform
+ pos: 129.5,50.5
+ parent: 1
+ - uid: 26527
+ components:
+ - type: Transform
+ pos: 116.5,96.5
+ parent: 1
+ - uid: 26649
+ components:
+ - type: Transform
+ pos: 94.5,104.5
+ parent: 1
+ - uid: 30409
+ components:
+ - type: Transform
+ pos: 123.5,97.5
+ parent: 1
+ - uid: 33615
+ components:
+ - type: Transform
+ pos: 126.5,38.5
+ parent: 1
+- proto: KitchenSpike
+ entities:
+ - uid: 26896
+ components:
+ - type: Transform
+ pos: 119.5,92.5
+ parent: 1
+ - uid: 34533
+ components:
+ - type: Transform
+ pos: 155.5,42.5
+ parent: 1
+- proto: KnifePlastic
+ entities:
+ - uid: 23039
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 128.91275,50.59222
+ parent: 1
+- proto: Lamp
+ entities:
+ - uid: 13524
+ components:
+ - type: Transform
+ pos: 32.5,60.5
+ parent: 1
+ - uid: 13525
+ components:
+ - type: Transform
+ pos: 40.483433,54.34497
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 13526
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 13526
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 13709
+ components:
+ - type: Transform
+ pos: 57.50933,49.88543
+ parent: 1
+ - uid: 18098
+ components:
+ - type: Transform
+ pos: 93.505325,91.79923
+ parent: 1
+ - uid: 19358
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 137.3994,103.5578
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 26840
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 26840
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 20881
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 33.460236,105.08435
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 18796
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 18796
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 20929
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 38.36207,106.76607
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 5305
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 5305
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 23071
+ components:
+ - type: Transform
+ pos: 142.37183,67.84626
+ parent: 1
+ - uid: 25290
+ components:
+ - type: Transform
+ pos: 100.59046,35.942623
+ parent: 1
+ - uid: 26939
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 70.436455,70.761185
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 26940
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 26940
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 27182
+ components:
+ - type: Transform
+ rot: -50.265482457436725 rad
+ pos: 107.43823,48.853798
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 24287
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 24287
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 35404
+ components:
+ - type: Transform
+ pos: 76.59339,162.03687
+ parent: 1
+ - uid: 35406
+ components:
+ - type: Transform
+ pos: 80.06689,160.87488
+ parent: 1
+ - uid: 35407
+ components:
+ - type: Transform
+ pos: 73.48682,161.30302
+ parent: 1
+ - uid: 37184
+ components:
+ - type: Transform
+ pos: 168.61847,135.98645
+ parent: 1
+ - uid: 37477
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.50781,40.02996
+ parent: 1
+- proto: LampBanana
+ entities:
+ - uid: 26774
+ components:
+ - type: Transform
+ pos: 106.76655,57.143
+ parent: 1
+- proto: LampGold
+ entities:
+ - uid: 13520
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 35.52334,74.33325
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 13521
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 13521
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 13522
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 60.47457,56.997498
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 13523
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 13523
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 19385
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 142.43442,104.59371
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 19386
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 19386
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 23283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.64417,52.94574
+ parent: 1
+ - uid: 26941
+ components:
+ - type: Transform
+ pos: 72.5,76.5
+ parent: 1
+ - uid: 27184
+ components:
+ - type: Transform
+ pos: 78.44548,54.59781
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 27185
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27185
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 27186
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 80.52766,47.881866
+ parent: 1
+ - type: HandheldLight
+ toggleActionEntity: 27187
+ - type: ContainerContainer
+ containers:
+ cell_slot: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ actions: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 27187
+ - type: Physics
+ canCollide: True
+ - type: ActionsContainer
+ - uid: 30034
+ components:
+ - type: Transform
+ pos: 144.5,60.5
+ parent: 1
+ - uid: 30170
+ components:
+ - type: Transform
+ pos: 133.419,153.93555
+ parent: 1
+ - uid: 35611
+ components:
+ - type: Transform
+ pos: 70.54259,161.79822
+ parent: 1
+- proto: LampInterrogator
+ entities:
+ - uid: 22966
+ components:
+ - type: Transform
+ pos: 154.07773,63.02546
+ parent: 1
+- proto: Lantern
+ entities:
+ - uid: 27410
+ components:
+ - type: Transform
+ pos: 82.54671,72.7555
+ parent: 1
+- proto: LargeBeaker
+ entities:
+ - uid: 20472
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 30.42717,111.66254
+ parent: 1
+- proto: LeavesCannabisDried
+ entities:
+ - uid: 37181
+ components:
+ - type: Transform
+ pos: 167.7189,135.8441
+ parent: 1
+- proto: LeftArmBorg
+ entities:
+ - uid: 20951
+ components:
+ - type: Transform
+ pos: 63.2839,93.33271
+ parent: 1
+- proto: LightBulb
+ entities:
+ - uid: 23280
+ components:
+ - type: Transform
+ parent: 23279
+ - type: Physics
+ canCollide: False
+ - uid: 23282
+ components:
+ - type: Transform
+ parent: 23281
+ - type: Physics
+ canCollide: False
+- proto: LightReplacer
+ entities:
+ - uid: 33905
+ components:
+ - type: Transform
+ pos: 158.81224,128.7817
+ parent: 1
+- proto: LiveLetLiveCircuitBoard
+ entities:
+ - uid: 13263
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.361183,38.898613
+ parent: 1
+- proto: LockableButtonChiefEngineer
+ entities:
+ - uid: 13684
+ components:
+ - type: MetaData
+ name: emergency containment access lockable button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,146.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23360:
+ - Pressed: Toggle
+- proto: LockableButtonMedical
+ entities:
+ - uid: 17751
+ components:
+ - type: MetaData
+ name: exit lockable button
+ - type: Transform
+ pos: 76.5,101.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 17696:
+ - Pressed: Toggle
+ 17697:
+ - Pressed: Toggle
+- proto: LockerAtmosphericsFilled
+ entities:
+ - uid: 15991
+ components:
+ - type: Transform
+ pos: 73.5,119.5
+ parent: 1
+ - uid: 15992
+ components:
+ - type: Transform
+ pos: 74.5,119.5
+ parent: 1
+ - uid: 15993
+ components:
+ - type: Transform
+ pos: 75.5,119.5
+ parent: 1
+- proto: LockerBoozeFilled
+ entities:
+ - uid: 26546
+ components:
+ - type: Transform
+ pos: 106.5,103.5
+ parent: 1
+ - uid: 26547
+ components:
+ - type: Transform
+ pos: 106.5,104.5
+ parent: 1
+- proto: LockerBotanistFilled
+ entities:
+ - uid: 26461
+ components:
+ - type: Transform
+ pos: 98.5,90.5
+ parent: 1
+ - uid: 26462
+ components:
+ - type: Transform
+ pos: 99.5,90.5
+ parent: 1
+ - uid: 26463
+ components:
+ - type: Transform
+ pos: 100.5,90.5
+ parent: 1
+- proto: LockerCaptainFilledNoLaser
+ entities:
+ - uid: 13470
+ components:
+ - type: Transform
+ pos: 37.5,68.5
+ parent: 1
+- proto: LockerChemistryFilled
+ entities:
+ - uid: 18031
+ components:
+ - type: Transform
+ pos: 85.5,106.5
+ parent: 1
+ - uid: 18054
+ components:
+ - type: Transform
+ pos: 85.5,103.5
+ parent: 1
+- proto: LockerChiefEngineerFilled
+ entities:
+ - uid: 15397
+ components:
+ - type: Transform
+ pos: 130.5,146.5
+ parent: 1
+- proto: LockerChiefMedicalOfficerFilled
+ entities:
+ - uid: 17728
+ components:
+ - type: Transform
+ pos: 91.5,92.5
+ parent: 1
+- proto: LockerClown
+ entities:
+ - uid: 26749
+ components:
+ - type: Transform
+ pos: 108.5,56.5
+ parent: 1
+- proto: LockerDetectiveFilled
+ entities:
+ - uid: 29849
+ components:
+ - type: Transform
+ pos: 86.5,57.5
+ parent: 1
+- proto: LockerElectricalSuppliesFilled
+ entities:
+ - uid: 1248
+ components:
+ - type: Transform
+ pos: 54.5,143.5
+ parent: 1
+ - uid: 6556
+ components:
+ - type: Transform
+ pos: 163.5,54.5
+ parent: 1
+ - uid: 7217
+ components:
+ - type: Transform
+ pos: 18.5,98.5
+ parent: 1
+ - uid: 7480
+ components:
+ - type: Transform
+ pos: 87.5,48.5
+ parent: 1
+ - uid: 16065
+ components:
+ - type: Transform
+ pos: 118.5,121.5
+ parent: 1
+ - uid: 16068
+ components:
+ - type: Transform
+ pos: 120.5,144.5
+ parent: 1
+ - uid: 19477
+ components:
+ - type: Transform
+ pos: 37.5,119.5
+ parent: 1
+ - uid: 20829
+ components:
+ - type: Transform
+ pos: 122.5,158.5
+ parent: 1
+ - uid: 33477
+ components:
+ - type: Transform
+ pos: 115.5,22.5
+ parent: 1
+ - uid: 34652
+ components:
+ - type: Transform
+ pos: 144.5,44.5
+ parent: 1
+ - uid: 34653
+ components:
+ - type: Transform
+ pos: 146.5,74.5
+ parent: 1
+ - uid: 34933
+ components:
+ - type: Transform
+ pos: 72.5,82.5
+ parent: 1
+ - uid: 34964
+ components:
+ - type: Transform
+ pos: 167.5,137.5
+ parent: 1
+ - uid: 36529
+ components:
+ - type: Transform
+ pos: 27.5,69.5
+ parent: 1
+ - uid: 37049
+ components:
+ - type: Transform
+ pos: 77.5,156.5
+ parent: 1
+- proto: LockerEngineerFilled
+ entities:
+ - uid: 16076
+ components:
+ - type: Transform
+ pos: 134.5,135.5
+ parent: 1
+ - uid: 16077
+ components:
+ - type: Transform
+ pos: 134.5,134.5
+ parent: 1
+ - uid: 16078
+ components:
+ - type: Transform
+ pos: 134.5,133.5
+ parent: 1
+ - uid: 16108
+ components:
+ - type: Transform
+ pos: 133.5,135.5
+ parent: 1
+ - uid: 16109
+ components:
+ - type: Transform
+ pos: 133.5,134.5
+ parent: 1
+ - uid: 16110
+ components:
+ - type: Transform
+ pos: 133.5,133.5
+ parent: 1
+- proto: LockerEvidence
+ entities:
+ - uid: 20996
+ components:
+ - type: Transform
+ pos: 155.5,153.5
+ parent: 1
+ - uid: 22824
+ components:
+ - type: Transform
+ pos: 125.5,56.5
+ parent: 1
+ - uid: 22825
+ components:
+ - type: Transform
+ pos: 124.5,56.5
+ parent: 1
+ - uid: 22828
+ components:
+ - type: Transform
+ pos: 126.5,56.5
+ parent: 1
+ - uid: 22829
+ components:
+ - type: Transform
+ pos: 128.5,73.5
+ parent: 1
+ - uid: 22830
+ components:
+ - type: Transform
+ pos: 128.5,70.5
+ parent: 1
+ - uid: 22831
+ components:
+ - type: Transform
+ pos: 128.5,67.5
+ parent: 1
+ - uid: 22832
+ components:
+ - type: Transform
+ pos: 128.5,64.5
+ parent: 1
+ - uid: 27506
+ components:
+ - type: Transform
+ pos: 95.5,115.5
+ parent: 1
+- proto: LockerFreezer
+ entities:
+ - uid: 26448
+ components:
+ - type: Transform
+ pos: 115.5,91.5
+ parent: 1
+ - uid: 27260
+ components:
+ - type: Transform
+ pos: 115.5,103.5
+ parent: 1
+ - uid: 30121
+ components:
+ - type: Transform
+ pos: 142.5,140.5
+ parent: 1
+- proto: LockerFreezerVaultFilled
+ entities:
+ - uid: 35218
+ components:
+ - type: Transform
+ pos: 46.5,75.5
+ parent: 1
+- proto: LockerHeadOfPersonnelFilled
+ entities:
+ - uid: 13650
+ components:
+ - type: Transform
+ pos: 54.5,52.5
+ parent: 1
+- proto: LockerHeadOfSecurityFilled
+ entities:
+ - uid: 22939
+ components:
+ - type: Transform
+ pos: 143.5,62.5
+ parent: 1
+- proto: LockerMedicalFilled
+ entities:
+ - uid: 23650
+ components:
+ - type: Transform
+ pos: 68.5,83.5
+ parent: 1
+ - uid: 23651
+ components:
+ - type: Transform
+ pos: 70.5,82.5
+ parent: 1
+ - uid: 27966
+ components:
+ - type: Transform
+ pos: 68.5,82.5
+ parent: 1
+- proto: LockerMedicineFilled
+ entities:
+ - uid: 17740
+ components:
+ - type: Transform
+ pos: 70.5,90.5
+ parent: 1
+ - uid: 17833
+ components:
+ - type: Transform
+ pos: 76.5,94.5
+ parent: 1
+ - uid: 17834
+ components:
+ - type: Transform
+ pos: 73.5,100.5
+ parent: 1
+ - uid: 27605
+ components:
+ - type: Transform
+ pos: 65.5,80.5
+ parent: 1
+ - uid: 28660
+ components:
+ - type: Transform
+ pos: 113.5,51.5
+ parent: 1
+- proto: LockerMime
+ entities:
+ - uid: 26753
+ components:
+ - type: Transform
+ pos: 102.5,57.5
+ parent: 1
+- proto: LockerParamedicFilled
+ entities:
+ - uid: 17721
+ components:
+ - type: Transform
+ pos: 78.5,102.5
+ parent: 1
+- proto: LockerQuarterMasterFilled
+ entities:
+ - uid: 19377
+ components:
+ - type: Transform
+ pos: 142.5,108.5
+ parent: 1
+- proto: LockerResearchDirectorFilled
+ entities:
+ - uid: 20877
+ components:
+ - type: Transform
+ pos: 35.5,103.5
+ parent: 1
+- proto: LockerSalvageSpecialistFilledHardsuit
+ entities:
+ - uid: 19465
+ components:
+ - type: Transform
+ pos: 142.5,88.5
+ parent: 1
+ - uid: 19466
+ components:
+ - type: Transform
+ pos: 142.5,87.5
+ parent: 1
+ - uid: 19467
+ components:
+ - type: Transform
+ pos: 142.5,89.5
+ parent: 1
+- proto: LockerScienceFilled
+ entities:
+ - uid: 6030
+ components:
+ - type: Transform
+ pos: 24.5,102.5
+ parent: 1
+ - uid: 18975
+ components:
+ - type: Transform
+ pos: 36.5,117.5
+ parent: 1
+ - uid: 19307
+ components:
+ - type: Transform
+ pos: 26.5,105.5
+ parent: 1
+ - uid: 20426
+ components:
+ - type: Transform
+ pos: 27.5,105.5
+ parent: 1
+ - uid: 20821
+ components:
+ - type: Transform
+ pos: 25.5,105.5
+ parent: 1
+ - uid: 20882
+ components:
+ - type: Transform
+ pos: 36.5,116.5
+ parent: 1
+ - uid: 20983
+ components:
+ - type: Transform
+ pos: 46.5,87.5
+ parent: 1
+ - uid: 37551
+ components:
+ - type: Transform
+ pos: 24.5,103.5
+ parent: 1
+- proto: LockerSecurityFilled
+ entities:
+ - uid: 16408
+ components:
+ - type: Transform
+ pos: 156.5,149.5
+ parent: 1
+ - uid: 22669
+ components:
+ - type: Transform
+ pos: 155.5,51.5
+ parent: 1
+ - uid: 23515
+ components:
+ - type: Transform
+ pos: 94.5,112.5
+ parent: 1
+ - uid: 25416
+ components:
+ - type: Transform
+ pos: 155.5,53.5
+ parent: 1
+ - uid: 25489
+ components:
+ - type: Transform
+ pos: 155.5,52.5
+ parent: 1
+ - uid: 27846
+ components:
+ - type: Transform
+ pos: 152.5,52.5
+ parent: 1
+ - uid: 27965
+ components:
+ - type: Transform
+ pos: 152.5,51.5
+ parent: 1
+ - uid: 28895
+ components:
+ - type: Transform
+ pos: 152.5,53.5
+ parent: 1
+- proto: LockerWallMedicalFilled
+ entities:
+ - uid: 17674
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,95.5
+ parent: 1
+ - uid: 17676
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,99.5
+ parent: 1
+- proto: LockerWardenFilled
+ entities:
+ - uid: 22961
+ components:
+ - type: Transform
+ pos: 130.5,68.5
+ parent: 1
+- proto: LockerWeldingSuppliesFilled
+ entities:
+ - uid: 4534
+ components:
+ - type: Transform
+ pos: 96.5,34.5
+ parent: 1
+ - uid: 8265
+ components:
+ - type: Transform
+ pos: 29.5,76.5
+ parent: 1
+ - uid: 16067
+ components:
+ - type: Transform
+ pos: 120.5,130.5
+ parent: 1
+ - uid: 16070
+ components:
+ - type: Transform
+ pos: 98.5,121.5
+ parent: 1
+ - uid: 18712
+ components:
+ - type: Transform
+ pos: 18.5,96.5
+ parent: 1
+ - uid: 19368
+ components:
+ - type: Transform
+ pos: 118.5,122.5
+ parent: 1
+ - uid: 19413
+ components:
+ - type: Transform
+ pos: 96.5,86.5
+ parent: 1
+ - uid: 30541
+ components:
+ - type: Transform
+ pos: 151.5,85.5
+ parent: 1
+ - uid: 33478
+ components:
+ - type: Transform
+ pos: 115.5,23.5
+ parent: 1
+ - uid: 34935
+ components:
+ - type: Transform
+ pos: 134.5,113.5
+ parent: 1
+ - uid: 36134
+ components:
+ - type: Transform
+ pos: 24.5,115.5
+ parent: 1
+ - uid: 36521
+ components:
+ - type: Transform
+ pos: 141.5,129.5
+ parent: 1
+ - uid: 37041
+ components:
+ - type: Transform
+ pos: 93.5,163.5
+ parent: 1
+- proto: LogicGateOr
+ entities:
+ - uid: 15393
+ components:
+ - type: Transform
+ anchored: True
+ rot: -1.5707963267948966 rad
+ pos: 114.5,148.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15025:
+ - Output: DoorBolt
+ 15026:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 15394
+ components:
+ - type: Transform
+ anchored: True
+ rot: -4.71238898038469 rad
+ pos: 115.5,147.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15027:
+ - Output: DoorBolt
+ 15028:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 19497
+ components:
+ - type: Transform
+ anchored: True
+ pos: 154.5,91.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+ - uid: 35643
+ components:
+ - type: Transform
+ anchored: True
+ rot: 3.141592653589793 rad
+ pos: 155.5,91.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19494:
+ - Output: DoorBolt
+ 6971:
+ - Output: DoorBolt
+ - type: Physics
+ canCollide: False
+ bodyType: Static
+- proto: MachineAnomalyGenerator
+ entities:
+ - uid: 19708
+ components:
+ - type: Transform
+ pos: 43.5,115.5
+ parent: 1
+- proto: MachineAnomalyVessel
+ entities:
+ - uid: 619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,114.5
+ parent: 1
+ - uid: 19706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 40.5,114.5
+ parent: 1
+- proto: MachineAPE
+ entities:
+ - uid: 19699
+ components:
+ - type: Transform
+ pos: 40.5,110.5
+ parent: 1
+ - uid: 19702
+ components:
+ - type: Transform
+ pos: 39.5,110.5
+ parent: 1
+ - uid: 19703
+ components:
+ - type: Transform
+ pos: 38.5,110.5
+ parent: 1
+- proto: MachineArtifactAnalyzer
+ entities:
+ - uid: 19682
+ components:
+ - type: Transform
+ pos: 32.5,88.5
+ parent: 1
+ - uid: 19683
+ components:
+ - type: Transform
+ pos: 32.5,92.5
+ parent: 1
+- proto: MachineCentrifuge
+ entities:
+ - uid: 18047
+ components:
+ - type: Transform
+ pos: 85.5,101.5
+ parent: 1
+- proto: MachineElectrolysisUnit
+ entities:
+ - uid: 18046
+ components:
+ - type: Transform
+ pos: 86.5,110.5
+ parent: 1
+- proto: MachineFrame
+ entities:
+ - uid: 79
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,85.5
+ parent: 1
+ - uid: 14512
+ components:
+ - type: Transform
+ pos: 33.5,113.5
+ parent: 1
+ - uid: 19700
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,110.5
+ parent: 1
+ - uid: 20456
+ components:
+ - type: Transform
+ pos: 53.5,81.5
+ parent: 1
+ - uid: 28152
+ components:
+ - type: Transform
+ pos: 58.5,124.5
+ parent: 1
+ - uid: 30530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,150.5
+ parent: 1
+ - uid: 30563
+ components:
+ - type: Transform
+ pos: 53.5,145.5
+ parent: 1
+- proto: MachineFrameDestroyed
+ entities:
+ - uid: 14511
+ components:
+ - type: Transform
+ pos: 33.5,112.5
+ parent: 1
+- proto: MailingUnit
+ entities:
+ - uid: 6255
+ components:
+ - type: Transform
+ pos: 50.5,53.5
+ parent: 1
+ - type: MailingUnit
+ tag: Bridge
+ target: Bridge
+ - uid: 13314
+ components:
+ - type: Transform
+ pos: 124.5,101.5
+ parent: 1
+ - type: MailingUnit
+ tag: Kitchen
+ - type: Configuration
+ config:
+ tag: Kitchen
+ - uid: 16206
+ components:
+ - type: Transform
+ pos: 74.5,116.5
+ parent: 1
+ - type: MailingUnit
+ tag: Atmos
+ target: Atmos
+ - uid: 16306
+ components:
+ - type: Transform
+ pos: 120.5,125.5
+ parent: 1
+ - type: MailingUnit
+ tag: Engineering
+ target: Engineering
+ - uid: 17842
+ components:
+ - type: Transform
+ pos: 89.5,110.5
+ parent: 1
+ - type: MailingUnit
+ tag: Chemistry
+ - type: Configuration
+ config:
+ tag: Chemistry
+ - uid: 17861
+ components:
+ - type: Transform
+ pos: 72.5,85.5
+ parent: 1
+ - type: MailingUnit
+ tag: Medbay
+ - type: Configuration
+ config:
+ tag: Medbay
+ - uid: 19221
+ components:
+ - type: Transform
+ pos: 152.5,95.5
+ parent: 1
+ - type: MailingUnit
+ tag: Salvage
+ - type: Configuration
+ config:
+ tag: Salvage
+ - uid: 20455
+ components:
+ - type: Transform
+ pos: 49.5,90.5
+ parent: 1
+ - type: MailingUnit
+ tag: Science
+ - type: Configuration
+ config:
+ tag: Science
+ - uid: 20527
+ components:
+ - type: Transform
+ pos: 36.5,110.5
+ parent: 1
+ - type: MailingUnit
+ tag: Xenobio
+ - type: Configuration
+ config:
+ tag: Xenobio
+ - uid: 22278
+ components:
+ - type: Transform
+ pos: 135.5,70.5
+ parent: 1
+ - type: MailingUnit
+ tag: Warden
+ - type: Configuration
+ config:
+ tag: Warden
+ - uid: 22279
+ components:
+ - type: Transform
+ pos: 138.5,51.5
+ parent: 1
+ - type: MailingUnit
+ tag: Security
+ - type: Configuration
+ config:
+ tag: Security
+ - uid: 26239
+ components:
+ - type: Transform
+ pos: 95.5,104.5
+ parent: 1
+ - type: MailingUnit
+ tag: Botany
+ - type: Configuration
+ config:
+ tag: Botany
+ - uid: 30411
+ components:
+ - type: Transform
+ pos: 125.5,103.5
+ parent: 1
+ - type: MailingUnit
+ tag: Arcade
+ - type: Configuration
+ config:
+ tag: Arcade
+ - uid: 32927
+ components:
+ - type: Transform
+ pos: 152.5,112.5
+ parent: 1
+- proto: MaintenanceFluffSpawner
+ entities:
+ - uid: 976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,47.5
+ parent: 1
+ - uid: 33583
+ components:
+ - type: Transform
+ pos: 102.5,26.5
+ parent: 1
+ - uid: 33584
+ components:
+ - type: Transform
+ pos: 96.5,20.5
+ parent: 1
+ - uid: 33585
+ components:
+ - type: Transform
+ pos: 119.5,41.5
+ parent: 1
+ - uid: 33586
+ components:
+ - type: Transform
+ pos: 90.5,19.5
+ parent: 1
+ - uid: 33589
+ components:
+ - type: Transform
+ pos: 115.5,35.5
+ parent: 1
+ - uid: 33590
+ components:
+ - type: Transform
+ pos: 114.5,35.5
+ parent: 1
+ - uid: 33591
+ components:
+ - type: Transform
+ pos: 113.5,35.5
+ parent: 1
+ - uid: 33592
+ components:
+ - type: Transform
+ pos: 116.5,35.5
+ parent: 1
+ - uid: 33593
+ components:
+ - type: Transform
+ pos: 95.5,32.5
+ parent: 1
+ - uid: 33598
+ components:
+ - type: Transform
+ pos: 120.5,30.5
+ parent: 1
+ - uid: 35370
+ components:
+ - type: Transform
+ pos: 94.5,173.5
+ parent: 1
+ - uid: 35371
+ components:
+ - type: Transform
+ pos: 91.5,169.5
+ parent: 1
+ - uid: 35372
+ components:
+ - type: Transform
+ pos: 91.5,170.5
+ parent: 1
+ - uid: 35379
+ components:
+ - type: Transform
+ pos: 88.5,161.5
+ parent: 1
+ - uid: 35397
+ components:
+ - type: Transform
+ pos: 80.5,160.5
+ parent: 1
+ - uid: 35398
+ components:
+ - type: Transform
+ pos: 73.5,161.5
+ parent: 1
+ - uid: 35399
+ components:
+ - type: Transform
+ pos: 79.5,162.5
+ parent: 1
+ - uid: 36475
+ components:
+ - type: Transform
+ pos: 35.5,83.5
+ parent: 1
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 9400
+ components:
+ - type: Transform
+ pos: 120.5,25.5
+ parent: 1
+- proto: MaintenancePlantSpawner
+ entities:
+ - uid: 18104
+ components:
+ - type: Transform
+ pos: 87.5,39.5
+ parent: 1
+ - uid: 19346
+ components:
+ - type: Transform
+ pos: 94.5,158.5
+ parent: 1
+ - uid: 19456
+ components:
+ - type: Transform
+ pos: 161.5,112.5
+ parent: 1
+ - uid: 30543
+ components:
+ - type: Transform
+ pos: 161.5,134.5
+ parent: 1
+ - uid: 31822
+ components:
+ - type: Transform
+ pos: 152.5,76.5
+ parent: 1
+ - uid: 33568
+ components:
+ - type: Transform
+ pos: 94.5,19.5
+ parent: 1
+ - uid: 34512
+ components:
+ - type: Transform
+ pos: 153.5,43.5
+ parent: 1
+ - uid: 35373
+ components:
+ - type: Transform
+ pos: 92.5,171.5
+ parent: 1
+ - uid: 36138
+ components:
+ - type: Transform
+ pos: 31.5,120.5
+ parent: 1
+ - uid: 36460
+ components:
+ - type: Transform
+ pos: 27.5,81.5
+ parent: 1
+ - uid: 36627
+ components:
+ - type: Transform
+ pos: 71.5,48.5
+ parent: 1
+- proto: MaintenanceToolSpawner
+ entities:
+ - uid: 7112
+ components:
+ - type: Transform
+ pos: 24.5,97.5
+ parent: 1
+ - uid: 18905
+ components:
+ - type: Transform
+ pos: 82.5,155.5
+ parent: 1
+ - uid: 19459
+ components:
+ - type: Transform
+ pos: 81.5,155.5
+ parent: 1
+ - uid: 23705
+ components:
+ - type: Transform
+ pos: 69.5,158.5
+ parent: 1
+ - uid: 25181
+ components:
+ - type: Transform
+ pos: 155.5,130.5
+ parent: 1
+ - uid: 30594
+ components:
+ - type: Transform
+ pos: 27.5,73.5
+ parent: 1
+ - uid: 33573
+ components:
+ - type: Transform
+ pos: 119.5,27.5
+ parent: 1
+ - uid: 33574
+ components:
+ - type: Transform
+ pos: 117.5,27.5
+ parent: 1
+ - uid: 33575
+ components:
+ - type: Transform
+ pos: 124.5,25.5
+ parent: 1
+ - uid: 33576
+ components:
+ - type: Transform
+ pos: 124.5,26.5
+ parent: 1
+ - uid: 33577
+ components:
+ - type: Transform
+ pos: 124.5,27.5
+ parent: 1
+ - uid: 33578
+ components:
+ - type: Transform
+ pos: 124.5,28.5
+ parent: 1
+ - uid: 34037
+ components:
+ - type: Transform
+ pos: 60.5,48.5
+ parent: 1
+ - uid: 34120
+ components:
+ - type: Transform
+ pos: 24.5,113.5
+ parent: 1
+ - uid: 34337
+ components:
+ - type: Transform
+ pos: 158.5,78.5
+ parent: 1
+ - uid: 34338
+ components:
+ - type: Transform
+ pos: 159.5,78.5
+ parent: 1
+ - uid: 34620
+ components:
+ - type: Transform
+ pos: 159.5,54.5
+ parent: 1
+ - uid: 34898
+ components:
+ - type: Transform
+ pos: 121.5,94.5
+ parent: 1
+ - uid: 35369
+ components:
+ - type: Transform
+ pos: 95.5,173.5
+ parent: 1
+ - uid: 35377
+ components:
+ - type: Transform
+ pos: 90.5,161.5
+ parent: 1
+ - uid: 35378
+ components:
+ - type: Transform
+ pos: 89.5,161.5
+ parent: 1
+ - uid: 35400
+ components:
+ - type: Transform
+ pos: 79.5,160.5
+ parent: 1
+ - uid: 35402
+ components:
+ - type: Transform
+ pos: 76.5,160.5
+ parent: 1
+ - uid: 35403
+ components:
+ - type: Transform
+ pos: 73.5,160.5
+ parent: 1
+ - uid: 35438
+ components:
+ - type: Transform
+ pos: 87.5,157.5
+ parent: 1
+ - uid: 35444
+ components:
+ - type: Transform
+ pos: 74.5,159.5
+ parent: 1
+ - uid: 35621
+ components:
+ - type: Transform
+ pos: 65.5,160.5
+ parent: 1
+ - uid: 35629
+ components:
+ - type: Transform
+ pos: 57.5,154.5
+ parent: 1
+ - uid: 36170
+ components:
+ - type: Transform
+ pos: 50.5,109.5
+ parent: 1
+ - uid: 36454
+ components:
+ - type: Transform
+ pos: 62.5,45.5
+ parent: 1
+ - uid: 36470
+ components:
+ - type: Transform
+ pos: 30.5,83.5
+ parent: 1
+ - uid: 37159
+ components:
+ - type: Transform
+ pos: 154.5,114.5
+ parent: 1
+- proto: MaintenanceWeaponSpawner
+ entities:
+ - uid: 33569
+ components:
+ - type: Transform
+ pos: 102.5,18.5
+ parent: 1
+ - uid: 33570
+ components:
+ - type: Transform
+ pos: 118.5,27.5
+ parent: 1
+ - uid: 33571
+ components:
+ - type: Transform
+ pos: 126.5,35.5
+ parent: 1
+ - uid: 33572
+ components:
+ - type: Transform
+ pos: 113.5,41.5
+ parent: 1
+ - uid: 35135
+ components:
+ - type: Transform
+ pos: 23.5,110.5
+ parent: 1
+ - uid: 36459
+ components:
+ - type: Transform
+ pos: 23.5,75.5
+ parent: 1
+ - uid: 36461
+ components:
+ - type: Transform
+ pos: 22.5,75.5
+ parent: 1
+- proto: MakeshiftShield
+ entities:
+ - uid: 33555
+ components:
+ - type: Transform
+ pos: 106.4969,23.50216
+ parent: 1
+- proto: Matchbox
+ entities:
+ - uid: 33528
+ components:
+ - type: Transform
+ pos: 102.322266,28.314098
+ parent: 1
+- proto: MatchstickSpent
+ entities:
+ - uid: 33529
+ components:
+ - type: Transform
+ pos: 99.7343,26.457619
+ parent: 1
+ - uid: 33530
+ components:
+ - type: Transform
+ pos: 101.51671,25.744652
+ parent: 1
+ - uid: 33531
+ components:
+ - type: Transform
+ pos: 99.62319,28.610397
+ parent: 1
+- proto: MaterialCloth
+ entities:
+ - uid: 13656
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 58.557903,57.64333
+ parent: 1
+- proto: MaterialDurathread
+ entities:
+ - uid: 13655
+ components:
+ - type: Transform
+ pos: 56.09103,52.62849
+ parent: 1
+- proto: MatterBinStockPart
+ entities:
+ - uid: 20974
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 50.64077,91.76252
+ parent: 1
+- proto: Mattress
+ entities:
+ - uid: 33479
+ components:
+ - type: Transform
+ pos: 99.5,25.5
+ parent: 1
+ - uid: 33480
+ components:
+ - type: Transform
+ pos: 102.5,26.5
+ parent: 1
+ - uid: 33481
+ components:
+ - type: Transform
+ pos: 100.5,28.5
+ parent: 1
+ - uid: 34630
+ components:
+ - type: Transform
+ pos: 160.5,65.5
+ parent: 1
+ - uid: 34631
+ components:
+ - type: Transform
+ pos: 162.5,66.5
+ parent: 1
+ - uid: 37186
+ components:
+ - type: Transform
+ pos: 169.5,133.5
+ parent: 1
+ - uid: 37191
+ components:
+ - type: Transform
+ pos: 166.5,137.5
+ parent: 1
+- proto: MechEquipmentGrabberSmall
+ entities:
+ - uid: 19501
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 152.48033,103.53659
+ parent: 1
+- proto: MedicalBed
+ entities:
+ - uid: 17649
+ components:
+ - type: Transform
+ pos: 70.5,100.5
+ parent: 1
+ - uid: 17651
+ components:
+ - type: Transform
+ pos: 72.5,94.5
+ parent: 1
+ - uid: 17652
+ components:
+ - type: Transform
+ pos: 77.5,100.5
+ parent: 1
+ - uid: 17653
+ components:
+ - type: Transform
+ pos: 79.5,94.5
+ parent: 1
+ - uid: 17658
+ components:
+ - type: Transform
+ pos: 72.5,100.5
+ parent: 1
+ - uid: 17659
+ components:
+ - type: Transform
+ pos: 77.5,94.5
+ parent: 1
+- proto: MedicalTechFab
+ entities:
+ - uid: 27967
+ components:
+ - type: Transform
+ pos: 65.5,83.5
+ parent: 1
+- proto: MedkitAdvancedFilled
+ entities:
+ - uid: 13640
+ components:
+ - type: Transform
+ pos: 32.5,53.5
+ parent: 1
+ - uid: 18106
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 68.536476,80.38628
+ parent: 1
+- proto: MedkitBruteFilled
+ entities:
+ - uid: 17693
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 78.37616,100.58327
+ parent: 1
+ - uid: 18108
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 66.93908,80.23813
+ parent: 1
+ - uid: 19487
+ components:
+ - type: Transform
+ pos: 148.54587,98.56909
+ parent: 1
+ - uid: 26882
+ components:
+ - type: Transform
+ pos: 106.4852,78.49133
+ parent: 1
+- proto: MedkitBurnFilled
+ entities:
+ - uid: 18107
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 66.63195,80.69021
+ parent: 1
+ - uid: 18112
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 71.469055,100.46487
+ parent: 1
+- proto: MedkitCombatFilled
+ entities:
+ - uid: 17730
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 89.38194,92.55364
+ parent: 1
+- proto: MedkitFilled
+ entities:
+ - uid: 17675
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 65.50448,95.54212
+ parent: 1
+ - uid: 17694
+ components:
+ - type: Transform
+ pos: 71.53867,102.50248
+ parent: 1
+ - uid: 18223
+ components:
+ - type: Transform
+ pos: 84.57056,91.6147
+ parent: 1
+ - uid: 19435
+ components:
+ - type: Transform
+ pos: 158.44234,96.461555
+ parent: 1
+ - uid: 19488
+ components:
+ - type: Transform
+ pos: 146.45892,92.49491
+ parent: 1
+ - uid: 22958
+ components:
+ - type: Transform
+ pos: 144.5488,50.486656
+ parent: 1
+ - uid: 22973
+ components:
+ - type: Transform
+ pos: 133.51228,71.47769
+ parent: 1
+ - uid: 25931
+ components:
+ - type: Transform
+ pos: 92.5,58.5
+ parent: 1
+ - uid: 28720
+ components:
+ - type: Transform
+ pos: 120.5,47.5
+ parent: 1
+- proto: MedkitOxygenFilled
+ entities:
+ - uid: 17738
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 76.48908,102.65202
+ parent: 1
+ - uid: 18109
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 67.63078,80.259735
+ parent: 1
+ - uid: 18113
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 78.41698,94.558624
+ parent: 1
+ - uid: 19412
+ components:
+ - type: Transform
+ pos: 158.5,103.5
+ parent: 1
+- proto: MedkitRadiationFilled
+ entities:
+ - uid: 18110
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 67.336,80.650085
+ parent: 1
+ - uid: 18114
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 75.20865,97.527374
+ parent: 1
+ - uid: 30562
+ components:
+ - type: Transform
+ pos: 55.528038,148.51778
+ parent: 1
+- proto: MedkitToxinFilled
+ entities:
+ - uid: 18111
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 66.31698,80.25503
+ parent: 1
+ - uid: 18115
+ components:
+ - type: Transform
+ pos: 71.43181,94.74928
+ parent: 1
+- proto: MeteorRock
+ entities:
+ - uid: 19474
+ components:
+ - type: Transform
+ pos: 28.5,122.5
+ parent: 1
+ - uid: 30536
+ components:
+ - type: Transform
+ pos: 27.5,122.5
+ parent: 1
+ - uid: 30537
+ components:
+ - type: Transform
+ pos: 26.5,121.5
+ parent: 1
+ - uid: 30565
+ components:
+ - type: Transform
+ pos: 21.5,124.5
+ parent: 1
+ - uid: 32080
+ components:
+ - type: Transform
+ pos: 21.5,122.5
+ parent: 1
+ - uid: 32109
+ components:
+ - type: Transform
+ pos: 22.5,121.5
+ parent: 1
+ - uid: 32217
+ components:
+ - type: Transform
+ pos: 25.5,124.5
+ parent: 1
+ - uid: 32218
+ components:
+ - type: Transform
+ pos: 29.5,123.5
+ parent: 1
+- proto: MicroManipulatorStockPart
+ entities:
+ - uid: 20975
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 49.630356,86.710434
+ parent: 1
+- proto: MicrophoneInstrument
+ entities:
+ - uid: 4006
+ components:
+ - type: Transform
+ pos: 143.66885,123.61786
+ parent: 1
+- proto: Mirror
+ entities:
+ - uid: 13480
+ components:
+ - type: Transform
+ pos: 31.5,68.5
+ parent: 1
+ - uid: 13510
+ components:
+ - type: Transform
+ pos: 59.5,50.5
+ parent: 1
+- proto: MMI
+ entities:
+ - uid: 20900
+ components:
+ - type: Transform
+ pos: 63.50265,92.541046
+ parent: 1
+- proto: MonkeyCubeWrapped
+ entities:
+ - uid: 34537
+ components:
+ - type: Transform
+ pos: 159.5,42.5
+ parent: 1
+- proto: MoonBattlemap
+ entities:
+ - uid: 9666
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.6129,55.167767
+ parent: 1
+- proto: MopBucket
+ entities:
+ - uid: 29563
+ components:
+ - type: Transform
+ pos: 159.5,125.5
+ parent: 1
+ - uid: 30110
+ components:
+ - type: Transform
+ pos: 156.5,121.5
+ parent: 1
+- proto: MopBucketFull
+ entities:
+ - uid: 23027
+ components:
+ - type: Transform
+ pos: 133.5,50.5
+ parent: 1
+- proto: MopItem
+ entities:
+ - uid: 23028
+ components:
+ - type: Transform
+ pos: 133.45396,51.485043
+ parent: 1
+ - uid: 29570
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 159.45403,126.84702
+ parent: 1
+ - uid: 33460
+ components:
+ - type: Transform
+ pos: 92.5,25.5
+ parent: 1
+- proto: Morgue
+ entities:
+ - uid: 5242
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,49.5
+ parent: 1
+ - uid: 10978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,81.5
+ parent: 1
+ - uid: 15406
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,82.5
+ parent: 1
+ - uid: 17626
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,81.5
+ parent: 1
+ - uid: 17897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,84.5
+ parent: 1
+ - uid: 17943
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,85.5
+ parent: 1
+ - uid: 17954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,85.5
+ parent: 1
+ - uid: 17955
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,86.5
+ parent: 1
+ - uid: 26984
+ components:
+ - type: Transform
+ pos: 65.5,76.5
+ parent: 1
+ - uid: 26994
+ components:
+ - type: Transform
+ pos: 66.5,76.5
+ parent: 1
+ - uid: 28618
+ components:
+ - type: Transform
+ pos: 60.5,87.5
+ parent: 1
+ - uid: 28624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,84.5
+ parent: 1
+ - uid: 28805
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,80.5
+ parent: 1
+ - uid: 28806
+ components:
+ - type: Transform
+ pos: 61.5,87.5
+ parent: 1
+ - uid: 28807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,80.5
+ parent: 1
+- proto: MouseTimedSpawner
+ entities:
+ - uid: 36874
+ components:
+ - type: Transform
+ pos: 108.5,27.5
+ parent: 1
+ - uid: 36876
+ components:
+ - type: Transform
+ pos: 15.5,106.5
+ parent: 1
+ - uid: 36877
+ components:
+ - type: Transform
+ pos: 103.5,171.5
+ parent: 1
+- proto: MousetrapArmed
+ entities:
+ - uid: 33558
+ components:
+ - type: Transform
+ pos: 111.5,27.5
+ parent: 1
+- proto: Multitool
+ entities:
+ - uid: 13647
+ components:
+ - type: Transform
+ pos: 40.47588,54.95742
+ parent: 1
+- proto: NitrogenCanister
+ entities:
+ - uid: 1417
+ components:
+ - type: Transform
+ pos: 64.5,32.5
+ parent: 1
+ - uid: 3734
+ components:
+ - type: Transform
+ pos: 96.5,108.5
+ parent: 1
+ - uid: 5062
+ components:
+ - type: Transform
+ pos: 115.5,70.5
+ parent: 1
+ - uid: 12412
+ components:
+ - type: Transform
+ pos: 149.5,74.5
+ parent: 1
+ - uid: 15960
+ components:
+ - type: Transform
+ pos: 79.5,117.5
+ parent: 1
+ - uid: 15961
+ components:
+ - type: Transform
+ pos: 79.5,118.5
+ parent: 1
+ - uid: 15964
+ components:
+ - type: Transform
+ pos: 79.5,116.5
+ parent: 1
+ - uid: 16255
+ components:
+ - type: Transform
+ pos: 148.5,115.5
+ parent: 1
+ - uid: 19366
+ components:
+ - type: Transform
+ pos: 26.5,91.5
+ parent: 1
+ - uid: 20497
+ components:
+ - type: Transform
+ pos: 51.5,101.5
+ parent: 1
+ - uid: 26494
+ components:
+ - type: Transform
+ pos: 94.5,55.5
+ parent: 1
+ - uid: 26569
+ components:
+ - type: Transform
+ pos: 98.5,37.5
+ parent: 1
+ - uid: 29062
+ components:
+ - type: Transform
+ pos: 63.5,70.5
+ parent: 1
+ - uid: 32227
+ components:
+ - type: Transform
+ pos: 66.5,131.5
+ parent: 1
+ - uid: 32432
+ components:
+ - type: Transform
+ pos: 165.5,143.5
+ parent: 1
+ - uid: 32990
+ components:
+ - type: Transform
+ pos: 58.5,142.5
+ parent: 1
+ - uid: 34073
+ components:
+ - type: Transform
+ pos: 83.5,16.5
+ parent: 1
+ - uid: 34360
+ components:
+ - type: Transform
+ pos: 146.5,43.5
+ parent: 1
+ - uid: 35429
+ components:
+ - type: Transform
+ pos: 87.5,155.5
+ parent: 1
+ - uid: 35559
+ components:
+ - type: Transform
+ pos: 57.5,151.5
+ parent: 1
+ - uid: 37035
+ components:
+ - type: Transform
+ pos: 105.5,167.5
+ parent: 1
+- proto: NitrogenTankFilled
+ entities:
+ - uid: 23052
+ components:
+ - type: Transform
+ pos: 124.56251,50.67297
+ parent: 1
+- proto: NitrousOxideCanister
+ entities:
+ - uid: 15959
+ components:
+ - type: Transform
+ pos: 79.5,119.5
+ parent: 1
+- proto: NTDefaultCircuitBoard
+ entities:
+ - uid: 13264
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.611183,38.71098
+ parent: 1
+- proto: NuclearBomb
+ entities:
+ - uid: 21652
+ components:
+ - type: Transform
+ pos: 49.5,74.5
+ parent: 1
+- proto: NuclearBombKeg
+ entities:
+ - uid: 32071
+ components:
+ - type: Transform
+ pos: 107.5,61.5
+ parent: 1
+- proto: NutimovCircuitBoard
+ entities:
+ - uid: 13265
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.371597,38.47123
+ parent: 1
+- proto: Ointment
+ entities:
+ - uid: 17678
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 78.63658,100.42702
+ parent: 1
+ - uid: 17689
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 70.604324,91.61143
+ parent: 1
+- proto: OperatingTable
+ entities:
+ - uid: 5332
+ components:
+ - type: Transform
+ pos: 61.5,85.5
+ parent: 1
+ - uid: 17945
+ components:
+ - type: Transform
+ pos: 62.5,103.5
+ parent: 1
+ - uid: 17946
+ components:
+ - type: Transform
+ pos: 60.5,103.5
+ parent: 1
+- proto: OreBox
+ entities:
+ - uid: 21675
+ components:
+ - type: Transform
+ pos: 163.5,92.5
+ parent: 1
+- proto: OreProcessor
+ entities:
+ - uid: 30844
+ components:
+ - type: Transform
+ pos: 149.5,97.5
+ parent: 1
+- proto: OrganHumanEyes
+ entities:
+ - uid: 35104
+ components:
+ - type: Transform
+ pos: 162.8147,148.57959
+ parent: 1
+- proto: OxygenCanister
+ entities:
+ - uid: 227
+ components:
+ - type: Transform
+ pos: 24.5,108.5
+ parent: 1
+ - uid: 2519
+ components:
+ - type: Transform
+ pos: 64.5,70.5
+ parent: 1
+ - uid: 2974
+ components:
+ - type: Transform
+ pos: 57.5,150.5
+ parent: 1
+ - uid: 4493
+ components:
+ - type: Transform
+ pos: 96.5,106.5
+ parent: 1
+ - uid: 14743
+ components:
+ - type: Transform
+ pos: 70.5,46.5
+ parent: 1
+ - uid: 16916
+ components:
+ - type: Transform
+ pos: 102.5,164.5
+ parent: 1
+ - uid: 19048
+ components:
+ - type: Transform
+ pos: 26.5,92.5
+ parent: 1
+ - uid: 19424
+ components:
+ - type: Transform
+ pos: 56.5,137.5
+ parent: 1
+ - uid: 20495
+ components:
+ - type: Transform
+ pos: 52.5,102.5
+ parent: 1
+ - uid: 23447
+ components:
+ - type: Transform
+ pos: 67.5,127.5
+ parent: 1
+ - uid: 23493
+ components:
+ - type: Transform
+ pos: 153.5,114.5
+ parent: 1
+ - uid: 24543
+ components:
+ - type: Transform
+ pos: 63.5,26.5
+ parent: 1
+ - uid: 26584
+ components:
+ - type: Transform
+ pos: 104.5,28.5
+ parent: 1
+ - uid: 28737
+ components:
+ - type: Transform
+ pos: 49.5,100.5
+ parent: 1
+ - uid: 28753
+ components:
+ - type: Transform
+ pos: 92.5,54.5
+ parent: 1
+ - uid: 32433
+ components:
+ - type: Transform
+ pos: 162.5,149.5
+ parent: 1
+ - uid: 33979
+ components:
+ - type: Transform
+ pos: 82.5,16.5
+ parent: 1
+ - uid: 34361
+ components:
+ - type: Transform
+ pos: 145.5,43.5
+ parent: 1
+ - uid: 34745
+ components:
+ - type: Transform
+ pos: 84.5,116.5
+ parent: 1
+ - uid: 34994
+ components:
+ - type: Transform
+ pos: 84.5,117.5
+ parent: 1
+ - uid: 35427
+ components:
+ - type: Transform
+ pos: 88.5,155.5
+ parent: 1
+ - uid: 35493
+ components:
+ - type: Transform
+ pos: 84.5,118.5
+ parent: 1
+ - uid: 37219
+ components:
+ - type: Transform
+ pos: 146.5,79.5
+ parent: 1
+- proto: OxygenTankFilled
+ entities:
+ - uid: 23051
+ components:
+ - type: Transform
+ pos: 124.52084,51.54797
+ parent: 1
+- proto: PackPaperRollingFilters
+ entities:
+ - uid: 23035
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 135.68066,48.577305
+ parent: 1
+- proto: PaintingCafeTerraceAtNight
+ entities:
+ - uid: 27222
+ components:
+ - type: Transform
+ pos: 79.5,50.5
+ parent: 1
+- proto: PaintingHelloWorld
+ entities:
+ - uid: 13601
+ components:
+ - type: Transform
+ pos: 40.5,24.5
+ parent: 1
+- proto: PaintingMonkey
+ entities:
+ - uid: 26598
+ components:
+ - type: Transform
+ pos: 105.5,102.5
+ parent: 1
+- proto: PaintingNightHawks
+ entities:
+ - uid: 4202
+ components:
+ - type: Transform
+ pos: 75.5,50.5
+ parent: 1
+ - uid: 13598
+ components:
+ - type: Transform
+ pos: 31.5,71.5
+ parent: 1
+- proto: PaintingSadClown
+ entities:
+ - uid: 26746
+ components:
+ - type: Transform
+ pos: 103.5,58.5
+ parent: 1
+- proto: PaintingSkeletonCigarette
+ entities:
+ - uid: 13595
+ components:
+ - type: Transform
+ pos: 39.5,77.5
+ parent: 1
+- proto: PaintingSleepingGypsy
+ entities:
+ - uid: 13600
+ components:
+ - type: Transform
+ pos: 41.5,70.5
+ parent: 1
+- proto: PaintingTheGreatWave
+ entities:
+ - uid: 13599
+ components:
+ - type: Transform
+ pos: 34.5,69.5
+ parent: 1
+- proto: PaladinCircuitBoard
+ entities:
+ - uid: 13266
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.621597,38.210632
+ parent: 1
+- proto: Paper
+ entities:
+ - uid: 5381
+ components:
+ - type: Transform
+ pos: 130.5,112.5
+ parent: 1
+ - uid: 24541
+ components:
+ - type: Transform
+ pos: 64.165,52.573368
+ parent: 1
+- proto: PaperBin
+ entities:
+ - uid: 33509
+ components:
+ - type: Transform
+ pos: 101.5,18.5
+ parent: 1
+ - uid: 35401
+ components:
+ - type: Transform
+ pos: 77.5,160.5
+ parent: 1
+ - uid: 35624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,163.5
+ parent: 1
+- proto: PaperBin10
+ entities:
+ - uid: 19387
+ components:
+ - type: Transform
+ pos: 134.5,102.5
+ parent: 1
+- proto: PaperBin20
+ entities:
+ - uid: 1888
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,88.5
+ parent: 1
+ - uid: 4263
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,42.5
+ parent: 1
+ - uid: 12664
+ components:
+ - type: Transform
+ pos: 80.5,52.5
+ parent: 1
+ - uid: 13674
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,57.5
+ parent: 1
+ - uid: 26530
+ components:
+ - type: Transform
+ pos: 107.5,39.5
+ parent: 1
+ - uid: 27215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,47.5
+ parent: 1
+- proto: PaperBin5
+ entities:
+ - uid: 13530
+ components:
+ - type: Transform
+ pos: 35.5,74.5
+ parent: 1
+ - uid: 13536
+ components:
+ - type: Transform
+ pos: 40.5,57.5
+ parent: 1
+ - uid: 18147
+ components:
+ - type: Transform
+ pos: 63.5,110.5
+ parent: 1
+ - uid: 18188
+ components:
+ - type: Transform
+ pos: 87.5,92.5
+ parent: 1
+ - uid: 18222
+ components:
+ - type: Transform
+ pos: 77.5,105.5
+ parent: 1
+ - uid: 18879
+ components:
+ - type: Transform
+ pos: 80.5,57.5
+ parent: 1
+ - uid: 19388
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 20998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,92.5
+ parent: 1
+ - uid: 21072
+ components:
+ - type: Transform
+ pos: 40.5,106.5
+ parent: 1
+ - uid: 23070
+ components:
+ - type: Transform
+ pos: 145.5,67.5
+ parent: 1
+ - uid: 23769
+ components:
+ - type: Transform
+ pos: 62.5,61.5
+ parent: 1
+ - uid: 27040
+ components:
+ - type: Transform
+ pos: 74.5,67.5
+ parent: 1
+ - uid: 27217
+ components:
+ - type: Transform
+ pos: 79.5,47.5
+ parent: 1
+ - uid: 29715
+ components:
+ - type: Transform
+ pos: 144.5,123.5
+ parent: 1
+- proto: PaperCaptainsThoughts
+ entities:
+ - uid: 1192
+ components:
+ - type: Transform
+ pos: 35.37893,75.358116
+ parent: 1
+ - uid: 13519
+ components:
+ - type: Transform
+ pos: 35.59768,75.46228
+ parent: 1
+ - uid: 13527
+ components:
+ - type: Transform
+ pos: 35.451843,75.628944
+ parent: 1
+- proto: PaperCNCSheet
+ entities:
+ - uid: 3247
+ components:
+ - type: Transform
+ pos: 78.5,57.5
+ parent: 1
+ - uid: 27193
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 1
+ - uid: 27204
+ components:
+ - type: Transform
+ pos: 77.5,59.5
+ parent: 1
+ - uid: 27205
+ components:
+ - type: Transform
+ pos: 76.5,58.5
+ parent: 1
+- proto: PaperOffice
+ entities:
+ - uid: 35405
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 76.544464,161.3764
+ parent: 1
+- proto: ParchisBoard
+ entities:
+ - uid: 27211
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.467865,57.74674
+ parent: 1
+- proto: ParticleAcceleratorControlBoxUnfinished
+ entities:
+ - uid: 14048
+ components:
+ - type: Transform
+ pos: 107.5,150.5
+ parent: 1
+- proto: ParticleAcceleratorEmitterForeUnfinished
+ entities:
+ - uid: 14031
+ components:
+ - type: Transform
+ pos: 108.5,148.5
+ parent: 1
+- proto: ParticleAcceleratorEmitterPortUnfinished
+ entities:
+ - uid: 14030
+ components:
+ - type: Transform
+ pos: 109.5,148.5
+ parent: 1
+- proto: ParticleAcceleratorEmitterStarboardUnfinished
+ entities:
+ - uid: 14026
+ components:
+ - type: Transform
+ pos: 107.5,148.5
+ parent: 1
+- proto: ParticleAcceleratorEndCapUnfinished
+ entities:
+ - uid: 14054
+ components:
+ - type: Transform
+ pos: 108.5,151.5
+ parent: 1
+- proto: ParticleAcceleratorFuelChamberUnfinished
+ entities:
+ - uid: 14070
+ components:
+ - type: Transform
+ pos: 108.5,150.5
+ parent: 1
+- proto: ParticleAcceleratorPowerBoxUnfinished
+ entities:
+ - uid: 14071
+ components:
+ - type: Transform
+ pos: 108.5,149.5
+ parent: 1
+- proto: PartRodMetal
+ entities:
+ - uid: 6179
+ components:
+ - type: Transform
+ rot: -50.265482457436725 rad
+ pos: 148.54797,95.561005
+ parent: 1
+ - uid: 16060
+ components:
+ - type: Transform
+ pos: 136.5,135.5
+ parent: 1
+ - uid: 32036
+ components:
+ - type: Transform
+ pos: 144.41653,130.58138
+ parent: 1
+ - uid: 35636
+ components:
+ - type: Transform
+ pos: 49.5,71.5
+ parent: 1
+- proto: Pen
+ entities:
+ - uid: 13711
+ components:
+ - type: Transform
+ pos: 56.62228,52.62849
+ parent: 1
+ - uid: 13721
+ components:
+ - type: Transform
+ pos: 53.472385,61.593983
+ parent: 1
+ - uid: 23767
+ components:
+ - type: Transform
+ pos: 62.366432,61.495148
+ parent: 1
+ - uid: 23768
+ components:
+ - type: Transform
+ pos: 62.387264,61.759033
+ parent: 1
+ - uid: 27206
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 1
+- proto: PersonalAI
+ entities:
+ - uid: 2958
+ components:
+ - type: Transform
+ pos: 42.547894,45.688747
+ parent: 1
+ - uid: 4299
+ components:
+ - type: Transform
+ pos: 54.544743,23.430656
+ parent: 1
+ - uid: 21003
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 39.016388,106.5962
+ parent: 1
+ - uid: 27214
+ components:
+ - type: Transform
+ pos: 78.19574,59.10082
+ parent: 1
+- proto: PhoneInstrument
+ entities:
+ - uid: 14188
+ components:
+ - type: Transform
+ pos: 35.293808,76.11716
+ parent: 1
+- proto: PianoInstrument
+ entities:
+ - uid: 26637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,99.5
+ parent: 1
+- proto: Pickaxe
+ entities:
+ - uid: 19482
+ components:
+ - type: Transform
+ pos: 146.66238,88.5038
+ parent: 1
+ - uid: 35861
+ components:
+ - type: Transform
+ pos: 57.464184,128.54631
+ parent: 1
+- proto: PillCanisterTricordrazine
+ entities:
+ - uid: 18213
+ components:
+ - type: Transform
+ pos: 76.44742,104.162445
+ parent: 1
+ - uid: 18214
+ components:
+ - type: Transform
+ pos: 76.73908,104.39161
+ parent: 1
+- proto: PinpointerNuclear
+ entities:
+ - uid: 13614
+ components:
+ - type: Transform
+ pos: 35.5,73.5
+ parent: 1
+ - uid: 23444
+ components:
+ - type: Transform
+ pos: 47.562157,75.52082
+ parent: 1
+- proto: PlantBag
+ entities:
+ - uid: 26657
+ components:
+ - type: Transform
+ pos: 93.505905,103.57307
+ parent: 1
+- proto: PlantBGoneSpray
+ entities:
+ - uid: 2570
+ components:
+ - type: Transform
+ rot: -119.380520836412 rad
+ pos: 98.27668,96.53144
+ parent: 1
+ - uid: 26659
+ components:
+ - type: Transform
+ rot: -25.132741228718352 rad
+ pos: 101.28691,92.62194
+ parent: 1
+- proto: PlaqueAtmos
+ entities:
+ - uid: 15988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,124.5
+ parent: 1
+- proto: PlasmaCanister
+ entities:
+ - uid: 21588
+ components:
+ - type: Transform
+ pos: 80.5,116.5
+ parent: 1
+ - uid: 21589
+ components:
+ - type: Transform
+ pos: 80.5,118.5
+ parent: 1
+ - uid: 21590
+ components:
+ - type: Transform
+ pos: 80.5,117.5
+ parent: 1
+ - uid: 30795
+ components:
+ - type: Transform
+ pos: 64.5,139.5
+ parent: 1
+- proto: PlasmaReinforcedWindowDirectional
+ entities:
+ - uid: 2977
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,135.5
+ parent: 1
+ - uid: 4024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,143.5
+ parent: 1
+ - uid: 8465
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,143.5
+ parent: 1
+ - uid: 9434
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,135.5
+ parent: 1
+- proto: PlasmaWindoorSecureEngineeringLocked
+ entities:
+ - uid: 3974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,135.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9257:
+ - DoorStatus: DoorBolt
+ - uid: 9257
+ components:
+ - type: Transform
+ pos: 85.5,134.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3974:
+ - DoorStatus: DoorBolt
+ - uid: 9413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,144.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15703:
+ - DoorStatus: DoorBolt
+ - uid: 15703
+ components:
+ - type: Transform
+ pos: 85.5,143.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9413:
+ - DoorStatus: DoorBolt
+- proto: PlasticFlapsAirtightClear
+ entities:
+ - uid: 19301
+ components:
+ - type: Transform
+ pos: 163.5,106.5
+ parent: 1
+ - uid: 19302
+ components:
+ - type: Transform
+ pos: 163.5,110.5
+ parent: 1
+ - uid: 34321
+ components:
+ - type: Transform
+ pos: 160.5,84.5
+ parent: 1
+- proto: PlasticFlapsClear
+ entities:
+ - uid: 1437
+ components:
+ - type: Transform
+ pos: 152.5,101.5
+ parent: 1
+ - uid: 19303
+ components:
+ - type: Transform
+ pos: 158.5,110.5
+ parent: 1
+ - uid: 19304
+ components:
+ - type: Transform
+ pos: 158.5,106.5
+ parent: 1
+ - uid: 19323
+ components:
+ - type: Transform
+ pos: 137.5,99.5
+ parent: 1
+ - uid: 21676
+ components:
+ - type: Transform
+ pos: 148.5,97.5
+ parent: 1
+ - uid: 34322
+ components:
+ - type: Transform
+ pos: 160.5,82.5
+ parent: 1
+- proto: PlasticFlapsOpaque
+ entities:
+ - uid: 19324
+ components:
+ - type: Transform
+ pos: 141.5,112.5
+ parent: 1
+ - uid: 23371
+ components:
+ - type: Transform
+ pos: 147.5,110.5
+ parent: 1
+- proto: PlayerStationAi
+ entities:
+ - uid: 12910
+ components:
+ - type: Transform
+ pos: 43.5,24.5
+ parent: 1
+- proto: PlushieRGBee
+ entities:
+ - uid: 9265
+ components:
+ - type: Transform
+ pos: 44.5,119.5
+ parent: 1
+- proto: PortableFlasher
+ entities:
+ - uid: 6291
+ components:
+ - type: Transform
+ pos: 135.5,60.5
+ parent: 1
+ - uid: 22759
+ components:
+ - type: Transform
+ pos: 133.5,64.5
+ parent: 1
+- proto: PortableGeneratorJrPacman
+ entities:
+ - uid: 195
+ components:
+ - type: Transform
+ pos: 109.5,48.5
+ parent: 1
+ - uid: 19423
+ components:
+ - type: Transform
+ pos: 140.5,86.5
+ parent: 1
+ - uid: 19489
+ components:
+ - type: Transform
+ pos: 33.5,80.5
+ parent: 1
+ - uid: 21653
+ components:
+ - type: Transform
+ pos: 96.5,80.5
+ parent: 1
+ - uid: 30438
+ components:
+ - type: Transform
+ pos: 62.5,156.5
+ parent: 1
+ - uid: 30660
+ components:
+ - type: Transform
+ pos: 20.5,107.5
+ parent: 1
+ - uid: 33476
+ components:
+ - type: Transform
+ pos: 119.5,20.5
+ parent: 1
+ - uid: 33885
+ components:
+ - type: Transform
+ pos: 121.5,162.5
+ parent: 1
+ - uid: 34608
+ components:
+ - type: Transform
+ pos: 153.5,47.5
+ parent: 1
+ - uid: 34948
+ components:
+ - type: Transform
+ pos: 132.5,112.5
+ parent: 1
+ - uid: 35717
+ components:
+ - type: Transform
+ pos: 59.5,144.5
+ parent: 1
+ - uid: 35943
+ components:
+ - type: Transform
+ pos: 86.5,36.5
+ parent: 1
+ - uid: 36131
+ components:
+ - type: Transform
+ pos: 52.5,116.5
+ parent: 1
+- proto: PortableGeneratorPacman
+ entities:
+ - uid: 10226
+ components:
+ - type: Transform
+ pos: 57.5,25.5
+ parent: 1
+ - uid: 16040
+ components:
+ - type: Transform
+ pos: 129.5,121.5
+ parent: 1
+- proto: PortableGeneratorSuperPacman
+ entities:
+ - uid: 16041
+ components:
+ - type: Transform
+ pos: 129.5,122.5
+ parent: 1
+- proto: PortableScrubber
+ entities:
+ - uid: 3156
+ components:
+ - type: Transform
+ pos: 89.5,147.5
+ parent: 1
+ - uid: 3208
+ components:
+ - type: Transform
+ pos: 75.5,125.5
+ parent: 1
+ - uid: 3210
+ components:
+ - type: Transform
+ pos: 89.5,131.5
+ parent: 1
+ - uid: 5285
+ components:
+ - type: Transform
+ pos: 40.5,82.5
+ parent: 1
+ - uid: 15958
+ components:
+ - type: Transform
+ pos: 73.5,116.5
+ parent: 1
+ - uid: 36766
+ components:
+ - type: Transform
+ pos: 75.5,153.5
+ parent: 1
+- proto: PosterBroken
+ entities:
+ - uid: 35337
+ components:
+ - type: Transform
+ pos: 78.5,157.5
+ parent: 1
+- proto: PosterContrabandAmbrosiaVulgaris
+ entities:
+ - uid: 26819
+ components:
+ - type: Transform
+ pos: 97.5,95.5
+ parent: 1
+- proto: PosterContrabandAtmosiaDeclarationIndependence
+ entities:
+ - uid: 15945
+ components:
+ - type: Transform
+ pos: 90.5,129.5
+ parent: 1
+ - uid: 15989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,154.5
+ parent: 1
+- proto: PosterContrabandBorgFancy
+ entities:
+ - uid: 20906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,88.5
+ parent: 1
+- proto: PosterContrabandBorgFancyv2
+ entities:
+ - uid: 17628
+ components:
+ - type: Transform
+ pos: 109.5,61.5
+ parent: 1
+- proto: PosterContrabandBountyHunters
+ entities:
+ - uid: 19311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,90.5
+ parent: 1
+- proto: PosterContrabandC20r
+ entities:
+ - uid: 23103
+ components:
+ - type: Transform
+ pos: 136.5,44.5
+ parent: 1
+- proto: PosterContrabandClown
+ entities:
+ - uid: 26745
+ components:
+ - type: Transform
+ pos: 107.5,60.5
+ parent: 1
+- proto: PosterContrabandCommunistState
+ entities:
+ - uid: 19329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,113.5
+ parent: 1
+- proto: PosterContrabandDonk
+ entities:
+ - uid: 23104
+ components:
+ - type: Transform
+ pos: 125.5,49.5
+ parent: 1
+- proto: PosterContrabandDonutCorp
+ entities:
+ - uid: 36051
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,142.5
+ parent: 1
+- proto: PosterContrabandEAT
+ entities:
+ - uid: 16115
+ components:
+ - type: Transform
+ pos: 123.5,103.5
+ parent: 1
+ - uid: 18201
+ components:
+ - type: Transform
+ pos: 83.5,81.5
+ parent: 1
+ - uid: 20908
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 26.5,98.5
+ parent: 1
+ - uid: 26815
+ components:
+ - type: Transform
+ pos: 97.5,112.5
+ parent: 1
+- proto: PosterContrabandEnlistGorlex
+ entities:
+ - uid: 23105
+ components:
+ - type: Transform
+ pos: 127.5,44.5
+ parent: 1
+- proto: PosterContrabandFreeSyndicateEncryptionKey
+ entities:
+ - uid: 23106
+ components:
+ - type: Transform
+ pos: 135.5,50.5
+ parent: 1
+- proto: PosterContrabandHackingGuide
+ entities:
+ - uid: 29039
+ components:
+ - type: Transform
+ pos: 95.5,61.5
+ parent: 1
+- proto: PosterContrabandHighEffectEngineering
+ entities:
+ - uid: 14841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,148.5
+ parent: 1
+- proto: PosterContrabandKosmicheskayaStantsiya
+ entities:
+ - uid: 19543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,93.5
+ parent: 1
+ - uid: 35486
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,166.5
+ parent: 1
+- proto: PosterContrabandLamarr
+ entities:
+ - uid: 20888
+ components:
+ - type: Transform
+ pos: 34.5,106.5
+ parent: 1
+- proto: PosterContrabandMissingGloves
+ entities:
+ - uid: 13247
+ components:
+ - type: Transform
+ pos: 88.5,58.5
+ parent: 1
+- proto: PosterContrabandMoth
+ entities:
+ - uid: 1826
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 47.5,77.5
+ parent: 1
+- proto: PosterContrabandNuclearDeviceInformational
+ entities:
+ - uid: 19526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,76.5
+ parent: 1
+- proto: PosterContrabandPunchShit
+ entities:
+ - uid: 23107
+ components:
+ - type: Transform
+ pos: 122.5,69.5
+ parent: 1
+- proto: PosterContrabandPwrGame
+ entities:
+ - uid: 23125
+ components:
+ - type: Transform
+ pos: 144.5,54.5
+ parent: 1
+- proto: PosterContrabandRevolver
+ entities:
+ - uid: 24289
+ components:
+ - type: Transform
+ pos: 90.5,56.5
+ parent: 1
+- proto: PosterContrabandRise
+ entities:
+ - uid: 18404
+ components:
+ - type: Transform
+ pos: 121.5,63.5
+ parent: 1
+- proto: PosterContrabandShamblersJuice
+ entities:
+ - uid: 26813
+ components:
+ - type: Transform
+ pos: 119.5,107.5
+ parent: 1
+- proto: PosterContrabandSmoke
+ entities:
+ - uid: 14272
+ components:
+ - type: Transform
+ pos: 62.5,54.5
+ parent: 1
+- proto: PosterContrabandTools
+ entities:
+ - uid: 348
+ components:
+ - type: Transform
+ pos: 132.5,152.5
+ parent: 1
+ - uid: 35489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,149.5
+ parent: 1
+ - uid: 35862
+ components:
+ - type: Transform
+ pos: 58.5,128.5
+ parent: 1
+- proto: PosterContrabandWaffleCorp
+ entities:
+ - uid: 33556
+ components:
+ - type: Transform
+ pos: 112.5,21.5
+ parent: 1
+ - uid: 34671
+ components:
+ - type: Transform
+ pos: 161.5,67.5
+ parent: 1
+- proto: PosterContrabandWehWatches
+ entities:
+ - uid: 37582
+ components:
+ - type: Transform
+ pos: 94.5,95.5
+ parent: 1
+- proto: PosterLegit50thAnniversaryVintageReprint
+ entities:
+ - uid: 35479
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,163.5
+ parent: 1
+- proto: PosterLegitAnatomyPoster
+ entities:
+ - uid: 23485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,89.5
+ parent: 1
+ - uid: 32119
+ components:
+ - type: Transform
+ pos: 78.5,101.5
+ parent: 1
+- proto: PosterLegitBlessThisSpess
+ entities:
+ - uid: 35483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,160.5
+ parent: 1
+ - uid: 35574
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,140.5
+ parent: 1
+- proto: PosterLegitCarbonDioxide
+ entities:
+ - uid: 27370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,99.5
+ parent: 1
+- proto: PosterLegitCarpMount
+ entities:
+ - uid: 19492
+ components:
+ - type: Transform
+ pos: 145.5,90.5
+ parent: 1
+- proto: PosterLegitCleanliness
+ entities:
+ - uid: 18200
+ components:
+ - type: Transform
+ pos: 63.5,105.5
+ parent: 1
+ - uid: 29572
+ components:
+ - type: Transform
+ pos: 155.5,124.5
+ parent: 1
+- proto: PosterLegitCohibaRobustoAd
+ entities:
+ - uid: 24291
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,105.5
+ parent: 1
+ - uid: 30141
+ components:
+ - type: Transform
+ pos: 143.5,137.5
+ parent: 1
+ - uid: 35153
+ components:
+ - type: Transform
+ pos: 106.5,169.5
+ parent: 1
+- proto: PosterLegitDoNotQuestion
+ entities:
+ - uid: 33009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,161.5
+ parent: 1
+- proto: PosterLegitFoamForceAd
+ entities:
+ - uid: 19542
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,102.5
+ parent: 1
+ - uid: 37577
+ components:
+ - type: Transform
+ pos: 126.5,106.5
+ parent: 1
+- proto: PosterLegitFruitBowl
+ entities:
+ - uid: 26817
+ components:
+ - type: Transform
+ pos: 119.5,95.5
+ parent: 1
+- proto: PosterLegitHelpOthers
+ entities:
+ - uid: 3529
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,56.5
+ parent: 1
+ - uid: 18203
+ components:
+ - type: Transform
+ pos: 70.5,103.5
+ parent: 1
+- proto: PosterLegitHighClassMartini
+ entities:
+ - uid: 13676
+ components:
+ - type: Transform
+ pos: 45.5,63.5
+ parent: 1
+ - uid: 26804
+ components:
+ - type: Transform
+ pos: 113.5,61.5
+ parent: 1
+ - uid: 27219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 77.5,46.5
+ parent: 1
+ - uid: 29306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,73.5
+ parent: 1
+ - uid: 34094
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,166.5
+ parent: 1
+- proto: PosterLegitJustAWeekAway
+ entities:
+ - uid: 20909
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,109.5
+ parent: 1
+- proto: PosterLegitLoveIan
+ entities:
+ - uid: 13678
+ components:
+ - type: Transform
+ pos: 58.5,53.5
+ parent: 1
+- proto: PosterLegitMime
+ entities:
+ - uid: 26752
+ components:
+ - type: Transform
+ pos: 99.5,61.5
+ parent: 1
+- proto: PosterLegitNanomichiAd
+ entities:
+ - uid: 13677
+ components:
+ - type: Transform
+ pos: 51.5,52.5
+ parent: 1
+- proto: PosterLegitNanotrasenLogo
+ entities:
+ - uid: 13588
+ components:
+ - type: Transform
+ pos: 31.5,75.5
+ parent: 1
+- proto: PosterLegitNTTGC
+ entities:
+ - uid: 13589
+ components:
+ - type: Transform
+ pos: 38.5,69.5
+ parent: 1
+ - uid: 27097
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,57.5
+ parent: 1
+- proto: PosterLegitObey
+ entities:
+ - uid: 23108
+ components:
+ - type: Transform
+ pos: 129.5,63.5
+ parent: 1
+- proto: PosterLegitPDAAd
+ entities:
+ - uid: 13680
+ components:
+ - type: Transform
+ pos: 62.5,62.5
+ parent: 1
+ - uid: 18862
+ components:
+ - type: Transform
+ pos: 81.5,54.5
+ parent: 1
+- proto: PosterLegitPeriodicTable
+ entities:
+ - uid: 19544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,105.5
+ parent: 1
+- proto: PosterLegitRenault
+ entities:
+ - uid: 13681
+ components:
+ - type: Transform
+ pos: 35.5,77.5
+ parent: 1
+- proto: PosterLegitReportCrimes
+ entities:
+ - uid: 23109
+ components:
+ - type: Transform
+ pos: 121.5,57.5
+ parent: 1
+ - uid: 35487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,170.5
+ parent: 1
+- proto: PosterLegitSafetyInternals
+ entities:
+ - uid: 35488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,174.5
+ parent: 1
+- proto: PosterLegitSafetyMothDelam
+ entities:
+ - uid: 19546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,126.5
+ parent: 1
+- proto: PosterLegitSafetyMothEpi
+ entities:
+ - uid: 24420
+ components:
+ - type: Transform
+ pos: 71.5,93.5
+ parent: 1
+- proto: PosterLegitSafetyMothHardhat
+ entities:
+ - uid: 19547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,151.5
+ parent: 1
+ - uid: 29040
+ components:
+ - type: Transform
+ pos: 93.5,57.5
+ parent: 1
+- proto: PosterLegitSafetyMothMeth
+ entities:
+ - uid: 18202
+ components:
+ - type: Transform
+ pos: 87.5,95.5
+ parent: 1
+- proto: PosterLegitSafetyMothPiping
+ entities:
+ - uid: 19548
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,118.5
+ parent: 1
+- proto: PosterLegitSafetyMothSSD
+ entities:
+ - uid: 18205
+ components:
+ - type: Transform
+ pos: 78.5,93.5
+ parent: 1
+- proto: PosterLegitSafetyReport
+ entities:
+ - uid: 23123
+ components:
+ - type: Transform
+ pos: 146.5,61.5
+ parent: 1
+- proto: PosterLegitScience
+ entities:
+ - uid: 20463
+ components:
+ - type: Transform
+ pos: 48.5,85.5
+ parent: 1
+ - uid: 20787
+ components:
+ - type: Transform
+ pos: 37.5,114.5
+ parent: 1
+- proto: PosterLegitSecWatch
+ entities:
+ - uid: 23111
+ components:
+ - type: Transform
+ pos: 136.5,66.5
+ parent: 1
+ - uid: 27604
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,51.5
+ parent: 1
+ - uid: 30196
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,48.5
+ parent: 1
+- proto: PosterLegitSpaceCops
+ entities:
+ - uid: 23112
+ components:
+ - type: Transform
+ pos: 133.5,53.5
+ parent: 1
+ - uid: 30020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,38.5
+ parent: 1
+- proto: PosterLegitStateLaws
+ entities:
+ - uid: 20911
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,95.5
+ parent: 1
+- proto: PosterLegitTheOwl
+ entities:
+ - uid: 23124
+ components:
+ - type: Transform
+ pos: 142.5,61.5
+ parent: 1
+- proto: PosterLegitThereIsNoGasGiant
+ entities:
+ - uid: 20912
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,98.5
+ parent: 1
+- proto: PosterLegitVacation
+ entities:
+ - uid: 23126
+ components:
+ - type: Transform
+ pos: 148.5,47.5
+ parent: 1
+- proto: PosterLegitWorkForAFuture
+ entities:
+ - uid: 13682
+ components:
+ - type: Transform
+ pos: 31.5,60.5
+ parent: 1
+ - uid: 20913
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,98.5
+ parent: 1
+ - uid: 23113
+ components:
+ - type: Transform
+ pos: 124.5,75.5
+ parent: 1
+ - uid: 32081
+ components:
+ - type: Transform
+ pos: 147.5,109.5
+ parent: 1
+- proto: PosterMapDelta
+ entities:
+ - uid: 37135
+ components:
+ - type: Transform
+ pos: 164.5,150.5
+ parent: 1
+- proto: PosterMapLighthouse
+ entities:
+ - uid: 15266
+ components:
+ - type: Transform
+ pos: 43.5,119.5
+ parent: 1
+- proto: PosterMapMoose
+ entities:
+ - uid: 37136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,149.5
+ parent: 1
+- proto: PosterMapSplit
+ entities:
+ - uid: 37137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,147.5
+ parent: 1
+- proto: PosterMapWaystation
+ entities:
+ - uid: 37134
+ components:
+ - type: Transform
+ pos: 162.5,150.5
+ parent: 1
+- proto: PottedPlant0
+ entities:
+ - uid: 11002
+ components:
+ - type: Transform
+ pos: 104.5,38.5
+ parent: 1
+ - uid: 13620
+ components:
+ - type: Transform
+ pos: 53.5,54.5
+ parent: 1
+ - uid: 25164
+ components:
+ - type: Transform
+ pos: 40.5,64.5
+ parent: 1
+ - uid: 29075
+ components:
+ - type: Transform
+ pos: 61.5,52.5
+ parent: 1
+- proto: PottedPlant1
+ entities:
+ - uid: 8183
+ components:
+ - type: Transform
+ pos: 149.5,149.5
+ parent: 1
+ - uid: 20871
+ components:
+ - type: Transform
+ pos: 132.5,69.5
+ parent: 1
+ - uid: 26652
+ components:
+ - type: Transform
+ pos: 101.5,94.5
+ parent: 1
+ - uid: 26799
+ components:
+ - type: Transform
+ pos: 103.5,66.5
+ parent: 1
+- proto: PottedPlant10
+ entities:
+ - uid: 438
+ components:
+ - type: Transform
+ pos: 40.5,60.5
+ parent: 1
+ - uid: 3525
+ components:
+ - type: Transform
+ pos: 46.5,68.5
+ parent: 1
+ - uid: 4048
+ components:
+ - type: Transform
+ pos: 39.5,66.5
+ parent: 1
+ - uid: 7109
+ components:
+ - type: Transform
+ pos: 46.5,56.5
+ parent: 1
+ - uid: 13613
+ components:
+ - type: Transform
+ pos: 37.5,76.5
+ parent: 1
+ - uid: 29076
+ components:
+ - type: Transform
+ pos: 58.5,54.5
+ parent: 1
+ - uid: 33712
+ components:
+ - type: Transform
+ pos: 99.5,45.5
+ parent: 1
+- proto: PottedPlant11
+ entities:
+ - uid: 23285
+ components:
+ - type: Transform
+ pos: 126.5,98.5
+ parent: 1
+- proto: PottedPlant12
+ entities:
+ - uid: 1684
+ components:
+ - type: Transform
+ pos: 80.5,60.5
+ parent: 1
+ - uid: 26654
+ components:
+ - type: Transform
+ pos: 104.5,102.5
+ parent: 1
+ - uid: 27226
+ components:
+ - type: Transform
+ pos: 82.5,60.5
+ parent: 1
+- proto: PottedPlant13
+ entities:
+ - uid: 13638
+ components:
+ - type: Transform
+ pos: 50.5,66.5
+ parent: 1
+ - uid: 13706
+ components:
+ - type: Transform
+ pos: 58.5,52.5
+ parent: 1
+ - uid: 18740
+ components:
+ - type: Transform
+ pos: 90.5,45.5
+ parent: 1
+ - uid: 26322
+ components:
+ - type: Transform
+ pos: 138.5,123.5
+ parent: 1
+ - uid: 33783
+ components:
+ - type: Transform
+ pos: 32.5,51.5
+ parent: 1
+- proto: PottedPlant14
+ entities:
+ - uid: 13495
+ components:
+ - type: Transform
+ pos: 40.5,52.5
+ parent: 1
+ - uid: 13497
+ components:
+ - type: Transform
+ pos: 46.5,60.5
+ parent: 1
+ - uid: 13615
+ components:
+ - type: Transform
+ pos: 32.5,72.5
+ parent: 1
+ - uid: 13618
+ components:
+ - type: Transform
+ pos: 44.5,76.5
+ parent: 1
+- proto: PottedPlant16
+ entities:
+ - uid: 446
+ components:
+ - type: Transform
+ pos: 40.5,56.5
+ parent: 1
+ - uid: 1975
+ components:
+ - type: Transform
+ pos: 58.5,59.5
+ parent: 1
+ - uid: 3526
+ components:
+ - type: Transform
+ pos: 53.5,72.5
+ parent: 1
+- proto: PottedPlant17
+ entities:
+ - uid: 27227
+ components:
+ - type: Transform
+ pos: 74.5,54.5
+ parent: 1
+- proto: PottedPlant18
+ entities:
+ - uid: 26704
+ components:
+ - type: Transform
+ pos: 102.5,106.5
+ parent: 1
+ - uid: 27039
+ components:
+ - type: Transform
+ pos: 77.5,67.5
+ parent: 1
+ - uid: 27042
+ components:
+ - type: Transform
+ pos: 83.5,78.5
+ parent: 1
+- proto: PottedPlant19
+ entities:
+ - uid: 5025
+ components:
+ - type: Transform
+ pos: 46.5,62.5
+ parent: 1
+ - uid: 23073
+ components:
+ - type: Transform
+ pos: 40.5,48.5
+ parent: 1
+ - uid: 37497
+ components:
+ - type: Transform
+ pos: 103.5,48.5
+ parent: 1
+- proto: PottedPlant2
+ entities:
+ - uid: 26650
+ components:
+ - type: Transform
+ pos: 101.5,90.5
+ parent: 1
+ - uid: 26800
+ components:
+ - type: Transform
+ pos: 109.5,66.5
+ parent: 1
+- proto: PottedPlant21
+ entities:
+ - uid: 19335
+ components:
+ - type: Transform
+ pos: 140.5,107.5
+ parent: 1
+ - uid: 26703
+ components:
+ - type: Transform
+ pos: 114.5,106.5
+ parent: 1
+ - uid: 27038
+ components:
+ - type: Transform
+ pos: 66.5,72.5
+ parent: 1
+ - uid: 27041
+ components:
+ - type: Transform
+ pos: 68.5,76.5
+ parent: 1
+ - uid: 27044
+ components:
+ - type: Transform
+ pos: 90.5,77.5
+ parent: 1
+- proto: PottedPlant22
+ entities:
+ - uid: 4259
+ components:
+ - type: Transform
+ pos: 90.5,39.5
+ parent: 1
+ - uid: 19336
+ components:
+ - type: Transform
+ pos: 145.5,102.5
+ parent: 1
+- proto: PottedPlant23
+ entities:
+ - uid: 26655
+ components:
+ - type: Transform
+ pos: 111.5,96.5
+ parent: 1
+- proto: PottedPlant24
+ entities:
+ - uid: 2633
+ components:
+ - type: Transform
+ pos: 70.5,56.5
+ parent: 1
+ - uid: 23498
+ components:
+ - type: Transform
+ pos: 80.5,55.5
+ parent: 1
+- proto: PottedPlant26
+ entities:
+ - uid: 8185
+ components:
+ - type: Transform
+ pos: 138.5,148.5
+ parent: 1
+ - uid: 26651
+ components:
+ - type: Transform
+ pos: 96.5,96.5
+ parent: 1
+- proto: PottedPlant27
+ entities:
+ - uid: 16099
+ components:
+ - type: Transform
+ pos: 136.5,136.5
+ parent: 1
+ - uid: 16114
+ components:
+ - type: Transform
+ pos: 101.5,125.5
+ parent: 1
+ - uid: 18095
+ components:
+ - type: Transform
+ pos: 73.5,94.5
+ parent: 1
+ - uid: 27077
+ components:
+ - type: Transform
+ pos: 110.5,85.5
+ parent: 1
+ - uid: 28726
+ components:
+ - type: Transform
+ pos: 120.5,51.5
+ parent: 1
+- proto: PottedPlant28
+ entities:
+ - uid: 16102
+ components:
+ - type: Transform
+ pos: 134.5,131.5
+ parent: 1
+ - uid: 16104
+ components:
+ - type: Transform
+ pos: 125.5,142.5
+ parent: 1
+ - uid: 17709
+ components:
+ - type: Transform
+ pos: 65.5,97.5
+ parent: 1
+- proto: PottedPlant29
+ entities:
+ - uid: 13885
+ components:
+ - type: Transform
+ pos: 73.5,121.5
+ parent: 1
+ - uid: 18087
+ components:
+ - type: Transform
+ pos: 89.5,94.5
+ parent: 1
+- proto: PottedPlant30
+ entities:
+ - uid: 15997
+ components:
+ - type: Transform
+ pos: 77.5,119.5
+ parent: 1
+ - uid: 16113
+ components:
+ - type: Transform
+ pos: 115.5,125.5
+ parent: 1
+ - uid: 18091
+ components:
+ - type: Transform
+ pos: 89.5,90.5
+ parent: 1
+ - uid: 18230
+ components:
+ - type: Transform
+ pos: 81.5,92.5
+ parent: 1
+ - uid: 27076
+ components:
+ - type: Transform
+ pos: 102.5,79.5
+ parent: 1
+ - uid: 27404
+ components:
+ - type: Transform
+ pos: 116.5,80.5
+ parent: 1
+ - uid: 28725
+ components:
+ - type: Transform
+ pos: 113.5,47.5
+ parent: 1
+ - uid: 37550
+ components:
+ - type: Transform
+ pos: 125.5,139.5
+ parent: 1
+- proto: PottedPlant4
+ entities:
+ - uid: 26653
+ components:
+ - type: Transform
+ pos: 101.5,104.5
+ parent: 1
+- proto: PottedPlant5
+ entities:
+ - uid: 30440
+ components:
+ - type: Transform
+ pos: 152.5,153.5
+ parent: 1
+- proto: PottedPlant6
+ entities:
+ - uid: 4540
+ components:
+ - type: Transform
+ pos: 99.5,39.5
+ parent: 1
+- proto: PottedPlantBioluminscent
+ entities:
+ - uid: 18055
+ components:
+ - type: Transform
+ pos: 86.5,106.5
+ parent: 1
+ - uid: 23148
+ components:
+ - type: Transform
+ pos: 145.5,64.5
+ parent: 1
+- proto: PottedPlantRandom
+ entities:
+ - uid: 24388
+ components:
+ - type: Transform
+ pos: 111.5,70.5
+ parent: 1
+ - uid: 24390
+ components:
+ - type: Transform
+ pos: 101.5,70.5
+ parent: 1
+ - uid: 26861
+ components:
+ - type: Transform
+ pos: 103.5,94.5
+ parent: 1
+ - uid: 26862
+ components:
+ - type: Transform
+ pos: 106.5,89.5
+ parent: 1
+ - uid: 26863
+ components:
+ - type: Transform
+ pos: 98.5,82.5
+ parent: 1
+ - uid: 26864
+ components:
+ - type: Transform
+ pos: 114.5,84.5
+ parent: 1
+- proto: PottedPlantRandomPlastic
+ entities:
+ - uid: 18128
+ components:
+ - type: Transform
+ pos: 65.5,86.5
+ parent: 1
+ - uid: 18129
+ components:
+ - type: Transform
+ pos: 72.5,88.5
+ parent: 1
+ - uid: 18130
+ components:
+ - type: Transform
+ pos: 77.5,88.5
+ parent: 1
+ - uid: 18131
+ components:
+ - type: Transform
+ pos: 84.5,86.5
+ parent: 1
+ - uid: 18132
+ components:
+ - type: Transform
+ pos: 73.5,92.5
+ parent: 1
+ - uid: 18133
+ components:
+ - type: Transform
+ pos: 69.5,106.5
+ parent: 1
+ - uid: 18134
+ components:
+ - type: Transform
+ pos: 80.5,106.5
+ parent: 1
+ - uid: 18153
+ components:
+ - type: Transform
+ pos: 59.5,106.5
+ parent: 1
+- proto: PottedPlantRD
+ entities:
+ - uid: 5696
+ components:
+ - type: Transform
+ pos: 38.5,108.5
+ parent: 1
+- proto: PowerCellRecharger
+ entities:
+ - uid: 13545
+ components:
+ - type: Transform
+ pos: 54.5,22.5
+ parent: 1
+ - uid: 13644
+ components:
+ - type: Transform
+ pos: 33.5,64.5
+ parent: 1
+ - uid: 16143
+ components:
+ - type: Transform
+ pos: 132.5,131.5
+ parent: 1
+ - uid: 16144
+ components:
+ - type: Transform
+ pos: 125.5,144.5
+ parent: 1
+ - uid: 16161
+ components:
+ - type: Transform
+ pos: 119.5,125.5
+ parent: 1
+ - uid: 18116
+ components:
+ - type: Transform
+ pos: 76.5,97.5
+ parent: 1
+ - uid: 18117
+ components:
+ - type: Transform
+ pos: 73.5,97.5
+ parent: 1
+ - uid: 19436
+ components:
+ - type: Transform
+ pos: 157.5,96.5
+ parent: 1
+ - uid: 19437
+ components:
+ - type: Transform
+ pos: 140.5,104.5
+ parent: 1
+ - uid: 19438
+ components:
+ - type: Transform
+ pos: 134.5,105.5
+ parent: 1
+ - uid: 20480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,113.5
+ parent: 1
+ - uid: 20482
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,112.5
+ parent: 1
+ - uid: 20485
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,91.5
+ parent: 1
+ - uid: 20487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,84.5
+ parent: 1
+ - uid: 20872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,121.5
+ parent: 1
+ - uid: 20965
+ components:
+ - type: Transform
+ pos: 62.5,97.5
+ parent: 1
+ - uid: 23677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,162.5
+ parent: 1
+ - uid: 27750
+ components:
+ - type: Transform
+ pos: 46.5,102.5
+ parent: 1
+ - uid: 29585
+ components:
+ - type: Transform
+ pos: 159.5,128.5
+ parent: 1
+ - uid: 32041
+ components:
+ - type: Transform
+ pos: 143.5,132.5
+ parent: 1
+- proto: PowerDrill
+ entities:
+ - uid: 20885
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 39.905277,106.66724
+ parent: 1
+- proto: PoweredDimSmallLight
+ entities:
+ - uid: 9788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,116.5
+ parent: 1
+ - uid: 10603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,112.5
+ parent: 1
+ - uid: 18580
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,110.5
+ parent: 1
+ - uid: 22898
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,62.5
+ parent: 1
+ - uid: 22994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,43.5
+ parent: 1
+ - uid: 32123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,76.5
+ parent: 1
+ - uid: 34223
+ components:
+ - type: Transform
+ pos: 156.5,44.5
+ parent: 1
+ - uid: 34640
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,64.5
+ parent: 1
+ - uid: 35173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,167.5
+ parent: 1
+ - uid: 35413
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 35416
+ components:
+ - type: Transform
+ pos: 76.5,162.5
+ parent: 1
+ - uid: 35417
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,161.5
+ parent: 1
+ - uid: 35610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,162.5
+ parent: 1
+ - uid: 36055
+ components:
+ - type: Transform
+ pos: 40.5,126.5
+ parent: 1
+ - uid: 36059
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,123.5
+ parent: 1
+ - uid: 36418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,123.5
+ parent: 1
+ - uid: 36522
+ components:
+ - type: Transform
+ pos: 23.5,76.5
+ parent: 1
+- proto: Poweredlight
+ entities:
+ - uid: 70
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,98.5
+ parent: 1
+ - uid: 514
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,92.5
+ parent: 1
+ - uid: 895
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,141.5
+ parent: 1
+ - uid: 1093
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,38.5
+ parent: 1
+ - uid: 1139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,70.5
+ parent: 1
+ - uid: 2351
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,66.5
+ parent: 1
+ - uid: 2489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,75.5
+ parent: 1
+ - uid: 2721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,137.5
+ parent: 1
+ - uid: 3197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,133.5
+ parent: 1
+ - uid: 3703
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,114.5
+ parent: 1
+ - uid: 3777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,114.5
+ parent: 1
+ - uid: 3987
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,108.5
+ parent: 1
+ - uid: 4050
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,50.5
+ parent: 1
+ - uid: 4139
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 49.5,88.5
+ parent: 1
+ - uid: 4342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,75.5
+ parent: 1
+ - uid: 4401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,72.5
+ parent: 1
+ - uid: 4748
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,112.5
+ parent: 1
+ - uid: 5046
+ components:
+ - type: Transform
+ pos: 90.5,61.5
+ parent: 1
+ - uid: 5171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,89.5
+ parent: 1
+ - uid: 5348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,95.5
+ parent: 1
+ - uid: 5610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,103.5
+ parent: 1
+ - uid: 6135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,52.5
+ parent: 1
+ - uid: 6193
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,50.5
+ parent: 1
+ - uid: 7739
+ components:
+ - type: Transform
+ pos: 123.5,119.5
+ parent: 1
+ - uid: 9122
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,154.5
+ parent: 1
+ - uid: 9381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,135.5
+ parent: 1
+ - uid: 9407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,125.5
+ parent: 1
+ - uid: 9408
+ components:
+ - type: Transform
+ pos: 74.5,153.5
+ parent: 1
+ - uid: 9409
+ components:
+ - type: Transform
+ pos: 83.5,153.5
+ parent: 1
+ - uid: 9410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,150.5
+ parent: 1
+ - uid: 9411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,128.5
+ parent: 1
+ - uid: 9412
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,125.5
+ parent: 1
+ - uid: 9415
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,141.5
+ parent: 1
+ - uid: 9416
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,137.5
+ parent: 1
+ - uid: 9443
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,141.5
+ parent: 1
+ - uid: 9444
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,137.5
+ parent: 1
+ - uid: 9445
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,137.5
+ parent: 1
+ - uid: 9447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,137.5
+ parent: 1
+ - uid: 9652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,64.5
+ parent: 1
+ - uid: 9653
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,60.5
+ parent: 1
+ - uid: 9654
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,60.5
+ parent: 1
+ - uid: 9655
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,56.5
+ parent: 1
+ - uid: 9657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,64.5
+ parent: 1
+ - uid: 11044
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,117.5
+ parent: 1
+ - uid: 11524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,57.5
+ parent: 1
+ - uid: 11525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,48.5
+ parent: 1
+ - uid: 11526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,52.5
+ parent: 1
+ - uid: 11527
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,72.5
+ parent: 1
+ - uid: 11528
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,56.5
+ parent: 1
+ - uid: 11529
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,76.5
+ parent: 1
+ - uid: 11530
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,68.5
+ parent: 1
+ - uid: 11531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,57.5
+ parent: 1
+ - uid: 11537
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,64.5
+ parent: 1
+ - uid: 11538
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,72.5
+ parent: 1
+ - uid: 11540
+ components:
+ - type: Transform
+ pos: 153.5,112.5
+ parent: 1
+ - uid: 11541
+ components:
+ - type: Transform
+ pos: 36.5,76.5
+ parent: 1
+ - uid: 11868
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,102.5
+ parent: 1
+ - uid: 12405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,91.5
+ parent: 1
+ - uid: 12691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,56.5
+ parent: 1
+ - uid: 12949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,19.5
+ parent: 1
+ - uid: 12950
+ components:
+ - type: Transform
+ pos: 49.5,42.5
+ parent: 1
+ - uid: 12951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,37.5
+ parent: 1
+ - uid: 12952
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,20.5
+ parent: 1
+ - uid: 12953
+ components:
+ - type: Transform
+ pos: 42.5,28.5
+ parent: 1
+ - uid: 12954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,17.5
+ parent: 1
+ - uid: 12955
+ components:
+ - type: Transform
+ pos: 48.5,31.5
+ parent: 1
+ - uid: 12956
+ components:
+ - type: Transform
+ pos: 55.5,29.5
+ parent: 1
+ - uid: 13512
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,60.5
+ parent: 1
+ - uid: 13804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,71.5
+ parent: 1
+ - uid: 13805
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,75.5
+ parent: 1
+ - uid: 13807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,74.5
+ parent: 1
+ - uid: 13839
+ components:
+ - type: Transform
+ pos: 105.5,115.5
+ parent: 1
+ - uid: 14283
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,129.5
+ parent: 1
+ - uid: 14298
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,129.5
+ parent: 1
+ - uid: 14299
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,135.5
+ parent: 1
+ - uid: 14300
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,139.5
+ parent: 1
+ - uid: 14302
+ components:
+ - type: Transform
+ pos: 110.5,145.5
+ parent: 1
+ - uid: 14303
+ components:
+ - type: Transform
+ pos: 106.5,145.5
+ parent: 1
+ - uid: 14304
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,139.5
+ parent: 1
+ - uid: 14305
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,135.5
+ parent: 1
+ - uid: 14312
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,154.5
+ parent: 1
+ - uid: 14359
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,146.5
+ parent: 1
+ - uid: 14449
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,146.5
+ parent: 1
+ - uid: 14848
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,147.5
+ parent: 1
+ - uid: 14945
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,129.5
+ parent: 1
+ - uid: 14946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,154.5
+ parent: 1
+ - uid: 14947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,129.5
+ parent: 1
+ - uid: 14948
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,121.5
+ parent: 1
+ - uid: 14949
+ components:
+ - type: Transform
+ pos: 116.5,125.5
+ parent: 1
+ - uid: 14950
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,124.5
+ parent: 1
+ - uid: 14951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,124.5
+ parent: 1
+ - uid: 14952
+ components:
+ - type: Transform
+ pos: 100.5,125.5
+ parent: 1
+ - uid: 14953
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,137.5
+ parent: 1
+ - uid: 14954
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,141.5
+ parent: 1
+ - uid: 14957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,160.5
+ parent: 1
+ - uid: 14960
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,160.5
+ parent: 1
+ - uid: 14961
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,154.5
+ parent: 1
+ - uid: 14962
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,160.5
+ parent: 1
+ - uid: 14963
+ components:
+ - type: Transform
+ pos: 118.5,156.5
+ parent: 1
+ - uid: 14964
+ components:
+ - type: Transform
+ pos: 98.5,156.5
+ parent: 1
+ - uid: 14965
+ components:
+ - type: Transform
+ pos: 116.5,152.5
+ parent: 1
+ - uid: 14966
+ components:
+ - type: Transform
+ pos: 106.5,125.5
+ parent: 1
+ - uid: 14968
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,150.5
+ parent: 1
+ - uid: 14969
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,150.5
+ parent: 1
+ - uid: 14970
+ components:
+ - type: Transform
+ pos: 110.5,125.5
+ parent: 1
+ - uid: 14974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,121.5
+ parent: 1
+ - uid: 14975
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,133.5
+ parent: 1
+ - uid: 14978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,131.5
+ parent: 1
+ - uid: 14979
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,140.5
+ parent: 1
+ - uid: 14981
+ components:
+ - type: Transform
+ pos: 131.5,146.5
+ parent: 1
+ - uid: 15931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,117.5
+ parent: 1
+ - uid: 15932
+ components:
+ - type: Transform
+ pos: 83.5,123.5
+ parent: 1
+ - uid: 15934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,116.5
+ parent: 1
+ - uid: 16103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,144.5
+ parent: 1
+ - uid: 16130
+ components:
+ - type: Transform
+ pos: 75.5,119.5
+ parent: 1
+ - uid: 16407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,99.5
+ parent: 1
+ - uid: 16827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,43.5
+ parent: 1
+ - uid: 17226
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 1
+ - uid: 17616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,91.5
+ parent: 1
+ - uid: 17617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,94.5
+ parent: 1
+ - uid: 17618
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,94.5
+ parent: 1
+ - uid: 17619
+ components:
+ - type: Transform
+ pos: 78.5,100.5
+ parent: 1
+ - uid: 17620
+ components:
+ - type: Transform
+ pos: 71.5,100.5
+ parent: 1
+ - uid: 17621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,91.5
+ parent: 1
+ - uid: 17622
+ components:
+ - type: Transform
+ pos: 83.5,104.5
+ parent: 1
+ - uid: 17623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,88.5
+ parent: 1
+ - uid: 17624
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,88.5
+ parent: 1
+ - uid: 17630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,89.5
+ parent: 1
+ - uid: 17631
+ components:
+ - type: Transform
+ pos: 61.5,97.5
+ parent: 1
+ - uid: 17635
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,92.5
+ parent: 1
+ - uid: 17636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,92.5
+ parent: 1
+ - uid: 17637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,97.5
+ parent: 1
+ - uid: 17639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,99.5
+ parent: 1
+ - uid: 17640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,96.5
+ parent: 1
+ - uid: 17642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,108.5
+ parent: 1
+ - uid: 17644
+ components:
+ - type: Transform
+ pos: 72.5,88.5
+ parent: 1
+ - uid: 17645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,102.5
+ parent: 1
+ - uid: 17646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,102.5
+ parent: 1
+ - uid: 17680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,110.5
+ parent: 1
+ - uid: 17681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,110.5
+ parent: 1
+ - uid: 17682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,106.5
+ parent: 1
+ - uid: 17683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,109.5
+ parent: 1
+ - uid: 17684
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,109.5
+ parent: 1
+ - uid: 17685
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,106.5
+ parent: 1
+ - uid: 17789
+ components:
+ - type: Transform
+ pos: 77.5,88.5
+ parent: 1
+ - uid: 17790
+ components:
+ - type: Transform
+ pos: 65.5,104.5
+ parent: 1
+ - uid: 17961
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,103.5
+ parent: 1
+ - uid: 17962
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,99.5
+ parent: 1
+ - uid: 17969
+ components:
+ - type: Transform
+ pos: 88.5,104.5
+ parent: 1
+ - uid: 18424
+ components:
+ - type: Transform
+ pos: 147.5,100.5
+ parent: 1
+ - uid: 18425
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,96.5
+ parent: 1
+ - uid: 18430
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 152.5,92.5
+ parent: 1
+ - uid: 18432
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,102.5
+ parent: 1
+ - uid: 18433
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,89.5
+ parent: 1
+ - uid: 18434
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,106.5
+ parent: 1
+ - uid: 18435
+ components:
+ - type: Transform
+ pos: 135.5,107.5
+ parent: 1
+ - uid: 18436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,107.5
+ parent: 1
+ - uid: 18437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,99.5
+ parent: 1
+ - uid: 18438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,98.5
+ parent: 1
+ - uid: 18441
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,106.5
+ parent: 1
+ - uid: 18442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,102.5
+ parent: 1
+ - uid: 18443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,108.5
+ parent: 1
+ - uid: 18543
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,121.5
+ parent: 1
+ - uid: 18582
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,106.5
+ parent: 1
+ - uid: 19264
+ components:
+ - type: Transform
+ pos: 23.5,82.5
+ parent: 1
+ - uid: 19328
+ components:
+ - type: Transform
+ pos: 111.5,115.5
+ parent: 1
+ - uid: 19331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,96.5
+ parent: 1
+ - uid: 19371
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,106.5
+ parent: 1
+ - uid: 19397
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,39.5
+ parent: 1
+ - uid: 19476
+ components:
+ - type: Transform
+ pos: 142.5,100.5
+ parent: 1
+ - uid: 19500
+ components:
+ - type: Transform
+ pos: 48.5,97.5
+ parent: 1
+ - uid: 19513
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,147.5
+ parent: 1
+ - uid: 20441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,102.5
+ parent: 1
+ - uid: 20752
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,102.5
+ parent: 1
+ - uid: 20763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,86.5
+ parent: 1
+ - uid: 20764
+ components:
+ - type: Transform
+ pos: 32.5,94.5
+ parent: 1
+ - uid: 20765
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,90.5
+ parent: 1
+ - uid: 20766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,94.5
+ parent: 1
+ - uid: 20767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,86.5
+ parent: 1
+ - uid: 20769
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,82.5
+ parent: 1
+ - uid: 20771
+ components:
+ - type: Transform
+ pos: 49.5,84.5
+ parent: 1
+ - uid: 20773
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,89.5
+ parent: 1
+ - uid: 20774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,94.5
+ parent: 1
+ - uid: 20777
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,98.5
+ parent: 1
+ - uid: 20778
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,85.5
+ parent: 1
+ - uid: 20781
+ components:
+ - type: Transform
+ pos: 52.5,103.5
+ parent: 1
+ - uid: 20783
+ components:
+ - type: Transform
+ pos: 43.5,109.5
+ parent: 1
+ - uid: 20784
+ components:
+ - type: Transform
+ pos: 46.5,114.5
+ parent: 1
+ - uid: 20785
+ components:
+ - type: Transform
+ pos: 40.5,114.5
+ parent: 1
+ - uid: 20786
+ components:
+ - type: Transform
+ pos: 43.5,117.5
+ parent: 1
+ - uid: 20788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 44.5,104.5
+ parent: 1
+ - uid: 20789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,99.5
+ parent: 1
+ - uid: 20791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 27.5,99.5
+ parent: 1
+ - uid: 20794
+ components:
+ - type: Transform
+ pos: 26.5,105.5
+ parent: 1
+ - uid: 20796
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,110.5
+ parent: 1
+ - uid: 20802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,110.5
+ parent: 1
+ - uid: 22188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,88.5
+ parent: 1
+ - uid: 22673
+ components:
+ - type: Transform
+ pos: 88.5,52.5
+ parent: 1
+ - uid: 22773
+ components:
+ - type: Transform
+ pos: 98.5,88.5
+ parent: 1
+ - uid: 22880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,64.5
+ parent: 1
+ - uid: 22881
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,64.5
+ parent: 1
+ - uid: 22882
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,68.5
+ parent: 1
+ - uid: 22883
+ components:
+ - type: Transform
+ pos: 130.5,60.5
+ parent: 1
+ - uid: 22884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,74.5
+ parent: 1
+ - uid: 22885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,72.5
+ parent: 1
+ - uid: 22887
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,61.5
+ parent: 1
+ - uid: 22888
+ components:
+ - type: Transform
+ pos: 143.5,58.5
+ parent: 1
+ - uid: 22889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,52.5
+ parent: 1
+ - uid: 22890
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,47.5
+ parent: 1
+ - uid: 22891
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,46.5
+ parent: 1
+ - uid: 22892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,51.5
+ parent: 1
+ - uid: 22895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,49.5
+ parent: 1
+ - uid: 22897
+ components:
+ - type: Transform
+ pos: 152.5,58.5
+ parent: 1
+ - uid: 22899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,66.5
+ parent: 1
+ - uid: 22900
+ components:
+ - type: Transform
+ pos: 152.5,74.5
+ parent: 1
+ - uid: 22902
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,62.5
+ parent: 1
+ - uid: 22903
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,64.5
+ parent: 1
+ - uid: 22904
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,67.5
+ parent: 1
+ - uid: 22905
+ components:
+ - type: Transform
+ pos: 140.5,71.5
+ parent: 1
+ - uid: 22906
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,73.5
+ parent: 1
+ - uid: 22907
+ components:
+ - type: Transform
+ pos: 127.5,74.5
+ parent: 1
+ - uid: 22908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,63.5
+ parent: 1
+ - uid: 22909
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,67.5
+ parent: 1
+ - uid: 22910
+ components:
+ - type: Transform
+ pos: 124.5,56.5
+ parent: 1
+ - uid: 22911
+ components:
+ - type: Transform
+ pos: 128.5,52.5
+ parent: 1
+ - uid: 22912
+ components:
+ - type: Transform
+ pos: 133.5,52.5
+ parent: 1
+ - uid: 22914
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,47.5
+ parent: 1
+ - uid: 22915
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,48.5
+ parent: 1
+ - uid: 22934
+ components:
+ - type: Transform
+ pos: 134.5,56.5
+ parent: 1
+ - uid: 22952
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,69.5
+ parent: 1
+ - uid: 23143
+ components:
+ - type: Transform
+ pos: 138.5,145.5
+ parent: 1
+ - uid: 23343
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,161.5
+ parent: 1
+ - uid: 23430
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,148.5
+ parent: 1
+ - uid: 23624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,51.5
+ parent: 1
+ - uid: 23846
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,96.5
+ parent: 1
+ - uid: 24697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,57.5
+ parent: 1
+ - uid: 24721
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,73.5
+ parent: 1
+ - uid: 24725
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,41.5
+ parent: 1
+ - uid: 24726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,67.5
+ parent: 1
+ - uid: 24728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,67.5
+ parent: 1
+ - uid: 24779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,68.5
+ parent: 1
+ - uid: 25479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,106.5
+ parent: 1
+ - uid: 25480
+ components:
+ - type: Transform
+ pos: 123.5,114.5
+ parent: 1
+ - uid: 25482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,51.5
+ parent: 1
+ - uid: 25491
+ components:
+ - type: Transform
+ pos: 74.5,65.5
+ parent: 1
+ - uid: 26142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,53.5
+ parent: 1
+ - uid: 26473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,102.5
+ parent: 1
+ - uid: 26474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,102.5
+ parent: 1
+ - uid: 26475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,102.5
+ parent: 1
+ - uid: 26476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,96.5
+ parent: 1
+ - uid: 26477
+ components:
+ - type: Transform
+ pos: 95.5,104.5
+ parent: 1
+ - uid: 26482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,92.5
+ parent: 1
+ - uid: 26488
+ components:
+ - type: Transform
+ pos: 108.5,94.5
+ parent: 1
+ - uid: 26489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,92.5
+ parent: 1
+ - uid: 26496
+ components:
+ - type: Transform
+ pos: 114.5,88.5
+ parent: 1
+ - uid: 26498
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,79.5
+ parent: 1
+ - uid: 26499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,79.5
+ parent: 1
+ - uid: 26500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,84.5
+ parent: 1
+ - uid: 26501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,84.5
+ parent: 1
+ - uid: 26505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,62.5
+ parent: 1
+ - uid: 26506
+ components:
+ - type: Transform
+ pos: 106.5,84.5
+ parent: 1
+ - uid: 26507
+ components:
+ - type: Transform
+ pos: 106.5,78.5
+ parent: 1
+ - uid: 26510
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,62.5
+ parent: 1
+ - uid: 26723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,39.5
+ parent: 1
+ - uid: 26987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,67.5
+ parent: 1
+ - uid: 26989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,74.5
+ parent: 1
+ - uid: 26990
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,73.5
+ parent: 1
+ - uid: 27053
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,72.5
+ parent: 1
+ - uid: 27066
+ components:
+ - type: Transform
+ pos: 82.5,68.5
+ parent: 1
+ - uid: 27067
+ components:
+ - type: Transform
+ pos: 90.5,69.5
+ parent: 1
+ - uid: 27229
+ components:
+ - type: Transform
+ pos: 75.5,61.5
+ parent: 1
+ - uid: 27268
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,56.5
+ parent: 1
+ - uid: 27389
+ components:
+ - type: Transform
+ pos: 116.5,86.5
+ parent: 1
+ - uid: 27391
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,80.5
+ parent: 1
+ - uid: 27601
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,46.5
+ parent: 1
+ - uid: 27752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,34.5
+ parent: 1
+ - uid: 27837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,27.5
+ parent: 1
+ - uid: 27838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,34.5
+ parent: 1
+ - uid: 27839
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,27.5
+ parent: 1
+ - uid: 27841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.5,41.5
+ parent: 1
+ - uid: 27842
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,41.5
+ parent: 1
+ - uid: 27843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,63.5
+ parent: 1
+ - uid: 27844
+ components:
+ - type: Transform
+ pos: 75.5,43.5
+ parent: 1
+ - uid: 27847
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,63.5
+ parent: 1
+ - uid: 27849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,81.5
+ parent: 1
+ - uid: 27850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,72.5
+ parent: 1
+ - uid: 27925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,86.5
+ parent: 1
+ - uid: 27927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,92.5
+ parent: 1
+ - uid: 27928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,98.5
+ parent: 1
+ - uid: 27930
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,109.5
+ parent: 1
+ - uid: 28218
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,112.5
+ parent: 1
+ - uid: 28219
+ components:
+ - type: Transform
+ pos: 78.5,114.5
+ parent: 1
+ - uid: 28220
+ components:
+ - type: Transform
+ pos: 71.5,114.5
+ parent: 1
+ - uid: 28221
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,112.5
+ parent: 1
+ - uid: 28223
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,117.5
+ parent: 1
+ - uid: 28256
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,117.5
+ parent: 1
+ - uid: 28257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,117.5
+ parent: 1
+ - uid: 28258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,122.5
+ parent: 1
+ - uid: 28259
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,122.5
+ parent: 1
+ - uid: 28570
+ components:
+ - type: Transform
+ pos: 140.5,78.5
+ parent: 1
+ - uid: 28571
+ components:
+ - type: Transform
+ pos: 132.5,83.5
+ parent: 1
+ - uid: 28572
+ components:
+ - type: Transform
+ pos: 137.5,83.5
+ parent: 1
+ - uid: 28573
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,76.5
+ parent: 1
+ - uid: 28575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,83.5
+ parent: 1
+ - uid: 28576
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,91.5
+ parent: 1
+ - uid: 28577
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,99.5
+ parent: 1
+ - uid: 28578
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,107.5
+ parent: 1
+ - uid: 28579
+ components:
+ - type: Transform
+ pos: 133.5,119.5
+ parent: 1
+ - uid: 28580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,117.5
+ parent: 1
+ - uid: 28581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,111.5
+ parent: 1
+ - uid: 28582
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,74.5
+ parent: 1
+ - uid: 28583
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,76.5
+ parent: 1
+ - uid: 28584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,66.5
+ parent: 1
+ - uid: 28585
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,56.5
+ parent: 1
+ - uid: 28586
+ components:
+ - type: Transform
+ pos: 112.5,55.5
+ parent: 1
+ - uid: 28587
+ components:
+ - type: Transform
+ pos: 105.5,52.5
+ parent: 1
+ - uid: 28591
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,66.5
+ parent: 1
+ - uid: 28786
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - uid: 28790
+ components:
+ - type: Transform
+ pos: 58.5,114.5
+ parent: 1
+ - uid: 28798
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,107.5
+ parent: 1
+ - uid: 28933
+ components:
+ - type: Transform
+ pos: 87.5,77.5
+ parent: 1
+ - uid: 29596
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,117.5
+ parent: 1
+ - uid: 29597
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,121.5
+ parent: 1
+ - uid: 29602
+ components:
+ - type: Transform
+ pos: 156.5,123.5
+ parent: 1
+ - uid: 30103
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,149.5
+ parent: 1
+ - uid: 30131
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,147.5
+ parent: 1
+ - uid: 30132
+ components:
+ - type: Transform
+ pos: 140.5,153.5
+ parent: 1
+ - uid: 30146
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,129.5
+ parent: 1
+ - uid: 30147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,135.5
+ parent: 1
+ - uid: 30148
+ components:
+ - type: Transform
+ pos: 152.5,139.5
+ parent: 1
+ - uid: 30149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,137.5
+ parent: 1
+ - uid: 30150
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,137.5
+ parent: 1
+ - uid: 30151
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,144.5
+ parent: 1
+ - uid: 30162
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,151.5
+ parent: 1
+ - uid: 30163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,156.5
+ parent: 1
+ - uid: 30164
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 149.5,156.5
+ parent: 1
+ - uid: 30165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,142.5
+ parent: 1
+ - uid: 30332
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,150.5
+ parent: 1
+ - uid: 30841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,96.5
+ parent: 1
+ - uid: 31138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,141.5
+ parent: 1
+ - uid: 31875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,47.5
+ parent: 1
+ - uid: 32006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,125.5
+ parent: 1
+ - uid: 32230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,131.5
+ parent: 1
+ - uid: 32263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,43.5
+ parent: 1
+ - uid: 32357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,128.5
+ parent: 1
+ - uid: 33064
+ components:
+ - type: Transform
+ pos: 92.5,23.5
+ parent: 1
+ - uid: 33419
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,30.5
+ parent: 1
+ - uid: 33423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,21.5
+ parent: 1
+ - uid: 33430
+ components:
+ - type: Transform
+ pos: 116.5,31.5
+ parent: 1
+ - uid: 33763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,16.5
+ parent: 1
+ - uid: 34235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,139.5
+ parent: 1
+ - uid: 34404
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,143.5
+ parent: 1
+ - uid: 34412
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,151.5
+ parent: 1
+ - uid: 34447
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,161.5
+ parent: 1
+ - uid: 34538
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 160.5,48.5
+ parent: 1
+ - uid: 34759
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,108.5
+ parent: 1
+ - uid: 34980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,135.5
+ parent: 1
+ - uid: 34981
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,127.5
+ parent: 1
+ - uid: 35214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,57.5
+ parent: 1
+ - uid: 35590
+ components:
+ - type: Transform
+ pos: 147.5,96.5
+ parent: 1
+ - uid: 35642
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,92.5
+ parent: 1
+ - uid: 35645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,90.5
+ parent: 1
+ - uid: 35874
+ components:
+ - type: Transform
+ pos: 53.5,136.5
+ parent: 1
+ - uid: 35875
+ components:
+ - type: Transform
+ pos: 55.5,130.5
+ parent: 1
+ - uid: 36003
+ components:
+ - type: Transform
+ pos: 48.5,126.5
+ parent: 1
+ - uid: 36745
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,137.5
+ parent: 1
+ - uid: 36748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,145.5
+ parent: 1
+ - uid: 36761
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,141.5
+ parent: 1
+ - uid: 37323
+ components:
+ - type: Transform
+ pos: 134.5,129.5
+ parent: 1
+ - uid: 37330
+ components:
+ - type: Transform
+ pos: 64.5,61.5
+ parent: 1
+ - uid: 37384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.5,49.5
+ parent: 1
+ - uid: 37471
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,45.5
+ parent: 1
+ - uid: 37487
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,56.5
+ parent: 1
+ - uid: 37488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,48.5
+ parent: 1
+ - uid: 37489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,57.5
+ parent: 1
+- proto: PoweredlightGreen
+ entities:
+ - uid: 18066
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 166.5,137.5
+ parent: 1
+- proto: PoweredlightRed
+ entities:
+ - uid: 37188
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 165.5,134.5
+ parent: 1
+- proto: PoweredlightSodium
+ entities:
+ - uid: 31827
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,150.5
+ parent: 1
+- proto: PoweredSmallLight
+ entities:
+ - uid: 501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 39.5,66.5
+ parent: 1
+ - uid: 523
+ components:
+ - type: Transform
+ pos: 154.5,91.5
+ parent: 1
+ - uid: 1380
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,108.5
+ parent: 1
+ - uid: 1853
+ components:
+ - type: Transform
+ pos: 100.5,37.5
+ parent: 1
+ - uid: 2095
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,106.5
+ parent: 1
+ - uid: 2238
+ components:
+ - type: Transform
+ pos: 33.5,123.5
+ parent: 1
+ - uid: 4696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,103.5
+ parent: 1
+ - uid: 5374
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 164.5,147.5
+ parent: 1
+ - uid: 5386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 38.5,82.5
+ parent: 1
+ - uid: 5387
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,104.5
+ parent: 1
+ - uid: 5472
+ components:
+ - type: Transform
+ pos: 51.5,107.5
+ parent: 1
+ - uid: 10753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,58.5
+ parent: 1
+ - uid: 11533
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 33.5,66.5
+ parent: 1
+ - uid: 11534
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,49.5
+ parent: 1
+ - uid: 11535
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,50.5
+ parent: 1
+ - uid: 13499
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,45.5
+ parent: 1
+ - uid: 13503
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 43.5,24.5
+ parent: 1
+ - uid: 13506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 51.5,34.5
+ parent: 1
+ - uid: 16584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,148.5
+ parent: 1
+ - uid: 16593
+ components:
+ - type: Transform
+ pos: 98.5,145.5
+ parent: 1
+ - uid: 16910
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,82.5
+ parent: 1
+ - uid: 16918
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,167.5
+ parent: 1
+ - uid: 17647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,90.5
+ parent: 1
+ - uid: 17788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,92.5
+ parent: 1
+ - uid: 17992
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,81.5
+ parent: 1
+ - uid: 17993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 70.5,83.5
+ parent: 1
+ - uid: 18305
+ components:
+ - type: Transform
+ pos: 123.5,68.5
+ parent: 1
+ - uid: 18439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,111.5
+ parent: 1
+ - uid: 18447
+ components:
+ - type: Transform
+ pos: 123.5,71.5
+ parent: 1
+ - uid: 18900
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,170.5
+ parent: 1
+ - uid: 19046
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,92.5
+ parent: 1
+ - uid: 19326
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,106.5
+ parent: 1
+ - uid: 19327
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,102.5
+ parent: 1
+ - uid: 19555
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,106.5
+ parent: 1
+ - uid: 19556
+ components:
+ - type: Transform
+ pos: 162.5,110.5
+ parent: 1
+ - uid: 20436
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,99.5
+ parent: 1
+ - uid: 20792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,104.5
+ parent: 1
+ - uid: 20795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 31.5,104.5
+ parent: 1
+ - uid: 20926
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,117.5
+ parent: 1
+ - uid: 20927
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 48.5,117.5
+ parent: 1
+ - uid: 20928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,96.5
+ parent: 1
+ - uid: 22595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,75.5
+ parent: 1
+ - uid: 22913
+ components:
+ - type: Transform
+ pos: 122.5,60.5
+ parent: 1
+ - uid: 22921
+ components:
+ - type: Transform
+ pos: 136.5,46.5
+ parent: 1
+ - uid: 22922
+ components:
+ - type: Transform
+ pos: 136.5,49.5
+ parent: 1
+ - uid: 22923
+ components:
+ - type: Transform
+ pos: 136.5,52.5
+ parent: 1
+ - uid: 22924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,45.5
+ parent: 1
+ - uid: 22925
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,48.5
+ parent: 1
+ - uid: 22928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,73.5
+ parent: 1
+ - uid: 22935
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,60.5
+ parent: 1
+ - uid: 23081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,140.5
+ parent: 1
+ - uid: 23509
+ components:
+ - type: Transform
+ pos: 93.5,37.5
+ parent: 1
+ - uid: 23954
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,44.5
+ parent: 1
+ - uid: 24293
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,95.5
+ parent: 1
+ - uid: 24310
+ components:
+ - type: Transform
+ pos: 123.5,74.5
+ parent: 1
+ - uid: 24611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,66.5
+ parent: 1
+ - uid: 25166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,109.5
+ parent: 1
+ - uid: 26411
+ components:
+ - type: Transform
+ pos: 110.5,171.5
+ parent: 1
+ - uid: 26472
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,102.5
+ parent: 1
+ - uid: 26484
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,92.5
+ parent: 1
+ - uid: 26485
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,92.5
+ parent: 1
+ - uid: 26511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,57.5
+ parent: 1
+ - uid: 26698
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,99.5
+ parent: 1
+ - uid: 26719
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,66.5
+ parent: 1
+ - uid: 26780
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,56.5
+ parent: 1
+ - uid: 26781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,57.5
+ parent: 1
+ - uid: 27055
+ components:
+ - type: Transform
+ pos: 77.5,78.5
+ parent: 1
+ - uid: 27056
+ components:
+ - type: Transform
+ pos: 75.5,78.5
+ parent: 1
+ - uid: 27069
+ components:
+ - type: Transform
+ pos: 60.5,78.5
+ parent: 1
+ - uid: 27096
+ components:
+ - type: Transform
+ pos: 123.5,65.5
+ parent: 1
+ - uid: 27165
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,69.5
+ parent: 1
+ - uid: 27223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,121.5
+ parent: 1
+ - uid: 27267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,51.5
+ parent: 1
+ - uid: 27390
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,86.5
+ parent: 1
+ - uid: 27931
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,61.5
+ parent: 1
+ - uid: 28165
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,119.5
+ parent: 1
+ - uid: 28169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,119.5
+ parent: 1
+ - uid: 28171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,117.5
+ parent: 1
+ - uid: 28172
+ components:
+ - type: Transform
+ pos: 61.5,117.5
+ parent: 1
+ - uid: 28173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,119.5
+ parent: 1
+ - uid: 28175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,119.5
+ parent: 1
+ - uid: 28610
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,83.5
+ parent: 1
+ - uid: 28732
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,54.5
+ parent: 1
+ - uid: 29593
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,127.5
+ parent: 1
+ - uid: 29595
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,125.5
+ parent: 1
+ - uid: 29598
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,123.5
+ parent: 1
+ - uid: 29599
+ components:
+ - type: Transform
+ pos: 145.5,128.5
+ parent: 1
+ - uid: 30077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,151.5
+ parent: 1
+ - uid: 30153
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,132.5
+ parent: 1
+ - uid: 30156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,136.5
+ parent: 1
+ - uid: 30331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,126.5
+ parent: 1
+ - uid: 30829
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,86.5
+ parent: 1
+ - uid: 31139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,133.5
+ parent: 1
+ - uid: 31140
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,133.5
+ parent: 1
+ - uid: 31141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,133.5
+ parent: 1
+ - uid: 31142
+ components:
+ - type: Transform
+ pos: 153.5,143.5
+ parent: 1
+ - uid: 31143
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 31144
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+ - uid: 32052
+ components:
+ - type: Transform
+ pos: 141.5,134.5
+ parent: 1
+ - uid: 32299
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,41.5
+ parent: 1
+ - uid: 33493
+ components:
+ - type: Transform
+ pos: 118.5,23.5
+ parent: 1
+ - uid: 34331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,78.5
+ parent: 1
+ - uid: 34332
+ components:
+ - type: Transform
+ pos: 164.5,80.5
+ parent: 1
+ - uid: 34400
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,80.5
+ parent: 1
+ - uid: 34579
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,68.5
+ parent: 1
+ - uid: 34661
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 161.5,56.5
+ parent: 1
+ - uid: 34664
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,85.5
+ parent: 1
+ - uid: 34693
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,39.5
+ parent: 1
+ - uid: 34695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,47.5
+ parent: 1
+ - uid: 34696
+ components:
+ - type: Transform
+ pos: 149.5,46.5
+ parent: 1
+ - uid: 35231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,171.5
+ parent: 1
+ - uid: 35232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,152.5
+ parent: 1
+ - uid: 35414
+ components:
+ - type: Transform
+ pos: 90.5,165.5
+ parent: 1
+ - uid: 35560
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,155.5
+ parent: 1
+ - uid: 35625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,155.5
+ parent: 1
+ - uid: 35626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,158.5
+ parent: 1
+ - uid: 36060
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,112.5
+ parent: 1
+ - uid: 36062
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,121.5
+ parent: 1
+ - uid: 36146
+ components:
+ - type: Transform
+ pos: 20.5,119.5
+ parent: 1
+ - uid: 36523
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,79.5
+ parent: 1
+ - uid: 36524
+ components:
+ - type: Transform
+ pos: 38.5,80.5
+ parent: 1
+ - uid: 36525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,87.5
+ parent: 1
+ - uid: 36527
+ components:
+ - type: Transform
+ pos: 21.5,102.5
+ parent: 1
+ - uid: 37375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,81.5
+ parent: 1
+ - uid: 37423
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,92.5
+ parent: 1
+ - uid: 37474
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,40.5
+ parent: 1
+ - uid: 37519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,48.5
+ parent: 1
+ - uid: 37553
+ components:
+ - type: Transform
+ pos: 47.5,108.5
+ parent: 1
+- proto: PoweredStrobeLightEmpty
+ entities:
+ - uid: 23279
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,66.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 23280
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - type: DamageOnInteract
+ isDamageActive: False
+ - uid: 23281
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,66.5
+ parent: 1
+ - type: ContainerContainer
+ containers:
+ light_bulb: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: 23282
+ - type: ApcPowerReceiver
+ powerLoad: 0
+ - type: DamageOnInteract
+ isDamageActive: False
+- proto: Protolathe
+ entities:
+ - uid: 20464
+ components:
+ - type: Transform
+ pos: 46.5,92.5
+ parent: 1
+- proto: ProtolatheMachineCircuitboard
+ entities:
+ - uid: 32032
+ components:
+ - type: Transform
+ pos: 141.55725,133.72534
+ parent: 1
+- proto: ProximitySensor
+ entities:
+ - uid: 11419
+ components:
+ - type: Transform
+ pos: 63.742237,93.42646
+ parent: 1
+- proto: Rack
+ entities:
+ - uid: 747
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,173.5
+ parent: 1
+ - uid: 2751
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,91.5
+ parent: 1
+ - uid: 2807
+ components:
+ - type: Transform
+ pos: 155.5,89.5
+ parent: 1
+ - uid: 3536
+ components:
+ - type: Transform
+ pos: 154.5,49.5
+ parent: 1
+ - uid: 3989
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,94.5
+ parent: 1
+ - uid: 5261
+ components:
+ - type: Transform
+ pos: 86.5,59.5
+ parent: 1
+ - uid: 5946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,102.5
+ parent: 1
+ - uid: 6332
+ components:
+ - type: Transform
+ pos: 146.5,75.5
+ parent: 1
+ - uid: 6534
+ components:
+ - type: Transform
+ pos: 163.5,78.5
+ parent: 1
+ - uid: 9259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,108.5
+ parent: 1
+ - uid: 10575
+ components:
+ - type: Transform
+ pos: 122.5,63.5
+ parent: 1
+ - uid: 11258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,130.5
+ parent: 1
+ - uid: 11933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,109.5
+ parent: 1
+ - uid: 12043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,114.5
+ parent: 1
+ - uid: 13309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,103.5
+ parent: 1
+ - uid: 13486
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,66.5
+ parent: 1
+ - uid: 13546
+ components:
+ - type: Transform
+ pos: 57.5,23.5
+ parent: 1
+ - uid: 14756
+ components:
+ - type: Transform
+ pos: 52.5,128.5
+ parent: 1
+ - uid: 15051
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,162.5
+ parent: 1
+ - uid: 15052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,161.5
+ parent: 1
+ - uid: 15930
+ components:
+ - type: Transform
+ pos: 98.5,125.5
+ parent: 1
+ - uid: 16010
+ components:
+ - type: Transform
+ pos: 132.5,138.5
+ parent: 1
+ - uid: 16055
+ components:
+ - type: Transform
+ pos: 131.5,131.5
+ parent: 1
+ - uid: 16056
+ components:
+ - type: Transform
+ pos: 130.5,131.5
+ parent: 1
+ - uid: 16057
+ components:
+ - type: Transform
+ pos: 136.5,135.5
+ parent: 1
+ - uid: 16058
+ components:
+ - type: Transform
+ pos: 136.5,134.5
+ parent: 1
+ - uid: 16069
+ components:
+ - type: Transform
+ pos: 132.5,137.5
+ parent: 1
+ - uid: 16131
+ components:
+ - type: Transform
+ pos: 97.5,125.5
+ parent: 1
+ - uid: 16150
+ components:
+ - type: Transform
+ pos: 132.5,144.5
+ parent: 1
+ - uid: 16187
+ components:
+ - type: Transform
+ pos: 121.5,121.5
+ parent: 1
+ - uid: 17033
+ components:
+ - type: Transform
+ pos: 69.5,158.5
+ parent: 1
+ - uid: 18429
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,47.5
+ parent: 1
+ - uid: 18709
+ components:
+ - type: Transform
+ pos: 24.5,97.5
+ parent: 1
+ - uid: 18843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,121.5
+ parent: 1
+ - uid: 19479
+ components:
+ - type: Transform
+ pos: 24.5,113.5
+ parent: 1
+ - uid: 19983
+ components:
+ - type: Transform
+ pos: 68.5,123.5
+ parent: 1
+ - uid: 20421
+ components:
+ - type: Transform
+ pos: 49.5,86.5
+ parent: 1
+ - uid: 20451
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 46.5,84.5
+ parent: 1
+ - uid: 20453
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,83.5
+ parent: 1
+ - uid: 20457
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 47.5,84.5
+ parent: 1
+ - uid: 20508
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,99.5
+ parent: 1
+ - uid: 22791
+ components:
+ - type: Transform
+ pos: 130.5,63.5
+ parent: 1
+ - uid: 22794
+ components:
+ - type: Transform
+ pos: 130.5,65.5
+ parent: 1
+ - uid: 23006
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,45.5
+ parent: 1
+ - uid: 23055
+ components:
+ - type: Transform
+ pos: 135.5,48.5
+ parent: 1
+ - uid: 23144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,49.5
+ parent: 1
+ - uid: 23253
+ components:
+ - type: Transform
+ pos: 101.5,46.5
+ parent: 1
+ - uid: 23313
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,133.5
+ parent: 1
+ - uid: 23655
+ components:
+ - type: Transform
+ pos: 155.5,49.5
+ parent: 1
+ - uid: 25196
+ components:
+ - type: Transform
+ pos: 146.5,92.5
+ parent: 1
+ - uid: 25240
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,106.5
+ parent: 1
+ - uid: 25732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,86.5
+ parent: 1
+ - uid: 25808
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,61.5
+ parent: 1
+ - uid: 26587
+ components:
+ - type: Transform
+ pos: 104.5,104.5
+ parent: 1
+ - uid: 26634
+ components:
+ - type: Transform
+ pos: 109.5,90.5
+ parent: 1
+ - uid: 26766
+ components:
+ - type: Transform
+ pos: 108.5,61.5
+ parent: 1
+ - uid: 26839
+ components:
+ - type: Transform
+ pos: 106.5,78.5
+ parent: 1
+ - uid: 27082
+ components:
+ - type: Transform
+ pos: 92.5,58.5
+ parent: 1
+ - uid: 27400
+ components:
+ - type: Transform
+ pos: 123.5,83.5
+ parent: 1
+ - uid: 28224
+ components:
+ - type: Transform
+ pos: 131.5,122.5
+ parent: 1
+ - uid: 29080
+ components:
+ - type: Transform
+ pos: 61.5,50.5
+ parent: 1
+ - uid: 29141
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,29.5
+ parent: 1
+ - uid: 29145
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,29.5
+ parent: 1
+ - uid: 30134
+ components:
+ - type: Transform
+ pos: 142.5,136.5
+ parent: 1
+ - uid: 30136
+ components:
+ - type: Transform
+ pos: 142.5,138.5
+ parent: 1
+ - uid: 30526
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,155.5
+ parent: 1
+ - uid: 30599
+ components:
+ - type: Transform
+ pos: 74.5,125.5
+ parent: 1
+ - uid: 30813
+ components:
+ - type: Transform
+ pos: 96.5,158.5
+ parent: 1
+ - uid: 32034
+ components:
+ - type: Transform
+ pos: 146.5,134.5
+ parent: 1
+ - uid: 32035
+ components:
+ - type: Transform
+ pos: 146.5,133.5
+ parent: 1
+ - uid: 32038
+ components:
+ - type: Transform
+ pos: 141.5,133.5
+ parent: 1
+ - uid: 32051
+ components:
+ - type: Transform
+ pos: 146.5,132.5
+ parent: 1
+ - uid: 32077
+ components:
+ - type: Transform
+ pos: 55.5,148.5
+ parent: 1
+ - uid: 32124
+ components:
+ - type: Transform
+ pos: 27.5,73.5
+ parent: 1
+ - uid: 33259
+ components:
+ - type: Transform
+ pos: 74.5,153.5
+ parent: 1
+ - uid: 33503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,28.5
+ parent: 1
+ - uid: 33560
+ components:
+ - type: Transform
+ pos: 122.5,36.5
+ parent: 1
+ - uid: 33565
+ components:
+ - type: Transform
+ pos: 122.5,37.5
+ parent: 1
+ - uid: 33566
+ components:
+ - type: Transform
+ pos: 122.5,38.5
+ parent: 1
+ - uid: 33579
+ components:
+ - type: Transform
+ pos: 124.5,25.5
+ parent: 1
+ - uid: 33580
+ components:
+ - type: Transform
+ pos: 124.5,26.5
+ parent: 1
+ - uid: 33581
+ components:
+ - type: Transform
+ pos: 124.5,27.5
+ parent: 1
+ - uid: 33582
+ components:
+ - type: Transform
+ pos: 124.5,28.5
+ parent: 1
+ - uid: 33587
+ components:
+ - type: Transform
+ pos: 114.5,35.5
+ parent: 1
+ - uid: 33588
+ components:
+ - type: Transform
+ pos: 113.5,35.5
+ parent: 1
+ - uid: 33595
+ components:
+ - type: Transform
+ pos: 115.5,35.5
+ parent: 1
+ - uid: 33596
+ components:
+ - type: Transform
+ pos: 116.5,35.5
+ parent: 1
+ - uid: 33622
+ components:
+ - type: Transform
+ pos: 126.5,35.5
+ parent: 1
+ - uid: 33624
+ components:
+ - type: Transform
+ pos: 120.5,25.5
+ parent: 1
+ - uid: 33753
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,48.5
+ parent: 1
+ - uid: 33815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,162.5
+ parent: 1
+ - uid: 33886
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,155.5
+ parent: 1
+ - uid: 33975
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,17.5
+ parent: 1
+ - uid: 34086
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,32.5
+ parent: 1
+ - uid: 34103
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 1
+ - uid: 34339
+ components:
+ - type: Transform
+ pos: 159.5,78.5
+ parent: 1
+ - uid: 34340
+ components:
+ - type: Transform
+ pos: 158.5,78.5
+ parent: 1
+ - uid: 34402
+ components:
+ - type: Transform
+ pos: 143.5,81.5
+ parent: 1
+ - uid: 34618
+ components:
+ - type: Transform
+ pos: 159.5,54.5
+ parent: 1
+ - uid: 34755
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,107.5
+ parent: 1
+ - uid: 35018
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,116.5
+ parent: 1
+ - uid: 35148
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,171.5
+ parent: 1
+ - uid: 35368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,173.5
+ parent: 1
+ - uid: 35374
+ components:
+ - type: Transform
+ pos: 88.5,161.5
+ parent: 1
+ - uid: 35375
+ components:
+ - type: Transform
+ pos: 89.5,161.5
+ parent: 1
+ - uid: 35376
+ components:
+ - type: Transform
+ pos: 90.5,161.5
+ parent: 1
+ - uid: 35437
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,157.5
+ parent: 1
+ - uid: 35443
+ components:
+ - type: Transform
+ pos: 74.5,159.5
+ parent: 1
+ - uid: 35620
+ components:
+ - type: Transform
+ pos: 65.5,160.5
+ parent: 1
+ - uid: 35630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,154.5
+ parent: 1
+ - uid: 35866
+ components:
+ - type: Transform
+ pos: 52.5,135.5
+ parent: 1
+ - uid: 35867
+ components:
+ - type: Transform
+ pos: 52.5,136.5
+ parent: 1
+ - uid: 35868
+ components:
+ - type: Transform
+ pos: 57.5,128.5
+ parent: 1
+ - uid: 35869
+ components:
+ - type: Transform
+ pos: 57.5,129.5
+ parent: 1
+ - uid: 36469
+ components:
+ - type: Transform
+ pos: 30.5,83.5
+ parent: 1
+ - uid: 36778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,146.5
+ parent: 1
+ - uid: 36779
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,145.5
+ parent: 1
+ - uid: 36780
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 37038
+ components:
+ - type: Transform
+ pos: 122.5,171.5
+ parent: 1
+ - uid: 37144
+ components:
+ - type: Transform
+ pos: 164.5,149.5
+ parent: 1
+ - uid: 37197
+ components:
+ - type: Transform
+ pos: 167.5,132.5
+ parent: 1
+- proto: RadiationCollectorFullTank
+ entities:
+ - uid: 1844
+ components:
+ - type: Transform
+ pos: 118.5,136.5
+ parent: 1
+ - uid: 1869
+ components:
+ - type: Transform
+ pos: 98.5,136.5
+ parent: 1
+ - uid: 3101
+ components:
+ - type: Transform
+ pos: 118.5,138.5
+ parent: 1
+ - uid: 4846
+ components:
+ - type: Transform
+ pos: 98.5,138.5
+ parent: 1
+ - uid: 5007
+ components:
+ - type: Transform
+ pos: 98.5,137.5
+ parent: 1
+ - uid: 13801
+ components:
+ - type: Transform
+ pos: 109.5,130.5
+ parent: 1
+ - uid: 13802
+ components:
+ - type: Transform
+ pos: 108.5,130.5
+ parent: 1
+ - uid: 13803
+ components:
+ - type: Transform
+ pos: 107.5,130.5
+ parent: 1
+ - uid: 15131
+ components:
+ - type: Transform
+ pos: 118.5,137.5
+ parent: 1
+- proto: RadiationCollectorNoTank
+ entities:
+ - uid: 2521
+ components:
+ - type: Transform
+ pos: 100.5,147.5
+ parent: 1
+ - uid: 10229
+ components:
+ - type: Transform
+ pos: 100.5,148.5
+ parent: 1
+ - uid: 15404
+ components:
+ - type: Transform
+ pos: 99.5,147.5
+ parent: 1
+- proto: RadioHandheld
+ entities:
+ - uid: 5205
+ components:
+ - type: Transform
+ pos: 137.54604,121.78815
+ parent: 1
+ - uid: 16137
+ components:
+ - type: Transform
+ pos: 94.139305,121.78037
+ parent: 1
+ - uid: 16138
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 93.9707,121.487915
+ parent: 1
+- proto: Railing
+ entities:
+ - uid: 9683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,22.5
+ parent: 1
+ - uid: 9749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,20.5
+ parent: 1
+ - uid: 9753
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,21.5
+ parent: 1
+ - uid: 9754
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,19.5
+ parent: 1
+ - uid: 18933
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,151.5
+ parent: 1
+ - uid: 18942
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,150.5
+ parent: 1
+ - uid: 18947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,156.5
+ parent: 1
+ - uid: 18996
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,151.5
+ parent: 1
+ - uid: 18998
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,152.5
+ parent: 1
+ - uid: 26611
+ components:
+ - type: Transform
+ pos: 107.5,93.5
+ parent: 1
+ - uid: 26615
+ components:
+ - type: Transform
+ pos: 108.5,93.5
+ parent: 1
+ - uid: 26616
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,90.5
+ parent: 1
+ - uid: 26617
+ components:
+ - type: Transform
+ pos: 112.5,92.5
+ parent: 1
+ - uid: 26619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,94.5
+ parent: 1
+ - uid: 26620
+ components:
+ - type: Transform
+ pos: 113.5,92.5
+ parent: 1
+ - uid: 26621
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,93.5
+ parent: 1
+ - uid: 26622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,92.5
+ parent: 1
+ - uid: 26625
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,92.5
+ parent: 1
+ - uid: 26626
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,91.5
+ parent: 1
+ - uid: 32074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,152.5
+ parent: 1
+ - uid: 32310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,162.5
+ parent: 1
+ - uid: 32360
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,156.5
+ parent: 1
+ - uid: 32374
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,161.5
+ parent: 1
+ - uid: 33273
+ components:
+ - type: Transform
+ pos: 98.5,23.5
+ parent: 1
+ - uid: 33275
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,21.5
+ parent: 1
+ - uid: 33276
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,20.5
+ parent: 1
+ - uid: 33277
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,19.5
+ parent: 1
+ - uid: 33278
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,18.5
+ parent: 1
+ - uid: 33816
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,162.5
+ parent: 1
+ - uid: 34444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,160.5
+ parent: 1
+ - uid: 34445
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,160.5
+ parent: 1
+ - uid: 34446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,161.5
+ parent: 1
+ - uid: 35968
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,150.5
+ parent: 1
+ - uid: 37033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,166.5
+ parent: 1
+- proto: RailingCornerSmall
+ entities:
+ - uid: 9748
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,23.5
+ parent: 1
+ - uid: 34441
+ components:
+ - type: Transform
+ pos: 101.5,160.5
+ parent: 1
+ - uid: 34442
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,160.5
+ parent: 1
+- proto: RandomArtifactSpawner
+ entities:
+ - uid: 7074
+ components:
+ - type: Transform
+ pos: 47.5,81.5
+ parent: 1
+ - uid: 20440
+ components:
+ - type: Transform
+ pos: 51.5,82.5
+ parent: 1
+- proto: RandomBoard
+ entities:
+ - uid: 32042
+ components:
+ - type: Transform
+ pos: 143.5,133.5
+ parent: 1
+ - uid: 32044
+ components:
+ - type: Transform
+ pos: 146.5,133.5
+ parent: 1
+ - uid: 32050
+ components:
+ - type: Transform
+ pos: 146.5,134.5
+ parent: 1
+ - uid: 32053
+ components:
+ - type: Transform
+ pos: 146.5,132.5
+ parent: 1
+- proto: RandomDrinkGlass
+ entities:
+ - uid: 16151
+ components:
+ - type: Transform
+ pos: 102.5,159.5
+ parent: 1
+ - uid: 16600
+ components:
+ - type: Transform
+ pos: 121.5,133.5
+ parent: 1
+ - uid: 16601
+ components:
+ - type: Transform
+ pos: 126.5,144.5
+ parent: 1
+ - uid: 20844
+ components:
+ - type: Transform
+ pos: 27.5,99.5
+ parent: 1
+ - uid: 21025
+ components:
+ - type: Transform
+ pos: 77.5,121.5
+ parent: 1
+ - uid: 26612
+ components:
+ - type: Transform
+ pos: 104.5,109.5
+ parent: 1
+ - uid: 26613
+ components:
+ - type: Transform
+ pos: 109.5,110.5
+ parent: 1
+ - uid: 26614
+ components:
+ - type: Transform
+ pos: 112.5,108.5
+ parent: 1
+- proto: RandomDrinkSoda
+ entities:
+ - uid: 26686
+ components:
+ - type: Transform
+ pos: 125.5,115.5
+ parent: 1
+- proto: RandomFoodMeal
+ entities:
+ - uid: 4150
+ components:
+ - type: Transform
+ pos: 46.5,51.5
+ parent: 1
+ - uid: 9631
+ components:
+ - type: Transform
+ pos: 124.5,98.5
+ parent: 1
+ - uid: 26586
+ components:
+ - type: Transform
+ pos: 116.5,105.5
+ parent: 1
+- proto: RandomFoodSingle
+ entities:
+ - uid: 3710
+ components:
+ - type: Transform
+ pos: 63.5,52.5
+ parent: 1
+ - uid: 16597
+ components:
+ - type: Transform
+ pos: 95.5,133.5
+ parent: 1
+ - uid: 16598
+ components:
+ - type: Transform
+ pos: 129.5,137.5
+ parent: 1
+ - uid: 20842
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 1
+ - uid: 20938
+ components:
+ - type: Transform
+ pos: 42.5,86.5
+ parent: 1
+ - uid: 23038
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+- proto: RandomInstruments
+ entities:
+ - uid: 23053
+ components:
+ - type: Transform
+ pos: 131.5,52.5
+ parent: 1
+ - uid: 26784
+ components:
+ - type: Transform
+ pos: 110.5,58.5
+ parent: 1
+- proto: RandomPosterAny
+ entities:
+ - uid: 26806
+ components:
+ - type: Transform
+ pos: 103.5,56.5
+ parent: 1
+ - uid: 35938
+ components:
+ - type: Transform
+ pos: 23.5,92.5
+ parent: 1
+ - uid: 36560
+ components:
+ - type: Transform
+ pos: 65.5,34.5
+ parent: 1
+ - uid: 36561
+ components:
+ - type: Transform
+ pos: 62.5,36.5
+ parent: 1
+ - uid: 36562
+ components:
+ - type: Transform
+ pos: 69.5,47.5
+ parent: 1
+ - uid: 36568
+ components:
+ - type: Transform
+ pos: 26.5,70.5
+ parent: 1
+ - uid: 36569
+ components:
+ - type: Transform
+ pos: 22.5,67.5
+ parent: 1
+ - uid: 36570
+ components:
+ - type: Transform
+ pos: 19.5,77.5
+ parent: 1
+ - uid: 36571
+ components:
+ - type: Transform
+ pos: 24.5,85.5
+ parent: 1
+ - uid: 36572
+ components:
+ - type: Transform
+ pos: 19.5,89.5
+ parent: 1
+ - uid: 36574
+ components:
+ - type: Transform
+ pos: 19.5,95.5
+ parent: 1
+ - uid: 36575
+ components:
+ - type: Transform
+ pos: 27.5,91.5
+ parent: 1
+ - uid: 36576
+ components:
+ - type: Transform
+ pos: 20.5,103.5
+ parent: 1
+ - uid: 36577
+ components:
+ - type: Transform
+ pos: 23.5,106.5
+ parent: 1
+ - uid: 36578
+ components:
+ - type: Transform
+ pos: 52.5,115.5
+ parent: 1
+ - uid: 36579
+ components:
+ - type: Transform
+ pos: 65.5,117.5
+ parent: 1
+ - uid: 36581
+ components:
+ - type: Transform
+ pos: 55.5,141.5
+ parent: 1
+ - uid: 36582
+ components:
+ - type: Transform
+ pos: 52.5,144.5
+ parent: 1
+ - uid: 36589
+ components:
+ - type: Transform
+ pos: 105.5,163.5
+ parent: 1
+ - uid: 36590
+ components:
+ - type: Transform
+ pos: 117.5,163.5
+ parent: 1
+ - uid: 36591
+ components:
+ - type: Transform
+ pos: 120.5,159.5
+ parent: 1
+ - uid: 36593
+ components:
+ - type: Transform
+ pos: 131.5,149.5
+ parent: 1
+- proto: RandomPosterContraband
+ entities:
+ - uid: 105
+ components:
+ - type: Transform
+ pos: 92.5,55.5
+ parent: 1
+ - uid: 251
+ components:
+ - type: Transform
+ pos: 62.5,162.5
+ parent: 1
+ - uid: 3293
+ components:
+ - type: Transform
+ pos: 68.5,159.5
+ parent: 1
+ - uid: 19471
+ components:
+ - type: Transform
+ pos: 40.5,127.5
+ parent: 1
+ - uid: 22749
+ components:
+ - type: Transform
+ pos: 129.5,155.5
+ parent: 1
+ - uid: 23330
+ components:
+ - type: Transform
+ pos: 126.5,160.5
+ parent: 1
+ - uid: 24416
+ components:
+ - type: Transform
+ pos: 100.5,54.5
+ parent: 1
+ - uid: 28765
+ components:
+ - type: Transform
+ pos: 115.5,71.5
+ parent: 1
+ - uid: 30301
+ components:
+ - type: Transform
+ pos: 138.5,87.5
+ parent: 1
+ - uid: 30352
+ components:
+ - type: Transform
+ pos: 64.5,155.5
+ parent: 1
+ - uid: 32236
+ components:
+ - type: Transform
+ pos: 59.5,123.5
+ parent: 1
+ - uid: 32988
+ components:
+ - type: Transform
+ pos: 55.5,134.5
+ parent: 1
+ - uid: 34185
+ components:
+ - type: Transform
+ pos: 57.5,131.5
+ parent: 1
+ - uid: 34658
+ components:
+ - type: Transform
+ pos: 73.5,15.5
+ parent: 1
+ - uid: 34665
+ components:
+ - type: Transform
+ pos: 145.5,81.5
+ parent: 1
+ - uid: 34666
+ components:
+ - type: Transform
+ pos: 157.5,69.5
+ parent: 1
+ - uid: 34667
+ components:
+ - type: Transform
+ pos: 159.5,65.5
+ parent: 1
+ - uid: 34668
+ components:
+ - type: Transform
+ pos: 159.5,52.5
+ parent: 1
+ - uid: 34669
+ components:
+ - type: Transform
+ pos: 155.5,45.5
+ parent: 1
+ - uid: 34672
+ components:
+ - type: Transform
+ pos: 146.5,42.5
+ parent: 1
+ - uid: 34673
+ components:
+ - type: Transform
+ pos: 163.5,43.5
+ parent: 1
+ - uid: 34674
+ components:
+ - type: Transform
+ pos: 159.5,48.5
+ parent: 1
+ - uid: 34675
+ components:
+ - type: Transform
+ pos: 123.5,40.5
+ parent: 1
+ - uid: 34676
+ components:
+ - type: Transform
+ pos: 114.5,28.5
+ parent: 1
+ - uid: 34677
+ components:
+ - type: Transform
+ pos: 103.5,22.5
+ parent: 1
+ - uid: 34678
+ components:
+ - type: Transform
+ pos: 98.5,24.5
+ parent: 1
+ - uid: 34679
+ components:
+ - type: Transform
+ pos: 87.5,26.5
+ parent: 1
+ - uid: 34680
+ components:
+ - type: Transform
+ pos: 92.5,33.5
+ parent: 1
+ - uid: 34681
+ components:
+ - type: Transform
+ pos: 97.5,33.5
+ parent: 1
+ - uid: 34682
+ components:
+ - type: Transform
+ pos: 112.5,36.5
+ parent: 1
+ - uid: 34683
+ components:
+ - type: Transform
+ pos: 114.5,43.5
+ parent: 1
+ - uid: 34684
+ components:
+ - type: Transform
+ pos: 110.5,30.5
+ parent: 1
+ - uid: 34685
+ components:
+ - type: Transform
+ pos: 104.5,17.5
+ parent: 1
+ - uid: 34686
+ components:
+ - type: Transform
+ pos: 62.5,23.5
+ parent: 1
+ - uid: 34688
+ components:
+ - type: Transform
+ pos: 60.5,35.5
+ parent: 1
+ - uid: 34689
+ components:
+ - type: Transform
+ pos: 58.5,46.5
+ parent: 1
+ - uid: 34690
+ components:
+ - type: Transform
+ pos: 62.5,40.5
+ parent: 1
+ - uid: 34705
+ components:
+ - type: Transform
+ pos: 61.5,33.5
+ parent: 1
+ - uid: 35067
+ components:
+ - type: Transform
+ pos: 65.5,123.5
+ parent: 1
+ - uid: 35490
+ components:
+ - type: Transform
+ pos: 140.5,132.5
+ parent: 1
+ - uid: 35491
+ components:
+ - type: Transform
+ pos: 142.5,127.5
+ parent: 1
+ - uid: 35492
+ components:
+ - type: Transform
+ pos: 126.5,154.5
+ parent: 1
+ - uid: 35495
+ components:
+ - type: Transform
+ pos: 117.5,166.5
+ parent: 1
+ - uid: 35497
+ components:
+ - type: Transform
+ pos: 93.5,169.5
+ parent: 1
+ - uid: 35498
+ components:
+ - type: Transform
+ pos: 92.5,162.5
+ parent: 1
+ - uid: 35499
+ components:
+ - type: Transform
+ pos: 82.5,157.5
+ parent: 1
+ - uid: 35500
+ components:
+ - type: Transform
+ pos: 73.5,158.5
+ parent: 1
+ - uid: 35501
+ components:
+ - type: Transform
+ pos: 113.5,166.5
+ parent: 1
+ - uid: 35503
+ components:
+ - type: Transform
+ pos: 63.5,158.5
+ parent: 1
+ - uid: 35504
+ components:
+ - type: Transform
+ pos: 66.5,163.5
+ parent: 1
+ - uid: 35505
+ components:
+ - type: Transform
+ pos: 62.5,152.5
+ parent: 1
+ - uid: 35506
+ components:
+ - type: Transform
+ pos: 60.5,145.5
+ parent: 1
+ - uid: 35507
+ components:
+ - type: Transform
+ pos: 59.5,140.5
+ parent: 1
+ - uid: 35508
+ components:
+ - type: Transform
+ pos: 59.5,138.5
+ parent: 1
+ - uid: 35509
+ components:
+ - type: Transform
+ pos: 60.5,133.5
+ parent: 1
+ - uid: 35510
+ components:
+ - type: Transform
+ pos: 61.5,129.5
+ parent: 1
+ - uid: 35511
+ components:
+ - type: Transform
+ pos: 62.5,124.5
+ parent: 1
+ - uid: 35515
+ components:
+ - type: Transform
+ pos: 56.5,122.5
+ parent: 1
+ - uid: 35696
+ components:
+ - type: Transform
+ pos: 17.5,116.5
+ parent: 1
+ - uid: 35741
+ components:
+ - type: Transform
+ pos: 41.5,121.5
+ parent: 1
+ - uid: 36018
+ components:
+ - type: Transform
+ pos: 49.5,121.5
+ parent: 1
+ - uid: 36019
+ components:
+ - type: Transform
+ pos: 51.5,124.5
+ parent: 1
+ - uid: 36021
+ components:
+ - type: Transform
+ pos: 53.5,127.5
+ parent: 1
+ - uid: 36022
+ components:
+ - type: Transform
+ pos: 44.5,124.5
+ parent: 1
+ - uid: 36027
+ components:
+ - type: Transform
+ pos: 33.5,124.5
+ parent: 1
+ - uid: 36028
+ components:
+ - type: Transform
+ pos: 29.5,120.5
+ parent: 1
+ - uid: 36032
+ components:
+ - type: Transform
+ pos: 22.5,117.5
+ parent: 1
+ - uid: 36033
+ components:
+ - type: Transform
+ pos: 22.5,114.5
+ parent: 1
+ - uid: 36035
+ components:
+ - type: Transform
+ pos: 22.5,109.5
+ parent: 1
+ - uid: 36036
+ components:
+ - type: Transform
+ pos: 20.5,106.5
+ parent: 1
+ - uid: 36037
+ components:
+ - type: Transform
+ pos: 16.5,109.5
+ parent: 1
+ - uid: 36160
+ components:
+ - type: Transform
+ pos: 25.5,108.5
+ parent: 1
+ - uid: 36565
+ components:
+ - type: Transform
+ pos: 34.5,78.5
+ parent: 1
+ - uid: 36566
+ components:
+ - type: Transform
+ pos: 30.5,76.5
+ parent: 1
+ - uid: 36567
+ components:
+ - type: Transform
+ pos: 30.5,70.5
+ parent: 1
+ - uid: 36583
+ components:
+ - type: Transform
+ pos: 51.5,150.5
+ parent: 1
+ - uid: 36584
+ components:
+ - type: Transform
+ pos: 56.5,151.5
+ parent: 1
+ - uid: 36585
+ components:
+ - type: Transform
+ pos: 80.5,157.5
+ parent: 1
+ - uid: 36596
+ components:
+ - type: Transform
+ pos: 154.5,129.5
+ parent: 1
+ - uid: 36604
+ components:
+ - type: Transform
+ pos: 141.5,84.5
+ parent: 1
+ - uid: 36605
+ components:
+ - type: Transform
+ pos: 150.5,84.5
+ parent: 1
+ - uid: 36606
+ components:
+ - type: Transform
+ pos: 153.5,78.5
+ parent: 1
+ - uid: 36607
+ components:
+ - type: Transform
+ pos: 154.5,82.5
+ parent: 1
+- proto: RandomPosterLegit
+ entities:
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 90.5,53.5
+ parent: 1
+ - uid: 2954
+ components:
+ - type: Transform
+ pos: 104.5,37.5
+ parent: 1
+ - uid: 3381
+ components:
+ - type: Transform
+ pos: 117.5,60.5
+ parent: 1
+ - uid: 4186
+ components:
+ - type: Transform
+ pos: 89.5,120.5
+ parent: 1
+ - uid: 4875
+ components:
+ - type: Transform
+ pos: 104.5,43.5
+ parent: 1
+ - uid: 5039
+ components:
+ - type: Transform
+ pos: 109.5,40.5
+ parent: 1
+ - uid: 5904
+ components:
+ - type: Transform
+ pos: 37.5,103.5
+ parent: 1
+ - uid: 10323
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,145.5
+ parent: 1
+ - uid: 13685
+ components:
+ - type: Transform
+ pos: 52.5,67.5
+ parent: 1
+ - uid: 13687
+ components:
+ - type: Transform
+ pos: 53.5,62.5
+ parent: 1
+ - uid: 15668
+ components:
+ - type: Transform
+ pos: 92.5,133.5
+ parent: 1
+ - uid: 16646
+ components:
+ - type: Transform
+ pos: 124.5,124.5
+ parent: 1
+ - uid: 16647
+ components:
+ - type: Transform
+ pos: 119.5,147.5
+ parent: 1
+ - uid: 16648
+ components:
+ - type: Transform
+ pos: 124.5,156.5
+ parent: 1
+ - uid: 16649
+ components:
+ - type: Transform
+ pos: 113.5,157.5
+ parent: 1
+ - uid: 16650
+ components:
+ - type: Transform
+ pos: 96.5,157.5
+ parent: 1
+ - uid: 16651
+ components:
+ - type: Transform
+ pos: 92.5,150.5
+ parent: 1
+ - uid: 16653
+ components:
+ - type: Transform
+ pos: 99.5,126.5
+ parent: 1
+ - uid: 16654
+ components:
+ - type: Transform
+ pos: 91.5,124.5
+ parent: 1
+ - uid: 16656
+ components:
+ - type: Transform
+ pos: 71.5,120.5
+ parent: 1
+ - uid: 16657
+ components:
+ - type: Transform
+ pos: 67.5,123.5
+ parent: 1
+ - uid: 16658
+ components:
+ - type: Transform
+ pos: 113.5,148.5
+ parent: 1
+ - uid: 18206
+ components:
+ - type: Transform
+ pos: 64.5,91.5
+ parent: 1
+ - uid: 18209
+ components:
+ - type: Transform
+ pos: 75.5,84.5
+ parent: 1
+ - uid: 18210
+ components:
+ - type: Transform
+ pos: 64.5,82.5
+ parent: 1
+ - uid: 18211
+ components:
+ - type: Transform
+ pos: 58.5,85.5
+ parent: 1
+ - uid: 19550
+ components:
+ - type: Transform
+ pos: 136.5,98.5
+ parent: 1
+ - uid: 19551
+ components:
+ - type: Transform
+ pos: 133.5,111.5
+ parent: 1
+ - uid: 19553
+ components:
+ - type: Transform
+ pos: 159.5,102.5
+ parent: 1
+ - uid: 20915
+ components:
+ - type: Transform
+ pos: 32.5,95.5
+ parent: 1
+ - uid: 20916
+ components:
+ - type: Transform
+ pos: 45.5,93.5
+ parent: 1
+ - uid: 20917
+ components:
+ - type: Transform
+ pos: 52.5,104.5
+ parent: 1
+ - uid: 20918
+ components:
+ - type: Transform
+ pos: 45.5,109.5
+ parent: 1
+ - uid: 20919
+ components:
+ - type: Transform
+ pos: 39.5,109.5
+ parent: 1
+ - uid: 20920
+ components:
+ - type: Transform
+ pos: 27.5,106.5
+ parent: 1
+ - uid: 20922
+ components:
+ - type: Transform
+ pos: 31.5,118.5
+ parent: 1
+ - uid: 20923
+ components:
+ - type: Transform
+ pos: 49.5,113.5
+ parent: 1
+ - uid: 20924
+ components:
+ - type: Transform
+ pos: 51.5,85.5
+ parent: 1
+ - uid: 20925
+ components:
+ - type: Transform
+ pos: 37.5,81.5
+ parent: 1
+ - uid: 22442
+ components:
+ - type: Transform
+ pos: 131.5,113.5
+ parent: 1
+ - uid: 23114
+ components:
+ - type: Transform
+ pos: 123.5,61.5
+ parent: 1
+ - uid: 23115
+ components:
+ - type: Transform
+ pos: 137.5,46.5
+ parent: 1
+ - uid: 23116
+ components:
+ - type: Transform
+ pos: 143.5,49.5
+ parent: 1
+ - uid: 23118
+ components:
+ - type: Transform
+ pos: 156.5,50.5
+ parent: 1
+ - uid: 23119
+ components:
+ - type: Transform
+ pos: 153.5,59.5
+ parent: 1
+ - uid: 23121
+ components:
+ - type: Transform
+ pos: 155.5,68.5
+ parent: 1
+ - uid: 23122
+ components:
+ - type: Transform
+ pos: 150.5,74.5
+ parent: 1
+ - uid: 23147
+ components:
+ - type: Transform
+ pos: 150.5,58.5
+ parent: 1
+ - uid: 23271
+ components:
+ - type: Transform
+ pos: 70.5,62.5
+ parent: 1
+ - uid: 24613
+ components:
+ - type: Transform
+ pos: 98.5,69.5
+ parent: 1
+ - uid: 25426
+ components:
+ - type: Transform
+ pos: 100.5,41.5
+ parent: 1
+ - uid: 26809
+ components:
+ - type: Transform
+ pos: 97.5,81.5
+ parent: 1
+ - uid: 26810
+ components:
+ - type: Transform
+ pos: 115.5,86.5
+ parent: 1
+ - uid: 26811
+ components:
+ - type: Transform
+ pos: 99.5,89.5
+ parent: 1
+ - uid: 26818
+ components:
+ - type: Transform
+ pos: 92.5,103.5
+ parent: 1
+ - uid: 26820
+ components:
+ - type: Transform
+ pos: 109.5,95.5
+ parent: 1
+ - uid: 26821
+ components:
+ - type: Transform
+ pos: 93.5,111.5
+ parent: 1
+ - uid: 27104
+ components:
+ - type: Transform
+ pos: 61.5,111.5
+ parent: 1
+ - uid: 27409
+ components:
+ - type: Transform
+ pos: 125.5,87.5
+ parent: 1
+ - uid: 27598
+ components:
+ - type: Transform
+ pos: 64.5,50.5
+ parent: 1
+ - uid: 27652
+ components:
+ - type: Transform
+ pos: 79.5,44.5
+ parent: 1
+ - uid: 27754
+ components:
+ - type: Transform
+ pos: 54.5,109.5
+ parent: 1
+ - uid: 28834
+ components:
+ - type: Transform
+ pos: 114.5,72.5
+ parent: 1
+ - uid: 29054
+ components:
+ - type: Transform
+ pos: 58.5,101.5
+ parent: 1
+ - uid: 29584
+ components:
+ - type: Transform
+ pos: 65.5,43.5
+ parent: 1
+ - uid: 30021
+ components:
+ - type: Transform
+ pos: 98.5,38.5
+ parent: 1
+ - uid: 30238
+ components:
+ - type: Transform
+ pos: 65.5,38.5
+ parent: 1
+ - uid: 30249
+ components:
+ - type: Transform
+ pos: 154.5,116.5
+ parent: 1
+ - uid: 30250
+ components:
+ - type: Transform
+ pos: 146.5,116.5
+ parent: 1
+ - uid: 30251
+ components:
+ - type: Transform
+ pos: 151.5,122.5
+ parent: 1
+ - uid: 30253
+ components:
+ - type: Transform
+ pos: 147.5,133.5
+ parent: 1
+ - uid: 30254
+ components:
+ - type: Transform
+ pos: 151.5,136.5
+ parent: 1
+ - uid: 30255
+ components:
+ - type: Transform
+ pos: 142.5,139.5
+ parent: 1
+ - uid: 30258
+ components:
+ - type: Transform
+ pos: 137.5,150.5
+ parent: 1
+ - uid: 30259
+ components:
+ - type: Transform
+ pos: 139.5,154.5
+ parent: 1
+ - uid: 30261
+ components:
+ - type: Transform
+ pos: 149.5,146.5
+ parent: 1
+ - uid: 30263
+ components:
+ - type: Transform
+ pos: 154.5,142.5
+ parent: 1
+ - uid: 30264
+ components:
+ - type: Transform
+ pos: 157.5,133.5
+ parent: 1
+ - uid: 30265
+ components:
+ - type: Transform
+ pos: 138.5,116.5
+ parent: 1
+ - uid: 30266
+ components:
+ - type: Transform
+ pos: 132.5,116.5
+ parent: 1
+ - uid: 30268
+ components:
+ - type: Transform
+ pos: 119.5,115.5
+ parent: 1
+ - uid: 30270
+ components:
+ - type: Transform
+ pos: 130.5,88.5
+ parent: 1
+ - uid: 30271
+ components:
+ - type: Transform
+ pos: 135.5,75.5
+ parent: 1
+ - uid: 30272
+ components:
+ - type: Transform
+ pos: 145.5,75.5
+ parent: 1
+ - uid: 30274
+ components:
+ - type: Transform
+ pos: 121.5,55.5
+ parent: 1
+ - uid: 30275
+ components:
+ - type: Transform
+ pos: 115.5,56.5
+ parent: 1
+ - uid: 30276
+ components:
+ - type: Transform
+ pos: 112.5,50.5
+ parent: 1
+ - uid: 30277
+ components:
+ - type: Transform
+ pos: 104.5,53.5
+ parent: 1
+ - uid: 30281
+ components:
+ - type: Transform
+ pos: 72.5,66.5
+ parent: 1
+ - uid: 30282
+ components:
+ - type: Transform
+ pos: 95.5,67.5
+ parent: 1
+ - uid: 30283
+ components:
+ - type: Transform
+ pos: 95.5,71.5
+ parent: 1
+ - uid: 30287
+ components:
+ - type: Transform
+ pos: 65.5,26.5
+ parent: 1
+ - uid: 30288
+ components:
+ - type: Transform
+ pos: 69.5,25.5
+ parent: 1
+ - uid: 30289
+ components:
+ - type: Transform
+ pos: 85.5,25.5
+ parent: 1
+ - uid: 30290
+ components:
+ - type: Transform
+ pos: 82.5,33.5
+ parent: 1
+ - uid: 30291
+ components:
+ - type: Transform
+ pos: 85.5,40.5
+ parent: 1
+ - uid: 30294
+ components:
+ - type: Transform
+ pos: 62.5,66.5
+ parent: 1
+ - uid: 30295
+ components:
+ - type: Transform
+ pos: 58.5,71.5
+ parent: 1
+ - uid: 30296
+ components:
+ - type: Transform
+ pos: 54.5,83.5
+ parent: 1
+ - uid: 30298
+ components:
+ - type: Transform
+ pos: 64.5,110.5
+ parent: 1
+ - uid: 30299
+ components:
+ - type: Transform
+ pos: 83.5,115.5
+ parent: 1
+ - uid: 30300
+ components:
+ - type: Transform
+ pos: 123.5,120.5
+ parent: 1
+ - uid: 30666
+ components:
+ - type: Transform
+ pos: 147.5,125.5
+ parent: 1
+ - uid: 31830
+ components:
+ - type: Transform
+ pos: 126.5,80.5
+ parent: 1
+ - uid: 33289
+ components:
+ - type: Transform
+ pos: 117.5,67.5
+ parent: 1
+ - uid: 36537
+ components:
+ - type: Transform
+ pos: 85.5,31.5
+ parent: 1
+ - uid: 36564
+ components:
+ - type: Transform
+ pos: 49.5,79.5
+ parent: 1
+ - uid: 36580
+ components:
+ - type: Transform
+ pos: 53.5,137.5
+ parent: 1
+ - uid: 36594
+ components:
+ - type: Transform
+ pos: 133.5,145.5
+ parent: 1
+ - uid: 36595
+ components:
+ - type: Transform
+ pos: 151.5,144.5
+ parent: 1
+ - uid: 36597
+ components:
+ - type: Transform
+ pos: 151.5,128.5
+ parent: 1
+ - uid: 36598
+ components:
+ - type: Transform
+ pos: 126.5,102.5
+ parent: 1
+ - uid: 36599
+ components:
+ - type: Transform
+ pos: 126.5,89.5
+ parent: 1
+ - uid: 36600
+ components:
+ - type: Transform
+ pos: 142.5,79.5
+ parent: 1
+ - uid: 36601
+ components:
+ - type: Transform
+ pos: 121.5,66.5
+ parent: 1
+ - uid: 37376
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,47.5
+ parent: 1
+ - uid: 37510
+ components:
+ - type: Transform
+ pos: 54.5,79.5
+ parent: 1
+- proto: RandomSoap
+ entities:
+ - uid: 28196
+ components:
+ - type: Transform
+ pos: 54.5,119.5
+ parent: 1
+ - uid: 29578
+ components:
+ - type: Transform
+ pos: 159.5,127.5
+ parent: 1
+ - uid: 34401
+ components:
+ - type: Transform
+ pos: 143.5,81.5
+ parent: 1
+- proto: RandomSpawner
+ entities:
+ - uid: 33628
+ components:
+ - type: Transform
+ pos: 108.5,18.5
+ parent: 1
+ - uid: 33629
+ components:
+ - type: Transform
+ pos: 109.5,19.5
+ parent: 1
+ - uid: 33630
+ components:
+ - type: Transform
+ pos: 108.5,20.5
+ parent: 1
+ - uid: 33631
+ components:
+ - type: Transform
+ pos: 106.5,19.5
+ parent: 1
+ - uid: 33632
+ components:
+ - type: Transform
+ pos: 104.5,23.5
+ parent: 1
+ - uid: 33633
+ components:
+ - type: Transform
+ pos: 105.5,25.5
+ parent: 1
+ - uid: 33634
+ components:
+ - type: Transform
+ pos: 105.5,28.5
+ parent: 1
+ - uid: 33635
+ components:
+ - type: Transform
+ pos: 106.5,30.5
+ parent: 1
+ - uid: 33636
+ components:
+ - type: Transform
+ pos: 104.5,31.5
+ parent: 1
+ - uid: 33637
+ components:
+ - type: Transform
+ pos: 103.5,31.5
+ parent: 1
+ - uid: 33638
+ components:
+ - type: Transform
+ pos: 101.5,31.5
+ parent: 1
+ - uid: 33639
+ components:
+ - type: Transform
+ pos: 97.5,30.5
+ parent: 1
+ - uid: 33640
+ components:
+ - type: Transform
+ pos: 97.5,32.5
+ parent: 1
+ - uid: 33641
+ components:
+ - type: Transform
+ pos: 95.5,30.5
+ parent: 1
+ - uid: 33642
+ components:
+ - type: Transform
+ pos: 96.5,26.5
+ parent: 1
+ - uid: 33643
+ components:
+ - type: Transform
+ pos: 95.5,24.5
+ parent: 1
+ - uid: 33644
+ components:
+ - type: Transform
+ pos: 96.5,22.5
+ parent: 1
+ - uid: 33645
+ components:
+ - type: Transform
+ pos: 98.5,22.5
+ parent: 1
+ - uid: 33646
+ components:
+ - type: Transform
+ pos: 99.5,19.5
+ parent: 1
+ - uid: 33647
+ components:
+ - type: Transform
+ pos: 98.5,18.5
+ parent: 1
+ - uid: 33648
+ components:
+ - type: Transform
+ pos: 92.5,20.5
+ parent: 1
+ - uid: 33649
+ components:
+ - type: Transform
+ pos: 91.5,22.5
+ parent: 1
+ - uid: 33650
+ components:
+ - type: Transform
+ pos: 90.5,21.5
+ parent: 1
+ - uid: 33651
+ components:
+ - type: Transform
+ pos: 89.5,19.5
+ parent: 1
+ - uid: 33652
+ components:
+ - type: Transform
+ pos: 91.5,18.5
+ parent: 1
+ - uid: 33653
+ components:
+ - type: Transform
+ pos: 89.5,26.5
+ parent: 1
+ - uid: 33654
+ components:
+ - type: Transform
+ pos: 91.5,27.5
+ parent: 1
+ - uid: 33655
+ components:
+ - type: Transform
+ pos: 91.5,26.5
+ parent: 1
+ - uid: 33656
+ components:
+ - type: Transform
+ pos: 92.5,25.5
+ parent: 1
+ - uid: 33657
+ components:
+ - type: Transform
+ pos: 102.5,25.5
+ parent: 1
+ - uid: 33658
+ components:
+ - type: Transform
+ pos: 99.5,26.5
+ parent: 1
+ - uid: 33659
+ components:
+ - type: Transform
+ pos: 100.5,28.5
+ parent: 1
+ - uid: 33660
+ components:
+ - type: Transform
+ pos: 102.5,22.5
+ parent: 1
+ - uid: 33661
+ components:
+ - type: Transform
+ pos: 101.5,20.5
+ parent: 1
+ - uid: 33662
+ components:
+ - type: Transform
+ pos: 102.5,20.5
+ parent: 1
+ - uid: 33663
+ components:
+ - type: Transform
+ pos: 105.5,18.5
+ parent: 1
+ - uid: 33664
+ components:
+ - type: Transform
+ pos: 109.5,22.5
+ parent: 1
+ - uid: 33665
+ components:
+ - type: Transform
+ pos: 110.5,23.5
+ parent: 1
+ - uid: 33666
+ components:
+ - type: Transform
+ pos: 112.5,22.5
+ parent: 1
+ - uid: 33667
+ components:
+ - type: Transform
+ pos: 113.5,26.5
+ parent: 1
+ - uid: 33668
+ components:
+ - type: Transform
+ pos: 111.5,27.5
+ parent: 1
+ - uid: 33669
+ components:
+ - type: Transform
+ pos: 112.5,29.5
+ parent: 1
+ - uid: 33670
+ components:
+ - type: Transform
+ pos: 114.5,31.5
+ parent: 1
+ - uid: 33671
+ components:
+ - type: Transform
+ pos: 117.5,30.5
+ parent: 1
+ - uid: 33672
+ components:
+ - type: Transform
+ pos: 118.5,30.5
+ parent: 1
+ - uid: 33673
+ components:
+ - type: Transform
+ pos: 120.5,32.5
+ parent: 1
+ - uid: 33674
+ components:
+ - type: Transform
+ pos: 122.5,26.5
+ parent: 1
+ - uid: 33675
+ components:
+ - type: Transform
+ pos: 123.5,29.5
+ parent: 1
+ - uid: 33676
+ components:
+ - type: Transform
+ pos: 124.5,30.5
+ parent: 1
+ - uid: 33677
+ components:
+ - type: Transform
+ pos: 122.5,31.5
+ parent: 1
+ - uid: 33678
+ components:
+ - type: Transform
+ pos: 123.5,33.5
+ parent: 1
+ - uid: 33679
+ components:
+ - type: Transform
+ pos: 118.5,25.5
+ parent: 1
+ - uid: 33680
+ components:
+ - type: Transform
+ pos: 116.5,26.5
+ parent: 1
+ - uid: 33681
+ components:
+ - type: Transform
+ pos: 115.5,27.5
+ parent: 1
+ - uid: 33682
+ components:
+ - type: Transform
+ pos: 119.5,22.5
+ parent: 1
+ - uid: 33683
+ components:
+ - type: Transform
+ pos: 118.5,20.5
+ parent: 1
+ - uid: 33684
+ components:
+ - type: Transform
+ pos: 118.5,20.5
+ parent: 1
+ - uid: 33685
+ components:
+ - type: Transform
+ pos: 116.5,22.5
+ parent: 1
+ - uid: 33686
+ components:
+ - type: Transform
+ pos: 118.5,19.5
+ parent: 1
+ - uid: 33687
+ components:
+ - type: Transform
+ pos: 119.5,33.5
+ parent: 1
+ - uid: 33688
+ components:
+ - type: Transform
+ pos: 119.5,35.5
+ parent: 1
+ - uid: 33689
+ components:
+ - type: Transform
+ pos: 118.5,36.5
+ parent: 1
+ - uid: 33690
+ components:
+ - type: Transform
+ pos: 119.5,38.5
+ parent: 1
+ - uid: 33691
+ components:
+ - type: Transform
+ pos: 120.5,39.5
+ parent: 1
+ - uid: 33692
+ components:
+ - type: Transform
+ pos: 120.5,42.5
+ parent: 1
+ - uid: 33693
+ components:
+ - type: Transform
+ pos: 118.5,40.5
+ parent: 1
+ - uid: 33695
+ components:
+ - type: Transform
+ pos: 114.5,41.5
+ parent: 1
+ - uid: 33696
+ components:
+ - type: Transform
+ pos: 114.5,42.5
+ parent: 1
+ - uid: 33697
+ components:
+ - type: Transform
+ pos: 113.5,40.5
+ parent: 1
+ - uid: 33698
+ components:
+ - type: Transform
+ pos: 113.5,39.5
+ parent: 1
+ - uid: 33699
+ components:
+ - type: Transform
+ pos: 114.5,37.5
+ parent: 1
+ - uid: 33700
+ components:
+ - type: Transform
+ pos: 116.5,36.5
+ parent: 1
+ - uid: 33701
+ components:
+ - type: Transform
+ pos: 124.5,35.5
+ parent: 1
+ - uid: 33702
+ components:
+ - type: Transform
+ pos: 125.5,37.5
+ parent: 1
+ - uid: 33703
+ components:
+ - type: Transform
+ pos: 124.5,38.5
+ parent: 1
+ - uid: 33704
+ components:
+ - type: Transform
+ pos: 123.5,37.5
+ parent: 1
+ - uid: 33705
+ components:
+ - type: Transform
+ pos: 125.5,39.5
+ parent: 1
+ - uid: 33706
+ components:
+ - type: Transform
+ pos: 122.5,39.5
+ parent: 1
+ - uid: 34333
+ components:
+ - type: Transform
+ pos: 156.5,83.5
+ parent: 1
+ - uid: 34335
+ components:
+ - type: Transform
+ pos: 155.5,81.5
+ parent: 1
+- proto: RandomVending
+ entities:
+ - uid: 30247
+ components:
+ - type: Transform
+ pos: 89.5,112.5
+ parent: 1
+- proto: RandomVendingDrinks
+ entities:
+ - uid: 5656
+ components:
+ - type: Transform
+ pos: 37.5,102.5
+ parent: 1
+ - uid: 7597
+ components:
+ - type: Transform
+ pos: 95.5,53.5
+ parent: 1
+ - uid: 30234
+ components:
+ - type: Transform
+ pos: 90.5,65.5
+ parent: 1
+ - uid: 30242
+ components:
+ - type: Transform
+ pos: 54.5,106.5
+ parent: 1
+- proto: RandomVendingSnacks
+ entities:
+ - uid: 30235
+ components:
+ - type: Transform
+ pos: 91.5,65.5
+ parent: 1
+ - uid: 30241
+ components:
+ - type: Transform
+ pos: 54.5,105.5
+ parent: 1
+- proto: RCD
+ entities:
+ - uid: 16145
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 132.5451,144.67853
+ parent: 1
+- proto: RCDAmmo
+ entities:
+ - uid: 16149
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 132.32983,144.34518
+ parent: 1
+- proto: ReagentContainerFlour
+ entities:
+ - uid: 26570
+ components:
+ - type: Transform
+ rot: -69.11503837897548 rad
+ pos: 115.59723,96.55743
+ parent: 1
+- proto: Recycler
+ entities:
+ - uid: 20335
+ components:
+ - type: Transform
+ pos: 148.5,94.5
+ parent: 1
+ - uid: 34320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,83.5
+ parent: 1
+- proto: ReinforcedPlasmaWindow
+ entities:
+ - uid: 844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,145.5
+ parent: 1
+ - uid: 849
+ components:
+ - type: Transform
+ pos: 83.5,134.5
+ parent: 1
+ - uid: 2051
+ components:
+ - type: Transform
+ pos: 65.5,140.5
+ parent: 1
+ - uid: 2053
+ components:
+ - type: Transform
+ pos: 65.5,139.5
+ parent: 1
+ - uid: 2055
+ components:
+ - type: Transform
+ pos: 65.5,138.5
+ parent: 1
+ - uid: 2142
+ components:
+ - type: Transform
+ pos: 66.5,144.5
+ parent: 1
+ - uid: 2144
+ components:
+ - type: Transform
+ pos: 66.5,143.5
+ parent: 1
+ - uid: 2146
+ components:
+ - type: Transform
+ pos: 66.5,142.5
+ parent: 1
+ - uid: 2150
+ components:
+ - type: Transform
+ pos: 66.5,136.5
+ parent: 1
+ - uid: 2152
+ components:
+ - type: Transform
+ pos: 66.5,135.5
+ parent: 1
+ - uid: 2154
+ components:
+ - type: Transform
+ pos: 66.5,134.5
+ parent: 1
+ - uid: 2188
+ components:
+ - type: Transform
+ pos: 67.5,148.5
+ parent: 1
+ - uid: 2190
+ components:
+ - type: Transform
+ pos: 67.5,147.5
+ parent: 1
+ - uid: 2192
+ components:
+ - type: Transform
+ pos: 67.5,146.5
+ parent: 1
+ - uid: 2196
+ components:
+ - type: Transform
+ pos: 67.5,132.5
+ parent: 1
+ - uid: 2198
+ components:
+ - type: Transform
+ pos: 67.5,131.5
+ parent: 1
+ - uid: 2200
+ components:
+ - type: Transform
+ pos: 67.5,130.5
+ parent: 1
+ - uid: 2242
+ components:
+ - type: Transform
+ pos: 68.5,152.5
+ parent: 1
+ - uid: 2244
+ components:
+ - type: Transform
+ pos: 68.5,151.5
+ parent: 1
+ - uid: 2246
+ components:
+ - type: Transform
+ pos: 68.5,150.5
+ parent: 1
+ - uid: 2266
+ components:
+ - type: Transform
+ pos: 68.5,128.5
+ parent: 1
+ - uid: 2268
+ components:
+ - type: Transform
+ pos: 68.5,127.5
+ parent: 1
+ - uid: 2270
+ components:
+ - type: Transform
+ pos: 68.5,126.5
+ parent: 1
+ - uid: 3200
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,146.5
+ parent: 1
+ - uid: 3354
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,133.5
+ parent: 1
+ - uid: 3357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,130.5
+ parent: 1
+ - uid: 3492
+ components:
+ - type: Transform
+ pos: 86.5,133.5
+ parent: 1
+ - uid: 3494
+ components:
+ - type: Transform
+ pos: 90.5,143.5
+ parent: 1
+ - uid: 3500
+ components:
+ - type: Transform
+ pos: 86.5,131.5
+ parent: 1
+ - uid: 3501
+ components:
+ - type: Transform
+ pos: 82.5,150.5
+ parent: 1
+ - uid: 3506
+ components:
+ - type: Transform
+ pos: 86.5,129.5
+ parent: 1
+ - uid: 3507
+ components:
+ - type: Transform
+ pos: 86.5,130.5
+ parent: 1
+ - uid: 3508
+ components:
+ - type: Transform
+ pos: 90.5,135.5
+ parent: 1
+ - uid: 3510
+ components:
+ - type: Transform
+ pos: 90.5,134.5
+ parent: 1
+ - uid: 3638
+ components:
+ - type: Transform
+ pos: 86.5,132.5
+ parent: 1
+ - uid: 3921
+ components:
+ - type: Transform
+ pos: 82.5,144.5
+ parent: 1
+ - uid: 4294
+ components:
+ - type: Transform
+ pos: 103.5,128.5
+ parent: 1
+ - uid: 4296
+ components:
+ - type: Transform
+ pos: 103.5,126.5
+ parent: 1
+ - uid: 4349
+ components:
+ - type: Transform
+ pos: 104.5,128.5
+ parent: 1
+ - uid: 4351
+ components:
+ - type: Transform
+ pos: 104.5,126.5
+ parent: 1
+ - uid: 4396
+ components:
+ - type: Transform
+ pos: 105.5,128.5
+ parent: 1
+ - uid: 4398
+ components:
+ - type: Transform
+ pos: 105.5,126.5
+ parent: 1
+ - uid: 4501
+ components:
+ - type: Transform
+ pos: 107.5,128.5
+ parent: 1
+ - uid: 4503
+ components:
+ - type: Transform
+ pos: 107.5,126.5
+ parent: 1
+ - uid: 4553
+ components:
+ - type: Transform
+ pos: 108.5,128.5
+ parent: 1
+ - uid: 4555
+ components:
+ - type: Transform
+ pos: 108.5,126.5
+ parent: 1
+ - uid: 4598
+ components:
+ - type: Transform
+ pos: 109.5,128.5
+ parent: 1
+ - uid: 4600
+ components:
+ - type: Transform
+ pos: 109.5,126.5
+ parent: 1
+ - uid: 4709
+ components:
+ - type: Transform
+ pos: 111.5,128.5
+ parent: 1
+ - uid: 4711
+ components:
+ - type: Transform
+ pos: 111.5,126.5
+ parent: 1
+ - uid: 4741
+ components:
+ - type: Transform
+ pos: 112.5,128.5
+ parent: 1
+ - uid: 4743
+ components:
+ - type: Transform
+ pos: 112.5,126.5
+ parent: 1
+ - uid: 4814
+ components:
+ - type: Transform
+ pos: 113.5,128.5
+ parent: 1
+ - uid: 4816
+ components:
+ - type: Transform
+ pos: 113.5,126.5
+ parent: 1
+ - uid: 8671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,147.5
+ parent: 1
+ - uid: 9366
+ components:
+ - type: Transform
+ pos: 83.5,150.5
+ parent: 1
+ - uid: 9369
+ components:
+ - type: Transform
+ pos: 83.5,128.5
+ parent: 1
+ - uid: 9370
+ components:
+ - type: Transform
+ pos: 81.5,144.5
+ parent: 1
+ - uid: 9388
+ components:
+ - type: Transform
+ pos: 84.5,150.5
+ parent: 1
+ - uid: 9391
+ components:
+ - type: Transform
+ pos: 81.5,128.5
+ parent: 1
+ - uid: 9435
+ components:
+ - type: Transform
+ pos: 81.5,134.5
+ parent: 1
+ - uid: 15476
+ components:
+ - type: Transform
+ pos: 85.5,128.5
+ parent: 1
+ - uid: 15683
+ components:
+ - type: Transform
+ pos: 83.5,144.5
+ parent: 1
+ - uid: 15684
+ components:
+ - type: Transform
+ pos: 82.5,134.5
+ parent: 1
+ - uid: 15686
+ components:
+ - type: Transform
+ pos: 82.5,128.5
+ parent: 1
+ - uid: 15701
+ components:
+ - type: Transform
+ pos: 85.5,150.5
+ parent: 1
+ - uid: 15705
+ components:
+ - type: Transform
+ pos: 81.5,150.5
+ parent: 1
+ - uid: 16018
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,149.5
+ parent: 1
+ - uid: 19561
+ components:
+ - type: Transform
+ pos: 78.5,149.5
+ parent: 1
+ - uid: 19563
+ components:
+ - type: Transform
+ pos: 78.5,148.5
+ parent: 1
+ - uid: 19689
+ components:
+ - type: Transform
+ pos: 34.5,86.5
+ parent: 1
+ - uid: 19690
+ components:
+ - type: Transform
+ pos: 34.5,88.5
+ parent: 1
+ - uid: 19691
+ components:
+ - type: Transform
+ pos: 34.5,89.5
+ parent: 1
+ - uid: 19692
+ components:
+ - type: Transform
+ pos: 34.5,91.5
+ parent: 1
+ - uid: 19693
+ components:
+ - type: Transform
+ pos: 34.5,92.5
+ parent: 1
+ - uid: 19694
+ components:
+ - type: Transform
+ pos: 34.5,94.5
+ parent: 1
+ - uid: 23308
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,148.5
+ parent: 1
+ - uid: 23513
+ components:
+ - type: Transform
+ pos: 78.5,145.5
+ parent: 1
+ - uid: 23514
+ components:
+ - type: Transform
+ pos: 78.5,146.5
+ parent: 1
+ - uid: 27503
+ components:
+ - type: Transform
+ pos: 78.5,147.5
+ parent: 1
+ - uid: 30216
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,132.5
+ parent: 1
+ - uid: 30334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,129.5
+ parent: 1
+ - uid: 32350
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,131.5
+ parent: 1
+ - uid: 32359
+ components:
+ - type: Transform
+ pos: 53.5,155.5
+ parent: 1
+ - uid: 33889
+ components:
+ - type: Transform
+ pos: 50.5,74.5
+ parent: 1
+ - uid: 36762
+ components:
+ - type: Transform
+ pos: 90.5,144.5
+ parent: 1
+- proto: ReinforcedWindow
+ entities:
+ - uid: 9
+ components:
+ - type: Transform
+ pos: 17.5,113.5
+ parent: 1
+ - uid: 11
+ components:
+ - type: Transform
+ pos: 17.5,112.5
+ parent: 1
+ - uid: 13
+ components:
+ - type: Transform
+ pos: 17.5,111.5
+ parent: 1
+ - uid: 15
+ components:
+ - type: Transform
+ pos: 17.5,110.5
+ parent: 1
+ - uid: 24
+ components:
+ - type: Transform
+ pos: 17.5,102.5
+ parent: 1
+ - uid: 26
+ components:
+ - type: Transform
+ pos: 17.5,101.5
+ parent: 1
+ - uid: 28
+ components:
+ - type: Transform
+ pos: 17.5,100.5
+ parent: 1
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 17.5,99.5
+ parent: 1
+ - uid: 59
+ components:
+ - type: Transform
+ pos: 18.5,84.5
+ parent: 1
+ - uid: 61
+ components:
+ - type: Transform
+ pos: 18.5,83.5
+ parent: 1
+ - uid: 63
+ components:
+ - type: Transform
+ pos: 18.5,82.5
+ parent: 1
+ - uid: 89
+ components:
+ - type: Transform
+ pos: 19.5,75.5
+ parent: 1
+ - uid: 91
+ components:
+ - type: Transform
+ pos: 19.5,74.5
+ parent: 1
+ - uid: 93
+ components:
+ - type: Transform
+ pos: 19.5,73.5
+ parent: 1
+ - uid: 97
+ components:
+ - type: Transform
+ pos: 19.5,71.5
+ parent: 1
+ - uid: 99
+ components:
+ - type: Transform
+ pos: 19.5,70.5
+ parent: 1
+ - uid: 101
+ components:
+ - type: Transform
+ pos: 19.5,69.5
+ parent: 1
+ - uid: 148
+ components:
+ - type: Transform
+ pos: 22.5,125.5
+ parent: 1
+ - uid: 185
+ components:
+ - type: Transform
+ pos: 24.5,125.5
+ parent: 1
+ - uid: 229
+ components:
+ - type: Transform
+ pos: 26.5,125.5
+ parent: 1
+ - uid: 267
+ components:
+ - type: Transform
+ pos: 27.5,114.5
+ parent: 1
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 27.5,110.5
+ parent: 1
+ - uid: 280
+ components:
+ - type: Transform
+ pos: 27.5,68.5
+ parent: 1
+ - uid: 283
+ components:
+ - type: Transform
+ pos: 28.5,125.5
+ parent: 1
+ - uid: 286
+ components:
+ - type: Transform
+ pos: 99.5,140.5
+ parent: 1
+ - uid: 287
+ components:
+ - type: Transform
+ pos: 28.5,114.5
+ parent: 1
+ - uid: 289
+ components:
+ - type: Transform
+ pos: 28.5,110.5
+ parent: 1
+ - uid: 299
+ components:
+ - type: Transform
+ pos: 63.5,162.5
+ parent: 1
+ - uid: 301
+ components:
+ - type: Transform
+ pos: 29.5,117.5
+ parent: 1
+ - uid: 304
+ components:
+ - type: Transform
+ pos: 29.5,115.5
+ parent: 1
+ - uid: 306
+ components:
+ - type: Transform
+ pos: 29.5,114.5
+ parent: 1
+ - uid: 308
+ components:
+ - type: Transform
+ pos: 29.5,113.5
+ parent: 1
+ - uid: 311
+ components:
+ - type: Transform
+ pos: 29.5,111.5
+ parent: 1
+ - uid: 313
+ components:
+ - type: Transform
+ pos: 29.5,110.5
+ parent: 1
+ - uid: 315
+ components:
+ - type: Transform
+ pos: 29.5,109.5
+ parent: 1
+ - uid: 318
+ components:
+ - type: Transform
+ pos: 29.5,107.5
+ parent: 1
+ - uid: 332
+ components:
+ - type: Transform
+ pos: 27.5,93.5
+ parent: 1
+ - uid: 337
+ components:
+ - type: Transform
+ pos: 29.5,68.5
+ parent: 1
+ - uid: 401
+ components:
+ - type: Transform
+ pos: 31.5,63.5
+ parent: 1
+ - uid: 403
+ components:
+ - type: Transform
+ pos: 31.5,62.5
+ parent: 1
+ - uid: 405
+ components:
+ - type: Transform
+ pos: 31.5,61.5
+ parent: 1
+ - uid: 408
+ components:
+ - type: Transform
+ pos: 31.5,59.5
+ parent: 1
+ - uid: 410
+ components:
+ - type: Transform
+ pos: 31.5,58.5
+ parent: 1
+ - uid: 412
+ components:
+ - type: Transform
+ pos: 31.5,57.5
+ parent: 1
+ - uid: 415
+ components:
+ - type: Transform
+ pos: 31.5,55.5
+ parent: 1
+ - uid: 417
+ components:
+ - type: Transform
+ pos: 31.5,54.5
+ parent: 1
+ - uid: 419
+ components:
+ - type: Transform
+ pos: 31.5,53.5
+ parent: 1
+ - uid: 614
+ components:
+ - type: Transform
+ pos: 37.5,47.5
+ parent: 1
+ - uid: 637
+ components:
+ - type: Transform
+ pos: 38.5,47.5
+ parent: 1
+ - uid: 668
+ components:
+ - type: Transform
+ pos: 39.5,47.5
+ parent: 1
+ - uid: 706
+ components:
+ - type: Transform
+ pos: 87.5,53.5
+ parent: 1
+ - uid: 737
+ components:
+ - type: Transform
+ pos: 41.5,106.5
+ parent: 1
+ - uid: 739
+ components:
+ - type: Transform
+ pos: 41.5,105.5
+ parent: 1
+ - uid: 741
+ components:
+ - type: Transform
+ pos: 41.5,104.5
+ parent: 1
+ - uid: 744
+ components:
+ - type: Transform
+ pos: 84.5,163.5
+ parent: 1
+ - uid: 794
+ components:
+ - type: Transform
+ pos: 79.5,127.5
+ parent: 1
+ - uid: 797
+ components:
+ - type: Transform
+ pos: 41.5,59.5
+ parent: 1
+ - uid: 799
+ components:
+ - type: Transform
+ pos: 41.5,58.5
+ parent: 1
+ - uid: 801
+ components:
+ - type: Transform
+ pos: 41.5,57.5
+ parent: 1
+ - uid: 804
+ components:
+ - type: Transform
+ pos: 41.5,55.5
+ parent: 1
+ - uid: 806
+ components:
+ - type: Transform
+ pos: 41.5,54.5
+ parent: 1
+ - uid: 808
+ components:
+ - type: Transform
+ pos: 41.5,53.5
+ parent: 1
+ - uid: 900
+ components:
+ - type: Transform
+ pos: 44.5,25.5
+ parent: 1
+ - uid: 903
+ components:
+ - type: Transform
+ pos: 44.5,23.5
+ parent: 1
+ - uid: 970
+ components:
+ - type: Transform
+ pos: 45.5,55.5
+ parent: 1
+ - uid: 972
+ components:
+ - type: Transform
+ pos: 45.5,54.5
+ parent: 1
+ - uid: 974
+ components:
+ - type: Transform
+ pos: 45.5,53.5
+ parent: 1
+ - uid: 989
+ components:
+ - type: Transform
+ pos: 45.5,30.5
+ parent: 1
+ - uid: 991
+ components:
+ - type: Transform
+ pos: 45.5,29.5
+ parent: 1
+ - uid: 993
+ components:
+ - type: Transform
+ pos: 45.5,19.5
+ parent: 1
+ - uid: 995
+ components:
+ - type: Transform
+ pos: 45.5,18.5
+ parent: 1
+ - uid: 1026
+ components:
+ - type: Transform
+ pos: 46.5,29.5
+ parent: 1
+ - uid: 1029
+ components:
+ - type: Transform
+ pos: 46.5,27.5
+ parent: 1
+ - uid: 1031
+ components:
+ - type: Transform
+ pos: 46.5,21.5
+ parent: 1
+ - uid: 1034
+ components:
+ - type: Transform
+ pos: 46.5,19.5
+ parent: 1
+ - uid: 1059
+ components:
+ - type: Transform
+ pos: 47.5,27.5
+ parent: 1
+ - uid: 1061
+ components:
+ - type: Transform
+ pos: 47.5,26.5
+ parent: 1
+ - uid: 1063
+ components:
+ - type: Transform
+ pos: 47.5,25.5
+ parent: 1
+ - uid: 1065
+ components:
+ - type: Transform
+ pos: 47.5,24.5
+ parent: 1
+ - uid: 1067
+ components:
+ - type: Transform
+ pos: 47.5,23.5
+ parent: 1
+ - uid: 1069
+ components:
+ - type: Transform
+ pos: 47.5,22.5
+ parent: 1
+ - uid: 1071
+ components:
+ - type: Transform
+ pos: 47.5,21.5
+ parent: 1
+ - uid: 1106
+ components:
+ - type: Transform
+ pos: 49.5,142.5
+ parent: 1
+ - uid: 1109
+ components:
+ - type: Transform
+ pos: 49.5,140.5
+ parent: 1
+ - uid: 1127
+ components:
+ - type: Transform
+ pos: 49.5,107.5
+ parent: 1
+ - uid: 1129
+ components:
+ - type: Transform
+ pos: 49.5,106.5
+ parent: 1
+ - uid: 1149
+ components:
+ - type: Transform
+ pos: 49.5,31.5
+ parent: 1
+ - uid: 1151
+ components:
+ - type: Transform
+ pos: 49.5,30.5
+ parent: 1
+ - uid: 1153
+ components:
+ - type: Transform
+ pos: 49.5,18.5
+ parent: 1
+ - uid: 1155
+ components:
+ - type: Transform
+ pos: 49.5,17.5
+ parent: 1
+ - uid: 1159
+ components:
+ - type: Transform
+ pos: 50.5,142.5
+ parent: 1
+ - uid: 1161
+ components:
+ - type: Transform
+ pos: 50.5,140.5
+ parent: 1
+ - uid: 1200
+ components:
+ - type: Transform
+ pos: 50.5,30.5
+ parent: 1
+ - uid: 1202
+ components:
+ - type: Transform
+ pos: 50.5,29.5
+ parent: 1
+ - uid: 1204
+ components:
+ - type: Transform
+ pos: 50.5,28.5
+ parent: 1
+ - uid: 1206
+ components:
+ - type: Transform
+ pos: 50.5,20.5
+ parent: 1
+ - uid: 1208
+ components:
+ - type: Transform
+ pos: 50.5,19.5
+ parent: 1
+ - uid: 1210
+ components:
+ - type: Transform
+ pos: 50.5,18.5
+ parent: 1
+ - uid: 1216
+ components:
+ - type: Transform
+ pos: 51.5,153.5
+ parent: 1
+ - uid: 1218
+ components:
+ - type: Transform
+ pos: 51.5,152.5
+ parent: 1
+ - uid: 1220
+ components:
+ - type: Transform
+ pos: 51.5,151.5
+ parent: 1
+ - uid: 1223
+ components:
+ - type: Transform
+ pos: 51.5,149.5
+ parent: 1
+ - uid: 1225
+ components:
+ - type: Transform
+ pos: 51.5,148.5
+ parent: 1
+ - uid: 1227
+ components:
+ - type: Transform
+ pos: 51.5,147.5
+ parent: 1
+ - uid: 1233
+ components:
+ - type: Transform
+ pos: 51.5,142.5
+ parent: 1
+ - uid: 1236
+ components:
+ - type: Transform
+ pos: 51.5,140.5
+ parent: 1
+ - uid: 1284
+ components:
+ - type: Transform
+ pos: 51.5,28.5
+ parent: 1
+ - uid: 1286
+ components:
+ - type: Transform
+ pos: 51.5,27.5
+ parent: 1
+ - uid: 1288
+ components:
+ - type: Transform
+ pos: 51.5,26.5
+ parent: 1
+ - uid: 1290
+ components:
+ - type: Transform
+ pos: 51.5,25.5
+ parent: 1
+ - uid: 1293
+ components:
+ - type: Transform
+ pos: 51.5,23.5
+ parent: 1
+ - uid: 1295
+ components:
+ - type: Transform
+ pos: 51.5,22.5
+ parent: 1
+ - uid: 1297
+ components:
+ - type: Transform
+ pos: 51.5,21.5
+ parent: 1
+ - uid: 1299
+ components:
+ - type: Transform
+ pos: 51.5,20.5
+ parent: 1
+ - uid: 1521
+ components:
+ - type: Transform
+ pos: 56.5,60.5
+ parent: 1
+ - uid: 1558
+ components:
+ - type: Transform
+ pos: 57.5,60.5
+ parent: 1
+ - uid: 1694
+ components:
+ - type: Transform
+ pos: 59.5,60.5
+ parent: 1
+ - uid: 1740
+ components:
+ - type: Transform
+ pos: 157.5,150.5
+ parent: 1
+ - uid: 2163
+ components:
+ - type: Transform
+ pos: 161.5,105.5
+ parent: 1
+ - uid: 2216
+ components:
+ - type: Transform
+ pos: 67.5,89.5
+ parent: 1
+ - uid: 2235
+ components:
+ - type: Transform
+ pos: 68.5,165.5
+ parent: 1
+ - uid: 2239
+ components:
+ - type: Transform
+ pos: 127.5,37.5
+ parent: 1
+ - uid: 2249
+ components:
+ - type: Transform
+ pos: 68.5,143.5
+ parent: 1
+ - uid: 2251
+ components:
+ - type: Transform
+ pos: 68.5,142.5
+ parent: 1
+ - uid: 2254
+ components:
+ - type: Transform
+ pos: 68.5,140.5
+ parent: 1
+ - uid: 2256
+ components:
+ - type: Transform
+ pos: 68.5,139.5
+ parent: 1
+ - uid: 2258
+ components:
+ - type: Transform
+ pos: 68.5,138.5
+ parent: 1
+ - uid: 2261
+ components:
+ - type: Transform
+ pos: 68.5,136.5
+ parent: 1
+ - uid: 2263
+ components:
+ - type: Transform
+ pos: 68.5,135.5
+ parent: 1
+ - uid: 2294
+ components:
+ - type: Transform
+ pos: 69.5,165.5
+ parent: 1
+ - uid: 2300
+ components:
+ - type: Transform
+ pos: 69.5,147.5
+ parent: 1
+ - uid: 2302
+ components:
+ - type: Transform
+ pos: 69.5,146.5
+ parent: 1
+ - uid: 2305
+ components:
+ - type: Transform
+ pos: 69.5,144.5
+ parent: 1
+ - uid: 2307
+ components:
+ - type: Transform
+ pos: 69.5,143.5
+ parent: 1
+ - uid: 2309
+ components:
+ - type: Transform
+ pos: 69.5,135.5
+ parent: 1
+ - uid: 2311
+ components:
+ - type: Transform
+ pos: 69.5,134.5
+ parent: 1
+ - uid: 2314
+ components:
+ - type: Transform
+ pos: 69.5,132.5
+ parent: 1
+ - uid: 2316
+ components:
+ - type: Transform
+ pos: 69.5,131.5
+ parent: 1
+ - uid: 2329
+ components:
+ - type: Transform
+ pos: 69.5,97.5
+ parent: 1
+ - uid: 2365
+ components:
+ - type: Transform
+ pos: 69.5,38.5
+ parent: 1
+ - uid: 2367
+ components:
+ - type: Transform
+ pos: 69.5,37.5
+ parent: 1
+ - uid: 2369
+ components:
+ - type: Transform
+ pos: 69.5,36.5
+ parent: 1
+ - uid: 2373
+ components:
+ - type: Transform
+ pos: 69.5,32.5
+ parent: 1
+ - uid: 2375
+ components:
+ - type: Transform
+ pos: 69.5,31.5
+ parent: 1
+ - uid: 2377
+ components:
+ - type: Transform
+ pos: 69.5,30.5
+ parent: 1
+ - uid: 2379
+ components:
+ - type: Transform
+ pos: 69.5,29.5
+ parent: 1
+ - uid: 2390
+ components:
+ - type: Transform
+ pos: 69.5,15.5
+ parent: 1
+ - uid: 2392
+ components:
+ - type: Transform
+ pos: 70.5,165.5
+ parent: 1
+ - uid: 2396
+ components:
+ - type: Transform
+ pos: 70.5,153.5
+ parent: 1
+ - uid: 2398
+ components:
+ - type: Transform
+ pos: 70.5,152.5
+ parent: 1
+ - uid: 2400
+ components:
+ - type: Transform
+ pos: 70.5,151.5
+ parent: 1
+ - uid: 2402
+ components:
+ - type: Transform
+ pos: 70.5,150.5
+ parent: 1
+ - uid: 2405
+ components:
+ - type: Transform
+ pos: 70.5,148.5
+ parent: 1
+ - uid: 2407
+ components:
+ - type: Transform
+ pos: 70.5,147.5
+ parent: 1
+ - uid: 2409
+ components:
+ - type: Transform
+ pos: 70.5,131.5
+ parent: 1
+ - uid: 2411
+ components:
+ - type: Transform
+ pos: 70.5,130.5
+ parent: 1
+ - uid: 2414
+ components:
+ - type: Transform
+ pos: 70.5,128.5
+ parent: 1
+ - uid: 2416
+ components:
+ - type: Transform
+ pos: 70.5,127.5
+ parent: 1
+ - uid: 2418
+ components:
+ - type: Transform
+ pos: 70.5,126.5
+ parent: 1
+ - uid: 2421
+ components:
+ - type: Transform
+ pos: 63.5,59.5
+ parent: 1
+ - uid: 2453
+ components:
+ - type: Transform
+ pos: 70.5,15.5
+ parent: 1
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: 71.5,15.5
+ parent: 1
+ - uid: 2541
+ components:
+ - type: Transform
+ pos: 72.5,40.5
+ parent: 1
+ - uid: 2578
+ components:
+ - type: Transform
+ pos: 73.5,40.5
+ parent: 1
+ - uid: 2582
+ components:
+ - type: Transform
+ pos: 74.5,163.5
+ parent: 1
+ - uid: 2588
+ components:
+ - type: Transform
+ pos: 96.5,150.5
+ parent: 1
+ - uid: 2615
+ components:
+ - type: Transform
+ pos: 74.5,40.5
+ parent: 1
+ - uid: 2618
+ components:
+ - type: Transform
+ pos: 74.5,15.5
+ parent: 1
+ - uid: 2620
+ components:
+ - type: Transform
+ pos: 75.5,163.5
+ parent: 1
+ - uid: 2626
+ components:
+ - type: Transform
+ pos: 75.5,124.5
+ parent: 1
+ - uid: 2654
+ components:
+ - type: Transform
+ pos: 75.5,40.5
+ parent: 1
+ - uid: 2657
+ components:
+ - type: Transform
+ pos: 75.5,15.5
+ parent: 1
+ - uid: 2663
+ components:
+ - type: Transform
+ pos: 76.5,124.5
+ parent: 1
+ - uid: 2690
+ components:
+ - type: Transform
+ pos: 76.5,76.5
+ parent: 1
+ - uid: 2692
+ components:
+ - type: Transform
+ pos: 76.5,75.5
+ parent: 1
+ - uid: 2694
+ components:
+ - type: Transform
+ pos: 76.5,74.5
+ parent: 1
+ - uid: 2696
+ components:
+ - type: Transform
+ pos: 76.5,73.5
+ parent: 1
+ - uid: 2698
+ components:
+ - type: Transform
+ pos: 76.5,72.5
+ parent: 1
+ - uid: 2700
+ components:
+ - type: Transform
+ pos: 76.5,71.5
+ parent: 1
+ - uid: 2709
+ components:
+ - type: Transform
+ pos: 76.5,40.5
+ parent: 1
+ - uid: 2712
+ components:
+ - type: Transform
+ pos: 76.5,15.5
+ parent: 1
+ - uid: 2714
+ components:
+ - type: Transform
+ pos: 77.5,163.5
+ parent: 1
+ - uid: 2736
+ components:
+ - type: Transform
+ pos: 77.5,124.5
+ parent: 1
+ - uid: 2752
+ components:
+ - type: Transform
+ pos: 77.5,71.5
+ parent: 1
+ - uid: 2761
+ components:
+ - type: Transform
+ pos: 77.5,40.5
+ parent: 1
+ - uid: 2766
+ components:
+ - type: Transform
+ pos: 78.5,163.5
+ parent: 1
+ - uid: 2821
+ components:
+ - type: Transform
+ pos: 78.5,40.5
+ parent: 1
+ - uid: 2869
+ components:
+ - type: Transform
+ pos: 79.5,77.5
+ parent: 1
+ - uid: 2871
+ components:
+ - type: Transform
+ pos: 79.5,71.5
+ parent: 1
+ - uid: 2888
+ components:
+ - type: Transform
+ pos: 79.5,40.5
+ parent: 1
+ - uid: 2891
+ components:
+ - type: Transform
+ pos: 79.5,15.5
+ parent: 1
+ - uid: 2893
+ components:
+ - type: Transform
+ pos: 80.5,163.5
+ parent: 1
+ - uid: 2916
+ components:
+ - type: Transform
+ pos: 80.5,97.5
+ parent: 1
+ - uid: 2932
+ components:
+ - type: Transform
+ pos: 80.5,77.5
+ parent: 1
+ - uid: 2934
+ components:
+ - type: Transform
+ pos: 80.5,76.5
+ parent: 1
+ - uid: 2936
+ components:
+ - type: Transform
+ pos: 80.5,75.5
+ parent: 1
+ - uid: 2938
+ components:
+ - type: Transform
+ pos: 80.5,74.5
+ parent: 1
+ - uid: 2940
+ components:
+ - type: Transform
+ pos: 80.5,73.5
+ parent: 1
+ - uid: 2942
+ components:
+ - type: Transform
+ pos: 80.5,72.5
+ parent: 1
+ - uid: 2944
+ components:
+ - type: Transform
+ pos: 80.5,71.5
+ parent: 1
+ - uid: 2970
+ components:
+ - type: Transform
+ pos: 80.5,15.5
+ parent: 1
+ - uid: 2972
+ components:
+ - type: Transform
+ pos: 81.5,163.5
+ parent: 1
+ - uid: 3007
+ components:
+ - type: Transform
+ pos: 81.5,38.5
+ parent: 1
+ - uid: 3009
+ components:
+ - type: Transform
+ pos: 81.5,37.5
+ parent: 1
+ - uid: 3011
+ components:
+ - type: Transform
+ pos: 81.5,36.5
+ parent: 1
+ - uid: 3015
+ components:
+ - type: Transform
+ pos: 81.5,32.5
+ parent: 1
+ - uid: 3017
+ components:
+ - type: Transform
+ pos: 81.5,31.5
+ parent: 1
+ - uid: 3019
+ components:
+ - type: Transform
+ pos: 81.5,30.5
+ parent: 1
+ - uid: 3021
+ components:
+ - type: Transform
+ pos: 81.5,29.5
+ parent: 1
+ - uid: 3032
+ components:
+ - type: Transform
+ pos: 81.5,15.5
+ parent: 1
+ - uid: 3051
+ components:
+ - type: Transform
+ pos: 82.5,89.5
+ parent: 1
+ - uid: 3074
+ components:
+ - type: Transform
+ pos: 83.5,163.5
+ parent: 1
+ - uid: 3207
+ components:
+ - type: Transform
+ pos: 78.5,135.5
+ parent: 1
+ - uid: 3230
+ components:
+ - type: Transform
+ pos: 85.5,92.5
+ parent: 1
+ - uid: 3232
+ components:
+ - type: Transform
+ pos: 85.5,91.5
+ parent: 1
+ - uid: 3234
+ components:
+ - type: Transform
+ pos: 85.5,90.5
+ parent: 1
+ - uid: 3253
+ components:
+ - type: Transform
+ pos: 85.5,53.5
+ parent: 1
+ - uid: 3298
+ components:
+ - type: Transform
+ pos: 86.5,123.5
+ parent: 1
+ - uid: 3308
+ components:
+ - type: Transform
+ pos: 86.5,111.5
+ parent: 1
+ - uid: 3330
+ components:
+ - type: Transform
+ pos: 87.5,111.5
+ parent: 1
+ - uid: 3379
+ components:
+ - type: Transform
+ pos: 87.5,17.5
+ parent: 1
+ - uid: 3387
+ components:
+ - type: Transform
+ pos: 88.5,111.5
+ parent: 1
+ - uid: 3409
+ components:
+ - type: Transform
+ pos: 88.5,17.5
+ parent: 1
+ - uid: 3413
+ components:
+ - type: Transform
+ pos: 89.5,172.5
+ parent: 1
+ - uid: 3415
+ components:
+ - type: Transform
+ pos: 89.5,171.5
+ parent: 1
+ - uid: 3419
+ components:
+ - type: Transform
+ pos: 89.5,169.5
+ parent: 1
+ - uid: 3421
+ components:
+ - type: Transform
+ pos: 89.5,168.5
+ parent: 1
+ - uid: 3475
+ components:
+ - type: Transform
+ pos: 89.5,17.5
+ parent: 1
+ - uid: 3522
+ components:
+ - type: Transform
+ pos: 90.5,123.5
+ parent: 1
+ - uid: 3569
+ components:
+ - type: Transform
+ pos: 90.5,17.5
+ parent: 1
+ - uid: 3571
+ components:
+ - type: Transform
+ pos: 91.5,174.5
+ parent: 1
+ - uid: 3615
+ components:
+ - type: Transform
+ pos: 91.5,17.5
+ parent: 1
+ - uid: 3617
+ components:
+ - type: Transform
+ pos: 92.5,174.5
+ parent: 1
+ - uid: 3634
+ components:
+ - type: Transform
+ pos: 92.5,144.5
+ parent: 1
+ - uid: 3636
+ components:
+ - type: Transform
+ pos: 92.5,143.5
+ parent: 1
+ - uid: 3650
+ components:
+ - type: Transform
+ pos: 92.5,135.5
+ parent: 1
+ - uid: 3652
+ components:
+ - type: Transform
+ pos: 92.5,134.5
+ parent: 1
+ - uid: 3715
+ components:
+ - type: Transform
+ pos: 72.5,15.5
+ parent: 1
+ - uid: 3775
+ components:
+ - type: Transform
+ pos: 94.5,120.5
+ parent: 1
+ - uid: 3804
+ components:
+ - type: Transform
+ pos: 94.5,17.5
+ parent: 1
+ - uid: 3806
+ components:
+ - type: Transform
+ pos: 94.5,14.5
+ parent: 1
+ - uid: 3825
+ components:
+ - type: Transform
+ pos: 95.5,120.5
+ parent: 1
+ - uid: 3885
+ components:
+ - type: Transform
+ pos: 96.5,142.5
+ parent: 1
+ - uid: 3887
+ components:
+ - type: Transform
+ pos: 96.5,141.5
+ parent: 1
+ - uid: 3889
+ components:
+ - type: Transform
+ pos: 96.5,140.5
+ parent: 1
+ - uid: 3896
+ components:
+ - type: Transform
+ pos: 96.5,134.5
+ parent: 1
+ - uid: 3898
+ components:
+ - type: Transform
+ pos: 96.5,133.5
+ parent: 1
+ - uid: 3900
+ components:
+ - type: Transform
+ pos: 96.5,132.5
+ parent: 1
+ - uid: 3904
+ components:
+ - type: Transform
+ pos: 96.5,120.5
+ parent: 1
+ - uid: 3944
+ components:
+ - type: Transform
+ pos: 150.5,151.5
+ parent: 1
+ - uid: 3967
+ components:
+ - type: Transform
+ pos: 45.5,50.5
+ parent: 1
+ - uid: 4004
+ components:
+ - type: Transform
+ pos: 78.5,15.5
+ parent: 1
+ - uid: 4091
+ components:
+ - type: Transform
+ pos: 78.5,75.5
+ parent: 1
+ - uid: 4177
+ components:
+ - type: Transform
+ pos: 125.5,32.5
+ parent: 1
+ - uid: 4214
+ components:
+ - type: Transform
+ pos: 78.5,73.5
+ parent: 1
+ - uid: 4282
+ components:
+ - type: Transform
+ pos: 79.5,151.5
+ parent: 1
+ - uid: 4306
+ components:
+ - type: Transform
+ pos: 90.5,114.5
+ parent: 1
+ - uid: 4429
+ components:
+ - type: Transform
+ pos: 105.5,17.5
+ parent: 1
+ - uid: 4488
+ components:
+ - type: Transform
+ pos: 74.5,19.5
+ parent: 1
+ - uid: 4490
+ components:
+ - type: Transform
+ pos: 106.5,17.5
+ parent: 1
+ - uid: 4497
+ components:
+ - type: Transform
+ pos: 107.5,153.5
+ parent: 1
+ - uid: 4542
+ components:
+ - type: Transform
+ pos: 107.5,17.5
+ parent: 1
+ - uid: 4549
+ components:
+ - type: Transform
+ pos: 108.5,153.5
+ parent: 1
+ - uid: 4587
+ components:
+ - type: Transform
+ pos: 108.5,17.5
+ parent: 1
+ - uid: 4594
+ components:
+ - type: Transform
+ pos: 109.5,153.5
+ parent: 1
+ - uid: 4641
+ components:
+ - type: Transform
+ pos: 85.5,55.5
+ parent: 1
+ - uid: 4648
+ components:
+ - type: Transform
+ pos: 109.5,17.5
+ parent: 1
+ - uid: 4656
+ components:
+ - type: Transform
+ pos: 78.5,142.5
+ parent: 1
+ - uid: 4702
+ components:
+ - type: Transform
+ pos: 114.5,172.5
+ parent: 1
+ - uid: 4792
+ components:
+ - type: Transform
+ pos: 71.5,19.5
+ parent: 1
+ - uid: 4848
+ components:
+ - type: Transform
+ pos: 114.5,153.5
+ parent: 1
+ - uid: 4909
+ components:
+ - type: Transform
+ pos: 115.5,153.5
+ parent: 1
+ - uid: 4999
+ components:
+ - type: Transform
+ pos: 113.5,172.5
+ parent: 1
+ - uid: 5070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,56.5
+ parent: 1
+ - uid: 5073
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,154.5
+ parent: 1
+ - uid: 5075
+ components:
+ - type: Transform
+ pos: 125.5,27.5
+ parent: 1
+ - uid: 5076
+ components:
+ - type: Transform
+ pos: 125.5,26.5
+ parent: 1
+ - uid: 5080
+ components:
+ - type: Transform
+ pos: 117.5,18.5
+ parent: 1
+ - uid: 5104
+ components:
+ - type: Transform
+ pos: 125.5,28.5
+ parent: 1
+ - uid: 5105
+ components:
+ - type: Transform
+ pos: 125.5,30.5
+ parent: 1
+ - uid: 5106
+ components:
+ - type: Transform
+ pos: 125.5,31.5
+ parent: 1
+ - uid: 5112
+ components:
+ - type: Transform
+ pos: 118.5,18.5
+ parent: 1
+ - uid: 5122
+ components:
+ - type: Transform
+ pos: 135.5,95.5
+ parent: 1
+ - uid: 5161
+ components:
+ - type: Transform
+ pos: 119.5,18.5
+ parent: 1
+ - uid: 5164
+ components:
+ - type: Transform
+ pos: 108.5,172.5
+ parent: 1
+ - uid: 5179
+ components:
+ - type: Transform
+ pos: 120.5,142.5
+ parent: 1
+ - uid: 5181
+ components:
+ - type: Transform
+ pos: 120.5,141.5
+ parent: 1
+ - uid: 5183
+ components:
+ - type: Transform
+ pos: 120.5,140.5
+ parent: 1
+ - uid: 5190
+ components:
+ - type: Transform
+ pos: 120.5,134.5
+ parent: 1
+ - uid: 5192
+ components:
+ - type: Transform
+ pos: 120.5,133.5
+ parent: 1
+ - uid: 5194
+ components:
+ - type: Transform
+ pos: 120.5,132.5
+ parent: 1
+ - uid: 5198
+ components:
+ - type: Transform
+ pos: 120.5,120.5
+ parent: 1
+ - uid: 5249
+ components:
+ - type: Transform
+ pos: 121.5,120.5
+ parent: 1
+ - uid: 5266
+ components:
+ - type: Transform
+ pos: 121.5,74.5
+ parent: 1
+ - uid: 5268
+ components:
+ - type: Transform
+ pos: 121.5,73.5
+ parent: 1
+ - uid: 5271
+ components:
+ - type: Transform
+ pos: 121.5,71.5
+ parent: 1
+ - uid: 5273
+ components:
+ - type: Transform
+ pos: 121.5,70.5
+ parent: 1
+ - uid: 5276
+ components:
+ - type: Transform
+ pos: 121.5,68.5
+ parent: 1
+ - uid: 5278
+ components:
+ - type: Transform
+ pos: 121.5,67.5
+ parent: 1
+ - uid: 5281
+ components:
+ - type: Transform
+ pos: 121.5,65.5
+ parent: 1
+ - uid: 5283
+ components:
+ - type: Transform
+ pos: 121.5,64.5
+ parent: 1
+ - uid: 5289
+ components:
+ - type: Transform
+ pos: 121.5,59.5
+ parent: 1
+ - uid: 5292
+ components:
+ - type: Transform
+ pos: 38.5,103.5
+ parent: 1
+ - uid: 5294
+ components:
+ - type: Transform
+ pos: 131.5,67.5
+ parent: 1
+ - uid: 5300
+ components:
+ - type: Transform
+ pos: 121.5,49.5
+ parent: 1
+ - uid: 5302
+ components:
+ - type: Transform
+ pos: 121.5,48.5
+ parent: 1
+ - uid: 5312
+ components:
+ - type: Transform
+ pos: 121.5,21.5
+ parent: 1
+ - uid: 5314
+ components:
+ - type: Transform
+ pos: 121.5,20.5
+ parent: 1
+ - uid: 5329
+ components:
+ - type: Transform
+ pos: 122.5,120.5
+ parent: 1
+ - uid: 5352
+ components:
+ - type: Transform
+ pos: 72.5,19.5
+ parent: 1
+ - uid: 5474
+ components:
+ - type: Transform
+ pos: 124.5,59.5
+ parent: 1
+ - uid: 5489
+ components:
+ - type: Transform
+ pos: 163.5,122.5
+ parent: 1
+ - uid: 5490
+ components:
+ - type: Transform
+ pos: 163.5,123.5
+ parent: 1
+ - uid: 5494
+ components:
+ - type: Transform
+ pos: 125.5,141.5
+ parent: 1
+ - uid: 5508
+ components:
+ - type: Transform
+ pos: 125.5,73.5
+ parent: 1
+ - uid: 5510
+ components:
+ - type: Transform
+ pos: 99.5,141.5
+ parent: 1
+ - uid: 5511
+ components:
+ - type: Transform
+ pos: 99.5,142.5
+ parent: 1
+ - uid: 5512
+ components:
+ - type: Transform
+ pos: 125.5,70.5
+ parent: 1
+ - uid: 5514
+ components:
+ - type: Transform
+ pos: 117.5,142.5
+ parent: 1
+ - uid: 5515
+ components:
+ - type: Transform
+ pos: 99.5,136.5
+ parent: 1
+ - uid: 5516
+ components:
+ - type: Transform
+ pos: 125.5,67.5
+ parent: 1
+ - uid: 5518
+ components:
+ - type: Transform
+ pos: 99.5,138.5
+ parent: 1
+ - uid: 5519
+ components:
+ - type: Transform
+ pos: 99.5,137.5
+ parent: 1
+ - uid: 5520
+ components:
+ - type: Transform
+ pos: 125.5,64.5
+ parent: 1
+ - uid: 5522
+ components:
+ - type: Transform
+ pos: 99.5,132.5
+ parent: 1
+ - uid: 5523
+ components:
+ - type: Transform
+ pos: 99.5,133.5
+ parent: 1
+ - uid: 5524
+ components:
+ - type: Transform
+ pos: 99.5,134.5
+ parent: 1
+ - uid: 5525
+ components:
+ - type: Transform
+ pos: 117.5,141.5
+ parent: 1
+ - uid: 5526
+ components:
+ - type: Transform
+ pos: 117.5,140.5
+ parent: 1
+ - uid: 5527
+ components:
+ - type: Transform
+ pos: 112.5,146.5
+ parent: 1
+ - uid: 5528
+ components:
+ - type: Transform
+ pos: 111.5,146.5
+ parent: 1
+ - uid: 5529
+ components:
+ - type: Transform
+ pos: 109.5,146.5
+ parent: 1
+ - uid: 5530
+ components:
+ - type: Transform
+ pos: 108.5,146.5
+ parent: 1
+ - uid: 5531
+ components:
+ - type: Transform
+ pos: 107.5,146.5
+ parent: 1
+ - uid: 5532
+ components:
+ - type: Transform
+ pos: 105.5,146.5
+ parent: 1
+ - uid: 5533
+ components:
+ - type: Transform
+ pos: 104.5,146.5
+ parent: 1
+ - uid: 5534
+ components:
+ - type: Transform
+ pos: 117.5,138.5
+ parent: 1
+ - uid: 5535
+ components:
+ - type: Transform
+ pos: 117.5,137.5
+ parent: 1
+ - uid: 5570
+ components:
+ - type: Transform
+ pos: 126.5,141.5
+ parent: 1
+ - uid: 5572
+ components:
+ - type: Transform
+ pos: 126.5,130.5
+ parent: 1
+ - uid: 5614
+ components:
+ - type: Transform
+ pos: 117.5,136.5
+ parent: 1
+ - uid: 5615
+ components:
+ - type: Transform
+ pos: 117.5,132.5
+ parent: 1
+ - uid: 5618
+ components:
+ - type: Transform
+ pos: 117.5,133.5
+ parent: 1
+ - uid: 5632
+ components:
+ - type: Transform
+ pos: 117.5,134.5
+ parent: 1
+ - uid: 5634
+ components:
+ - type: Transform
+ pos: 132.5,67.5
+ parent: 1
+ - uid: 5641
+ components:
+ - type: Transform
+ pos: 127.5,36.5
+ parent: 1
+ - uid: 5653
+ components:
+ - type: Transform
+ pos: 39.5,103.5
+ parent: 1
+ - uid: 5683
+ components:
+ - type: Transform
+ pos: 129.5,73.5
+ parent: 1
+ - uid: 5685
+ components:
+ - type: Transform
+ pos: 129.5,72.5
+ parent: 1
+ - uid: 5688
+ components:
+ - type: Transform
+ pos: 129.5,70.5
+ parent: 1
+ - uid: 5690
+ components:
+ - type: Transform
+ pos: 129.5,69.5
+ parent: 1
+ - uid: 5692
+ components:
+ - type: Transform
+ pos: 129.5,68.5
+ parent: 1
+ - uid: 5766
+ components:
+ - type: Transform
+ pos: 130.5,53.5
+ parent: 1
+ - uid: 5768
+ components:
+ - type: Transform
+ pos: 130.5,43.5
+ parent: 1
+ - uid: 5786
+ components:
+ - type: Transform
+ pos: 131.5,75.5
+ parent: 1
+ - uid: 5791
+ components:
+ - type: Transform
+ pos: 131.5,53.5
+ parent: 1
+ - uid: 5793
+ components:
+ - type: Transform
+ pos: 131.5,43.5
+ parent: 1
+ - uid: 5804
+ components:
+ - type: Transform
+ pos: 132.5,124.5
+ parent: 1
+ - uid: 5828
+ components:
+ - type: Transform
+ pos: 132.5,53.5
+ parent: 1
+ - uid: 5830
+ components:
+ - type: Transform
+ pos: 132.5,43.5
+ parent: 1
+ - uid: 5864
+ components:
+ - type: Transform
+ pos: 134.5,154.5
+ parent: 1
+ - uid: 5886
+ components:
+ - type: Transform
+ pos: 134.5,75.5
+ parent: 1
+ - uid: 5906
+ components:
+ - type: Transform
+ pos: 135.5,154.5
+ parent: 1
+ - uid: 5938
+ components:
+ - type: Transform
+ pos: 85.5,97.5
+ parent: 1
+ - uid: 5979
+ components:
+ - type: Transform
+ pos: 136.5,71.5
+ parent: 1
+ - uid: 5981
+ components:
+ - type: Transform
+ pos: 136.5,70.5
+ parent: 1
+ - uid: 5983
+ components:
+ - type: Transform
+ pos: 136.5,69.5
+ parent: 1
+ - uid: 6088
+ components:
+ - type: Transform
+ pos: 138.5,75.5
+ parent: 1
+ - uid: 6090
+ components:
+ - type: Transform
+ pos: 138.5,72.5
+ parent: 1
+ - uid: 6093
+ components:
+ - type: Transform
+ pos: 138.5,43.5
+ parent: 1
+ - uid: 6155
+ components:
+ - type: Transform
+ pos: 140.5,68.5
+ parent: 1
+ - uid: 6157
+ components:
+ - type: Transform
+ pos: 140.5,67.5
+ parent: 1
+ - uid: 6159
+ components:
+ - type: Transform
+ pos: 140.5,66.5
+ parent: 1
+ - uid: 6185
+ components:
+ - type: Transform
+ pos: 141.5,105.5
+ parent: 1
+ - uid: 6187
+ components:
+ - type: Transform
+ pos: 141.5,104.5
+ parent: 1
+ - uid: 6189
+ components:
+ - type: Transform
+ pos: 141.5,103.5
+ parent: 1
+ - uid: 6203
+ components:
+ - type: Transform
+ pos: 141.5,68.5
+ parent: 1
+ - uid: 6260
+ components:
+ - type: Transform
+ pos: 142.5,68.5
+ parent: 1
+ - uid: 6308
+ components:
+ - type: Transform
+ pos: 143.5,68.5
+ parent: 1
+ - uid: 6326
+ components:
+ - type: Transform
+ pos: 27.5,92.5
+ parent: 1
+ - uid: 6330
+ components:
+ - type: Transform
+ pos: 27.5,88.5
+ parent: 1
+ - uid: 6331
+ components:
+ - type: Transform
+ pos: 27.5,87.5
+ parent: 1
+ - uid: 6357
+ components:
+ - type: Transform
+ pos: 144.5,68.5
+ parent: 1
+ - uid: 6364
+ components:
+ - type: Transform
+ pos: 149.5,42.5
+ parent: 1
+ - uid: 6366
+ components:
+ - type: Transform
+ pos: 145.5,155.5
+ parent: 1
+ - uid: 6407
+ components:
+ - type: Transform
+ pos: 145.5,68.5
+ parent: 1
+ - uid: 6417
+ components:
+ - type: Transform
+ pos: 146.5,155.5
+ parent: 1
+ - uid: 6436
+ components:
+ - type: Transform
+ pos: 146.5,68.5
+ parent: 1
+ - uid: 6438
+ components:
+ - type: Transform
+ pos: 146.5,67.5
+ parent: 1
+ - uid: 6440
+ components:
+ - type: Transform
+ pos: 146.5,66.5
+ parent: 1
+ - uid: 6449
+ components:
+ - type: Transform
+ pos: 146.5,54.5
+ parent: 1
+ - uid: 6457
+ components:
+ - type: Transform
+ pos: 147.5,155.5
+ parent: 1
+ - uid: 6512
+ components:
+ - type: Transform
+ pos: 147.5,54.5
+ parent: 1
+ - uid: 6536
+ components:
+ - type: Transform
+ pos: 148.5,54.5
+ parent: 1
+ - uid: 6539
+ components:
+ - type: Transform
+ pos: 152.5,42.5
+ parent: 1
+ - uid: 6555
+ components:
+ - type: Transform
+ pos: 151.5,42.5
+ parent: 1
+ - uid: 6566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,153.5
+ parent: 1
+ - uid: 6584
+ components:
+ - type: Transform
+ pos: 150.5,72.5
+ parent: 1
+ - uid: 6586
+ components:
+ - type: Transform
+ pos: 150.5,71.5
+ parent: 1
+ - uid: 6588
+ components:
+ - type: Transform
+ pos: 150.5,70.5
+ parent: 1
+ - uid: 6596
+ components:
+ - type: Transform
+ pos: 150.5,63.5
+ parent: 1
+ - uid: 6598
+ components:
+ - type: Transform
+ pos: 150.5,62.5
+ parent: 1
+ - uid: 6644
+ components:
+ - type: Transform
+ pos: 141.5,50.5
+ parent: 1
+ - uid: 6885
+ components:
+ - type: Transform
+ pos: 156.5,41.5
+ parent: 1
+ - uid: 6954
+ components:
+ - type: Transform
+ pos: 159.5,108.5
+ parent: 1
+ - uid: 6958
+ components:
+ - type: Transform
+ pos: 159.5,103.5
+ parent: 1
+ - uid: 6966
+ components:
+ - type: Transform
+ pos: 159.5,99.5
+ parent: 1
+ - uid: 6968
+ components:
+ - type: Transform
+ pos: 159.5,98.5
+ parent: 1
+ - uid: 6973
+ components:
+ - type: Transform
+ pos: 85.5,54.5
+ parent: 1
+ - uid: 7019
+ components:
+ - type: Transform
+ pos: 160.5,108.5
+ parent: 1
+ - uid: 7054
+ components:
+ - type: Transform
+ pos: 161.5,108.5
+ parent: 1
+ - uid: 7076
+ components:
+ - type: Transform
+ pos: 86.5,53.5
+ parent: 1
+ - uid: 7080
+ components:
+ - type: Transform
+ pos: 162.5,108.5
+ parent: 1
+ - uid: 7090
+ components:
+ - type: Transform
+ pos: 162.5,75.5
+ parent: 1
+ - uid: 7092
+ components:
+ - type: Transform
+ pos: 162.5,74.5
+ parent: 1
+ - uid: 7160
+ components:
+ - type: Transform
+ pos: 164.5,58.5
+ parent: 1
+ - uid: 7163
+ components:
+ - type: Transform
+ pos: 164.5,56.5
+ parent: 1
+ - uid: 7178
+ components:
+ - type: Transform
+ pos: 45.5,51.5
+ parent: 1
+ - uid: 7179
+ components:
+ - type: Transform
+ pos: 45.5,49.5
+ parent: 1
+ - uid: 7191
+ components:
+ - type: Transform
+ pos: 165.5,58.5
+ parent: 1
+ - uid: 7193
+ components:
+ - type: Transform
+ pos: 165.5,56.5
+ parent: 1
+ - uid: 7212
+ components:
+ - type: Transform
+ pos: 166.5,58.5
+ parent: 1
+ - uid: 7215
+ components:
+ - type: Transform
+ pos: 166.5,56.5
+ parent: 1
+ - uid: 7990
+ components:
+ - type: Transform
+ pos: 112.5,172.5
+ parent: 1
+ - uid: 8560
+ components:
+ - type: Transform
+ pos: 78.5,19.5
+ parent: 1
+ - uid: 8604
+ components:
+ - type: Transform
+ pos: 75.5,19.5
+ parent: 1
+ - uid: 9364
+ components:
+ - type: Transform
+ pos: 78.5,136.5
+ parent: 1
+ - uid: 9595
+ components:
+ - type: Transform
+ pos: 71.5,40.5
+ parent: 1
+ - uid: 9687
+ components:
+ - type: Transform
+ pos: 79.5,19.5
+ parent: 1
+ - uid: 9742
+ components:
+ - type: Transform
+ pos: 76.5,19.5
+ parent: 1
+ - uid: 10465
+ components:
+ - type: Transform
+ pos: 126.5,163.5
+ parent: 1
+ - uid: 10534
+ components:
+ - type: Transform
+ pos: 41.5,71.5
+ parent: 1
+ - uid: 10535
+ components:
+ - type: Transform
+ pos: 41.5,75.5
+ parent: 1
+ - uid: 10605
+ components:
+ - type: Transform
+ pos: 54.5,55.5
+ parent: 1
+ - uid: 10606
+ components:
+ - type: Transform
+ pos: 54.5,56.5
+ parent: 1
+ - uid: 10754
+ components:
+ - type: Transform
+ pos: 143.5,111.5
+ parent: 1
+ - uid: 10911
+ components:
+ - type: Transform
+ pos: 165.5,130.5
+ parent: 1
+ - uid: 11351
+ components:
+ - type: Transform
+ pos: 130.5,89.5
+ parent: 1
+ - uid: 11353
+ components:
+ - type: Transform
+ pos: 130.5,93.5
+ parent: 1
+ - uid: 11358
+ components:
+ - type: Transform
+ pos: 133.5,95.5
+ parent: 1
+ - uid: 11915
+ components:
+ - type: Transform
+ pos: 54.5,73.5
+ parent: 1
+ - uid: 12948
+ components:
+ - type: Transform
+ pos: 50.5,32.5
+ parent: 1
+ - uid: 13129
+ components:
+ - type: Transform
+ pos: 45.5,36.5
+ parent: 1
+ - uid: 13130
+ components:
+ - type: Transform
+ pos: 45.5,37.5
+ parent: 1
+ - uid: 13131
+ components:
+ - type: Transform
+ pos: 45.5,39.5
+ parent: 1
+ - uid: 13132
+ components:
+ - type: Transform
+ pos: 45.5,40.5
+ parent: 1
+ - uid: 13502
+ components:
+ - type: Transform
+ pos: 51.5,35.5
+ parent: 1
+ - uid: 13586
+ components:
+ - type: Transform
+ pos: 63.5,58.5
+ parent: 1
+ - uid: 13777
+ components:
+ - type: Transform
+ pos: 108.5,157.5
+ parent: 1
+ - uid: 13778
+ components:
+ - type: Transform
+ pos: 109.5,157.5
+ parent: 1
+ - uid: 13779
+ components:
+ - type: Transform
+ pos: 110.5,157.5
+ parent: 1
+ - uid: 13780
+ components:
+ - type: Transform
+ pos: 111.5,157.5
+ parent: 1
+ - uid: 13781
+ components:
+ - type: Transform
+ pos: 112.5,157.5
+ parent: 1
+ - uid: 14280
+ components:
+ - type: Transform
+ pos: 74.5,115.5
+ parent: 1
+ - uid: 14477
+ components:
+ - type: Transform
+ pos: 77.5,115.5
+ parent: 1
+ - uid: 14976
+ components:
+ - type: Transform
+ pos: 126.5,159.5
+ parent: 1
+ - uid: 14983
+ components:
+ - type: Transform
+ pos: 123.5,172.5
+ parent: 1
+ - uid: 15014
+ components:
+ - type: Transform
+ pos: 97.5,157.5
+ parent: 1
+ - uid: 15016
+ components:
+ - type: Transform
+ pos: 101.5,157.5
+ parent: 1
+ - uid: 16022
+ components:
+ - type: Transform
+ pos: 78.5,143.5
+ parent: 1
+ - uid: 16133
+ components:
+ - type: Transform
+ pos: 29.5,104.5
+ parent: 1
+ - uid: 16406
+ components:
+ - type: Transform
+ pos: 100.5,122.5
+ parent: 1
+ - uid: 16587
+ components:
+ - type: Transform
+ pos: 99.5,121.5
+ parent: 1
+ - uid: 16836
+ components:
+ - type: Transform
+ pos: 126.5,170.5
+ parent: 1
+ - uid: 17764
+ components:
+ - type: Transform
+ pos: 124.5,143.5
+ parent: 1
+ - uid: 17942
+ components:
+ - type: Transform
+ pos: 165.5,148.5
+ parent: 1
+ - uid: 18068
+ components:
+ - type: Transform
+ pos: 167.5,138.5
+ parent: 1
+ - uid: 18070
+ components:
+ - type: Transform
+ pos: 168.5,138.5
+ parent: 1
+ - uid: 18072
+ components:
+ - type: Transform
+ pos: 170.5,135.5
+ parent: 1
+ - uid: 18074
+ components:
+ - type: Transform
+ pos: 169.5,137.5
+ parent: 1
+ - uid: 18075
+ components:
+ - type: Transform
+ pos: 168.5,137.5
+ parent: 1
+ - uid: 18083
+ components:
+ - type: Transform
+ pos: 169.5,132.5
+ parent: 1
+ - uid: 18084
+ components:
+ - type: Transform
+ pos: 167.5,131.5
+ parent: 1
+ - uid: 18276
+ components:
+ - type: Transform
+ pos: 146.5,105.5
+ parent: 1
+ - uid: 18277
+ components:
+ - type: Transform
+ pos: 146.5,104.5
+ parent: 1
+ - uid: 18278
+ components:
+ - type: Transform
+ pos: 146.5,103.5
+ parent: 1
+ - uid: 18939
+ components:
+ - type: Transform
+ pos: 126.5,120.5
+ parent: 1
+ - uid: 19357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,74.5
+ parent: 1
+ - uid: 19362
+ components:
+ - type: Transform
+ pos: 164.5,47.5
+ parent: 1
+ - uid: 19431
+ components:
+ - type: Transform
+ pos: 84.5,100.5
+ parent: 1
+ - uid: 19527
+ components:
+ - type: Transform
+ pos: 39.5,127.5
+ parent: 1
+ - uid: 19584
+ components:
+ - type: Transform
+ pos: 148.5,42.5
+ parent: 1
+ - uid: 19857
+ components:
+ - type: Transform
+ pos: 164.5,45.5
+ parent: 1
+ - uid: 20760
+ components:
+ - type: Transform
+ pos: 45.5,106.5
+ parent: 1
+ - uid: 20921
+ components:
+ - type: Transform
+ pos: 37.5,85.5
+ parent: 1
+ - uid: 20930
+ components:
+ - type: Transform
+ pos: 41.5,87.5
+ parent: 1
+ - uid: 20931
+ components:
+ - type: Transform
+ pos: 41.5,88.5
+ parent: 1
+ - uid: 20932
+ components:
+ - type: Transform
+ pos: 41.5,89.5
+ parent: 1
+ - uid: 20987
+ components:
+ - type: Transform
+ pos: 41.5,91.5
+ parent: 1
+ - uid: 20994
+ components:
+ - type: Transform
+ pos: 41.5,92.5
+ parent: 1
+ - uid: 21005
+ components:
+ - type: Transform
+ pos: 41.5,93.5
+ parent: 1
+ - uid: 21068
+ components:
+ - type: Transform
+ pos: 41.5,84.5
+ parent: 1
+ - uid: 23062
+ components:
+ - type: Transform
+ pos: 126.5,57.5
+ parent: 1
+ - uid: 23695
+ components:
+ - type: Transform
+ pos: 126.5,161.5
+ parent: 1
+ - uid: 23786
+ components:
+ - type: Transform
+ pos: 156.5,86.5
+ parent: 1
+ - uid: 25261
+ components:
+ - type: Transform
+ pos: 95.5,116.5
+ parent: 1
+ - uid: 25262
+ components:
+ - type: Transform
+ pos: 93.5,116.5
+ parent: 1
+ - uid: 25263
+ components:
+ - type: Transform
+ pos: 94.5,116.5
+ parent: 1
+ - uid: 25874
+ components:
+ - type: Transform
+ pos: 60.5,60.5
+ parent: 1
+ - uid: 26147
+ components:
+ - type: Transform
+ pos: 33.5,48.5
+ parent: 1
+ - uid: 26354
+ components:
+ - type: Transform
+ pos: 111.5,172.5
+ parent: 1
+ - uid: 26410
+ components:
+ - type: Transform
+ pos: 109.5,172.5
+ parent: 1
+ - uid: 26928
+ components:
+ - type: Transform
+ pos: 120.5,150.5
+ parent: 1
+ - uid: 27264
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,35.5
+ parent: 1
+ - uid: 27673
+ components:
+ - type: Transform
+ pos: 163.5,118.5
+ parent: 1
+ - uid: 27961
+ components:
+ - type: Transform
+ pos: 146.5,135.5
+ parent: 1
+ - uid: 28641
+ components:
+ - type: Transform
+ pos: 151.5,52.5
+ parent: 1
+ - uid: 29146
+ components:
+ - type: Transform
+ pos: 127.5,38.5
+ parent: 1
+ - uid: 29725
+ components:
+ - type: Transform
+ pos: 127.5,120.5
+ parent: 1
+ - uid: 29736
+ components:
+ - type: Transform
+ pos: 128.5,120.5
+ parent: 1
+ - uid: 29813
+ components:
+ - type: Transform
+ pos: 145.5,135.5
+ parent: 1
+ - uid: 29814
+ components:
+ - type: Transform
+ pos: 144.5,135.5
+ parent: 1
+ - uid: 29837
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,154.5
+ parent: 1
+ - uid: 29851
+ components:
+ - type: Transform
+ pos: 150.5,152.5
+ parent: 1
+ - uid: 29934
+ components:
+ - type: Transform
+ pos: 150.5,150.5
+ parent: 1
+ - uid: 29985
+ components:
+ - type: Transform
+ pos: 150.5,155.5
+ parent: 1
+ - uid: 29991
+ components:
+ - type: Transform
+ pos: 142.5,156.5
+ parent: 1
+ - uid: 30045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,154.5
+ parent: 1
+ - uid: 30099
+ components:
+ - type: Transform
+ pos: 158.5,152.5
+ parent: 1
+ - uid: 30100
+ components:
+ - type: Transform
+ pos: 150.5,156.5
+ parent: 1
+ - uid: 30101
+ components:
+ - type: Transform
+ pos: 142.5,155.5
+ parent: 1
+ - uid: 30206
+ components:
+ - type: Transform
+ pos: 154.5,151.5
+ parent: 1
+ - uid: 30207
+ components:
+ - type: Transform
+ pos: 154.5,152.5
+ parent: 1
+ - uid: 30214
+ components:
+ - type: Transform
+ pos: 163.5,150.5
+ parent: 1
+ - uid: 30735
+ components:
+ - type: Transform
+ pos: 41.5,45.5
+ parent: 1
+ - uid: 31826
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,173.5
+ parent: 1
+ - uid: 32171
+ components:
+ - type: Transform
+ pos: 27.5,125.5
+ parent: 1
+ - uid: 32182
+ components:
+ - type: Transform
+ pos: 23.5,125.5
+ parent: 1
+ - uid: 32223
+ components:
+ - type: Transform
+ pos: 126.5,169.5
+ parent: 1
+ - uid: 32239
+ components:
+ - type: Transform
+ pos: 41.5,127.5
+ parent: 1
+ - uid: 32587
+ components:
+ - type: Transform
+ pos: 137.5,152.5
+ parent: 1
+ - uid: 33974
+ components:
+ - type: Transform
+ pos: 124.5,144.5
+ parent: 1
+ - uid: 33976
+ components:
+ - type: Transform
+ pos: 124.5,145.5
+ parent: 1
+ - uid: 34498
+ components:
+ - type: Transform
+ pos: 164.5,51.5
+ parent: 1
+ - uid: 34499
+ components:
+ - type: Transform
+ pos: 164.5,49.5
+ parent: 1
+ - uid: 34503
+ components:
+ - type: Transform
+ pos: 160.5,41.5
+ parent: 1
+ - uid: 34776
+ components:
+ - type: Transform
+ pos: 124.5,172.5
+ parent: 1
+ - uid: 34953
+ components:
+ - type: Transform
+ pos: 163.5,120.5
+ parent: 1
+ - uid: 34954
+ components:
+ - type: Transform
+ pos: 163.5,119.5
+ parent: 1
+ - uid: 34955
+ components:
+ - type: Transform
+ pos: 163.5,117.5
+ parent: 1
+ - uid: 34956
+ components:
+ - type: Transform
+ pos: 163.5,116.5
+ parent: 1
+ - uid: 34957
+ components:
+ - type: Transform
+ pos: 163.5,114.5
+ parent: 1
+ - uid: 34958
+ components:
+ - type: Transform
+ pos: 163.5,113.5
+ parent: 1
+ - uid: 34973
+ components:
+ - type: Transform
+ pos: 54.5,74.5
+ parent: 1
+ - uid: 35197
+ components:
+ - type: Transform
+ pos: 50.5,131.5
+ parent: 1
+ - uid: 35513
+ components:
+ - type: Transform
+ pos: 126.5,171.5
+ parent: 1
+ - uid: 35546
+ components:
+ - type: Transform
+ pos: 125.5,172.5
+ parent: 1
+ - uid: 35755
+ components:
+ - type: Transform
+ pos: 50.5,133.5
+ parent: 1
+ - uid: 35756
+ components:
+ - type: Transform
+ pos: 50.5,129.5
+ parent: 1
+ - uid: 35831
+ components:
+ - type: Transform
+ pos: 125.5,171.5
+ parent: 1
+ - uid: 36024
+ components:
+ - type: Transform
+ pos: 37.5,127.5
+ parent: 1
+ - uid: 36038
+ components:
+ - type: Transform
+ pos: 91.5,44.5
+ parent: 1
+ - uid: 36039
+ components:
+ - type: Transform
+ pos: 92.5,44.5
+ parent: 1
+ - uid: 36050
+ components:
+ - type: Transform
+ pos: 90.5,44.5
+ parent: 1
+ - uid: 36126
+ components:
+ - type: Transform
+ pos: 32.5,124.5
+ parent: 1
+ - uid: 36132
+ components:
+ - type: Transform
+ pos: 92.5,42.5
+ parent: 1
+ - uid: 36452
+ components:
+ - type: Transform
+ pos: 97.5,44.5
+ parent: 1
+ - uid: 36476
+ components:
+ - type: Transform
+ pos: 17.5,93.5
+ parent: 1
+ - uid: 36477
+ components:
+ - type: Transform
+ pos: 17.5,91.5
+ parent: 1
+ - uid: 36495
+ components:
+ - type: Transform
+ pos: 128.5,155.5
+ parent: 1
+ - uid: 36552
+ components:
+ - type: Transform
+ pos: 97.5,42.5
+ parent: 1
+ - uid: 36592
+ components:
+ - type: Transform
+ pos: 126.5,157.5
+ parent: 1
+ - uid: 36612
+ components:
+ - type: Transform
+ pos: 130.5,155.5
+ parent: 1
+ - uid: 36749
+ components:
+ - type: Transform
+ pos: 98.5,44.5
+ parent: 1
+ - uid: 36856
+ components:
+ - type: Transform
+ pos: 99.5,44.5
+ parent: 1
+ - uid: 37130
+ components:
+ - type: Transform
+ pos: 166.5,144.5
+ parent: 1
+ - uid: 37177
+ components:
+ - type: Transform
+ pos: 170.5,134.5
+ parent: 1
+ - uid: 37198
+ components:
+ - type: Transform
+ pos: 168.5,132.5
+ parent: 1
+ - uid: 37199
+ components:
+ - type: Transform
+ pos: 168.5,131.5
+ parent: 1
+ - uid: 37264
+ components:
+ - type: Transform
+ pos: 97.5,43.5
+ parent: 1
+ - uid: 37265
+ components:
+ - type: Transform
+ pos: 96.5,43.5
+ parent: 1
+ - uid: 37266
+ components:
+ - type: Transform
+ pos: 95.5,43.5
+ parent: 1
+ - uid: 37268
+ components:
+ - type: Transform
+ pos: 92.5,43.5
+ parent: 1
+ - uid: 37318
+ components:
+ - type: Transform
+ pos: 130.5,128.5
+ parent: 1
+ - uid: 37319
+ components:
+ - type: Transform
+ pos: 132.5,130.5
+ parent: 1
+ - uid: 37322
+ components:
+ - type: Transform
+ pos: 94.5,43.5
+ parent: 1
+ - uid: 37331
+ components:
+ - type: Transform
+ pos: 93.5,43.5
+ parent: 1
+ - uid: 37333
+ components:
+ - type: Transform
+ pos: 158.5,84.5
+ parent: 1
+ - uid: 37374
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,65.5
+ parent: 1
+ - uid: 37377
+ components:
+ - type: Transform
+ pos: 32.5,48.5
+ parent: 1
+ - uid: 37380
+ components:
+ - type: Transform
+ pos: 32.5,49.5
+ parent: 1
+ - uid: 37570
+ components:
+ - type: Transform
+ pos: 158.5,95.5
+ parent: 1
+ - uid: 37571
+ components:
+ - type: Transform
+ pos: 159.5,95.5
+ parent: 1
+ - uid: 37572
+ components:
+ - type: Transform
+ pos: 159.5,96.5
+ parent: 1
+ - uid: 37574
+ components:
+ - type: Transform
+ pos: 99.5,122.5
+ parent: 1
+ - uid: 37578
+ components:
+ - type: Transform
+ pos: 147.5,133.5
+ parent: 1
+- proto: RemoteSignaller
+ entities:
+ - uid: 20979
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 35.227585,115.26648
+ parent: 1
+ - uid: 20980
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 49.335274,86.63468
+ parent: 1
+- proto: ResearchAndDevelopmentServer
+ entities:
+ - uid: 20949
+ components:
+ - type: Transform
+ pos: 50.5,107.5
+ parent: 1
+- proto: RevolverCapGun
+ entities:
+ - uid: 26768
+ components:
+ - type: Transform
+ pos: 108.50114,61.676697
+ parent: 1
+ - uid: 36053
+ components:
+ - type: Transform
+ pos: 124.4815,171.57695
+ parent: 1
+- proto: RiotBulletShield
+ entities:
+ - uid: 5657
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.44302,65.745636
+ parent: 1
+ - type: Blocking
+ blockingToggleActionEntity: 5660
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 5660
+- proto: RiotLaserShield
+ entities:
+ - uid: 22746
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.17395,65.74098
+ parent: 1
+ - type: Blocking
+ blockingToggleActionEntity: 22747
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 22747
+- proto: RiotShield
+ entities:
+ - uid: 22655
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.69579,65.47656
+ parent: 1
+ - type: Blocking
+ blockingToggleActionEntity: 22656
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 22656
+ - uid: 22766
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 130.68764,65.794556
+ parent: 1
+ - type: Blocking
+ blockingToggleActionEntity: 22767
+ - type: ActionsContainer
+ - type: ContainerContainer
+ containers:
+ actions: !type:Container
+ ents:
+ - 22767
+- proto: RobocopCircuitBoard
+ entities:
+ - uid: 13267
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.371597,37.918766
+ parent: 1
+- proto: RubberStampTrader
+ entities:
+ - uid: 19384
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 140.54768,104.26616
+ parent: 1
+- proto: SalvageMagnet
+ entities:
+ - uid: 21036
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,89.5
+ parent: 1
+- proto: SandBattlemap
+ entities:
+ - uid: 9665
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.36829,55.351227
+ parent: 1
+- proto: Scalpel
+ entities:
+ - uid: 20423
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 63.38437,83.43034
+ parent: 1
+ - uid: 26983
+ components:
+ - type: Transform
+ pos: 61.53977,74.23573
+ parent: 1
+- proto: ScalpelShiv
+ entities:
+ - uid: 23056
+ components:
+ - type: Transform
+ rot: -163.36281798666897 rad
+ pos: 136.48273,46.35854
+ parent: 1
+ - uid: 33557
+ components:
+ - type: Transform
+ pos: 108.9065,20.249084
+ parent: 1
+- proto: Screen
+ entities:
+ - uid: 632
+ components:
+ - type: Transform
+ pos: 54.5,98.5
+ parent: 1
+ - uid: 2680
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 102.5,102.5
+ parent: 1
+ - uid: 4241
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,102.5
+ parent: 1
+ - uid: 24081
+ components:
+ - type: Transform
+ pos: 156.5,101.5
+ parent: 1
+ - uid: 24347
+ components:
+ - type: Transform
+ pos: 98.5,72.5
+ parent: 1
+ - uid: 25418
+ components:
+ - type: Transform
+ pos: 114.5,74.5
+ parent: 1
+ - uid: 27319
+ components:
+ - type: Transform
+ pos: 97.5,83.5
+ parent: 1
+ - uid: 27325
+ components:
+ - type: Transform
+ pos: 91.5,77.5
+ parent: 1
+ - uid: 27326
+ components:
+ - type: Transform
+ pos: 82.5,69.5
+ parent: 1
+ - uid: 27329
+ components:
+ - type: Transform
+ pos: 102.5,93.5
+ parent: 1
+ - uid: 27332
+ components:
+ - type: Transform
+ pos: 97.5,114.5
+ parent: 1
+ - uid: 27333
+ components:
+ - type: Transform
+ pos: 119.5,114.5
+ parent: 1
+ - uid: 27334
+ components:
+ - type: Transform
+ pos: 137.5,52.5
+ parent: 1
+ - uid: 27335
+ components:
+ - type: Transform
+ pos: 144.5,59.5
+ parent: 1
+ - uid: 27336
+ components:
+ - type: Transform
+ pos: 150.5,69.5
+ parent: 1
+ - uid: 27337
+ components:
+ - type: Transform
+ pos: 128.5,75.5
+ parent: 1
+ - uid: 27339
+ components:
+ - type: Transform
+ pos: 132.5,95.5
+ parent: 1
+ - uid: 27340
+ components:
+ - type: Transform
+ pos: 146.5,106.5
+ parent: 1
+ - uid: 27341
+ components:
+ - type: Transform
+ pos: 124.5,123.5
+ parent: 1
+ - uid: 27342
+ components:
+ - type: Transform
+ pos: 120.5,143.5
+ parent: 1
+ - uid: 27343
+ components:
+ - type: Transform
+ pos: 112.5,153.5
+ parent: 1
+ - uid: 27344
+ components:
+ - type: Transform
+ pos: 92.5,154.5
+ parent: 1
+ - uid: 27345
+ components:
+ - type: Transform
+ pos: 92.5,137.5
+ parent: 1
+ - uid: 27346
+ components:
+ - type: Transform
+ pos: 92.5,124.5
+ parent: 1
+ - uid: 27347
+ components:
+ - type: Transform
+ pos: 72.5,120.5
+ parent: 1
+ - uid: 27348
+ components:
+ - type: Transform
+ pos: 76.5,154.5
+ parent: 1
+ - uid: 27349
+ components:
+ - type: Transform
+ pos: 90.5,131.5
+ parent: 1
+ - uid: 27350
+ components:
+ - type: Transform
+ pos: 69.5,92.5
+ parent: 1
+ - uid: 27351
+ components:
+ - type: Transform
+ pos: 85.5,95.5
+ parent: 1
+ - uid: 27352
+ components:
+ - type: Transform
+ pos: 73.5,84.5
+ parent: 1
+ - uid: 27353
+ components:
+ - type: Transform
+ pos: 58.5,82.5
+ parent: 1
+ - uid: 27354
+ components:
+ - type: Transform
+ pos: 58.5,104.5
+ parent: 1
+ - uid: 27356
+ components:
+ - type: Transform
+ pos: 40.5,103.5
+ parent: 1
+ - uid: 27357
+ components:
+ - type: Transform
+ pos: 36.5,85.5
+ parent: 1
+ - uid: 27358
+ components:
+ - type: Transform
+ pos: 37.5,113.5
+ parent: 1
+ - uid: 27359
+ components:
+ - type: Transform
+ pos: 45.5,52.5
+ parent: 1
+ - uid: 27360
+ components:
+ - type: Transform
+ pos: 31.5,56.5
+ parent: 1
+ - uid: 27371
+ components:
+ - type: Transform
+ pos: 100.5,49.5
+ parent: 1
+ - uid: 27372
+ components:
+ - type: Transform
+ pos: 125.5,48.5
+ parent: 1
+ - uid: 28740
+ components:
+ - type: Transform
+ pos: 81.5,61.5
+ parent: 1
+ - uid: 28929
+ components:
+ - type: Transform
+ pos: 74.5,66.5
+ parent: 1
+ - uid: 31832
+ components:
+ - type: Transform
+ pos: 115.5,83.5
+ parent: 1
+ - uid: 32928
+ components:
+ - type: Transform
+ pos: 153.5,96.5
+ parent: 1
+- proto: SecurityTechFab
+ entities:
+ - uid: 22760
+ components:
+ - type: Transform
+ pos: 132.5,64.5
+ parent: 1
+- proto: SeedExtractor
+ entities:
+ - uid: 23009
+ components:
+ - type: Transform
+ pos: 133.5,44.5
+ parent: 1
+ - uid: 26648
+ components:
+ - type: Transform
+ pos: 101.5,101.5
+ parent: 1
+- proto: ShardGlass
+ entities:
+ - uid: 33694
+ components:
+ - type: Transform
+ pos: 104.43751,26.424263
+ parent: 1
+ - uid: 33708
+ components:
+ - type: Transform
+ pos: 105.23959,27.424263
+ parent: 1
+ - uid: 33709
+ components:
+ - type: Transform
+ pos: 121.61714,31.45747
+ parent: 1
+- proto: SheetGlass
+ entities:
+ - uid: 16061
+ components:
+ - type: Transform
+ pos: 136.5,134.5
+ parent: 1
+ - uid: 20439
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 53.57274,83.61635
+ parent: 1
+ - uid: 25844
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 86.49521,59.611404
+ parent: 1
+- proto: SheetPlasma
+ entities:
+ - uid: 3486
+ components:
+ - type: Transform
+ pos: 132.47455,137.56143
+ parent: 1
+ - uid: 21001
+ components:
+ - type: Transform
+ pos: 39.420033,114.54269
+ parent: 1
+- proto: SheetPlasteel
+ entities:
+ - uid: 16054
+ components:
+ - type: Transform
+ pos: 131.5,131.5
+ parent: 1
+ - uid: 19392
+ components:
+ - type: Transform
+ pos: 158.46231,102.69049
+ parent: 1
+ - uid: 32025
+ components:
+ - type: Transform
+ pos: 145.90868,130.53246
+ parent: 1
+ - uid: 36161
+ components:
+ - type: Transform
+ pos: 46.5,71.5
+ parent: 1
+- proto: SheetPlastic
+ entities:
+ - uid: 19394
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 158.51047,97.57992
+ parent: 1
+ - uid: 20442
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 47.52754,84.483
+ parent: 1
+- proto: SheetRGlass
+ entities:
+ - uid: 32037
+ components:
+ - type: Transform
+ pos: 144.90576,130.54062
+ parent: 1
+ - uid: 35945
+ components:
+ - type: Transform
+ pos: 48.5,71.5
+ parent: 1
+- proto: SheetSteel
+ entities:
+ - uid: 16059
+ components:
+ - type: Transform
+ pos: 130.5,131.5
+ parent: 1
+ - uid: 19393
+ components:
+ - type: Transform
+ rot: -43.98229715025713 rad
+ pos: 134.50449,103.5474
+ parent: 1
+ - uid: 20438
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 46.506706,84.53162
+ parent: 1
+ - uid: 22774
+ components:
+ - type: Transform
+ pos: 132.4718,70.60919
+ parent: 1
+ - uid: 26880
+ components:
+ - type: Transform
+ rot: -157.0796326794894 rad
+ pos: 90.43028,61.4401
+ parent: 1
+ - uid: 27362
+ components:
+ - type: Transform
+ pos: 74.44719,153.50386
+ parent: 1
+ - uid: 30248
+ components:
+ - type: Transform
+ pos: 74.462814,125.431885
+ parent: 1
+ - uid: 32022
+ components:
+ - type: Transform
+ pos: 145.42761,130.56506
+ parent: 1
+- proto: SheetSteel10
+ entities:
+ - uid: 36777
+ components:
+ - type: Transform
+ pos: 89.5,132.5
+ parent: 1
+ - uid: 36782
+ components:
+ - type: Transform
+ pos: 89.5,145.5
+ parent: 1
+- proto: SheetUranium1
+ entities:
+ - uid: 3624
+ components:
+ - type: Transform
+ pos: 129.49147,136.44685
+ parent: 1
+ - type: Stack
+ count: 5
+- proto: ShelfBar
+ entities:
+ - uid: 26531
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,105.5
+ parent: 1
+ - uid: 35143
+ components:
+ - type: Transform
+ pos: 107.5,172.5
+ parent: 1
+- proto: ShelfChemistryChemistrySecure
+ entities:
+ - uid: 26532
+ components:
+ - type: Transform
+ pos: 88.5,98.5
+ parent: 1
+- proto: ShelfKitchen
+ entities:
+ - uid: 26533
+ components:
+ - type: Transform
+ pos: 119.5,105.5
+ parent: 1
+- proto: ShipBattlemap
+ entities:
+ - uid: 8531
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.57621,54.59293
+ parent: 1
+- proto: Shovel
+ entities:
+ - uid: 19490
+ components:
+ - type: Transform
+ pos: 146.47488,88.712135
+ parent: 1
+- proto: ShuttersFrame
+ entities:
+ - uid: 33063
+ components:
+ - type: Transform
+ pos: 100.5,19.5
+ parent: 1
+- proto: ShuttersNormal
+ entities:
+ - uid: 19530
+ components:
+ - type: Transform
+ pos: 135.5,109.5
+ parent: 1
+ - uid: 19531
+ components:
+ - type: Transform
+ pos: 135.5,110.5
+ parent: 1
+ - uid: 20901
+ components:
+ - type: Transform
+ pos: 58.5,89.5
+ parent: 1
+ - uid: 20902
+ components:
+ - type: Transform
+ pos: 58.5,90.5
+ parent: 1
+ - uid: 20903
+ components:
+ - type: Transform
+ pos: 58.5,91.5
+ parent: 1
+ - uid: 25486
+ components:
+ - type: Transform
+ pos: 54.5,101.5
+ parent: 1
+ - uid: 27753
+ components:
+ - type: Transform
+ pos: 54.5,102.5
+ parent: 1
+ - uid: 29601
+ components:
+ - type: Transform
+ pos: 157.5,120.5
+ parent: 1
+ - uid: 29603
+ components:
+ - type: Transform
+ pos: 158.5,120.5
+ parent: 1
+ - uid: 33060
+ components:
+ - type: Transform
+ pos: 100.5,21.5
+ parent: 1
+ - uid: 33061
+ components:
+ - type: Transform
+ pos: 100.5,20.5
+ parent: 1
+ - uid: 35988
+ components:
+ - type: Transform
+ pos: 125.5,100.5
+ parent: 1
+ - uid: 35992
+ components:
+ - type: Transform
+ pos: 125.5,99.5
+ parent: 1
+- proto: ShuttersNormalOpen
+ entities:
+ - uid: 546
+ components:
+ - type: Transform
+ pos: 135.5,95.5
+ parent: 1
+ - uid: 846
+ components:
+ - type: Transform
+ pos: 78.5,143.5
+ parent: 1
+ - uid: 2496
+ components:
+ - type: Transform
+ pos: 63.5,58.5
+ parent: 1
+ - uid: 3205
+ components:
+ - type: Transform
+ pos: 78.5,142.5
+ parent: 1
+ - uid: 4274
+ components:
+ - type: Transform
+ pos: 78.5,73.5
+ parent: 1
+ - uid: 4548
+ components:
+ - type: Transform
+ pos: 114.5,97.5
+ parent: 1
+ - uid: 8674
+ components:
+ - type: Transform
+ pos: 114.5,101.5
+ parent: 1
+ - uid: 9428
+ components:
+ - type: Transform
+ pos: 78.5,135.5
+ parent: 1
+ - uid: 13770
+ components:
+ - type: Transform
+ pos: 78.5,75.5
+ parent: 1
+ - uid: 17671
+ components:
+ - type: Transform
+ pos: 78.5,136.5
+ parent: 1
+ - uid: 19622
+ components:
+ - type: Transform
+ pos: 102.5,97.5
+ parent: 1
+ - uid: 22701
+ components:
+ - type: Transform
+ pos: 150.5,62.5
+ parent: 1
+ - uid: 22702
+ components:
+ - type: Transform
+ pos: 150.5,63.5
+ parent: 1
+ - uid: 25194
+ components:
+ - type: Transform
+ pos: 133.5,95.5
+ parent: 1
+ - uid: 27415
+ components:
+ - type: Transform
+ pos: 84.5,100.5
+ parent: 1
+ - uid: 29081
+ components:
+ - type: Transform
+ pos: 85.5,96.5
+ parent: 1
+ - uid: 29082
+ components:
+ - type: Transform
+ pos: 85.5,97.5
+ parent: 1
+ - uid: 29083
+ components:
+ - type: Transform
+ pos: 89.5,101.5
+ parent: 1
+ - uid: 29313
+ components:
+ - type: Transform
+ pos: 130.5,93.5
+ parent: 1
+ - uid: 30721
+ components:
+ - type: Transform
+ pos: 130.5,89.5
+ parent: 1
+ - uid: 37297
+ components:
+ - type: Transform
+ pos: 79.5,125.5
+ parent: 1
+ - uid: 37298
+ components:
+ - type: Transform
+ pos: 79.5,126.5
+ parent: 1
+ - uid: 37299
+ components:
+ - type: Transform
+ pos: 79.5,127.5
+ parent: 1
+ - uid: 37300
+ components:
+ - type: Transform
+ pos: 79.5,151.5
+ parent: 1
+ - uid: 37301
+ components:
+ - type: Transform
+ pos: 79.5,152.5
+ parent: 1
+ - uid: 37302
+ components:
+ - type: Transform
+ pos: 79.5,153.5
+ parent: 1
+ - uid: 37324
+ components:
+ - type: Transform
+ pos: 63.5,59.5
+ parent: 1
+ - uid: 37325
+ components:
+ - type: Transform
+ pos: 56.5,60.5
+ parent: 1
+ - uid: 37326
+ components:
+ - type: Transform
+ pos: 57.5,60.5
+ parent: 1
+ - uid: 37327
+ components:
+ - type: Transform
+ pos: 59.5,60.5
+ parent: 1
+ - uid: 37328
+ components:
+ - type: Transform
+ pos: 60.5,60.5
+ parent: 1
+ - uid: 37394
+ components:
+ - type: Transform
+ pos: 101.5,68.5
+ parent: 1
+ - uid: 37395
+ components:
+ - type: Transform
+ pos: 101.5,69.5
+ parent: 1
+ - uid: 37396
+ components:
+ - type: Transform
+ pos: 102.5,69.5
+ parent: 1
+ - uid: 37397
+ components:
+ - type: Transform
+ pos: 102.5,70.5
+ parent: 1
+ - uid: 37398
+ components:
+ - type: Transform
+ pos: 103.5,70.5
+ parent: 1
+ - uid: 37399
+ components:
+ - type: Transform
+ pos: 104.5,70.5
+ parent: 1
+ - uid: 37400
+ components:
+ - type: Transform
+ pos: 105.5,70.5
+ parent: 1
+ - uid: 37401
+ components:
+ - type: Transform
+ pos: 106.5,70.5
+ parent: 1
+ - uid: 37402
+ components:
+ - type: Transform
+ pos: 107.5,70.5
+ parent: 1
+ - uid: 37403
+ components:
+ - type: Transform
+ pos: 108.5,70.5
+ parent: 1
+ - uid: 37404
+ components:
+ - type: Transform
+ pos: 109.5,70.5
+ parent: 1
+ - uid: 37405
+ components:
+ - type: Transform
+ pos: 110.5,70.5
+ parent: 1
+ - uid: 37406
+ components:
+ - type: Transform
+ pos: 110.5,69.5
+ parent: 1
+ - uid: 37407
+ components:
+ - type: Transform
+ pos: 111.5,69.5
+ parent: 1
+ - uid: 37408
+ components:
+ - type: Transform
+ pos: 111.5,68.5
+ parent: 1
+ - uid: 37413
+ components:
+ - type: Transform
+ pos: 93.5,101.5
+ parent: 1
+ - uid: 37414
+ components:
+ - type: Transform
+ pos: 101.5,105.5
+ parent: 1
+ - uid: 37415
+ components:
+ - type: Transform
+ pos: 100.5,105.5
+ parent: 1
+ - uid: 37416
+ components:
+ - type: Transform
+ pos: 99.5,105.5
+ parent: 1
+ - uid: 37417
+ components:
+ - type: Transform
+ pos: 98.5,105.5
+ parent: 1
+ - uid: 37418
+ components:
+ - type: Transform
+ pos: 115.5,105.5
+ parent: 1
+ - uid: 37419
+ components:
+ - type: Transform
+ pos: 116.5,105.5
+ parent: 1
+ - uid: 37420
+ components:
+ - type: Transform
+ pos: 117.5,105.5
+ parent: 1
+ - uid: 37421
+ components:
+ - type: Transform
+ pos: 118.5,105.5
+ parent: 1
+ - uid: 37560
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 1
+ - uid: 37561
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 1
+ - uid: 37562
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 1
+ - uid: 37576
+ components:
+ - type: Transform
+ pos: 102.5,101.5
+ parent: 1
+- proto: ShuttersRadiationOpen
+ entities:
+ - uid: 14055
+ components:
+ - type: Transform
+ pos: 96.5,132.5
+ parent: 1
+ - uid: 14087
+ components:
+ - type: Transform
+ pos: 96.5,133.5
+ parent: 1
+ - uid: 14088
+ components:
+ - type: Transform
+ pos: 96.5,134.5
+ parent: 1
+ - uid: 14089
+ components:
+ - type: Transform
+ pos: 96.5,140.5
+ parent: 1
+ - uid: 14090
+ components:
+ - type: Transform
+ pos: 96.5,141.5
+ parent: 1
+ - uid: 14091
+ components:
+ - type: Transform
+ pos: 96.5,142.5
+ parent: 1
+ - uid: 14092
+ components:
+ - type: Transform
+ pos: 120.5,140.5
+ parent: 1
+ - uid: 14093
+ components:
+ - type: Transform
+ pos: 120.5,141.5
+ parent: 1
+ - uid: 14094
+ components:
+ - type: Transform
+ pos: 120.5,142.5
+ parent: 1
+ - uid: 14095
+ components:
+ - type: Transform
+ pos: 120.5,132.5
+ parent: 1
+ - uid: 14096
+ components:
+ - type: Transform
+ pos: 120.5,133.5
+ parent: 1
+ - uid: 14097
+ components:
+ - type: Transform
+ pos: 120.5,134.5
+ parent: 1
+ - uid: 14098
+ components:
+ - type: Transform
+ pos: 109.5,153.5
+ parent: 1
+ - uid: 14099
+ components:
+ - type: Transform
+ pos: 108.5,153.5
+ parent: 1
+ - uid: 14100
+ components:
+ - type: Transform
+ pos: 107.5,153.5
+ parent: 1
+ - uid: 14101
+ components:
+ - type: Transform
+ pos: 114.5,153.5
+ parent: 1
+ - uid: 14102
+ components:
+ - type: Transform
+ pos: 115.5,153.5
+ parent: 1
+ - uid: 34039
+ components:
+ - type: Transform
+ pos: 124.5,143.5
+ parent: 1
+ - uid: 34040
+ components:
+ - type: Transform
+ pos: 124.5,144.5
+ parent: 1
+ - uid: 35198
+ components:
+ - type: Transform
+ pos: 124.5,145.5
+ parent: 1
+ - uid: 37310
+ components:
+ - type: Transform
+ pos: 120.5,150.5
+ parent: 1
+- proto: SignAi
+ entities:
+ - uid: 4100
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 44.5,47.5
+ parent: 1
+ - uid: 12934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,35.5
+ parent: 1
+- proto: SignAiUpload
+ entities:
+ - uid: 6254
+ components:
+ - type: Transform
+ pos: 46.5,43.5
+ parent: 1
+- proto: SignalButton
+ entities:
+ - uid: 15034
+ components:
+ - type: MetaData
+ name: containment storage signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,153.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 15032:
+ - Pressed: Toggle
+ 15031:
+ - Pressed: Toggle
+ 15030:
+ - Pressed: Toggle
+ 15029:
+ - Pressed: Toggle
+ - uid: 15981
+ components:
+ - type: MetaData
+ name: canister storage blast door signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,120.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4387:
+ - Pressed: Toggle
+ 15979:
+ - Pressed: Toggle
+ 15978:
+ - Pressed: Toggle
+ 15967:
+ - Pressed: Toggle
+ 15969:
+ - Pressed: Toggle
+ - uid: 19536
+ components:
+ - type: MetaData
+ name: blast doors signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,111.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19532:
+ - Pressed: Toggle
+ 19533:
+ - Pressed: Toggle
+ 19529:
+ - Pressed: Toggle
+ 19534:
+ - Pressed: Toggle
+ - uid: 36775
+ components:
+ - type: MetaData
+ name: blast doors signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,134.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 3878:
+ - Pressed: Toggle
+ 3642:
+ - Pressed: Toggle
+ 15764:
+ - Pressed: Toggle
+ 1820:
+ - Pressed: Toggle
+ 3358:
+ - Pressed: Toggle
+ 30218:
+ - Pressed: Toggle
+- proto: SignalButtonDirectional
+ entities:
+ - uid: 2684
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,96.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19622:
+ - Pressed: Toggle
+ 37576:
+ - Pressed: Toggle
+ - uid: 2955
+ components:
+ - type: MetaData
+ name: north security entrance door signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,73.5
+ parent: 1
+ - uid: 4805
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,96.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 4548:
+ - Pressed: Toggle
+ 8674:
+ - Pressed: Toggle
+ - uid: 8668
+ components:
+ - type: MetaData
+ name: armory blast door signal button
+ - type: Transform
+ pos: 133.5,61.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1418:
+ - Pressed: Toggle
+ 1509:
+ - Pressed: Toggle
+ 1510:
+ - Pressed: Toggle
+ - uid: 13829
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,56.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2496:
+ - Pressed: Toggle
+ 37324:
+ - Pressed: Toggle
+ 37328:
+ - Pressed: Toggle
+ 37327:
+ - Pressed: Toggle
+ 37326:
+ - Pressed: Toggle
+ 37325:
+ - Pressed: Toggle
+ - uid: 14998
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,139.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14092:
+ - Pressed: Toggle
+ 14093:
+ - Pressed: Toggle
+ 14094:
+ - Pressed: Toggle
+ 14097:
+ - Pressed: Toggle
+ 14096:
+ - Pressed: Toggle
+ 14095:
+ - Pressed: Toggle
+ - uid: 15035
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,139.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14055:
+ - Pressed: Toggle
+ 14087:
+ - Pressed: Toggle
+ 14088:
+ - Pressed: Toggle
+ 14089:
+ - Pressed: Toggle
+ 14090:
+ - Pressed: Toggle
+ 14091:
+ - Pressed: Toggle
+ - uid: 15037
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,153.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14100:
+ - Pressed: Toggle
+ 14099:
+ - Pressed: Toggle
+ 14098:
+ - Pressed: Toggle
+ - uid: 15038
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,153.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 14101:
+ - Pressed: Toggle
+ 14102:
+ - Pressed: Toggle
+ 37310:
+ - Pressed: Toggle
+ - uid: 16002
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,144.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 9428:
+ - Pressed: Toggle
+ 17671:
+ - Pressed: Toggle
+ 3205:
+ - Pressed: Toggle
+ 846:
+ - Pressed: Toggle
+ - uid: 19535
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,111.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19530:
+ - Pressed: Toggle
+ 19531:
+ - Pressed: Toggle
+ - uid: 19676
+ components:
+ - type: MetaData
+ name: north blast doors signal button
+ - type: Transform
+ pos: 35.5,95.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19670:
+ - Pressed: Toggle
+ 19673:
+ - Pressed: Toggle
+ 19671:
+ - Pressed: Toggle
+ 19672:
+ - Pressed: Toggle
+ - uid: 19677
+ components:
+ - type: MetaData
+ name: south blast doors signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 35.5,85.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19666:
+ - Pressed: Toggle
+ 19667:
+ - Pressed: Toggle
+ 19668:
+ - Pressed: Toggle
+ 19669:
+ - Pressed: Toggle
+ - uid: 19902
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37413:
+ - Pressed: Toggle
+ 37414:
+ - Pressed: Toggle
+ 37415:
+ - Pressed: Toggle
+ 37416:
+ - Pressed: Toggle
+ 37417:
+ - Pressed: Toggle
+ - uid: 20904
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,88.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20901:
+ - Pressed: Toggle
+ 20902:
+ - Pressed: Toggle
+ 20903:
+ - Pressed: Toggle
+ - uid: 22948
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ pos: 153.5,65.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22702:
+ - Pressed: Toggle
+ 22701:
+ - Pressed: Toggle
+ - uid: 23230
+ components:
+ - type: MetaData
+ name: side counter signal button
+ - type: Transform
+ pos: 123.5,102.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 35988:
+ - Pressed: Toggle
+ 35992:
+ - Pressed: Toggle
+ - uid: 24763
+ components:
+ - type: MetaData
+ name: stage lights toggle signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,61.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 2351:
+ - Pressed: Toggle
+ 24728:
+ - Pressed: Toggle
+ 24726:
+ - Pressed: Toggle
+ - uid: 24764
+ components:
+ - type: MetaData
+ desc: It's a button for activating party mode.
+ name: strobe lights toggle signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,61.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23281:
+ - Pressed: Toggle
+ 23279:
+ - Pressed: Toggle
+ - uid: 27275
+ components:
+ - type: MetaData
+ name: emergency blast door signal button
+ - type: Transform
+ pos: 70.5,124.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 23097:
+ - Pressed: Toggle
+ - uid: 29060
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ pos: 75.5,77.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13770:
+ - Pressed: Toggle
+ 4274:
+ - Pressed: Toggle
+ - uid: 29091
+ components:
+ - type: MetaData
+ name: chemistry shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,95.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29081:
+ - Pressed: Toggle
+ 29082:
+ - Pressed: Toggle
+ 27415:
+ - Pressed: Toggle
+ 29083:
+ - Pressed: Toggle
+ - uid: 29591
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 156.5,125.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29601:
+ - Pressed: Toggle
+ 29603:
+ - Pressed: Toggle
+ - uid: 29752
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,140.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29743:
+ - Pressed: Toggle
+ - uid: 29753
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,140.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29744:
+ - Pressed: Toggle
+ - uid: 29754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,140.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29745:
+ - Pressed: Toggle
+ - uid: 29755
+ components:
+ - type: Transform
+ pos: 159.5,136.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29740:
+ - Pressed: Toggle
+ - uid: 29756
+ components:
+ - type: Transform
+ pos: 156.5,136.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29741:
+ - Pressed: Toggle
+ - uid: 29757
+ components:
+ - type: Transform
+ pos: 153.5,136.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 29742:
+ - Pressed: Toggle
+ - uid: 31970
+ components:
+ - type: MetaData
+ name: exit signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,102.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 17696:
+ - Pressed: Toggle
+ 17697:
+ - Pressed: Toggle
+ - uid: 33808
+ components:
+ - type: MetaData
+ name: blast door signal button
+ - type: Transform
+ pos: 48.5,76.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1420:
+ - Pressed: Toggle
+ - uid: 33909
+ components:
+ - type: MetaData
+ name: canister shutter doors signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,100.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 25486:
+ - Pressed: Toggle
+ 27753:
+ - Pressed: Toggle
+ - uid: 34637
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,62.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34635:
+ - Pressed: DoorBolt
+ - uid: 34937
+ components:
+ - type: MetaData
+ name: door lock signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,119.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28156:
+ - Pressed: DoorBolt
+ - uid: 34939
+ components:
+ - type: MetaData
+ name: door lock signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,119.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28155:
+ - Pressed: DoorBolt
+ - uid: 34992
+ components:
+ - type: MetaData
+ name: door lock signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,119.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28154:
+ - Pressed: DoorBolt
+ - uid: 34993
+ components:
+ - type: MetaData
+ name: door lock signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,119.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28151:
+ - Pressed: DoorBolt
+ - uid: 35585
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,91.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 30721:
+ - Pressed: Toggle
+ 29313:
+ - Pressed: Toggle
+ 25194:
+ - Pressed: Toggle
+ 546:
+ - Pressed: Toggle
+ - uid: 36167
+ components:
+ - type: MetaData
+ name: radiation shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 127.5,141.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34039:
+ - Pressed: Toggle
+ 34040:
+ - Pressed: Toggle
+ 35198:
+ - Pressed: Toggle
+ - uid: 36815
+ components:
+ - type: MetaData
+ name: janitorial service light signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,122.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36824:
+ - Pressed: Toggle
+ - uid: 36825
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,101.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36813:
+ - Pressed: Toggle
+ 36826:
+ - Pressed: Toggle
+ - uid: 36835
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36834:
+ - Pressed: Toggle
+ - uid: 36838
+ components:
+ - type: MetaData
+ name: janitorial light signal button
+ - type: Transform
+ pos: 47.5,94.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36837:
+ - Pressed: Toggle
+ - uid: 36841
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,62.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36839:
+ - Pressed: Toggle
+ - uid: 36843
+ components:
+ - type: Transform
+ pos: 144.5,72.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36845:
+ - Pressed: Toggle
+ 36844:
+ - Pressed: Toggle
+ - uid: 36848
+ components:
+ - type: MetaData
+ name: janitorial light signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,95.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 36846:
+ - Pressed: Toggle
+ 36847:
+ - Pressed: Toggle
+ - uid: 37303
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ pos: 78.5,154.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37302:
+ - Pressed: Toggle
+ 37301:
+ - Pressed: Toggle
+ 37300:
+ - Pressed: Toggle
+ - uid: 37304
+ components:
+ - type: MetaData
+ name: shutters signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,124.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37299:
+ - Pressed: Toggle
+ 37298:
+ - Pressed: Toggle
+ 37297:
+ - Pressed: Toggle
+ - uid: 37367
+ components:
+ - type: MetaData
+ name: table signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,61.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37366:
+ - Pressed: Toggle
+ - uid: 37370
+ components:
+ - type: MetaData
+ name: west security entrance door signal button
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,67.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 28645:
+ - Pressed: Open
+ 28644:
+ - Pressed: Open
+ 22854:
+ - Pressed: Open
+ 22853:
+ - Pressed: Open
+ - uid: 37410
+ components:
+ - type: MetaData
+ name: stage shutters signal button
+ - type: Transform
+ pos: 111.5,65.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37408:
+ - Pressed: Toggle
+ 37407:
+ - Pressed: Toggle
+ 37406:
+ - Pressed: Toggle
+ 37405:
+ - Pressed: Toggle
+ 37404:
+ - Pressed: Toggle
+ 37403:
+ - Pressed: Toggle
+ 37402:
+ - Pressed: Toggle
+ 37401:
+ - Pressed: Toggle
+ 37400:
+ - Pressed: Toggle
+ 37399:
+ - Pressed: Toggle
+ 37398:
+ - Pressed: Toggle
+ 37397:
+ - Pressed: Toggle
+ 37396:
+ - Pressed: Toggle
+ 37395:
+ - Pressed: Toggle
+ 37394:
+ - Pressed: Toggle
+ - uid: 37425
+ components:
+ - type: MetaData
+ name: shutter signal button
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37418:
+ - Pressed: Toggle
+ 37419:
+ - Pressed: Toggle
+ 37420:
+ - Pressed: Toggle
+ 37421:
+ - Pressed: Toggle
+ - uid: 37565
+ components:
+ - type: MetaData
+ name: privacy shutters signal button
+ - type: Transform
+ pos: 50.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 37560:
+ - Pressed: Toggle
+ 37561:
+ - Pressed: Toggle
+ 37562:
+ - Pressed: Toggle
+- proto: SignAnomaly
+ entities:
+ - uid: 5304
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,85.5
+ parent: 1
+ - uid: 13772
+ components:
+ - type: Transform
+ pos: 41.5,82.5
+ parent: 1
+- proto: SignAnomaly2
+ entities:
+ - uid: 837
+ components:
+ - type: Transform
+ pos: 43.5,110.5
+ parent: 1
+- proto: SignArcade
+ entities:
+ - uid: 188
+ components:
+ - type: Transform
+ pos: 122.5,105.5
+ parent: 1
+ - uid: 23820
+ components:
+ - type: Transform
+ pos: 119.5,109.5
+ parent: 1
+ - uid: 23821
+ components:
+ - type: Transform
+ pos: 126.5,111.5
+ parent: 1
+- proto: SignArmory
+ entities:
+ - uid: 13728
+ components:
+ - type: Transform
+ pos: 136.5,60.5
+ parent: 1
+ - uid: 22799
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,67.5
+ parent: 1
+- proto: SignAtmos
+ entities:
+ - uid: 13730
+ components:
+ - type: Transform
+ pos: 71.5,115.5
+ parent: 1
+ - uid: 15951
+ components:
+ - type: Transform
+ pos: 87.5,124.5
+ parent: 1
+ - uid: 15953
+ components:
+ - type: Transform
+ pos: 73.5,124.5
+ parent: 1
+ - uid: 37307
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,141.5
+ parent: 1
+- proto: SignBar
+ entities:
+ - uid: 13731
+ components:
+ - type: Transform
+ pos: 105.5,116.5
+ parent: 1
+ - uid: 13749
+ components:
+ - type: Transform
+ pos: 111.5,116.5
+ parent: 1
+ - uid: 13795
+ components:
+ - type: Transform
+ pos: 107.5,100.5
+ parent: 1
+- proto: SignBarbershop
+ entities:
+ - uid: 33455
+ components:
+ - type: Transform
+ pos: 90.5,24.5
+ parent: 1
+- proto: SignBath
+ entities:
+ - uid: 34891
+ components:
+ - type: Transform
+ pos: 57.5,117.5
+ parent: 1
+- proto: SignBridge
+ entities:
+ - uid: 3429
+ components:
+ - type: Transform
+ pos: 41.5,60.5
+ parent: 1
+ - uid: 11339
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,48.5
+ parent: 1
+ - uid: 11340
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,52.5
+ parent: 1
+ - uid: 11342
+ components:
+ - type: Transform
+ pos: 51.5,63.5
+ parent: 1
+ - uid: 11343
+ components:
+ - type: Transform
+ pos: 51.5,66.5
+ parent: 1
+ - uid: 15949
+ components:
+ - type: Transform
+ pos: 41.5,64.5
+ parent: 1
+- proto: SignCans
+ entities:
+ - uid: 15939
+ components:
+ - type: Transform
+ pos: 78.5,120.5
+ parent: 1
+- proto: SignCansScience
+ entities:
+ - uid: 13797
+ components:
+ - type: Transform
+ pos: 45.5,102.5
+ parent: 1
+ - uid: 24423
+ components:
+ - type: Transform
+ pos: 54.5,103.5
+ parent: 1
+- proto: SignCargo
+ entities:
+ - uid: 13787
+ components:
+ - type: Transform
+ pos: 130.5,99.5
+ parent: 1
+ - uid: 13788
+ components:
+ - type: Transform
+ pos: 130.5,107.5
+ parent: 1
+ - uid: 19342
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,101.5
+ parent: 1
+- proto: SignCargoDock
+ entities:
+ - uid: 13790
+ components:
+ - type: Transform
+ pos: 158.5,108.5
+ parent: 1
+ - uid: 13791
+ components:
+ - type: Transform
+ pos: 163.5,108.5
+ parent: 1
+- proto: SignChapel
+ entities:
+ - uid: 13789
+ components:
+ - type: Transform
+ pos: 87.5,69.5
+ parent: 1
+ - uid: 37390
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,76.5
+ parent: 1
+- proto: SignChem
+ entities:
+ - uid: 13785
+ components:
+ - type: Transform
+ pos: 84.5,106.5
+ parent: 1
+ - uid: 13786
+ components:
+ - type: Transform
+ pos: 84.5,101.5
+ parent: 1
+- proto: SignCloning
+ entities:
+ - uid: 35343
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,86.5
+ parent: 1
+- proto: SignConference
+ entities:
+ - uid: 34095
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,153.5
+ parent: 1
+ - uid: 35082
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,90.5
+ parent: 1
+- proto: SignCryo
+ entities:
+ - uid: 13742
+ components:
+ - type: Transform
+ pos: 151.5,140.5
+ parent: 1
+- proto: SignCryogenicsMed
+ entities:
+ - uid: 5346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,89.5
+ parent: 1
+- proto: SignDirectionalBar
+ entities:
+ - uid: 27686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 66.4993,66.705826
+ parent: 1
+ - uid: 27687
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,80.5
+ parent: 1
+ - uid: 27702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5073,120.30603
+ parent: 1
+ - uid: 27713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 56.502766,115.69511
+ parent: 1
+ - uid: 37590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.5,53.5
+ parent: 1
+- proto: SignDirectionalBridge
+ entities:
+ - uid: 27583
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.5,66.5
+ parent: 1
+ - uid: 27688
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,79.5
+ parent: 1
+ - uid: 27701
+ components:
+ - type: Transform
+ pos: 130.50261,120.30734
+ parent: 1
+ - uid: 27709
+ components:
+ - type: Transform
+ pos: 56.501022,115.29705
+ parent: 1
+ - uid: 37581
+ components:
+ - type: Transform
+ pos: 44.5,81.5
+ parent: 1
+ - uid: 37584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,53.5
+ parent: 1
+- proto: SignDirectionalBrig
+ entities:
+ - uid: 22559
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,57.5
+ parent: 1
+- proto: SignDirectionalChapel
+ entities:
+ - uid: 37585
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.49747,53.301975
+ parent: 1
+- proto: SignDirectionalChemistry
+ entities:
+ - uid: 16176
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,99.5
+ parent: 1
+- proto: SignDirectionalCryo
+ entities:
+ - uid: 27685
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.50407,66.69861
+ parent: 1
+ - uid: 27693
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.50085,81.69817
+ parent: 1
+ - uid: 27700
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.50723,120.67566
+ parent: 1
+ - uid: 27710
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.499157,115.6893
+ parent: 1
+ - uid: 37589
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.50067,53.297707
+ parent: 1
+ - uid: 37592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.49669,53.69808
+ parent: 1
+- proto: SignDirectionalEng
+ entities:
+ - uid: 27680
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.5,66.5
+ parent: 1
+ - uid: 27691
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.50316,80.68872
+ parent: 1
+ - uid: 27698
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,120.5
+ parent: 1
+ - uid: 27705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,115.5
+ parent: 1
+- proto: SignDirectionalEvac
+ entities:
+ - uid: 27679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,66.5
+ parent: 1
+ - uid: 27689
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,81.5
+ parent: 1
+ - uid: 27696
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,120.5
+ parent: 1
+ - uid: 27706
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,115.5
+ parent: 1
+ - uid: 37591
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 104.50107,53.307587
+ parent: 1
+- proto: SignDirectionalHop
+ entities:
+ - uid: 27694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.49364,79.69277
+ parent: 1
+- proto: SignDirectionalHydro
+ entities:
+ - uid: 37583
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,99.5
+ parent: 1
+- proto: SignDirectionalMed
+ entities:
+ - uid: 27681
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 67.50147,66.30743
+ parent: 1
+ - uid: 27692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.50006,80.298355
+ parent: 1
+ - uid: 27697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.50096,120.308945
+ parent: 1
+ - uid: 27711
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.504097,115.30144
+ parent: 1
+- proto: SignDirectionalSci
+ entities:
+ - uid: 27682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 66.50271,66.301254
+ parent: 1
+ - uid: 27690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.50397,79.30357
+ parent: 1
+ - uid: 27703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5073,120.68284
+ parent: 1
+ - uid: 27707
+ components:
+ - type: Transform
+ pos: 56.5,115.5
+ parent: 1
+ - uid: 37580
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,77.5
+ parent: 1
+ - uid: 37587
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.49068,53.702797
+ parent: 1
+- proto: SignDirectionalSec
+ entities:
+ - uid: 27683
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.498085,66.30746
+ parent: 1
+ - uid: 27704
+ components:
+ - type: Transform
+ pos: 130.49495,120.69519
+ parent: 1
+ - uid: 27708
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.499157,115.69547
+ parent: 1
+ - uid: 37586
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.5,53.5
+ parent: 1
+- proto: SignDirectionalSolar
+ entities:
+ - uid: 34662
+ components:
+ - type: Transform
+ pos: 157.5,67.5
+ parent: 1
+ - uid: 34663
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,78.5
+ parent: 1
+- proto: SignDirectionalSupply
+ entities:
+ - uid: 27684
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.50426,66.69697
+ parent: 1
+ - uid: 27695
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.50452,81.90488
+ parent: 1
+ - uid: 27699
+ components:
+ - type: Transform
+ pos: 130.5,120.5
+ parent: 1
+ - uid: 27712
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.50455,115.29977
+ parent: 1
+ - uid: 37588
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 105.49604,53.70048
+ parent: 1
+- proto: SignDisposalSpace
+ entities:
+ - uid: 34140
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,82.5
+ parent: 1
+- proto: SignElectricalMed
+ entities:
+ - uid: 13549
+ components:
+ - type: Transform
+ pos: 58.5,32.5
+ parent: 1
+ - uid: 13550
+ components:
+ - type: Transform
+ pos: 40.5,32.5
+ parent: 1
+ - uid: 13551
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1
+ - uid: 13552
+ components:
+ - type: Transform
+ pos: 58.5,16.5
+ parent: 1
+ - uid: 14028
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,144.5
+ parent: 1
+ - uid: 35007
+ components:
+ - type: Transform
+ pos: 134.5,42.5
+ parent: 1
+- proto: SignEngine
+ entities:
+ - uid: 13775
+ components:
+ - type: Transform
+ pos: 116.5,153.5
+ parent: 1
+ - uid: 13776
+ components:
+ - type: Transform
+ pos: 106.5,157.5
+ parent: 1
+- proto: SignEngineering
+ entities:
+ - uid: 13740
+ components:
+ - type: Transform
+ pos: 102.5,122.5
+ parent: 1
+ - uid: 13741
+ components:
+ - type: Transform
+ pos: 114.5,122.5
+ parent: 1
+ - uid: 15023
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,137.5
+ parent: 1
+- proto: SignEscapePods
+ entities:
+ - uid: 7502
+ components:
+ - type: Transform
+ pos: 102.5,170.5
+ parent: 1
+ - uid: 11335
+ components:
+ - type: Transform
+ pos: 111.5,20.5
+ parent: 1
+ - uid: 29182
+ components:
+ - type: Transform
+ pos: 17.5,108.5
+ parent: 1
+- proto: SignEVA
+ entities:
+ - uid: 31868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,50.5
+ parent: 1
+ - uid: 34227
+ components:
+ - type: Transform
+ pos: 54.5,72.5
+ parent: 1
+ - uid: 37573
+ components:
+ - type: Transform
+ pos: 45.5,68.5
+ parent: 1
+- proto: SignExamroom
+ entities:
+ - uid: 13745
+ components:
+ - type: Transform
+ pos: 73.5,101.5
+ parent: 1
+- proto: SignFire
+ entities:
+ - uid: 9846
+ components:
+ - type: Transform
+ pos: 86.5,117.5
+ parent: 1
+ - uid: 20753
+ components:
+ - type: Transform
+ pos: 51.5,104.5
+ parent: 1
+- proto: SignFlammableMed
+ entities:
+ - uid: 16033
+ components:
+ - type: Transform
+ pos: 78.5,116.5
+ parent: 1
+- proto: SignGravity
+ entities:
+ - uid: 13739
+ components:
+ - type: Transform
+ pos: 100.5,157.5
+ parent: 1
+- proto: SignHead
+ entities:
+ - uid: 5432
+ components:
+ - type: Transform
+ pos: 54.5,59.5
+ parent: 1
+ - uid: 5433
+ components:
+ - type: Transform
+ pos: 41.5,74.5
+ parent: 1
+ - uid: 13736
+ components:
+ - type: Transform
+ pos: 144.5,101.5
+ parent: 1
+ - uid: 13737
+ components:
+ - type: Transform
+ pos: 140.5,63.5
+ parent: 1
+ - uid: 13738
+ components:
+ - type: Transform
+ pos: 129.5,141.5
+ parent: 1
+ - uid: 13746
+ components:
+ - type: Transform
+ pos: 85.5,93.5
+ parent: 1
+ - uid: 13798
+ components:
+ - type: Transform
+ pos: 41.5,108.5
+ parent: 1
+- proto: SignHydro1
+ entities:
+ - uid: 13748
+ components:
+ - type: Transform
+ pos: 101.5,116.5
+ parent: 1
+ - uid: 19372
+ components:
+ - type: Transform
+ pos: 102.5,105.5
+ parent: 1
+ - uid: 27855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,99.5
+ parent: 1
+- proto: SignInterrogation
+ entities:
+ - uid: 31867
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,60.5
+ parent: 1
+- proto: SignJanitor
+ entities:
+ - uid: 13782
+ components:
+ - type: Transform
+ pos: 156.5,120.5
+ parent: 1
+- proto: SignKitchen
+ entities:
+ - uid: 1264
+ components:
+ - type: Transform
+ pos: 115.5,116.5
+ parent: 1
+ - uid: 3674
+ components:
+ - type: Transform
+ pos: 114.5,105.5
+ parent: 1
+ - uid: 18873
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,99.5
+ parent: 1
+ - uid: 28269
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,98.5
+ parent: 1
+- proto: SignLaser
+ entities:
+ - uid: 17345
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,155.5
+ parent: 1
+ - uid: 30528
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,145.5
+ parent: 1
+- proto: SignLaserMed
+ entities:
+ - uid: 14045
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,137.5
+ parent: 1
+ - uid: 14049
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,137.5
+ parent: 1
+- proto: SignLawyer
+ entities:
+ - uid: 18882
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,46.5
+ parent: 1
+ - uid: 19714
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,49.5
+ parent: 1
+ - uid: 28754
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,49.5
+ parent: 1
+ - uid: 35212
+ components:
+ - type: Transform
+ pos: 105.5,49.5
+ parent: 1
+ - uid: 37494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,41.5
+ parent: 1
+- proto: SignLibrary
+ entities:
+ - uid: 24663
+ components:
+ - type: Transform
+ pos: 75.5,62.5
+ parent: 1
+- proto: SignMail
+ entities:
+ - uid: 23349
+ components:
+ - type: Transform
+ pos: 151.5,112.5
+ parent: 1
+- proto: SignMaterials
+ entities:
+ - uid: 32028
+ components:
+ - type: Transform
+ pos: 147.5,132.5
+ parent: 1
+- proto: SignMedical
+ entities:
+ - uid: 13783
+ components:
+ - type: Transform
+ pos: 68.5,111.5
+ parent: 1
+ - uid: 13784
+ components:
+ - type: Transform
+ pos: 80.5,111.5
+ parent: 1
+ - uid: 17779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,105.5
+ parent: 1
+ - uid: 28699
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,52.5
+ parent: 1
+- proto: SignMorgue
+ entities:
+ - uid: 13752
+ components:
+ - type: Transform
+ pos: 64.5,86.5
+ parent: 1
+ - uid: 37389
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,79.5
+ parent: 1
+- proto: SignNews
+ entities:
+ - uid: 25113
+ components:
+ - type: Transform
+ pos: 143.5,120.5
+ parent: 1
+- proto: SignPrison
+ entities:
+ - uid: 13754
+ components:
+ - type: Transform
+ pos: 125.5,61.5
+ parent: 1
+ - uid: 22708
+ components:
+ - type: Transform
+ pos: 128.5,54.5
+ parent: 1
+- proto: SignRadiationMed
+ entities:
+ - uid: 15983
+ components:
+ - type: Transform
+ pos: 110.5,128.5
+ parent: 1
+ - uid: 16034
+ components:
+ - type: Transform
+ pos: 116.5,149.5
+ parent: 1
+ - uid: 16035
+ components:
+ - type: Transform
+ pos: 99.5,135.5
+ parent: 1
+ - uid: 16036
+ components:
+ - type: Transform
+ pos: 106.5,146.5
+ parent: 1
+ - uid: 16037
+ components:
+ - type: Transform
+ pos: 117.5,139.5
+ parent: 1
+- proto: SignReception
+ entities:
+ - uid: 13755
+ components:
+ - type: Transform
+ pos: 78.5,105.5
+ parent: 1
+- proto: SignRedFive
+ entities:
+ - uid: 32020
+ components:
+ - type: Transform
+ pos: 158.49059,140.41048
+ parent: 1
+- proto: SignRedFour
+ entities:
+ - uid: 22846
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,63.5
+ parent: 1
+ - uid: 32019
+ components:
+ - type: Transform
+ pos: 156.50348,136.56439
+ parent: 1
+- proto: SignRedOne
+ entities:
+ - uid: 22843
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,72.5
+ parent: 1
+ - uid: 32016
+ components:
+ - type: Transform
+ pos: 152.4849,140.40256
+ parent: 1
+- proto: SignRedSix
+ entities:
+ - uid: 32021
+ components:
+ - type: Transform
+ pos: 159.49802,136.56282
+ parent: 1
+- proto: SignRedThree
+ entities:
+ - uid: 22845
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,66.5
+ parent: 1
+ - uid: 32018
+ components:
+ - type: Transform
+ pos: 155.49359,140.40607
+ parent: 1
+- proto: SignRedTwo
+ entities:
+ - uid: 22844
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,69.5
+ parent: 1
+ - uid: 32017
+ components:
+ - type: Transform
+ pos: 153.48871,136.56726
+ parent: 1
+- proto: SignRestroom
+ entities:
+ - uid: 13756
+ components:
+ - type: Transform
+ pos: 62.5,115.5
+ parent: 1
+- proto: SignRND
+ entities:
+ - uid: 13774
+ components:
+ - type: Transform
+ pos: 45.5,91.5
+ parent: 1
+- proto: SignRobo
+ entities:
+ - uid: 13757
+ components:
+ - type: Transform
+ pos: 58.5,92.5
+ parent: 1
+- proto: SignSalvage
+ entities:
+ - uid: 23409
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,97.5
+ parent: 1
+ - uid: 34735
+ components:
+ - type: Transform
+ pos: 156.5,89.5
+ parent: 1
+- proto: SignScience
+ entities:
+ - uid: 13758
+ components:
+ - type: Transform
+ pos: 54.5,94.5
+ parent: 1
+ - uid: 13759
+ components:
+ - type: Transform
+ pos: 54.5,89.5
+ parent: 1
+ - uid: 20981
+ components:
+ - type: Transform
+ pos: 45.5,95.5
+ parent: 1
+- proto: SignSecureMed
+ entities:
+ - uid: 17736
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,103.5
+ parent: 1
+ - uid: 20982
+ components:
+ - type: Transform
+ pos: 45.5,108.5
+ parent: 1
+- proto: SignSecureMedRed
+ entities:
+ - uid: 4072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,67.5
+ parent: 1
+ - uid: 19552
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,75.5
+ parent: 1
+ - uid: 22654
+ components:
+ - type: Transform
+ pos: 136.5,58.5
+ parent: 1
+ - uid: 23370
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,73.5
+ parent: 1
+- proto: SignSecurity
+ entities:
+ - uid: 5661
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,75.5
+ parent: 1
+ - uid: 8205
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,149.5
+ parent: 1
+ - uid: 13761
+ components:
+ - type: Transform
+ pos: 121.5,61.5
+ parent: 1
+ - uid: 13762
+ components:
+ - type: Transform
+ pos: 136.5,75.5
+ parent: 1
+- proto: SignServer
+ entities:
+ - uid: 5650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,105.5
+ parent: 1
+- proto: SignShipDock
+ entities:
+ - uid: 13732
+ components:
+ - type: Transform
+ pos: 147.5,140.5
+ parent: 1
+ - uid: 13743
+ components:
+ - type: Transform
+ pos: 140.5,157.5
+ parent: 1
+ - uid: 13744
+ components:
+ - type: Transform
+ pos: 152.5,157.5
+ parent: 1
+- proto: SignSomethingOld
+ entities:
+ - uid: 9789
+ components:
+ - type: Transform
+ pos: 37.5,111.5
+ parent: 1
+ - uid: 33547
+ components:
+ - type: Transform
+ pos: 117.5,35.5
+ parent: 1
+ - uid: 33548
+ components:
+ - type: Transform
+ pos: 116.5,24.5
+ parent: 1
+- proto: SignSomethingOld2
+ entities:
+ - uid: 13696
+ components:
+ - type: Transform
+ pos: 34.5,118.5
+ parent: 1
+ - uid: 33546
+ components:
+ - type: Transform
+ pos: 101.5,29.5
+ parent: 1
+ - uid: 33549
+ components:
+ - type: Transform
+ pos: 87.5,22.5
+ parent: 1
+- proto: SignSpace
+ entities:
+ - uid: 25933
+ components:
+ - type: Transform
+ pos: 68.5,124.5
+ parent: 1
+ - uid: 31869
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,43.5
+ parent: 1
+ - uid: 35472
+ components:
+ - type: MetaData
+ name: atmospherics storage chambers sign
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,156.5
+ parent: 1
+ - uid: 36058
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,153.5
+ parent: 1
+ - uid: 37290
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,129.5
+ parent: 1
+- proto: SignSurgery
+ entities:
+ - uid: 13764
+ components:
+ - type: Transform
+ pos: 64.5,100.5
+ parent: 1
+ - uid: 13765
+ components:
+ - type: MetaData
+ name: surgery theater sign
+ - type: Transform
+ pos: 64.5,107.5
+ parent: 1
+- proto: SignTelecomms
+ entities:
+ - uid: 13763
+ components:
+ - type: Transform
+ pos: 130.5,127.5
+ parent: 1
+ - uid: 13766
+ components:
+ - type: Transform
+ pos: 139.5,120.5
+ parent: 1
+- proto: SignTheater
+ entities:
+ - uid: 13767
+ components:
+ - type: Transform
+ pos: 95.5,75.5
+ parent: 1
+ - uid: 13768
+ components:
+ - type: Transform
+ pos: 117.5,75.5
+ parent: 1
+ - uid: 27591
+ components:
+ - type: Transform
+ pos: 100.5,67.5
+ parent: 1
+ - uid: 33949
+ components:
+ - type: Transform
+ pos: 112.5,67.5
+ parent: 1
+- proto: SignToolStorage
+ entities:
+ - uid: 36623
+ components:
+ - type: Transform
+ pos: 90.5,62.5
+ parent: 1
+- proto: SignVault
+ entities:
+ - uid: 19100
+ components:
+ - type: Transform
+ pos: 45.5,75.5
+ parent: 1
+- proto: SignXenobio
+ entities:
+ - uid: 7250
+ components:
+ - type: Transform
+ pos: 32.5,102.5
+ parent: 1
+- proto: SingularityGenerator
+ entities:
+ - uid: 29055
+ components:
+ - type: Transform
+ pos: 97.5,151.5
+ parent: 1
+- proto: Sink
+ entities:
+ - uid: 34543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,43.5
+ parent: 1
+- proto: SinkStemlessWater
+ entities:
+ - uid: 13481
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 32.5,68.5
+ parent: 1
+ - uid: 13511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 60.5,50.5
+ parent: 1
+- proto: SinkWide
+ entities:
+ - uid: 455
+ components:
+ - type: Transform
+ pos: 87.5,97.5
+ parent: 1
+ - uid: 17963
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,101.5
+ parent: 1
+ - uid: 19491
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 146.5,91.5
+ parent: 1
+ - uid: 22723
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,49.5
+ parent: 1
+ - uid: 22982
+ components:
+ - type: Transform
+ pos: 149.5,53.5
+ parent: 1
+ - uid: 23024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,45.5
+ parent: 1
+ - uid: 25610
+ components:
+ - type: Transform
+ pos: 120.5,104.5
+ parent: 1
+ - uid: 26542
+ components:
+ - type: Transform
+ pos: 109.5,99.5
+ parent: 1
+ - uid: 26551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,106.5
+ parent: 1
+ - uid: 26599
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,92.5
+ parent: 1
+ - uid: 26633
+ components:
+ - type: Transform
+ pos: 111.5,94.5
+ parent: 1
+ - uid: 27068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 95.5,96.5
+ parent: 1
+ - uid: 28157
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,116.5
+ parent: 1
+ - uid: 28158
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,116.5
+ parent: 1
+ - uid: 29575
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,124.5
+ parent: 1
+ - uid: 34385
+ components:
+ - type: Transform
+ pos: 142.5,81.5
+ parent: 1
+- proto: SmartFridge
+ entities:
+ - uid: 515
+ components:
+ - type: Transform
+ pos: 85.5,96.5
+ parent: 1
+ - uid: 20893
+ components:
+ - type: Transform
+ pos: 59.5,99.5
+ parent: 1
+- proto: SMESAdvanced
+ entities:
+ - uid: 19994
+ components:
+ - type: Transform
+ pos: 127.5,128.5
+ parent: 1
+ - uid: 20360
+ components:
+ - type: Transform
+ pos: 127.5,124.5
+ parent: 1
+ - uid: 20402
+ components:
+ - type: Transform
+ pos: 127.5,122.5
+ parent: 1
+ - uid: 20404
+ components:
+ - type: Transform
+ pos: 127.5,123.5
+ parent: 1
+ - uid: 20873
+ components:
+ - type: Transform
+ pos: 127.5,127.5
+ parent: 1
+ - uid: 20898
+ components:
+ - type: Transform
+ pos: 127.5,126.5
+ parent: 1
+ - uid: 23004
+ components:
+ - type: MetaData
+ name: containment advanced SMES
+ - type: Transform
+ pos: 97.5,144.5
+ parent: 1
+- proto: SMESBasic
+ entities:
+ - uid: 9035
+ components:
+ - type: MetaData
+ name: telecommunications SMES
+ - type: Transform
+ pos: 131.5,123.5
+ parent: 1
+ - uid: 11548
+ components:
+ - type: MetaData
+ name: southwest solars SMES
+ - type: Transform
+ pos: 29.5,70.5
+ parent: 1
+ - uid: 11716
+ components:
+ - type: MetaData
+ name: northwest solars SMES
+ - type: Transform
+ pos: 53.5,143.5
+ parent: 1
+ - uid: 12342
+ components:
+ - type: MetaData
+ name: southeast solars SMES
+ - type: Transform
+ pos: 162.5,59.5
+ parent: 1
+ - uid: 12917
+ components:
+ - type: MetaData
+ name: AI core SMES
+ - type: Transform
+ pos: 57.5,26.5
+ parent: 1
+- proto: SnowBattlemap
+ entities:
+ - uid: 3251
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.34383,54.82531
+ parent: 1
+- proto: SoapNT
+ entities:
+ - uid: 13489
+ components:
+ - type: Transform
+ pos: 35.572254,66.77442
+ parent: 1
+ - uid: 26777
+ components:
+ - type: Transform
+ pos: 98.474884,59.16723
+ parent: 1
+ - uid: 29577
+ components:
+ - type: Transform
+ pos: 159.37878,127.20219
+ parent: 1
+- proto: SodaDispenser
+ entities:
+ - uid: 26545
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,106.5
+ parent: 1
+ - uid: 32101
+ components:
+ - type: Transform
+ pos: 109.5,108.5
+ parent: 1
+- proto: SodaDispenserEmpty
+ entities:
+ - uid: 6637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,167.5
+ parent: 1
+- proto: SolarPanel
+ entities:
+ - uid: 30888
+ components:
+ - type: Transform
+ pos: 47.5,144.5
+ parent: 1
+ - uid: 30890
+ components:
+ - type: Transform
+ pos: 47.5,145.5
+ parent: 1
+ - uid: 30891
+ components:
+ - type: Transform
+ pos: 47.5,146.5
+ parent: 1
+ - uid: 30892
+ components:
+ - type: Transform
+ pos: 47.5,147.5
+ parent: 1
+ - uid: 30893
+ components:
+ - type: Transform
+ pos: 47.5,148.5
+ parent: 1
+ - uid: 30894
+ components:
+ - type: Transform
+ pos: 47.5,149.5
+ parent: 1
+ - uid: 30895
+ components:
+ - type: Transform
+ pos: 47.5,150.5
+ parent: 1
+ - uid: 30896
+ components:
+ - type: Transform
+ pos: 47.5,151.5
+ parent: 1
+ - uid: 30897
+ components:
+ - type: Transform
+ pos: 47.5,152.5
+ parent: 1
+ - uid: 30898
+ components:
+ - type: Transform
+ pos: 47.5,153.5
+ parent: 1
+ - uid: 30899
+ components:
+ - type: Transform
+ pos: 45.5,153.5
+ parent: 1
+ - uid: 30900
+ components:
+ - type: Transform
+ pos: 45.5,152.5
+ parent: 1
+ - uid: 30901
+ components:
+ - type: Transform
+ pos: 45.5,151.5
+ parent: 1
+ - uid: 30902
+ components:
+ - type: Transform
+ pos: 45.5,150.5
+ parent: 1
+ - uid: 30903
+ components:
+ - type: Transform
+ pos: 45.5,149.5
+ parent: 1
+ - uid: 30904
+ components:
+ - type: Transform
+ pos: 45.5,148.5
+ parent: 1
+ - uid: 30905
+ components:
+ - type: Transform
+ pos: 45.5,147.5
+ parent: 1
+ - uid: 30906
+ components:
+ - type: Transform
+ pos: 45.5,145.5
+ parent: 1
+ - uid: 30907
+ components:
+ - type: Transform
+ pos: 45.5,146.5
+ parent: 1
+ - uid: 30908
+ components:
+ - type: Transform
+ pos: 45.5,144.5
+ parent: 1
+ - uid: 30909
+ components:
+ - type: Transform
+ pos: 43.5,144.5
+ parent: 1
+ - uid: 30910
+ components:
+ - type: Transform
+ pos: 43.5,145.5
+ parent: 1
+ - uid: 30911
+ components:
+ - type: Transform
+ pos: 43.5,146.5
+ parent: 1
+ - uid: 30912
+ components:
+ - type: Transform
+ pos: 43.5,147.5
+ parent: 1
+ - uid: 30913
+ components:
+ - type: Transform
+ pos: 43.5,148.5
+ parent: 1
+ - uid: 30914
+ components:
+ - type: Transform
+ pos: 43.5,149.5
+ parent: 1
+ - uid: 30915
+ components:
+ - type: Transform
+ pos: 43.5,150.5
+ parent: 1
+ - uid: 30916
+ components:
+ - type: Transform
+ pos: 43.5,151.5
+ parent: 1
+ - uid: 30917
+ components:
+ - type: Transform
+ pos: 43.5,152.5
+ parent: 1
+ - uid: 30918
+ components:
+ - type: Transform
+ pos: 43.5,153.5
+ parent: 1
+ - uid: 30919
+ components:
+ - type: Transform
+ pos: 41.5,153.5
+ parent: 1
+ - uid: 30920
+ components:
+ - type: Transform
+ pos: 41.5,152.5
+ parent: 1
+ - uid: 30921
+ components:
+ - type: Transform
+ pos: 41.5,151.5
+ parent: 1
+ - uid: 30922
+ components:
+ - type: Transform
+ pos: 41.5,150.5
+ parent: 1
+ - uid: 30923
+ components:
+ - type: Transform
+ pos: 41.5,148.5
+ parent: 1
+ - uid: 30924
+ components:
+ - type: Transform
+ pos: 41.5,147.5
+ parent: 1
+ - uid: 30925
+ components:
+ - type: Transform
+ pos: 41.5,146.5
+ parent: 1
+ - uid: 30926
+ components:
+ - type: Transform
+ pos: 41.5,145.5
+ parent: 1
+ - uid: 30927
+ components:
+ - type: Transform
+ pos: 41.5,144.5
+ parent: 1
+ - uid: 30928
+ components:
+ - type: Transform
+ pos: 41.5,149.5
+ parent: 1
+ - uid: 30929
+ components:
+ - type: Transform
+ pos: 39.5,144.5
+ parent: 1
+ - uid: 30930
+ components:
+ - type: Transform
+ pos: 39.5,145.5
+ parent: 1
+ - uid: 30931
+ components:
+ - type: Transform
+ pos: 39.5,146.5
+ parent: 1
+ - uid: 30932
+ components:
+ - type: Transform
+ pos: 39.5,147.5
+ parent: 1
+ - uid: 30933
+ components:
+ - type: Transform
+ pos: 39.5,148.5
+ parent: 1
+ - uid: 30934
+ components:
+ - type: Transform
+ pos: 39.5,150.5
+ parent: 1
+ - uid: 30935
+ components:
+ - type: Transform
+ pos: 39.5,151.5
+ parent: 1
+ - uid: 30936
+ components:
+ - type: Transform
+ pos: 39.5,152.5
+ parent: 1
+ - uid: 30937
+ components:
+ - type: Transform
+ pos: 39.5,153.5
+ parent: 1
+ - uid: 30938
+ components:
+ - type: Transform
+ pos: 39.5,149.5
+ parent: 1
+ - uid: 30940
+ components:
+ - type: Transform
+ pos: 37.5,153.5
+ parent: 1
+ - uid: 30941
+ components:
+ - type: Transform
+ pos: 37.5,152.5
+ parent: 1
+ - uid: 30942
+ components:
+ - type: Transform
+ pos: 37.5,150.5
+ parent: 1
+ - uid: 30943
+ components:
+ - type: Transform
+ pos: 37.5,149.5
+ parent: 1
+ - uid: 30944
+ components:
+ - type: Transform
+ pos: 37.5,148.5
+ parent: 1
+ - uid: 30945
+ components:
+ - type: Transform
+ pos: 37.5,147.5
+ parent: 1
+ - uid: 30946
+ components:
+ - type: Transform
+ pos: 37.5,146.5
+ parent: 1
+ - uid: 30947
+ components:
+ - type: Transform
+ pos: 37.5,145.5
+ parent: 1
+ - uid: 30948
+ components:
+ - type: Transform
+ pos: 37.5,144.5
+ parent: 1
+ - uid: 30949
+ components:
+ - type: Transform
+ pos: 37.5,151.5
+ parent: 1
+ - uid: 30950
+ components:
+ - type: Transform
+ pos: 41.5,138.5
+ parent: 1
+ - uid: 30951
+ components:
+ - type: Transform
+ pos: 41.5,137.5
+ parent: 1
+ - uid: 30952
+ components:
+ - type: Transform
+ pos: 41.5,136.5
+ parent: 1
+ - uid: 30953
+ components:
+ - type: Transform
+ pos: 41.5,135.5
+ parent: 1
+ - uid: 30954
+ components:
+ - type: Transform
+ pos: 41.5,134.5
+ parent: 1
+ - uid: 30955
+ components:
+ - type: Transform
+ pos: 41.5,133.5
+ parent: 1
+ - uid: 30956
+ components:
+ - type: Transform
+ pos: 41.5,132.5
+ parent: 1
+ - uid: 30957
+ components:
+ - type: Transform
+ pos: 41.5,130.5
+ parent: 1
+ - uid: 30958
+ components:
+ - type: Transform
+ pos: 41.5,129.5
+ parent: 1
+ - uid: 30959
+ components:
+ - type: Transform
+ pos: 41.5,131.5
+ parent: 1
+ - uid: 30970
+ components:
+ - type: Transform
+ pos: 43.5,138.5
+ parent: 1
+ - uid: 30971
+ components:
+ - type: Transform
+ pos: 43.5,137.5
+ parent: 1
+ - uid: 30972
+ components:
+ - type: Transform
+ pos: 43.5,136.5
+ parent: 1
+ - uid: 30973
+ components:
+ - type: Transform
+ pos: 43.5,135.5
+ parent: 1
+ - uid: 30974
+ components:
+ - type: Transform
+ pos: 43.5,134.5
+ parent: 1
+ - uid: 30975
+ components:
+ - type: Transform
+ pos: 43.5,132.5
+ parent: 1
+ - uid: 30976
+ components:
+ - type: Transform
+ pos: 43.5,131.5
+ parent: 1
+ - uid: 30977
+ components:
+ - type: Transform
+ pos: 43.5,130.5
+ parent: 1
+ - uid: 30978
+ components:
+ - type: Transform
+ pos: 43.5,133.5
+ parent: 1
+ - uid: 30979
+ components:
+ - type: Transform
+ pos: 43.5,129.5
+ parent: 1
+ - uid: 30980
+ components:
+ - type: Transform
+ pos: 45.5,129.5
+ parent: 1
+ - uid: 30981
+ components:
+ - type: Transform
+ pos: 45.5,130.5
+ parent: 1
+ - uid: 30982
+ components:
+ - type: Transform
+ pos: 45.5,131.5
+ parent: 1
+ - uid: 30983
+ components:
+ - type: Transform
+ pos: 45.5,132.5
+ parent: 1
+ - uid: 30984
+ components:
+ - type: Transform
+ pos: 45.5,133.5
+ parent: 1
+ - uid: 30985
+ components:
+ - type: Transform
+ pos: 45.5,134.5
+ parent: 1
+ - uid: 30986
+ components:
+ - type: Transform
+ pos: 45.5,135.5
+ parent: 1
+ - uid: 30987
+ components:
+ - type: Transform
+ pos: 45.5,136.5
+ parent: 1
+ - uid: 30988
+ components:
+ - type: Transform
+ pos: 45.5,137.5
+ parent: 1
+ - uid: 30990
+ components:
+ - type: Transform
+ pos: 45.5,138.5
+ parent: 1
+ - uid: 31000
+ components:
+ - type: Transform
+ pos: 47.5,129.5
+ parent: 1
+ - uid: 31001
+ components:
+ - type: Transform
+ pos: 47.5,130.5
+ parent: 1
+ - uid: 31002
+ components:
+ - type: Transform
+ pos: 47.5,131.5
+ parent: 1
+ - uid: 31003
+ components:
+ - type: Transform
+ pos: 47.5,132.5
+ parent: 1
+ - uid: 31004
+ components:
+ - type: Transform
+ pos: 47.5,133.5
+ parent: 1
+ - uid: 31005
+ components:
+ - type: Transform
+ pos: 47.5,137.5
+ parent: 1
+ - uid: 31006
+ components:
+ - type: Transform
+ pos: 47.5,134.5
+ parent: 1
+ - uid: 31007
+ components:
+ - type: Transform
+ pos: 47.5,136.5
+ parent: 1
+ - uid: 31008
+ components:
+ - type: Transform
+ pos: 47.5,138.5
+ parent: 1
+ - uid: 31009
+ components:
+ - type: Transform
+ pos: 47.5,135.5
+ parent: 1
+ - uid: 31010
+ components:
+ - type: Transform
+ pos: 37.5,129.5
+ parent: 1
+ - uid: 31011
+ components:
+ - type: Transform
+ pos: 37.5,130.5
+ parent: 1
+ - uid: 31012
+ components:
+ - type: Transform
+ pos: 37.5,132.5
+ parent: 1
+ - uid: 31013
+ components:
+ - type: Transform
+ pos: 37.5,133.5
+ parent: 1
+ - uid: 31014
+ components:
+ - type: Transform
+ pos: 37.5,134.5
+ parent: 1
+ - uid: 31015
+ components:
+ - type: Transform
+ pos: 37.5,135.5
+ parent: 1
+ - uid: 31016
+ components:
+ - type: Transform
+ pos: 37.5,136.5
+ parent: 1
+ - uid: 31017
+ components:
+ - type: Transform
+ pos: 37.5,137.5
+ parent: 1
+ - uid: 31018
+ components:
+ - type: Transform
+ pos: 37.5,138.5
+ parent: 1
+ - uid: 31022
+ components:
+ - type: Transform
+ pos: 37.5,131.5
+ parent: 1
+ - uid: 31030
+ components:
+ - type: Transform
+ pos: 39.5,129.5
+ parent: 1
+ - uid: 31031
+ components:
+ - type: Transform
+ pos: 39.5,130.5
+ parent: 1
+ - uid: 31032
+ components:
+ - type: Transform
+ pos: 39.5,131.5
+ parent: 1
+ - uid: 31033
+ components:
+ - type: Transform
+ pos: 39.5,132.5
+ parent: 1
+ - uid: 31034
+ components:
+ - type: Transform
+ pos: 39.5,133.5
+ parent: 1
+ - uid: 31035
+ components:
+ - type: Transform
+ pos: 39.5,134.5
+ parent: 1
+ - uid: 31036
+ components:
+ - type: Transform
+ pos: 39.5,135.5
+ parent: 1
+ - uid: 31037
+ components:
+ - type: Transform
+ pos: 39.5,136.5
+ parent: 1
+ - uid: 31038
+ components:
+ - type: Transform
+ pos: 39.5,137.5
+ parent: 1
+ - uid: 31039
+ components:
+ - type: Transform
+ pos: 39.5,138.5
+ parent: 1
+ - uid: 31280
+ components:
+ - type: Transform
+ pos: 23.5,56.5
+ parent: 1
+ - uid: 31290
+ components:
+ - type: Transform
+ pos: 23.5,58.5
+ parent: 1
+ - uid: 31291
+ components:
+ - type: Transform
+ pos: 23.5,59.5
+ parent: 1
+ - uid: 31292
+ components:
+ - type: Transform
+ pos: 23.5,60.5
+ parent: 1
+ - uid: 31293
+ components:
+ - type: Transform
+ pos: 23.5,61.5
+ parent: 1
+ - uid: 31294
+ components:
+ - type: Transform
+ pos: 23.5,62.5
+ parent: 1
+ - uid: 31295
+ components:
+ - type: Transform
+ pos: 23.5,63.5
+ parent: 1
+ - uid: 31296
+ components:
+ - type: Transform
+ pos: 23.5,57.5
+ parent: 1
+ - uid: 31297
+ components:
+ - type: Transform
+ pos: 23.5,65.5
+ parent: 1
+ - uid: 31298
+ components:
+ - type: Transform
+ pos: 23.5,64.5
+ parent: 1
+ - uid: 31299
+ components:
+ - type: Transform
+ pos: 23.5,50.5
+ parent: 1
+ - uid: 31300
+ components:
+ - type: Transform
+ pos: 25.5,65.5
+ parent: 1
+ - uid: 31301
+ components:
+ - type: Transform
+ pos: 25.5,64.5
+ parent: 1
+ - uid: 31302
+ components:
+ - type: Transform
+ pos: 25.5,63.5
+ parent: 1
+ - uid: 31303
+ components:
+ - type: Transform
+ pos: 25.5,62.5
+ parent: 1
+ - uid: 31304
+ components:
+ - type: Transform
+ pos: 25.5,61.5
+ parent: 1
+ - uid: 31305
+ components:
+ - type: Transform
+ pos: 25.5,60.5
+ parent: 1
+ - uid: 31306
+ components:
+ - type: Transform
+ pos: 25.5,59.5
+ parent: 1
+ - uid: 31307
+ components:
+ - type: Transform
+ pos: 25.5,58.5
+ parent: 1
+ - uid: 31308
+ components:
+ - type: Transform
+ pos: 25.5,57.5
+ parent: 1
+ - uid: 31309
+ components:
+ - type: Transform
+ pos: 25.5,56.5
+ parent: 1
+ - uid: 31310
+ components:
+ - type: Transform
+ pos: 23.5,49.5
+ parent: 1
+ - uid: 31311
+ components:
+ - type: Transform
+ pos: 23.5,48.5
+ parent: 1
+ - uid: 31312
+ components:
+ - type: Transform
+ pos: 23.5,47.5
+ parent: 1
+ - uid: 31313
+ components:
+ - type: Transform
+ pos: 23.5,46.5
+ parent: 1
+ - uid: 31314
+ components:
+ - type: Transform
+ pos: 23.5,45.5
+ parent: 1
+ - uid: 31315
+ components:
+ - type: Transform
+ pos: 23.5,43.5
+ parent: 1
+ - uid: 31316
+ components:
+ - type: Transform
+ pos: 23.5,42.5
+ parent: 1
+ - uid: 31317
+ components:
+ - type: Transform
+ pos: 23.5,41.5
+ parent: 1
+ - uid: 31318
+ components:
+ - type: Transform
+ pos: 23.5,44.5
+ parent: 1
+ - uid: 31319
+ components:
+ - type: Transform
+ pos: 25.5,41.5
+ parent: 1
+ - uid: 31320
+ components:
+ - type: Transform
+ pos: 25.5,42.5
+ parent: 1
+ - uid: 31321
+ components:
+ - type: Transform
+ pos: 25.5,43.5
+ parent: 1
+ - uid: 31322
+ components:
+ - type: Transform
+ pos: 25.5,44.5
+ parent: 1
+ - uid: 31323
+ components:
+ - type: Transform
+ pos: 25.5,46.5
+ parent: 1
+ - uid: 31324
+ components:
+ - type: Transform
+ pos: 25.5,47.5
+ parent: 1
+ - uid: 31325
+ components:
+ - type: Transform
+ pos: 25.5,48.5
+ parent: 1
+ - uid: 31326
+ components:
+ - type: Transform
+ pos: 25.5,49.5
+ parent: 1
+ - uid: 31327
+ components:
+ - type: Transform
+ pos: 25.5,50.5
+ parent: 1
+ - uid: 31328
+ components:
+ - type: Transform
+ pos: 25.5,45.5
+ parent: 1
+ - uid: 31329
+ components:
+ - type: Transform
+ pos: 23.5,35.5
+ parent: 1
+ - uid: 31330
+ components:
+ - type: Transform
+ pos: 23.5,34.5
+ parent: 1
+ - uid: 31331
+ components:
+ - type: Transform
+ pos: 23.5,33.5
+ parent: 1
+ - uid: 31332
+ components:
+ - type: Transform
+ pos: 23.5,32.5
+ parent: 1
+ - uid: 31333
+ components:
+ - type: Transform
+ pos: 23.5,31.5
+ parent: 1
+ - uid: 31334
+ components:
+ - type: Transform
+ pos: 23.5,30.5
+ parent: 1
+ - uid: 31335
+ components:
+ - type: Transform
+ pos: 23.5,29.5
+ parent: 1
+ - uid: 31336
+ components:
+ - type: Transform
+ pos: 23.5,28.5
+ parent: 1
+ - uid: 31337
+ components:
+ - type: Transform
+ pos: 23.5,27.5
+ parent: 1
+ - uid: 31338
+ components:
+ - type: Transform
+ pos: 23.5,26.5
+ parent: 1
+ - uid: 31339
+ components:
+ - type: Transform
+ pos: 25.5,26.5
+ parent: 1
+ - uid: 31340
+ components:
+ - type: Transform
+ pos: 25.5,27.5
+ parent: 1
+ - uid: 31341
+ components:
+ - type: Transform
+ pos: 25.5,28.5
+ parent: 1
+ - uid: 31342
+ components:
+ - type: Transform
+ pos: 25.5,29.5
+ parent: 1
+ - uid: 31343
+ components:
+ - type: Transform
+ pos: 25.5,30.5
+ parent: 1
+ - uid: 31344
+ components:
+ - type: Transform
+ pos: 25.5,31.5
+ parent: 1
+ - uid: 31345
+ components:
+ - type: Transform
+ pos: 25.5,32.5
+ parent: 1
+ - uid: 31346
+ components:
+ - type: Transform
+ pos: 25.5,33.5
+ parent: 1
+ - uid: 31347
+ components:
+ - type: Transform
+ pos: 25.5,34.5
+ parent: 1
+ - uid: 31348
+ components:
+ - type: Transform
+ pos: 25.5,35.5
+ parent: 1
+ - uid: 31350
+ components:
+ - type: Transform
+ pos: 27.5,35.5
+ parent: 1
+ - uid: 31351
+ components:
+ - type: Transform
+ pos: 27.5,34.5
+ parent: 1
+ - uid: 31352
+ components:
+ - type: Transform
+ pos: 27.5,32.5
+ parent: 1
+ - uid: 31353
+ components:
+ - type: Transform
+ pos: 27.5,31.5
+ parent: 1
+ - uid: 31354
+ components:
+ - type: Transform
+ pos: 27.5,30.5
+ parent: 1
+ - uid: 31355
+ components:
+ - type: Transform
+ pos: 27.5,29.5
+ parent: 1
+ - uid: 31356
+ components:
+ - type: Transform
+ pos: 27.5,28.5
+ parent: 1
+ - uid: 31357
+ components:
+ - type: Transform
+ pos: 27.5,27.5
+ parent: 1
+ - uid: 31358
+ components:
+ - type: Transform
+ pos: 27.5,26.5
+ parent: 1
+ - uid: 31359
+ components:
+ - type: Transform
+ pos: 27.5,33.5
+ parent: 1
+ - uid: 31360
+ components:
+ - type: Transform
+ pos: 29.5,26.5
+ parent: 1
+ - uid: 31361
+ components:
+ - type: Transform
+ pos: 29.5,27.5
+ parent: 1
+ - uid: 31362
+ components:
+ - type: Transform
+ pos: 29.5,28.5
+ parent: 1
+ - uid: 31363
+ components:
+ - type: Transform
+ pos: 29.5,29.5
+ parent: 1
+ - uid: 31364
+ components:
+ - type: Transform
+ pos: 29.5,30.5
+ parent: 1
+ - uid: 31365
+ components:
+ - type: Transform
+ pos: 29.5,31.5
+ parent: 1
+ - uid: 31366
+ components:
+ - type: Transform
+ pos: 29.5,32.5
+ parent: 1
+ - uid: 31367
+ components:
+ - type: Transform
+ pos: 29.5,34.5
+ parent: 1
+ - uid: 31368
+ components:
+ - type: Transform
+ pos: 29.5,35.5
+ parent: 1
+ - uid: 31369
+ components:
+ - type: Transform
+ pos: 29.5,33.5
+ parent: 1
+ - uid: 31370
+ components:
+ - type: Transform
+ pos: 31.5,35.5
+ parent: 1
+ - uid: 31371
+ components:
+ - type: Transform
+ pos: 31.5,33.5
+ parent: 1
+ - uid: 31372
+ components:
+ - type: Transform
+ pos: 31.5,32.5
+ parent: 1
+ - uid: 31373
+ components:
+ - type: Transform
+ pos: 31.5,31.5
+ parent: 1
+ - uid: 31374
+ components:
+ - type: Transform
+ pos: 31.5,30.5
+ parent: 1
+ - uid: 31375
+ components:
+ - type: Transform
+ pos: 31.5,29.5
+ parent: 1
+ - uid: 31376
+ components:
+ - type: Transform
+ pos: 31.5,28.5
+ parent: 1
+ - uid: 31377
+ components:
+ - type: Transform
+ pos: 31.5,27.5
+ parent: 1
+ - uid: 31378
+ components:
+ - type: Transform
+ pos: 31.5,34.5
+ parent: 1
+ - uid: 31379
+ components:
+ - type: Transform
+ pos: 31.5,26.5
+ parent: 1
+ - uid: 31380
+ components:
+ - type: Transform
+ pos: 33.5,26.5
+ parent: 1
+ - uid: 31381
+ components:
+ - type: Transform
+ pos: 33.5,27.5
+ parent: 1
+ - uid: 31382
+ components:
+ - type: Transform
+ pos: 33.5,29.5
+ parent: 1
+ - uid: 31383
+ components:
+ - type: Transform
+ pos: 33.5,30.5
+ parent: 1
+ - uid: 31384
+ components:
+ - type: Transform
+ pos: 33.5,31.5
+ parent: 1
+ - uid: 31385
+ components:
+ - type: Transform
+ pos: 33.5,32.5
+ parent: 1
+ - uid: 31386
+ components:
+ - type: Transform
+ pos: 33.5,33.5
+ parent: 1
+ - uid: 31387
+ components:
+ - type: Transform
+ pos: 33.5,34.5
+ parent: 1
+ - uid: 31388
+ components:
+ - type: Transform
+ pos: 33.5,35.5
+ parent: 1
+ - uid: 31389
+ components:
+ - type: Transform
+ pos: 33.5,28.5
+ parent: 1
+ - uid: 31390
+ components:
+ - type: Transform
+ pos: 37.5,35.5
+ parent: 1
+ - uid: 31391
+ components:
+ - type: Transform
+ pos: 37.5,34.5
+ parent: 1
+ - uid: 31392
+ components:
+ - type: Transform
+ pos: 37.5,33.5
+ parent: 1
+ - uid: 31393
+ components:
+ - type: Transform
+ pos: 37.5,32.5
+ parent: 1
+ - uid: 31394
+ components:
+ - type: Transform
+ pos: 37.5,31.5
+ parent: 1
+ - uid: 31395
+ components:
+ - type: Transform
+ pos: 37.5,30.5
+ parent: 1
+ - uid: 31396
+ components:
+ - type: Transform
+ pos: 37.5,29.5
+ parent: 1
+ - uid: 31397
+ components:
+ - type: Transform
+ pos: 37.5,28.5
+ parent: 1
+ - uid: 31398
+ components:
+ - type: Transform
+ pos: 37.5,27.5
+ parent: 1
+ - uid: 31399
+ components:
+ - type: Transform
+ pos: 37.5,26.5
+ parent: 1
+ - uid: 31400
+ components:
+ - type: Transform
+ pos: 35.5,26.5
+ parent: 1
+ - uid: 31401
+ components:
+ - type: Transform
+ pos: 35.5,27.5
+ parent: 1
+ - uid: 31402
+ components:
+ - type: Transform
+ pos: 35.5,28.5
+ parent: 1
+ - uid: 31403
+ components:
+ - type: Transform
+ pos: 35.5,29.5
+ parent: 1
+ - uid: 31404
+ components:
+ - type: Transform
+ pos: 35.5,30.5
+ parent: 1
+ - uid: 31405
+ components:
+ - type: Transform
+ pos: 35.5,31.5
+ parent: 1
+ - uid: 31406
+ components:
+ - type: Transform
+ pos: 35.5,32.5
+ parent: 1
+ - uid: 31407
+ components:
+ - type: Transform
+ pos: 35.5,34.5
+ parent: 1
+ - uid: 31408
+ components:
+ - type: Transform
+ pos: 35.5,35.5
+ parent: 1
+ - uid: 31409
+ components:
+ - type: Transform
+ pos: 35.5,33.5
+ parent: 1
+ - uid: 31548
+ components:
+ - type: Transform
+ pos: 170.5,60.5
+ parent: 1
+ - uid: 31549
+ components:
+ - type: Transform
+ pos: 168.5,45.5
+ parent: 1
+ - uid: 31550
+ components:
+ - type: Transform
+ pos: 168.5,46.5
+ parent: 1
+ - uid: 31551
+ components:
+ - type: Transform
+ pos: 168.5,47.5
+ parent: 1
+ - uid: 31552
+ components:
+ - type: Transform
+ pos: 168.5,48.5
+ parent: 1
+ - uid: 31553
+ components:
+ - type: Transform
+ pos: 168.5,49.5
+ parent: 1
+ - uid: 31554
+ components:
+ - type: Transform
+ pos: 168.5,50.5
+ parent: 1
+ - uid: 31555
+ components:
+ - type: Transform
+ pos: 168.5,51.5
+ parent: 1
+ - uid: 31556
+ components:
+ - type: Transform
+ pos: 168.5,53.5
+ parent: 1
+ - uid: 31557
+ components:
+ - type: Transform
+ pos: 168.5,54.5
+ parent: 1
+ - uid: 31558
+ components:
+ - type: Transform
+ pos: 168.5,52.5
+ parent: 1
+ - uid: 31559
+ components:
+ - type: Transform
+ pos: 170.5,54.5
+ parent: 1
+ - uid: 31560
+ components:
+ - type: Transform
+ pos: 170.5,53.5
+ parent: 1
+ - uid: 31561
+ components:
+ - type: Transform
+ pos: 170.5,52.5
+ parent: 1
+ - uid: 31562
+ components:
+ - type: Transform
+ pos: 170.5,51.5
+ parent: 1
+ - uid: 31563
+ components:
+ - type: Transform
+ pos: 170.5,50.5
+ parent: 1
+ - uid: 31564
+ components:
+ - type: Transform
+ pos: 170.5,49.5
+ parent: 1
+ - uid: 31565
+ components:
+ - type: Transform
+ pos: 170.5,48.5
+ parent: 1
+ - uid: 31566
+ components:
+ - type: Transform
+ pos: 170.5,47.5
+ parent: 1
+ - uid: 31567
+ components:
+ - type: Transform
+ pos: 170.5,45.5
+ parent: 1
+ - uid: 31568
+ components:
+ - type: Transform
+ pos: 170.5,46.5
+ parent: 1
+ - uid: 31569
+ components:
+ - type: Transform
+ pos: 174.5,54.5
+ parent: 1
+ - uid: 31570
+ components:
+ - type: Transform
+ pos: 174.5,53.5
+ parent: 1
+ - uid: 31571
+ components:
+ - type: Transform
+ pos: 174.5,52.5
+ parent: 1
+ - uid: 31572
+ components:
+ - type: Transform
+ pos: 174.5,51.5
+ parent: 1
+ - uid: 31573
+ components:
+ - type: Transform
+ pos: 174.5,50.5
+ parent: 1
+ - uid: 31574
+ components:
+ - type: Transform
+ pos: 174.5,49.5
+ parent: 1
+ - uid: 31575
+ components:
+ - type: Transform
+ pos: 174.5,48.5
+ parent: 1
+ - uid: 31576
+ components:
+ - type: Transform
+ pos: 174.5,47.5
+ parent: 1
+ - uid: 31577
+ components:
+ - type: Transform
+ pos: 174.5,46.5
+ parent: 1
+ - uid: 31578
+ components:
+ - type: Transform
+ pos: 174.5,45.5
+ parent: 1
+ - uid: 31589
+ components:
+ - type: Transform
+ pos: 172.5,53.5
+ parent: 1
+ - uid: 31590
+ components:
+ - type: Transform
+ pos: 172.5,54.5
+ parent: 1
+ - uid: 31591
+ components:
+ - type: Transform
+ pos: 172.5,51.5
+ parent: 1
+ - uid: 31592
+ components:
+ - type: Transform
+ pos: 172.5,50.5
+ parent: 1
+ - uid: 31593
+ components:
+ - type: Transform
+ pos: 172.5,52.5
+ parent: 1
+ - uid: 31594
+ components:
+ - type: Transform
+ pos: 172.5,49.5
+ parent: 1
+ - uid: 31595
+ components:
+ - type: Transform
+ pos: 172.5,48.5
+ parent: 1
+ - uid: 31596
+ components:
+ - type: Transform
+ pos: 172.5,47.5
+ parent: 1
+ - uid: 31597
+ components:
+ - type: Transform
+ pos: 172.5,46.5
+ parent: 1
+ - uid: 31598
+ components:
+ - type: Transform
+ pos: 172.5,45.5
+ parent: 1
+ - uid: 31599
+ components:
+ - type: Transform
+ pos: 176.5,45.5
+ parent: 1
+ - uid: 31600
+ components:
+ - type: Transform
+ pos: 176.5,46.5
+ parent: 1
+ - uid: 31601
+ components:
+ - type: Transform
+ pos: 176.5,47.5
+ parent: 1
+ - uid: 31602
+ components:
+ - type: Transform
+ pos: 176.5,48.5
+ parent: 1
+ - uid: 31603
+ components:
+ - type: Transform
+ pos: 176.5,49.5
+ parent: 1
+ - uid: 31604
+ components:
+ - type: Transform
+ pos: 176.5,50.5
+ parent: 1
+ - uid: 31605
+ components:
+ - type: Transform
+ pos: 176.5,51.5
+ parent: 1
+ - uid: 31606
+ components:
+ - type: Transform
+ pos: 176.5,52.5
+ parent: 1
+ - uid: 31607
+ components:
+ - type: Transform
+ pos: 176.5,53.5
+ parent: 1
+ - uid: 31608
+ components:
+ - type: Transform
+ pos: 176.5,54.5
+ parent: 1
+ - uid: 31619
+ components:
+ - type: Transform
+ pos: 178.5,47.5
+ parent: 1
+ - uid: 31620
+ components:
+ - type: Transform
+ pos: 178.5,46.5
+ parent: 1
+ - uid: 31621
+ components:
+ - type: Transform
+ pos: 178.5,50.5
+ parent: 1
+ - uid: 31622
+ components:
+ - type: Transform
+ pos: 178.5,45.5
+ parent: 1
+ - uid: 31623
+ components:
+ - type: Transform
+ pos: 178.5,48.5
+ parent: 1
+ - uid: 31624
+ components:
+ - type: Transform
+ pos: 178.5,49.5
+ parent: 1
+ - uid: 31625
+ components:
+ - type: Transform
+ pos: 178.5,52.5
+ parent: 1
+ - uid: 31626
+ components:
+ - type: Transform
+ pos: 178.5,51.5
+ parent: 1
+ - uid: 31627
+ components:
+ - type: Transform
+ pos: 178.5,53.5
+ parent: 1
+ - uid: 31628
+ components:
+ - type: Transform
+ pos: 178.5,54.5
+ parent: 1
+ - uid: 31629
+ components:
+ - type: Transform
+ pos: 178.5,60.5
+ parent: 1
+ - uid: 31630
+ components:
+ - type: Transform
+ pos: 178.5,61.5
+ parent: 1
+ - uid: 31631
+ components:
+ - type: Transform
+ pos: 178.5,62.5
+ parent: 1
+ - uid: 31632
+ components:
+ - type: Transform
+ pos: 178.5,63.5
+ parent: 1
+ - uid: 31633
+ components:
+ - type: Transform
+ pos: 178.5,64.5
+ parent: 1
+ - uid: 31634
+ components:
+ - type: Transform
+ pos: 178.5,66.5
+ parent: 1
+ - uid: 31635
+ components:
+ - type: Transform
+ pos: 178.5,67.5
+ parent: 1
+ - uid: 31636
+ components:
+ - type: Transform
+ pos: 178.5,68.5
+ parent: 1
+ - uid: 31637
+ components:
+ - type: Transform
+ pos: 178.5,69.5
+ parent: 1
+ - uid: 31642
+ components:
+ - type: Transform
+ pos: 178.5,65.5
+ parent: 1
+ - uid: 31648
+ components:
+ - type: Transform
+ pos: 176.5,60.5
+ parent: 1
+ - uid: 31650
+ components:
+ - type: Transform
+ pos: 176.5,62.5
+ parent: 1
+ - uid: 31651
+ components:
+ - type: Transform
+ pos: 176.5,63.5
+ parent: 1
+ - uid: 31652
+ components:
+ - type: Transform
+ pos: 176.5,64.5
+ parent: 1
+ - uid: 31653
+ components:
+ - type: Transform
+ pos: 176.5,65.5
+ parent: 1
+ - uid: 31654
+ components:
+ - type: Transform
+ pos: 176.5,66.5
+ parent: 1
+ - uid: 31655
+ components:
+ - type: Transform
+ pos: 176.5,61.5
+ parent: 1
+ - uid: 31656
+ components:
+ - type: Transform
+ pos: 176.5,68.5
+ parent: 1
+ - uid: 31657
+ components:
+ - type: Transform
+ pos: 176.5,67.5
+ parent: 1
+ - uid: 31658
+ components:
+ - type: Transform
+ pos: 176.5,69.5
+ parent: 1
+ - uid: 31659
+ components:
+ - type: Transform
+ pos: 174.5,69.5
+ parent: 1
+ - uid: 31660
+ components:
+ - type: Transform
+ pos: 174.5,68.5
+ parent: 1
+ - uid: 31661
+ components:
+ - type: Transform
+ pos: 174.5,67.5
+ parent: 1
+ - uid: 31662
+ components:
+ - type: Transform
+ pos: 174.5,66.5
+ parent: 1
+ - uid: 31663
+ components:
+ - type: Transform
+ pos: 174.5,65.5
+ parent: 1
+ - uid: 31664
+ components:
+ - type: Transform
+ pos: 174.5,64.5
+ parent: 1
+ - uid: 31665
+ components:
+ - type: Transform
+ pos: 174.5,63.5
+ parent: 1
+ - uid: 31666
+ components:
+ - type: Transform
+ pos: 174.5,62.5
+ parent: 1
+ - uid: 31667
+ components:
+ - type: Transform
+ pos: 174.5,61.5
+ parent: 1
+ - uid: 31668
+ components:
+ - type: Transform
+ pos: 174.5,60.5
+ parent: 1
+ - uid: 31679
+ components:
+ - type: Transform
+ pos: 172.5,69.5
+ parent: 1
+ - uid: 31680
+ components:
+ - type: Transform
+ pos: 172.5,67.5
+ parent: 1
+ - uid: 31681
+ components:
+ - type: Transform
+ pos: 172.5,66.5
+ parent: 1
+ - uid: 31682
+ components:
+ - type: Transform
+ pos: 172.5,65.5
+ parent: 1
+ - uid: 31683
+ components:
+ - type: Transform
+ pos: 172.5,68.5
+ parent: 1
+ - uid: 31684
+ components:
+ - type: Transform
+ pos: 172.5,64.5
+ parent: 1
+ - uid: 31685
+ components:
+ - type: Transform
+ pos: 172.5,63.5
+ parent: 1
+ - uid: 31686
+ components:
+ - type: Transform
+ pos: 172.5,62.5
+ parent: 1
+ - uid: 31687
+ components:
+ - type: Transform
+ pos: 172.5,61.5
+ parent: 1
+ - uid: 31688
+ components:
+ - type: Transform
+ pos: 172.5,60.5
+ parent: 1
+ - uid: 31689
+ components:
+ - type: Transform
+ pos: 170.5,61.5
+ parent: 1
+ - uid: 31690
+ components:
+ - type: Transform
+ pos: 170.5,62.5
+ parent: 1
+ - uid: 31691
+ components:
+ - type: Transform
+ pos: 170.5,63.5
+ parent: 1
+ - uid: 31692
+ components:
+ - type: Transform
+ pos: 170.5,64.5
+ parent: 1
+ - uid: 31693
+ components:
+ - type: Transform
+ pos: 170.5,65.5
+ parent: 1
+ - uid: 31694
+ components:
+ - type: Transform
+ pos: 170.5,66.5
+ parent: 1
+ - uid: 31695
+ components:
+ - type: Transform
+ pos: 170.5,67.5
+ parent: 1
+ - uid: 31696
+ components:
+ - type: Transform
+ pos: 170.5,68.5
+ parent: 1
+ - uid: 31697
+ components:
+ - type: Transform
+ pos: 170.5,69.5
+ parent: 1
+ - uid: 31707
+ components:
+ - type: Transform
+ pos: 168.5,60.5
+ parent: 1
+ - uid: 31708
+ components:
+ - type: Transform
+ pos: 168.5,61.5
+ parent: 1
+ - uid: 31709
+ components:
+ - type: Transform
+ pos: 168.5,62.5
+ parent: 1
+ - uid: 31711
+ components:
+ - type: Transform
+ pos: 168.5,63.5
+ parent: 1
+ - uid: 31712
+ components:
+ - type: Transform
+ pos: 168.5,64.5
+ parent: 1
+ - uid: 31713
+ components:
+ - type: Transform
+ pos: 168.5,66.5
+ parent: 1
+ - uid: 31714
+ components:
+ - type: Transform
+ pos: 168.5,67.5
+ parent: 1
+ - uid: 31715
+ components:
+ - type: Transform
+ pos: 168.5,68.5
+ parent: 1
+ - uid: 31716
+ components:
+ - type: Transform
+ pos: 168.5,65.5
+ parent: 1
+ - uid: 31717
+ components:
+ - type: Transform
+ pos: 168.5,69.5
+ parent: 1
+- proto: SolarTracker
+ entities:
+ - uid: 21
+ components:
+ - type: Transform
+ pos: 20.5,53.5
+ parent: 1
+ - uid: 30939
+ components:
+ - type: Transform
+ pos: 34.5,141.5
+ parent: 1
+ - uid: 31710
+ components:
+ - type: Transform
+ pos: 181.5,57.5
+ parent: 1
+- proto: SpaceCash
+ entities:
+ - uid: 35779
+ components:
+ - type: Transform
+ pos: 55.463646,122.382355
+ parent: 1
+ - uid: 35780
+ components:
+ - type: Transform
+ pos: 54.514187,122.817215
+ parent: 1
+ - uid: 35781
+ components:
+ - type: Transform
+ pos: 54.398224,123.31731
+ parent: 1
+ - uid: 35782
+ components:
+ - type: Transform
+ pos: 55.30057,123.65796
+ parent: 1
+ - uid: 35783
+ components:
+ - type: Transform
+ pos: 55.521626,123.070885
+ parent: 1
+ - uid: 35784
+ components:
+ - type: Transform
+ pos: 54.354736,122.55267
+ parent: 1
+ - uid: 35786
+ components:
+ - type: Transform
+ pos: 54.622906,123.53112
+ parent: 1
+ - uid: 35787
+ components:
+ - type: Transform
+ pos: 54.249645,123.83915
+ parent: 1
+ - uid: 35788
+ components:
+ - type: Transform
+ pos: 55.717316,123.360794
+ parent: 1
+ - uid: 35789
+ components:
+ - type: Transform
+ pos: 55.800667,122.63965
+ parent: 1
+- proto: SpaceCash10
+ entities:
+ - uid: 35785
+ components:
+ - type: Transform
+ pos: 55.137497,122.73749
+ parent: 1
+- proto: SpacemenFigureSpawner
+ entities:
+ - uid: 27286
+ components:
+ - type: Transform
+ pos: 80.5,48.5
+ parent: 1
+- proto: SpaceVillainArcadeFilled
+ entities:
+ - uid: 4179
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,111.5
+ parent: 1
+ - uid: 4180
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,113.5
+ parent: 1
+ - uid: 4271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,111.5
+ parent: 1
+ - uid: 4272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,113.5
+ parent: 1
+ - uid: 4381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,114.5
+ parent: 1
+ - uid: 4382
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 120.5,113.5
+ parent: 1
+ - uid: 23032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,51.5
+ parent: 1
+ - uid: 26524
+ components:
+ - type: Transform
+ anchored: False
+ rot: 1.5707963267948966 rad
+ pos: 124.5,104.5
+ parent: 1
+ - type: Physics
+ bodyType: Dynamic
+- proto: SpawnMechRipley
+ entities:
+ - uid: 20831
+ components:
+ - type: Transform
+ pos: 154.5,107.5
+ parent: 1
+- proto: SpawnMobAlexander
+ entities:
+ - uid: 26876
+ components:
+ - type: Transform
+ pos: 119.5,99.5
+ parent: 1
+- proto: SpawnMobBandito
+ entities:
+ - uid: 20991
+ components:
+ - type: Transform
+ pos: 40.5,108.5
+ parent: 1
+- proto: SpawnMobBoxingKangaroo
+ entities:
+ - uid: 26826
+ components:
+ - type: Transform
+ pos: 106.5,82.5
+ parent: 1
+- proto: SpawnMobButterfly
+ entities:
+ - uid: 26630
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,99.5
+ parent: 1
+ - uid: 26631
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,100.5
+ parent: 1
+ - uid: 26632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,101.5
+ parent: 1
+ - uid: 32579
+ components:
+ - type: Transform
+ pos: 136.5,83.5
+ parent: 1
+ - uid: 34025
+ components:
+ - type: Transform
+ pos: 132.5,80.5
+ parent: 1
+ - uid: 34026
+ components:
+ - type: Transform
+ pos: 137.5,81.5
+ parent: 1
+- proto: SpawnMobCat
+ entities:
+ - uid: 23682
+ components:
+ - type: Transform
+ pos: 88.5,94.5
+ parent: 1
+- proto: SpawnMobCleanBot
+ entities:
+ - uid: 29574
+ components:
+ - type: Transform
+ pos: 157.5,123.5
+ parent: 1
+- proto: SpawnMobCorgi
+ entities:
+ - uid: 13533
+ components:
+ - type: Transform
+ pos: 55.5,56.5
+ parent: 1
+- proto: SpawnMobCrabAtmos
+ entities:
+ - uid: 36773
+ components:
+ - type: Transform
+ pos: 74.5,139.5
+ parent: 1
+- proto: SpawnMobFoxRenault
+ entities:
+ - uid: 13578
+ components:
+ - type: Transform
+ pos: 37.5,70.5
+ parent: 1
+- proto: SpawnMobMcGriff
+ entities:
+ - uid: 22967
+ components:
+ - type: Transform
+ pos: 131.5,69.5
+ parent: 1
+- proto: SpawnMobMedibot
+ entities:
+ - uid: 17745
+ components:
+ - type: Transform
+ pos: 75.5,95.5
+ parent: 1
+ - uid: 17746
+ components:
+ - type: Transform
+ pos: 73.5,104.5
+ parent: 1
+- proto: SpawnMobMonkey
+ entities:
+ - uid: 10604
+ components:
+ - type: Transform
+ pos: 27.5,112.5
+ parent: 1
+- proto: SpawnMobMonkeyPunpun
+ entities:
+ - uid: 26709
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,109.5
+ parent: 1
+- proto: SpawnMobMouse
+ entities:
+ - uid: 5196
+ components:
+ - type: Transform
+ pos: 159.5,114.5
+ parent: 1
+ - uid: 8699
+ components:
+ - type: Transform
+ pos: 138.5,131.5
+ parent: 1
+ - uid: 12541
+ components:
+ - type: Transform
+ pos: 148.5,76.5
+ parent: 1
+ - uid: 16953
+ components:
+ - type: Transform
+ pos: 70.5,157.5
+ parent: 1
+ - uid: 18730
+ components:
+ - type: Transform
+ pos: 27.5,80.5
+ parent: 1
+ - uid: 34650
+ components:
+ - type: Transform
+ pos: 144.5,133.5
+ parent: 1
+ - uid: 35017
+ components:
+ - type: Transform
+ pos: 52.5,118.5
+ parent: 1
+ - uid: 35020
+ components:
+ - type: Transform
+ pos: 23.5,107.5
+ parent: 1
+ - uid: 36648
+ components:
+ - type: Transform
+ pos: 34.5,121.5
+ parent: 1
+ - uid: 36849
+ components:
+ - type: Transform
+ pos: 69.5,18.5
+ parent: 1
+ - uid: 36867
+ components:
+ - type: Transform
+ pos: 76.5,80.5
+ parent: 1
+ - uid: 36869
+ components:
+ - type: Transform
+ pos: 105.5,169.5
+ parent: 1
+ - uid: 36873
+ components:
+ - type: Transform
+ pos: 123.5,42.5
+ parent: 1
+ - uid: 36875
+ components:
+ - type: Transform
+ pos: 63.5,38.5
+ parent: 1
+- proto: SpawnMobParrot
+ entities:
+ - uid: 16153
+ components:
+ - type: Transform
+ pos: 128.5,146.5
+ parent: 1
+- proto: SpawnMobPossumMorty
+ entities:
+ - uid: 27969
+ components:
+ - type: Transform
+ pos: 61.5,83.5
+ parent: 1
+- proto: SpawnMobRaccoonMorticia
+ entities:
+ - uid: 19440
+ components:
+ - type: Transform
+ pos: 144.5,102.5
+ parent: 1
+- proto: SpawnMobShiva
+ entities:
+ - uid: 3464
+ components:
+ - type: Transform
+ pos: 141.5,65.5
+ parent: 1
+- proto: SpawnMobSlothPaperwork
+ entities:
+ - uid: 27099
+ components:
+ - type: Transform
+ pos: 75.5,56.5
+ parent: 1
+- proto: SpawnMobSmile
+ entities:
+ - uid: 20467
+ components:
+ - type: Transform
+ pos: 43.5,100.5
+ parent: 1
+- proto: SpawnPointAtmos
+ entities:
+ - uid: 15994
+ components:
+ - type: Transform
+ pos: 73.5,118.5
+ parent: 1
+ - uid: 15995
+ components:
+ - type: Transform
+ pos: 74.5,118.5
+ parent: 1
+ - uid: 15996
+ components:
+ - type: Transform
+ pos: 75.5,118.5
+ parent: 1
+- proto: SpawnPointBartender
+ entities:
+ - uid: 26537
+ components:
+ - type: Transform
+ pos: 107.5,103.5
+ parent: 1
+ - uid: 26538
+ components:
+ - type: Transform
+ pos: 107.5,104.5
+ parent: 1
+- proto: SpawnPointBorg
+ entities:
+ - uid: 19363
+ components:
+ - type: Transform
+ pos: 61.5,92.5
+ parent: 1
+ - uid: 19364
+ components:
+ - type: Transform
+ pos: 61.5,94.5
+ parent: 1
+ - uid: 19365
+ components:
+ - type: Transform
+ pos: 61.5,93.5
+ parent: 1
+ - uid: 20959
+ components:
+ - type: Transform
+ pos: 60.5,94.5
+ parent: 1
+ - uid: 20960
+ components:
+ - type: Transform
+ pos: 60.5,93.5
+ parent: 1
+ - uid: 20961
+ components:
+ - type: Transform
+ pos: 60.5,92.5
+ parent: 1
+ - uid: 20962
+ components:
+ - type: Transform
+ pos: 62.5,92.5
+ parent: 1
+ - uid: 20963
+ components:
+ - type: Transform
+ pos: 62.5,93.5
+ parent: 1
+ - uid: 20964
+ components:
+ - type: Transform
+ pos: 62.5,94.5
+ parent: 1
+- proto: SpawnPointBotanist
+ entities:
+ - uid: 26457
+ components:
+ - type: Transform
+ pos: 100.5,91.5
+ parent: 1
+ - uid: 26464
+ components:
+ - type: Transform
+ pos: 99.5,91.5
+ parent: 1
+ - uid: 26465
+ components:
+ - type: Transform
+ pos: 98.5,91.5
+ parent: 1
+- proto: SpawnPointBoxer
+ entities:
+ - uid: 27093
+ components:
+ - type: Transform
+ pos: 101.5,82.5
+ parent: 1
+ - uid: 27094
+ components:
+ - type: Transform
+ pos: 111.5,83.5
+ parent: 1
+- proto: SpawnPointCaptain
+ entities:
+ - uid: 11542
+ components:
+ - type: Transform
+ pos: 33.5,75.5
+ parent: 1
+- proto: SpawnPointCargoTechnician
+ entities:
+ - uid: 19564
+ components:
+ - type: Transform
+ pos: 139.5,105.5
+ parent: 1
+ - uid: 19567
+ components:
+ - type: Transform
+ pos: 139.5,104.5
+ parent: 1
+ - uid: 19738
+ components:
+ - type: Transform
+ pos: 139.5,102.5
+ parent: 1
+ - uid: 20433
+ components:
+ - type: Transform
+ pos: 139.5,103.5
+ parent: 1
+- proto: SpawnPointChaplain
+ entities:
+ - uid: 32084
+ components:
+ - type: Transform
+ pos: 69.5,69.5
+ parent: 1
+- proto: SpawnPointChef
+ entities:
+ - uid: 20910
+ components:
+ - type: Transform
+ pos: 122.5,100.5
+ parent: 1
+ - uid: 36558
+ components:
+ - type: Transform
+ pos: 116.5,101.5
+ parent: 1
+- proto: SpawnPointChemist
+ entities:
+ - uid: 5681
+ components:
+ - type: Transform
+ pos: 87.5,101.5
+ parent: 1
+ - uid: 5682
+ components:
+ - type: Transform
+ pos: 87.5,102.5
+ parent: 1
+ - uid: 5694
+ components:
+ - type: Transform
+ pos: 87.5,103.5
+ parent: 1
+- proto: SpawnPointChiefEngineer
+ entities:
+ - uid: 16098
+ components:
+ - type: Transform
+ pos: 131.5,145.5
+ parent: 1
+- proto: SpawnPointChiefMedicalOfficer
+ entities:
+ - uid: 17729
+ components:
+ - type: Transform
+ pos: 92.5,91.5
+ parent: 1
+- proto: SpawnPointClown
+ entities:
+ - uid: 26748
+ components:
+ - type: Transform
+ pos: 106.5,58.5
+ parent: 1
+- proto: SpawnPointDetective
+ entities:
+ - uid: 37458
+ components:
+ - type: Transform
+ pos: 87.5,55.5
+ parent: 1
+- proto: SpawnPointHeadOfPersonnel
+ entities:
+ - uid: 11544
+ components:
+ - type: Transform
+ pos: 56.5,51.5
+ parent: 1
+- proto: SpawnPointHeadOfSecurity
+ entities:
+ - uid: 23149
+ components:
+ - type: Transform
+ pos: 144.5,61.5
+ parent: 1
+- proto: SpawnPointJanitor
+ entities:
+ - uid: 29560
+ components:
+ - type: Transform
+ pos: 154.5,126.5
+ parent: 1
+ - uid: 29561
+ components:
+ - type: Transform
+ pos: 155.5,126.5
+ parent: 1
+ - uid: 29562
+ components:
+ - type: Transform
+ pos: 155.5,127.5
+ parent: 1
+- proto: SpawnPointLawyer
+ entities:
+ - uid: 11867
+ components:
+ - type: Transform
+ pos: 107.5,41.5
+ parent: 1
+ - uid: 26552
+ components:
+ - type: Transform
+ pos: 105.5,41.5
+ parent: 1
+- proto: SpawnPointLibrarian
+ entities:
+ - uid: 2874
+ components:
+ - type: Transform
+ pos: 77.5,48.5
+ parent: 1
+- proto: SpawnPointMedicalDoctor
+ entities:
+ - uid: 17713
+ components:
+ - type: Transform
+ pos: 69.5,83.5
+ parent: 1
+ - uid: 17980
+ components:
+ - type: Transform
+ pos: 69.5,82.5
+ parent: 1
+ - uid: 17981
+ components:
+ - type: Transform
+ pos: 73.5,98.5
+ parent: 1
+ - uid: 17982
+ components:
+ - type: Transform
+ pos: 74.5,98.5
+ parent: 1
+ - uid: 17983
+ components:
+ - type: Transform
+ pos: 75.5,98.5
+ parent: 1
+ - uid: 17984
+ components:
+ - type: Transform
+ pos: 76.5,98.5
+ parent: 1
+ - uid: 17985
+ components:
+ - type: Transform
+ pos: 76.5,96.5
+ parent: 1
+ - uid: 17986
+ components:
+ - type: Transform
+ pos: 75.5,96.5
+ parent: 1
+ - uid: 17987
+ components:
+ - type: Transform
+ pos: 74.5,96.5
+ parent: 1
+ - uid: 17988
+ components:
+ - type: Transform
+ pos: 73.5,96.5
+ parent: 1
+ - uid: 17989
+ components:
+ - type: Transform
+ pos: 66.5,81.5
+ parent: 1
+ - uid: 17990
+ components:
+ - type: Transform
+ pos: 66.5,82.5
+ parent: 1
+ - uid: 17991
+ components:
+ - type: Transform
+ pos: 66.5,83.5
+ parent: 1
+- proto: SpawnPointMedicalIntern
+ entities:
+ - uid: 17627
+ components:
+ - type: Transform
+ pos: 71.5,96.5
+ parent: 1
+ - uid: 17994
+ components:
+ - type: Transform
+ pos: 71.5,97.5
+ parent: 1
+ - uid: 17995
+ components:
+ - type: Transform
+ pos: 71.5,98.5
+ parent: 1
+ - uid: 17996
+ components:
+ - type: Transform
+ pos: 78.5,98.5
+ parent: 1
+ - uid: 17997
+ components:
+ - type: Transform
+ pos: 78.5,96.5
+ parent: 1
+ - uid: 17998
+ components:
+ - type: Transform
+ pos: 78.5,97.5
+ parent: 1
+- proto: SpawnPointMime
+ entities:
+ - uid: 26741
+ components:
+ - type: Transform
+ pos: 100.5,59.5
+ parent: 1
+- proto: SpawnPointMusician
+ entities:
+ - uid: 27092
+ components:
+ - type: Transform
+ pos: 112.5,59.5
+ parent: 1
+- proto: SpawnPointParamedic
+ entities:
+ - uid: 17719
+ components:
+ - type: Transform
+ pos: 77.5,103.5
+ parent: 1
+- proto: SpawnPointPassenger
+ entities:
+ - uid: 26894
+ components:
+ - type: Transform
+ pos: 104.5,74.5
+ parent: 1
+ - uid: 26895
+ components:
+ - type: Transform
+ pos: 103.5,74.5
+ parent: 1
+ - uid: 26904
+ components:
+ - type: Transform
+ pos: 105.5,74.5
+ parent: 1
+ - uid: 27031
+ components:
+ - type: Transform
+ pos: 102.5,74.5
+ parent: 1
+ - uid: 27086
+ components:
+ - type: Transform
+ pos: 109.5,74.5
+ parent: 1
+ - uid: 27089
+ components:
+ - type: Transform
+ pos: 108.5,74.5
+ parent: 1
+ - uid: 27091
+ components:
+ - type: Transform
+ pos: 110.5,74.5
+ parent: 1
+ - uid: 27169
+ components:
+ - type: Transform
+ pos: 107.5,74.5
+ parent: 1
+ - uid: 27170
+ components:
+ - type: Transform
+ pos: 106.5,74.5
+ parent: 1
+ - uid: 31834
+ components:
+ - type: Transform
+ pos: 102.5,75.5
+ parent: 1
+ - uid: 31837
+ components:
+ - type: Transform
+ pos: 103.5,75.5
+ parent: 1
+ - uid: 31840
+ components:
+ - type: Transform
+ pos: 104.5,75.5
+ parent: 1
+ - uid: 31843
+ components:
+ - type: Transform
+ pos: 105.5,75.5
+ parent: 1
+ - uid: 31846
+ components:
+ - type: Transform
+ pos: 106.5,75.5
+ parent: 1
+ - uid: 31849
+ components:
+ - type: Transform
+ pos: 107.5,75.5
+ parent: 1
+ - uid: 31852
+ components:
+ - type: Transform
+ pos: 108.5,75.5
+ parent: 1
+ - uid: 31854
+ components:
+ - type: Transform
+ pos: 109.5,75.5
+ parent: 1
+ - uid: 31858
+ components:
+ - type: Transform
+ pos: 110.5,75.5
+ parent: 1
+- proto: SpawnPointQuartermaster
+ entities:
+ - uid: 19376
+ components:
+ - type: Transform
+ pos: 143.5,109.5
+ parent: 1
+- proto: SpawnPointReporter
+ entities:
+ - uid: 29654
+ components:
+ - type: Transform
+ pos: 145.5,127.5
+ parent: 1
+ - uid: 29655
+ components:
+ - type: Transform
+ pos: 144.5,127.5
+ parent: 1
+- proto: SpawnPointResearchAssistant
+ entities:
+ - uid: 20833
+ components:
+ - type: Transform
+ pos: 28.5,101.5
+ parent: 1
+ - uid: 20834
+ components:
+ - type: Transform
+ pos: 27.5,101.5
+ parent: 1
+ - uid: 20835
+ components:
+ - type: Transform
+ pos: 27.5,103.5
+ parent: 1
+ - uid: 20836
+ components:
+ - type: Transform
+ pos: 28.5,103.5
+ parent: 1
+- proto: SpawnPointResearchDirector
+ entities:
+ - uid: 20409
+ components:
+ - type: Transform
+ pos: 34.5,104.5
+ parent: 1
+- proto: SpawnPointSalvageSpecialist
+ entities:
+ - uid: 12479
+ components:
+ - type: Transform
+ pos: 143.5,88.5
+ parent: 1
+ - uid: 19457
+ components:
+ - type: Transform
+ pos: 143.5,89.5
+ parent: 1
+ - uid: 19468
+ components:
+ - type: Transform
+ pos: 143.5,87.5
+ parent: 1
+- proto: SpawnPointScientist
+ entities:
+ - uid: 20444
+ components:
+ - type: Transform
+ pos: 48.5,89.5
+ parent: 1
+ - uid: 20454
+ components:
+ - type: Transform
+ pos: 61.5,96.5
+ parent: 1
+ - uid: 20822
+ components:
+ - type: Transform
+ pos: 27.5,104.5
+ parent: 1
+ - uid: 20823
+ components:
+ - type: Transform
+ pos: 28.5,104.5
+ parent: 1
+ - uid: 20824
+ components:
+ - type: Transform
+ pos: 25.5,104.5
+ parent: 1
+ - uid: 20825
+ components:
+ - type: Transform
+ pos: 24.5,104.5
+ parent: 1
+ - uid: 20827
+ components:
+ - type: Transform
+ pos: 62.5,96.5
+ parent: 1
+ - uid: 20837
+ components:
+ - type: Transform
+ pos: 48.5,91.5
+ parent: 1
+ - uid: 20838
+ components:
+ - type: Transform
+ pos: 48.5,88.5
+ parent: 1
+ - uid: 20839
+ components:
+ - type: Transform
+ pos: 48.5,90.5
+ parent: 1
+- proto: SpawnPointSecurityCadet
+ entities:
+ - uid: 23152
+ components:
+ - type: Transform
+ pos: 154.5,52.5
+ parent: 1
+ - uid: 23153
+ components:
+ - type: Transform
+ pos: 154.5,51.5
+ parent: 1
+ - uid: 23154
+ components:
+ - type: Transform
+ pos: 154.5,50.5
+ parent: 1
+ - uid: 23155
+ components:
+ - type: Transform
+ pos: 153.5,52.5
+ parent: 1
+ - uid: 23156
+ components:
+ - type: Transform
+ pos: 153.5,51.5
+ parent: 1
+ - uid: 23157
+ components:
+ - type: Transform
+ pos: 153.5,50.5
+ parent: 1
+- proto: SpawnPointSecurityOfficer
+ entities:
+ - uid: 23158
+ components:
+ - type: Transform
+ pos: 146.5,52.5
+ parent: 1
+ - uid: 23159
+ components:
+ - type: Transform
+ pos: 146.5,51.5
+ parent: 1
+ - uid: 23160
+ components:
+ - type: Transform
+ pos: 148.5,52.5
+ parent: 1
+ - uid: 23161
+ components:
+ - type: Transform
+ pos: 148.5,51.5
+ parent: 1
+ - uid: 23162
+ components:
+ - type: Transform
+ pos: 152.5,57.5
+ parent: 1
+ - uid: 23164
+ components:
+ - type: Transform
+ pos: 153.5,57.5
+ parent: 1
+ - uid: 23166
+ components:
+ - type: Transform
+ pos: 147.5,48.5
+ parent: 1
+ - uid: 23167
+ components:
+ - type: Transform
+ pos: 149.5,48.5
+ parent: 1
+ - uid: 23168
+ components:
+ - type: Transform
+ pos: 144.5,49.5
+ parent: 1
+ - uid: 23169
+ components:
+ - type: Transform
+ pos: 144.5,51.5
+ parent: 1
+ - uid: 23653
+ components:
+ - type: Transform
+ pos: 152.5,56.5
+ parent: 1
+ - uid: 24285
+ components:
+ - type: Transform
+ pos: 153.5,56.5
+ parent: 1
+ - uid: 24409
+ components:
+ - type: Transform
+ pos: 154.5,56.5
+ parent: 1
+ - uid: 26228
+ components:
+ - type: Transform
+ pos: 154.5,57.5
+ parent: 1
+- proto: SpawnPointServiceWorker
+ entities:
+ - uid: 26520
+ components:
+ - type: Transform
+ pos: 107.5,98.5
+ parent: 1
+ - uid: 26521
+ components:
+ - type: Transform
+ pos: 108.5,98.5
+ parent: 1
+ - uid: 26522
+ components:
+ - type: Transform
+ pos: 109.5,98.5
+ parent: 1
+ - uid: 27376
+ components:
+ - type: Transform
+ pos: 107.5,97.5
+ parent: 1
+ - uid: 27377
+ components:
+ - type: Transform
+ pos: 108.5,97.5
+ parent: 1
+ - uid: 27378
+ components:
+ - type: Transform
+ pos: 109.5,97.5
+ parent: 1
+- proto: SpawnPointStationEngineer
+ entities:
+ - uid: 16071
+ components:
+ - type: Transform
+ pos: 132.5,135.5
+ parent: 1
+ - uid: 16074
+ components:
+ - type: Transform
+ pos: 132.5,134.5
+ parent: 1
+ - uid: 16075
+ components:
+ - type: Transform
+ pos: 132.5,133.5
+ parent: 1
+ - uid: 16105
+ components:
+ - type: Transform
+ pos: 135.5,135.5
+ parent: 1
+ - uid: 16106
+ components:
+ - type: Transform
+ pos: 135.5,134.5
+ parent: 1
+ - uid: 16107
+ components:
+ - type: Transform
+ pos: 135.5,133.5
+ parent: 1
+ - uid: 18005
+ components:
+ - type: Transform
+ pos: 128.5,138.5
+ parent: 1
+ - uid: 18006
+ components:
+ - type: Transform
+ pos: 129.5,138.5
+ parent: 1
+ - uid: 18007
+ components:
+ - type: Transform
+ pos: 130.5,138.5
+ parent: 1
+ - uid: 18008
+ components:
+ - type: Transform
+ pos: 130.5,136.5
+ parent: 1
+ - uid: 18009
+ components:
+ - type: Transform
+ pos: 130.5,135.5
+ parent: 1
+ - uid: 18010
+ components:
+ - type: Transform
+ pos: 130.5,134.5
+ parent: 1
+ - uid: 18011
+ components:
+ - type: Transform
+ pos: 130.5,137.5
+ parent: 1
+- proto: SpawnPointTechnicalAssistant
+ entities:
+ - uid: 17999
+ components:
+ - type: Transform
+ pos: 126.5,134.5
+ parent: 1
+ - uid: 18000
+ components:
+ - type: Transform
+ pos: 126.5,133.5
+ parent: 1
+ - uid: 18001
+ components:
+ - type: Transform
+ pos: 126.5,132.5
+ parent: 1
+ - uid: 18002
+ components:
+ - type: Transform
+ pos: 127.5,134.5
+ parent: 1
+ - uid: 18003
+ components:
+ - type: Transform
+ pos: 127.5,133.5
+ parent: 1
+ - uid: 18004
+ components:
+ - type: Transform
+ pos: 127.5,132.5
+ parent: 1
+- proto: SpawnPointWarden
+ entities:
+ - uid: 23172
+ components:
+ - type: Transform
+ pos: 132.5,73.5
+ parent: 1
+- proto: Spear
+ entities:
+ - uid: 9712
+ components:
+ - type: Transform
+ pos: 96.52463,30.493198
+ parent: 1
+- proto: Spoon
+ entities:
+ - uid: 26595
+ components:
+ - type: Transform
+ pos: 104.76255,104.474
+ parent: 1
+ - uid: 27382
+ components:
+ - type: Transform
+ pos: 104.601875,104.56187
+ parent: 1
+- proto: SprayBottleSpaceCleaner
+ entities:
+ - uid: 29586
+ components:
+ - type: Transform
+ pos: 158.16003,128.44864
+ parent: 1
+ - uid: 29587
+ components:
+ - type: Transform
+ pos: 158.25378,128.64656
+ parent: 1
+ - uid: 29588
+ components:
+ - type: Transform
+ pos: 158.43088,128.39656
+ parent: 1
+- proto: SprayBottleWater
+ entities:
+ - uid: 20817
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 33.241318,109.897194
+ parent: 1
+ - uid: 26636
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 119.29367,93.61881
+ parent: 1
+- proto: StairDark
+ entities:
+ - uid: 1335
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,87.5
+ parent: 1
+ - uid: 2491
+ components:
+ - type: Transform
+ pos: 67.5,47.5
+ parent: 1
+ - uid: 2882
+ components:
+ - type: Transform
+ pos: 68.5,47.5
+ parent: 1
+ - uid: 3118
+ components:
+ - type: Transform
+ pos: 84.5,47.5
+ parent: 1
+ - uid: 4162
+ components:
+ - type: Transform
+ pos: 66.5,47.5
+ parent: 1
+ - uid: 4380
+ components:
+ - type: Transform
+ pos: 83.5,47.5
+ parent: 1
+ - uid: 4715
+ components:
+ - type: Transform
+ pos: 82.5,47.5
+ parent: 1
+ - uid: 13585
+ components:
+ - type: Transform
+ pos: 33.5,73.5
+ parent: 1
+ - uid: 24511
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,103.5
+ parent: 1
+ - uid: 24520
+ components:
+ - type: Transform
+ pos: 91.5,97.5
+ parent: 1
+ - uid: 27318
+ components:
+ - type: Transform
+ pos: 59.5,74.5
+ parent: 1
+ - uid: 27408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,78.5
+ parent: 1
+ - uid: 27929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,78.5
+ parent: 1
+ - uid: 28146
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 40.5,80.5
+ parent: 1
+ - uid: 28197
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,93.5
+ parent: 1
+- proto: StairStageWood
+ entities:
+ - uid: 1952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,66.5
+ parent: 1
+ - uid: 24514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,66.5
+ parent: 1
+- proto: StairWhite
+ entities:
+ - uid: 32282
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,41.5
+ parent: 1
+- proto: StairWood
+ entities:
+ - uid: 14069
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,63.5
+ parent: 1
+ - uid: 23696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,62.5
+ parent: 1
+ - uid: 24507
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,64.5
+ parent: 1
+ - uid: 24519
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,63.5
+ parent: 1
+ - uid: 25881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,62.5
+ parent: 1
+ - uid: 33900
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,64.5
+ parent: 1
+- proto: StasisBed
+ entities:
+ - uid: 17660
+ components:
+ - type: Transform
+ pos: 70.5,94.5
+ parent: 1
+ - uid: 17662
+ components:
+ - type: Transform
+ pos: 79.5,100.5
+ parent: 1
+- proto: StationAiUploadComputer
+ entities:
+ - uid: 12992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,41.5
+ parent: 1
+ - uid: 13119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,37.5
+ parent: 1
+- proto: StationAnchor
+ entities:
+ - uid: 15043
+ components:
+ - type: Transform
+ pos: 117.5,160.5
+ parent: 1
+- proto: StationEfficiencyCircuitBoard
+ entities:
+ - uid: 13268
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 43.621597,37.741558
+ parent: 1
+- proto: StationMap
+ entities:
+ - uid: 13629
+ components:
+ - type: Transform
+ pos: 130.5,83.5
+ parent: 1
+ - uid: 13724
+ components:
+ - type: Transform
+ pos: 41.5,56.5
+ parent: 1
+ - uid: 13725
+ components:
+ - type: Transform
+ pos: 41.5,72.5
+ parent: 1
+ - uid: 13726
+ components:
+ - type: Transform
+ pos: 54.5,61.5
+ parent: 1
+ - uid: 15940
+ components:
+ - type: Transform
+ pos: 92.5,128.5
+ parent: 1
+ - uid: 15941
+ components:
+ - type: Transform
+ pos: 92.5,152.5
+ parent: 1
+ - uid: 15942
+ components:
+ - type: Transform
+ pos: 124.5,152.5
+ parent: 1
+ - uid: 15943
+ components:
+ - type: Transform
+ pos: 124.5,130.5
+ parent: 1
+ - uid: 19594
+ components:
+ - type: Transform
+ pos: 145.5,96.5
+ parent: 1
+ - uid: 19595
+ components:
+ - type: Transform
+ pos: 136.5,97.5
+ parent: 1
+ - uid: 19596
+ components:
+ - type: Transform
+ pos: 107.5,157.5
+ parent: 1
+ - uid: 19597
+ components:
+ - type: Transform
+ pos: 84.5,99.5
+ parent: 1
+ - uid: 19598
+ components:
+ - type: Transform
+ pos: 64.5,97.5
+ parent: 1
+ - uid: 20465
+ components:
+ - type: Transform
+ pos: 41.5,86.5
+ parent: 1
+ - uid: 24615
+ components:
+ - type: Transform
+ pos: 98.5,75.5
+ parent: 1
+ - uid: 27032
+ components:
+ - type: Transform
+ pos: 102.5,91.5
+ parent: 1
+ - uid: 27034
+ components:
+ - type: Transform
+ pos: 97.5,108.5
+ parent: 1
+ - uid: 27373
+ components:
+ - type: Transform
+ pos: 91.5,70.5
+ parent: 1
+ - uid: 27374
+ components:
+ - type: Transform
+ pos: 71.5,62.5
+ parent: 1
+ - uid: 27375
+ components:
+ - type: Transform
+ pos: 69.5,66.5
+ parent: 1
+ - uid: 27715
+ components:
+ - type: Transform
+ pos: 132.5,120.5
+ parent: 1
+ - uid: 29604
+ components:
+ - type: Transform
+ pos: 154.5,122.5
+ parent: 1
+ - uid: 29605
+ components:
+ - type: Transform
+ pos: 149.5,116.5
+ parent: 1
+ - uid: 31833
+ components:
+ - type: Transform
+ pos: 114.5,69.5
+ parent: 1
+ - uid: 33310
+ components:
+ - type: Transform
+ pos: 37.5,98.5
+ parent: 1
+ - uid: 36602
+ components:
+ - type: Transform
+ pos: 59.5,115.5
+ parent: 1
+ - uid: 36647
+ components:
+ - type: Transform
+ pos: 75.5,120.5
+ parent: 1
+ - uid: 37593
+ components:
+ - type: Transform
+ pos: 106.5,53.5
+ parent: 1
+- proto: StationMapBroken
+ entities:
+ - uid: 18232
+ components:
+ - type: Transform
+ pos: 161.5,148.5
+ parent: 1
+- proto: StationMapCircuitboard
+ entities:
+ - uid: 37141
+ components:
+ - type: Transform
+ rot: -37.69911184307754 rad
+ pos: 164.52304,149.58105
+ parent: 1
+- proto: SteelBench
+ entities:
+ - uid: 6562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,153.5
+ parent: 1
+ - uid: 6662
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,152.5
+ parent: 1
+ - uid: 10320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,151.5
+ parent: 1
+- proto: Stool
+ entities:
+ - uid: 224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,75.5
+ parent: 1
+ - uid: 6146
+ components:
+ - type: Transform
+ pos: 105.5,148.5
+ parent: 1
+ - uid: 9261
+ components:
+ - type: Transform
+ pos: 111.5,148.5
+ parent: 1
+ - uid: 23012
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 106.5,150.5
+ parent: 1
+ - uid: 26589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,103.5
+ parent: 1
+ - uid: 27043
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,70.5
+ parent: 1
+ - uid: 36530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,75.5
+ parent: 1
+- proto: StoolBar
+ entities:
+ - uid: 5398
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,171.5
+ parent: 1
+ - uid: 8097
+ components:
+ - type: Transform
+ pos: 104.5,110.5
+ parent: 1
+ - uid: 8178
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,145.5
+ parent: 1
+ - uid: 8207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,145.5
+ parent: 1
+ - uid: 8226
+ components:
+ - type: Transform
+ pos: 112.5,110.5
+ parent: 1
+ - uid: 10787
+ components:
+ - type: Transform
+ pos: 106.5,111.5
+ parent: 1
+ - uid: 11045
+ components:
+ - type: Transform
+ pos: 109.5,111.5
+ parent: 1
+ - uid: 16841
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,114.5
+ parent: 1
+ - uid: 18125
+ components:
+ - type: Transform
+ pos: 107.5,111.5
+ parent: 1
+ - uid: 18898
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,171.5
+ parent: 1
+ - uid: 19449
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,169.5
+ parent: 1
+ - uid: 20799
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,109.5
+ parent: 1
+ - uid: 20800
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,109.5
+ parent: 1
+ - uid: 20801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,114.5
+ parent: 1
+ - uid: 20808
+ components:
+ - type: Transform
+ pos: 110.5,111.5
+ parent: 1
+ - uid: 20809
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,108.5
+ parent: 1
+ - uid: 20814
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 103.5,108.5
+ parent: 1
+ - uid: 20968
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,114.5
+ parent: 1
+ - uid: 23441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,169.5
+ parent: 1
+ - uid: 29984
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,145.5
+ parent: 1
+ - uid: 30401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,100.5
+ parent: 1
+ - uid: 33825
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,99.5
+ parent: 1
+ - uid: 35021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,169.5
+ parent: 1
+ - uid: 35022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,168.5
+ parent: 1
+- proto: StorageCanister
+ entities:
+ - uid: 20501
+ components:
+ - type: Transform
+ pos: 49.5,102.5
+ parent: 1
+ - uid: 21605
+ components:
+ - type: Transform
+ pos: 81.5,116.5
+ parent: 1
+ - uid: 21611
+ components:
+ - type: Transform
+ pos: 81.5,118.5
+ parent: 1
+ - uid: 22272
+ components:
+ - type: Transform
+ pos: 81.5,117.5
+ parent: 1
+ - uid: 35904
+ components:
+ - type: Transform
+ pos: 66.5,147.5
+ parent: 1
+ - uid: 35908
+ components:
+ - type: Transform
+ pos: 67.5,151.5
+ parent: 1
+- proto: Stunbaton
+ entities:
+ - uid: 22692
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 154.63448,58.597927
+ parent: 1
+ - uid: 22951
+ components:
+ - type: Transform
+ pos: 153.41847,69.56642
+ parent: 1
+ - uid: 23130
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 142.45264,53.33612
+ parent: 1
+- proto: SubstationBasic
+ entities:
+ - uid: 6909
+ components:
+ - type: MetaData
+ name: evac substation
+ - type: Transform
+ pos: 160.5,149.5
+ parent: 1
+ - uid: 10101
+ components:
+ - type: MetaData
+ name: medical substation
+ - type: Transform
+ pos: 72.5,83.5
+ parent: 1
+ - uid: 11714
+ components:
+ - type: MetaData
+ name: bridge substation
+ - type: Transform
+ pos: 29.5,71.5
+ parent: 1
+ - uid: 11717
+ components:
+ - type: MetaData
+ name: atmos substation
+ - type: Transform
+ pos: 52.5,138.5
+ parent: 1
+ - uid: 11934
+ components:
+ - type: MetaData
+ name: science substation
+ - type: Transform
+ pos: 53.5,109.5
+ parent: 1
+ - uid: 12149
+ components:
+ - type: MetaData
+ name: north service substation
+ - type: Transform
+ pos: 121.5,91.5
+ parent: 1
+ - uid: 12348
+ components:
+ - type: MetaData
+ name: security substation
+ - type: Transform
+ pos: 161.5,54.5
+ parent: 1
+ - uid: 12646
+ components:
+ - type: MetaData
+ name: cargo substation
+ - type: Transform
+ pos: 134.5,112.5
+ parent: 1
+ - uid: 12908
+ components:
+ - type: MetaData
+ name: AI substation
+ - type: Transform
+ pos: 57.5,22.5
+ parent: 1
+ - uid: 13919
+ components:
+ - type: MetaData
+ name: telecommunications substation
+ - type: Transform
+ pos: 131.5,121.5
+ parent: 1
+ - uid: 13960
+ components:
+ - type: MetaData
+ name: containment substation
+ - type: Transform
+ pos: 98.5,144.5
+ parent: 1
+ - uid: 15129
+ components:
+ - type: MetaData
+ name: engineering substation
+ - type: Transform
+ pos: 130.5,142.5
+ parent: 1
+ - uid: 19001
+ components:
+ - type: MetaData
+ name: south service substation
+ - type: Transform
+ pos: 88.5,45.5
+ parent: 1
+- proto: SuitStorageAtmos
+ entities:
+ - uid: 15952
+ components:
+ - type: Transform
+ pos: 68.5,118.5
+ parent: 1
+ - uid: 15999
+ components:
+ - type: Transform
+ pos: 68.5,119.5
+ parent: 1
+ - uid: 16000
+ components:
+ - type: Transform
+ pos: 68.5,117.5
+ parent: 1
+- proto: SuitStorageCaptain
+ entities:
+ - uid: 13603
+ components:
+ - type: Transform
+ pos: 35.5,70.5
+ parent: 1
+- proto: SuitStorageCE
+ entities:
+ - uid: 15398
+ components:
+ - type: Transform
+ pos: 125.5,146.5
+ parent: 1
+- proto: SuitStorageCMO
+ entities:
+ - uid: 17732
+ components:
+ - type: Transform
+ pos: 86.5,90.5
+ parent: 1
+- proto: SuitStorageEngi
+ entities:
+ - uid: 13963
+ components:
+ - type: Transform
+ pos: 131.5,140.5
+ parent: 1
+ - uid: 13967
+ components:
+ - type: Transform
+ pos: 132.5,140.5
+ parent: 1
+ - uid: 15103
+ components:
+ - type: Transform
+ pos: 119.5,149.5
+ parent: 1
+ - uid: 15362
+ components:
+ - type: Transform
+ pos: 130.5,140.5
+ parent: 1
+ - uid: 22273
+ components:
+ - type: Transform
+ pos: 117.5,149.5
+ parent: 1
+- proto: SuitStorageEVA
+ entities:
+ - uid: 2969
+ components:
+ - type: Transform
+ pos: 52.5,68.5
+ parent: 1
+ - uid: 23635
+ components:
+ - type: Transform
+ pos: 49.5,68.5
+ parent: 1
+ - uid: 30810
+ components:
+ - type: Transform
+ pos: 48.5,68.5
+ parent: 1
+ - uid: 34031
+ components:
+ - type: Transform
+ pos: 51.5,75.5
+ parent: 1
+ - uid: 34036
+ components:
+ - type: Transform
+ pos: 51.5,74.5
+ parent: 1
+ - uid: 34038
+ components:
+ - type: Transform
+ pos: 51.5,73.5
+ parent: 1
+ - uid: 34226
+ components:
+ - type: Transform
+ pos: 51.5,68.5
+ parent: 1
+ - uid: 34229
+ components:
+ - type: Transform
+ pos: 47.5,68.5
+ parent: 1
+ - uid: 34971
+ components:
+ - type: Transform
+ pos: 53.5,68.5
+ parent: 1
+- proto: SuitStorageEVAPrisoner
+ entities:
+ - uid: 23046
+ components:
+ - type: Transform
+ pos: 124.5,47.5
+ parent: 1
+ - uid: 23047
+ components:
+ - type: Transform
+ pos: 124.5,48.5
+ parent: 1
+ - uid: 23048
+ components:
+ - type: Transform
+ pos: 124.5,49.5
+ parent: 1
+- proto: SuitStorageHOS
+ entities:
+ - uid: 4208
+ components:
+ - type: Transform
+ pos: 145.5,65.5
+ parent: 1
+- proto: SuitStorageRD
+ entities:
+ - uid: 5478
+ components:
+ - type: Transform
+ pos: 37.5,108.5
+ parent: 1
+- proto: SuitStorageSec
+ entities:
+ - uid: 5251
+ components:
+ - type: Transform
+ pos: 134.5,58.5
+ parent: 1
+ - uid: 8664
+ components:
+ - type: Transform
+ pos: 135.5,58.5
+ parent: 1
+ - uid: 22649
+ components:
+ - type: Transform
+ pos: 138.5,45.5
+ parent: 1
+ - uid: 22660
+ components:
+ - type: Transform
+ pos: 142.5,44.5
+ parent: 1
+ - uid: 22661
+ components:
+ - type: Transform
+ pos: 142.5,45.5
+ parent: 1
+ - uid: 22662
+ components:
+ - type: Transform
+ pos: 138.5,44.5
+ parent: 1
+ - uid: 23298
+ components:
+ - type: Transform
+ pos: 133.5,58.5
+ parent: 1
+- proto: SuitStorageWarden
+ entities:
+ - uid: 22962
+ components:
+ - type: Transform
+ pos: 130.5,69.5
+ parent: 1
+- proto: SurveillanceCameraCommand
+ entities:
+ - uid: 3521
+ components:
+ - type: Transform
+ pos: 48.5,73.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Vault
+ - uid: 4876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: HOP's office
+ - uid: 14166
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,24.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI core east
+ - uid: 14167
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,24.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI core west
+ - uid: 14169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,38.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI law board storage
+ - uid: 14170
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,45.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI entrance
+ - uid: 14171
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,65.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge entrance
+ - uid: 14172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,56.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge east
+ - uid: 14173
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 32.5,56.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge west
+ - uid: 14174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,64.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge north
+ - uid: 14175
+ components:
+ - type: Transform
+ pos: 36.5,48.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge south
+ - uid: 14177
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge North B
+ - uid: 14179
+ components:
+ - type: Transform
+ pos: 39.5,66.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge captain's bedroom
+ - uid: 14180
+ components:
+ - type: Transform
+ pos: 58.5,54.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge head of personnel's office
+ - uid: 14181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,50.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Bridge head of personnel's room
+ - uid: 23386
+ components:
+ - type: Transform
+ pos: 52.5,68.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: EVA
+ - uid: 32033
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,134.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Secure tech vault
+ - uid: 32973
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,91.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: Conference room
+ - uid: 37378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,13.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI core exterior 1
+ - uid: 37379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 37.5,20.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraCommand
+ nameSet: True
+ id: AI core exterior 2
+- proto: SurveillanceCameraEngineering
+ entities:
+ - uid: 2775
+ components:
+ - type: Transform
+ pos: 87.5,125.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: TEG south
+ - uid: 2786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,153.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: TEG north
+ - uid: 2833
+ components:
+ - type: Transform
+ pos: 74.5,125.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos south
+ - uid: 3202
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,141.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: TEG central
+ - uid: 16011
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,153.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmos north
+ - uid: 22863
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 128.5,144.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: CE's office
+ - uid: 27045
+ components:
+ - type: Transform
+ pos: 100.5,147.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment storage
+ - uid: 31862
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,152.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: PA
+ - uid: 31971
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,119.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics front desk
+ - uid: 31972
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,122.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics hallway west
+ - uid: 31973
+ components:
+ - type: Transform
+ pos: 82.5,116.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Canister storage
+ - uid: 31974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,123.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics hallway east
+ - uid: 31980
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Emitters east
+ - uid: 31981
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Emitters west
+ - uid: 31983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 69.5,149.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics chambers north
+ - uid: 31984
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,139.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics chambers central
+ - uid: 31985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,133.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Atmospherics chamber south
+ - uid: 31986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,145.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment north
+ - uid: 31987
+ components:
+ - type: Transform
+ pos: 110.5,129.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment south
+ - uid: 31989
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway west
+ - uid: 31990
+ components:
+ - type: Transform
+ pos: 97.5,121.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway southwest
+ - uid: 31991
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,154.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway northwest
+ - uid: 31992
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,156.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway north
+ - uid: 31994
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering hallway east
+ - uid: 31995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,125.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering front desk
+ - uid: 31996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,145.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment substation
+ - uid: 31997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,151.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering containment entrance
+ - uid: 31998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,147.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Containment airlock
+ - uid: 31999
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,160.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Station anchor
+ - uid: 32000
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 108.5,162.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: AME
+ - uid: 32001
+ components:
+ - type: Transform
+ pos: 98.5,158.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Gravity entrance
+ - uid: 32003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,124.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: SMES array
+ - uid: 32004
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,122.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Telecommunications entrance
+ - uid: 32005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,129.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Telecommunications
+ - uid: 32007
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,136.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering locker room
+ - uid: 32009
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 132.5,145.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: CE's bedroom
+ - uid: 32027
+ components:
+ - type: Transform
+ pos: 144.5,130.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Tech vault
+ - uid: 32199
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,125.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEngineering
+ nameSet: True
+ id: Engineering front
+- proto: SurveillanceCameraGeneral
+ entities:
+ - uid: 6420
+ components:
+ - type: Transform
+ pos: 141.5,147.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac 1
+ - uid: 6728
+ components:
+ - type: Transform
+ pos: 139.5,140.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Combo cafe
+ - uid: 6855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,155.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac arm east
+ - uid: 16215
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,119.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Janitor closet exterior
+ - uid: 24424
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,52.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 10
+ - uid: 29706
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 11
+ - uid: 30032
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,153.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac 2
+ - uid: 30094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,155.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac arm west
+ - uid: 32010
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,149.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Evac west
+ - uid: 32014
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,142.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Cryosleep
+ - uid: 32015
+ components:
+ - type: Transform
+ pos: 154.5,137.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Dorms
+ - uid: 32121
+ components:
+ - type: Transform
+ pos: 92.5,58.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Tools
+ - uid: 32180
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,140.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 01
+ - uid: 32181
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,129.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 02
+ - uid: 32183
+ components:
+ - type: Transform
+ pos: 139.5,117.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 04
+ - uid: 32184
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,119.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 05
+ - uid: 32185
+ components:
+ - type: Transform
+ pos: 128.5,76.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 07
+ - uid: 32186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,91.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 06
+ - uid: 32187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,68.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 08
+ - uid: 32188
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 113.5,55.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 09
+ - uid: 32191
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,65.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 13
+ - uid: 32192
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,66.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 14
+ - uid: 32193
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,73.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 12
+ - uid: 32194
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,79.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 15
+ - uid: 32195
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,108.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 16
+ - uid: 32196
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,114.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 17
+ - uid: 32197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,114.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 18
+ - uid: 32198
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,118.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 19
+ - uid: 32200
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,51.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Hallway 20
+ - uid: 32201
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,43.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: North arrivals
+ - uid: 32203
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,33.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraGeneral
+ nameSet: True
+ id: Arrivals east
+- proto: SurveillanceCameraMedical
+ entities:
+ - uid: 26544
+ components:
+ - type: Transform
+ pos: 76.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Central treatment
+ - uid: 27486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,92.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Cryogenics
+ - uid: 28537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,88.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Cloning lab
+ - uid: 29053
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,101.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical hallway east
+ - uid: 31940
+ components:
+ - type: Transform
+ pos: 87.5,90.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: CMO's office
+ - uid: 31941
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,101.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical hallway west
+ - uid: 31942
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,84.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: locker room
+ - uid: 31943
+ components:
+ - type: Transform
+ pos: 68.5,86.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical hallway southwest
+ - uid: 31944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,88.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical hallway southeast
+ - uid: 31945
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,84.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Morgue
+ - uid: 31946
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,100.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Surgery
+ - uid: 31947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,103.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Chemistry central
+ - uid: 31948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 59.5,108.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Surgery theater
+ - uid: 31949
+ components:
+ - type: Transform
+ pos: 87.5,96.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Chemistry south
+ - uid: 31950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Chemistry north
+ - uid: 31953
+ components:
+ - type: Transform
+ pos: 73.5,102.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical front desk
+ - uid: 31954
+ components:
+ - type: Transform
+ pos: 68.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical entrance west
+ - uid: 31956
+ components:
+ - type: Transform
+ pos: 80.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraMedical
+ nameSet: True
+ id: Medical entrance east
+- proto: SurveillanceCameraRouterCommand
+ entities:
+ - uid: 13651
+ components:
+ - type: Transform
+ pos: 38.5,68.5
+ parent: 1
+- proto: SurveillanceCameraRouterConstructed
+ entities:
+ - uid: 26415
+ components:
+ - type: Transform
+ pos: 50.5,26.5
+ parent: 1
+- proto: SurveillanceCameraRouterEngineering
+ entities:
+ - uid: 16097
+ components:
+ - type: Transform
+ pos: 130.5,144.5
+ parent: 1
+- proto: SurveillanceCameraRouterGeneral
+ entities:
+ - uid: 26416
+ components:
+ - type: Transform
+ pos: 50.5,22.5
+ parent: 1
+- proto: SurveillanceCameraRouterMedical
+ entities:
+ - uid: 17727
+ components:
+ - type: Transform
+ pos: 91.5,90.5
+ parent: 1
+- proto: SurveillanceCameraRouterScience
+ entities:
+ - uid: 20428
+ components:
+ - type: Transform
+ pos: 35.5,105.5
+ parent: 1
+- proto: SurveillanceCameraRouterSecurity
+ entities:
+ - uid: 22938
+ components:
+ - type: Transform
+ pos: 145.5,62.5
+ parent: 1
+- proto: SurveillanceCameraRouterService
+ entities:
+ - uid: 18592
+ components:
+ - type: Transform
+ pos: 55.5,49.5
+ parent: 1
+- proto: SurveillanceCameraRouterSupply
+ entities:
+ - uid: 19517
+ components:
+ - type: Transform
+ pos: 144.5,108.5
+ parent: 1
+- proto: SurveillanceCameraScience
+ entities:
+ - uid: 119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 51.5,107.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Server room
+ - uid: 6228
+ components:
+ - type: Transform
+ pos: 49.5,80.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Storage
+ - uid: 31926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 46.5,88.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: R&D
+ - uid: 31927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: science lobby
+ - uid: 31928
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,104.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Science hallway north
+ - uid: 31929
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,88.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: science hallway south
+ - uid: 31930
+ components:
+ - type: Transform
+ pos: 36.5,86.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: xenoarchaeology lab south
+ - uid: 31931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 36.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: xenoarchaeology lab north
+ - uid: 31932
+ components:
+ - type: Transform
+ pos: 32.5,99.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Science hallway west
+ - uid: 31934
+ components:
+ - type: Transform
+ pos: 50.5,99.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Canister storage
+ - uid: 31935
+ components:
+ - type: Transform
+ pos: 34.5,103.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: RD's bedroom
+ - uid: 31937
+ components:
+ - type: Transform
+ pos: 43.5,111.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Anomaly lab
+ - uid: 31938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 37.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: RD's office
+ - uid: 31952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,92.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraScience
+ nameSet: True
+ id: Robotics
+- proto: SurveillanceCameraSecurity
+ entities:
+ - uid: 215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,73.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Entrance north
+ - uid: 18792
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,48.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Lawyer's office
+ - uid: 18825
+ components:
+ - type: Transform
+ pos: 94.5,39.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Court south
+ - uid: 18864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,41.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Court hallway
+ - uid: 23322
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Detective's office
+ - uid: 23542
+ components:
+ - type: Transform
+ pos: 156.5,151.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Evac holding cell
+ - uid: 25393
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 155.5,53.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Locker room
+ - uid: 27784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,48.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Court north
+ - uid: 30793
+ components:
+ - type: Transform
+ pos: 152.5,148.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Evac checkpoint
+ - uid: 31864
+ components:
+ - type: Transform
+ pos: 142.5,64.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Head of Security's office
+ - uid: 31865
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 154.5,70.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Shooting range
+ - uid: 31872
+ components:
+ - type: Transform
+ pos: 134.5,58.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory entrance
+ - uid: 31873
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,64.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Armory
+ - uid: 31874
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Warden's office
+ - uid: 31876
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Brig north
+ - uid: 31877
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,60.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Entrance south
+ - uid: 31878
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,66.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Brig south
+ - uid: 31879
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,56.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Perma transfer
+ - uid: 31880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,50.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Perma EVA
+ - uid: 31881
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 142.5,53.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: hallway central
+ - uid: 31882
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,50.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Perma north
+ - uid: 31883
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,47.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Perma south
+ - uid: 31885
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 137.5,62.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: hallway west
+ - uid: 31886
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,63.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: hallway east
+ - uid: 31889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,61.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: HOS bedroom
+ - uid: 37493
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 108.5,40.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSecurity
+ nameSet: True
+ id: Lawyer's back office
+- proto: SurveillanceCameraService
+ entities:
+ - uid: 1850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 99.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theater west
+ - uid: 3148
+ components:
+ - type: Transform
+ pos: 100.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Mime's room
+ - uid: 5893
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Musician's room
+ - uid: 24610
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,72.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theater east
+ - uid: 26868
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,74.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Crematorium
+ - uid: 27328
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,64.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theater backstage
+ - uid: 29063
+ components:
+ - type: Transform
+ pos: 106.5,66.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Theater
+ - uid: 32054
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,128.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Reporter's room
+ - uid: 32055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 143.5,123.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: News office
+ - uid: 32056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,128.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Janitor closet
+ - uid: 32057
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 159.5,123.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Janitor garage
+ - uid: 32082
+ components:
+ - type: Transform
+ pos: 76.5,51.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Library south
+ - uid: 32083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,49.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Librarian's room
+ - uid: 32085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 68.5,69.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Chaplain's bedroom
+ - uid: 32087
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,76.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Chaplain's office
+ - uid: 32088
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,77.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Chapel
+ - uid: 32089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,68.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Chapel entrance
+ - uid: 32093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,58.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Clown's room
+ - uid: 32098
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,83.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Boxing ring east
+ - uid: 32099
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Ranch
+ - uid: 32106
+ components:
+ - type: Transform
+ pos: 108.5,96.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Service hall
+ - uid: 32107
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,102.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Bartender's room
+ - uid: 32108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,100.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Hydroponics
+ - uid: 32110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,99.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Kitchen
+ - uid: 32111
+ components:
+ - type: Transform
+ pos: 116.5,90.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Freezer
+ - uid: 32112
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Arcade
+ - uid: 32113
+ components:
+ - type: Transform
+ pos: 106.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Bar
+ - uid: 32114
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 118.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Canteen east
+ - uid: 32117
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,115.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Canteen north
+ - uid: 32118
+ components:
+ - type: Transform
+ pos: 122.5,80.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Pool
+ - uid: 36008
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,61.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraService
+ nameSet: True
+ id: Library
+- proto: SurveillanceCameraSupply
+ entities:
+ - uid: 5897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: QM's bedroom
+ - uid: 23363
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,100.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Access hallway
+ - uid: 32059
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 144.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: QM's office
+ - uid: 32060
+ components:
+ - type: Transform
+ pos: 138.5,109.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Storage room
+ - uid: 32061
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,102.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Cargo front desk
+ - uid: 32063
+ components:
+ - type: Transform
+ pos: 151.5,102.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Cargo bay south
+ - uid: 32064
+ components:
+ - type: Transform
+ pos: 160.5,106.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Cargo dock
+ - uid: 32066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,92.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Salvage bay
+ - uid: 32067
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,94.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Break room
+ - uid: 32068
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,89.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Salvage locker room
+ - uid: 32070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,104.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Cargo waiting room
+ - uid: 34737
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,92.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Salvage arm
+ - uid: 35647
+ components:
+ - type: Transform
+ pos: 156.5,96.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraSupply
+ nameSet: True
+ id: Control room
+- proto: SurveillanceCameraWirelessRouterEntertainment
+ entities:
+ - uid: 29656
+ components:
+ - type: Transform
+ pos: 143.5,127.5
+ parent: 1
+- proto: SurveillanceWirelessCameraAnchoredEntertainment
+ entities:
+ - uid: 4389
+ components:
+ - type: Transform
+ pos: 94.5,46.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Court on camera
+ - uid: 6431
+ components:
+ - type: Transform
+ pos: 61.5,107.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Surgery TV
+ - uid: 25897
+ components:
+ - type: Transform
+ pos: 106.5,71.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Theater channel
+ - uid: 26845
+ components:
+ - type: Transform
+ pos: 106.5,86.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Boxing ring
+- proto: SurveillanceWirelessCameraMovableEntertainment
+ entities:
+ - uid: 26706
+ components:
+ - type: Transform
+ pos: 108.5,111.5
+ parent: 1
+ - type: SurveillanceCamera
+ setupAvailableNetworks:
+ - SurveillanceCameraEntertainment
+ nameSet: True
+ id: Canteen cam 24/7
+ - uid: 29657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,125.5
+ parent: 1
+ - uid: 29658
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,123.5
+ parent: 1
+ - uid: 29659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,124.5
+ parent: 1
+- proto: Syringe
+ entities:
+ - uid: 13649
+ components:
+ - type: Transform
+ pos: 32.573555,52.62903
+ parent: 1
+ - uid: 17686
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 79.53141,91.64268
+ parent: 1
+ - uid: 18056
+ components:
+ - type: Transform
+ rot: -31.415926535897945 rad
+ pos: 86.57209,104.581154
+ parent: 1
+ - uid: 28665
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 120.49912,48.166035
+ parent: 1
+- proto: Table
+ entities:
+ - uid: 115
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,160.5
+ parent: 1
+ - uid: 212
+ components:
+ - type: Transform
+ pos: 63.5,92.5
+ parent: 1
+ - uid: 450
+ components:
+ - type: Transform
+ pos: 33.5,115.5
+ parent: 1
+ - uid: 451
+ components:
+ - type: Transform
+ pos: 33.5,114.5
+ parent: 1
+ - uid: 469
+ components:
+ - type: Transform
+ pos: 34.5,115.5
+ parent: 1
+ - uid: 471
+ components:
+ - type: Transform
+ pos: 34.5,113.5
+ parent: 1
+ - uid: 472
+ components:
+ - type: Transform
+ pos: 34.5,112.5
+ parent: 1
+ - uid: 513
+ components:
+ - type: Transform
+ pos: 35.5,109.5
+ parent: 1
+ - uid: 519
+ components:
+ - type: Transform
+ pos: 35.5,91.5
+ parent: 1
+ - uid: 520
+ components:
+ - type: Transform
+ pos: 35.5,90.5
+ parent: 1
+ - uid: 521
+ components:
+ - type: Transform
+ pos: 35.5,89.5
+ parent: 1
+ - uid: 553
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,113.5
+ parent: 1
+ - uid: 560
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,114.5
+ parent: 1
+ - uid: 561
+ components:
+ - type: Transform
+ pos: 36.5,90.5
+ parent: 1
+ - uid: 590
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,114.5
+ parent: 1
+ - uid: 592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,110.5
+ parent: 1
+ - uid: 621
+ components:
+ - type: Transform
+ pos: 38.5,114.5
+ parent: 1
+ - uid: 688
+ components:
+ - type: Transform
+ pos: 40.5,92.5
+ parent: 1
+ - uid: 689
+ components:
+ - type: Transform
+ pos: 40.5,91.5
+ parent: 1
+ - uid: 691
+ components:
+ - type: Transform
+ pos: 40.5,89.5
+ parent: 1
+ - uid: 692
+ components:
+ - type: Transform
+ pos: 40.5,88.5
+ parent: 1
+ - uid: 1082
+ components:
+ - type: Transform
+ pos: 48.5,114.5
+ parent: 1
+ - uid: 1384
+ components:
+ - type: Transform
+ pos: 46.5,103.5
+ parent: 1
+ - uid: 1872
+ components:
+ - type: Transform
+ pos: 62.5,61.5
+ parent: 1
+ - uid: 1910
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,43.5
+ parent: 1
+ - uid: 2076
+ components:
+ - type: Transform
+ pos: 98.5,48.5
+ parent: 1
+ - uid: 2166
+ components:
+ - type: Transform
+ pos: 66.5,80.5
+ parent: 1
+ - uid: 2434
+ components:
+ - type: Transform
+ pos: 70.5,92.5
+ parent: 1
+ - uid: 2435
+ components:
+ - type: Transform
+ pos: 70.5,91.5
+ parent: 1
+ - uid: 2603
+ components:
+ - type: Transform
+ pos: 74.5,67.5
+ parent: 1
+ - uid: 2643
+ components:
+ - type: Transform
+ pos: 75.5,67.5
+ parent: 1
+ - uid: 2702
+ components:
+ - type: Transform
+ pos: 76.5,67.5
+ parent: 1
+ - uid: 2862
+ components:
+ - type: Transform
+ pos: 79.5,92.5
+ parent: 1
+ - uid: 2863
+ components:
+ - type: Transform
+ pos: 79.5,91.5
+ parent: 1
+ - uid: 2928
+ components:
+ - type: Transform
+ pos: 80.5,84.5
+ parent: 1
+ - uid: 3218
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,106.5
+ parent: 1
+ - uid: 3220
+ components:
+ - type: Transform
+ pos: 85.5,104.5
+ parent: 1
+ - uid: 3221
+ components:
+ - type: Transform
+ pos: 85.5,101.5
+ parent: 1
+ - uid: 3222
+ components:
+ - type: Transform
+ pos: 85.5,100.5
+ parent: 1
+ - uid: 3223
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,106.5
+ parent: 1
+ - uid: 3249
+ components:
+ - type: Transform
+ pos: 94.5,61.5
+ parent: 1
+ - uid: 3311
+ components:
+ - type: Transform
+ pos: 86.5,104.5
+ parent: 1
+ - uid: 3433
+ components:
+ - type: Transform
+ pos: 89.5,107.5
+ parent: 1
+ - uid: 3460
+ components:
+ - type: Transform
+ pos: 92.5,48.5
+ parent: 1
+ - uid: 3823
+ components:
+ - type: Transform
+ pos: 95.5,133.5
+ parent: 1
+ - uid: 3867
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,153.5
+ parent: 1
+ - uid: 4030
+ components:
+ - type: Transform
+ pos: 98.5,60.5
+ parent: 1
+ - uid: 4031
+ components:
+ - type: Transform
+ pos: 98.5,59.5
+ parent: 1
+ - uid: 4032
+ components:
+ - type: Transform
+ pos: 98.5,58.5
+ parent: 1
+ - uid: 4108
+ components:
+ - type: Transform
+ pos: 99.5,60.5
+ parent: 1
+ - uid: 4223
+ components:
+ - type: Transform
+ pos: 102.5,159.5
+ parent: 1
+ - uid: 4224
+ components:
+ - type: Transform
+ pos: 102.5,158.5
+ parent: 1
+ - uid: 4250
+ components:
+ - type: Transform
+ pos: 102.5,83.5
+ parent: 1
+ - uid: 4251
+ components:
+ - type: Transform
+ pos: 102.5,82.5
+ parent: 1
+ - uid: 4252
+ components:
+ - type: Transform
+ pos: 102.5,81.5
+ parent: 1
+ - uid: 4262
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,35.5
+ parent: 1
+ - uid: 4374
+ components:
+ - type: Transform
+ pos: 86.5,33.5
+ parent: 1
+ - uid: 4674
+ components:
+ - type: Transform
+ pos: 110.5,83.5
+ parent: 1
+ - uid: 4675
+ components:
+ - type: Transform
+ pos: 110.5,82.5
+ parent: 1
+ - uid: 4676
+ components:
+ - type: Transform
+ pos: 110.5,81.5
+ parent: 1
+ - uid: 4697
+ components:
+ - type: Transform
+ pos: 53.5,44.5
+ parent: 1
+ - uid: 4698
+ components:
+ - type: Transform
+ pos: 53.5,45.5
+ parent: 1
+ - uid: 5138
+ components:
+ - type: Transform
+ pos: 119.5,94.5
+ parent: 1
+ - uid: 5139
+ components:
+ - type: Transform
+ pos: 119.5,93.5
+ parent: 1
+ - uid: 5224
+ components:
+ - type: Transform
+ pos: 120.5,48.5
+ parent: 1
+ - uid: 5225
+ components:
+ - type: Transform
+ pos: 120.5,47.5
+ parent: 1
+ - uid: 5247
+ components:
+ - type: Transform
+ pos: 121.5,133.5
+ parent: 1
+ - uid: 5506
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 39.5,102.5
+ parent: 1
+ - uid: 5674
+ components:
+ - type: Transform
+ pos: 129.5,137.5
+ parent: 1
+ - uid: 5675
+ components:
+ - type: Transform
+ pos: 129.5,136.5
+ parent: 1
+ - uid: 5676
+ components:
+ - type: Transform
+ pos: 129.5,135.5
+ parent: 1
+ - uid: 5677
+ components:
+ - type: Transform
+ pos: 129.5,134.5
+ parent: 1
+ - uid: 5876
+ components:
+ - type: Transform
+ pos: 134.5,105.5
+ parent: 1
+ - uid: 5877
+ components:
+ - type: Transform
+ pos: 134.5,104.5
+ parent: 1
+ - uid: 5878
+ components:
+ - type: Transform
+ pos: 134.5,103.5
+ parent: 1
+ - uid: 5879
+ components:
+ - type: Transform
+ pos: 134.5,102.5
+ parent: 1
+ - uid: 6038
+ components:
+ - type: Transform
+ pos: 137.5,97.5
+ parent: 1
+ - uid: 6432
+ components:
+ - type: Transform
+ pos: 75.5,112.5
+ parent: 1
+ - uid: 6443
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 130.5,112.5
+ parent: 1
+ - uid: 6714
+ components:
+ - type: Transform
+ pos: 153.5,63.5
+ parent: 1
+ - uid: 6715
+ components:
+ - type: Transform
+ pos: 153.5,62.5
+ parent: 1
+ - uid: 6769
+ components:
+ - type: Transform
+ pos: 154.5,63.5
+ parent: 1
+ - uid: 6770
+ components:
+ - type: Transform
+ pos: 154.5,62.5
+ parent: 1
+ - uid: 6872
+ components:
+ - type: Transform
+ pos: 157.5,96.5
+ parent: 1
+ - uid: 6926
+ components:
+ - type: Transform
+ pos: 158.5,103.5
+ parent: 1
+ - uid: 6927
+ components:
+ - type: Transform
+ pos: 158.5,102.5
+ parent: 1
+ - uid: 6930
+ components:
+ - type: Transform
+ pos: 158.5,97.5
+ parent: 1
+ - uid: 6931
+ components:
+ - type: Transform
+ pos: 158.5,96.5
+ parent: 1
+ - uid: 7124
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,121.5
+ parent: 1
+ - uid: 8118
+ components:
+ - type: Transform
+ pos: 87.5,41.5
+ parent: 1
+ - uid: 8139
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,150.5
+ parent: 1
+ - uid: 8157
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,149.5
+ parent: 1
+ - uid: 9405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,98.5
+ parent: 1
+ - uid: 9690
+ components:
+ - type: Transform
+ pos: 144.5,93.5
+ parent: 1
+ - uid: 11105
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,35.5
+ parent: 1
+ - uid: 15049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,161.5
+ parent: 1
+ - uid: 15050
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,162.5
+ parent: 1
+ - uid: 16042
+ components:
+ - type: Transform
+ pos: 128.5,134.5
+ parent: 1
+ - uid: 16043
+ components:
+ - type: Transform
+ pos: 128.5,137.5
+ parent: 1
+ - uid: 16064
+ components:
+ - type: Transform
+ pos: 132.5,131.5
+ parent: 1
+ - uid: 16134
+ components:
+ - type: Transform
+ pos: 94.5,121.5
+ parent: 1
+ - uid: 16135
+ components:
+ - type: Transform
+ pos: 93.5,121.5
+ parent: 1
+ - uid: 16159
+ components:
+ - type: Transform
+ pos: 119.5,125.5
+ parent: 1
+ - uid: 16160
+ components:
+ - type: Transform
+ pos: 118.5,125.5
+ parent: 1
+ - uid: 16199
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,154.5
+ parent: 1
+ - uid: 16208
+ components:
+ - type: Transform
+ pos: 77.5,121.5
+ parent: 1
+ - uid: 17726
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,102.5
+ parent: 1
+ - uid: 17792
+ components:
+ - type: Transform
+ pos: 84.5,91.5
+ parent: 1
+ - uid: 17793
+ components:
+ - type: Transform
+ pos: 84.5,92.5
+ parent: 1
+ - uid: 18040
+ components:
+ - type: Transform
+ pos: 85.5,110.5
+ parent: 1
+ - uid: 18041
+ components:
+ - type: Transform
+ pos: 86.5,110.5
+ parent: 1
+ - uid: 18042
+ components:
+ - type: Transform
+ pos: 87.5,110.5
+ parent: 1
+ - uid: 18141
+ components:
+ - type: Transform
+ pos: 60.5,110.5
+ parent: 1
+ - uid: 18142
+ components:
+ - type: Transform
+ pos: 61.5,110.5
+ parent: 1
+ - uid: 18143
+ components:
+ - type: Transform
+ pos: 62.5,110.5
+ parent: 1
+ - uid: 18144
+ components:
+ - type: Transform
+ pos: 63.5,110.5
+ parent: 1
+ - uid: 18899
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,171.5
+ parent: 1
+ - uid: 18901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,171.5
+ parent: 1
+ - uid: 19705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,113.5
+ parent: 1
+ - uid: 19737
+ components:
+ - type: Transform
+ pos: 52.5,107.5
+ parent: 1
+ - uid: 20408
+ components:
+ - type: Transform
+ pos: 27.5,102.5
+ parent: 1
+ - uid: 20431
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,88.5
+ parent: 1
+ - uid: 20435
+ components:
+ - type: Transform
+ pos: 28.5,102.5
+ parent: 1
+ - uid: 20446
+ components:
+ - type: Transform
+ pos: 27.5,99.5
+ parent: 1
+ - uid: 20461
+ components:
+ - type: Transform
+ pos: 25.5,99.5
+ parent: 1
+ - uid: 20462
+ components:
+ - type: Transform
+ pos: 26.5,99.5
+ parent: 1
+ - uid: 20469
+ components:
+ - type: Transform
+ pos: 35.5,108.5
+ parent: 1
+ - uid: 20471
+ components:
+ - type: Transform
+ pos: 33.5,107.5
+ parent: 1
+ - uid: 20483
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 30.5,110.5
+ parent: 1
+ - uid: 20486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,88.5
+ parent: 1
+ - uid: 20488
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,84.5
+ parent: 1
+ - uid: 20489
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,84.5
+ parent: 1
+ - uid: 20899
+ components:
+ - type: Transform
+ pos: 63.5,93.5
+ parent: 1
+ - uid: 20937
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,86.5
+ parent: 1
+ - uid: 20950
+ components:
+ - type: Transform
+ pos: 51.5,107.5
+ parent: 1
+ - uid: 20966
+ components:
+ - type: Transform
+ pos: 62.5,97.5
+ parent: 1
+ - uid: 21024
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,123.5
+ parent: 1
+ - uid: 21032
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,123.5
+ parent: 1
+ - uid: 22677
+ components:
+ - type: Transform
+ pos: 147.5,52.5
+ parent: 1
+ - uid: 22678
+ components:
+ - type: Transform
+ pos: 147.5,51.5
+ parent: 1
+ - uid: 22679
+ components:
+ - type: Transform
+ pos: 144.5,50.5
+ parent: 1
+ - uid: 22680
+ components:
+ - type: Transform
+ pos: 148.5,48.5
+ parent: 1
+ - uid: 22713
+ components:
+ - type: Transform
+ pos: 124.5,64.5
+ parent: 1
+ - uid: 22714
+ components:
+ - type: Transform
+ pos: 124.5,67.5
+ parent: 1
+ - uid: 22715
+ components:
+ - type: Transform
+ pos: 124.5,70.5
+ parent: 1
+ - uid: 22716
+ components:
+ - type: Transform
+ pos: 124.5,73.5
+ parent: 1
+ - uid: 22727
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,56.5
+ parent: 1
+ - uid: 22729
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,56.5
+ parent: 1
+ - uid: 22730
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,51.5
+ parent: 1
+ - uid: 22731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,52.5
+ parent: 1
+ - uid: 22732
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,53.5
+ parent: 1
+ - uid: 22849
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,53.5
+ parent: 1
+ - uid: 22850
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,52.5
+ parent: 1
+ - uid: 23014
+ components:
+ - type: Transform
+ pos: 128.5,50.5
+ parent: 1
+ - uid: 23015
+ components:
+ - type: Transform
+ pos: 128.5,49.5
+ parent: 1
+ - uid: 23016
+ components:
+ - type: Transform
+ pos: 128.5,48.5
+ parent: 1
+ - uid: 23017
+ components:
+ - type: Transform
+ pos: 129.5,50.5
+ parent: 1
+ - uid: 23018
+ components:
+ - type: Transform
+ pos: 131.5,49.5
+ parent: 1
+ - uid: 23044
+ components:
+ - type: Transform
+ pos: 130.5,52.5
+ parent: 1
+ - uid: 23045
+ components:
+ - type: Transform
+ pos: 131.5,52.5
+ parent: 1
+ - uid: 23049
+ components:
+ - type: Transform
+ pos: 124.5,50.5
+ parent: 1
+ - uid: 23050
+ components:
+ - type: Transform
+ pos: 124.5,51.5
+ parent: 1
+ - uid: 23273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,96.5
+ parent: 1
+ - uid: 23284
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,96.5
+ parent: 1
+ - uid: 23468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,161.5
+ parent: 1
+ - uid: 23592
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,97.5
+ parent: 1
+ - uid: 23678
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,162.5
+ parent: 1
+ - uid: 24417
+ components:
+ - type: Transform
+ pos: 46.5,102.5
+ parent: 1
+ - uid: 25234
+ components:
+ - type: Transform
+ pos: 121.5,108.5
+ parent: 1
+ - uid: 25235
+ components:
+ - type: Transform
+ pos: 122.5,108.5
+ parent: 1
+ - uid: 25810
+ components:
+ - type: Transform
+ pos: 88.5,61.5
+ parent: 1
+ - uid: 25818
+ components:
+ - type: Transform
+ pos: 89.5,61.5
+ parent: 1
+ - uid: 25927
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,45.5
+ parent: 1
+ - uid: 26235
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,93.5
+ parent: 1
+ - uid: 26237
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,91.5
+ parent: 1
+ - uid: 26238
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,92.5
+ parent: 1
+ - uid: 26526
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,108.5
+ parent: 1
+ - uid: 26575
+ components:
+ - type: Transform
+ pos: 113.5,96.5
+ parent: 1
+ - uid: 26576
+ components:
+ - type: Transform
+ pos: 112.5,96.5
+ parent: 1
+ - uid: 26590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,104.5
+ parent: 1
+ - uid: 26639
+ components:
+ - type: Transform
+ pos: 111.5,99.5
+ parent: 1
+ - uid: 26640
+ components:
+ - type: Transform
+ pos: 110.5,99.5
+ parent: 1
+ - uid: 26641
+ components:
+ - type: Transform
+ pos: 107.5,99.5
+ parent: 1
+ - uid: 26683
+ components:
+ - type: Transform
+ pos: 120.5,112.5
+ parent: 1
+ - uid: 26685
+ components:
+ - type: Transform
+ pos: 125.5,115.5
+ parent: 1
+ - uid: 26727
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,44.5
+ parent: 1
+ - uid: 26856
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,84.5
+ parent: 1
+ - uid: 26857
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 114.5,82.5
+ parent: 1
+ - uid: 26892
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,82.5
+ parent: 1
+ - uid: 26905
+ components:
+ - type: Transform
+ pos: 144.5,94.5
+ parent: 1
+ - uid: 27924
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,83.5
+ parent: 1
+ - uid: 27951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,82.5
+ parent: 1
+ - uid: 28284
+ components:
+ - type: Transform
+ pos: 105.5,121.5
+ parent: 1
+ - uid: 28286
+ components:
+ - type: Transform
+ pos: 111.5,121.5
+ parent: 1
+ - uid: 28625
+ components:
+ - type: Transform
+ pos: 124.5,115.5
+ parent: 1
+ - uid: 28655
+ components:
+ - type: Transform
+ pos: 115.5,47.5
+ parent: 1
+ - uid: 28657
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,50.5
+ parent: 1
+ - uid: 28787
+ components:
+ - type: Transform
+ pos: 93.5,48.5
+ parent: 1
+ - uid: 28837
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,80.5
+ parent: 1
+ - uid: 28959
+ components:
+ - type: Transform
+ pos: 90.5,61.5
+ parent: 1
+ - uid: 29142
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,41.5
+ parent: 1
+ - uid: 29143
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,41.5
+ parent: 1
+ - uid: 29144
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,41.5
+ parent: 1
+ - uid: 29557
+ components:
+ - type: Transform
+ pos: 157.5,128.5
+ parent: 1
+ - uid: 29566
+ components:
+ - type: Transform
+ pos: 158.5,128.5
+ parent: 1
+ - uid: 29567
+ components:
+ - type: Transform
+ pos: 159.5,128.5
+ parent: 1
+ - uid: 29568
+ components:
+ - type: Transform
+ pos: 159.5,127.5
+ parent: 1
+ - uid: 29569
+ components:
+ - type: Transform
+ pos: 159.5,126.5
+ parent: 1
+ - uid: 29844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,152.5
+ parent: 1
+ - uid: 30426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 124.5,170.5
+ parent: 1
+ - uid: 30694
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,170.5
+ parent: 1
+ - uid: 30751
+ components:
+ - type: Transform
+ pos: 101.5,45.5
+ parent: 1
+ - uid: 30789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,161.5
+ parent: 1
+ - uid: 32026
+ components:
+ - type: Transform
+ pos: 144.5,130.5
+ parent: 1
+ - uid: 32029
+ components:
+ - type: Transform
+ pos: 145.5,130.5
+ parent: 1
+ - uid: 32030
+ components:
+ - type: Transform
+ pos: 143.5,132.5
+ parent: 1
+ - uid: 32031
+ components:
+ - type: Transform
+ pos: 143.5,133.5
+ parent: 1
+ - uid: 32257
+ components:
+ - type: Transform
+ pos: 65.5,82.5
+ parent: 1
+ - uid: 33282
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,23.5
+ parent: 1
+ - uid: 33420
+ components:
+ - type: Transform
+ pos: 101.5,18.5
+ parent: 1
+ - uid: 33421
+ components:
+ - type: Transform
+ pos: 102.5,18.5
+ parent: 1
+ - uid: 33456
+ components:
+ - type: Transform
+ pos: 89.5,28.5
+ parent: 1
+ - uid: 33457
+ components:
+ - type: Transform
+ pos: 90.5,28.5
+ parent: 1
+ - uid: 33499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 119.5,27.5
+ parent: 1
+ - uid: 33500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,27.5
+ parent: 1
+ - uid: 33501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 117.5,27.5
+ parent: 1
+ - uid: 33613
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 113.5,31.5
+ parent: 1
+ - uid: 33616
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,38.5
+ parent: 1
+ - uid: 33617
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,40.5
+ parent: 1
+ - uid: 33618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,39.5
+ parent: 1
+ - uid: 33619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,38.5
+ parent: 1
+ - uid: 33620
+ components:
+ - type: Transform
+ pos: 126.5,38.5
+ parent: 1
+ - uid: 33621
+ components:
+ - type: Transform
+ pos: 126.5,36.5
+ parent: 1
+ - uid: 33626
+ components:
+ - type: Transform
+ pos: 126.5,37.5
+ parent: 1
+ - uid: 33829
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,35.5
+ parent: 1
+ - uid: 33844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,34.5
+ parent: 1
+ - uid: 33965
+ components:
+ - type: Transform
+ pos: 94.5,60.5
+ parent: 1
+ - uid: 34497
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,45.5
+ parent: 1
+ - uid: 34501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,45.5
+ parent: 1
+ - uid: 34502
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,47.5
+ parent: 1
+ - uid: 34513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,48.5
+ parent: 1
+ - uid: 34514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,50.5
+ parent: 1
+ - uid: 34515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,51.5
+ parent: 1
+ - uid: 34525
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,42.5
+ parent: 1
+ - uid: 34526
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,42.5
+ parent: 1
+ - uid: 34527
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,42.5
+ parent: 1
+ - uid: 35254
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,160.5
+ parent: 1
+ - uid: 35255
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,161.5
+ parent: 1
+ - uid: 35257
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,160.5
+ parent: 1
+ - uid: 35259
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,160.5
+ parent: 1
+ - uid: 35260
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,161.5
+ parent: 1
+ - uid: 35274
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,160.5
+ parent: 1
+ - uid: 35336
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 79.5,162.5
+ parent: 1
+ - uid: 35365
+ components:
+ - type: Transform
+ pos: 91.5,169.5
+ parent: 1
+ - uid: 35366
+ components:
+ - type: Transform
+ pos: 91.5,170.5
+ parent: 1
+ - uid: 35606
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,160.5
+ parent: 1
+ - uid: 35607
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,159.5
+ parent: 1
+ - uid: 35808
+ components:
+ - type: Transform
+ pos: 54.5,128.5
+ parent: 1
+ - uid: 35820
+ components:
+ - type: Transform
+ pos: 54.5,129.5
+ parent: 1
+ - uid: 35840
+ components:
+ - type: Transform
+ pos: 52.5,132.5
+ parent: 1
+ - uid: 35852
+ components:
+ - type: Transform
+ pos: 51.5,132.5
+ parent: 1
+ - uid: 36088
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,75.5
+ parent: 1
+ - uid: 36099
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,75.5
+ parent: 1
+ - uid: 36471
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,83.5
+ parent: 1
+ - uid: 37356
+ components:
+ - type: Transform
+ pos: 142.5,95.5
+ parent: 1
+ - uid: 37579
+ components:
+ - type: Transform
+ pos: 146.5,154.5
+ parent: 1
+- proto: TableCarpet
+ entities:
+ - uid: 1983
+ components:
+ - type: Transform
+ pos: 77.5,58.5
+ parent: 1
+ - uid: 2876
+ components:
+ - type: Transform
+ pos: 76.5,57.5
+ parent: 1
+ - uid: 10778
+ components:
+ - type: Transform
+ pos: 108.5,115.5
+ parent: 1
+ - uid: 10793
+ components:
+ - type: Transform
+ pos: 107.5,115.5
+ parent: 1
+ - uid: 13591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 40.5,74.5
+ parent: 1
+ - uid: 23844
+ components:
+ - type: Transform
+ pos: 109.5,115.5
+ parent: 1
+ - uid: 24393
+ components:
+ - type: Transform
+ pos: 106.5,72.5
+ parent: 1
+ - uid: 24395
+ components:
+ - type: Transform
+ pos: 107.5,72.5
+ parent: 1
+ - uid: 24397
+ components:
+ - type: Transform
+ pos: 105.5,72.5
+ parent: 1
+ - uid: 24758
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,52.5
+ parent: 1
+ - uid: 26733
+ components:
+ - type: Transform
+ pos: 107.5,66.5
+ parent: 1
+ - uid: 26734
+ components:
+ - type: Transform
+ pos: 106.5,66.5
+ parent: 1
+ - uid: 26735
+ components:
+ - type: Transform
+ pos: 105.5,66.5
+ parent: 1
+ - uid: 26736
+ components:
+ - type: Transform
+ pos: 108.5,66.5
+ parent: 1
+ - uid: 26737
+ components:
+ - type: Transform
+ pos: 104.5,66.5
+ parent: 1
+ - uid: 27196
+ components:
+ - type: Transform
+ pos: 76.5,58.5
+ parent: 1
+ - uid: 27197
+ components:
+ - type: Transform
+ pos: 76.5,59.5
+ parent: 1
+ - uid: 27198
+ components:
+ - type: Transform
+ pos: 77.5,59.5
+ parent: 1
+ - uid: 27199
+ components:
+ - type: Transform
+ pos: 78.5,59.5
+ parent: 1
+ - uid: 27200
+ components:
+ - type: Transform
+ pos: 78.5,58.5
+ parent: 1
+ - uid: 27201
+ components:
+ - type: Transform
+ pos: 78.5,57.5
+ parent: 1
+ - uid: 27283
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,52.5
+ parent: 1
+ - uid: 35764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,122.5
+ parent: 1
+ - uid: 35765
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,123.5
+ parent: 1
+ - uid: 35766
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,122.5
+ parent: 1
+ - uid: 35767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 54.5,123.5
+ parent: 1
+- proto: TableCounterWood
+ entities:
+ - uid: 6470
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,108.5
+ parent: 1
+ - uid: 6476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 104.5,107.5
+ parent: 1
+ - uid: 12136
+ components:
+ - type: Transform
+ pos: 111.5,109.5
+ parent: 1
+ - uid: 13173
+ components:
+ - type: Transform
+ pos: 112.5,107.5
+ parent: 1
+ - uid: 13201
+ components:
+ - type: Transform
+ pos: 112.5,108.5
+ parent: 1
+ - uid: 13542
+ components:
+ - type: Transform
+ pos: 111.5,110.5
+ parent: 1
+ - uid: 13547
+ components:
+ - type: Transform
+ pos: 110.5,110.5
+ parent: 1
+ - uid: 13564
+ components:
+ - type: Transform
+ pos: 104.5,109.5
+ parent: 1
+ - uid: 13693
+ components:
+ - type: Transform
+ pos: 109.5,110.5
+ parent: 1
+ - uid: 13694
+ components:
+ - type: Transform
+ pos: 108.5,110.5
+ parent: 1
+ - uid: 13695
+ components:
+ - type: Transform
+ pos: 105.5,109.5
+ parent: 1
+ - uid: 13701
+ components:
+ - type: Transform
+ pos: 107.5,110.5
+ parent: 1
+ - uid: 13841
+ components:
+ - type: Transform
+ pos: 106.5,110.5
+ parent: 1
+ - uid: 16359
+ components:
+ - type: Transform
+ pos: 105.5,110.5
+ parent: 1
+ - uid: 25652
+ components:
+ - type: Transform
+ pos: 112.5,109.5
+ parent: 1
+- proto: TableFancyPurple
+ entities:
+ - uid: 36283
+ components:
+ - type: Transform
+ pos: 59.5,132.5
+ parent: 1
+ - uid: 36284
+ components:
+ - type: Transform
+ pos: 59.5,133.5
+ parent: 1
+ - uid: 36285
+ components:
+ - type: Transform
+ pos: 59.5,134.5
+ parent: 1
+ - uid: 36306
+ components:
+ - type: Transform
+ pos: 56.5,132.5
+ parent: 1
+ - uid: 36307
+ components:
+ - type: Transform
+ pos: 57.5,133.5
+ parent: 1
+ - uid: 36308
+ components:
+ - type: Transform
+ pos: 56.5,134.5
+ parent: 1
+ - uid: 36309
+ components:
+ - type: Transform
+ pos: 56.5,133.5
+ parent: 1
+- proto: TableFancyWhite
+ entities:
+ - uid: 7997
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 127.5,43.5
+ parent: 1
+ - uid: 25391
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,43.5
+ parent: 1
+- proto: TableGlass
+ entities:
+ - uid: 2682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,103.5
+ parent: 1
+ - uid: 2685
+ components:
+ - type: Transform
+ pos: 61.5,104.5
+ parent: 1
+ - uid: 13513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 52.5,61.5
+ parent: 1
+ - uid: 13514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,61.5
+ parent: 1
+ - uid: 17957
+ components:
+ - type: Transform
+ pos: 60.5,104.5
+ parent: 1
+ - uid: 17958
+ components:
+ - type: Transform
+ pos: 62.5,104.5
+ parent: 1
+ - uid: 22645
+ components:
+ - type: Transform
+ pos: 155.5,57.5
+ parent: 1
+ - uid: 22646
+ components:
+ - type: Transform
+ pos: 155.5,58.5
+ parent: 1
+ - uid: 22647
+ components:
+ - type: Transform
+ pos: 154.5,58.5
+ parent: 1
+ - uid: 24425
+ components:
+ - type: Transform
+ pos: 153.5,58.5
+ parent: 1
+ - uid: 26825
+ components:
+ - type: Transform
+ pos: 152.5,58.5
+ parent: 1
+- proto: TableReinforced
+ entities:
+ - uid: 117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,92.5
+ parent: 1
+ - uid: 492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,92.5
+ parent: 1
+ - uid: 625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,91.5
+ parent: 1
+ - uid: 1055
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 42.5,46.5
+ parent: 1
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: 40.5,59.5
+ parent: 1
+ - uid: 1278
+ components:
+ - type: Transform
+ pos: 32.5,64.5
+ parent: 1
+ - uid: 1796
+ components:
+ - type: Transform
+ pos: 32.5,53.5
+ parent: 1
+ - uid: 1819
+ components:
+ - type: Transform
+ pos: 32.5,56.5
+ parent: 1
+ - uid: 1856
+ components:
+ - type: Transform
+ pos: 32.5,60.5
+ parent: 1
+ - uid: 2014
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,101.5
+ parent: 1
+ - uid: 2791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,97.5
+ parent: 1
+ - uid: 2792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,97.5
+ parent: 1
+ - uid: 2865
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,94.5
+ parent: 1
+ - uid: 2926
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,94.5
+ parent: 1
+ - uid: 2930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,100.5
+ parent: 1
+ - uid: 2964
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,105.5
+ parent: 1
+ - uid: 2967
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,104.5
+ parent: 1
+ - uid: 2990
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,103.5
+ parent: 1
+ - uid: 3160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 77.5,105.5
+ parent: 1
+ - uid: 3161
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,100.5
+ parent: 1
+ - uid: 3162
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,102.5
+ parent: 1
+ - uid: 3163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,97.5
+ parent: 1
+ - uid: 3164
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,97.5
+ parent: 1
+ - uid: 3872
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,91.5
+ parent: 1
+ - uid: 3884
+ components:
+ - type: Transform
+ pos: 33.5,64.5
+ parent: 1
+ - uid: 3951
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,92.5
+ parent: 1
+ - uid: 5310
+ components:
+ - type: Transform
+ pos: 116.5,122.5
+ parent: 1
+ - uid: 5311
+ components:
+ - type: Transform
+ pos: 115.5,122.5
+ parent: 1
+ - uid: 5317
+ components:
+ - type: Transform
+ pos: 118.5,52.5
+ parent: 1
+ - uid: 5318
+ components:
+ - type: Transform
+ pos: 117.5,52.5
+ parent: 1
+ - uid: 5333
+ components:
+ - type: Transform
+ pos: 36.5,48.5
+ parent: 1
+ - uid: 5334
+ components:
+ - type: Transform
+ pos: 32.5,52.5
+ parent: 1
+ - uid: 5697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,75.5
+ parent: 1
+ - uid: 5698
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,75.5
+ parent: 1
+ - uid: 5699
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,71.5
+ parent: 1
+ - uid: 5700
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,72.5
+ parent: 1
+ - uid: 5701
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,73.5
+ parent: 1
+ - uid: 5702
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,74.5
+ parent: 1
+ - uid: 5763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,73.5
+ parent: 1
+ - uid: 5788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,75.5
+ parent: 1
+ - uid: 5790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,75.5
+ parent: 1
+ - uid: 5827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,69.5
+ parent: 1
+ - uid: 5839
+ components:
+ - type: Transform
+ pos: 40.5,55.5
+ parent: 1
+ - uid: 5858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,66.5
+ parent: 1
+ - uid: 5859
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,69.5
+ parent: 1
+ - uid: 5860
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,66.5
+ parent: 1
+ - uid: 5861
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,69.5
+ parent: 1
+ - uid: 6141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,75.5
+ parent: 1
+ - uid: 6253
+ components:
+ - type: Transform
+ pos: 40.5,57.5
+ parent: 1
+ - uid: 6271
+ components:
+ - type: Transform
+ pos: 137.5,102.5
+ parent: 1
+ - uid: 6297
+ components:
+ - type: Transform
+ pos: 137.5,103.5
+ parent: 1
+ - uid: 8306
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,115.5
+ parent: 1
+ - uid: 8311
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,115.5
+ parent: 1
+ - uid: 8556
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 34.5,73.5
+ parent: 1
+ - uid: 9640
+ components:
+ - type: Transform
+ pos: 40.5,58.5
+ parent: 1
+ - uid: 9656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,51.5
+ parent: 1
+ - uid: 9737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,73.5
+ parent: 1
+ - uid: 10224
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,74.5
+ parent: 1
+ - uid: 10230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,76.5
+ parent: 1
+ - uid: 13156
+ components:
+ - type: Transform
+ pos: 47.5,35.5
+ parent: 1
+ - uid: 13158
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,37.5
+ parent: 1
+ - uid: 13159
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,38.5
+ parent: 1
+ - uid: 13160
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,39.5
+ parent: 1
+ - uid: 13205
+ components:
+ - type: Transform
+ pos: 50.5,27.5
+ parent: 1
+ - uid: 13208
+ components:
+ - type: Transform
+ pos: 50.5,21.5
+ parent: 1
+ - uid: 13209
+ components:
+ - type: Transform
+ pos: 54.5,23.5
+ parent: 1
+ - uid: 13210
+ components:
+ - type: Transform
+ pos: 54.5,22.5
+ parent: 1
+ - uid: 13213
+ components:
+ - type: Transform
+ pos: 54.5,26.5
+ parent: 1
+ - uid: 13214
+ components:
+ - type: Transform
+ pos: 54.5,25.5
+ parent: 1
+ - uid: 13271
+ components:
+ - type: Transform
+ pos: 40.5,54.5
+ parent: 1
+ - uid: 13272
+ components:
+ - type: Transform
+ pos: 40.5,53.5
+ parent: 1
+ - uid: 13464
+ components:
+ - type: Transform
+ pos: 61.5,60.5
+ parent: 1
+ - uid: 14510
+ components:
+ - type: Transform
+ pos: 138.5,47.5
+ parent: 1
+ - uid: 15399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,144.5
+ parent: 1
+ - uid: 15400
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,144.5
+ parent: 1
+ - uid: 15401
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,144.5
+ parent: 1
+ - uid: 16978
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,101.5
+ parent: 1
+ - uid: 17701
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,92.5
+ parent: 1
+ - uid: 17702
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,93.5
+ parent: 1
+ - uid: 17704
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,95.5
+ parent: 1
+ - uid: 17705
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,96.5
+ parent: 1
+ - uid: 19173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,88.5
+ parent: 1
+ - uid: 19309
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,103.5
+ parent: 1
+ - uid: 19310
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,104.5
+ parent: 1
+ - uid: 19360
+ components:
+ - type: Transform
+ pos: 46.5,93.5
+ parent: 1
+ - uid: 20948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,97.5
+ parent: 1
+ - uid: 20978
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,97.5
+ parent: 1
+ - uid: 22659
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,48.5
+ parent: 1
+ - uid: 22763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,63.5
+ parent: 1
+ - uid: 22764
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,66.5
+ parent: 1
+ - uid: 22779
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,62.5
+ parent: 1
+ - uid: 22783
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,65.5
+ parent: 1
+ - uid: 22807
+ components:
+ - type: Transform
+ pos: 132.5,71.5
+ parent: 1
+ - uid: 22808
+ components:
+ - type: Transform
+ pos: 132.5,70.5
+ parent: 1
+ - uid: 22809
+ components:
+ - type: Transform
+ pos: 132.5,72.5
+ parent: 1
+ - uid: 22964
+ components:
+ - type: Transform
+ pos: 133.5,71.5
+ parent: 1
+ - uid: 22986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,50.5
+ parent: 1
+ - uid: 22987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,49.5
+ parent: 1
+ - uid: 22988
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,48.5
+ parent: 1
+ - uid: 22991
+ components:
+ - type: Transform
+ pos: 49.5,48.5
+ parent: 1
+ - uid: 23120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,66.5
+ parent: 1
+ - uid: 23220
+ components:
+ - type: Transform
+ pos: 115.5,100.5
+ parent: 1
+ - uid: 23221
+ components:
+ - type: Transform
+ pos: 118.5,104.5
+ parent: 1
+ - uid: 23260
+ components:
+ - type: Transform
+ pos: 117.5,105.5
+ parent: 1
+ - uid: 23325
+ components:
+ - type: Transform
+ pos: 115.5,102.5
+ parent: 1
+ - uid: 23332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,89.5
+ parent: 1
+ - uid: 23358
+ components:
+ - type: Transform
+ pos: 122.5,103.5
+ parent: 1
+ - uid: 23374
+ components:
+ - type: Transform
+ pos: 53.5,73.5
+ parent: 1
+ - uid: 23636
+ components:
+ - type: Transform
+ pos: 53.5,74.5
+ parent: 1
+ - uid: 23652
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,80.5
+ parent: 1
+ - uid: 23754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,75.5
+ parent: 1
+ - uid: 23782
+ components:
+ - type: Transform
+ pos: 99.5,105.5
+ parent: 1
+ - uid: 23785
+ components:
+ - type: Transform
+ pos: 100.5,105.5
+ parent: 1
+ - uid: 23787
+ components:
+ - type: Transform
+ pos: 116.5,105.5
+ parent: 1
+ - uid: 25173
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,50.5
+ parent: 1
+ - uid: 25174
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,49.5
+ parent: 1
+ - uid: 25260
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,45.5
+ parent: 1
+ - uid: 25514
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - uid: 26455
+ components:
+ - type: Transform
+ pos: 122.5,104.5
+ parent: 1
+ - uid: 26843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,71.5
+ parent: 1
+ - uid: 26844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 48.5,71.5
+ parent: 1
+ - uid: 26847
+ components:
+ - type: Transform
+ pos: 53.5,75.5
+ parent: 1
+ - uid: 26871
+ components:
+ - type: Transform
+ pos: 46.5,65.5
+ parent: 1
+ - uid: 26885
+ components:
+ - type: Transform
+ pos: 46.5,66.5
+ parent: 1
+ - uid: 26886
+ components:
+ - type: Transform
+ pos: 47.5,66.5
+ parent: 1
+ - uid: 26887
+ components:
+ - type: Transform
+ pos: 46.5,64.5
+ parent: 1
+ - uid: 27317
+ components:
+ - type: Transform
+ pos: 131.5,61.5
+ parent: 1
+ - uid: 27504
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,112.5
+ parent: 1
+ - uid: 27505
+ components:
+ - type: Transform
+ pos: 95.5,112.5
+ parent: 1
+ - uid: 29149
+ components:
+ - type: Transform
+ pos: 115.5,101.5
+ parent: 1
+ - uid: 29863
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,90.5
+ parent: 1
+ - uid: 30220
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,98.5
+ parent: 1
+ - uid: 30316
+ components:
+ - type: Transform
+ pos: 120.5,98.5
+ parent: 1
+ - uid: 30444
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,113.5
+ parent: 1
+ - uid: 30524
+ components:
+ - type: Transform
+ pos: 120.5,99.5
+ parent: 1
+ - uid: 30633
+ components:
+ - type: Transform
+ pos: 121.5,98.5
+ parent: 1
+ - uid: 32410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,90.5
+ parent: 1
+ - uid: 32930
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,90.5
+ parent: 1
+ - uid: 32971
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,93.5
+ parent: 1
+ - uid: 33710
+ components:
+ - type: Transform
+ pos: 117.5,102.5
+ parent: 1
+ - uid: 33818
+ components:
+ - type: Transform
+ pos: 118.5,102.5
+ parent: 1
+ - uid: 33819
+ components:
+ - type: Transform
+ pos: 117.5,101.5
+ parent: 1
+ - uid: 33820
+ components:
+ - type: Transform
+ pos: 119.5,104.5
+ parent: 1
+ - uid: 33823
+ components:
+ - type: Transform
+ pos: 121.5,99.5
+ parent: 1
+ - uid: 33824
+ components:
+ - type: Transform
+ pos: 118.5,101.5
+ parent: 1
+ - uid: 33882
+ components:
+ - type: Transform
+ pos: 122.5,102.5
+ parent: 1
+ - uid: 33970
+ components:
+ - type: Transform
+ pos: 46.5,73.5
+ parent: 1
+ - uid: 34012
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,107.5
+ parent: 1
+ - uid: 34013
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,108.5
+ parent: 1
+ - uid: 34014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,109.5
+ parent: 1
+ - uid: 34128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,97.5
+ parent: 1
+ - uid: 34581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,92.5
+ parent: 1
+ - uid: 35209
+ components:
+ - type: Transform
+ pos: 47.5,73.5
+ parent: 1
+ - uid: 35548
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,99.5
+ parent: 1
+ - uid: 35569
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,100.5
+ parent: 1
+ - uid: 36025
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,98.5
+ parent: 1
+- proto: TableWood
+ entities:
+ - uid: 118
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,161.5
+ parent: 1
+ - uid: 136
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,41.5
+ parent: 1
+ - uid: 493
+ components:
+ - type: Transform
+ pos: 39.5,106.5
+ parent: 1
+ - uid: 502
+ components:
+ - type: Transform
+ pos: 57.5,49.5
+ parent: 1
+ - uid: 767
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,42.5
+ parent: 1
+ - uid: 951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,42.5
+ parent: 1
+ - uid: 1627
+ components:
+ - type: Transform
+ pos: 80.5,57.5
+ parent: 1
+ - uid: 1642
+ components:
+ - type: Transform
+ pos: 70.5,57.5
+ parent: 1
+ - uid: 1732
+ components:
+ - type: Transform
+ pos: 70.5,54.5
+ parent: 1
+ - uid: 1738
+ components:
+ - type: Transform
+ pos: 70.5,55.5
+ parent: 1
+ - uid: 1765
+ components:
+ - type: Transform
+ pos: 70.5,53.5
+ parent: 1
+ - uid: 1875
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,59.5
+ parent: 1
+ - uid: 1907
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,59.5
+ parent: 1
+ - uid: 1941
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,59.5
+ parent: 1
+ - uid: 2060
+ components:
+ - type: Transform
+ pos: 70.5,59.5
+ parent: 1
+ - uid: 2490
+ components:
+ - type: Transform
+ pos: 70.5,58.5
+ parent: 1
+ - uid: 2756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,54.5
+ parent: 1
+ - uid: 3173
+ components:
+ - type: Transform
+ pos: 89.5,92.5
+ parent: 1
+ - uid: 3225
+ components:
+ - type: Transform
+ pos: 88.5,92.5
+ parent: 1
+ - uid: 3596
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,111.5
+ parent: 1
+ - uid: 3835
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,108.5
+ parent: 1
+ - uid: 4098
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,108.5
+ parent: 1
+ - uid: 4221
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,41.5
+ parent: 1
+ - uid: 4801
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,169.5
+ parent: 1
+ - uid: 4874
+ components:
+ - type: Transform
+ pos: 104.5,41.5
+ parent: 1
+ - uid: 5347
+ components:
+ - type: Transform
+ pos: 40.5,106.5
+ parent: 1
+ - uid: 5358
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 136.5,153.5
+ parent: 1
+ - uid: 5359
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,153.5
+ parent: 1
+ - uid: 5394
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,153.5
+ parent: 1
+ - uid: 5395
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 133.5,153.5
+ parent: 1
+ - uid: 5764
+ components:
+ - type: Transform
+ pos: 142.5,67.5
+ parent: 1
+ - uid: 5789
+ components:
+ - type: Transform
+ pos: 141.5,67.5
+ parent: 1
+ - uid: 5817
+ components:
+ - type: Transform
+ pos: 144.5,67.5
+ parent: 1
+ - uid: 5818
+ components:
+ - type: Transform
+ pos: 145.5,67.5
+ parent: 1
+ - uid: 6340
+ components:
+ - type: Transform
+ pos: 144.5,104.5
+ parent: 1
+ - uid: 6568
+ components:
+ - type: Transform
+ pos: 137.5,145.5
+ parent: 1
+ - uid: 6569
+ components:
+ - type: Transform
+ pos: 142.5,145.5
+ parent: 1
+ - uid: 7574
+ components:
+ - type: Transform
+ pos: 80.5,59.5
+ parent: 1
+ - uid: 7575
+ components:
+ - type: Transform
+ pos: 80.5,58.5
+ parent: 1
+ - uid: 8227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 71.5,73.5
+ parent: 1
+ - uid: 8229
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,73.5
+ parent: 1
+ - uid: 8230
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,74.5
+ parent: 1
+ - uid: 8231
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,75.5
+ parent: 1
+ - uid: 8232
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 72.5,76.5
+ parent: 1
+ - uid: 8326
+ components:
+ - type: Transform
+ pos: 78.5,54.5
+ parent: 1
+ - uid: 8369
+ components:
+ - type: Transform
+ pos: 77.5,54.5
+ parent: 1
+ - uid: 8475
+ components:
+ - type: Transform
+ pos: 76.5,54.5
+ parent: 1
+ - uid: 8908
+ components:
+ - type: Transform
+ pos: 79.5,47.5
+ parent: 1
+ - uid: 8920
+ components:
+ - type: Transform
+ pos: 80.5,47.5
+ parent: 1
+ - uid: 8924
+ components:
+ - type: Transform
+ pos: 80.5,48.5
+ parent: 1
+ - uid: 8928
+ components:
+ - type: Transform
+ pos: 80.5,49.5
+ parent: 1
+ - uid: 9581
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,72.5
+ parent: 1
+ - uid: 9636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,76.5
+ parent: 1
+ - uid: 9957
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,72.5
+ parent: 1
+ - uid: 9958
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,73.5
+ parent: 1
+ - uid: 9959
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,75.5
+ parent: 1
+ - uid: 10770
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 82.5,76.5
+ parent: 1
+ - uid: 11207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,115.5
+ parent: 1
+ - uid: 12126
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 99.5,114.5
+ parent: 1
+ - uid: 12128
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,111.5
+ parent: 1
+ - uid: 12129
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,112.5
+ parent: 1
+ - uid: 12131
+ components:
+ - type: Transform
+ pos: 110.5,106.5
+ parent: 1
+ - uid: 12132
+ components:
+ - type: Transform
+ pos: 105.5,106.5
+ parent: 1
+ - uid: 12133
+ components:
+ - type: Transform
+ pos: 106.5,106.5
+ parent: 1
+ - uid: 12134
+ components:
+ - type: Transform
+ pos: 108.5,64.5
+ parent: 1
+ - uid: 12137
+ components:
+ - type: Transform
+ pos: 111.5,106.5
+ parent: 1
+ - uid: 12144
+ components:
+ - type: Transform
+ pos: 105.5,64.5
+ parent: 1
+ - uid: 13172
+ components:
+ - type: Transform
+ pos: 105.5,56.5
+ parent: 1
+ - uid: 13179
+ components:
+ - type: Transform
+ pos: 106.5,56.5
+ parent: 1
+ - uid: 13223
+ components:
+ - type: Transform
+ pos: 107.5,64.5
+ parent: 1
+ - uid: 13253
+ components:
+ - type: Transform
+ pos: 107.5,56.5
+ parent: 1
+ - uid: 13487
+ components:
+ - type: Transform
+ pos: 105.5,39.5
+ parent: 1
+ - uid: 13540
+ components:
+ - type: Transform
+ pos: 104.5,64.5
+ parent: 1
+ - uid: 13612
+ components:
+ - type: Transform
+ pos: 34.5,70.5
+ parent: 1
+ - uid: 13652
+ components:
+ - type: Transform
+ pos: 38.5,66.5
+ parent: 1
+ - uid: 13670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,56.5
+ parent: 1
+ - uid: 13671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,57.5
+ parent: 1
+ - uid: 13672
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,57.5
+ parent: 1
+ - uid: 13673
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,57.5
+ parent: 1
+ - uid: 13704
+ components:
+ - type: Transform
+ pos: 55.5,52.5
+ parent: 1
+ - uid: 13705
+ components:
+ - type: Transform
+ pos: 56.5,52.5
+ parent: 1
+ - uid: 15075
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,170.5
+ parent: 1
+ - uid: 16865
+ components:
+ - type: Transform
+ pos: 110.5,57.5
+ parent: 1
+ - uid: 16868
+ components:
+ - type: Transform
+ pos: 110.5,59.5
+ parent: 1
+ - uid: 16871
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,114.5
+ parent: 1
+ - uid: 16872
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 117.5,115.5
+ parent: 1
+ - uid: 17731
+ components:
+ - type: Transform
+ pos: 87.5,92.5
+ parent: 1
+ - uid: 18092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,112.5
+ parent: 1
+ - uid: 18097
+ components:
+ - type: Transform
+ pos: 93.5,91.5
+ parent: 1
+ - uid: 18686
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,124.5
+ parent: 1
+ - uid: 19171
+ components:
+ - type: Transform
+ pos: 114.5,167.5
+ parent: 1
+ - uid: 19380
+ components:
+ - type: Transform
+ pos: 143.5,104.5
+ parent: 1
+ - uid: 19381
+ components:
+ - type: Transform
+ pos: 142.5,104.5
+ parent: 1
+ - uid: 19382
+ components:
+ - type: Transform
+ pos: 143.5,110.5
+ parent: 1
+ - uid: 20627
+ components:
+ - type: Transform
+ pos: 155.5,133.5
+ parent: 1
+ - uid: 20880
+ components:
+ - type: Transform
+ pos: 33.5,104.5
+ parent: 1
+ - uid: 21071
+ components:
+ - type: Transform
+ pos: 38.5,106.5
+ parent: 1
+ - uid: 22937
+ components:
+ - type: Transform
+ pos: 144.5,60.5
+ parent: 1
+ - uid: 23784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,43.5
+ parent: 1
+ - uid: 24187
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,73.5
+ parent: 1
+ - uid: 24290
+ components:
+ - type: Transform
+ pos: 106.5,39.5
+ parent: 1
+ - uid: 25490
+ components:
+ - type: Transform
+ pos: 98.5,54.5
+ parent: 1
+ - uid: 25511
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,43.5
+ parent: 1
+ - uid: 25547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,42.5
+ parent: 1
+ - uid: 26240
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,104.5
+ parent: 1
+ - uid: 26241
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,104.5
+ parent: 1
+ - uid: 26243
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,103.5
+ parent: 1
+ - uid: 26480
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 110.5,104.5
+ parent: 1
+ - uid: 26549
+ components:
+ - type: Transform
+ pos: 108.5,108.5
+ parent: 1
+ - uid: 26550
+ components:
+ - type: Transform
+ pos: 109.5,108.5
+ parent: 1
+ - uid: 26691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,96.5
+ parent: 1
+ - uid: 26696
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,96.5
+ parent: 1
+ - uid: 26708
+ components:
+ - type: Transform
+ pos: 107.5,108.5
+ parent: 1
+ - uid: 26760
+ components:
+ - type: Transform
+ pos: 110.5,58.5
+ parent: 1
+ - uid: 26763
+ components:
+ - type: Transform
+ pos: 111.5,57.5
+ parent: 1
+ - uid: 26803
+ components:
+ - type: Transform
+ pos: 70.5,61.5
+ parent: 1
+ - uid: 26935
+ components:
+ - type: Transform
+ pos: 70.5,70.5
+ parent: 1
+ - uid: 26985
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,74.5
+ parent: 1
+ - uid: 26986
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,75.5
+ parent: 1
+ - uid: 27175
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 74.5,49.5
+ parent: 1
+ - uid: 27224
+ components:
+ - type: Transform
+ pos: 107.5,39.5
+ parent: 1
+ - uid: 27595
+ components:
+ - type: Transform
+ pos: 71.5,61.5
+ parent: 1
+ - uid: 29800
+ components:
+ - type: Transform
+ pos: 158.5,133.5
+ parent: 1
+ - uid: 29801
+ components:
+ - type: Transform
+ pos: 152.5,133.5
+ parent: 1
+ - uid: 29803
+ components:
+ - type: Transform
+ pos: 153.5,143.5
+ parent: 1
+ - uid: 29804
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 29805
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+ - uid: 30038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 139.5,142.5
+ parent: 1
+ - uid: 30123
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,142.5
+ parent: 1
+ - uid: 30439
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,125.5
+ parent: 1
+ - uid: 34171
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 38.5,124.5
+ parent: 1
+ - uid: 34559
+ components:
+ - type: Transform
+ pos: 158.5,75.5
+ parent: 1
+ - uid: 34560
+ components:
+ - type: Transform
+ pos: 161.5,74.5
+ parent: 1
+ - uid: 34561
+ components:
+ - type: Transform
+ pos: 158.5,68.5
+ parent: 1
+ - uid: 34570
+ components:
+ - type: Transform
+ pos: 159.5,76.5
+ parent: 1
+ - uid: 34722
+ components:
+ - type: Transform
+ pos: 110.5,171.5
+ parent: 1
+ - uid: 34724
+ components:
+ - type: Transform
+ pos: 110.5,168.5
+ parent: 1
+ - uid: 35141
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,169.5
+ parent: 1
+ - uid: 35142
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,170.5
+ parent: 1
+ - uid: 35159
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 42.5,123.5
+ parent: 1
+ - uid: 35162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,171.5
+ parent: 1
+ - uid: 35190
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 110.5,170.5
+ parent: 1
+ - uid: 35216
+ components:
+ - type: Transform
+ pos: 80.5,53.5
+ parent: 1
+ - uid: 35415
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,42.5
+ parent: 1
+ - uid: 35418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,42.5
+ parent: 1
+ - uid: 35583
+ components:
+ - type: Transform
+ pos: 80.5,52.5
+ parent: 1
+ - uid: 35592
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,163.5
+ parent: 1
+ - uid: 35595
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,162.5
+ parent: 1
+ - uid: 35597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 70.5,161.5
+ parent: 1
+ - uid: 35600
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,160.5
+ parent: 1
+ - uid: 35602
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,163.5
+ parent: 1
+ - uid: 35603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,164.5
+ parent: 1
+ - uid: 35623
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 71.5,163.5
+ parent: 1
+ - uid: 36020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,42.5
+ parent: 1
+ - uid: 36559
+ components:
+ - type: Transform
+ pos: 113.5,167.5
+ parent: 1
+ - uid: 37154
+ components:
+ - type: Transform
+ pos: 167.5,134.5
+ parent: 1
+ - uid: 37155
+ components:
+ - type: Transform
+ pos: 168.5,135.5
+ parent: 1
+ - uid: 37156
+ components:
+ - type: Transform
+ pos: 167.5,135.5
+ parent: 1
+ - uid: 37449
+ components:
+ - type: Transform
+ pos: 86.5,55.5
+ parent: 1
+ - uid: 37450
+ components:
+ - type: Transform
+ pos: 86.5,54.5
+ parent: 1
+ - uid: 37453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,57.5
+ parent: 1
+ - uid: 37454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,57.5
+ parent: 1
+ - uid: 37491
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,47.5
+ parent: 1
+ - uid: 37492
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,48.5
+ parent: 1
+ - uid: 37495
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 105.5,44.5
+ parent: 1
+ - uid: 37496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 104.5,44.5
+ parent: 1
+- proto: TargetClown
+ entities:
+ - uid: 22696
+ components:
+ - type: Transform
+ pos: 152.5,73.5
+ parent: 1
+ - uid: 26750
+ components:
+ - type: Transform
+ pos: 104.5,59.5
+ parent: 1
+- proto: TargetSyndicate
+ entities:
+ - uid: 7476
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,74.5
+ parent: 1
+- proto: TegCenter
+ entities:
+ - uid: 36737
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,139.5
+ parent: 1
+- proto: TegCirculator
+ entities:
+ - uid: 12139
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,139.5
+ parent: 1
+ - type: PointLight
+ color: '#FF3300FF'
+ - uid: 16630
+ components:
+ - type: Transform
+ pos: 85.5,139.5
+ parent: 1
+ - type: PointLight
+ color: '#FF3300FF'
+- proto: TelecomServerCircuitboard
+ entities:
+ - uid: 16304
+ components:
+ - type: Transform
+ rot: -119.380520836412 rad
+ pos: 131.52982,122.57115
+ parent: 1
+- proto: TelecomServerFilledCargo
+ entities:
+ - uid: 36393
+ components:
+ - type: Transform
+ pos: 136.5,128.5
+ parent: 1
+- proto: TelecomServerFilledCommand
+ entities:
+ - uid: 2552
+ components:
+ - type: Transform
+ pos: 135.5,121.5
+ parent: 1
+- proto: TelecomServerFilledCommon
+ entities:
+ - uid: 36362
+ components:
+ - type: Transform
+ pos: 132.5,128.5
+ parent: 1
+- proto: TelecomServerFilledEngineering
+ entities:
+ - uid: 36392
+ components:
+ - type: Transform
+ pos: 136.5,126.5
+ parent: 1
+- proto: TelecomServerFilledMedical
+ entities:
+ - uid: 36344
+ components:
+ - type: Transform
+ pos: 132.5,126.5
+ parent: 1
+- proto: TelecomServerFilledScience
+ entities:
+ - uid: 36363
+ components:
+ - type: Transform
+ pos: 134.5,128.5
+ parent: 1
+- proto: TelecomServerFilledSecurity
+ entities:
+ - uid: 15361
+ components:
+ - type: Transform
+ pos: 135.5,123.5
+ parent: 1
+- proto: TelecomServerFilledService
+ entities:
+ - uid: 36364
+ components:
+ - type: Transform
+ pos: 134.5,126.5
+ parent: 1
+- proto: TeslaCoil
+ entities:
+ - uid: 2148
+ components:
+ - type: Transform
+ pos: 106.5,144.5
+ parent: 1
+ - uid: 3099
+ components:
+ - type: Transform
+ pos: 110.5,144.5
+ parent: 1
+ - uid: 3217
+ components:
+ - type: Transform
+ pos: 101.5,139.5
+ parent: 1
+ - uid: 14267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,150.5
+ parent: 1
+ - uid: 15368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,149.5
+ parent: 1
+ - uid: 23877
+ components:
+ - type: Transform
+ pos: 115.5,135.5
+ parent: 1
+ - uid: 25245
+ components:
+ - type: Transform
+ pos: 115.5,139.5
+ parent: 1
+ - uid: 25246
+ components:
+ - type: Transform
+ pos: 106.5,130.5
+ parent: 1
+ - uid: 25247
+ components:
+ - type: Transform
+ pos: 110.5,130.5
+ parent: 1
+ - uid: 26729
+ components:
+ - type: Transform
+ pos: 97.5,150.5
+ parent: 1
+ - uid: 34032
+ components:
+ - type: Transform
+ pos: 101.5,135.5
+ parent: 1
+- proto: TeslaGenerator
+ entities:
+ - uid: 24345
+ components:
+ - type: Transform
+ pos: 97.5,152.5
+ parent: 1
+- proto: TeslaGroundingRod
+ entities:
+ - uid: 2518
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,147.5
+ parent: 1
+ - uid: 14268
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,147.5
+ parent: 1
+ - uid: 15360
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,148.5
+ parent: 1
+ - uid: 23852
+ components:
+ - type: Transform
+ pos: 104.5,130.5
+ parent: 1
+ - uid: 25248
+ components:
+ - type: Transform
+ pos: 104.5,144.5
+ parent: 1
+ - uid: 25249
+ components:
+ - type: Transform
+ pos: 112.5,144.5
+ parent: 1
+ - uid: 25250
+ components:
+ - type: Transform
+ pos: 112.5,130.5
+ parent: 1
+- proto: TimpaniInstrument
+ entities:
+ - uid: 26782
+ components:
+ - type: Transform
+ pos: 112.5,57.5
+ parent: 1
+- proto: TintedWindow
+ entities:
+ - uid: 4826
+ components:
+ - type: Transform
+ pos: 76.5,78.5
+ parent: 1
+ - uid: 25919
+ components:
+ - type: Transform
+ pos: 105.5,65.5
+ parent: 1
+ - uid: 25923
+ components:
+ - type: Transform
+ pos: 109.5,65.5
+ parent: 1
+ - uid: 26554
+ components:
+ - type: Transform
+ pos: 111.5,102.5
+ parent: 1
+ - uid: 26597
+ components:
+ - type: Transform
+ pos: 105.5,103.5
+ parent: 1
+ - uid: 26982
+ components:
+ - type: Transform
+ pos: 69.5,71.5
+ parent: 1
+ - uid: 27427
+ components:
+ - type: Transform
+ pos: 103.5,65.5
+ parent: 1
+ - uid: 29066
+ components:
+ - type: Transform
+ pos: 107.5,65.5
+ parent: 1
+ - uid: 36311
+ components:
+ - type: Transform
+ pos: 55.5,133.5
+ parent: 1
+- proto: ToiletDirtyWater
+ entities:
+ - uid: 260
+ components:
+ - type: Transform
+ pos: 64.5,119.5
+ parent: 1
+ - uid: 263
+ components:
+ - type: Transform
+ pos: 60.5,119.5
+ parent: 1
+ - uid: 264
+ components:
+ - type: Transform
+ pos: 62.5,119.5
+ parent: 1
+ - uid: 5810
+ components:
+ - type: Transform
+ pos: 60.5,52.5
+ parent: 1
+ - uid: 23025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,45.5
+ parent: 1
+ - type: DisposalUnit
+ nextFlush: 0
+ - type: ContainerContainer
+ containers:
+ stash: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
+ disposals: !type:Container
+ showEnts: False
+ occludes: True
+ ents:
+ - 23026
+ - uid: 33757
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,62.5
+ parent: 1
+ - uid: 34376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,83.5
+ parent: 1
+ - uid: 34381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,83.5
+ parent: 1
+- proto: ToiletGoldenDirtyWater
+ entities:
+ - uid: 13490
+ components:
+ - type: Transform
+ pos: 33.5,68.5
+ parent: 1
+- proto: ToolboxElectricalFilled
+ entities:
+ - uid: 5925
+ components:
+ - type: Transform
+ pos: 49.360928,84.7343
+ parent: 1
+ - uid: 13548
+ components:
+ - type: Transform
+ rot: -138.2300767579507 rad
+ pos: 57.542404,23.536194
+ parent: 1
+ - uid: 16183
+ components:
+ - type: Transform
+ pos: 132.51622,138.5406
+ parent: 1
+ - uid: 16186
+ components:
+ - type: Transform
+ pos: 121.5,121.5
+ parent: 1
+ - uid: 16202
+ components:
+ - type: Transform
+ pos: 113.5,161.5
+ parent: 1
+ - uid: 16580
+ components:
+ - type: Transform
+ pos: 116.5,122.5
+ parent: 1
+ - uid: 20876
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 47.475277,108.46719
+ parent: 1
+ - uid: 28147
+ components:
+ - type: Transform
+ pos: 57.5,122.5
+ parent: 1
+ - uid: 29035
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 88.558754,61.620102
+ parent: 1
+ - uid: 35863
+ components:
+ - type: Transform
+ pos: 57.478073,129.42131
+ parent: 1
+ - uid: 36783
+ components:
+ - type: Transform
+ pos: 89.5,133.5
+ parent: 1
+- proto: ToolboxEmergencyFilled
+ entities:
+ - uid: 5479
+ components:
+ - type: Transform
+ pos: 40.540432,102.51495
+ parent: 1
+ - uid: 6281
+ components:
+ - type: Transform
+ pos: 138.47827,149.58768
+ parent: 1
+ - uid: 16185
+ components:
+ - type: Transform
+ pos: 118.5,125.5
+ parent: 1
+ - uid: 19403
+ components:
+ - type: Transform
+ pos: 158.47359,96.992805
+ parent: 1
+ - uid: 21002
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 31.226097,113.549446
+ parent: 1
+ - uid: 22995
+ components:
+ - type: Transform
+ rot: -175.9291886010281 rad
+ pos: 135.5269,43.56628
+ parent: 1
+ - uid: 34092
+ components:
+ - type: Transform
+ pos: 74.813095,41.59432
+ parent: 1
+- proto: ToolboxGoldFilled
+ entities:
+ - uid: 12019
+ components:
+ - type: Transform
+ rot: -94.24777960769374 rad
+ pos: 46.59746,73.633194
+ parent: 1
+- proto: ToolboxMechanicalFilled
+ entities:
+ - uid: 13541
+ components:
+ - type: Transform
+ pos: 40.48529,55.469147
+ parent: 1
+ - uid: 13553
+ components:
+ - type: Transform
+ pos: 50.5,27.5
+ parent: 1
+ - uid: 15685
+ components:
+ - type: Transform
+ pos: 134.5,104.5
+ parent: 1
+ - uid: 16184
+ components:
+ - type: Transform
+ pos: 98.5,125.5
+ parent: 1
+ - uid: 16203
+ components:
+ - type: Transform
+ pos: 104.5,161.5
+ parent: 1
+ - uid: 20875
+ components:
+ - type: Transform
+ pos: 46.44312,99.56493
+ parent: 1
+ - uid: 20970
+ components:
+ - type: Transform
+ pos: 49.53801,84.44263
+ parent: 1
+ - uid: 29036
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 94.48584,61.588867
+ parent: 1
+ - uid: 30139
+ components:
+ - type: Transform
+ pos: 142.51541,136.54149
+ parent: 1
+ - uid: 34399
+ components:
+ - type: Transform
+ pos: 141.5,81.5
+ parent: 1
+ - uid: 35864
+ components:
+ - type: Transform
+ pos: 52.584366,136.52715
+ parent: 1
+ - uid: 36420
+ components:
+ - type: Transform
+ pos: 49.04445,71.69144
+ parent: 1
+ - uid: 36784
+ components:
+ - type: Transform
+ pos: 89.5,146.5
+ parent: 1
+- proto: TowelColorMime
+ entities:
+ - uid: 26755
+ components:
+ - type: Transform
+ pos: 98.515274,58.649986
+ parent: 1
+- proto: TowelColorNT
+ entities:
+ - uid: 13488
+ components:
+ - type: Transform
+ pos: 35.582672,66.389
+ parent: 1
+- proto: TowelColorPurple
+ entities:
+ - uid: 36338
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 56.731422,134.04846
+ parent: 1
+- proto: TowelColorWhite
+ entities:
+ - uid: 13507
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 61.55819,50.572445
+ parent: 1
+ - uid: 27392
+ components:
+ - type: Transform
+ pos: 124.378716,86.41438
+ parent: 1
+ - uid: 27393
+ components:
+ - type: Transform
+ pos: 124.73205,86.430695
+ parent: 1
+ - uid: 28162
+ components:
+ - type: Transform
+ rot: -75.39822368615505 rad
+ pos: 55.525246,116.449936
+ parent: 1
+- proto: ToyFigurineCaptain
+ entities:
+ - uid: 13468
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 35.389343,76.639366
+ parent: 1
+- proto: ToyFigurineGreytider
+ entities:
+ - uid: 23269
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.7719,53.834633
+ parent: 1
+- proto: ToyFigurineSecurity
+ entities:
+ - uid: 23054
+ components:
+ - type: Transform
+ pos: 127.420235,45.723164
+ parent: 1
+- proto: ToyFigurineSlime
+ entities:
+ - uid: 2443
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.44167,53.492176
+ parent: 1
+- proto: ToyFigurineSpaceDragon
+ entities:
+ - uid: 6812
+ components:
+ - type: Transform
+ rot: -18.84955592153876 rad
+ pos: 77.512825,58.6809
+ parent: 1
+- proto: ToyFigurineWizardFake
+ entities:
+ - uid: 2353
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.4906,54.067013
+ parent: 1
+- proto: ToyMouse
+ entities:
+ - uid: 18086
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 88.460915,94.33134
+ parent: 1
+- proto: ToyRipley
+ entities:
+ - uid: 2539
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 70.480095,59.532406
+ parent: 1
+- proto: ToyRubberDuck
+ entities:
+ - uid: 13587
+ components:
+ - type: Transform
+ pos: 33.5,66.5
+ parent: 1
+ - uid: 28164
+ components:
+ - type: Transform
+ rot: -81.68140899333461 rad
+ pos: 56.521606,119.6725
+ parent: 1
+- proto: ToySpawner
+ entities:
+ - uid: 26678
+ components:
+ - type: Transform
+ pos: 121.5,106.5
+ parent: 1
+ - uid: 26679
+ components:
+ - type: Transform
+ pos: 120.5,106.5
+ parent: 1
+ - uid: 26680
+ components:
+ - type: Transform
+ pos: 122.5,108.5
+ parent: 1
+ - uid: 29802
+ components:
+ - type: Transform
+ pos: 158.5,133.5
+ parent: 1
+ - uid: 29807
+ components:
+ - type: Transform
+ pos: 155.5,133.5
+ parent: 1
+ - uid: 29808
+ components:
+ - type: Transform
+ pos: 152.5,133.5
+ parent: 1
+ - uid: 29809
+ components:
+ - type: Transform
+ pos: 153.5,143.5
+ parent: 1
+ - uid: 29810
+ components:
+ - type: Transform
+ pos: 156.5,143.5
+ parent: 1
+ - uid: 29811
+ components:
+ - type: Transform
+ pos: 159.5,143.5
+ parent: 1
+- proto: ToySword
+ entities:
+ - uid: 26765
+ components:
+ - type: Transform
+ rot: -150.79644737230984 rad
+ pos: 108.716415,61.510033
+ parent: 1
+- proto: TrashBag
+ entities:
+ - uid: 29579
+ components:
+ - type: Transform
+ pos: 157.29546,128.61374
+ parent: 1
+ - uid: 29580
+ components:
+ - type: Transform
+ pos: 157.5142,128.55124
+ parent: 1
+ - uid: 29581
+ components:
+ - type: Transform
+ pos: 157.73296,128.60333
+ parent: 1
+- proto: TubaInstrument
+ entities:
+ - uid: 26508
+ components:
+ - type: Transform
+ pos: 110.5,60.5
+ parent: 1
+- proto: TwoWayLever
+ entities:
+ - uid: 19298
+ components:
+ - type: Transform
+ pos: 157.5,105.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19283:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19277:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19278:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19282:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19279:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19280:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19281:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 19299
+ components:
+ - type: Transform
+ pos: 157.5,111.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19290:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19289:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19288:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19287:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19286:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19285:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19284:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 19300
+ components:
+ - type: Transform
+ pos: 140.5,113.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19297:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19296:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19295:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19294:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19293:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19292:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19291:
+ - Left: Forward
+ - Right: Off
+ - Middle: Off
+ 36554:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 36553:
+ - Left: Forward
+ - Middle: Off
+ - Right: Off
+ 36555:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 36556:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 36557:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 32974:
+ - Left: Off
+ - Right: Reverse
+ - Middle: Off
+ 32972:
+ - Right: Reverse
+ - Middle: Off
+ - Left: Off
+ - uid: 19320
+ components:
+ - type: Transform
+ pos: 138.5,100.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 19319:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19315:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 19317:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 19426
+ components:
+ - type: Transform
+ pos: 147.5,91.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 1438:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 20335:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22735:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 23947:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 26175:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 29397:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 21674
+ components:
+ - type: Transform
+ pos: 151.5,104.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 16220:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 16219:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 16221:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 16227:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 16222:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 25722
+ components:
+ - type: Transform
+ pos: 152.5,68.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 22742:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 5888:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 5034:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 4529:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22792:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22793:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22802:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 22804:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 34318
+ components:
+ - type: Transform
+ pos: 161.5,81.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34312:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34309:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34310:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34323:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34324:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34325:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34326:
+ - Left: Open
+ - Right: Open
+ - Middle: Close
+ 34327:
+ - Left: Open
+ - Right: Close
+ - Middle: Close
+ 34329:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ - uid: 34319
+ components:
+ - type: Transform
+ pos: 158.5,81.5
+ parent: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 34320:
+ - Left: Reverse
+ - Right: Forward
+ - Middle: Off
+ 34311:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34313:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34314:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34315:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34330:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+ 34316:
+ - Left: Forward
+ - Right: Reverse
+ - Middle: Off
+- proto: UnfinishedMachineFrame
+ entities:
+ - uid: 5580
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,90.5
+ parent: 1
+ - uid: 14565
+ components:
+ - type: Transform
+ pos: 32.5,109.5
+ parent: 1
+ - uid: 20437
+ components:
+ - type: Transform
+ pos: 53.5,82.5
+ parent: 1
+ - uid: 23486
+ components:
+ - type: Transform
+ pos: 90.5,87.5
+ parent: 1
+- proto: UniformPrinter
+ entities:
+ - uid: 3876
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,55.5
+ parent: 1
+- proto: UniformShortsRed
+ entities:
+ - uid: 26830
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 110.67229,82.1123
+ parent: 1
+ - uid: 26831
+ components:
+ - type: Transform
+ pos: 102.29729,81.45952
+ parent: 1
+- proto: UniformShortsRedWithTop
+ entities:
+ - uid: 26829
+ components:
+ - type: Transform
+ rot: -12.566370614359172 rad
+ pos: 110.40146,81.702576
+ parent: 1
+ - uid: 26832
+ components:
+ - type: Transform
+ pos: 102.65146,81.99425
+ parent: 1
+- proto: Vape
+ entities:
+ - uid: 37196
+ components:
+ - type: Transform
+ pos: 167.52222,132.58536
+ parent: 1
+- proto: VariantCubeBox
+ entities:
+ - uid: 20815
+ components:
+ - type: Transform
+ rot: -301.5928947446194 rad
+ pos: 34.425907,115.56279
+ parent: 1
+ - uid: 26555
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 119.75844,93.41497
+ parent: 1
+- proto: VendingBarDrobe
+ entities:
+ - uid: 26487
+ components:
+ - type: Transform
+ pos: 106.5,102.5
+ parent: 1
+- proto: VendingMachineAtmosDrobe
+ entities:
+ - uid: 15944
+ components:
+ - type: Transform
+ pos: 72.5,119.5
+ parent: 1
+- proto: VendingMachineBooze
+ entities:
+ - uid: 1266
+ components:
+ - type: Transform
+ pos: 33.5,70.5
+ parent: 1
+ - uid: 26543
+ components:
+ - type: Transform
+ pos: 109.5,106.5
+ parent: 1
+ - uid: 34093
+ components:
+ - type: Transform
+ pos: 107.5,167.5
+ parent: 1
+- proto: VendingMachineCargoDrobe
+ entities:
+ - uid: 19625
+ components:
+ - type: Transform
+ pos: 154.5,96.5
+ parent: 1
+- proto: VendingMachineCart
+ entities:
+ - uid: 29037
+ components:
+ - type: Transform
+ pos: 61.5,54.5
+ parent: 1
+- proto: VendingMachineChapel
+ entities:
+ - uid: 26929
+ components:
+ - type: Transform
+ pos: 71.5,67.5
+ parent: 1
+- proto: VendingMachineChefDrobe
+ entities:
+ - uid: 23437
+ components:
+ - type: Transform
+ pos: 115.5,94.5
+ parent: 1
+- proto: VendingMachineChefvend
+ entities:
+ - uid: 19214
+ components:
+ - type: Transform
+ pos: 123.5,96.5
+ parent: 1
+- proto: VendingMachineChemDrobe
+ entities:
+ - uid: 17706
+ components:
+ - type: Transform
+ pos: 89.5,96.5
+ parent: 1
+- proto: VendingMachineChemicals
+ entities:
+ - uid: 3170
+ components:
+ - type: Transform
+ pos: 85.5,99.5
+ parent: 1
+- proto: VendingMachineCigs
+ entities:
+ - uid: 291
+ components:
+ - type: Transform
+ pos: 64.5,56.5
+ parent: 1
+ - uid: 4020
+ components:
+ - type: Transform
+ pos: 46.5,48.5
+ parent: 1
+ - uid: 9663
+ components:
+ - type: Transform
+ pos: 79.5,82.5
+ parent: 1
+ - uid: 23142
+ components:
+ - type: Transform
+ pos: 142.5,58.5
+ parent: 1
+ - uid: 23791
+ components:
+ - type: Transform
+ pos: 106.5,115.5
+ parent: 1
+- proto: VendingMachineClothing
+ entities:
+ - uid: 26787
+ components:
+ - type: Transform
+ pos: 109.5,64.5
+ parent: 1
+- proto: VendingMachineCoffee
+ entities:
+ - uid: 26867
+ components:
+ - type: Transform
+ pos: 98.5,81.5
+ parent: 1
+ - uid: 30078
+ components:
+ - type: Transform
+ pos: 142.5,137.5
+ parent: 1
+- proto: VendingMachineCondiments
+ entities:
+ - uid: 26707
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 112.5,107.5
+ parent: 1
+- proto: VendingMachineCuraDrobe
+ entities:
+ - uid: 27285
+ components:
+ - type: Transform
+ pos: 74.5,47.5
+ parent: 1
+- proto: VendingMachineDetDrobe
+ entities:
+ - uid: 5145
+ components:
+ - type: Transform
+ pos: 87.5,57.5
+ parent: 1
+- proto: VendingMachineDinnerware
+ entities:
+ - uid: 33821
+ components:
+ - type: Transform
+ pos: 119.5,96.5
+ parent: 1
+- proto: VendingMachineDiscount
+ entities:
+ - uid: 17970
+ components:
+ - type: Transform
+ pos: 69.5,103.5
+ parent: 1
+ - uid: 27263
+ components:
+ - type: Transform
+ pos: 114.5,85.5
+ parent: 1
+ - uid: 37036
+ components:
+ - type: Transform
+ pos: 125.5,167.5
+ parent: 1
+- proto: VendingMachineDonut
+ entities:
+ - uid: 22847
+ components:
+ - type: Transform
+ pos: 138.5,53.5
+ parent: 1
+ - uid: 26872
+ components:
+ - type: Transform
+ pos: 105.5,94.5
+ parent: 1
+- proto: VendingMachineEngiDrobe
+ entities:
+ - uid: 16072
+ components:
+ - type: Transform
+ pos: 136.5,132.5
+ parent: 1
+- proto: VendingMachineEngivend
+ entities:
+ - uid: 16073
+ components:
+ - type: Transform
+ pos: 125.5,132.5
+ parent: 1
+- proto: VendingMachineGames
+ entities:
+ - uid: 23023
+ components:
+ - type: Transform
+ pos: 128.5,52.5
+ parent: 1
+ - uid: 26503
+ components:
+ - type: Transform
+ pos: 80.5,56.5
+ parent: 1
+- proto: VendingMachineGeneDrobe
+ entities:
+ - uid: 30297
+ components:
+ - type: Transform
+ pos: 86.5,84.5
+ parent: 1
+- proto: VendingMachineHappyHonk
+ entities:
+ - uid: 19903
+ components:
+ - type: Transform
+ pos: 118.5,96.5
+ parent: 1
+- proto: VendingMachineHydrobe
+ entities:
+ - uid: 26466
+ components:
+ - type: Transform
+ pos: 97.5,94.5
+ parent: 1
+- proto: VendingMachineJaniDrobe
+ entities:
+ - uid: 29571
+ components:
+ - type: Transform
+ pos: 155.5,125.5
+ parent: 1
+- proto: VendingMachineLawDrobe
+ entities:
+ - uid: 27121
+ components:
+ - type: Transform
+ pos: 108.5,42.5
+ parent: 1
+- proto: VendingMachineMedical
+ entities:
+ - uid: 5306
+ components:
+ - type: Transform
+ pos: 80.5,102.5
+ parent: 1
+ - uid: 17672
+ components:
+ - type: Transform
+ pos: 72.5,97.5
+ parent: 1
+ - uid: 17703
+ components:
+ - type: Transform
+ pos: 65.5,94.5
+ parent: 1
+ - uid: 28663
+ components:
+ - type: Transform
+ pos: 114.5,47.5
+ parent: 1
+- proto: VendingMachineMediDrobe
+ entities:
+ - uid: 23649
+ components:
+ - type: Transform
+ pos: 70.5,84.5
+ parent: 1
+- proto: VendingMachineNutri
+ entities:
+ - uid: 26647
+ components:
+ - type: Transform
+ pos: 93.5,96.5
+ parent: 1
+- proto: VendingMachineRobotics
+ entities:
+ - uid: 588
+ components:
+ - type: Transform
+ pos: 63.5,89.5
+ parent: 1
+- proto: VendingMachineSalvage
+ entities:
+ - uid: 19455
+ components:
+ - type: Transform
+ pos: 144.5,87.5
+ parent: 1
+- proto: VendingMachineSciDrobe
+ entities:
+ - uid: 19313
+ components:
+ - type: Transform
+ pos: 28.5,105.5
+ parent: 1
+- proto: VendingMachineSec
+ entities:
+ - uid: 22641
+ components:
+ - type: Transform
+ pos: 155.5,55.5
+ parent: 1
+- proto: VendingMachineSecDrobe
+ entities:
+ - uid: 22651
+ components:
+ - type: Transform
+ pos: 152.5,49.5
+ parent: 1
+- proto: VendingMachineSeeds
+ entities:
+ - uid: 26458
+ components:
+ - type: Transform
+ pos: 93.5,97.5
+ parent: 1
+- proto: VendingMachineSeedsUnlocked
+ entities:
+ - uid: 23005
+ components:
+ - type: Transform
+ pos: 129.5,44.5
+ parent: 1
+- proto: VendingMachineSnackTeal
+ entities:
+ - uid: 17634
+ components:
+ - type: Transform
+ pos: 69.5,102.5
+ parent: 1
+- proto: VendingMachineSovietSoda
+ entities:
+ - uid: 12416
+ components:
+ - type: Transform
+ pos: 59.5,44.5
+ parent: 1
+ - uid: 37029
+ components:
+ - type: Transform
+ pos: 100.5,165.5
+ parent: 1
+- proto: VendingMachineSustenance
+ entities:
+ - uid: 23022
+ components:
+ - type: Transform
+ pos: 129.5,52.5
+ parent: 1
+- proto: VendingMachineTankDispenserEngineering
+ entities:
+ - uid: 16063
+ components:
+ - type: Transform
+ pos: 133.5,131.5
+ parent: 1
+ - uid: 16096
+ components:
+ - type: Transform
+ pos: 77.5,117.5
+ parent: 1
+ - uid: 20775
+ components:
+ - type: Transform
+ pos: 118.5,149.5
+ parent: 1
+- proto: VendingMachineTankDispenserEVA
+ entities:
+ - uid: 22784
+ components:
+ - type: Transform
+ pos: 138.5,46.5
+ parent: 1
+ - uid: 33841
+ components:
+ - type: Transform
+ pos: 153.5,88.5
+ parent: 1
+ - uid: 34988
+ components:
+ - type: Transform
+ pos: 47.5,71.5
+ parent: 1
+- proto: VendingMachineTheater
+ entities:
+ - uid: 26786
+ components:
+ - type: Transform
+ pos: 103.5,64.5
+ parent: 1
+- proto: VendingMachineVendomat
+ entities:
+ - uid: 20450
+ components:
+ - type: Transform
+ pos: 47.5,80.5
+ parent: 1
+ - uid: 33894
+ components:
+ - type: Transform
+ pos: 93.5,58.5
+ parent: 1
+- proto: VendingMachineYouTool
+ entities:
+ - uid: 16049
+ components:
+ - type: Transform
+ pos: 125.5,131.5
+ parent: 1
+ - uid: 16050
+ components:
+ - type: Transform
+ pos: 123.5,121.5
+ parent: 1
+ - uid: 30231
+ components:
+ - type: Transform
+ pos: 86.5,61.5
+ parent: 1
+- proto: ViolinInstrument
+ entities:
+ - uid: 26783
+ components:
+ - type: Transform
+ pos: 111.353714,57.567657
+ parent: 1
+- proto: WallmountTelevision
+ entities:
+ - uid: 1364
+ components:
+ - type: Transform
+ pos: 118.5,87.5
+ parent: 1
+ - uid: 7470
+ components:
+ - type: Transform
+ pos: 155.5,112.5
+ parent: 1
+ - uid: 7471
+ components:
+ - type: Transform
+ pos: 71.5,101.5
+ parent: 1
+ - uid: 7472
+ components:
+ - type: Transform
+ pos: 119.5,157.5
+ parent: 1
+ - uid: 13579
+ components:
+ - type: Transform
+ pos: 33.5,77.5
+ parent: 1
+ - uid: 14831
+ components:
+ - type: Transform
+ pos: 81.5,115.5
+ parent: 1
+ - uid: 19515
+ components:
+ - type: Transform
+ pos: 72.5,77.5
+ parent: 1
+ - uid: 25417
+ components:
+ - type: Transform
+ pos: 36.5,65.5
+ parent: 1
+ - uid: 27407
+ components:
+ - type: Transform
+ pos: 97.5,53.5
+ parent: 1
+ - uid: 28928
+ components:
+ - type: Transform
+ pos: 76.5,66.5
+ parent: 1
+ - uid: 33290
+ components:
+ - type: Transform
+ pos: 34.5,102.5
+ parent: 1
+ - uid: 36603
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,84.5
+ parent: 1
+- proto: WallmountTelevisionFrame
+ entities:
+ - uid: 33065
+ components:
+ - type: Transform
+ pos: 109.5,25.5
+ parent: 1
+- proto: WallReinforced
+ entities:
+ - uid: 69
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,109.5
+ parent: 1
+ - uid: 71
+ components:
+ - type: Transform
+ pos: 50.5,73.5
+ parent: 1
+ - uid: 334
+ components:
+ - type: Transform
+ pos: 27.5,90.5
+ parent: 1
+ - uid: 355
+ components:
+ - type: Transform
+ pos: 30.5,77.5
+ parent: 1
+ - uid: 356
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 53.5,111.5
+ parent: 1
+ - uid: 358
+ components:
+ - type: Transform
+ pos: 30.5,75.5
+ parent: 1
+ - uid: 361
+ components:
+ - type: Transform
+ pos: 30.5,72.5
+ parent: 1
+ - uid: 364
+ components:
+ - type: Transform
+ pos: 30.5,71.5
+ parent: 1
+ - uid: 365
+ components:
+ - type: Transform
+ pos: 30.5,70.5
+ parent: 1
+ - uid: 368
+ components:
+ - type: Transform
+ pos: 30.5,67.5
+ parent: 1
+ - uid: 370
+ components:
+ - type: Transform
+ pos: 31.5,78.5
+ parent: 1
+ - uid: 371
+ components:
+ - type: Transform
+ pos: 31.5,77.5
+ parent: 1
+ - uid: 372
+ components:
+ - type: Transform
+ pos: 31.5,76.5
+ parent: 1
+ - uid: 373
+ components:
+ - type: Transform
+ pos: 31.5,75.5
+ parent: 1
+ - uid: 374
+ components:
+ - type: Transform
+ pos: 31.5,74.5
+ parent: 1
+ - uid: 375
+ components:
+ - type: Transform
+ pos: 31.5,73.5
+ parent: 1
+ - uid: 376
+ components:
+ - type: Transform
+ pos: 31.5,72.5
+ parent: 1
+ - uid: 386
+ components:
+ - type: Transform
+ pos: 31.5,71.5
+ parent: 1
+ - uid: 387
+ components:
+ - type: Transform
+ pos: 31.5,70.5
+ parent: 1
+ - uid: 388
+ components:
+ - type: Transform
+ pos: 31.5,69.5
+ parent: 1
+ - uid: 389
+ components:
+ - type: Transform
+ pos: 31.5,68.5
+ parent: 1
+ - uid: 390
+ components:
+ - type: Transform
+ pos: 31.5,67.5
+ parent: 1
+ - uid: 391
+ components:
+ - type: Transform
+ pos: 31.5,66.5
+ parent: 1
+ - uid: 392
+ components:
+ - type: Transform
+ pos: 31.5,65.5
+ parent: 1
+ - uid: 393
+ components:
+ - type: Transform
+ pos: 31.5,64.5
+ parent: 1
+ - uid: 394
+ components:
+ - type: Transform
+ pos: 31.5,60.5
+ parent: 1
+ - uid: 395
+ components:
+ - type: Transform
+ pos: 31.5,56.5
+ parent: 1
+ - uid: 396
+ components:
+ - type: Transform
+ pos: 31.5,52.5
+ parent: 1
+ - uid: 397
+ components:
+ - type: Transform
+ pos: 31.5,51.5
+ parent: 1
+ - uid: 398
+ components:
+ - type: Transform
+ pos: 31.5,50.5
+ parent: 1
+ - uid: 400
+ components:
+ - type: Transform
+ pos: 32.5,77.5
+ parent: 1
+ - uid: 414
+ components:
+ - type: Transform
+ pos: 32.5,65.5
+ parent: 1
+ - uid: 421
+ components:
+ - type: Transform
+ pos: 32.5,50.5
+ parent: 1
+ - uid: 433
+ components:
+ - type: Transform
+ pos: 40.5,103.5
+ parent: 1
+ - uid: 437
+ components:
+ - type: Transform
+ pos: 33.5,77.5
+ parent: 1
+ - uid: 439
+ components:
+ - type: Transform
+ pos: 33.5,65.5
+ parent: 1
+ - uid: 445
+ components:
+ - type: Transform
+ pos: 34.5,77.5
+ parent: 1
+ - uid: 461
+ components:
+ - type: Transform
+ pos: 34.5,48.5
+ parent: 1
+ - uid: 462
+ components:
+ - type: Transform
+ pos: 34.5,47.5
+ parent: 1
+ - uid: 463
+ components:
+ - type: Transform
+ pos: 35.5,78.5
+ parent: 1
+ - uid: 464
+ components:
+ - type: Transform
+ pos: 35.5,77.5
+ parent: 1
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 35.5,65.5
+ parent: 1
+ - uid: 498
+ components:
+ - type: Transform
+ pos: 35.5,47.5
+ parent: 1
+ - uid: 499
+ components:
+ - type: Transform
+ pos: 36.5,78.5
+ parent: 1
+ - uid: 500
+ components:
+ - type: Transform
+ pos: 36.5,77.5
+ parent: 1
+ - uid: 504
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,149.5
+ parent: 1
+ - uid: 524
+ components:
+ - type: Transform
+ pos: 36.5,65.5
+ parent: 1
+ - uid: 525
+ components:
+ - type: Transform
+ pos: 36.5,47.5
+ parent: 1
+ - uid: 528
+ components:
+ - type: Transform
+ pos: 37.5,77.5
+ parent: 1
+ - uid: 530
+ components:
+ - type: Transform
+ pos: 37.5,65.5
+ parent: 1
+ - uid: 531
+ components:
+ - type: Transform
+ pos: 38.5,78.5
+ parent: 1
+ - uid: 532
+ components:
+ - type: Transform
+ pos: 38.5,77.5
+ parent: 1
+ - uid: 534
+ components:
+ - type: Transform
+ pos: 38.5,65.5
+ parent: 1
+ - uid: 535
+ components:
+ - type: Transform
+ pos: 38.5,29.5
+ parent: 1
+ - uid: 536
+ components:
+ - type: Transform
+ pos: 38.5,28.5
+ parent: 1
+ - uid: 537
+ components:
+ - type: Transform
+ pos: 38.5,27.5
+ parent: 1
+ - uid: 538
+ components:
+ - type: Transform
+ pos: 38.5,26.5
+ parent: 1
+ - uid: 539
+ components:
+ - type: Transform
+ pos: 38.5,25.5
+ parent: 1
+ - uid: 540
+ components:
+ - type: Transform
+ pos: 38.5,24.5
+ parent: 1
+ - uid: 541
+ components:
+ - type: Transform
+ pos: 38.5,23.5
+ parent: 1
+ - uid: 542
+ components:
+ - type: Transform
+ pos: 38.5,22.5
+ parent: 1
+ - uid: 543
+ components:
+ - type: Transform
+ pos: 38.5,21.5
+ parent: 1
+ - uid: 544
+ components:
+ - type: Transform
+ pos: 38.5,20.5
+ parent: 1
+ - uid: 545
+ components:
+ - type: Transform
+ pos: 38.5,19.5
+ parent: 1
+ - uid: 547
+ components:
+ - type: Transform
+ pos: 39.5,77.5
+ parent: 1
+ - uid: 564
+ components:
+ - type: Transform
+ pos: 39.5,65.5
+ parent: 1
+ - uid: 565
+ components:
+ - type: Transform
+ pos: 39.5,30.5
+ parent: 1
+ - uid: 566
+ components:
+ - type: Transform
+ pos: 39.5,29.5
+ parent: 1
+ - uid: 567
+ components:
+ - type: Transform
+ pos: 39.5,19.5
+ parent: 1
+ - uid: 569
+ components:
+ - type: Transform
+ pos: 39.5,18.5
+ parent: 1
+ - uid: 570
+ components:
+ - type: Transform
+ pos: 40.5,78.5
+ parent: 1
+ - uid: 571
+ components:
+ - type: Transform
+ pos: 40.5,77.5
+ parent: 1
+ - uid: 573
+ components:
+ - type: Transform
+ pos: 40.5,65.5
+ parent: 1
+ - uid: 574
+ components:
+ - type: Transform
+ pos: 40.5,47.5
+ parent: 1
+ - uid: 576
+ components:
+ - type: Transform
+ pos: 40.5,41.5
+ parent: 1
+ - uid: 594
+ components:
+ - type: Transform
+ pos: 40.5,40.5
+ parent: 1
+ - uid: 596
+ components:
+ - type: Transform
+ pos: 40.5,39.5
+ parent: 1
+ - uid: 597
+ components:
+ - type: Transform
+ pos: 40.5,38.5
+ parent: 1
+ - uid: 598
+ components:
+ - type: Transform
+ pos: 40.5,37.5
+ parent: 1
+ - uid: 599
+ components:
+ - type: Transform
+ pos: 40.5,36.5
+ parent: 1
+ - uid: 600
+ components:
+ - type: Transform
+ pos: 40.5,35.5
+ parent: 1
+ - uid: 601
+ components:
+ - type: Transform
+ pos: 40.5,32.5
+ parent: 1
+ - uid: 602
+ components:
+ - type: Transform
+ pos: 40.5,31.5
+ parent: 1
+ - uid: 603
+ components:
+ - type: Transform
+ pos: 40.5,30.5
+ parent: 1
+ - uid: 604
+ components:
+ - type: Transform
+ pos: 40.5,27.5
+ parent: 1
+ - uid: 605
+ components:
+ - type: Transform
+ pos: 40.5,26.5
+ parent: 1
+ - uid: 606
+ components:
+ - type: Transform
+ pos: 40.5,25.5
+ parent: 1
+ - uid: 607
+ components:
+ - type: Transform
+ pos: 40.5,24.5
+ parent: 1
+ - uid: 608
+ components:
+ - type: Transform
+ pos: 40.5,23.5
+ parent: 1
+ - uid: 609
+ components:
+ - type: Transform
+ pos: 40.5,22.5
+ parent: 1
+ - uid: 610
+ components:
+ - type: Transform
+ pos: 40.5,21.5
+ parent: 1
+ - uid: 611
+ components:
+ - type: Transform
+ pos: 40.5,18.5
+ parent: 1
+ - uid: 612
+ components:
+ - type: Transform
+ pos: 40.5,17.5
+ parent: 1
+ - uid: 613
+ components:
+ - type: Transform
+ pos: 40.5,16.5
+ parent: 1
+ - uid: 626
+ components:
+ - type: Transform
+ pos: 25.5,118.5
+ parent: 1
+ - uid: 635
+ components:
+ - type: Transform
+ pos: 41.5,77.5
+ parent: 1
+ - uid: 636
+ components:
+ - type: Transform
+ pos: 41.5,76.5
+ parent: 1
+ - uid: 640
+ components:
+ - type: Transform
+ pos: 41.5,74.5
+ parent: 1
+ - uid: 641
+ components:
+ - type: Transform
+ pos: 41.5,72.5
+ parent: 1
+ - uid: 643
+ components:
+ - type: Transform
+ pos: 41.5,70.5
+ parent: 1
+ - uid: 644
+ components:
+ - type: Transform
+ pos: 41.5,69.5
+ parent: 1
+ - uid: 645
+ components:
+ - type: Transform
+ pos: 41.5,68.5
+ parent: 1
+ - uid: 646
+ components:
+ - type: Transform
+ pos: 41.5,67.5
+ parent: 1
+ - uid: 647
+ components:
+ - type: Transform
+ pos: 41.5,66.5
+ parent: 1
+ - uid: 648
+ components:
+ - type: Transform
+ pos: 41.5,65.5
+ parent: 1
+ - uid: 649
+ components:
+ - type: Transform
+ pos: 41.5,64.5
+ parent: 1
+ - uid: 655
+ components:
+ - type: Transform
+ pos: 25.5,116.5
+ parent: 1
+ - uid: 656
+ components:
+ - type: Transform
+ pos: 25.5,115.5
+ parent: 1
+ - uid: 658
+ components:
+ - type: Transform
+ pos: 25.5,113.5
+ parent: 1
+ - uid: 659
+ components:
+ - type: Transform
+ pos: 25.5,112.5
+ parent: 1
+ - uid: 664
+ components:
+ - type: Transform
+ pos: 41.5,60.5
+ parent: 1
+ - uid: 665
+ components:
+ - type: Transform
+ pos: 41.5,56.5
+ parent: 1
+ - uid: 667
+ components:
+ - type: Transform
+ pos: 41.5,52.5
+ parent: 1
+ - uid: 670
+ components:
+ - type: Transform
+ pos: 41.5,48.5
+ parent: 1
+ - uid: 671
+ components:
+ - type: Transform
+ pos: 41.5,47.5
+ parent: 1
+ - uid: 672
+ components:
+ - type: Transform
+ pos: 41.5,42.5
+ parent: 1
+ - uid: 673
+ components:
+ - type: Transform
+ pos: 41.5,41.5
+ parent: 1
+ - uid: 675
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,174.5
+ parent: 1
+ - uid: 677
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 94.5,174.5
+ parent: 1
+ - uid: 679
+ components:
+ - type: Transform
+ pos: 25.5,110.5
+ parent: 1
+ - uid: 682
+ components:
+ - type: Transform
+ pos: 68.5,155.5
+ parent: 1
+ - uid: 683
+ components:
+ - type: Transform
+ pos: 25.5,108.5
+ parent: 1
+ - uid: 684
+ components:
+ - type: Transform
+ pos: 25.5,107.5
+ parent: 1
+ - uid: 685
+ components:
+ - type: Transform
+ pos: 25.5,106.5
+ parent: 1
+ - uid: 690
+ components:
+ - type: Transform
+ pos: 26.5,118.5
+ parent: 1
+ - uid: 695
+ components:
+ - type: Transform
+ pos: 41.5,35.5
+ parent: 1
+ - uid: 696
+ components:
+ - type: Transform
+ pos: 41.5,34.5
+ parent: 1
+ - uid: 697
+ components:
+ - type: Transform
+ pos: 41.5,32.5
+ parent: 1
+ - uid: 698
+ components:
+ - type: Transform
+ pos: 41.5,29.5
+ parent: 1
+ - uid: 709
+ components:
+ - type: Transform
+ pos: 41.5,28.5
+ parent: 1
+ - uid: 710
+ components:
+ - type: Transform
+ pos: 41.5,27.5
+ parent: 1
+ - uid: 711
+ components:
+ - type: Transform
+ pos: 41.5,21.5
+ parent: 1
+ - uid: 712
+ components:
+ - type: Transform
+ pos: 41.5,20.5
+ parent: 1
+ - uid: 713
+ components:
+ - type: Transform
+ pos: 41.5,19.5
+ parent: 1
+ - uid: 714
+ components:
+ - type: Transform
+ pos: 41.5,16.5
+ parent: 1
+ - uid: 715
+ components:
+ - type: Transform
+ pos: 42.5,77.5
+ parent: 1
+ - uid: 716
+ components:
+ - type: Transform
+ pos: 42.5,47.5
+ parent: 1
+ - uid: 717
+ components:
+ - type: Transform
+ pos: 42.5,43.5
+ parent: 1
+ - uid: 719
+ components:
+ - type: Transform
+ pos: 42.5,40.5
+ parent: 1
+ - uid: 720
+ components:
+ - type: Transform
+ pos: 42.5,39.5
+ parent: 1
+ - uid: 721
+ components:
+ - type: Transform
+ pos: 42.5,38.5
+ parent: 1
+ - uid: 722
+ components:
+ - type: Transform
+ pos: 42.5,37.5
+ parent: 1
+ - uid: 723
+ components:
+ - type: Transform
+ pos: 42.5,36.5
+ parent: 1
+ - uid: 724
+ components:
+ - type: Transform
+ pos: 42.5,34.5
+ parent: 1
+ - uid: 725
+ components:
+ - type: Transform
+ pos: 42.5,33.5
+ parent: 1
+ - uid: 726
+ components:
+ - type: Transform
+ pos: 42.5,32.5
+ parent: 1
+ - uid: 727
+ components:
+ - type: Transform
+ pos: 42.5,30.5
+ parent: 1
+ - uid: 728
+ components:
+ - type: Transform
+ pos: 42.5,29.5
+ parent: 1
+ - uid: 729
+ components:
+ - type: Transform
+ pos: 42.5,25.5
+ parent: 1
+ - uid: 734
+ components:
+ - type: Transform
+ pos: 26.5,114.5
+ parent: 1
+ - uid: 735
+ components:
+ - type: Transform
+ pos: 26.5,110.5
+ parent: 1
+ - uid: 743
+ components:
+ - type: Transform
+ pos: 26.5,106.5
+ parent: 1
+ - uid: 769
+ components:
+ - type: Transform
+ pos: 42.5,24.5
+ parent: 1
+ - uid: 775
+ components:
+ - type: Transform
+ pos: 42.5,23.5
+ parent: 1
+ - uid: 776
+ components:
+ - type: Transform
+ pos: 42.5,19.5
+ parent: 1
+ - uid: 777
+ components:
+ - type: Transform
+ pos: 42.5,18.5
+ parent: 1
+ - uid: 778
+ components:
+ - type: Transform
+ pos: 42.5,16.5
+ parent: 1
+ - uid: 779
+ components:
+ - type: Transform
+ pos: 42.5,15.5
+ parent: 1
+ - uid: 784
+ components:
+ - type: Transform
+ pos: 43.5,43.5
+ parent: 1
+ - uid: 785
+ components:
+ - type: Transform
+ pos: 43.5,41.5
+ parent: 1
+ - uid: 786
+ components:
+ - type: Transform
+ pos: 43.5,40.5
+ parent: 1
+ - uid: 787
+ components:
+ - type: Transform
+ pos: 43.5,36.5
+ parent: 1
+ - uid: 788
+ components:
+ - type: Transform
+ pos: 43.5,35.5
+ parent: 1
+ - uid: 789
+ components:
+ - type: Transform
+ pos: 43.5,33.5
+ parent: 1
+ - uid: 796
+ components:
+ - type: Transform
+ pos: 43.5,31.5
+ parent: 1
+ - uid: 803
+ components:
+ - type: Transform
+ pos: 43.5,30.5
+ parent: 1
+ - uid: 810
+ components:
+ - type: Transform
+ pos: 43.5,25.5
+ parent: 1
+ - uid: 814
+ components:
+ - type: Transform
+ pos: 43.5,23.5
+ parent: 1
+ - uid: 815
+ components:
+ - type: Transform
+ pos: 43.5,18.5
+ parent: 1
+ - uid: 816
+ components:
+ - type: Transform
+ pos: 43.5,17.5
+ parent: 1
+ - uid: 817
+ components:
+ - type: Transform
+ pos: 43.5,15.5
+ parent: 1
+ - uid: 818
+ components:
+ - type: Transform
+ pos: 44.5,77.5
+ parent: 1
+ - uid: 819
+ components:
+ - type: Transform
+ pos: 44.5,47.5
+ parent: 1
+ - uid: 820
+ components:
+ - type: Transform
+ pos: 44.5,43.5
+ parent: 1
+ - uid: 822
+ components:
+ - type: Transform
+ pos: 44.5,41.5
+ parent: 1
+ - uid: 823
+ components:
+ - type: Transform
+ pos: 44.5,35.5
+ parent: 1
+ - uid: 825
+ components:
+ - type: Transform
+ pos: 44.5,33.5
+ parent: 1
+ - uid: 826
+ components:
+ - type: Transform
+ pos: 44.5,31.5
+ parent: 1
+ - uid: 827
+ components:
+ - type: Transform
+ pos: 44.5,17.5
+ parent: 1
+ - uid: 833
+ components:
+ - type: Transform
+ pos: 44.5,15.5
+ parent: 1
+ - uid: 835
+ components:
+ - type: Transform
+ pos: 44.5,14.5
+ parent: 1
+ - uid: 836
+ components:
+ - type: Transform
+ pos: 45.5,77.5
+ parent: 1
+ - uid: 850
+ components:
+ - type: Transform
+ pos: 45.5,61.5
+ parent: 1
+ - uid: 851
+ components:
+ - type: Transform
+ pos: 45.5,60.5
+ parent: 1
+ - uid: 852
+ components:
+ - type: Transform
+ pos: 45.5,56.5
+ parent: 1
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 45.5,52.5
+ parent: 1
+ - uid: 854
+ components:
+ - type: Transform
+ pos: 45.5,48.5
+ parent: 1
+ - uid: 863
+ components:
+ - type: Transform
+ pos: 45.5,47.5
+ parent: 1
+ - uid: 867
+ components:
+ - type: Transform
+ pos: 45.5,43.5
+ parent: 1
+ - uid: 868
+ components:
+ - type: Transform
+ pos: 45.5,34.5
+ parent: 1
+ - uid: 869
+ components:
+ - type: Transform
+ pos: 45.5,32.5
+ parent: 1
+ - uid: 870
+ components:
+ - type: Transform
+ pos: 45.5,31.5
+ parent: 1
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 45.5,17.5
+ parent: 1
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 45.5,16.5
+ parent: 1
+ - uid: 873
+ components:
+ - type: Transform
+ pos: 45.5,14.5
+ parent: 1
+ - uid: 876
+ components:
+ - type: Transform
+ pos: 46.5,61.5
+ parent: 1
+ - uid: 877
+ components:
+ - type: Transform
+ pos: 46.5,47.5
+ parent: 1
+ - uid: 878
+ components:
+ - type: Transform
+ pos: 46.5,43.5
+ parent: 1
+ - uid: 879
+ components:
+ - type: Transform
+ pos: 46.5,34.5
+ parent: 1
+ - uid: 890
+ components:
+ - type: Transform
+ pos: 46.5,32.5
+ parent: 1
+ - uid: 892
+ components:
+ - type: Transform
+ pos: 46.5,16.5
+ parent: 1
+ - uid: 893
+ components:
+ - type: Transform
+ pos: 46.5,14.5
+ parent: 1
+ - uid: 896
+ components:
+ - type: Transform
+ pos: 47.5,34.5
+ parent: 1
+ - uid: 897
+ components:
+ - type: Transform
+ pos: 47.5,32.5
+ parent: 1
+ - uid: 898
+ components:
+ - type: Transform
+ pos: 47.5,16.5
+ parent: 1
+ - uid: 899
+ components:
+ - type: Transform
+ pos: 47.5,14.5
+ parent: 1
+ - uid: 907
+ components:
+ - type: Transform
+ pos: 48.5,47.5
+ parent: 1
+ - uid: 913
+ components:
+ - type: Transform
+ pos: 27.5,118.5
+ parent: 1
+ - uid: 914
+ components:
+ - type: Transform
+ pos: 27.5,106.5
+ parent: 1
+ - uid: 945
+ components:
+ - type: Transform
+ pos: 48.5,43.5
+ parent: 1
+ - uid: 946
+ components:
+ - type: Transform
+ pos: 48.5,34.5
+ parent: 1
+ - uid: 947
+ components:
+ - type: Transform
+ pos: 48.5,32.5
+ parent: 1
+ - uid: 948
+ components:
+ - type: Transform
+ pos: 48.5,16.5
+ parent: 1
+ - uid: 949
+ components:
+ - type: Transform
+ pos: 48.5,14.5
+ parent: 1
+ - uid: 954
+ components:
+ - type: Transform
+ pos: 49.5,61.5
+ parent: 1
+ - uid: 955
+ components:
+ - type: Transform
+ pos: 49.5,47.5
+ parent: 1
+ - uid: 956
+ components:
+ - type: Transform
+ pos: 49.5,43.5
+ parent: 1
+ - uid: 957
+ components:
+ - type: Transform
+ pos: 49.5,35.5
+ parent: 1
+ - uid: 958
+ components:
+ - type: Transform
+ pos: 49.5,34.5
+ parent: 1
+ - uid: 959
+ components:
+ - type: Transform
+ pos: 49.5,33.5
+ parent: 1
+ - uid: 960
+ components:
+ - type: Transform
+ pos: 49.5,32.5
+ parent: 1
+ - uid: 961
+ components:
+ - type: Transform
+ pos: 49.5,16.5
+ parent: 1
+ - uid: 962
+ components:
+ - type: Transform
+ pos: 49.5,14.5
+ parent: 1
+ - uid: 980
+ components:
+ - type: Transform
+ pos: 50.5,62.5
+ parent: 1
+ - uid: 981
+ components:
+ - type: Transform
+ pos: 50.5,61.5
+ parent: 1
+ - uid: 982
+ components:
+ - type: Transform
+ pos: 50.5,47.5
+ parent: 1
+ - uid: 983
+ components:
+ - type: Transform
+ pos: 50.5,43.5
+ parent: 1
+ - uid: 986
+ components:
+ - type: Transform
+ pos: 50.5,16.5
+ parent: 1
+ - uid: 987
+ components:
+ - type: Transform
+ pos: 50.5,14.5
+ parent: 1
+ - uid: 997
+ components:
+ - type: Transform
+ pos: 51.5,67.5
+ parent: 1
+ - uid: 998
+ components:
+ - type: Transform
+ pos: 51.5,66.5
+ parent: 1
+ - uid: 999
+ components:
+ - type: Transform
+ pos: 51.5,63.5
+ parent: 1
+ - uid: 1005
+ components:
+ - type: Transform
+ pos: 28.5,106.5
+ parent: 1
+ - uid: 1007
+ components:
+ - type: Transform
+ pos: 28.5,95.5
+ parent: 1
+ - uid: 1011
+ components:
+ - type: Transform
+ pos: 29.5,118.5
+ parent: 1
+ - uid: 1016
+ components:
+ - type: Transform
+ pos: 51.5,62.5
+ parent: 1
+ - uid: 1017
+ components:
+ - type: Transform
+ pos: 51.5,53.5
+ parent: 1
+ - uid: 1021
+ components:
+ - type: Transform
+ pos: 51.5,52.5
+ parent: 1
+ - uid: 1022
+ components:
+ - type: Transform
+ pos: 51.5,51.5
+ parent: 1
+ - uid: 1023
+ components:
+ - type: Transform
+ pos: 51.5,50.5
+ parent: 1
+ - uid: 1024
+ components:
+ - type: Transform
+ pos: 51.5,49.5
+ parent: 1
+ - uid: 1025
+ components:
+ - type: Transform
+ pos: 51.5,48.5
+ parent: 1
+ - uid: 1036
+ components:
+ - type: Transform
+ pos: 51.5,47.5
+ parent: 1
+ - uid: 1037
+ components:
+ - type: Transform
+ pos: 51.5,46.5
+ parent: 1
+ - uid: 1042
+ components:
+ - type: Transform
+ pos: 29.5,106.5
+ parent: 1
+ - uid: 1044
+ components:
+ - type: Transform
+ pos: 29.5,95.5
+ parent: 1
+ - uid: 1045
+ components:
+ - type: Transform
+ pos: 29.5,85.5
+ parent: 1
+ - uid: 1046
+ components:
+ - type: Transform
+ pos: 30.5,95.5
+ parent: 1
+ - uid: 1051
+ components:
+ - type: Transform
+ pos: 51.5,43.5
+ parent: 1
+ - uid: 1052
+ components:
+ - type: Transform
+ pos: 51.5,16.5
+ parent: 1
+ - uid: 1057
+ components:
+ - type: Transform
+ pos: 51.5,14.5
+ parent: 1
+ - uid: 1073
+ components:
+ - type: Transform
+ pos: 52.5,67.5
+ parent: 1
+ - uid: 1074
+ components:
+ - type: Transform
+ pos: 52.5,62.5
+ parent: 1
+ - uid: 1080
+ components:
+ - type: Transform
+ pos: 30.5,90.5
+ parent: 1
+ - uid: 1083
+ components:
+ - type: Transform
+ pos: 30.5,85.5
+ parent: 1
+ - uid: 1084
+ components:
+ - type: Transform
+ pos: 31.5,95.5
+ parent: 1
+ - uid: 1086
+ components:
+ - type: Transform
+ pos: 31.5,90.5
+ parent: 1
+ - uid: 1087
+ components:
+ - type: Transform
+ pos: 31.5,85.5
+ parent: 1
+ - uid: 1089
+ components:
+ - type: Transform
+ pos: 32.5,106.5
+ parent: 1
+ - uid: 1098
+ components:
+ - type: Transform
+ pos: 52.5,43.5
+ parent: 1
+ - uid: 1100
+ components:
+ - type: Transform
+ pos: 52.5,35.5
+ parent: 1
+ - uid: 1101
+ components:
+ - type: Transform
+ pos: 52.5,34.5
+ parent: 1
+ - uid: 1102
+ components:
+ - type: Transform
+ pos: 52.5,33.5
+ parent: 1
+ - uid: 1103
+ components:
+ - type: Transform
+ pos: 52.5,32.5
+ parent: 1
+ - uid: 1104
+ components:
+ - type: Transform
+ pos: 52.5,16.5
+ parent: 1
+ - uid: 1105
+ components:
+ - type: Transform
+ pos: 52.5,14.5
+ parent: 1
+ - uid: 1111
+ components:
+ - type: Transform
+ pos: 150.5,153.5
+ parent: 1
+ - uid: 1121
+ components:
+ - type: Transform
+ pos: 26.5,94.5
+ parent: 1
+ - uid: 1122
+ components:
+ - type: Transform
+ pos: 32.5,105.5
+ parent: 1
+ - uid: 1125
+ components:
+ - type: Transform
+ pos: 32.5,104.5
+ parent: 1
+ - uid: 1126
+ components:
+ - type: Transform
+ pos: 32.5,103.5
+ parent: 1
+ - uid: 1132
+ components:
+ - type: Transform
+ pos: 32.5,102.5
+ parent: 1
+ - uid: 1134
+ components:
+ - type: Transform
+ pos: 32.5,95.5
+ parent: 1
+ - uid: 1140
+ components:
+ - type: Transform
+ pos: 53.5,67.5
+ parent: 1
+ - uid: 1141
+ components:
+ - type: Transform
+ pos: 53.5,62.5
+ parent: 1
+ - uid: 1143
+ components:
+ - type: Transform
+ pos: 53.5,53.5
+ parent: 1
+ - uid: 1144
+ components:
+ - type: Transform
+ pos: 53.5,52.5
+ parent: 1
+ - uid: 1146
+ components:
+ - type: Transform
+ pos: 53.5,50.5
+ parent: 1
+ - uid: 1147
+ components:
+ - type: Transform
+ pos: 53.5,49.5
+ parent: 1
+ - uid: 1148
+ components:
+ - type: Transform
+ pos: 53.5,48.5
+ parent: 1
+ - uid: 1158
+ components:
+ - type: Transform
+ pos: 53.5,43.5
+ parent: 1
+ - uid: 1165
+ components:
+ - type: Transform
+ pos: 27.5,94.5
+ parent: 1
+ - uid: 1167
+ components:
+ - type: Transform
+ pos: 32.5,90.5
+ parent: 1
+ - uid: 1168
+ components:
+ - type: Transform
+ pos: 32.5,85.5
+ parent: 1
+ - uid: 1169
+ components:
+ - type: Transform
+ pos: 27.5,91.5
+ parent: 1
+ - uid: 1171
+ components:
+ - type: Transform
+ pos: 33.5,106.5
+ parent: 1
+ - uid: 1172
+ components:
+ - type: Transform
+ pos: 33.5,102.5
+ parent: 1
+ - uid: 1173
+ components:
+ - type: Transform
+ pos: 33.5,95.5
+ parent: 1
+ - uid: 1174
+ components:
+ - type: Transform
+ pos: 33.5,90.5
+ parent: 1
+ - uid: 1175
+ components:
+ - type: Transform
+ pos: 33.5,85.5
+ parent: 1
+ - uid: 1176
+ components:
+ - type: Transform
+ pos: 34.5,106.5
+ parent: 1
+ - uid: 1178
+ components:
+ - type: Transform
+ pos: 34.5,102.5
+ parent: 1
+ - uid: 1188
+ components:
+ - type: Transform
+ pos: 53.5,32.5
+ parent: 1
+ - uid: 1189
+ components:
+ - type: Transform
+ pos: 53.5,31.5
+ parent: 1
+ - uid: 1190
+ components:
+ - type: Transform
+ pos: 53.5,17.5
+ parent: 1
+ - uid: 1196
+ components:
+ - type: Transform
+ pos: 53.5,16.5
+ parent: 1
+ - uid: 1197
+ components:
+ - type: Transform
+ pos: 53.5,14.5
+ parent: 1
+ - uid: 1199
+ components:
+ - type: Transform
+ pos: 54.5,76.5
+ parent: 1
+ - uid: 1212
+ components:
+ - type: Transform
+ pos: 54.5,68.5
+ parent: 1
+ - uid: 1213
+ components:
+ - type: Transform
+ pos: 54.5,67.5
+ parent: 1
+ - uid: 1249
+ components:
+ - type: Transform
+ pos: 24.5,94.5
+ parent: 1
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 34.5,95.5
+ parent: 1
+ - uid: 1261
+ components:
+ - type: Transform
+ pos: 54.5,62.5
+ parent: 1
+ - uid: 1267
+ components:
+ - type: Transform
+ pos: 54.5,61.5
+ parent: 1
+ - uid: 1268
+ components:
+ - type: Transform
+ pos: 54.5,60.5
+ parent: 1
+ - uid: 1271
+ components:
+ - type: Transform
+ pos: 54.5,59.5
+ parent: 1
+ - uid: 1272
+ components:
+ - type: Transform
+ pos: 54.5,57.5
+ parent: 1
+ - uid: 1275
+ components:
+ - type: Transform
+ pos: 54.5,54.5
+ parent: 1
+ - uid: 1276
+ components:
+ - type: Transform
+ pos: 54.5,53.5
+ parent: 1
+ - uid: 1281
+ components:
+ - type: Transform
+ pos: 54.5,42.5
+ parent: 1
+ - uid: 1301
+ components:
+ - type: Transform
+ pos: 54.5,41.5
+ parent: 1
+ - uid: 1302
+ components:
+ - type: Transform
+ pos: 54.5,40.5
+ parent: 1
+ - uid: 1307
+ components:
+ - type: Transform
+ pos: 27.5,86.5
+ parent: 1
+ - uid: 1309
+ components:
+ - type: Transform
+ pos: 34.5,90.5
+ parent: 1
+ - uid: 1310
+ components:
+ - type: Transform
+ pos: 34.5,85.5
+ parent: 1
+ - uid: 1315
+ components:
+ - type: Transform
+ pos: 54.5,39.5
+ parent: 1
+ - uid: 1316
+ components:
+ - type: Transform
+ pos: 54.5,38.5
+ parent: 1
+ - uid: 1317
+ components:
+ - type: Transform
+ pos: 54.5,37.5
+ parent: 1
+ - uid: 1319
+ components:
+ - type: Transform
+ pos: 54.5,36.5
+ parent: 1
+ - uid: 1320
+ components:
+ - type: Transform
+ pos: 54.5,35.5
+ parent: 1
+ - uid: 1321
+ components:
+ - type: Transform
+ pos: 54.5,34.5
+ parent: 1
+ - uid: 1322
+ components:
+ - type: Transform
+ pos: 54.5,33.5
+ parent: 1
+ - uid: 1323
+ components:
+ - type: Transform
+ pos: 54.5,31.5
+ parent: 1
+ - uid: 1324
+ components:
+ - type: Transform
+ pos: 54.5,17.5
+ parent: 1
+ - uid: 1325
+ components:
+ - type: Transform
+ pos: 54.5,15.5
+ parent: 1
+ - uid: 1326
+ components:
+ - type: Transform
+ pos: 54.5,14.5
+ parent: 1
+ - uid: 1339
+ components:
+ - type: Transform
+ pos: 35.5,106.5
+ parent: 1
+ - uid: 1340
+ components:
+ - type: Transform
+ pos: 35.5,102.5
+ parent: 1
+ - uid: 1341
+ components:
+ - type: Transform
+ pos: 36.5,109.5
+ parent: 1
+ - uid: 1345
+ components:
+ - type: Transform
+ pos: 55.5,60.5
+ parent: 1
+ - uid: 1347
+ components:
+ - type: Transform
+ pos: 55.5,48.5
+ parent: 1
+ - uid: 1349
+ components:
+ - type: Transform
+ pos: 55.5,31.5
+ parent: 1
+ - uid: 1350
+ components:
+ - type: Transform
+ pos: 55.5,30.5
+ parent: 1
+ - uid: 1351
+ components:
+ - type: Transform
+ pos: 55.5,18.5
+ parent: 1
+ - uid: 1352
+ components:
+ - type: Transform
+ pos: 55.5,17.5
+ parent: 1
+ - uid: 1353
+ components:
+ - type: Transform
+ pos: 55.5,15.5
+ parent: 1
+ - uid: 1355
+ components:
+ - type: Transform
+ pos: 56.5,48.5
+ parent: 1
+ - uid: 1374
+ components:
+ - type: Transform
+ pos: 36.5,108.5
+ parent: 1
+ - uid: 1375
+ components:
+ - type: Transform
+ pos: 36.5,107.5
+ parent: 1
+ - uid: 1376
+ components:
+ - type: Transform
+ pos: 36.5,106.5
+ parent: 1
+ - uid: 1377
+ components:
+ - type: Transform
+ pos: 36.5,102.5
+ parent: 1
+ - uid: 1379
+ components:
+ - type: Transform
+ pos: 37.5,109.5
+ parent: 1
+ - uid: 1382
+ components:
+ - type: Transform
+ pos: 38.5,109.5
+ parent: 1
+ - uid: 1395
+ components:
+ - type: Transform
+ pos: 39.5,109.5
+ parent: 1
+ - uid: 1399
+ components:
+ - type: Transform
+ pos: 40.5,109.5
+ parent: 1
+ - uid: 1413
+ components:
+ - type: Transform
+ pos: 56.5,33.5
+ parent: 1
+ - uid: 1414
+ components:
+ - type: Transform
+ pos: 56.5,32.5
+ parent: 1
+ - uid: 1429
+ components:
+ - type: Transform
+ pos: 56.5,30.5
+ parent: 1
+ - uid: 1430
+ components:
+ - type: Transform
+ pos: 56.5,29.5
+ parent: 1
+ - uid: 1431
+ components:
+ - type: Transform
+ pos: 56.5,19.5
+ parent: 1
+ - uid: 1432
+ components:
+ - type: Transform
+ pos: 56.5,18.5
+ parent: 1
+ - uid: 1433
+ components:
+ - type: Transform
+ pos: 56.5,16.5
+ parent: 1
+ - uid: 1434
+ components:
+ - type: Transform
+ pos: 56.5,15.5
+ parent: 1
+ - uid: 1436
+ components:
+ - type: Transform
+ pos: 57.5,48.5
+ parent: 1
+ - uid: 1443
+ components:
+ - type: Transform
+ pos: 57.5,35.5
+ parent: 1
+ - uid: 1444
+ components:
+ - type: Transform
+ pos: 57.5,32.5
+ parent: 1
+ - uid: 1445
+ components:
+ - type: Transform
+ pos: 57.5,29.5
+ parent: 1
+ - uid: 1446
+ components:
+ - type: Transform
+ pos: 57.5,28.5
+ parent: 1
+ - uid: 1447
+ components:
+ - type: Transform
+ pos: 57.5,27.5
+ parent: 1
+ - uid: 1448
+ components:
+ - type: Transform
+ pos: 57.5,21.5
+ parent: 1
+ - uid: 1449
+ components:
+ - type: Transform
+ pos: 57.5,20.5
+ parent: 1
+ - uid: 1450
+ components:
+ - type: Transform
+ pos: 57.5,19.5
+ parent: 1
+ - uid: 1451
+ components:
+ - type: Transform
+ pos: 57.5,16.5
+ parent: 1
+ - uid: 1453
+ components:
+ - type: Transform
+ pos: 58.5,48.5
+ parent: 1
+ - uid: 1459
+ components:
+ - type: Transform
+ pos: 58.5,31.5
+ parent: 1
+ - uid: 1487
+ components:
+ - type: Transform
+ pos: 58.5,27.5
+ parent: 1
+ - uid: 1488
+ components:
+ - type: Transform
+ pos: 58.5,26.5
+ parent: 1
+ - uid: 1489
+ components:
+ - type: Transform
+ pos: 58.5,25.5
+ parent: 1
+ - uid: 1490
+ components:
+ - type: Transform
+ pos: 58.5,24.5
+ parent: 1
+ - uid: 1491
+ components:
+ - type: Transform
+ pos: 58.5,23.5
+ parent: 1
+ - uid: 1492
+ components:
+ - type: Transform
+ pos: 58.5,22.5
+ parent: 1
+ - uid: 1493
+ components:
+ - type: Transform
+ pos: 58.5,21.5
+ parent: 1
+ - uid: 1494
+ components:
+ - type: Transform
+ pos: 58.5,18.5
+ parent: 1
+ - uid: 1517
+ components:
+ - type: Transform
+ pos: 41.5,109.5
+ parent: 1
+ - uid: 1519
+ components:
+ - type: Transform
+ pos: 58.5,17.5
+ parent: 1
+ - uid: 1524
+ components:
+ - type: Transform
+ pos: 58.5,16.5
+ parent: 1
+ - uid: 1525
+ components:
+ - type: Transform
+ pos: 70.5,156.5
+ parent: 1
+ - uid: 1526
+ components:
+ - type: Transform
+ pos: 59.5,142.5
+ parent: 1
+ - uid: 1527
+ components:
+ - type: Transform
+ pos: 71.5,156.5
+ parent: 1
+ - uid: 1528
+ components:
+ - type: Transform
+ pos: 59.5,140.5
+ parent: 1
+ - uid: 1530
+ components:
+ - type: Transform
+ pos: 70.5,154.5
+ parent: 1
+ - uid: 1531
+ components:
+ - type: Transform
+ pos: 59.5,138.5
+ parent: 1
+ - uid: 1532
+ components:
+ - type: Transform
+ pos: 59.5,137.5
+ parent: 1
+ - uid: 1533
+ components:
+ - type: Transform
+ pos: 59.5,136.5
+ parent: 1
+ - uid: 1534
+ components:
+ - type: Transform
+ pos: 59.5,135.5
+ parent: 1
+ - uid: 1538
+ components:
+ - type: Transform
+ pos: 59.5,49.5
+ parent: 1
+ - uid: 1554
+ components:
+ - type: Transform
+ pos: 41.5,108.5
+ parent: 1
+ - uid: 1563
+ components:
+ - type: Transform
+ pos: 126.5,156.5
+ parent: 1
+ - uid: 1567
+ components:
+ - type: Transform
+ pos: 59.5,30.5
+ parent: 1
+ - uid: 1568
+ components:
+ - type: Transform
+ pos: 59.5,29.5
+ parent: 1
+ - uid: 1569
+ components:
+ - type: Transform
+ pos: 59.5,28.5
+ parent: 1
+ - uid: 1570
+ components:
+ - type: Transform
+ pos: 59.5,19.5
+ parent: 1
+ - uid: 1571
+ components:
+ - type: Transform
+ pos: 59.5,18.5
+ parent: 1
+ - uid: 1573
+ components:
+ - type: Transform
+ pos: 60.5,146.5
+ parent: 1
+ - uid: 1575
+ components:
+ - type: Transform
+ pos: 60.5,144.5
+ parent: 1
+ - uid: 1576
+ components:
+ - type: Transform
+ pos: 60.5,143.5
+ parent: 1
+ - uid: 1606
+ components:
+ - type: Transform
+ pos: 41.5,103.5
+ parent: 1
+ - uid: 1608
+ components:
+ - type: Transform
+ pos: 45.5,109.5
+ parent: 1
+ - uid: 1610
+ components:
+ - type: Transform
+ pos: 45.5,108.5
+ parent: 1
+ - uid: 1639
+ components:
+ - type: Transform
+ pos: 60.5,135.5
+ parent: 1
+ - uid: 1644
+ components:
+ - type: Transform
+ pos: 60.5,133.5
+ parent: 1
+ - uid: 1645
+ components:
+ - type: Transform
+ pos: 60.5,132.5
+ parent: 1
+ - uid: 1646
+ components:
+ - type: Transform
+ pos: 60.5,131.5
+ parent: 1
+ - uid: 1649
+ components:
+ - type: Transform
+ pos: 60.5,49.5
+ parent: 1
+ - uid: 1654
+ components:
+ - type: Transform
+ pos: 60.5,27.5
+ parent: 1
+ - uid: 1655
+ components:
+ - type: Transform
+ pos: 60.5,26.5
+ parent: 1
+ - uid: 1657
+ components:
+ - type: Transform
+ pos: 60.5,24.5
+ parent: 1
+ - uid: 1658
+ components:
+ - type: Transform
+ pos: 60.5,23.5
+ parent: 1
+ - uid: 1660
+ components:
+ - type: Transform
+ pos: 60.5,21.5
+ parent: 1
+ - uid: 1661
+ components:
+ - type: Transform
+ pos: 60.5,20.5
+ parent: 1
+ - uid: 1663
+ components:
+ - type: Transform
+ pos: 61.5,151.5
+ parent: 1
+ - uid: 1667
+ components:
+ - type: Transform
+ pos: 61.5,149.5
+ parent: 1
+ - uid: 1669
+ components:
+ - type: Transform
+ pos: 61.5,147.5
+ parent: 1
+ - uid: 1670
+ components:
+ - type: Transform
+ pos: 61.5,141.5
+ parent: 1
+ - uid: 1671
+ components:
+ - type: Transform
+ pos: 61.5,140.5
+ parent: 1
+ - uid: 1672
+ components:
+ - type: Transform
+ pos: 61.5,139.5
+ parent: 1
+ - uid: 1673
+ components:
+ - type: Transform
+ pos: 61.5,138.5
+ parent: 1
+ - uid: 1674
+ components:
+ - type: Transform
+ pos: 61.5,137.5
+ parent: 1
+ - uid: 1693
+ components:
+ - type: Transform
+ pos: 61.5,130.5
+ parent: 1
+ - uid: 1699
+ components:
+ - type: Transform
+ pos: 61.5,128.5
+ parent: 1
+ - uid: 1701
+ components:
+ - type: Transform
+ pos: 61.5,127.5
+ parent: 1
+ - uid: 1702
+ components:
+ - type: Transform
+ pos: 48.5,76.5
+ parent: 1
+ - uid: 1703
+ components:
+ - type: Transform
+ pos: 61.5,49.5
+ parent: 1
+ - uid: 1707
+ components:
+ - type: Transform
+ pos: 61.5,19.5
+ parent: 1
+ - uid: 1709
+ components:
+ - type: Transform
+ pos: 62.5,155.5
+ parent: 1
+ - uid: 1713
+ components:
+ - type: Transform
+ pos: 62.5,152.5
+ parent: 1
+ - uid: 1714
+ components:
+ - type: Transform
+ pos: 62.5,151.5
+ parent: 1
+ - uid: 1715
+ components:
+ - type: Transform
+ pos: 62.5,145.5
+ parent: 1
+ - uid: 1716
+ components:
+ - type: Transform
+ pos: 62.5,144.5
+ parent: 1
+ - uid: 1717
+ components:
+ - type: Transform
+ pos: 62.5,143.5
+ parent: 1
+ - uid: 1728
+ components:
+ - type: Transform
+ pos: 62.5,142.5
+ parent: 1
+ - uid: 1729
+ components:
+ - type: Transform
+ pos: 62.5,141.5
+ parent: 1
+ - uid: 1733
+ components:
+ - type: Transform
+ pos: 62.5,137.5
+ parent: 1
+ - uid: 1734
+ components:
+ - type: Transform
+ pos: 62.5,136.5
+ parent: 1
+ - uid: 1735
+ components:
+ - type: Transform
+ pos: 62.5,135.5
+ parent: 1
+ - uid: 1736
+ components:
+ - type: Transform
+ pos: 62.5,134.5
+ parent: 1
+ - uid: 1737
+ components:
+ - type: Transform
+ pos: 62.5,133.5
+ parent: 1
+ - uid: 1760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,92.5
+ parent: 1
+ - uid: 1763
+ components:
+ - type: Transform
+ pos: 62.5,127.5
+ parent: 1
+ - uid: 1769
+ components:
+ - type: Transform
+ pos: 62.5,124.5
+ parent: 1
+ - uid: 1772
+ components:
+ - type: Transform
+ pos: 62.5,123.5
+ parent: 1
+ - uid: 1775
+ components:
+ - type: Transform
+ pos: 62.5,60.5
+ parent: 1
+ - uid: 1777
+ components:
+ - type: Transform
+ pos: 62.5,49.5
+ parent: 1
+ - uid: 1778
+ components:
+ - type: Transform
+ pos: 62.5,30.5
+ parent: 1
+ - uid: 1783
+ components:
+ - type: Transform
+ pos: 62.5,25.5
+ parent: 1
+ - uid: 1788
+ components:
+ - type: Transform
+ pos: 62.5,22.5
+ parent: 1
+ - uid: 1791
+ components:
+ - type: Transform
+ pos: 62.5,18.5
+ parent: 1
+ - uid: 1793
+ components:
+ - type: Transform
+ pos: 62.5,16.5
+ parent: 1
+ - uid: 1795
+ components:
+ - type: Transform
+ pos: 62.5,14.5
+ parent: 1
+ - uid: 1797
+ components:
+ - type: Transform
+ pos: 63.5,149.5
+ parent: 1
+ - uid: 1798
+ components:
+ - type: Transform
+ pos: 63.5,148.5
+ parent: 1
+ - uid: 1799
+ components:
+ - type: Transform
+ pos: 63.5,147.5
+ parent: 1
+ - uid: 1800
+ components:
+ - type: Transform
+ pos: 63.5,146.5
+ parent: 1
+ - uid: 1801
+ components:
+ - type: Transform
+ pos: 63.5,145.5
+ parent: 1
+ - uid: 1827
+ components:
+ - type: Transform
+ pos: 63.5,141.5
+ parent: 1
+ - uid: 1828
+ components:
+ - type: Transform
+ pos: 63.5,137.5
+ parent: 1
+ - uid: 1834
+ components:
+ - type: Transform
+ pos: 63.5,133.5
+ parent: 1
+ - uid: 1835
+ components:
+ - type: Transform
+ pos: 63.5,132.5
+ parent: 1
+ - uid: 1836
+ components:
+ - type: Transform
+ pos: 63.5,131.5
+ parent: 1
+ - uid: 1837
+ components:
+ - type: Transform
+ pos: 63.5,130.5
+ parent: 1
+ - uid: 1838
+ components:
+ - type: Transform
+ pos: 63.5,129.5
+ parent: 1
+ - uid: 1842
+ components:
+ - type: Transform
+ pos: 63.5,60.5
+ parent: 1
+ - uid: 1854
+ components:
+ - type: Transform
+ pos: 63.5,18.5
+ parent: 1
+ - uid: 1873
+ components:
+ - type: Transform
+ pos: 64.5,153.5
+ parent: 1
+ - uid: 1876
+ components:
+ - type: Transform
+ pos: 64.5,152.5
+ parent: 1
+ - uid: 1877
+ components:
+ - type: Transform
+ pos: 64.5,151.5
+ parent: 1
+ - uid: 1885
+ components:
+ - type: Transform
+ pos: 64.5,150.5
+ parent: 1
+ - uid: 1886
+ components:
+ - type: Transform
+ pos: 64.5,149.5
+ parent: 1
+ - uid: 1890
+ components:
+ - type: Transform
+ pos: 64.5,145.5
+ parent: 1
+ - uid: 1891
+ components:
+ - type: Transform
+ pos: 64.5,141.5
+ parent: 1
+ - uid: 1892
+ components:
+ - type: Transform
+ pos: 64.5,137.5
+ parent: 1
+ - uid: 1893
+ components:
+ - type: Transform
+ pos: 64.5,133.5
+ parent: 1
+ - uid: 1899
+ components:
+ - type: Transform
+ pos: 64.5,127.5
+ parent: 1
+ - uid: 1900
+ components:
+ - type: Transform
+ pos: 64.5,125.5
+ parent: 1
+ - uid: 1901
+ components:
+ - type: Transform
+ pos: 65.5,125.5
+ parent: 1
+ - uid: 1905
+ components:
+ - type: Transform
+ pos: 64.5,126.5
+ parent: 1
+ - uid: 1909
+ components:
+ - type: Transform
+ pos: 65.5,153.5
+ parent: 1
+ - uid: 1913
+ components:
+ - type: Transform
+ pos: 65.5,149.5
+ parent: 1
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: 65.5,145.5
+ parent: 1
+ - uid: 1915
+ components:
+ - type: Transform
+ pos: 65.5,141.5
+ parent: 1
+ - uid: 1916
+ components:
+ - type: Transform
+ pos: 65.5,137.5
+ parent: 1
+ - uid: 1917
+ components:
+ - type: Transform
+ pos: 65.5,133.5
+ parent: 1
+ - uid: 1918
+ components:
+ - type: Transform
+ pos: 65.5,129.5
+ parent: 1
+ - uid: 1919
+ components:
+ - type: Transform
+ pos: 64.5,128.5
+ parent: 1
+ - uid: 1920
+ components:
+ - type: Transform
+ pos: 64.5,129.5
+ parent: 1
+ - uid: 1939
+ components:
+ - type: Transform
+ pos: 65.5,18.5
+ parent: 1
+ - uid: 1940
+ components:
+ - type: Transform
+ pos: 65.5,14.5
+ parent: 1
+ - uid: 1943
+ components:
+ - type: Transform
+ pos: 66.5,153.5
+ parent: 1
+ - uid: 1944
+ components:
+ - type: Transform
+ pos: 66.5,149.5
+ parent: 1
+ - uid: 1945
+ components:
+ - type: Transform
+ pos: 66.5,145.5
+ parent: 1
+ - uid: 1946
+ components:
+ - type: Transform
+ pos: 66.5,141.5
+ parent: 1
+ - uid: 1947
+ components:
+ - type: Transform
+ pos: 66.5,137.5
+ parent: 1
+ - uid: 1948
+ components:
+ - type: Transform
+ pos: 66.5,133.5
+ parent: 1
+ - uid: 1949
+ components:
+ - type: Transform
+ pos: 66.5,129.5
+ parent: 1
+ - uid: 1950
+ components:
+ - type: Transform
+ pos: 66.5,125.5
+ parent: 1
+ - uid: 1970
+ components:
+ - type: Transform
+ pos: 66.5,18.5
+ parent: 1
+ - uid: 1974
+ components:
+ - type: Transform
+ pos: 66.5,14.5
+ parent: 1
+ - uid: 1976
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,134.5
+ parent: 1
+ - uid: 1977
+ components:
+ - type: Transform
+ pos: 67.5,153.5
+ parent: 1
+ - uid: 1978
+ components:
+ - type: Transform
+ pos: 67.5,149.5
+ parent: 1
+ - uid: 1979
+ components:
+ - type: Transform
+ pos: 67.5,145.5
+ parent: 1
+ - uid: 1980
+ components:
+ - type: Transform
+ pos: 67.5,133.5
+ parent: 1
+ - uid: 1981
+ components:
+ - type: Transform
+ pos: 67.5,129.5
+ parent: 1
+ - uid: 1982
+ components:
+ - type: Transform
+ pos: 67.5,125.5
+ parent: 1
+ - uid: 1984
+ components:
+ - type: Transform
+ pos: 67.5,123.5
+ parent: 1
+ - uid: 1985
+ components:
+ - type: Transform
+ pos: 67.5,122.5
+ parent: 1
+ - uid: 1986
+ components:
+ - type: Transform
+ pos: 67.5,120.5
+ parent: 1
+ - uid: 1987
+ components:
+ - type: Transform
+ pos: 67.5,119.5
+ parent: 1
+ - uid: 1988
+ components:
+ - type: Transform
+ pos: 67.5,118.5
+ parent: 1
+ - uid: 1989
+ components:
+ - type: Transform
+ pos: 67.5,117.5
+ parent: 1
+ - uid: 1990
+ components:
+ - type: Transform
+ pos: 67.5,116.5
+ parent: 1
+ - uid: 1991
+ components:
+ - type: Transform
+ pos: 67.5,115.5
+ parent: 1
+ - uid: 1992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,133.5
+ parent: 1
+ - uid: 2030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,57.5
+ parent: 1
+ - uid: 2043
+ components:
+ - type: Transform
+ pos: 138.5,87.5
+ parent: 1
+ - uid: 2047
+ components:
+ - type: Transform
+ pos: 68.5,154.5
+ parent: 1
+ - uid: 2048
+ components:
+ - type: Transform
+ pos: 68.5,153.5
+ parent: 1
+ - uid: 2049
+ components:
+ - type: Transform
+ pos: 68.5,149.5
+ parent: 1
+ - uid: 2050
+ components:
+ - type: Transform
+ pos: 68.5,141.5
+ parent: 1
+ - uid: 2057
+ components:
+ - type: Transform
+ pos: 68.5,137.5
+ parent: 1
+ - uid: 2058
+ components:
+ - type: Transform
+ pos: 68.5,129.5
+ parent: 1
+ - uid: 2059
+ components:
+ - type: Transform
+ pos: 68.5,125.5
+ parent: 1
+ - uid: 2061
+ components:
+ - type: Transform
+ pos: 68.5,115.5
+ parent: 1
+ - uid: 2063
+ components:
+ - type: Transform
+ pos: 68.5,35.5
+ parent: 1
+ - uid: 2064
+ components:
+ - type: Transform
+ pos: 68.5,33.5
+ parent: 1
+ - uid: 2065
+ components:
+ - type: Transform
+ pos: 68.5,28.5
+ parent: 1
+ - uid: 2127
+ components:
+ - type: Transform
+ pos: 68.5,26.5
+ parent: 1
+ - uid: 2128
+ components:
+ - type: Transform
+ pos: 68.5,15.5
+ parent: 1
+ - uid: 2140
+ components:
+ - type: Transform
+ pos: 69.5,145.5
+ parent: 1
+ - uid: 2141
+ components:
+ - type: Transform
+ pos: 69.5,133.5
+ parent: 1
+ - uid: 2156
+ components:
+ - type: Transform
+ pos: 69.5,40.5
+ parent: 1
+ - uid: 2157
+ components:
+ - type: Transform
+ pos: 69.5,39.5
+ parent: 1
+ - uid: 2158
+ components:
+ - type: Transform
+ pos: 69.5,35.5
+ parent: 1
+ - uid: 2159
+ components:
+ - type: Transform
+ pos: 69.5,33.5
+ parent: 1
+ - uid: 2160
+ components:
+ - type: Transform
+ pos: 69.5,28.5
+ parent: 1
+ - uid: 2170
+ components:
+ - type: Transform
+ pos: 69.5,26.5
+ parent: 1
+ - uid: 2177
+ components:
+ - type: Transform
+ pos: 69.5,25.5
+ parent: 1
+ - uid: 2178
+ components:
+ - type: Transform
+ pos: 69.5,24.5
+ parent: 1
+ - uid: 2180
+ components:
+ - type: Transform
+ pos: 69.5,22.5
+ parent: 1
+ - uid: 2184
+ components:
+ - type: Transform
+ pos: 69.5,20.5
+ parent: 1
+ - uid: 2187
+ components:
+ - type: Transform
+ pos: 70.5,149.5
+ parent: 1
+ - uid: 2194
+ components:
+ - type: Transform
+ pos: 70.5,129.5
+ parent: 1
+ - uid: 2195
+ components:
+ - type: Transform
+ pos: 70.5,124.5
+ parent: 1
+ - uid: 2204
+ components:
+ - type: Transform
+ pos: 70.5,40.5
+ parent: 1
+ - uid: 2205
+ components:
+ - type: Transform
+ pos: 70.5,35.5
+ parent: 1
+ - uid: 2206
+ components:
+ - type: Transform
+ pos: 70.5,33.5
+ parent: 1
+ - uid: 2208
+ components:
+ - type: Transform
+ pos: 70.5,28.5
+ parent: 1
+ - uid: 2209
+ components:
+ - type: Transform
+ pos: 70.5,26.5
+ parent: 1
+ - uid: 2210
+ components:
+ - type: Transform
+ pos: 70.5,19.5
+ parent: 1
+ - uid: 2211
+ components:
+ - type: Transform
+ pos: 71.5,154.5
+ parent: 1
+ - uid: 2212
+ components:
+ - type: Transform
+ pos: 71.5,115.5
+ parent: 1
+ - uid: 2230
+ components:
+ - type: Transform
+ pos: 72.5,154.5
+ parent: 1
+ - uid: 2240
+ components:
+ - type: Transform
+ pos: 73.5,154.5
+ parent: 1
+ - uid: 2241
+ components:
+ - type: Transform
+ pos: 73.5,124.5
+ parent: 1
+ - uid: 2248
+ components:
+ - type: Transform
+ pos: 73.5,19.5
+ parent: 1
+ - uid: 2253
+ components:
+ - type: Transform
+ pos: 74.5,154.5
+ parent: 1
+ - uid: 2260
+ components:
+ - type: Transform
+ pos: 74.5,124.5
+ parent: 1
+ - uid: 2272
+ components:
+ - type: Transform
+ pos: 75.5,154.5
+ parent: 1
+ - uid: 2274
+ components:
+ - type: Transform
+ pos: 76.5,154.5
+ parent: 1
+ - uid: 2286
+ components:
+ - type: Transform
+ pos: 77.5,154.5
+ parent: 1
+ - uid: 2289
+ components:
+ - type: Transform
+ pos: 78.5,154.5
+ parent: 1
+ - uid: 2291
+ components:
+ - type: Transform
+ pos: 78.5,124.5
+ parent: 1
+ - uid: 2293
+ components:
+ - type: Transform
+ pos: 78.5,115.5
+ parent: 1
+ - uid: 2297
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,144.5
+ parent: 1
+ - uid: 2298
+ components:
+ - type: Transform
+ pos: 79.5,154.5
+ parent: 1
+ - uid: 2299
+ components:
+ - type: Transform
+ pos: 79.5,150.5
+ parent: 1
+ - uid: 2313
+ components:
+ - type: Transform
+ pos: 86.5,150.5
+ parent: 1
+ - uid: 2318
+ components:
+ - type: Transform
+ pos: 79.5,128.5
+ parent: 1
+ - uid: 2320
+ components:
+ - type: Transform
+ pos: 79.5,124.5
+ parent: 1
+ - uid: 2321
+ components:
+ - type: Transform
+ pos: 79.5,115.5
+ parent: 1
+ - uid: 2323
+ components:
+ - type: Transform
+ pos: 80.5,154.5
+ parent: 1
+ - uid: 2342
+ components:
+ - type: Transform
+ pos: 80.5,124.5
+ parent: 1
+ - uid: 2363
+ components:
+ - type: Transform
+ pos: 80.5,115.5
+ parent: 1
+ - uid: 2364
+ components:
+ - type: Transform
+ pos: 80.5,40.5
+ parent: 1
+ - uid: 2371
+ components:
+ - type: Transform
+ pos: 80.5,35.5
+ parent: 1
+ - uid: 2372
+ components:
+ - type: Transform
+ pos: 80.5,33.5
+ parent: 1
+ - uid: 2381
+ components:
+ - type: Transform
+ pos: 80.5,28.5
+ parent: 1
+ - uid: 2382
+ components:
+ - type: Transform
+ pos: 80.5,26.5
+ parent: 1
+ - uid: 2383
+ components:
+ - type: Transform
+ pos: 80.5,19.5
+ parent: 1
+ - uid: 2384
+ components:
+ - type: Transform
+ pos: 81.5,154.5
+ parent: 1
+ - uid: 2385
+ components:
+ - type: Transform
+ pos: 81.5,124.5
+ parent: 1
+ - uid: 2386
+ components:
+ - type: Transform
+ pos: 81.5,115.5
+ parent: 1
+ - uid: 2387
+ components:
+ - type: Transform
+ pos: 81.5,40.5
+ parent: 1
+ - uid: 2388
+ components:
+ - type: Transform
+ pos: 81.5,39.5
+ parent: 1
+ - uid: 2389
+ components:
+ - type: Transform
+ pos: 81.5,35.5
+ parent: 1
+ - uid: 2395
+ components:
+ - type: Transform
+ pos: 81.5,33.5
+ parent: 1
+ - uid: 2404
+ components:
+ - type: Transform
+ pos: 81.5,28.5
+ parent: 1
+ - uid: 2413
+ components:
+ - type: Transform
+ pos: 81.5,26.5
+ parent: 1
+ - uid: 2422
+ components:
+ - type: Transform
+ pos: 81.5,25.5
+ parent: 1
+ - uid: 2424
+ components:
+ - type: Transform
+ pos: 81.5,24.5
+ parent: 1
+ - uid: 2426
+ components:
+ - type: Transform
+ pos: 81.5,22.5
+ parent: 1
+ - uid: 2445
+ components:
+ - type: Transform
+ pos: 82.5,154.5
+ parent: 1
+ - uid: 2446
+ components:
+ - type: Transform
+ pos: 82.5,124.5
+ parent: 1
+ - uid: 2448
+ components:
+ - type: Transform
+ pos: 82.5,115.5
+ parent: 1
+ - uid: 2449
+ components:
+ - type: Transform
+ pos: 82.5,35.5
+ parent: 1
+ - uid: 2451
+ components:
+ - type: Transform
+ pos: 82.5,33.5
+ parent: 1
+ - uid: 2452
+ components:
+ - type: Transform
+ pos: 82.5,28.5
+ parent: 1
+ - uid: 2457
+ components:
+ - type: Transform
+ pos: 82.5,26.5
+ parent: 1
+ - uid: 2462
+ components:
+ - type: Transform
+ pos: 83.5,154.5
+ parent: 1
+ - uid: 2485
+ components:
+ - type: Transform
+ pos: 77.5,141.5
+ parent: 1
+ - uid: 2503
+ components:
+ - type: Transform
+ pos: 83.5,124.5
+ parent: 1
+ - uid: 2515
+ components:
+ - type: Transform
+ pos: 83.5,115.5
+ parent: 1
+ - uid: 2520
+ components:
+ - type: Transform
+ pos: 84.5,154.5
+ parent: 1
+ - uid: 2522
+ components:
+ - type: Transform
+ pos: 84.5,115.5
+ parent: 1
+ - uid: 2523
+ components:
+ - type: Transform
+ pos: 85.5,154.5
+ parent: 1
+ - uid: 2534
+ components:
+ - type: Transform
+ pos: 85.5,124.5
+ parent: 1
+ - uid: 2543
+ components:
+ - type: Transform
+ pos: 85.5,115.5
+ parent: 1
+ - uid: 2548
+ components:
+ - type: Transform
+ pos: 86.5,158.5
+ parent: 1
+ - uid: 2551
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,121.5
+ parent: 1
+ - uid: 2554
+ components:
+ - type: Transform
+ pos: 86.5,154.5
+ parent: 1
+ - uid: 2555
+ components:
+ - type: Transform
+ pos: 86.5,124.5
+ parent: 1
+ - uid: 2556
+ components:
+ - type: Transform
+ pos: 86.5,121.5
+ parent: 1
+ - uid: 2571
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,56.5
+ parent: 1
+ - uid: 2580
+ components:
+ - type: Transform
+ pos: 86.5,120.5
+ parent: 1
+ - uid: 2585
+ components:
+ - type: Transform
+ pos: 86.5,119.5
+ parent: 1
+ - uid: 2586
+ components:
+ - type: Transform
+ pos: 86.5,118.5
+ parent: 1
+ - uid: 2590
+ components:
+ - type: Transform
+ pos: 86.5,117.5
+ parent: 1
+ - uid: 2591
+ components:
+ - type: Transform
+ pos: 86.5,116.5
+ parent: 1
+ - uid: 2592
+ components:
+ - type: Transform
+ pos: 86.5,115.5
+ parent: 1
+ - uid: 2593
+ components:
+ - type: Transform
+ pos: 87.5,158.5
+ parent: 1
+ - uid: 2608
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,51.5
+ parent: 1
+ - uid: 2617
+ components:
+ - type: Transform
+ pos: 87.5,154.5
+ parent: 1
+ - uid: 2623
+ components:
+ - type: Transform
+ pos: 87.5,124.5
+ parent: 1
+ - uid: 2625
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,128.5
+ parent: 1
+ - uid: 2632
+ components:
+ - type: Transform
+ pos: 88.5,154.5
+ parent: 1
+ - uid: 2650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,112.5
+ parent: 1
+ - uid: 2656
+ components:
+ - type: Transform
+ pos: 89.5,158.5
+ parent: 1
+ - uid: 2662
+ components:
+ - type: Transform
+ pos: 89.5,154.5
+ parent: 1
+ - uid: 2667
+ components:
+ - type: Transform
+ pos: 89.5,124.5
+ parent: 1
+ - uid: 2669
+ components:
+ - type: Transform
+ pos: 156.5,147.5
+ parent: 1
+ - uid: 2670
+ components:
+ - type: Transform
+ pos: 90.5,157.5
+ parent: 1
+ - uid: 2711
+ components:
+ - type: Transform
+ pos: 90.5,154.5
+ parent: 1
+ - uid: 2717
+ components:
+ - type: Transform
+ pos: 90.5,153.5
+ parent: 1
+ - uid: 2720
+ components:
+ - type: Transform
+ pos: 77.5,137.5
+ parent: 1
+ - uid: 2741
+ components:
+ - type: Transform
+ pos: 90.5,152.5
+ parent: 1
+ - uid: 2742
+ components:
+ - type: Transform
+ pos: 90.5,151.5
+ parent: 1
+ - uid: 2743
+ components:
+ - type: Transform
+ pos: 90.5,150.5
+ parent: 1
+ - uid: 2744
+ components:
+ - type: Transform
+ pos: 90.5,149.5
+ parent: 1
+ - uid: 2763
+ components:
+ - type: Transform
+ pos: 90.5,147.5
+ parent: 1
+ - uid: 2769
+ components:
+ - type: Transform
+ pos: 90.5,146.5
+ parent: 1
+ - uid: 2784
+ components:
+ - type: Transform
+ pos: 90.5,141.5
+ parent: 1
+ - uid: 2785
+ components:
+ - type: Transform
+ pos: 90.5,137.5
+ parent: 1
+ - uid: 2787
+ components:
+ - type: Transform
+ pos: 90.5,132.5
+ parent: 1
+ - uid: 2788
+ components:
+ - type: Transform
+ pos: 90.5,131.5
+ parent: 1
+ - uid: 2805
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,72.5
+ parent: 1
+ - uid: 2823
+ components:
+ - type: Transform
+ pos: 90.5,130.5
+ parent: 1
+ - uid: 2827
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,75.5
+ parent: 1
+ - uid: 2828
+ components:
+ - type: Transform
+ pos: 90.5,129.5
+ parent: 1
+ - uid: 2831
+ components:
+ - type: Transform
+ pos: 90.5,128.5
+ parent: 1
+ - uid: 2832
+ components:
+ - type: Transform
+ pos: 90.5,127.5
+ parent: 1
+ - uid: 2835
+ components:
+ - type: Transform
+ pos: 90.5,125.5
+ parent: 1
+ - uid: 2838
+ components:
+ - type: Transform
+ pos: 90.5,124.5
+ parent: 1
+ - uid: 2839
+ components:
+ - type: Transform
+ pos: 90.5,121.5
+ parent: 1
+ - uid: 2842
+ components:
+ - type: Transform
+ pos: 90.5,120.5
+ parent: 1
+ - uid: 2849
+ components:
+ - type: Transform
+ pos: 91.5,146.5
+ parent: 1
+ - uid: 2851
+ components:
+ - type: Transform
+ pos: 91.5,132.5
+ parent: 1
+ - uid: 2852
+ components:
+ - type: Transform
+ pos: 91.5,120.5
+ parent: 1
+ - uid: 2854
+ components:
+ - type: Transform
+ pos: 92.5,146.5
+ parent: 1
+ - uid: 2890
+ components:
+ - type: Transform
+ pos: 92.5,141.5
+ parent: 1
+ - uid: 2895
+ components:
+ - type: Transform
+ pos: 47.5,76.5
+ parent: 1
+ - uid: 2896
+ components:
+ - type: Transform
+ pos: 92.5,137.5
+ parent: 1
+ - uid: 2907
+ components:
+ - type: Transform
+ pos: 92.5,132.5
+ parent: 1
+ - uid: 2962
+ components:
+ - type: Transform
+ pos: 92.5,120.5
+ parent: 1
+ - uid: 2963
+ components:
+ - type: Transform
+ pos: 93.5,157.5
+ parent: 1
+ - uid: 2965
+ components:
+ - type: Transform
+ pos: 93.5,120.5
+ parent: 1
+ - uid: 2966
+ components:
+ - type: Transform
+ pos: 94.5,157.5
+ parent: 1
+ - uid: 2968
+ components:
+ - type: Transform
+ pos: 46.5,76.5
+ parent: 1
+ - uid: 2976
+ components:
+ - type: Transform
+ pos: 49.5,76.5
+ parent: 1
+ - uid: 2986
+ components:
+ - type: Transform
+ pos: 50.5,76.5
+ parent: 1
+ - uid: 3004
+ components:
+ - type: Transform
+ pos: 50.5,75.5
+ parent: 1
+ - uid: 3006
+ components:
+ - type: Transform
+ pos: 95.5,162.5
+ parent: 1
+ - uid: 3013
+ components:
+ - type: Transform
+ pos: 95.5,161.5
+ parent: 1
+ - uid: 3014
+ components:
+ - type: Transform
+ pos: 95.5,160.5
+ parent: 1
+ - uid: 3023
+ components:
+ - type: Transform
+ pos: 95.5,158.5
+ parent: 1
+ - uid: 3024
+ components:
+ - type: Transform
+ pos: 95.5,157.5
+ parent: 1
+ - uid: 3025
+ components:
+ - type: Transform
+ pos: 47.5,72.5
+ parent: 1
+ - uid: 3027
+ components:
+ - type: Transform
+ pos: 96.5,153.5
+ parent: 1
+ - uid: 3028
+ components:
+ - type: Transform
+ pos: 96.5,152.5
+ parent: 1
+ - uid: 3029
+ components:
+ - type: Transform
+ pos: 96.5,151.5
+ parent: 1
+ - uid: 3031
+ components:
+ - type: Transform
+ pos: 96.5,149.5
+ parent: 1
+ - uid: 3037
+ components:
+ - type: Transform
+ pos: 96.5,148.5
+ parent: 1
+ - uid: 3044
+ components:
+ - type: Transform
+ pos: 46.5,72.5
+ parent: 1
+ - uid: 3045
+ components:
+ - type: Transform
+ pos: 48.5,72.5
+ parent: 1
+ - uid: 3046
+ components:
+ - type: Transform
+ pos: 96.5,146.5
+ parent: 1
+ - uid: 3048
+ components:
+ - type: Transform
+ pos: 96.5,144.5
+ parent: 1
+ - uid: 3065
+ components:
+ - type: Transform
+ pos: 96.5,143.5
+ parent: 1
+ - uid: 3067
+ components:
+ - type: Transform
+ pos: 96.5,139.5
+ parent: 1
+ - uid: 3068
+ components:
+ - type: Transform
+ pos: 96.5,137.5
+ parent: 1
+ - uid: 3070
+ components:
+ - type: Transform
+ pos: 96.5,135.5
+ parent: 1
+ - uid: 3077
+ components:
+ - type: Transform
+ pos: 96.5,131.5
+ parent: 1
+ - uid: 3078
+ components:
+ - type: Transform
+ pos: 49.5,72.5
+ parent: 1
+ - uid: 3080
+ components:
+ - type: Transform
+ pos: 97.5,153.5
+ parent: 1
+ - uid: 3087
+ components:
+ - type: Transform
+ pos: 97.5,146.5
+ parent: 1
+ - uid: 3091
+ components:
+ - type: Transform
+ pos: 97.5,143.5
+ parent: 1
+ - uid: 3096
+ components:
+ - type: Transform
+ pos: 97.5,131.5
+ parent: 1
+ - uid: 3098
+ components:
+ - type: Transform
+ pos: 97.5,129.5
+ parent: 1
+ - uid: 3149
+ components:
+ - type: Transform
+ pos: 138.5,124.5
+ parent: 1
+ - uid: 3155
+ components:
+ - type: Transform
+ pos: 97.5,163.5
+ parent: 1
+ - uid: 3159
+ components:
+ - type: Transform
+ pos: 98.5,146.5
+ parent: 1
+ - uid: 3166
+ components:
+ - type: Transform
+ pos: 97.5,164.5
+ parent: 1
+ - uid: 3167
+ components:
+ - type: Transform
+ pos: 98.5,164.5
+ parent: 1
+ - uid: 3168
+ components:
+ - type: Transform
+ pos: 99.5,164.5
+ parent: 1
+ - uid: 3183
+ components:
+ - type: Transform
+ pos: 100.5,164.5
+ parent: 1
+ - uid: 3184
+ components:
+ - type: Transform
+ pos: 85.5,57.5
+ parent: 1
+ - uid: 3194
+ components:
+ - type: Transform
+ pos: 98.5,143.5
+ parent: 1
+ - uid: 3195
+ components:
+ - type: Transform
+ pos: 87.5,58.5
+ parent: 1
+ - uid: 3204
+ components:
+ - type: Transform
+ pos: 78.5,141.5
+ parent: 1
+ - uid: 3213
+ components:
+ - type: Transform
+ pos: 96.5,163.5
+ parent: 1
+ - uid: 3215
+ components:
+ - type: Transform
+ pos: 98.5,131.5
+ parent: 1
+ - uid: 3292
+ components:
+ - type: Transform
+ pos: 98.5,120.5
+ parent: 1
+ - uid: 3296
+ components:
+ - type: Transform
+ pos: 99.5,146.5
+ parent: 1
+ - uid: 3297
+ components:
+ - type: Transform
+ pos: 99.5,145.5
+ parent: 1
+ - uid: 3301
+ components:
+ - type: Transform
+ pos: 99.5,144.5
+ parent: 1
+ - uid: 3302
+ components:
+ - type: Transform
+ pos: 99.5,143.5
+ parent: 1
+ - uid: 3303
+ components:
+ - type: Transform
+ pos: 99.5,139.5
+ parent: 1
+ - uid: 3304
+ components:
+ - type: Transform
+ pos: 99.5,135.5
+ parent: 1
+ - uid: 3305
+ components:
+ - type: Transform
+ pos: 99.5,131.5
+ parent: 1
+ - uid: 3307
+ components:
+ - type: Transform
+ pos: 99.5,129.5
+ parent: 1
+ - uid: 3326
+ components:
+ - type: Transform
+ pos: 99.5,128.5
+ parent: 1
+ - uid: 3334
+ components:
+ - type: Transform
+ pos: 71.5,82.5
+ parent: 1
+ - uid: 3335
+ components:
+ - type: Transform
+ pos: 71.5,83.5
+ parent: 1
+ - uid: 3336
+ components:
+ - type: Transform
+ pos: 71.5,84.5
+ parent: 1
+ - uid: 3337
+ components:
+ - type: Transform
+ pos: 71.5,81.5
+ parent: 1
+ - uid: 3351
+ components:
+ - type: Transform
+ pos: 89.5,45.5
+ parent: 1
+ - uid: 3383
+ components:
+ - type: Transform
+ pos: 99.5,120.5
+ parent: 1
+ - uid: 3389
+ components:
+ - type: Transform
+ pos: 76.5,84.5
+ parent: 1
+ - uid: 3392
+ components:
+ - type: Transform
+ pos: 73.5,81.5
+ parent: 1
+ - uid: 3393
+ components:
+ - type: Transform
+ pos: 74.5,84.5
+ parent: 1
+ - uid: 3427
+ components:
+ - type: Transform
+ pos: 100.5,146.5
+ parent: 1
+ - uid: 3431
+ components:
+ - type: Transform
+ pos: 75.5,84.5
+ parent: 1
+ - uid: 3432
+ components:
+ - type: Transform
+ pos: 72.5,84.5
+ parent: 1
+ - uid: 3435
+ components:
+ - type: Transform
+ pos: 73.5,84.5
+ parent: 1
+ - uid: 3440
+ components:
+ - type: Transform
+ pos: 85.5,111.5
+ parent: 1
+ - uid: 3441
+ components:
+ - type: Transform
+ pos: 84.5,111.5
+ parent: 1
+ - uid: 3442
+ components:
+ - type: Transform
+ pos: 84.5,103.5
+ parent: 1
+ - uid: 3484
+ components:
+ - type: Transform
+ pos: 101.5,146.5
+ parent: 1
+ - uid: 3487
+ components:
+ - type: Transform
+ pos: 101.5,122.5
+ parent: 1
+ - uid: 3490
+ components:
+ - type: Transform
+ pos: 102.5,157.5
+ parent: 1
+ - uid: 3491
+ components:
+ - type: Transform
+ pos: 102.5,153.5
+ parent: 1
+ - uid: 3512
+ components:
+ - type: Transform
+ pos: 102.5,128.5
+ parent: 1
+ - uid: 3513
+ components:
+ - type: Transform
+ pos: 102.5,127.5
+ parent: 1
+ - uid: 3514
+ components:
+ - type: Transform
+ pos: 102.5,126.5
+ parent: 1
+ - uid: 3515
+ components:
+ - type: Transform
+ pos: 102.5,125.5
+ parent: 1
+ - uid: 3516
+ components:
+ - type: Transform
+ pos: 102.5,123.5
+ parent: 1
+ - uid: 3517
+ components:
+ - type: Transform
+ pos: 102.5,122.5
+ parent: 1
+ - uid: 3532
+ components:
+ - type: Transform
+ pos: 84.5,104.5
+ parent: 1
+ - uid: 3533
+ components:
+ - type: Transform
+ pos: 84.5,106.5
+ parent: 1
+ - uid: 3534
+ components:
+ - type: Transform
+ pos: 84.5,105.5
+ parent: 1
+ - uid: 3535
+ components:
+ - type: Transform
+ pos: 84.5,101.5
+ parent: 1
+ - uid: 3537
+ components:
+ - type: Transform
+ pos: 84.5,99.5
+ parent: 1
+ - uid: 3538
+ components:
+ - type: Transform
+ pos: 84.5,98.5
+ parent: 1
+ - uid: 3539
+ components:
+ - type: Transform
+ pos: 90.5,111.5
+ parent: 1
+ - uid: 3540
+ components:
+ - type: Transform
+ pos: 85.5,98.5
+ parent: 1
+ - uid: 3543
+ components:
+ - type: Transform
+ pos: 85.5,95.5
+ parent: 1
+ - uid: 3544
+ components:
+ - type: Transform
+ pos: 85.5,93.5
+ parent: 1
+ - uid: 3545
+ components:
+ - type: Transform
+ pos: 85.5,89.5
+ parent: 1
+ - uid: 3546
+ components:
+ - type: Transform
+ pos: 86.5,95.5
+ parent: 1
+ - uid: 3547
+ components:
+ - type: Transform
+ pos: 86.5,89.5
+ parent: 1
+ - uid: 3548
+ components:
+ - type: Transform
+ pos: 87.5,98.5
+ parent: 1
+ - uid: 3549
+ components:
+ - type: Transform
+ pos: 87.5,95.5
+ parent: 1
+ - uid: 3551
+ components:
+ - type: Transform
+ pos: 87.5,89.5
+ parent: 1
+ - uid: 3576
+ components:
+ - type: Transform
+ pos: 103.5,162.5
+ parent: 1
+ - uid: 3577
+ components:
+ - type: Transform
+ pos: 103.5,161.5
+ parent: 1
+ - uid: 3579
+ components:
+ - type: Transform
+ pos: 103.5,160.5
+ parent: 1
+ - uid: 3586
+ components:
+ - type: Transform
+ pos: 88.5,95.5
+ parent: 1
+ - uid: 3587
+ components:
+ - type: Transform
+ pos: 88.5,89.5
+ parent: 1
+ - uid: 3621
+ components:
+ - type: Transform
+ pos: 103.5,159.5
+ parent: 1
+ - uid: 3632
+ components:
+ - type: Transform
+ pos: 103.5,158.5
+ parent: 1
+ - uid: 3633
+ components:
+ - type: Transform
+ pos: 103.5,157.5
+ parent: 1
+ - uid: 3640
+ components:
+ - type: Transform
+ pos: 103.5,153.5
+ parent: 1
+ - uid: 3647
+ components:
+ - type: Transform
+ pos: 103.5,152.5
+ parent: 1
+ - uid: 3654
+ components:
+ - type: Transform
+ pos: 103.5,151.5
+ parent: 1
+ - uid: 3655
+ components:
+ - type: Transform
+ pos: 103.5,150.5
+ parent: 1
+ - uid: 3664
+ components:
+ - type: Transform
+ pos: 103.5,149.5
+ parent: 1
+ - uid: 3685
+ components:
+ - type: Transform
+ pos: 89.5,99.5
+ parent: 1
+ - uid: 3686
+ components:
+ - type: Transform
+ pos: 89.5,98.5
+ parent: 1
+ - uid: 3716
+ components:
+ - type: Transform
+ pos: 77.5,15.5
+ parent: 1
+ - uid: 3718
+ components:
+ - type: Transform
+ pos: 82.5,15.5
+ parent: 1
+ - uid: 3735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,163.5
+ parent: 1
+ - uid: 3736
+ components:
+ - type: Transform
+ pos: 103.5,148.5
+ parent: 1
+ - uid: 3740
+ components:
+ - type: Transform
+ pos: 103.5,147.5
+ parent: 1
+ - uid: 3744
+ components:
+ - type: Transform
+ pos: 89.5,95.5
+ parent: 1
+ - uid: 3745
+ components:
+ - type: Transform
+ pos: 89.5,89.5
+ parent: 1
+ - uid: 3748
+ components:
+ - type: Transform
+ pos: 90.5,110.5
+ parent: 1
+ - uid: 3749
+ components:
+ - type: Transform
+ pos: 89.5,102.5
+ parent: 1
+ - uid: 3765
+ components:
+ - type: Transform
+ pos: 110.5,17.5
+ parent: 1
+ - uid: 3772
+ components:
+ - type: Transform
+ pos: 103.5,146.5
+ parent: 1
+ - uid: 3781
+ components:
+ - type: Transform
+ pos: 90.5,103.5
+ parent: 1
+ - uid: 3782
+ components:
+ - type: Transform
+ pos: 90.5,102.5
+ parent: 1
+ - uid: 3783
+ components:
+ - type: Transform
+ pos: 90.5,105.5
+ parent: 1
+ - uid: 3784
+ components:
+ - type: Transform
+ pos: 90.5,104.5
+ parent: 1
+ - uid: 3785
+ components:
+ - type: Transform
+ pos: 90.5,107.5
+ parent: 1
+ - uid: 3810
+ components:
+ - type: Transform
+ pos: 104.5,163.5
+ parent: 1
+ - uid: 3811
+ components:
+ - type: Transform
+ pos: 104.5,157.5
+ parent: 1
+ - uid: 3812
+ components:
+ - type: Transform
+ pos: 104.5,153.5
+ parent: 1
+ - uid: 3813
+ components:
+ - type: Transform
+ pos: 105.5,163.5
+ parent: 1
+ - uid: 3814
+ components:
+ - type: Transform
+ pos: 106.5,163.5
+ parent: 1
+ - uid: 3815
+ components:
+ - type: Transform
+ pos: 106.5,157.5
+ parent: 1
+ - uid: 3816
+ components:
+ - type: Transform
+ pos: 106.5,153.5
+ parent: 1
+ - uid: 3817
+ components:
+ - type: Transform
+ pos: 106.5,128.5
+ parent: 1
+ - uid: 3818
+ components:
+ - type: Transform
+ pos: 106.5,126.5
+ parent: 1
+ - uid: 3820
+ components:
+ - type: Transform
+ pos: 107.5,163.5
+ parent: 1
+ - uid: 3821
+ components:
+ - type: Transform
+ pos: 107.5,157.5
+ parent: 1
+ - uid: 3866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 119.5,120.5
+ parent: 1
+ - uid: 3871
+ components:
+ - type: Transform
+ pos: 108.5,163.5
+ parent: 1
+ - uid: 3875
+ components:
+ - type: Transform
+ pos: 109.5,163.5
+ parent: 1
+ - uid: 3877
+ components:
+ - type: Transform
+ pos: 110.5,163.5
+ parent: 1
+ - uid: 3879
+ components:
+ - type: Transform
+ pos: 110.5,153.5
+ parent: 1
+ - uid: 3880
+ components:
+ - type: Transform
+ pos: 110.5,128.5
+ parent: 1
+ - uid: 3881
+ components:
+ - type: Transform
+ pos: 110.5,126.5
+ parent: 1
+ - uid: 3883
+ components:
+ - type: Transform
+ pos: 111.5,163.5
+ parent: 1
+ - uid: 3893
+ components:
+ - type: Transform
+ pos: 112.5,153.5
+ parent: 1
+ - uid: 3895
+ components:
+ - type: Transform
+ pos: 113.5,163.5
+ parent: 1
+ - uid: 3902
+ components:
+ - type: Transform
+ pos: 113.5,157.5
+ parent: 1
+ - uid: 3926
+ components:
+ - type: Transform
+ pos: 84.5,144.5
+ parent: 1
+ - uid: 3933
+ components:
+ - type: Transform
+ pos: 123.5,24.5
+ parent: 1
+ - uid: 3949
+ components:
+ - type: Transform
+ pos: 113.5,153.5
+ parent: 1
+ - uid: 3952
+ components:
+ - type: Transform
+ pos: 113.5,152.5
+ parent: 1
+ - uid: 3953
+ components:
+ - type: Transform
+ pos: 113.5,151.5
+ parent: 1
+ - uid: 3954
+ components:
+ - type: Transform
+ pos: 113.5,150.5
+ parent: 1
+ - uid: 3955
+ components:
+ - type: Transform
+ pos: 113.5,149.5
+ parent: 1
+ - uid: 3956
+ components:
+ - type: Transform
+ pos: 113.5,148.5
+ parent: 1
+ - uid: 3957
+ components:
+ - type: Transform
+ pos: 113.5,147.5
+ parent: 1
+ - uid: 3958
+ components:
+ - type: Transform
+ pos: 113.5,146.5
+ parent: 1
+ - uid: 3959
+ components:
+ - type: Transform
+ pos: 114.5,163.5
+ parent: 1
+ - uid: 3960
+ components:
+ - type: Transform
+ pos: 114.5,162.5
+ parent: 1
+ - uid: 3961
+ components:
+ - type: Transform
+ pos: 114.5,161.5
+ parent: 1
+ - uid: 3962
+ components:
+ - type: Transform
+ pos: 114.5,160.5
+ parent: 1
+ - uid: 3963
+ components:
+ - type: Transform
+ pos: 114.5,159.5
+ parent: 1
+ - uid: 3986
+ components:
+ - type: Transform
+ pos: 133.5,124.5
+ parent: 1
+ - uid: 4009
+ components:
+ - type: Transform
+ pos: 114.5,158.5
+ parent: 1
+ - uid: 4012
+ components:
+ - type: Transform
+ pos: 114.5,157.5
+ parent: 1
+ - uid: 4014
+ components:
+ - type: Transform
+ pos: 114.5,128.5
+ parent: 1
+ - uid: 4015
+ components:
+ - type: Transform
+ pos: 114.5,127.5
+ parent: 1
+ - uid: 4016
+ components:
+ - type: Transform
+ pos: 114.5,126.5
+ parent: 1
+ - uid: 4017
+ components:
+ - type: Transform
+ pos: 114.5,125.5
+ parent: 1
+ - uid: 4018
+ components:
+ - type: Transform
+ pos: 114.5,123.5
+ parent: 1
+ - uid: 4019
+ components:
+ - type: Transform
+ pos: 114.5,122.5
+ parent: 1
+ - uid: 4054
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,163.5
+ parent: 1
+ - uid: 4059
+ components:
+ - type: Transform
+ pos: 115.5,163.5
+ parent: 1
+ - uid: 4063
+ components:
+ - type: Transform
+ pos: 115.5,157.5
+ parent: 1
+ - uid: 4064
+ components:
+ - type: Transform
+ pos: 115.5,128.5
+ parent: 1
+ - uid: 4066
+ components:
+ - type: Transform
+ pos: 116.5,163.5
+ parent: 1
+ - uid: 4067
+ components:
+ - type: Transform
+ pos: 116.5,157.5
+ parent: 1
+ - uid: 4074
+ components:
+ - type: Transform
+ pos: 116.5,153.5
+ parent: 1
+ - uid: 4081
+ components:
+ - type: Transform
+ pos: 116.5,148.5
+ parent: 1
+ - uid: 4088
+ components:
+ - type: Transform
+ pos: 116.5,147.5
+ parent: 1
+ - uid: 4089
+ components:
+ - type: Transform
+ pos: 116.5,146.5
+ parent: 1
+ - uid: 4090
+ components:
+ - type: Transform
+ pos: 116.5,128.5
+ parent: 1
+ - uid: 4092
+ components:
+ - type: Transform
+ pos: 117.5,163.5
+ parent: 1
+ - uid: 4093
+ components:
+ - type: Transform
+ pos: 117.5,148.5
+ parent: 1
+ - uid: 4094
+ components:
+ - type: Transform
+ pos: 117.5,146.5
+ parent: 1
+ - uid: 4095
+ components:
+ - type: Transform
+ pos: 117.5,145.5
+ parent: 1
+ - uid: 4140
+ components:
+ - type: Transform
+ pos: 117.5,144.5
+ parent: 1
+ - uid: 4143
+ components:
+ - type: Transform
+ pos: 117.5,143.5
+ parent: 1
+ - uid: 4145
+ components:
+ - type: Transform
+ pos: 117.5,139.5
+ parent: 1
+ - uid: 4146
+ components:
+ - type: Transform
+ pos: 117.5,135.5
+ parent: 1
+ - uid: 4147
+ components:
+ - type: Transform
+ pos: 117.5,131.5
+ parent: 1
+ - uid: 4148
+ components:
+ - type: Transform
+ pos: 117.5,130.5
+ parent: 1
+ - uid: 4149
+ components:
+ - type: Transform
+ pos: 117.5,129.5
+ parent: 1
+ - uid: 4163
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,51.5
+ parent: 1
+ - uid: 4176
+ components:
+ - type: Transform
+ pos: 125.5,24.5
+ parent: 1
+ - uid: 4182
+ components:
+ - type: Transform
+ pos: 117.5,128.5
+ parent: 1
+ - uid: 4188
+ components:
+ - type: Transform
+ pos: 117.5,122.5
+ parent: 1
+ - uid: 4189
+ components:
+ - type: Transform
+ pos: 117.5,121.5
+ parent: 1
+ - uid: 4190
+ components:
+ - type: Transform
+ pos: 117.5,120.5
+ parent: 1
+ - uid: 4191
+ components:
+ - type: Transform
+ pos: 118.5,163.5
+ parent: 1
+ - uid: 4192
+ components:
+ - type: Transform
+ pos: 118.5,157.5
+ parent: 1
+ - uid: 4219
+ components:
+ - type: Transform
+ pos: 118.5,148.5
+ parent: 1
+ - uid: 4225
+ components:
+ - type: Transform
+ pos: 118.5,143.5
+ parent: 1
+ - uid: 4226
+ components:
+ - type: Transform
+ pos: 118.5,131.5
+ parent: 1
+ - uid: 4227
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 87.5,120.5
+ parent: 1
+ - uid: 4228
+ components:
+ - type: Transform
+ pos: 118.5,120.5
+ parent: 1
+ - uid: 4229
+ components:
+ - type: Transform
+ pos: 119.5,163.5
+ parent: 1
+ - uid: 4230
+ components:
+ - type: Transform
+ pos: 119.5,157.5
+ parent: 1
+ - uid: 4231
+ components:
+ - type: Transform
+ pos: 119.5,153.5
+ parent: 1
+ - uid: 4232
+ components:
+ - type: Transform
+ pos: 119.5,148.5
+ parent: 1
+ - uid: 4275
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,120.5
+ parent: 1
+ - uid: 4276
+ components:
+ - type: Transform
+ pos: 119.5,143.5
+ parent: 1
+ - uid: 4277
+ components:
+ - type: Transform
+ pos: 119.5,131.5
+ parent: 1
+ - uid: 4280
+ components:
+ - type: Transform
+ pos: 96.5,147.5
+ parent: 1
+ - uid: 4283
+ components:
+ - type: Transform
+ pos: 120.5,163.5
+ parent: 1
+ - uid: 4284
+ components:
+ - type: Transform
+ pos: 120.5,162.5
+ parent: 1
+ - uid: 4285
+ components:
+ - type: Transform
+ pos: 120.5,161.5
+ parent: 1
+ - uid: 4286
+ components:
+ - type: Transform
+ pos: 120.5,159.5
+ parent: 1
+ - uid: 4287
+ components:
+ - type: Transform
+ pos: 120.5,158.5
+ parent: 1
+ - uid: 4288
+ components:
+ - type: Transform
+ pos: 120.5,157.5
+ parent: 1
+ - uid: 4289
+ components:
+ - type: Transform
+ pos: 120.5,153.5
+ parent: 1
+ - uid: 4290
+ components:
+ - type: Transform
+ pos: 120.5,152.5
+ parent: 1
+ - uid: 4291
+ components:
+ - type: Transform
+ pos: 120.5,151.5
+ parent: 1
+ - uid: 4293
+ components:
+ - type: Transform
+ pos: 120.5,149.5
+ parent: 1
+ - uid: 4313
+ components:
+ - type: Transform
+ pos: 41.5,43.5
+ parent: 1
+ - uid: 4344
+ components:
+ - type: Transform
+ pos: 120.5,148.5
+ parent: 1
+ - uid: 4345
+ components:
+ - type: Transform
+ pos: 120.5,143.5
+ parent: 1
+ - uid: 4346
+ components:
+ - type: Transform
+ pos: 120.5,139.5
+ parent: 1
+ - uid: 4377
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,35.5
+ parent: 1
+ - uid: 4378
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,41.5
+ parent: 1
+ - uid: 4388
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 132.5,155.5
+ parent: 1
+ - uid: 4391
+ components:
+ - type: Transform
+ pos: 120.5,137.5
+ parent: 1
+ - uid: 4433
+ components:
+ - type: Transform
+ pos: 120.5,135.5
+ parent: 1
+ - uid: 4434
+ components:
+ - type: Transform
+ pos: 120.5,131.5
+ parent: 1
+ - uid: 4435
+ components:
+ - type: Transform
+ pos: 121.5,157.5
+ parent: 1
+ - uid: 4438
+ components:
+ - type: Transform
+ pos: 122.5,157.5
+ parent: 1
+ - uid: 4439
+ components:
+ - type: Transform
+ pos: 123.5,157.5
+ parent: 1
+ - uid: 4440
+ components:
+ - type: Transform
+ pos: 123.5,120.5
+ parent: 1
+ - uid: 4441
+ components:
+ - type: Transform
+ pos: 124.5,157.5
+ parent: 1
+ - uid: 4442
+ components:
+ - type: Transform
+ pos: 124.5,156.5
+ parent: 1
+ - uid: 4443
+ components:
+ - type: Transform
+ pos: 124.5,155.5
+ parent: 1
+ - uid: 4444
+ components:
+ - type: Transform
+ pos: 124.5,154.5
+ parent: 1
+ - uid: 4445
+ components:
+ - type: Transform
+ pos: 124.5,153.5
+ parent: 1
+ - uid: 4495
+ components:
+ - type: Transform
+ pos: 124.5,152.5
+ parent: 1
+ - uid: 4496
+ components:
+ - type: Transform
+ pos: 124.5,151.5
+ parent: 1
+ - uid: 4505
+ components:
+ - type: Transform
+ pos: 124.5,150.5
+ parent: 1
+ - uid: 4506
+ components:
+ - type: Transform
+ pos: 124.5,149.5
+ parent: 1
+ - uid: 4507
+ components:
+ - type: Transform
+ pos: 124.5,148.5
+ parent: 1
+ - uid: 4508
+ components:
+ - type: Transform
+ pos: 124.5,147.5
+ parent: 1
+ - uid: 4547
+ components:
+ - type: Transform
+ pos: 124.5,146.5
+ parent: 1
+ - uid: 4559
+ components:
+ - type: Transform
+ pos: 124.5,142.5
+ parent: 1
+ - uid: 4585
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,36.5
+ parent: 1
+ - uid: 4604
+ components:
+ - type: Transform
+ pos: 124.5,130.5
+ parent: 1
+ - uid: 4605
+ components:
+ - type: Transform
+ pos: 124.5,129.5
+ parent: 1
+ - uid: 4620
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,124.5
+ parent: 1
+ - uid: 4652
+ components:
+ - type: Transform
+ pos: 124.5,127.5
+ parent: 1
+ - uid: 4653
+ components:
+ - type: Transform
+ pos: 124.5,126.5
+ parent: 1
+ - uid: 4654
+ components:
+ - type: Transform
+ pos: 124.5,125.5
+ parent: 1
+ - uid: 4657
+ components:
+ - type: Transform
+ pos: 124.5,124.5
+ parent: 1
+ - uid: 4658
+ components:
+ - type: Transform
+ pos: 124.5,123.5
+ parent: 1
+ - uid: 4660
+ components:
+ - type: Transform
+ pos: 124.5,121.5
+ parent: 1
+ - uid: 4661
+ components:
+ - type: Transform
+ pos: 124.5,120.5
+ parent: 1
+ - uid: 4662
+ components:
+ - type: Transform
+ pos: 125.5,147.5
+ parent: 1
+ - uid: 4663
+ components:
+ - type: Transform
+ pos: 125.5,130.5
+ parent: 1
+ - uid: 4664
+ components:
+ - type: Transform
+ pos: 125.5,120.5
+ parent: 1
+ - uid: 4704
+ components:
+ - type: Transform
+ pos: 126.5,147.5
+ parent: 1
+ - uid: 4732
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 97.5,120.5
+ parent: 1
+ - uid: 4737
+ components:
+ - type: Transform
+ pos: 127.5,147.5
+ parent: 1
+ - uid: 4738
+ components:
+ - type: Transform
+ pos: 127.5,141.5
+ parent: 1
+ - uid: 4804
+ components:
+ - type: Transform
+ pos: 127.5,130.5
+ parent: 1
+ - uid: 4806
+ components:
+ - type: Transform
+ pos: 128.5,147.5
+ parent: 1
+ - uid: 4807
+ components:
+ - type: Transform
+ pos: 129.5,147.5
+ parent: 1
+ - uid: 4808
+ components:
+ - type: Transform
+ pos: 90.5,106.5
+ parent: 1
+ - uid: 4809
+ components:
+ - type: Transform
+ pos: 90.5,108.5
+ parent: 1
+ - uid: 4810
+ components:
+ - type: Transform
+ pos: 129.5,143.5
+ parent: 1
+ - uid: 4811
+ components:
+ - type: Transform
+ pos: 129.5,142.5
+ parent: 1
+ - uid: 4812
+ components:
+ - type: Transform
+ pos: 129.5,141.5
+ parent: 1
+ - uid: 4813
+ components:
+ - type: Transform
+ pos: 129.5,130.5
+ parent: 1
+ - uid: 4841
+ components:
+ - type: Transform
+ pos: 129.5,120.5
+ parent: 1
+ - uid: 4842
+ components:
+ - type: Transform
+ pos: 130.5,147.5
+ parent: 1
+ - uid: 4843
+ components:
+ - type: Transform
+ pos: 130.5,143.5
+ parent: 1
+ - uid: 4844
+ components:
+ - type: Transform
+ pos: 130.5,130.5
+ parent: 1
+ - uid: 4845
+ components:
+ - type: Transform
+ pos: 130.5,129.5
+ parent: 1
+ - uid: 4847
+ components:
+ - type: Transform
+ pos: 130.5,127.5
+ parent: 1
+ - uid: 4852
+ components:
+ - type: Transform
+ pos: 130.5,125.5
+ parent: 1
+ - uid: 4853
+ components:
+ - type: Transform
+ pos: 130.5,124.5
+ parent: 1
+ - uid: 4854
+ components:
+ - type: Transform
+ pos: 130.5,123.5
+ parent: 1
+ - uid: 4855
+ components:
+ - type: Transform
+ pos: 130.5,122.5
+ parent: 1
+ - uid: 4857
+ components:
+ - type: Transform
+ pos: 130.5,121.5
+ parent: 1
+ - uid: 4858
+ components:
+ - type: Transform
+ pos: 130.5,120.5
+ parent: 1
+ - uid: 4864
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 136.5,73.5
+ parent: 1
+ - uid: 4889
+ components:
+ - type: Transform
+ pos: 147.5,42.5
+ parent: 1
+ - uid: 4907
+ components:
+ - type: Transform
+ pos: 130.5,95.5
+ parent: 1
+ - uid: 4908
+ components:
+ - type: Transform
+ pos: 130.5,94.5
+ parent: 1
+ - uid: 4914
+ components:
+ - type: Transform
+ pos: 130.5,92.5
+ parent: 1
+ - uid: 4961
+ components:
+ - type: Transform
+ pos: 130.5,90.5
+ parent: 1
+ - uid: 4964
+ components:
+ - type: Transform
+ pos: 130.5,88.5
+ parent: 1
+ - uid: 4965
+ components:
+ - type: Transform
+ pos: 130.5,87.5
+ parent: 1
+ - uid: 4966
+ components:
+ - type: Transform
+ pos: 131.5,147.5
+ parent: 1
+ - uid: 4967
+ components:
+ - type: Transform
+ pos: 131.5,143.5
+ parent: 1
+ - uid: 4968
+ components:
+ - type: Transform
+ pos: 131.5,130.5
+ parent: 1
+ - uid: 4998
+ components:
+ - type: Transform
+ pos: 116.5,172.5
+ parent: 1
+ - uid: 5001
+ components:
+ - type: Transform
+ pos: 131.5,120.5
+ parent: 1
+ - uid: 5005
+ components:
+ - type: Transform
+ pos: 132.5,147.5
+ parent: 1
+ - uid: 5006
+ components:
+ - type: Transform
+ pos: 132.5,143.5
+ parent: 1
+ - uid: 5008
+ components:
+ - type: Transform
+ pos: 132.5,120.5
+ parent: 1
+ - uid: 5029
+ components:
+ - type: Transform
+ pos: 133.5,147.5
+ parent: 1
+ - uid: 5030
+ components:
+ - type: Transform
+ pos: 133.5,146.5
+ parent: 1
+ - uid: 5031
+ components:
+ - type: Transform
+ pos: 133.5,145.5
+ parent: 1
+ - uid: 5032
+ components:
+ - type: Transform
+ pos: 133.5,144.5
+ parent: 1
+ - uid: 5035
+ components:
+ - type: Transform
+ pos: 133.5,141.5
+ parent: 1
+ - uid: 5085
+ components:
+ - type: Transform
+ pos: 133.5,139.5
+ parent: 1
+ - uid: 5086
+ components:
+ - type: Transform
+ pos: 133.5,138.5
+ parent: 1
+ - uid: 5088
+ components:
+ - type: Transform
+ pos: 133.5,137.5
+ parent: 1
+ - uid: 5089
+ components:
+ - type: Transform
+ pos: 133.5,130.5
+ parent: 1
+ - uid: 5091
+ components:
+ - type: Transform
+ pos: 132.5,95.5
+ parent: 1
+ - uid: 5117
+ components:
+ - type: Transform
+ pos: 134.5,130.5
+ parent: 1
+ - uid: 5118
+ components:
+ - type: Transform
+ pos: 134.5,120.5
+ parent: 1
+ - uid: 5124
+ components:
+ - type: Transform
+ pos: 135.5,120.5
+ parent: 1
+ - uid: 5126
+ components:
+ - type: Transform
+ pos: 136.5,137.5
+ parent: 1
+ - uid: 5127
+ components:
+ - type: Transform
+ pos: 136.5,130.5
+ parent: 1
+ - uid: 5128
+ components:
+ - type: Transform
+ pos: 136.5,124.5
+ parent: 1
+ - uid: 5129
+ components:
+ - type: Transform
+ pos: 136.5,123.5
+ parent: 1
+ - uid: 5130
+ components:
+ - type: Transform
+ pos: 136.5,122.5
+ parent: 1
+ - uid: 5165
+ components:
+ - type: Transform
+ pos: 136.5,120.5
+ parent: 1
+ - uid: 5167
+ components:
+ - type: Transform
+ pos: 136.5,95.5
+ parent: 1
+ - uid: 5173
+ components:
+ - type: Transform
+ pos: 137.5,136.5
+ parent: 1
+ - uid: 5174
+ components:
+ - type: Transform
+ pos: 137.5,135.5
+ parent: 1
+ - uid: 5175
+ components:
+ - type: Transform
+ pos: 137.5,134.5
+ parent: 1
+ - uid: 5176
+ components:
+ - type: Transform
+ pos: 137.5,133.5
+ parent: 1
+ - uid: 5177
+ components:
+ - type: Transform
+ pos: 137.5,132.5
+ parent: 1
+ - uid: 5178
+ components:
+ - type: Transform
+ pos: 137.5,131.5
+ parent: 1
+ - uid: 5185
+ components:
+ - type: Transform
+ pos: 137.5,130.5
+ parent: 1
+ - uid: 5187
+ components:
+ - type: Transform
+ pos: 137.5,120.5
+ parent: 1
+ - uid: 5189
+ components:
+ - type: Transform
+ pos: 137.5,95.5
+ parent: 1
+ - uid: 5206
+ components:
+ - type: Transform
+ pos: 86.5,58.5
+ parent: 1
+ - uid: 5245
+ components:
+ - type: Transform
+ pos: 134.5,95.5
+ parent: 1
+ - uid: 5253
+ components:
+ - type: Transform
+ pos: 135.5,124.5
+ parent: 1
+ - uid: 5295
+ components:
+ - type: Transform
+ pos: 84.5,128.5
+ parent: 1
+ - uid: 5340
+ components:
+ - type: Transform
+ pos: 156.5,93.5
+ parent: 1
+ - uid: 5367
+ components:
+ - type: Transform
+ pos: 166.5,143.5
+ parent: 1
+ - uid: 5369
+ components:
+ - type: Transform
+ pos: 165.5,141.5
+ parent: 1
+ - uid: 5399
+ components:
+ - type: Transform
+ pos: 137.5,87.5
+ parent: 1
+ - uid: 5401
+ components:
+ - type: Transform
+ pos: 138.5,130.5
+ parent: 1
+ - uid: 5402
+ components:
+ - type: Transform
+ pos: 138.5,95.5
+ parent: 1
+ - uid: 5408
+ components:
+ - type: Transform
+ pos: 139.5,120.5
+ parent: 1
+ - uid: 5409
+ components:
+ - type: Transform
+ pos: 139.5,95.5
+ parent: 1
+ - uid: 5467
+ components:
+ - type: Transform
+ pos: 37.5,103.5
+ parent: 1
+ - uid: 5491
+ components:
+ - type: Transform
+ pos: 163.5,124.5
+ parent: 1
+ - uid: 5540
+ components:
+ - type: Transform
+ pos: 17.5,120.5
+ parent: 1
+ - uid: 5548
+ components:
+ - type: Transform
+ pos: 17.5,118.5
+ parent: 1
+ - uid: 5556
+ components:
+ - type: Transform
+ pos: 17.5,116.5
+ parent: 1
+ - uid: 5558
+ components:
+ - type: Transform
+ pos: 17.5,114.5
+ parent: 1
+ - uid: 5620
+ components:
+ - type: Transform
+ pos: 17.5,105.5
+ parent: 1
+ - uid: 5621
+ components:
+ - type: Transform
+ pos: 17.5,104.5
+ parent: 1
+ - uid: 5623
+ components:
+ - type: Transform
+ pos: 17.5,97.5
+ parent: 1
+ - uid: 5633
+ components:
+ - type: Transform
+ pos: 88.5,98.5
+ parent: 1
+ - uid: 5638
+ components:
+ - type: Transform
+ pos: 17.5,94.5
+ parent: 1
+ - uid: 5644
+ components:
+ - type: Transform
+ pos: 17.5,90.5
+ parent: 1
+ - uid: 5645
+ components:
+ - type: Transform
+ pos: 17.5,89.5
+ parent: 1
+ - uid: 5662
+ components:
+ - type: Transform
+ pos: 17.5,85.5
+ parent: 1
+ - uid: 5663
+ components:
+ - type: Transform
+ pos: 17.5,81.5
+ parent: 1
+ - uid: 5664
+ components:
+ - type: Transform
+ pos: 17.5,79.5
+ parent: 1
+ - uid: 5665
+ components:
+ - type: Transform
+ pos: 17.5,77.5
+ parent: 1
+ - uid: 5680
+ components:
+ - type: Transform
+ pos: 18.5,89.5
+ parent: 1
+ - uid: 5703
+ components:
+ - type: Transform
+ pos: 18.5,85.5
+ parent: 1
+ - uid: 5738
+ components:
+ - type: Transform
+ pos: 70.5,125.5
+ parent: 1
+ - uid: 5740
+ components:
+ - type: Transform
+ pos: 73.5,115.5
+ parent: 1
+ - uid: 5747
+ components:
+ - type: Transform
+ pos: 72.5,115.5
+ parent: 1
+ - uid: 5758
+ components:
+ - type: Transform
+ pos: 19.5,120.5
+ parent: 1
+ - uid: 5761
+ components:
+ - type: Transform
+ pos: 19.5,81.5
+ parent: 1
+ - uid: 5762
+ components:
+ - type: Transform
+ pos: 19.5,77.5
+ parent: 1
+ - uid: 5778
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 52.5,111.5
+ parent: 1
+ - uid: 5779
+ components:
+ - type: Transform
+ pos: 19.5,67.5
+ parent: 1
+ - uid: 5783
+ components:
+ - type: Transform
+ pos: 20.5,124.5
+ parent: 1
+ - uid: 5795
+ components:
+ - type: Transform
+ pos: 20.5,122.5
+ parent: 1
+ - uid: 5796
+ components:
+ - type: Transform
+ pos: 20.5,121.5
+ parent: 1
+ - uid: 5799
+ components:
+ - type: Transform
+ pos: 20.5,87.5
+ parent: 1
+ - uid: 5800
+ components:
+ - type: Transform
+ pos: 20.5,85.5
+ parent: 1
+ - uid: 5813
+ components:
+ - type: Transform
+ pos: 20.5,79.5
+ parent: 1
+ - uid: 5833
+ components:
+ - type: Transform
+ pos: 21.5,125.5
+ parent: 1
+ - uid: 5855
+ components:
+ - type: Transform
+ pos: 22.5,67.5
+ parent: 1
+ - uid: 5866
+ components:
+ - type: Transform
+ pos: 23.5,67.5
+ parent: 1
+ - uid: 5908
+ components:
+ - type: Transform
+ pos: 25.5,67.5
+ parent: 1
+ - uid: 5915
+ components:
+ - type: Transform
+ pos: 26.5,71.5
+ parent: 1
+ - uid: 5949
+ components:
+ - type: Transform
+ pos: 26.5,68.5
+ parent: 1
+ - uid: 5950
+ components:
+ - type: Transform
+ pos: 26.5,67.5
+ parent: 1
+ - uid: 5960
+ components:
+ - type: Transform
+ pos: 26.5,66.5
+ parent: 1
+ - uid: 5962
+ components:
+ - type: Transform
+ pos: 27.5,72.5
+ parent: 1
+ - uid: 5971
+ components:
+ - type: Transform
+ pos: 27.5,66.5
+ parent: 1
+ - uid: 5975
+ components:
+ - type: Transform
+ pos: 36.5,103.5
+ parent: 1
+ - uid: 5976
+ components:
+ - type: Transform
+ pos: 121.5,75.5
+ parent: 1
+ - uid: 5977
+ components:
+ - type: Transform
+ pos: 121.5,72.5
+ parent: 1
+ - uid: 5978
+ components:
+ - type: Transform
+ pos: 121.5,69.5
+ parent: 1
+ - uid: 5986
+ components:
+ - type: Transform
+ pos: 121.5,66.5
+ parent: 1
+ - uid: 5987
+ components:
+ - type: Transform
+ pos: 121.5,63.5
+ parent: 1
+ - uid: 5988
+ components:
+ - type: Transform
+ pos: 121.5,62.5
+ parent: 1
+ - uid: 5989
+ components:
+ - type: Transform
+ pos: 121.5,61.5
+ parent: 1
+ - uid: 5990
+ components:
+ - type: Transform
+ pos: 121.5,57.5
+ parent: 1
+ - uid: 5991
+ components:
+ - type: Transform
+ pos: 121.5,56.5
+ parent: 1
+ - uid: 5993
+ components:
+ - type: Transform
+ pos: 121.5,53.5
+ parent: 1
+ - uid: 5995
+ components:
+ - type: Transform
+ pos: 121.5,52.5
+ parent: 1
+ - uid: 5996
+ components:
+ - type: Transform
+ pos: 121.5,51.5
+ parent: 1
+ - uid: 5997
+ components:
+ - type: Transform
+ pos: 121.5,47.5
+ parent: 1
+ - uid: 6001
+ components:
+ - type: Transform
+ pos: 121.5,46.5
+ parent: 1
+ - uid: 6002
+ components:
+ - type: Transform
+ pos: 29.5,72.5
+ parent: 1
+ - uid: 6004
+ components:
+ - type: Transform
+ pos: 30.5,125.5
+ parent: 1
+ - uid: 6006
+ components:
+ - type: Transform
+ pos: 30.5,124.5
+ parent: 1
+ - uid: 6026
+ components:
+ - type: Transform
+ pos: 159.5,100.5
+ parent: 1
+ - uid: 6028
+ components:
+ - type: Transform
+ pos: 159.5,101.5
+ parent: 1
+ - uid: 6032
+ components:
+ - type: Transform
+ pos: 162.5,105.5
+ parent: 1
+ - uid: 6052
+ components:
+ - type: Transform
+ pos: 33.5,124.5
+ parent: 1
+ - uid: 6056
+ components:
+ - type: Transform
+ pos: 122.5,75.5
+ parent: 1
+ - uid: 6057
+ components:
+ - type: Transform
+ pos: 122.5,61.5
+ parent: 1
+ - uid: 6058
+ components:
+ - type: Transform
+ pos: 122.5,57.5
+ parent: 1
+ - uid: 6059
+ components:
+ - type: Transform
+ pos: 122.5,52.5
+ parent: 1
+ - uid: 6060
+ components:
+ - type: Transform
+ pos: 122.5,45.5
+ parent: 1
+ - uid: 6061
+ components:
+ - type: Transform
+ pos: 123.5,75.5
+ parent: 1
+ - uid: 6062
+ components:
+ - type: Transform
+ pos: 123.5,61.5
+ parent: 1
+ - uid: 6063
+ components:
+ - type: Transform
+ pos: 123.5,57.5
+ parent: 1
+ - uid: 6064
+ components:
+ - type: Transform
+ pos: 124.5,75.5
+ parent: 1
+ - uid: 6065
+ components:
+ - type: Transform
+ pos: 124.5,61.5
+ parent: 1
+ - uid: 6066
+ components:
+ - type: Transform
+ pos: 124.5,57.5
+ parent: 1
+ - uid: 6067
+ components:
+ - type: Transform
+ pos: 34.5,124.5
+ parent: 1
+ - uid: 6071
+ components:
+ - type: Transform
+ pos: 35.5,126.5
+ parent: 1
+ - uid: 6085
+ components:
+ - type: Transform
+ pos: 131.5,95.5
+ parent: 1
+ - uid: 6092
+ components:
+ - type: Transform
+ pos: 124.5,52.5
+ parent: 1
+ - uid: 6096
+ components:
+ - type: Transform
+ pos: 38.5,127.5
+ parent: 1
+ - uid: 6098
+ components:
+ - type: Transform
+ pos: 40.5,127.5
+ parent: 1
+ - uid: 6106
+ components:
+ - type: Transform
+ pos: 43.5,127.5
+ parent: 1
+ - uid: 6113
+ components:
+ - type: Transform
+ pos: 45.5,127.5
+ parent: 1
+ - uid: 6114
+ components:
+ - type: Transform
+ pos: 46.5,127.5
+ parent: 1
+ - uid: 6118
+ components:
+ - type: Transform
+ pos: 124.5,45.5
+ parent: 1
+ - uid: 6119
+ components:
+ - type: Transform
+ pos: 125.5,75.5
+ parent: 1
+ - uid: 6120
+ components:
+ - type: Transform
+ pos: 125.5,72.5
+ parent: 1
+ - uid: 6128
+ components:
+ - type: Transform
+ pos: 48.5,127.5
+ parent: 1
+ - uid: 6148
+ components:
+ - type: Transform
+ pos: 132.5,87.5
+ parent: 1
+ - uid: 6151
+ components:
+ - type: Transform
+ pos: 125.5,69.5
+ parent: 1
+ - uid: 6152
+ components:
+ - type: Transform
+ pos: 125.5,66.5
+ parent: 1
+ - uid: 6153
+ components:
+ - type: Transform
+ pos: 125.5,63.5
+ parent: 1
+ - uid: 6154
+ components:
+ - type: Transform
+ pos: 125.5,62.5
+ parent: 1
+ - uid: 6161
+ components:
+ - type: Transform
+ pos: 125.5,61.5
+ parent: 1
+ - uid: 6162
+ components:
+ - type: Transform
+ pos: 125.5,57.5
+ parent: 1
+ - uid: 6163
+ components:
+ - type: Transform
+ pos: 125.5,53.5
+ parent: 1
+ - uid: 6164
+ components:
+ - type: Transform
+ pos: 125.5,52.5
+ parent: 1
+ - uid: 6165
+ components:
+ - type: Transform
+ pos: 125.5,51.5
+ parent: 1
+ - uid: 6166
+ components:
+ - type: Transform
+ pos: 125.5,50.5
+ parent: 1
+ - uid: 6200
+ components:
+ - type: Transform
+ pos: 144.5,42.5
+ parent: 1
+ - uid: 6201
+ components:
+ - type: Transform
+ pos: 125.5,49.5
+ parent: 1
+ - uid: 6202
+ components:
+ - type: Transform
+ pos: 125.5,48.5
+ parent: 1
+ - uid: 6205
+ components:
+ - type: Transform
+ pos: 125.5,47.5
+ parent: 1
+ - uid: 6206
+ components:
+ - type: Transform
+ pos: 125.5,46.5
+ parent: 1
+ - uid: 6209
+ components:
+ - type: Transform
+ pos: 125.5,44.5
+ parent: 1
+ - uid: 6210
+ components:
+ - type: Transform
+ pos: 126.5,75.5
+ parent: 1
+ - uid: 6220
+ components:
+ - type: Transform
+ pos: 51.5,155.5
+ parent: 1
+ - uid: 6246
+ components:
+ - type: Transform
+ pos: 159.5,102.5
+ parent: 1
+ - uid: 6258
+ components:
+ - type: Transform
+ pos: 126.5,44.5
+ parent: 1
+ - uid: 6259
+ components:
+ - type: Transform
+ pos: 127.5,75.5
+ parent: 1
+ - uid: 6262
+ components:
+ - type: Transform
+ pos: 127.5,57.5
+ parent: 1
+ - uid: 6263
+ components:
+ - type: Transform
+ pos: 127.5,53.5
+ parent: 1
+ - uid: 6265
+ components:
+ - type: Transform
+ pos: 128.5,75.5
+ parent: 1
+ - uid: 6266
+ components:
+ - type: Transform
+ pos: 128.5,57.5
+ parent: 1
+ - uid: 6267
+ components:
+ - type: Transform
+ pos: 128.5,56.5
+ parent: 1
+ - uid: 6268
+ components:
+ - type: Transform
+ pos: 128.5,54.5
+ parent: 1
+ - uid: 6269
+ components:
+ - type: Transform
+ pos: 128.5,53.5
+ parent: 1
+ - uid: 6270
+ components:
+ - type: Transform
+ pos: 128.5,44.5
+ parent: 1
+ - uid: 6273
+ components:
+ - type: Transform
+ pos: 51.5,144.5
+ parent: 1
+ - uid: 6276
+ components:
+ - type: Transform
+ pos: 51.5,143.5
+ parent: 1
+ - uid: 6306
+ components:
+ - type: Transform
+ pos: 128.5,43.5
+ parent: 1
+ - uid: 6307
+ components:
+ - type: Transform
+ pos: 129.5,75.5
+ parent: 1
+ - uid: 6310
+ components:
+ - type: Transform
+ pos: 129.5,74.5
+ parent: 1
+ - uid: 6311
+ components:
+ - type: Transform
+ pos: 129.5,67.5
+ parent: 1
+ - uid: 6312
+ components:
+ - type: Transform
+ pos: 129.5,66.5
+ parent: 1
+ - uid: 6313
+ components:
+ - type: Transform
+ pos: 129.5,65.5
+ parent: 1
+ - uid: 6314
+ components:
+ - type: Transform
+ pos: 129.5,64.5
+ parent: 1
+ - uid: 6315
+ components:
+ - type: Transform
+ pos: 129.5,63.5
+ parent: 1
+ - uid: 6316
+ components:
+ - type: Transform
+ pos: 129.5,62.5
+ parent: 1
+ - uid: 6317
+ components:
+ - type: Transform
+ pos: 129.5,61.5
+ parent: 1
+ - uid: 6318
+ components:
+ - type: Transform
+ pos: 129.5,53.5
+ parent: 1
+ - uid: 6319
+ components:
+ - type: Transform
+ pos: 129.5,43.5
+ parent: 1
+ - uid: 6320
+ components:
+ - type: Transform
+ pos: 130.5,75.5
+ parent: 1
+ - uid: 6322
+ components:
+ - type: Transform
+ pos: 130.5,61.5
+ parent: 1
+ - uid: 6324
+ components:
+ - type: Transform
+ pos: 132.5,61.5
+ parent: 1
+ - uid: 6325
+ components:
+ - type: Transform
+ pos: 51.5,137.5
+ parent: 1
+ - uid: 6327
+ components:
+ - type: Transform
+ pos: 51.5,135.5
+ parent: 1
+ - uid: 6351
+ components:
+ - type: Transform
+ pos: 76.5,77.5
+ parent: 1
+ - uid: 6355
+ components:
+ - type: Transform
+ pos: 132.5,57.5
+ parent: 1
+ - uid: 6359
+ components:
+ - type: Transform
+ pos: 133.5,61.5
+ parent: 1
+ - uid: 6361
+ components:
+ - type: Transform
+ pos: 133.5,57.5
+ parent: 1
+ - uid: 6362
+ components:
+ - type: Transform
+ pos: 133.5,53.5
+ parent: 1
+ - uid: 6363
+ components:
+ - type: Transform
+ pos: 133.5,43.5
+ parent: 1
+ - uid: 6365
+ components:
+ - type: Transform
+ pos: 134.5,57.5
+ parent: 1
+ - uid: 6380
+ components:
+ - type: Transform
+ pos: 77.5,77.5
+ parent: 1
+ - uid: 6401
+ components:
+ - type: Transform
+ pos: 134.5,53.5
+ parent: 1
+ - uid: 6403
+ components:
+ - type: Transform
+ pos: 134.5,43.5
+ parent: 1
+ - uid: 6404
+ components:
+ - type: Transform
+ pos: 134.5,42.5
+ parent: 1
+ - uid: 6405
+ components:
+ - type: Transform
+ pos: 135.5,75.5
+ parent: 1
+ - uid: 6409
+ components:
+ - type: Transform
+ pos: 135.5,61.5
+ parent: 1
+ - uid: 6410
+ components:
+ - type: Transform
+ pos: 135.5,57.5
+ parent: 1
+ - uid: 6411
+ components:
+ - type: Transform
+ pos: 135.5,53.5
+ parent: 1
+ - uid: 6416
+ components:
+ - type: Transform
+ pos: 135.5,42.5
+ parent: 1
+ - uid: 6419
+ components:
+ - type: Transform
+ pos: 52.5,137.5
+ parent: 1
+ - uid: 6427
+ components:
+ - type: Transform
+ pos: 53.5,144.5
+ parent: 1
+ - uid: 6435
+ components:
+ - type: Transform
+ pos: 136.5,75.5
+ parent: 1
+ - uid: 6444
+ components:
+ - type: Transform
+ pos: 136.5,72.5
+ parent: 1
+ - uid: 6445
+ components:
+ - type: Transform
+ pos: 136.5,67.5
+ parent: 1
+ - uid: 6446
+ components:
+ - type: Transform
+ pos: 136.5,66.5
+ parent: 1
+ - uid: 6447
+ components:
+ - type: Transform
+ pos: 136.5,65.5
+ parent: 1
+ - uid: 6448
+ components:
+ - type: Transform
+ pos: 136.5,64.5
+ parent: 1
+ - uid: 6451
+ components:
+ - type: Transform
+ pos: 136.5,63.5
+ parent: 1
+ - uid: 6455
+ components:
+ - type: Transform
+ pos: 136.5,62.5
+ parent: 1
+ - uid: 6456
+ components:
+ - type: Transform
+ pos: 136.5,61.5
+ parent: 1
+ - uid: 6459
+ components:
+ - type: Transform
+ pos: 53.5,137.5
+ parent: 1
+ - uid: 6494
+ components:
+ - type: Transform
+ pos: 131.5,111.5
+ parent: 1
+ - uid: 6495
+ components:
+ - type: Transform
+ pos: 132.5,114.5
+ parent: 1
+ - uid: 6496
+ components:
+ - type: Transform
+ pos: 132.5,111.5
+ parent: 1
+ - uid: 6497
+ components:
+ - type: Transform
+ pos: 133.5,111.5
+ parent: 1
+ - uid: 6499
+ components:
+ - type: Transform
+ pos: 134.5,111.5
+ parent: 1
+ - uid: 6514
+ components:
+ - type: Transform
+ pos: 136.5,60.5
+ parent: 1
+ - uid: 6516
+ components:
+ - type: Transform
+ pos: 136.5,58.5
+ parent: 1
+ - uid: 6517
+ components:
+ - type: Transform
+ pos: 55.5,144.5
+ parent: 1
+ - uid: 6519
+ components:
+ - type: Transform
+ pos: 55.5,142.5
+ parent: 1
+ - uid: 6521
+ components:
+ - type: Transform
+ pos: 55.5,140.5
+ parent: 1
+ - uid: 6522
+ components:
+ - type: Transform
+ pos: 55.5,138.5
+ parent: 1
+ - uid: 6524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,153.5
+ parent: 1
+ - uid: 6527
+ components:
+ - type: Transform
+ pos: 56.5,159.5
+ parent: 1
+ - uid: 6531
+ components:
+ - type: Transform
+ pos: 136.5,57.5
+ parent: 1
+ - uid: 6535
+ components:
+ - type: Transform
+ pos: 136.5,53.5
+ parent: 1
+ - uid: 6538
+ components:
+ - type: Transform
+ pos: 136.5,42.5
+ parent: 1
+ - uid: 6540
+ components:
+ - type: Transform
+ pos: 137.5,53.5
+ parent: 1
+ - uid: 6541
+ components:
+ - type: Transform
+ pos: 135.5,113.5
+ parent: 1
+ - uid: 6543
+ components:
+ - type: Transform
+ pos: 56.5,157.5
+ parent: 1
+ - uid: 6548
+ components:
+ - type: Transform
+ pos: 56.5,155.5
+ parent: 1
+ - uid: 6553
+ components:
+ - type: Transform
+ pos: 135.5,111.5
+ parent: 1
+ - uid: 6557
+ components:
+ - type: Transform
+ pos: 137.5,52.5
+ parent: 1
+ - uid: 6558
+ components:
+ - type: Transform
+ pos: 137.5,51.5
+ parent: 1
+ - uid: 6559
+ components:
+ - type: Transform
+ pos: 137.5,50.5
+ parent: 1
+ - uid: 6561
+ components:
+ - type: Transform
+ pos: 137.5,49.5
+ parent: 1
+ - uid: 6563
+ components:
+ - type: Transform
+ pos: 154.5,150.5
+ parent: 1
+ - uid: 6581
+ components:
+ - type: Transform
+ pos: 137.5,48.5
+ parent: 1
+ - uid: 6582
+ components:
+ - type: Transform
+ pos: 137.5,47.5
+ parent: 1
+ - uid: 6583
+ components:
+ - type: Transform
+ pos: 137.5,46.5
+ parent: 1
+ - uid: 6590
+ components:
+ - type: Transform
+ pos: 137.5,45.5
+ parent: 1
+ - uid: 6591
+ components:
+ - type: Transform
+ pos: 137.5,44.5
+ parent: 1
+ - uid: 6593
+ components:
+ - type: Transform
+ pos: 137.5,43.5
+ parent: 1
+ - uid: 6594
+ components:
+ - type: Transform
+ pos: 137.5,42.5
+ parent: 1
+ - uid: 6595
+ components:
+ - type: Transform
+ pos: 138.5,50.5
+ parent: 1
+ - uid: 6601
+ components:
+ - type: Transform
+ pos: 139.5,43.5
+ parent: 1
+ - uid: 6602
+ components:
+ - type: Transform
+ pos: 139.5,42.5
+ parent: 1
+ - uid: 6603
+ components:
+ - type: Transform
+ pos: 139.5,41.5
+ parent: 1
+ - uid: 6606
+ components:
+ - type: Transform
+ pos: 140.5,75.5
+ parent: 1
+ - uid: 6607
+ components:
+ - type: Transform
+ pos: 140.5,72.5
+ parent: 1
+ - uid: 6608
+ components:
+ - type: Transform
+ pos: 140.5,65.5
+ parent: 1
+ - uid: 6610
+ components:
+ - type: Transform
+ pos: 140.5,64.5
+ parent: 1
+ - uid: 6639
+ components:
+ - type: Transform
+ pos: 141.5,110.5
+ parent: 1
+ - uid: 6643
+ components:
+ - type: Transform
+ pos: 140.5,63.5
+ parent: 1
+ - uid: 6645
+ components:
+ - type: Transform
+ pos: 141.5,75.5
+ parent: 1
+ - uid: 6646
+ components:
+ - type: Transform
+ pos: 141.5,72.5
+ parent: 1
+ - uid: 6648
+ components:
+ - type: Transform
+ pos: 141.5,43.5
+ parent: 1
+ - uid: 6650
+ components:
+ - type: Transform
+ pos: 141.5,41.5
+ parent: 1
+ - uid: 6651
+ components:
+ - type: Transform
+ pos: 142.5,72.5
+ parent: 1
+ - uid: 6652
+ components:
+ - type: Transform
+ pos: 142.5,63.5
+ parent: 1
+ - uid: 6653
+ components:
+ - type: Transform
+ pos: 142.5,62.5
+ parent: 1
+ - uid: 6654
+ components:
+ - type: Transform
+ pos: 142.5,61.5
+ parent: 1
+ - uid: 6655
+ components:
+ - type: Transform
+ pos: 142.5,60.5
+ parent: 1
+ - uid: 6657
+ components:
+ - type: Transform
+ pos: 142.5,59.5
+ parent: 1
+ - uid: 6658
+ components:
+ - type: Transform
+ pos: 59.5,159.5
+ parent: 1
+ - uid: 6663
+ components:
+ - type: Transform
+ pos: 60.5,162.5
+ parent: 1
+ - uid: 6677
+ components:
+ - type: Transform
+ pos: 142.5,50.5
+ parent: 1
+ - uid: 6678
+ components:
+ - type: Transform
+ pos: 142.5,43.5
+ parent: 1
+ - uid: 6679
+ components:
+ - type: Transform
+ pos: 142.5,41.5
+ parent: 1
+ - uid: 6681
+ components:
+ - type: Transform
+ pos: 143.5,63.5
+ parent: 1
+ - uid: 6682
+ components:
+ - type: Transform
+ pos: 143.5,59.5
+ parent: 1
+ - uid: 6684
+ components:
+ - type: Transform
+ pos: 143.5,54.5
+ parent: 1
+ - uid: 6693
+ components:
+ - type: Transform
+ pos: 60.5,160.5
+ parent: 1
+ - uid: 6701
+ components:
+ - type: Transform
+ pos: 141.5,109.5
+ parent: 1
+ - uid: 6704
+ components:
+ - type: Transform
+ pos: 141.5,108.5
+ parent: 1
+ - uid: 6710
+ components:
+ - type: Transform
+ pos: 143.5,53.5
+ parent: 1
+ - uid: 6711
+ components:
+ - type: Transform
+ pos: 143.5,52.5
+ parent: 1
+ - uid: 6712
+ components:
+ - type: Transform
+ pos: 143.5,51.5
+ parent: 1
+ - uid: 6713
+ components:
+ - type: Transform
+ pos: 143.5,50.5
+ parent: 1
+ - uid: 6716
+ components:
+ - type: Transform
+ pos: 143.5,49.5
+ parent: 1
+ - uid: 6717
+ components:
+ - type: Transform
+ pos: 143.5,48.5
+ parent: 1
+ - uid: 6719
+ components:
+ - type: Transform
+ pos: 143.5,47.5
+ parent: 1
+ - uid: 6723
+ components:
+ - type: Transform
+ pos: 62.5,162.5
+ parent: 1
+ - uid: 6726
+ components:
+ - type: Transform
+ pos: 65.5,162.5
+ parent: 1
+ - uid: 6739
+ components:
+ - type: Transform
+ pos: 66.5,165.5
+ parent: 1
+ - uid: 6749
+ components:
+ - type: Transform
+ pos: 141.5,107.5
+ parent: 1
+ - uid: 6750
+ components:
+ - type: Transform
+ pos: 141.5,106.5
+ parent: 1
+ - uid: 6751
+ components:
+ - type: Transform
+ pos: 141.5,102.5
+ parent: 1
+ - uid: 6752
+ components:
+ - type: Transform
+ pos: 141.5,101.5
+ parent: 1
+ - uid: 6753
+ components:
+ - type: Transform
+ pos: 142.5,111.5
+ parent: 1
+ - uid: 6754
+ components:
+ - type: Transform
+ pos: 142.5,107.5
+ parent: 1
+ - uid: 6765
+ components:
+ - type: Transform
+ pos: 143.5,46.5
+ parent: 1
+ - uid: 6766
+ components:
+ - type: Transform
+ pos: 143.5,45.5
+ parent: 1
+ - uid: 6767
+ components:
+ - type: Transform
+ pos: 143.5,44.5
+ parent: 1
+ - uid: 6768
+ components:
+ - type: Transform
+ pos: 143.5,43.5
+ parent: 1
+ - uid: 6772
+ components:
+ - type: Transform
+ pos: 144.5,75.5
+ parent: 1
+ - uid: 6774
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,46.5
+ parent: 1
+ - uid: 6776
+ components:
+ - type: Transform
+ pos: 144.5,72.5
+ parent: 1
+ - uid: 6777
+ components:
+ - type: Transform
+ pos: 66.5,164.5
+ parent: 1
+ - uid: 6790
+ components:
+ - type: Transform
+ pos: 142.5,101.5
+ parent: 1
+ - uid: 6792
+ components:
+ - type: Transform
+ pos: 144.5,111.5
+ parent: 1
+ - uid: 6795
+ components:
+ - type: Transform
+ pos: 144.5,59.5
+ parent: 1
+ - uid: 6796
+ components:
+ - type: Transform
+ pos: 144.5,54.5
+ parent: 1
+ - uid: 6797
+ components:
+ - type: Transform
+ pos: 144.5,47.5
+ parent: 1
+ - uid: 6800
+ components:
+ - type: Transform
+ pos: 145.5,75.5
+ parent: 1
+ - uid: 6801
+ components:
+ - type: Transform
+ pos: 145.5,74.5
+ parent: 1
+ - uid: 6802
+ components:
+ - type: Transform
+ pos: 145.5,73.5
+ parent: 1
+ - uid: 6803
+ components:
+ - type: Transform
+ pos: 145.5,72.5
+ parent: 1
+ - uid: 6804
+ components:
+ - type: Transform
+ pos: 145.5,63.5
+ parent: 1
+ - uid: 6805
+ components:
+ - type: Transform
+ pos: 145.5,59.5
+ parent: 1
+ - uid: 6807
+ components:
+ - type: Transform
+ pos: 146.5,73.5
+ parent: 1
+ - uid: 6809
+ components:
+ - type: Transform
+ pos: 146.5,65.5
+ parent: 1
+ - uid: 6826
+ components:
+ - type: Transform
+ pos: 144.5,107.5
+ parent: 1
+ - uid: 6827
+ components:
+ - type: Transform
+ pos: 144.5,101.5
+ parent: 1
+ - uid: 6831
+ components:
+ - type: Transform
+ pos: 145.5,111.5
+ parent: 1
+ - uid: 6832
+ components:
+ - type: Transform
+ pos: 145.5,110.5
+ parent: 1
+ - uid: 6833
+ components:
+ - type: Transform
+ pos: 71.5,165.5
+ parent: 1
+ - uid: 6838
+ components:
+ - type: Transform
+ pos: 146.5,64.5
+ parent: 1
+ - uid: 6839
+ components:
+ - type: Transform
+ pos: 146.5,63.5
+ parent: 1
+ - uid: 6840
+ components:
+ - type: Transform
+ pos: 146.5,62.5
+ parent: 1
+ - uid: 6841
+ components:
+ - type: Transform
+ pos: 146.5,61.5
+ parent: 1
+ - uid: 6842
+ components:
+ - type: Transform
+ pos: 146.5,60.5
+ parent: 1
+ - uid: 6843
+ components:
+ - type: Transform
+ pos: 146.5,59.5
+ parent: 1
+ - uid: 6844
+ components:
+ - type: Transform
+ pos: 146.5,47.5
+ parent: 1
+ - uid: 6845
+ components:
+ - type: Transform
+ pos: 146.5,42.5
+ parent: 1
+ - uid: 6847
+ components:
+ - type: Transform
+ pos: 147.5,47.5
+ parent: 1
+ - uid: 6849
+ components:
+ - type: Transform
+ pos: 148.5,73.5
+ parent: 1
+ - uid: 6850
+ components:
+ - type: Transform
+ pos: 148.5,47.5
+ parent: 1
+ - uid: 6853
+ components:
+ - type: Transform
+ pos: 149.5,73.5
+ parent: 1
+ - uid: 6854
+ components:
+ - type: Transform
+ pos: 72.5,165.5
+ parent: 1
+ - uid: 6874
+ components:
+ - type: Transform
+ pos: 145.5,108.5
+ parent: 1
+ - uid: 6875
+ components:
+ - type: Transform
+ pos: 145.5,107.5
+ parent: 1
+ - uid: 6876
+ components:
+ - type: Transform
+ pos: 145.5,101.5
+ parent: 1
+ - uid: 6877
+ components:
+ - type: Transform
+ pos: 146.5,107.5
+ parent: 1
+ - uid: 6878
+ components:
+ - type: Transform
+ pos: 72.5,163.5
+ parent: 1
+ - uid: 6887
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,41.5
+ parent: 1
+ - uid: 6894
+ components:
+ - type: Transform
+ pos: 149.5,54.5
+ parent: 1
+ - uid: 6895
+ components:
+ - type: Transform
+ pos: 149.5,47.5
+ parent: 1
+ - uid: 6897
+ components:
+ - type: Transform
+ pos: 150.5,75.5
+ parent: 1
+ - uid: 6898
+ components:
+ - type: Transform
+ pos: 150.5,74.5
+ parent: 1
+ - uid: 6899
+ components:
+ - type: Transform
+ pos: 150.5,73.5
+ parent: 1
+ - uid: 6901
+ components:
+ - type: Transform
+ pos: 150.5,69.5
+ parent: 1
+ - uid: 6906
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 96.5,157.5
+ parent: 1
+ - uid: 6908
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,157.5
+ parent: 1
+ - uid: 6919
+ components:
+ - type: Transform
+ pos: 146.5,101.5
+ parent: 1
+ - uid: 6934
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,50.5
+ parent: 1
+ - uid: 6940
+ components:
+ - type: Transform
+ pos: 150.5,68.5
+ parent: 1
+ - uid: 6942
+ components:
+ - type: Transform
+ pos: 162.5,127.5
+ parent: 1
+ - uid: 6953
+ components:
+ - type: Transform
+ pos: 153.5,92.5
+ parent: 1
+ - uid: 6956
+ components:
+ - type: Transform
+ pos: 153.5,89.5
+ parent: 1
+ - uid: 6957
+ components:
+ - type: Transform
+ pos: 150.5,66.5
+ parent: 1
+ - uid: 6960
+ components:
+ - type: Transform
+ pos: 150.5,65.5
+ parent: 1
+ - uid: 6961
+ components:
+ - type: Transform
+ pos: 150.5,64.5
+ parent: 1
+ - uid: 6962
+ components:
+ - type: Transform
+ pos: 154.5,92.5
+ parent: 1
+ - uid: 6963
+ components:
+ - type: Transform
+ pos: 154.5,89.5
+ parent: 1
+ - uid: 6964
+ components:
+ - type: Transform
+ pos: 154.5,88.5
+ parent: 1
+ - uid: 6965
+ components:
+ - type: Transform
+ pos: 150.5,60.5
+ parent: 1
+ - uid: 6970
+ components:
+ - type: Transform
+ pos: 155.5,92.5
+ parent: 1
+ - uid: 6972
+ components:
+ - type: Transform
+ pos: 156.5,95.5
+ parent: 1
+ - uid: 6992
+ components:
+ - type: Transform
+ pos: 150.5,59.5
+ parent: 1
+ - uid: 6993
+ components:
+ - type: Transform
+ pos: 164.5,127.5
+ parent: 1
+ - uid: 7018
+ components:
+ - type: Transform
+ pos: 156.5,92.5
+ parent: 1
+ - uid: 7021
+ components:
+ - type: Transform
+ pos: 90.5,109.5
+ parent: 1
+ - uid: 7030
+ components:
+ - type: Transform
+ pos: 150.5,58.5
+ parent: 1
+ - uid: 7031
+ components:
+ - type: Transform
+ pos: 150.5,55.5
+ parent: 1
+ - uid: 7032
+ components:
+ - type: Transform
+ pos: 150.5,54.5
+ parent: 1
+ - uid: 7034
+ components:
+ - type: Transform
+ pos: 150.5,47.5
+ parent: 1
+ - uid: 7036
+ components:
+ - type: Transform
+ pos: 151.5,75.5
+ parent: 1
+ - uid: 7037
+ components:
+ - type: Transform
+ pos: 151.5,65.5
+ parent: 1
+ - uid: 7038
+ components:
+ - type: Transform
+ pos: 151.5,59.5
+ parent: 1
+ - uid: 7064
+ components:
+ - type: Transform
+ pos: 151.5,53.5
+ parent: 1
+ - uid: 7067
+ components:
+ - type: Transform
+ pos: 120.5,92.5
+ parent: 1
+ - uid: 7068
+ components:
+ - type: Transform
+ pos: 120.5,91.5
+ parent: 1
+ - uid: 7075
+ components:
+ - type: Transform
+ pos: 156.5,87.5
+ parent: 1
+ - uid: 7077
+ components:
+ - type: Transform
+ pos: 156.5,85.5
+ parent: 1
+ - uid: 7078
+ components:
+ - type: Transform
+ pos: 157.5,95.5
+ parent: 1
+ - uid: 7082
+ components:
+ - type: Transform
+ pos: 90.5,98.5
+ parent: 1
+ - uid: 7085
+ components:
+ - type: Transform
+ pos: 84.5,15.5
+ parent: 1
+ - uid: 7087
+ components:
+ - type: Transform
+ pos: 85.5,163.5
+ parent: 1
+ - uid: 7089
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,124.5
+ parent: 1
+ - uid: 7097
+ components:
+ - type: Transform
+ pos: 85.5,17.5
+ parent: 1
+ - uid: 7100
+ components:
+ - type: Transform
+ pos: 86.5,166.5
+ parent: 1
+ - uid: 7103
+ components:
+ - type: Transform
+ pos: 151.5,49.5
+ parent: 1
+ - uid: 7104
+ components:
+ - type: Transform
+ pos: 151.5,48.5
+ parent: 1
+ - uid: 7117
+ components:
+ - type: Transform
+ pos: 158.5,111.5
+ parent: 1
+ - uid: 7118
+ components:
+ - type: Transform
+ pos: 158.5,105.5
+ parent: 1
+ - uid: 7120
+ components:
+ - type: Transform
+ pos: 159.5,111.5
+ parent: 1
+ - uid: 7121
+ components:
+ - type: Transform
+ pos: 159.5,105.5
+ parent: 1
+ - uid: 7126
+ components:
+ - type: Transform
+ pos: 160.5,111.5
+ parent: 1
+ - uid: 7129
+ components:
+ - type: Transform
+ pos: 162.5,125.5
+ parent: 1
+ - uid: 7130
+ components:
+ - type: Transform
+ pos: 90.5,97.5
+ parent: 1
+ - uid: 7131
+ components:
+ - type: Transform
+ pos: 90.5,96.5
+ parent: 1
+ - uid: 7133
+ components:
+ - type: Transform
+ pos: 90.5,95.5
+ parent: 1
+ - uid: 7134
+ components:
+ - type: Transform
+ pos: 90.5,94.5
+ parent: 1
+ - uid: 7135
+ components:
+ - type: Transform
+ pos: 86.5,164.5
+ parent: 1
+ - uid: 7136
+ components:
+ - type: Transform
+ pos: 86.5,163.5
+ parent: 1
+ - uid: 7138
+ components:
+ - type: Transform
+ pos: 87.5,166.5
+ parent: 1
+ - uid: 7139
+ components:
+ - type: Transform
+ pos: 88.5,166.5
+ parent: 1
+ - uid: 7140
+ components:
+ - type: Transform
+ pos: 89.5,174.5
+ parent: 1
+ - uid: 7141
+ components:
+ - type: Transform
+ pos: 89.5,173.5
+ parent: 1
+ - uid: 7142
+ components:
+ - type: Transform
+ pos: 89.5,167.5
+ parent: 1
+ - uid: 7145
+ components:
+ - type: Transform
+ pos: 151.5,47.5
+ parent: 1
+ - uid: 7147
+ components:
+ - type: Transform
+ pos: 152.5,75.5
+ parent: 1
+ - uid: 7148
+ components:
+ - type: Transform
+ pos: 152.5,65.5
+ parent: 1
+ - uid: 7149
+ components:
+ - type: Transform
+ pos: 152.5,59.5
+ parent: 1
+ - uid: 7150
+ components:
+ - type: Transform
+ pos: 152.5,48.5
+ parent: 1
+ - uid: 7152
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,128.5
+ parent: 1
+ - uid: 7155
+ components:
+ - type: Transform
+ pos: 92.5,16.5
+ parent: 1
+ - uid: 7157
+ components:
+ - type: Transform
+ pos: 92.5,14.5
+ parent: 1
+ - uid: 7158
+ components:
+ - type: Transform
+ pos: 153.5,75.5
+ parent: 1
+ - uid: 7159
+ components:
+ - type: Transform
+ pos: 153.5,65.5
+ parent: 1
+ - uid: 7165
+ components:
+ - type: Transform
+ pos: 153.5,59.5
+ parent: 1
+ - uid: 7166
+ components:
+ - type: Transform
+ pos: 153.5,48.5
+ parent: 1
+ - uid: 7167
+ components:
+ - type: Transform
+ pos: 153.5,42.5
+ parent: 1
+ - uid: 7168
+ components:
+ - type: Transform
+ pos: 154.5,75.5
+ parent: 1
+ - uid: 7169
+ components:
+ - type: Transform
+ pos: 154.5,65.5
+ parent: 1
+ - uid: 7170
+ components:
+ - type: Transform
+ pos: 154.5,59.5
+ parent: 1
+ - uid: 7173
+ components:
+ - type: Transform
+ pos: 155.5,75.5
+ parent: 1
+ - uid: 7174
+ components:
+ - type: Transform
+ pos: 155.5,74.5
+ parent: 1
+ - uid: 7175
+ components:
+ - type: Transform
+ pos: 155.5,73.5
+ parent: 1
+ - uid: 7184
+ components:
+ - type: Transform
+ pos: 162.5,111.5
+ parent: 1
+ - uid: 7186
+ components:
+ - type: Transform
+ pos: 96.5,174.5
+ parent: 1
+ - uid: 7187
+ components:
+ - type: Transform
+ pos: 96.5,173.5
+ parent: 1
+ - uid: 7188
+ components:
+ - type: Transform
+ pos: 96.5,17.5
+ parent: 1
+ - uid: 7206
+ components:
+ - type: Transform
+ pos: 121.5,54.5
+ parent: 1
+ - uid: 7207
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,129.5
+ parent: 1
+ - uid: 7208
+ components:
+ - type: Transform
+ pos: 96.5,14.5
+ parent: 1
+ - uid: 7214
+ components:
+ - type: Transform
+ pos: 97.5,173.5
+ parent: 1
+ - uid: 7218
+ components:
+ - type: Transform
+ pos: 121.5,55.5
+ parent: 1
+ - uid: 7297
+ components:
+ - type: Transform
+ pos: 165.5,140.5
+ parent: 1
+ - uid: 7516
+ components:
+ - type: Transform
+ pos: 98.5,17.5
+ parent: 1
+ - uid: 7553
+ components:
+ - type: Transform
+ pos: 90.5,93.5
+ parent: 1
+ - uid: 7590
+ components:
+ - type: Transform
+ pos: 99.5,17.5
+ parent: 1
+ - uid: 7599
+ components:
+ - type: Transform
+ pos: 100.5,173.5
+ parent: 1
+ - uid: 7614
+ components:
+ - type: Transform
+ pos: 155.5,72.5
+ parent: 1
+ - uid: 7626
+ components:
+ - type: Transform
+ pos: 155.5,71.5
+ parent: 1
+ - uid: 7664
+ components:
+ - type: Transform
+ pos: 101.5,173.5
+ parent: 1
+ - uid: 7698
+ components:
+ - type: Transform
+ pos: 90.5,89.5
+ parent: 1
+ - uid: 7704
+ components:
+ - type: Transform
+ pos: 91.5,93.5
+ parent: 1
+ - uid: 7771
+ components:
+ - type: Transform
+ pos: 101.5,17.5
+ parent: 1
+ - uid: 7790
+ components:
+ - type: Transform
+ pos: 102.5,173.5
+ parent: 1
+ - uid: 7815
+ components:
+ - type: Transform
+ pos: 91.5,89.5
+ parent: 1
+ - uid: 7837
+ components:
+ - type: Transform
+ pos: 103.5,17.5
+ parent: 1
+ - uid: 7860
+ components:
+ - type: Transform
+ pos: 104.5,17.5
+ parent: 1
+ - uid: 7886
+ components:
+ - type: Transform
+ pos: 105.5,173.5
+ parent: 1
+ - uid: 7952
+ components:
+ - type: Transform
+ pos: 105.5,172.5
+ parent: 1
+ - uid: 7964
+ components:
+ - type: Transform
+ pos: 155.5,70.5
+ parent: 1
+ - uid: 7974
+ components:
+ - type: Transform
+ pos: 106.5,172.5
+ parent: 1
+ - uid: 8001
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 151.5,54.5
+ parent: 1
+ - uid: 8031
+ components:
+ - type: Transform
+ pos: 92.5,93.5
+ parent: 1
+ - uid: 8035
+ components:
+ - type: Transform
+ pos: 92.5,89.5
+ parent: 1
+ - uid: 8125
+ components:
+ - type: Transform
+ pos: 115.5,18.5
+ parent: 1
+ - uid: 8154
+ components:
+ - type: Transform
+ pos: 117.5,172.5
+ parent: 1
+ - uid: 8177
+ components:
+ - type: Transform
+ pos: 119.5,172.5
+ parent: 1
+ - uid: 8195
+ components:
+ - type: Transform
+ pos: 121.5,23.5
+ parent: 1
+ - uid: 8221
+ components:
+ - type: Transform
+ pos: 121.5,18.5
+ parent: 1
+ - uid: 8285
+ components:
+ - type: Transform
+ pos: 125.5,34.5
+ parent: 1
+ - uid: 8305
+ components:
+ - type: Transform
+ pos: 89.5,58.5
+ parent: 1
+ - uid: 8352
+ components:
+ - type: Transform
+ pos: 93.5,93.5
+ parent: 1
+ - uid: 8381
+ components:
+ - type: Transform
+ pos: 155.5,69.5
+ parent: 1
+ - uid: 8387
+ components:
+ - type: Transform
+ pos: 155.5,68.5
+ parent: 1
+ - uid: 8456
+ components:
+ - type: Transform
+ pos: 163.5,112.5
+ parent: 1
+ - uid: 8469
+ components:
+ - type: Transform
+ pos: 164.5,129.5
+ parent: 1
+ - uid: 8470
+ components:
+ - type: Transform
+ pos: 164.5,125.5
+ parent: 1
+ - uid: 8481
+ components:
+ - type: Transform
+ pos: 155.5,67.5
+ parent: 1
+ - uid: 8487
+ components:
+ - type: Transform
+ pos: 155.5,66.5
+ parent: 1
+ - uid: 8493
+ components:
+ - type: Transform
+ pos: 155.5,65.5
+ parent: 1
+ - uid: 8494
+ components:
+ - type: Transform
+ pos: 155.5,59.5
+ parent: 1
+ - uid: 8495
+ components:
+ - type: Transform
+ pos: 155.5,48.5
+ parent: 1
+ - uid: 8497
+ components:
+ - type: Transform
+ pos: 156.5,60.5
+ parent: 1
+ - uid: 8498
+ components:
+ - type: Transform
+ pos: 156.5,59.5
+ parent: 1
+ - uid: 8606
+ components:
+ - type: Transform
+ pos: 128.5,42.5
+ parent: 1
+ - uid: 8613
+ components:
+ - type: Transform
+ pos: 128.5,41.5
+ parent: 1
+ - uid: 8791
+ components:
+ - type: Transform
+ pos: 93.5,89.5
+ parent: 1
+ - uid: 8800
+ components:
+ - type: Transform
+ pos: 45.5,105.5
+ parent: 1
+ - uid: 8807
+ components:
+ - type: Transform
+ pos: 45.5,104.5
+ parent: 1
+ - uid: 8821
+ components:
+ - type: Transform
+ pos: 46.5,109.5
+ parent: 1
+ - uid: 8827
+ components:
+ - type: Transform
+ pos: 46.5,104.5
+ parent: 1
+ - uid: 8831
+ components:
+ - type: Transform
+ pos: 47.5,109.5
+ parent: 1
+ - uid: 8838
+ components:
+ - type: Transform
+ pos: 47.5,104.5
+ parent: 1
+ - uid: 8840
+ components:
+ - type: Transform
+ pos: 48.5,109.5
+ parent: 1
+ - uid: 8842
+ components:
+ - type: Transform
+ pos: 48.5,104.5
+ parent: 1
+ - uid: 8856
+ components:
+ - type: Transform
+ pos: 49.5,109.5
+ parent: 1
+ - uid: 8864
+ components:
+ - type: Transform
+ pos: 49.5,104.5
+ parent: 1
+ - uid: 8872
+ components:
+ - type: Transform
+ pos: 50.5,108.5
+ parent: 1
+ - uid: 8876
+ components:
+ - type: Transform
+ pos: 50.5,104.5
+ parent: 1
+ - uid: 8892
+ components:
+ - type: Transform
+ pos: 51.5,108.5
+ parent: 1
+ - uid: 9004
+ components:
+ - type: Transform
+ pos: 110.5,146.5
+ parent: 1
+ - uid: 9029
+ components:
+ - type: Transform
+ pos: 106.5,146.5
+ parent: 1
+ - uid: 9424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 78.5,137.5
+ parent: 1
+ - uid: 9425
+ components:
+ - type: Transform
+ pos: 86.5,134.5
+ parent: 1
+ - uid: 9692
+ components:
+ - type: Transform
+ pos: 165.5,146.5
+ parent: 1
+ - uid: 10227
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 100.5,157.5
+ parent: 1
+ - uid: 10231
+ components:
+ - type: Transform
+ pos: 140.5,135.5
+ parent: 1
+ - uid: 10260
+ components:
+ - type: Transform
+ pos: 141.5,135.5
+ parent: 1
+ - uid: 10483
+ components:
+ - type: Transform
+ pos: 52.5,108.5
+ parent: 1
+ - uid: 10492
+ components:
+ - type: Transform
+ pos: 52.5,104.5
+ parent: 1
+ - uid: 10504
+ components:
+ - type: Transform
+ pos: 53.5,108.5
+ parent: 1
+ - uid: 10516
+ components:
+ - type: Transform
+ pos: 53.5,104.5
+ parent: 1
+ - uid: 10525
+ components:
+ - type: Transform
+ pos: 54.5,111.5
+ parent: 1
+ - uid: 10526
+ components:
+ - type: Transform
+ pos: 54.5,110.5
+ parent: 1
+ - uid: 10530
+ components:
+ - type: Transform
+ pos: 54.5,109.5
+ parent: 1
+ - uid: 10531
+ components:
+ - type: Transform
+ pos: 54.5,108.5
+ parent: 1
+ - uid: 10695
+ components:
+ - type: Transform
+ pos: 51.5,44.5
+ parent: 1
+ - uid: 10699
+ components:
+ - type: Transform
+ pos: 51.5,45.5
+ parent: 1
+ - uid: 10905
+ components:
+ - type: Transform
+ pos: 166.5,145.5
+ parent: 1
+ - uid: 10970
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,112.5
+ parent: 1
+ - uid: 11047
+ components:
+ - type: Transform
+ pos: 131.5,124.5
+ parent: 1
+ - uid: 11346
+ components:
+ - type: Transform
+ pos: 142.5,135.5
+ parent: 1
+ - uid: 11349
+ components:
+ - type: Transform
+ pos: 142.5,133.5
+ parent: 1
+ - uid: 11357
+ components:
+ - type: Transform
+ pos: 142.5,130.5
+ parent: 1
+ - uid: 11792
+ components:
+ - type: Transform
+ pos: 132.5,154.5
+ parent: 1
+ - uid: 11904
+ components:
+ - type: Transform
+ pos: 157.5,147.5
+ parent: 1
+ - uid: 11917
+ components:
+ - type: Transform
+ pos: 50.5,77.5
+ parent: 1
+ - uid: 12138
+ components:
+ - type: Transform
+ pos: 142.5,129.5
+ parent: 1
+ - uid: 12388
+ components:
+ - type: Transform
+ pos: 156.5,57.5
+ parent: 1
+ - uid: 12497
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,127.5
+ parent: 1
+ - uid: 12503
+ components:
+ - type: Transform
+ pos: 68.5,156.5
+ parent: 1
+ - uid: 12504
+ components:
+ - type: Transform
+ pos: 50.5,127.5
+ parent: 1
+ - uid: 12617
+ components:
+ - type: Transform
+ pos: 132.5,153.5
+ parent: 1
+ - uid: 12618
+ components:
+ - type: Transform
+ pos: 132.5,152.5
+ parent: 1
+ - uid: 13117
+ components:
+ - type: Transform
+ pos: 45.5,35.5
+ parent: 1
+ - uid: 13125
+ components:
+ - type: Transform
+ pos: 45.5,42.5
+ parent: 1
+ - uid: 13128
+ components:
+ - type: Transform
+ pos: 45.5,41.5
+ parent: 1
+ - uid: 13154
+ components:
+ - type: Transform
+ pos: 53.5,35.5
+ parent: 1
+ - uid: 13157
+ components:
+ - type: Transform
+ pos: 92.5,133.5
+ parent: 1
+ - uid: 13174
+ components:
+ - type: Transform
+ pos: 143.5,135.5
+ parent: 1
+ - uid: 13203
+ components:
+ - type: Transform
+ pos: 91.5,141.5
+ parent: 1
+ - uid: 13509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,54.5
+ parent: 1
+ - uid: 13637
+ components:
+ - type: Transform
+ pos: 156.5,56.5
+ parent: 1
+ - uid: 13707
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,55.5
+ parent: 1
+ - uid: 13715
+ components:
+ - type: Transform
+ pos: 165.5,142.5
+ parent: 1
+ - uid: 13723
+ components:
+ - type: Transform
+ pos: 132.5,151.5
+ parent: 1
+ - uid: 13729
+ components:
+ - type: Transform
+ pos: 156.5,55.5
+ parent: 1
+ - uid: 13753
+ components:
+ - type: Transform
+ pos: 156.5,54.5
+ parent: 1
+ - uid: 13760
+ components:
+ - type: Transform
+ pos: 165.5,147.5
+ parent: 1
+ - uid: 13771
+ components:
+ - type: Transform
+ pos: 166.5,146.5
+ parent: 1
+ - uid: 13818
+ components:
+ - type: Transform
+ pos: 147.5,135.5
+ parent: 1
+ - uid: 14307
+ components:
+ - type: Transform
+ pos: 92.5,136.5
+ parent: 1
+ - uid: 14448
+ components:
+ - type: Transform
+ pos: 124.5,141.5
+ parent: 1
+ - uid: 14695
+ components:
+ - type: Transform
+ pos: 132.5,150.5
+ parent: 1
+ - uid: 14781
+ components:
+ - type: Transform
+ pos: 94.5,93.5
+ parent: 1
+ - uid: 14782
+ components:
+ - type: Transform
+ pos: 94.5,92.5
+ parent: 1
+ - uid: 14783
+ components:
+ - type: Transform
+ pos: 94.5,91.5
+ parent: 1
+ - uid: 14784
+ components:
+ - type: Transform
+ pos: 94.5,90.5
+ parent: 1
+ - uid: 14856
+ components:
+ - type: Transform
+ pos: 156.5,53.5
+ parent: 1
+ - uid: 14987
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 41.5,44.5
+ parent: 1
+ - uid: 15017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 133.5,120.5
+ parent: 1
+ - uid: 15070
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 129.5,155.5
+ parent: 1
+ - uid: 15092
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,163.5
+ parent: 1
+ - uid: 15130
+ components:
+ - type: Transform
+ pos: 132.5,141.5
+ parent: 1
+ - uid: 15132
+ components:
+ - type: Transform
+ pos: 130.5,141.5
+ parent: 1
+ - uid: 15303
+ components:
+ - type: Transform
+ pos: 133.5,154.5
+ parent: 1
+ - uid: 15407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,77.5
+ parent: 1
+ - uid: 15508
+ components:
+ - type: Transform
+ pos: 84.5,134.5
+ parent: 1
+ - uid: 15664
+ components:
+ - type: Transform
+ pos: 79.5,134.5
+ parent: 1
+ - uid: 15720
+ components:
+ - type: Transform
+ pos: 86.5,128.5
+ parent: 1
+ - uid: 15736
+ components:
+ - type: Transform
+ pos: 79.5,144.5
+ parent: 1
+ - uid: 15765
+ components:
+ - type: Transform
+ pos: 92.5,142.5
+ parent: 1
+ - uid: 15816
+ components:
+ - type: Transform
+ pos: 166.5,142.5
+ parent: 1
+ - uid: 15818
+ components:
+ - type: Transform
+ pos: 135.5,149.5
+ parent: 1
+ - uid: 15821
+ components:
+ - type: Transform
+ pos: 136.5,154.5
+ parent: 1
+ - uid: 15822
+ components:
+ - type: Transform
+ pos: 136.5,149.5
+ parent: 1
+ - uid: 15825
+ components:
+ - type: Transform
+ pos: 137.5,154.5
+ parent: 1
+ - uid: 15826
+ components:
+ - type: Transform
+ pos: 137.5,153.5
+ parent: 1
+ - uid: 15827
+ components:
+ - type: Transform
+ pos: 165.5,138.5
+ parent: 1
+ - uid: 15828
+ components:
+ - type: Transform
+ pos: 137.5,150.5
+ parent: 1
+ - uid: 15829
+ components:
+ - type: Transform
+ pos: 137.5,149.5
+ parent: 1
+ - uid: 15985
+ components:
+ - type: Transform
+ pos: 90.5,133.5
+ parent: 1
+ - uid: 16003
+ components:
+ - type: Transform
+ pos: 92.5,145.5
+ parent: 1
+ - uid: 16004
+ components:
+ - type: Transform
+ pos: 91.5,137.5
+ parent: 1
+ - uid: 16006
+ components:
+ - type: Transform
+ pos: 90.5,136.5
+ parent: 1
+ - uid: 16181
+ components:
+ - type: Transform
+ pos: 159.5,97.5
+ parent: 1
+ - uid: 16213
+ components:
+ - type: Transform
+ pos: 84.5,124.5
+ parent: 1
+ - uid: 16295
+ components:
+ - type: Transform
+ pos: 138.5,154.5
+ parent: 1
+ - uid: 16321
+ components:
+ - type: Transform
+ pos: 94.5,89.5
+ parent: 1
+ - uid: 16340
+ components:
+ - type: Transform
+ pos: 139.5,154.5
+ parent: 1
+ - uid: 16521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 131.5,113.5
+ parent: 1
+ - uid: 16636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,67.5
+ parent: 1
+ - uid: 16637
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,66.5
+ parent: 1
+ - uid: 16638
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,65.5
+ parent: 1
+ - uid: 16652
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,64.5
+ parent: 1
+ - uid: 16691
+ components:
+ - type: Transform
+ pos: 156.5,52.5
+ parent: 1
+ - uid: 16840
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,63.5
+ parent: 1
+ - uid: 16990
+ components:
+ - type: Transform
+ pos: 156.5,51.5
+ parent: 1
+ - uid: 16991
+ components:
+ - type: Transform
+ pos: 156.5,50.5
+ parent: 1
+ - uid: 16992
+ components:
+ - type: Transform
+ pos: 156.5,49.5
+ parent: 1
+ - uid: 17016
+ components:
+ - type: Transform
+ pos: 84.5,110.5
+ parent: 1
+ - uid: 17664
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,62.5
+ parent: 1
+ - uid: 17665
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,67.5
+ parent: 1
+ - uid: 17666
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,67.5
+ parent: 1
+ - uid: 17667
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 48.5,67.5
+ parent: 1
+ - uid: 17668
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,67.5
+ parent: 1
+ - uid: 17670
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,67.5
+ parent: 1
+ - uid: 17760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 122.5,172.5
+ parent: 1
+ - uid: 17928
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,167.5
+ parent: 1
+ - uid: 17929
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,166.5
+ parent: 1
+ - uid: 17940
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,164.5
+ parent: 1
+ - uid: 18032
+ components:
+ - type: Transform
+ pos: 157.5,65.5
+ parent: 1
+ - uid: 18033
+ components:
+ - type: Transform
+ pos: 157.5,64.5
+ parent: 1
+ - uid: 18034
+ components:
+ - type: Transform
+ pos: 157.5,63.5
+ parent: 1
+ - uid: 18035
+ components:
+ - type: Transform
+ pos: 157.5,62.5
+ parent: 1
+ - uid: 18036
+ components:
+ - type: Transform
+ pos: 157.5,61.5
+ parent: 1
+ - uid: 18052
+ components:
+ - type: Transform
+ pos: 157.5,60.5
+ parent: 1
+ - uid: 18053
+ components:
+ - type: Transform
+ pos: 157.5,41.5
+ parent: 1
+ - uid: 18064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 170.5,136.5
+ parent: 1
+ - uid: 18069
+ components:
+ - type: Transform
+ pos: 170.5,133.5
+ parent: 1
+ - uid: 18071
+ components:
+ - type: Transform
+ pos: 170.5,132.5
+ parent: 1
+ - uid: 18077
+ components:
+ - type: Transform
+ pos: 51.5,76.5
+ parent: 1
+ - uid: 18078
+ components:
+ - type: Transform
+ pos: 166.5,131.5
+ parent: 1
+ - uid: 18079
+ components:
+ - type: Transform
+ pos: 166.5,130.5
+ parent: 1
+ - uid: 18190
+ components:
+ - type: Transform
+ pos: 159.5,41.5
+ parent: 1
+ - uid: 18273
+ components:
+ - type: Transform
+ pos: 146.5,102.5
+ parent: 1
+ - uid: 18274
+ components:
+ - type: Transform
+ pos: 146.5,106.5
+ parent: 1
+ - uid: 18440
+ components:
+ - type: Transform
+ pos: 141.5,111.5
+ parent: 1
+ - uid: 18583
+ components:
+ - type: Transform
+ pos: 140.5,157.5
+ parent: 1
+ - uid: 18663
+ components:
+ - type: Transform
+ pos: 140.5,154.5
+ parent: 1
+ - uid: 18859
+ components:
+ - type: Transform
+ pos: 154.5,147.5
+ parent: 1
+ - uid: 18866
+ components:
+ - type: Transform
+ pos: 85.5,58.5
+ parent: 1
+ - uid: 19017
+ components:
+ - type: Transform
+ pos: 144.5,157.5
+ parent: 1
+ - uid: 19020
+ components:
+ - type: Transform
+ pos: 144.5,154.5
+ parent: 1
+ - uid: 19359
+ components:
+ - type: Transform
+ pos: 160.5,60.5
+ parent: 1
+ - uid: 19446
+ components:
+ - type: Transform
+ pos: 160.5,58.5
+ parent: 1
+ - uid: 19469
+ components:
+ - type: Transform
+ pos: 160.5,56.5
+ parent: 1
+ - uid: 19493
+ components:
+ - type: Transform
+ pos: 155.5,88.5
+ parent: 1
+ - uid: 19585
+ components:
+ - type: Transform
+ pos: 160.5,54.5
+ parent: 1
+ - uid: 19685
+ components:
+ - type: Transform
+ pos: 160.5,53.5
+ parent: 1
+ - uid: 19753
+ components:
+ - type: Transform
+ pos: 148.5,157.5
+ parent: 1
+ - uid: 19754
+ components:
+ - type: Transform
+ pos: 148.5,154.5
+ parent: 1
+ - uid: 19755
+ components:
+ - type: Transform
+ pos: 152.5,157.5
+ parent: 1
+ - uid: 19841
+ components:
+ - type: Transform
+ pos: 152.5,154.5
+ parent: 1
+ - uid: 19843
+ components:
+ - type: Transform
+ pos: 153.5,154.5
+ parent: 1
+ - uid: 19845
+ components:
+ - type: Transform
+ pos: 154.5,154.5
+ parent: 1
+ - uid: 19859
+ components:
+ - type: Transform
+ pos: 161.5,60.5
+ parent: 1
+ - uid: 19956
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,128.5
+ parent: 1
+ - uid: 19986
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 49.5,108.5
+ parent: 1
+ - uid: 20413
+ components:
+ - type: Transform
+ pos: 162.5,53.5
+ parent: 1
+ - uid: 20414
+ components:
+ - type: Transform
+ pos: 162.5,42.5
+ parent: 1
+ - uid: 20427
+ components:
+ - type: Transform
+ pos: 163.5,53.5
+ parent: 1
+ - uid: 20734
+ components:
+ - type: Transform
+ pos: 163.5,43.5
+ parent: 1
+ - uid: 20768
+ components:
+ - type: Transform
+ pos: 164.5,60.5
+ parent: 1
+ - uid: 20770
+ components:
+ - type: Transform
+ pos: 155.5,154.5
+ parent: 1
+ - uid: 20779
+ components:
+ - type: Transform
+ pos: 164.5,59.5
+ parent: 1
+ - uid: 20782
+ components:
+ - type: Transform
+ pos: 164.5,55.5
+ parent: 1
+ - uid: 20790
+ components:
+ - type: Transform
+ pos: 164.5,54.5
+ parent: 1
+ - uid: 20841
+ components:
+ - type: Transform
+ pos: 53.5,105.5
+ parent: 1
+ - uid: 20846
+ components:
+ - type: Transform
+ pos: 142.5,42.5
+ parent: 1
+ - uid: 20848
+ components:
+ - type: Transform
+ pos: 53.5,107.5
+ parent: 1
+ - uid: 20884
+ components:
+ - type: Transform
+ pos: 164.5,43.5
+ parent: 1
+ - uid: 20886
+ components:
+ - type: Transform
+ pos: 102.5,163.5
+ parent: 1
+ - uid: 20944
+ components:
+ - type: Transform
+ pos: 53.5,106.5
+ parent: 1
+ - uid: 21085
+ components:
+ - type: Transform
+ pos: 156.5,94.5
+ parent: 1
+ - uid: 21086
+ components:
+ - type: Transform
+ pos: 147.5,134.5
+ parent: 1
+ - uid: 22100
+ components:
+ - type: Transform
+ pos: 157.5,84.5
+ parent: 1
+ - uid: 22483
+ components:
+ - type: Transform
+ pos: 147.5,129.5
+ parent: 1
+ - uid: 22487
+ components:
+ - type: Transform
+ pos: 142.5,132.5
+ parent: 1
+ - uid: 22498
+ components:
+ - type: Transform
+ pos: 143.5,129.5
+ parent: 1
+ - uid: 22796
+ components:
+ - type: Transform
+ pos: 135.5,67.5
+ parent: 1
+ - uid: 22797
+ components:
+ - type: Transform
+ pos: 133.5,67.5
+ parent: 1
+ - uid: 22798
+ components:
+ - type: Transform
+ pos: 130.5,67.5
+ parent: 1
+ - uid: 23082
+ components:
+ - type: Transform
+ pos: 158.5,151.5
+ parent: 1
+ - uid: 23132
+ components:
+ - type: Transform
+ pos: 51.5,104.5
+ parent: 1
+ - uid: 23251
+ components:
+ - type: Transform
+ pos: 159.5,84.5
+ parent: 1
+ - uid: 23299
+ components:
+ - type: Transform
+ pos: 161.5,83.5
+ parent: 1
+ - uid: 23315
+ components:
+ - type: Transform
+ pos: 90.5,145.5
+ parent: 1
+ - uid: 23334
+ components:
+ - type: Transform
+ pos: 164.5,130.5
+ parent: 1
+ - uid: 23341
+ components:
+ - type: Transform
+ pos: 53.5,76.5
+ parent: 1
+ - uid: 23353
+ components:
+ - type: Transform
+ pos: 90.5,54.5
+ parent: 1
+ - uid: 23357
+ components:
+ - type: Transform
+ pos: 17.5,98.5
+ parent: 1
+ - uid: 23366
+ components:
+ - type: Transform
+ pos: 41.5,90.5
+ parent: 1
+ - uid: 23559
+ components:
+ - type: Transform
+ pos: 165.5,149.5
+ parent: 1
+ - uid: 23560
+ components:
+ - type: Transform
+ pos: 165.5,139.5
+ parent: 1
+ - uid: 23618
+ components:
+ - type: Transform
+ pos: 87.5,45.5
+ parent: 1
+ - uid: 23634
+ components:
+ - type: Transform
+ pos: 54.5,69.5
+ parent: 1
+ - uid: 23642
+ components:
+ - type: Transform
+ pos: 48.5,77.5
+ parent: 1
+ - uid: 23643
+ components:
+ - type: Transform
+ pos: 45.5,71.5
+ parent: 1
+ - uid: 23656
+ components:
+ - type: Transform
+ pos: 162.5,82.5
+ parent: 1
+ - uid: 23855
+ components:
+ - type: Transform
+ pos: 162.5,81.5
+ parent: 1
+ - uid: 23857
+ components:
+ - type: Transform
+ pos: 162.5,80.5
+ parent: 1
+ - uid: 23891
+ components:
+ - type: Transform
+ pos: 158.5,150.5
+ parent: 1
+ - uid: 23892
+ components:
+ - type: Transform
+ pos: 158.5,149.5
+ parent: 1
+ - uid: 23956
+ components:
+ - type: Transform
+ pos: 78.5,71.5
+ parent: 1
+ - uid: 24021
+ components:
+ - type: Transform
+ pos: 78.5,77.5
+ parent: 1
+ - uid: 24188
+ components:
+ - type: Transform
+ pos: 147.5,130.5
+ parent: 1
+ - uid: 24203
+ components:
+ - type: Transform
+ pos: 161.5,150.5
+ parent: 1
+ - uid: 24207
+ components:
+ - type: Transform
+ pos: 160.5,147.5
+ parent: 1
+ - uid: 24226
+ components:
+ - type: Transform
+ pos: 162.5,78.5
+ parent: 1
+ - uid: 24292
+ components:
+ - type: Transform
+ pos: 87.5,44.5
+ parent: 1
+ - uid: 24298
+ components:
+ - type: Transform
+ pos: 90.5,58.5
+ parent: 1
+ - uid: 24313
+ components:
+ - type: Transform
+ pos: 90.5,116.5
+ parent: 1
+ - uid: 24316
+ components:
+ - type: Transform
+ pos: 90.5,112.5
+ parent: 1
+ - uid: 24317
+ components:
+ - type: Transform
+ pos: 91.5,116.5
+ parent: 1
+ - uid: 24320
+ components:
+ - type: Transform
+ pos: 92.5,116.5
+ parent: 1
+ - uid: 24321
+ components:
+ - type: Transform
+ pos: 97.5,111.5
+ parent: 1
+ - uid: 24322
+ components:
+ - type: Transform
+ pos: 97.5,112.5
+ parent: 1
+ - uid: 24325
+ components:
+ - type: Transform
+ pos: 97.5,116.5
+ parent: 1
+ - uid: 24415
+ components:
+ - type: Transform
+ pos: 36.5,83.5
+ parent: 1
+ - uid: 24422
+ components:
+ - type: Transform
+ pos: 151.5,51.5
+ parent: 1
+ - uid: 24428
+ components:
+ - type: Transform
+ pos: 162.5,76.5
+ parent: 1
+ - uid: 24575
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,57.5
+ parent: 1
+ - uid: 24623
+ components:
+ - type: Transform
+ pos: 62.5,50.5
+ parent: 1
+ - uid: 24671
+ components:
+ - type: Transform
+ pos: 162.5,73.5
+ parent: 1
+ - uid: 25118
+ components:
+ - type: Transform
+ pos: 162.5,72.5
+ parent: 1
+ - uid: 25140
+ components:
+ - type: Transform
+ pos: 162.5,70.5
+ parent: 1
+ - uid: 25142
+ components:
+ - type: Transform
+ pos: 162.5,68.5
+ parent: 1
+ - uid: 25233
+ components:
+ - type: Transform
+ pos: 97.5,113.5
+ parent: 1
+ - uid: 25256
+ components:
+ - type: Transform
+ pos: 97.5,114.5
+ parent: 1
+ - uid: 25258
+ components:
+ - type: Transform
+ pos: 96.5,116.5
+ parent: 1
+ - uid: 25259
+ components:
+ - type: Transform
+ pos: 97.5,115.5
+ parent: 1
+ - uid: 25360
+ components:
+ - type: Transform
+ pos: 162.5,67.5
+ parent: 1
+ - uid: 25380
+ components:
+ - type: Transform
+ pos: 29.5,105.5
+ parent: 1
+ - uid: 25495
+ components:
+ - type: Transform
+ pos: 92.5,111.5
+ parent: 1
+ - uid: 25496
+ components:
+ - type: Transform
+ pos: 94.5,111.5
+ parent: 1
+ - uid: 25497
+ components:
+ - type: Transform
+ pos: 95.5,111.5
+ parent: 1
+ - uid: 25498
+ components:
+ - type: Transform
+ pos: 96.5,111.5
+ parent: 1
+ - uid: 25499
+ components:
+ - type: Transform
+ pos: 93.5,111.5
+ parent: 1
+ - uid: 25530
+ components:
+ - type: Transform
+ pos: 29.5,103.5
+ parent: 1
+ - uid: 25551
+ components:
+ - type: Transform
+ pos: 29.5,102.5
+ parent: 1
+ - uid: 25602
+ components:
+ - type: Transform
+ pos: 30.5,102.5
+ parent: 1
+ - uid: 25604
+ components:
+ - type: Transform
+ pos: 36.5,82.5
+ parent: 1
+ - uid: 25845
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,56.5
+ parent: 1
+ - uid: 25855
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,29.5
+ parent: 1
+ - uid: 25925
+ components:
+ - type: Transform
+ pos: 36.5,81.5
+ parent: 1
+ - uid: 26553
+ components:
+ - type: Transform
+ pos: 62.5,52.5
+ parent: 1
+ - uid: 26592
+ components:
+ - type: Transform
+ pos: 37.5,81.5
+ parent: 1
+ - uid: 26593
+ components:
+ - type: Transform
+ pos: 38.5,81.5
+ parent: 1
+ - uid: 26666
+ components:
+ - type: Transform
+ pos: 163.5,77.5
+ parent: 1
+ - uid: 26667
+ components:
+ - type: Transform
+ pos: 163.5,67.5
+ parent: 1
+ - uid: 26669
+ components:
+ - type: Transform
+ pos: 39.5,81.5
+ parent: 1
+ - uid: 26670
+ components:
+ - type: Transform
+ pos: 163.5,64.5
+ parent: 1
+ - uid: 26672
+ components:
+ - type: Transform
+ pos: 163.5,62.5
+ parent: 1
+ - uid: 26673
+ components:
+ - type: Transform
+ pos: 163.5,61.5
+ parent: 1
+ - uid: 26676
+ components:
+ - type: Transform
+ pos: 165.5,81.5
+ parent: 1
+ - uid: 26677
+ components:
+ - type: Transform
+ pos: 165.5,80.5
+ parent: 1
+ - uid: 26805
+ components:
+ - type: Transform
+ pos: 165.5,78.5
+ parent: 1
+ - uid: 26812
+ components:
+ - type: Transform
+ pos: 40.5,81.5
+ parent: 1
+ - uid: 26814
+ components:
+ - type: Transform
+ pos: 41.5,82.5
+ parent: 1
+ - uid: 26816
+ components:
+ - type: Transform
+ pos: 41.5,81.5
+ parent: 1
+ - uid: 26874
+ components:
+ - type: Transform
+ pos: 58.5,60.5
+ parent: 1
+ - uid: 26978
+ components:
+ - type: Transform
+ pos: 131.5,141.5
+ parent: 1
+ - uid: 26993
+ components:
+ - type: Transform
+ pos: 87.5,43.5
+ parent: 1
+ - uid: 27047
+ components:
+ - type: Transform
+ pos: 78.5,76.5
+ parent: 1
+ - uid: 27106
+ components:
+ - type: Transform
+ pos: 165.5,77.5
+ parent: 1
+ - uid: 27114
+ components:
+ - type: Transform
+ pos: 78.5,72.5
+ parent: 1
+ - uid: 27166
+ components:
+ - type: Transform
+ pos: 78.5,74.5
+ parent: 1
+ - uid: 27265
+ components:
+ - type: Transform
+ pos: 88.5,58.5
+ parent: 1
+ - uid: 27361
+ components:
+ - type: Transform
+ pos: 41.5,46.5
+ parent: 1
+ - uid: 27420
+ components:
+ - type: Transform
+ pos: 36.5,84.5
+ parent: 1
+ - uid: 27458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,33.5
+ parent: 1
+ - uid: 27459
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,34.5
+ parent: 1
+ - uid: 27488
+ components:
+ - type: Transform
+ pos: 147.5,132.5
+ parent: 1
+ - uid: 27489
+ components:
+ - type: Transform
+ pos: 144.5,129.5
+ parent: 1
+ - uid: 27959
+ components:
+ - type: Transform
+ pos: 145.5,129.5
+ parent: 1
+ - uid: 27960
+ components:
+ - type: Transform
+ pos: 146.5,129.5
+ parent: 1
+ - uid: 28355
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,90.5
+ parent: 1
+ - uid: 28357
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,90.5
+ parent: 1
+ - uid: 28958
+ components:
+ - type: Transform
+ pos: 89.5,44.5
+ parent: 1
+ - uid: 28985
+ components:
+ - type: Transform
+ pos: 35.5,95.5
+ parent: 1
+ - uid: 28986
+ components:
+ - type: Transform
+ pos: 35.5,85.5
+ parent: 1
+ - uid: 29032
+ components:
+ - type: Transform
+ pos: 36.5,85.5
+ parent: 1
+ - uid: 29098
+ components:
+ - type: Transform
+ pos: 38.5,95.5
+ parent: 1
+ - uid: 29101
+ components:
+ - type: Transform
+ pos: 39.5,95.5
+ parent: 1
+ - uid: 29102
+ components:
+ - type: Transform
+ pos: 39.5,85.5
+ parent: 1
+ - uid: 29105
+ components:
+ - type: Transform
+ pos: 40.5,95.5
+ parent: 1
+ - uid: 29111
+ components:
+ - type: Transform
+ pos: 40.5,85.5
+ parent: 1
+ - uid: 29117
+ components:
+ - type: Transform
+ pos: 41.5,95.5
+ parent: 1
+ - uid: 29119
+ components:
+ - type: Transform
+ pos: 41.5,94.5
+ parent: 1
+ - uid: 29120
+ components:
+ - type: Transform
+ pos: 121.5,24.5
+ parent: 1
+ - uid: 29122
+ components:
+ - type: Transform
+ pos: 41.5,86.5
+ parent: 1
+ - uid: 29169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,17.5
+ parent: 1
+ - uid: 29176
+ components:
+ - type: Transform
+ pos: 14.5,109.5
+ parent: 1
+ - uid: 29177
+ components:
+ - type: Transform
+ pos: 14.5,108.5
+ parent: 1
+ - uid: 29178
+ components:
+ - type: Transform
+ pos: 14.5,106.5
+ parent: 1
+ - uid: 29180
+ components:
+ - type: Transform
+ pos: 15.5,105.5
+ parent: 1
+ - uid: 29185
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,15.5
+ parent: 1
+ - uid: 29186
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,15.5
+ parent: 1
+ - uid: 29187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,16.5
+ parent: 1
+ - uid: 29255
+ components:
+ - type: Transform
+ pos: 41.5,85.5
+ parent: 1
+ - uid: 29519
+ components:
+ - type: Transform
+ pos: 101.5,163.5
+ parent: 1
+ - uid: 29521
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,72.5
+ parent: 1
+ - uid: 29524
+ components:
+ - type: Transform
+ pos: 54.5,155.5
+ parent: 1
+ - uid: 29549
+ components:
+ - type: Transform
+ pos: 138.5,91.5
+ parent: 1
+ - uid: 29941
+ components:
+ - type: Transform
+ pos: 150.5,147.5
+ parent: 1
+ - uid: 29942
+ components:
+ - type: Transform
+ pos: 150.5,149.5
+ parent: 1
+ - uid: 30012
+ components:
+ - type: Transform
+ pos: 142.5,154.5
+ parent: 1
+ - uid: 30026
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,155.5
+ parent: 1
+ - uid: 30027
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,156.5
+ parent: 1
+ - uid: 30102
+ components:
+ - type: Transform
+ pos: 142.5,157.5
+ parent: 1
+ - uid: 30104
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,155.5
+ parent: 1
+ - uid: 30105
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,157.5
+ parent: 1
+ - uid: 30106
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 150.5,154.5
+ parent: 1
+ - uid: 30107
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,156.5
+ parent: 1
+ - uid: 30108
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 152.5,155.5
+ parent: 1
+ - uid: 30115
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 148.5,156.5
+ parent: 1
+ - uid: 30135
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,156.5
+ parent: 1
+ - uid: 30138
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 144.5,155.5
+ parent: 1
+ - uid: 30154
+ components:
+ - type: Transform
+ pos: 90.5,57.5
+ parent: 1
+ - uid: 30182
+ components:
+ - type: Transform
+ pos: 133.5,87.5
+ parent: 1
+ - uid: 30209
+ components:
+ - type: Transform
+ pos: 164.5,150.5
+ parent: 1
+ - uid: 30213
+ components:
+ - type: Transform
+ pos: 162.5,150.5
+ parent: 1
+ - uid: 30215
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,150.5
+ parent: 1
+ - uid: 30222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 80.5,129.5
+ parent: 1
+ - uid: 30335
+ components:
+ - type: Transform
+ pos: 63.5,155.5
+ parent: 1
+ - uid: 30351
+ components:
+ - type: Transform
+ pos: 65.5,155.5
+ parent: 1
+ - uid: 30355
+ components:
+ - type: Transform
+ pos: 64.5,123.5
+ parent: 1
+ - uid: 30356
+ components:
+ - type: Transform
+ pos: 65.5,123.5
+ parent: 1
+ - uid: 30394
+ components:
+ - type: Transform
+ pos: 47.5,77.5
+ parent: 1
+ - uid: 30397
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,127.5
+ parent: 1
+ - uid: 30598
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,30.5
+ parent: 1
+ - uid: 30612
+ components:
+ - type: Transform
+ pos: 161.5,146.5
+ parent: 1
+ - uid: 30629
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,89.5
+ parent: 1
+ - uid: 30632
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 61.5,32.5
+ parent: 1
+ - uid: 30656
+ components:
+ - type: Transform
+ pos: 164.5,146.5
+ parent: 1
+ - uid: 30729
+ components:
+ - type: Transform
+ pos: 145.5,109.5
+ parent: 1
+ - uid: 30731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,121.5
+ parent: 1
+ - uid: 30788
+ components:
+ - type: Transform
+ pos: 90.5,53.5
+ parent: 1
+ - uid: 30796
+ components:
+ - type: Transform
+ pos: 87.5,46.5
+ parent: 1
+ - uid: 30811
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 45.5,75.5
+ parent: 1
+ - uid: 30815
+ components:
+ - type: Transform
+ pos: 101.5,164.5
+ parent: 1
+ - uid: 30862
+ components:
+ - type: Transform
+ pos: 89.5,46.5
+ parent: 1
+ - uid: 30889
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,150.5
+ parent: 1
+ - uid: 31147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 78.5,128.5
+ parent: 1
+ - uid: 31769
+ components:
+ - type: Transform
+ pos: 36.5,95.5
+ parent: 1
+ - uid: 31797
+ components:
+ - type: Transform
+ pos: 89.5,43.5
+ parent: 1
+ - uid: 31951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,76.5
+ parent: 1
+ - uid: 31977
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,73.5
+ parent: 1
+ - uid: 31978
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,72.5
+ parent: 1
+ - uid: 31982
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 45.5,68.5
+ parent: 1
+ - uid: 31993
+ components:
+ - type: Transform
+ pos: 126.5,155.5
+ parent: 1
+ - uid: 32002
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 139.5,123.5
+ parent: 1
+ - uid: 32047
+ components:
+ - type: Transform
+ pos: 140.5,132.5
+ parent: 1
+ - uid: 32048
+ components:
+ - type: Transform
+ pos: 140.5,133.5
+ parent: 1
+ - uid: 32097
+ components:
+ - type: Transform
+ pos: 86.5,144.5
+ parent: 1
+ - uid: 32255
+ components:
+ - type: Transform
+ pos: 62.5,53.5
+ parent: 1
+ - uid: 32256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,30.5
+ parent: 1
+ - uid: 32264
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,47.5
+ parent: 1
+ - uid: 32267
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,44.5
+ parent: 1
+ - uid: 32268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 58.5,43.5
+ parent: 1
+ - uid: 32289
+ components:
+ - type: Transform
+ pos: 88.5,53.5
+ parent: 1
+ - uid: 32292
+ components:
+ - type: Transform
+ pos: 88.5,46.5
+ parent: 1
+ - uid: 32377
+ components:
+ - type: Transform
+ pos: 135.5,87.5
+ parent: 1
+ - uid: 32388
+ components:
+ - type: Transform
+ pos: 138.5,92.5
+ parent: 1
+ - uid: 32435
+ components:
+ - type: Transform
+ pos: 42.5,127.5
+ parent: 1
+ - uid: 33000
+ components:
+ - type: Transform
+ pos: 152.5,147.5
+ parent: 1
+ - uid: 33896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,28.5
+ parent: 1
+ - uid: 33912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,41.5
+ parent: 1
+ - uid: 34225
+ components:
+ - type: Transform
+ pos: 144.5,43.5
+ parent: 1
+ - uid: 34228
+ components:
+ - type: Transform
+ pos: 50.5,72.5
+ parent: 1
+ - uid: 34411
+ components:
+ - type: Transform
+ pos: 66.5,155.5
+ parent: 1
+ - uid: 34417
+ components:
+ - type: Transform
+ pos: 63.5,123.5
+ parent: 1
+ - uid: 34418
+ components:
+ - type: Transform
+ pos: 67.5,155.5
+ parent: 1
+ - uid: 34602
+ components:
+ - type: Transform
+ pos: 138.5,93.5
+ parent: 1
+ - uid: 34605
+ components:
+ - type: Transform
+ pos: 138.5,89.5
+ parent: 1
+ - uid: 34659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,125.5
+ parent: 1
+ - uid: 34687
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,126.5
+ parent: 1
+ - uid: 34711
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,82.5
+ parent: 1
+ - uid: 34728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 156.5,150.5
+ parent: 1
+ - uid: 34738
+ components:
+ - type: Transform
+ pos: 156.5,88.5
+ parent: 1
+ - uid: 34967
+ components:
+ - type: Transform
+ pos: 151.5,147.5
+ parent: 1
+ - uid: 35083
+ components:
+ - type: Transform
+ pos: 138.5,88.5
+ parent: 1
+ - uid: 35084
+ components:
+ - type: Transform
+ pos: 138.5,94.5
+ parent: 1
+ - uid: 35085
+ components:
+ - type: Transform
+ pos: 131.5,87.5
+ parent: 1
+ - uid: 35086
+ components:
+ - type: Transform
+ pos: 136.5,87.5
+ parent: 1
+ - uid: 35090
+ components:
+ - type: Transform
+ pos: 138.5,90.5
+ parent: 1
+ - uid: 35124
+ components:
+ - type: Transform
+ pos: 162.5,146.5
+ parent: 1
+ - uid: 35204
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,129.5
+ parent: 1
+ - uid: 35659
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 84.5,133.5
+ parent: 1
+ - uid: 35832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,128.5
+ parent: 1
+ - uid: 35836
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,132.5
+ parent: 1
+ - uid: 35839
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,134.5
+ parent: 1
+ - uid: 36536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 126.5,160.5
+ parent: 1
+ - uid: 36763
+ components:
+ - type: Transform
+ pos: 90.5,142.5
+ parent: 1
+ - uid: 36764
+ components:
+ - type: Transform
+ pos: 78.5,134.5
+ parent: 1
+ - uid: 36765
+ components:
+ - type: Transform
+ pos: 78.5,144.5
+ parent: 1
+ - uid: 37139
+ components:
+ - type: Transform
+ pos: 161.5,147.5
+ parent: 1
+ - uid: 37142
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 170.5,137.5
+ parent: 1
+- proto: WallReinforcedRust
+ entities:
+ - uid: 651
+ components:
+ - type: Transform
+ pos: 76.5,163.5
+ parent: 1
+ - uid: 657
+ components:
+ - type: Transform
+ pos: 89.5,170.5
+ parent: 1
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 30.5,78.5
+ parent: 1
+ - uid: 884
+ components:
+ - type: Transform
+ pos: 30.5,76.5
+ parent: 1
+ - uid: 885
+ components:
+ - type: Transform
+ pos: 30.5,74.5
+ parent: 1
+ - uid: 910
+ components:
+ - type: Transform
+ pos: 30.5,73.5
+ parent: 1
+ - uid: 916
+ components:
+ - type: Transform
+ pos: 30.5,69.5
+ parent: 1
+ - uid: 917
+ components:
+ - type: Transform
+ pos: 30.5,68.5
+ parent: 1
+ - uid: 918
+ components:
+ - type: Transform
+ pos: 30.5,66.5
+ parent: 1
+ - uid: 1001
+ components:
+ - type: Transform
+ pos: 32.5,78.5
+ parent: 1
+ - uid: 1002
+ components:
+ - type: Transform
+ pos: 33.5,78.5
+ parent: 1
+ - uid: 1003
+ components:
+ - type: Transform
+ pos: 34.5,78.5
+ parent: 1
+ - uid: 1010
+ components:
+ - type: Transform
+ pos: 37.5,78.5
+ parent: 1
+ - uid: 1039
+ components:
+ - type: Transform
+ pos: 39.5,78.5
+ parent: 1
+ - uid: 1040
+ components:
+ - type: Transform
+ pos: 41.5,78.5
+ parent: 1
+ - uid: 1077
+ components:
+ - type: Transform
+ pos: 25.5,117.5
+ parent: 1
+ - uid: 1078
+ components:
+ - type: Transform
+ pos: 25.5,114.5
+ parent: 1
+ - uid: 1114
+ components:
+ - type: Transform
+ pos: 25.5,111.5
+ parent: 1
+ - uid: 1115
+ components:
+ - type: Transform
+ pos: 25.5,109.5
+ parent: 1
+ - uid: 1331
+ components:
+ - type: Transform
+ pos: 27.5,95.5
+ parent: 1
+ - uid: 1332
+ components:
+ - type: Transform
+ pos: 27.5,85.5
+ parent: 1
+ - uid: 1334
+ components:
+ - type: Transform
+ pos: 28.5,118.5
+ parent: 1
+ - uid: 1348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,39.5
+ parent: 1
+ - uid: 1366
+ components:
+ - type: Transform
+ pos: 28.5,85.5
+ parent: 1
+ - uid: 1367
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,143.5
+ parent: 1
+ - uid: 1368
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,141.5
+ parent: 1
+ - uid: 1369
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,139.5
+ parent: 1
+ - uid: 1461
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,147.5
+ parent: 1
+ - uid: 1463
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,145.5
+ parent: 1
+ - uid: 1476
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,134.5
+ parent: 1
+ - uid: 1478
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,150.5
+ parent: 1
+ - uid: 1479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,148.5
+ parent: 1
+ - uid: 1480
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,131.5
+ parent: 1
+ - uid: 1481
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,129.5
+ parent: 1
+ - uid: 1500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,154.5
+ parent: 1
+ - uid: 1501
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,153.5
+ parent: 1
+ - uid: 1502
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,126.5
+ parent: 1
+ - uid: 1505
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,125.5
+ parent: 1
+ - uid: 1542
+ components:
+ - type: Transform
+ pos: 17.5,119.5
+ parent: 1
+ - uid: 1544
+ components:
+ - type: Transform
+ pos: 17.5,117.5
+ parent: 1
+ - uid: 1545
+ components:
+ - type: Transform
+ pos: 17.5,115.5
+ parent: 1
+ - uid: 1572
+ components:
+ - type: Transform
+ pos: 17.5,109.5
+ parent: 1
+ - uid: 1574
+ components:
+ - type: Transform
+ pos: 17.5,103.5
+ parent: 1
+ - uid: 1580
+ components:
+ - type: Transform
+ pos: 17.5,96.5
+ parent: 1
+ - uid: 1581
+ components:
+ - type: Transform
+ pos: 17.5,95.5
+ parent: 1
+ - uid: 1640
+ components:
+ - type: Transform
+ pos: 17.5,92.5
+ parent: 1
+ - uid: 1668
+ components:
+ - type: Transform
+ pos: 17.5,87.5
+ parent: 1
+ - uid: 1677
+ components:
+ - type: Transform
+ pos: 18.5,81.5
+ parent: 1
+ - uid: 1678
+ components:
+ - type: Transform
+ pos: 18.5,77.5
+ parent: 1
+ - uid: 1679
+ components:
+ - type: Transform
+ pos: 19.5,89.5
+ parent: 1
+ - uid: 1692
+ components:
+ - type: Transform
+ pos: 19.5,85.5
+ parent: 1
+ - uid: 1698
+ components:
+ - type: Transform
+ pos: 19.5,76.5
+ parent: 1
+ - uid: 1710
+ components:
+ - type: Transform
+ pos: 19.5,68.5
+ parent: 1
+ - uid: 1712
+ components:
+ - type: Transform
+ pos: 20.5,125.5
+ parent: 1
+ - uid: 1722
+ components:
+ - type: Transform
+ pos: 20.5,123.5
+ parent: 1
+ - uid: 1725
+ components:
+ - type: Transform
+ pos: 20.5,120.5
+ parent: 1
+ - uid: 1727
+ components:
+ - type: Transform
+ pos: 20.5,89.5
+ parent: 1
+ - uid: 1739
+ components:
+ - type: Transform
+ pos: 20.5,81.5
+ parent: 1
+ - uid: 1741
+ components:
+ - type: Transform
+ pos: 20.5,77.5
+ parent: 1
+ - uid: 1764
+ components:
+ - type: Transform
+ pos: 20.5,67.5
+ parent: 1
+ - uid: 1768
+ components:
+ - type: Transform
+ pos: 21.5,67.5
+ parent: 1
+ - uid: 1966
+ components:
+ - type: Transform
+ pos: 24.5,67.5
+ parent: 1
+ - uid: 2041
+ components:
+ - type: Transform
+ pos: 25.5,125.5
+ parent: 1
+ - uid: 2135
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,72.5
+ parent: 1
+ - uid: 2137
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,70.5
+ parent: 1
+ - uid: 2138
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,69.5
+ parent: 1
+ - uid: 2183
+ components:
+ - type: Transform
+ pos: 29.5,125.5
+ parent: 1
+ - uid: 2186
+ components:
+ - type: Transform
+ pos: 29.5,66.5
+ parent: 1
+ - uid: 2237
+ components:
+ - type: Transform
+ pos: 31.5,124.5
+ parent: 1
+ - uid: 2296
+ components:
+ - type: Transform
+ pos: 35.5,127.5
+ parent: 1
+ - uid: 2394
+ components:
+ - type: Transform
+ pos: 35.5,125.5
+ parent: 1
+ - uid: 2456
+ components:
+ - type: Transform
+ pos: 35.5,124.5
+ parent: 1
+ - uid: 2512
+ components:
+ - type: Transform
+ pos: 36.5,127.5
+ parent: 1
+ - uid: 2584
+ components:
+ - type: Transform
+ pos: 44.5,127.5
+ parent: 1
+ - uid: 2659
+ components:
+ - type: Transform
+ pos: 47.5,127.5
+ parent: 1
+ - uid: 3035
+ components:
+ - type: Transform
+ pos: 51.5,154.5
+ parent: 1
+ - uid: 3147
+ components:
+ - type: Transform
+ pos: 51.5,150.5
+ parent: 1
+ - uid: 3290
+ components:
+ - type: Transform
+ pos: 51.5,146.5
+ parent: 1
+ - uid: 3291
+ components:
+ - type: Transform
+ pos: 51.5,145.5
+ parent: 1
+ - uid: 3417
+ components:
+ - type: Transform
+ pos: 51.5,139.5
+ parent: 1
+ - uid: 3418
+ components:
+ - type: Transform
+ pos: 51.5,138.5
+ parent: 1
+ - uid: 3425
+ components:
+ - type: Transform
+ pos: 51.5,136.5
+ parent: 1
+ - uid: 3769
+ components:
+ - type: Transform
+ pos: 52.5,155.5
+ parent: 1
+ - uid: 3770
+ components:
+ - type: Transform
+ pos: 52.5,144.5
+ parent: 1
+ - uid: 3869
+ components:
+ - type: Transform
+ pos: 54.5,144.5
+ parent: 1
+ - uid: 4027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 72.5,81.5
+ parent: 1
+ - uid: 4133
+ components:
+ - type: Transform
+ pos: 116.5,18.5
+ parent: 1
+ - uid: 4135
+ components:
+ - type: Transform
+ pos: 122.5,24.5
+ parent: 1
+ - uid: 4175
+ components:
+ - type: Transform
+ pos: 124.5,24.5
+ parent: 1
+ - uid: 4181
+ components:
+ - type: Transform
+ pos: 54.5,137.5
+ parent: 1
+ - uid: 4205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,81.5
+ parent: 1
+ - uid: 4269
+ components:
+ - type: Transform
+ pos: 115.5,16.5
+ parent: 1
+ - uid: 4270
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,43.5
+ parent: 1
+ - uid: 4336
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,33.5
+ parent: 1
+ - uid: 4426
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,35.5
+ parent: 1
+ - uid: 4486
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,32.5
+ parent: 1
+ - uid: 4487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,30.5
+ parent: 1
+ - uid: 4537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,48.5
+ parent: 1
+ - uid: 4544
+ components:
+ - type: Transform
+ pos: 55.5,155.5
+ parent: 1
+ - uid: 4584
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,37.5
+ parent: 1
+ - uid: 4644
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,28.5
+ parent: 1
+ - uid: 4645
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,25.5
+ parent: 1
+ - uid: 4646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,22.5
+ parent: 1
+ - uid: 4647
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,19.5
+ parent: 1
+ - uid: 4730
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,27.5
+ parent: 1
+ - uid: 4731
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,26.5
+ parent: 1
+ - uid: 4773
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,24.5
+ parent: 1
+ - uid: 4774
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,23.5
+ parent: 1
+ - uid: 4776
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,21.5
+ parent: 1
+ - uid: 4777
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,19.5
+ parent: 1
+ - uid: 4781
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,17.5
+ parent: 1
+ - uid: 4782
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,15.5
+ parent: 1
+ - uid: 4784
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,14.5
+ parent: 1
+ - uid: 4785
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,17.5
+ parent: 1
+ - uid: 4786
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,16.5
+ parent: 1
+ - uid: 4787
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,15.5
+ parent: 1
+ - uid: 4788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,15.5
+ parent: 1
+ - uid: 4789
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,23.5
+ parent: 1
+ - uid: 4790
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,21.5
+ parent: 1
+ - uid: 4791
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,19.5
+ parent: 1
+ - uid: 4797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,19.5
+ parent: 1
+ - uid: 4835
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,23.5
+ parent: 1
+ - uid: 4836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,21.5
+ parent: 1
+ - uid: 4885
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,20.5
+ parent: 1
+ - uid: 4887
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,19.5
+ parent: 1
+ - uid: 4890
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 73.5,15.5
+ parent: 1
+ - uid: 4892
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,15.5
+ parent: 1
+ - uid: 4893
+ components:
+ - type: Transform
+ pos: 85.5,16.5
+ parent: 1
+ - uid: 4895
+ components:
+ - type: Transform
+ pos: 86.5,17.5
+ parent: 1
+ - uid: 4897
+ components:
+ - type: Transform
+ pos: 92.5,17.5
+ parent: 1
+ - uid: 4898
+ components:
+ - type: Transform
+ pos: 92.5,15.5
+ parent: 1
+ - uid: 4899
+ components:
+ - type: Transform
+ pos: 96.5,16.5
+ parent: 1
+ - uid: 4939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 164.5,128.5
+ parent: 1
+ - uid: 4947
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,105.5
+ parent: 1
+ - uid: 4953
+ components:
+ - type: Transform
+ pos: 96.5,15.5
+ parent: 1
+ - uid: 4954
+ components:
+ - type: Transform
+ pos: 97.5,17.5
+ parent: 1
+ - uid: 4955
+ components:
+ - type: Transform
+ pos: 100.5,17.5
+ parent: 1
+ - uid: 4956
+ components:
+ - type: Transform
+ pos: 102.5,17.5
+ parent: 1
+ - uid: 4959
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,172.5
+ parent: 1
+ - uid: 4992
+ components:
+ - type: Transform
+ pos: 111.5,17.5
+ parent: 1
+ - uid: 4994
+ components:
+ - type: Transform
+ pos: 112.5,17.5
+ parent: 1
+ - uid: 4995
+ components:
+ - type: Transform
+ pos: 120.5,18.5
+ parent: 1
+ - uid: 4996
+ components:
+ - type: Transform
+ pos: 121.5,22.5
+ parent: 1
+ - uid: 4997
+ components:
+ - type: Transform
+ pos: 121.5,19.5
+ parent: 1
+ - uid: 5049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,45.5
+ parent: 1
+ - uid: 5058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,45.5
+ parent: 1
+ - uid: 5064
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 127.5,44.5
+ parent: 1
+ - uid: 5079
+ components:
+ - type: Transform
+ pos: 125.5,33.5
+ parent: 1
+ - uid: 5083
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,172.5
+ parent: 1
+ - uid: 5107
+ components:
+ - type: Transform
+ pos: 125.5,25.5
+ parent: 1
+ - uid: 5114
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 118.5,172.5
+ parent: 1
+ - uid: 5141
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 131.5,114.5
+ parent: 1
+ - uid: 5149
+ components:
+ - type: Transform
+ pos: 126.5,34.5
+ parent: 1
+ - uid: 5150
+ components:
+ - type: Transform
+ pos: 127.5,40.5
+ parent: 1
+ - uid: 5153
+ components:
+ - type: Transform
+ pos: 127.5,35.5
+ parent: 1
+ - uid: 5154
+ components:
+ - type: Transform
+ pos: 127.5,34.5
+ parent: 1
+ - uid: 5158
+ components:
+ - type: Transform
+ pos: 113.5,15.5
+ parent: 1
+ - uid: 5214
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,114.5
+ parent: 1
+ - uid: 5226
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,114.5
+ parent: 1
+ - uid: 5233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,35.5
+ parent: 1
+ - uid: 5234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,41.5
+ parent: 1
+ - uid: 5244
+ components:
+ - type: Transform
+ pos: 55.5,143.5
+ parent: 1
+ - uid: 5320
+ components:
+ - type: Transform
+ pos: 55.5,141.5
+ parent: 1
+ - uid: 5323
+ components:
+ - type: Transform
+ pos: 55.5,137.5
+ parent: 1
+ - uid: 5349
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,35.5
+ parent: 1
+ - uid: 5360
+ components:
+ - type: Transform
+ pos: 56.5,158.5
+ parent: 1
+ - uid: 5376
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,149.5
+ parent: 1
+ - uid: 5503
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,15.5
+ parent: 1
+ - uid: 5541
+ components:
+ - type: Transform
+ pos: 56.5,156.5
+ parent: 1
+ - uid: 5555
+ components:
+ - type: Transform
+ pos: 57.5,159.5
+ parent: 1
+ - uid: 5557
+ components:
+ - type: Transform
+ pos: 60.5,161.5
+ parent: 1
+ - uid: 5559
+ components:
+ - type: Transform
+ pos: 60.5,159.5
+ parent: 1
+ - uid: 5565
+ components:
+ - type: Transform
+ pos: 61.5,162.5
+ parent: 1
+ - uid: 5588
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,90.5
+ parent: 1
+ - uid: 5624
+ components:
+ - type: Transform
+ pos: 64.5,162.5
+ parent: 1
+ - uid: 5625
+ components:
+ - type: Transform
+ pos: 66.5,163.5
+ parent: 1
+ - uid: 5631
+ components:
+ - type: Transform
+ pos: 66.5,162.5
+ parent: 1
+ - uid: 5639
+ components:
+ - type: Transform
+ pos: 67.5,165.5
+ parent: 1
+ - uid: 5640
+ components:
+ - type: Transform
+ pos: 72.5,164.5
+ parent: 1
+ - uid: 5643
+ components:
+ - type: Transform
+ pos: 73.5,163.5
+ parent: 1
+ - uid: 5651
+ components:
+ - type: Transform
+ pos: 82.5,163.5
+ parent: 1
+ - uid: 5704
+ components:
+ - type: Transform
+ pos: 86.5,165.5
+ parent: 1
+ - uid: 5719
+ components:
+ - type: Transform
+ pos: 89.5,166.5
+ parent: 1
+ - uid: 5757
+ components:
+ - type: Transform
+ pos: 90.5,174.5
+ parent: 1
+ - uid: 5759
+ components:
+ - type: Transform
+ pos: 95.5,174.5
+ parent: 1
+ - uid: 5770
+ components:
+ - type: Transform
+ pos: 104.5,173.5
+ parent: 1
+ - uid: 5832
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 69.5,156.5
+ parent: 1
+ - uid: 5867
+ components:
+ - type: Transform
+ pos: 16.5,109.5
+ parent: 1
+ - uid: 5882
+ components:
+ - type: Transform
+ pos: 15.5,109.5
+ parent: 1
+ - uid: 5909
+ components:
+ - type: Transform
+ pos: 14.5,105.5
+ parent: 1
+ - uid: 5933
+ components:
+ - type: Transform
+ pos: 16.5,105.5
+ parent: 1
+ - uid: 6033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,104.5
+ parent: 1
+ - uid: 6055
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,111.5
+ parent: 1
+ - uid: 6144
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,125.5
+ parent: 1
+ - uid: 6208
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,121.5
+ parent: 1
+ - uid: 6500
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,115.5
+ parent: 1
+ - uid: 6520
+ components:
+ - type: Transform
+ pos: 27.5,89.5
+ parent: 1
+ - uid: 6572
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,111.5
+ parent: 1
+ - uid: 6649
+ components:
+ - type: Transform
+ pos: 163.5,60.5
+ parent: 1
+ - uid: 6691
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 163.5,105.5
+ parent: 1
+ - uid: 6695
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 128.5,40.5
+ parent: 1
+ - uid: 6758
+ components:
+ - type: Transform
+ pos: 150.5,42.5
+ parent: 1
+ - uid: 6762
+ components:
+ - type: Transform
+ pos: 154.5,42.5
+ parent: 1
+ - uid: 6764
+ components:
+ - type: Transform
+ pos: 164.5,44.5
+ parent: 1
+ - uid: 6793
+ components:
+ - type: Transform
+ pos: 158.5,41.5
+ parent: 1
+ - uid: 6794
+ components:
+ - type: Transform
+ pos: 160.5,59.5
+ parent: 1
+ - uid: 6798
+ components:
+ - type: Transform
+ pos: 160.5,55.5
+ parent: 1
+ - uid: 6834
+ components:
+ - type: Transform
+ pos: 161.5,53.5
+ parent: 1
+ - uid: 6846
+ components:
+ - type: Transform
+ pos: 161.5,41.5
+ parent: 1
+ - uid: 6851
+ components:
+ - type: Transform
+ pos: 162.5,60.5
+ parent: 1
+ - uid: 6879
+ components:
+ - type: Transform
+ pos: 162.5,41.5
+ parent: 1
+ - uid: 6892
+ components:
+ - type: Transform
+ pos: 164.5,53.5
+ parent: 1
+ - uid: 6939
+ components:
+ - type: Transform
+ pos: 164.5,48.5
+ parent: 1
+ - uid: 6974
+ components:
+ - type: Transform
+ pos: 164.5,52.5
+ parent: 1
+ - uid: 6975
+ components:
+ - type: Transform
+ pos: 155.5,41.5
+ parent: 1
+ - uid: 6976
+ components:
+ - type: Transform
+ pos: 162.5,43.5
+ parent: 1
+ - uid: 6980
+ components:
+ - type: Transform
+ pos: 156.5,84.5
+ parent: 1
+ - uid: 6983
+ components:
+ - type: Transform
+ pos: 161.5,84.5
+ parent: 1
+ - uid: 6984
+ components:
+ - type: Transform
+ pos: 161.5,82.5
+ parent: 1
+ - uid: 6986
+ components:
+ - type: Transform
+ pos: 162.5,77.5
+ parent: 1
+ - uid: 6988
+ components:
+ - type: Transform
+ pos: 162.5,71.5
+ parent: 1
+ - uid: 6991
+ components:
+ - type: Transform
+ pos: 162.5,69.5
+ parent: 1
+ - uid: 7026
+ components:
+ - type: Transform
+ pos: 163.5,81.5
+ parent: 1
+ - uid: 7028
+ components:
+ - type: Transform
+ pos: 163.5,66.5
+ parent: 1
+ - uid: 7029
+ components:
+ - type: Transform
+ pos: 163.5,63.5
+ parent: 1
+ - uid: 7035
+ components:
+ - type: Transform
+ pos: 164.5,81.5
+ parent: 1
+ - uid: 7042
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,148.5
+ parent: 1
+ - uid: 7046
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,147.5
+ parent: 1
+ - uid: 7047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,150.5
+ parent: 1
+ - uid: 7049
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 159.5,150.5
+ parent: 1
+ - uid: 7052
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,148.5
+ parent: 1
+ - uid: 7058
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,128.5
+ parent: 1
+ - uid: 7060
+ components:
+ - type: Transform
+ pos: 164.5,77.5
+ parent: 1
+ - uid: 7094
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,126.5
+ parent: 1
+ - uid: 7122
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,90.5
+ parent: 1
+ - uid: 8557
+ components:
+ - type: Transform
+ pos: 127.5,39.5
+ parent: 1
+ - uid: 8757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,122.5
+ parent: 1
+ - uid: 11937
+ components:
+ - type: Transform
+ pos: 46.5,77.5
+ parent: 1
+ - uid: 15823
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 165.5,150.5
+ parent: 1
+ - uid: 16238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,172.5
+ parent: 1
+ - uid: 16239
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,172.5
+ parent: 1
+ - uid: 17927
+ components:
+ - type: Transform
+ pos: 126.5,168.5
+ parent: 1
+ - uid: 17938
+ components:
+ - type: Transform
+ pos: 126.5,162.5
+ parent: 1
+ - uid: 17941
+ components:
+ - type: Transform
+ pos: 126.5,165.5
+ parent: 1
+ - uid: 18067
+ components:
+ - type: Transform
+ pos: 166.5,138.5
+ parent: 1
+ - uid: 23463
+ components:
+ - type: Transform
+ pos: 49.5,77.5
+ parent: 1
+ - uid: 25938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,27.5
+ parent: 1
+ - uid: 26275
+ components:
+ - type: Transform
+ pos: 110.5,172.5
+ parent: 1
+ - uid: 30336
+ components:
+ - type: Transform
+ pos: 64.5,155.5
+ parent: 1
+ - uid: 30353
+ components:
+ - type: Transform
+ pos: 66.5,123.5
+ parent: 1
+ - uid: 30510
+ components:
+ - type: Transform
+ pos: 125.5,29.5
+ parent: 1
+ - uid: 32265
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,46.5
+ parent: 1
+ - uid: 32266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,45.5
+ parent: 1
+ - uid: 32417
+ components:
+ - type: Transform
+ pos: 155.5,147.5
+ parent: 1
+ - uid: 33939
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,40.5
+ parent: 1
+ - uid: 34224
+ components:
+ - type: Transform
+ pos: 145.5,42.5
+ parent: 1
+ - uid: 34420
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,157.5
+ parent: 1
+ - uid: 34421
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,155.5
+ parent: 1
+ - uid: 34422
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 88.5,158.5
+ parent: 1
+ - uid: 34423
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,158.5
+ parent: 1
+ - uid: 34424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 91.5,157.5
+ parent: 1
+ - uid: 34425
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,157.5
+ parent: 1
+ - uid: 34472
+ components:
+ - type: Transform
+ pos: 131.5,155.5
+ parent: 1
+ - uid: 34599
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,143.5
+ parent: 1
+ - uid: 34600
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,140.5
+ parent: 1
+ - uid: 34601
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 134.5,137.5
+ parent: 1
+ - uid: 34606
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,137.5
+ parent: 1
+ - uid: 34692
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,128.5
+ parent: 1
+ - uid: 34712
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 75.5,83.5
+ parent: 1
+ - uid: 34739
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,48.5
+ parent: 1
+ - uid: 34740
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,173.5
+ parent: 1
+ - uid: 34835
+ components:
+ - type: Transform
+ pos: 126.5,158.5
+ parent: 1
+ - uid: 34843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,58.5
+ parent: 1
+ - uid: 34844
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,124.5
+ parent: 1
+ - uid: 34896
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,92.5
+ parent: 1
+ - uid: 34897
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,92.5
+ parent: 1
+ - uid: 34923
+ components:
+ - type: Transform
+ pos: 132.5,149.5
+ parent: 1
+ - uid: 34947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,48.5
+ parent: 1
+ - uid: 34974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,132.5
+ parent: 1
+ - uid: 34976
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,134.5
+ parent: 1
+ - uid: 34977
+ components:
+ - type: Transform
+ pos: 127.5,155.5
+ parent: 1
+ - uid: 35834
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,130.5
+ parent: 1
+ - uid: 35838
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 50.5,135.5
+ parent: 1
+ - uid: 36395
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,129.5
+ parent: 1
+- proto: WallSolid
+ entities:
+ - uid: 53
+ components:
+ - type: Transform
+ pos: 18.5,117.5
+ parent: 1
+ - uid: 56
+ components:
+ - type: Transform
+ pos: 18.5,95.5
+ parent: 1
+ - uid: 68
+ components:
+ - type: Transform
+ pos: 19.5,117.5
+ parent: 1
+ - uid: 76
+ components:
+ - type: Transform
+ pos: 19.5,103.5
+ parent: 1
+ - uid: 82
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,83.5
+ parent: 1
+ - uid: 112
+ components:
+ - type: Transform
+ pos: 20.5,114.5
+ parent: 1
+ - uid: 113
+ components:
+ - type: Transform
+ pos: 20.5,109.5
+ parent: 1
+ - uid: 114
+ components:
+ - type: Transform
+ pos: 20.5,106.5
+ parent: 1
+ - uid: 133
+ components:
+ - type: Transform
+ pos: 21.5,117.5
+ parent: 1
+ - uid: 139
+ components:
+ - type: Transform
+ pos: 21.5,103.5
+ parent: 1
+ - uid: 145
+ components:
+ - type: Transform
+ pos: 21.5,89.5
+ parent: 1
+ - uid: 146
+ components:
+ - type: Transform
+ pos: 21.5,77.5
+ parent: 1
+ - uid: 150
+ components:
+ - type: Transform
+ pos: 22.5,120.5
+ parent: 1
+ - uid: 152
+ components:
+ - type: Transform
+ pos: 22.5,118.5
+ parent: 1
+ - uid: 153
+ components:
+ - type: Transform
+ pos: 22.5,117.5
+ parent: 1
+ - uid: 154
+ components:
+ - type: Transform
+ pos: 22.5,114.5
+ parent: 1
+ - uid: 155
+ components:
+ - type: Transform
+ pos: 22.5,109.5
+ parent: 1
+ - uid: 165
+ components:
+ - type: Transform
+ pos: 23.5,106.5
+ parent: 1
+ - uid: 166
+ components:
+ - type: Transform
+ pos: 23.5,105.5
+ parent: 1
+ - uid: 167
+ components:
+ - type: Transform
+ pos: 23.5,104.5
+ parent: 1
+ - uid: 168
+ components:
+ - type: Transform
+ pos: 23.5,103.5
+ parent: 1
+ - uid: 169
+ components:
+ - type: Transform
+ pos: 23.5,102.5
+ parent: 1
+ - uid: 170
+ components:
+ - type: Transform
+ pos: 23.5,101.5
+ parent: 1
+ - uid: 172
+ components:
+ - type: Transform
+ pos: 23.5,99.5
+ parent: 1
+ - uid: 173
+ components:
+ - type: Transform
+ pos: 23.5,98.5
+ parent: 1
+ - uid: 176
+ components:
+ - type: Transform
+ pos: 23.5,77.5
+ parent: 1
+ - uid: 190
+ components:
+ - type: Transform
+ pos: 24.5,106.5
+ parent: 1
+ - uid: 191
+ components:
+ - type: Transform
+ pos: 24.5,98.5
+ parent: 1
+ - uid: 199
+ components:
+ - type: Transform
+ pos: 24.5,88.5
+ parent: 1
+ - uid: 201
+ components:
+ - type: Transform
+ pos: 24.5,86.5
+ parent: 1
+ - uid: 203
+ components:
+ - type: Transform
+ pos: 24.5,84.5
+ parent: 1
+ - uid: 204
+ components:
+ - type: Transform
+ pos: 24.5,83.5
+ parent: 1
+ - uid: 223
+ components:
+ - type: Transform
+ pos: 25.5,98.5
+ parent: 1
+ - uid: 236
+ components:
+ - type: Transform
+ pos: 26.5,98.5
+ parent: 1
+ - uid: 252
+ components:
+ - type: Transform
+ pos: 26.5,77.5
+ parent: 1
+ - uid: 253
+ components:
+ - type: Transform
+ pos: 26.5,76.5
+ parent: 1
+ - uid: 255
+ components:
+ - type: Transform
+ pos: 26.5,74.5
+ parent: 1
+ - uid: 265
+ components:
+ - type: Transform
+ pos: 27.5,120.5
+ parent: 1
+ - uid: 272
+ components:
+ - type: Transform
+ pos: 27.5,98.5
+ parent: 1
+ - uid: 285
+ components:
+ - type: Transform
+ pos: 28.5,120.5
+ parent: 1
+ - uid: 292
+ components:
+ - type: Transform
+ pos: 28.5,98.5
+ parent: 1
+ - uid: 294
+ components:
+ - type: Transform
+ pos: 58.5,95.5
+ parent: 1
+ - uid: 328
+ components:
+ - type: Transform
+ pos: 29.5,99.5
+ parent: 1
+ - uid: 333
+ components:
+ - type: Transform
+ pos: 29.5,83.5
+ parent: 1
+ - uid: 335
+ components:
+ - type: Transform
+ pos: 29.5,81.5
+ parent: 1
+ - uid: 342
+ components:
+ - type: Transform
+ pos: 44.5,121.5
+ parent: 1
+ - uid: 344
+ components:
+ - type: Transform
+ pos: 30.5,121.5
+ parent: 1
+ - uid: 346
+ components:
+ - type: Transform
+ pos: 30.5,118.5
+ parent: 1
+ - uid: 347
+ components:
+ - type: Transform
+ pos: 30.5,106.5
+ parent: 1
+ - uid: 349
+ components:
+ - type: Transform
+ pos: 30.5,98.5
+ parent: 1
+ - uid: 363
+ components:
+ - type: Transform
+ pos: 30.5,81.5
+ parent: 1
+ - uid: 381
+ components:
+ - type: Transform
+ pos: 31.5,98.5
+ parent: 1
+ - uid: 385
+ components:
+ - type: Transform
+ pos: 31.5,81.5
+ parent: 1
+ - uid: 425
+ components:
+ - type: Transform
+ pos: 32.5,118.5
+ parent: 1
+ - uid: 431
+ components:
+ - type: Transform
+ pos: 32.5,98.5
+ parent: 1
+ - uid: 456
+ components:
+ - type: Transform
+ pos: 33.5,98.5
+ parent: 1
+ - uid: 467
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,115.5
+ parent: 1
+ - uid: 468
+ components:
+ - type: Transform
+ pos: 34.5,118.5
+ parent: 1
+ - uid: 496
+ components:
+ - type: Transform
+ pos: 34.5,81.5
+ parent: 1
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 35.5,123.5
+ parent: 1
+ - uid: 517
+ components:
+ - type: Transform
+ pos: 35.5,98.5
+ parent: 1
+ - uid: 549
+ components:
+ - type: Transform
+ pos: 36.5,120.5
+ parent: 1
+ - uid: 555
+ components:
+ - type: Transform
+ pos: 36.5,105.5
+ parent: 1
+ - uid: 559
+ components:
+ - type: Transform
+ pos: 36.5,98.5
+ parent: 1
+ - uid: 579
+ components:
+ - type: Transform
+ pos: 37.5,118.5
+ parent: 1
+ - uid: 580
+ components:
+ - type: Transform
+ pos: 37.5,117.5
+ parent: 1
+ - uid: 581
+ components:
+ - type: Transform
+ pos: 37.5,116.5
+ parent: 1
+ - uid: 582
+ components:
+ - type: Transform
+ pos: 37.5,115.5
+ parent: 1
+ - uid: 583
+ components:
+ - type: Transform
+ pos: 37.5,114.5
+ parent: 1
+ - uid: 584
+ components:
+ - type: Transform
+ pos: 37.5,113.5
+ parent: 1
+ - uid: 586
+ components:
+ - type: Transform
+ pos: 37.5,111.5
+ parent: 1
+ - uid: 587
+ components:
+ - type: Transform
+ pos: 37.5,110.5
+ parent: 1
+ - uid: 591
+ components:
+ - type: Transform
+ pos: 37.5,98.5
+ parent: 1
+ - uid: 618
+ components:
+ - type: Transform
+ pos: 38.5,118.5
+ parent: 1
+ - uid: 627
+ components:
+ - type: Transform
+ pos: 38.5,98.5
+ parent: 1
+ - uid: 628
+ components:
+ - type: Transform
+ pos: 38.5,97.5
+ parent: 1
+ - uid: 629
+ components:
+ - type: Transform
+ pos: 38.5,96.5
+ parent: 1
+ - uid: 652
+ components:
+ - type: Transform
+ pos: 39.5,118.5
+ parent: 1
+ - uid: 676
+ components:
+ - type: Transform
+ pos: 40.5,118.5
+ parent: 1
+ - uid: 681
+ components:
+ - type: Transform
+ pos: 40.5,115.5
+ parent: 1
+ - uid: 732
+ components:
+ - type: Transform
+ pos: 41.5,118.5
+ parent: 1
+ - uid: 733
+ components:
+ - type: Transform
+ pos: 41.5,110.5
+ parent: 1
+ - uid: 829
+ components:
+ - type: Transform
+ pos: 42.5,120.5
+ parent: 1
+ - uid: 830
+ components:
+ - type: Transform
+ pos: 42.5,118.5
+ parent: 1
+ - uid: 832
+ components:
+ - type: Transform
+ pos: 42.5,81.5
+ parent: 1
+ - uid: 838
+ components:
+ - type: Transform
+ pos: 43.5,110.5
+ parent: 1
+ - uid: 857
+ components:
+ - type: Transform
+ pos: 43.5,118.5
+ parent: 1
+ - uid: 881
+ components:
+ - type: Transform
+ pos: 44.5,125.5
+ parent: 1
+ - uid: 882
+ components:
+ - type: Transform
+ pos: 44.5,124.5
+ parent: 1
+ - uid: 886
+ components:
+ - type: Transform
+ pos: 44.5,120.5
+ parent: 1
+ - uid: 887
+ components:
+ - type: Transform
+ pos: 44.5,118.5
+ parent: 1
+ - uid: 889
+ components:
+ - type: Transform
+ pos: 44.5,81.5
+ parent: 1
+ - uid: 911
+ components:
+ - type: Transform
+ pos: 45.5,118.5
+ parent: 1
+ - uid: 919
+ components:
+ - type: Transform
+ pos: 45.5,103.5
+ parent: 1
+ - uid: 920
+ components:
+ - type: Transform
+ pos: 45.5,102.5
+ parent: 1
+ - uid: 923
+ components:
+ - type: Transform
+ pos: 45.5,99.5
+ parent: 1
+ - uid: 924
+ components:
+ - type: Transform
+ pos: 45.5,98.5
+ parent: 1
+ - uid: 927
+ components:
+ - type: Transform
+ pos: 45.5,95.5
+ parent: 1
+ - uid: 928
+ components:
+ - type: Transform
+ pos: 45.5,94.5
+ parent: 1
+ - uid: 929
+ components:
+ - type: Transform
+ pos: 45.5,93.5
+ parent: 1
+ - uid: 931
+ components:
+ - type: Transform
+ pos: 45.5,91.5
+ parent: 1
+ - uid: 934
+ components:
+ - type: Transform
+ pos: 45.5,88.5
+ parent: 1
+ - uid: 936
+ components:
+ - type: Transform
+ pos: 45.5,86.5
+ parent: 1
+ - uid: 937
+ components:
+ - type: Transform
+ pos: 45.5,85.5
+ parent: 1
+ - uid: 938
+ components:
+ - type: Transform
+ pos: 45.5,84.5
+ parent: 1
+ - uid: 940
+ components:
+ - type: Transform
+ pos: 45.5,82.5
+ parent: 1
+ - uid: 941
+ components:
+ - type: Transform
+ pos: 45.5,81.5
+ parent: 1
+ - uid: 942
+ components:
+ - type: Transform
+ pos: 45.5,80.5
+ parent: 1
+ - uid: 943
+ components:
+ - type: Transform
+ pos: 45.5,79.5
+ parent: 1
+ - uid: 963
+ components:
+ - type: Transform
+ pos: 97.5,106.5
+ parent: 1
+ - uid: 964
+ components:
+ - type: Transform
+ pos: 119.5,114.5
+ parent: 1
+ - uid: 1004
+ components:
+ - type: Transform
+ pos: 46.5,118.5
+ parent: 1
+ - uid: 1009
+ components:
+ - type: Transform
+ pos: 46.5,115.5
+ parent: 1
+ - uid: 1012
+ components:
+ - type: Transform
+ pos: 46.5,98.5
+ parent: 1
+ - uid: 1013
+ components:
+ - type: Transform
+ pos: 46.5,94.5
+ parent: 1
+ - uid: 1014
+ components:
+ - type: Transform
+ pos: 46.5,85.5
+ parent: 1
+ - uid: 1015
+ components:
+ - type: Transform
+ pos: 46.5,79.5
+ parent: 1
+ - uid: 1041
+ components:
+ - type: Transform
+ pos: 47.5,118.5
+ parent: 1
+ - uid: 1048
+ components:
+ - type: Transform
+ pos: 47.5,94.5
+ parent: 1
+ - uid: 1049
+ components:
+ - type: Transform
+ pos: 47.5,85.5
+ parent: 1
+ - uid: 1050
+ components:
+ - type: Transform
+ pos: 47.5,79.5
+ parent: 1
+ - uid: 1079
+ components:
+ - type: Transform
+ pos: 48.5,118.5
+ parent: 1
+ - uid: 1088
+ components:
+ - type: Transform
+ pos: 48.5,98.5
+ parent: 1
+ - uid: 1091
+ components:
+ - type: Transform
+ pos: 48.5,85.5
+ parent: 1
+ - uid: 1092
+ components:
+ - type: Transform
+ pos: 48.5,79.5
+ parent: 1
+ - uid: 1116
+ components:
+ - type: Transform
+ pos: 49.5,118.5
+ parent: 1
+ - uid: 1117
+ components:
+ - type: Transform
+ pos: 49.5,117.5
+ parent: 1
+ - uid: 1118
+ components:
+ - type: Transform
+ pos: 49.5,116.5
+ parent: 1
+ - uid: 1119
+ components:
+ - type: Transform
+ pos: 49.5,115.5
+ parent: 1
+ - uid: 1120
+ components:
+ - type: Transform
+ pos: 49.5,114.5
+ parent: 1
+ - uid: 1135
+ components:
+ - type: Transform
+ pos: 49.5,85.5
+ parent: 1
+ - uid: 1136
+ components:
+ - type: Transform
+ pos: 49.5,79.5
+ parent: 1
+ - uid: 1166
+ components:
+ - type: Transform
+ pos: 50.5,115.5
+ parent: 1
+ - uid: 1170
+ components:
+ - type: Transform
+ pos: 50.5,98.5
+ parent: 1
+ - uid: 1180
+ components:
+ - type: Transform
+ pos: 50.5,88.5
+ parent: 1
+ - uid: 1182
+ components:
+ - type: Transform
+ pos: 50.5,86.5
+ parent: 1
+ - uid: 1183
+ components:
+ - type: Transform
+ pos: 50.5,85.5
+ parent: 1
+ - uid: 1184
+ components:
+ - type: Transform
+ pos: 50.5,79.5
+ parent: 1
+ - uid: 1187
+ components:
+ - type: Transform
+ pos: 122.5,105.5
+ parent: 1
+ - uid: 1251
+ components:
+ - type: Transform
+ pos: 51.5,122.5
+ parent: 1
+ - uid: 1253
+ components:
+ - type: Transform
+ pos: 51.5,120.5
+ parent: 1
+ - uid: 1259
+ components:
+ - type: Transform
+ pos: 51.5,85.5
+ parent: 1
+ - uid: 1260
+ components:
+ - type: Transform
+ pos: 51.5,79.5
+ parent: 1
+ - uid: 1308
+ components:
+ - type: Transform
+ pos: 52.5,115.5
+ parent: 1
+ - uid: 1312
+ components:
+ - type: Transform
+ pos: 52.5,98.5
+ parent: 1
+ - uid: 1314
+ components:
+ - type: Transform
+ pos: 52.5,79.5
+ parent: 1
+ - uid: 1333
+ components:
+ - type: Transform
+ pos: 53.5,120.5
+ parent: 1
+ - uid: 1336
+ components:
+ - type: Transform
+ pos: 53.5,117.5
+ parent: 1
+ - uid: 1337
+ components:
+ - type: Transform
+ pos: 53.5,116.5
+ parent: 1
+ - uid: 1338
+ components:
+ - type: Transform
+ pos: 53.5,115.5
+ parent: 1
+ - uid: 1342
+ components:
+ - type: Transform
+ pos: 53.5,98.5
+ parent: 1
+ - uid: 1344
+ components:
+ - type: Transform
+ pos: 53.5,79.5
+ parent: 1
+ - uid: 1358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 74.5,44.5
+ parent: 1
+ - uid: 1370
+ components:
+ - type: Transform
+ pos: 54.5,120.5
+ parent: 1
+ - uid: 1371
+ components:
+ - type: Transform
+ pos: 54.5,115.5
+ parent: 1
+ - uid: 1372
+ components:
+ - type: Transform
+ pos: 54.5,114.5
+ parent: 1
+ - uid: 1386
+ components:
+ - type: Transform
+ pos: 54.5,100.5
+ parent: 1
+ - uid: 1387
+ components:
+ - type: Transform
+ pos: 54.5,99.5
+ parent: 1
+ - uid: 1388
+ components:
+ - type: Transform
+ pos: 54.5,98.5
+ parent: 1
+ - uid: 1392
+ components:
+ - type: Transform
+ pos: 54.5,94.5
+ parent: 1
+ - uid: 1401
+ components:
+ - type: Transform
+ pos: 54.5,89.5
+ parent: 1
+ - uid: 1405
+ components:
+ - type: Transform
+ pos: 54.5,85.5
+ parent: 1
+ - uid: 1406
+ components:
+ - type: Transform
+ pos: 54.5,84.5
+ parent: 1
+ - uid: 1407
+ components:
+ - type: Transform
+ pos: 54.5,83.5
+ parent: 1
+ - uid: 1408
+ components:
+ - type: Transform
+ pos: 54.5,82.5
+ parent: 1
+ - uid: 1409
+ components:
+ - type: Transform
+ pos: 54.5,81.5
+ parent: 1
+ - uid: 1410
+ components:
+ - type: Transform
+ pos: 54.5,80.5
+ parent: 1
+ - uid: 1411
+ components:
+ - type: Transform
+ pos: 54.5,79.5
+ parent: 1
+ - uid: 1424
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,87.5
+ parent: 1
+ - uid: 1439
+ components:
+ - type: Transform
+ pos: 153.5,97.5
+ parent: 1
+ - uid: 1473
+ components:
+ - type: Transform
+ pos: 55.5,135.5
+ parent: 1
+ - uid: 1474
+ components:
+ - type: Transform
+ pos: 55.5,134.5
+ parent: 1
+ - uid: 1477
+ components:
+ - type: Transform
+ pos: 55.5,131.5
+ parent: 1
+ - uid: 1483
+ components:
+ - type: Transform
+ pos: 55.5,115.5
+ parent: 1
+ - uid: 1497
+ components:
+ - type: Transform
+ pos: 89.5,42.5
+ parent: 1
+ - uid: 1503
+ components:
+ - type: Transform
+ pos: 56.5,151.5
+ parent: 1
+ - uid: 1504
+ components:
+ - type: Transform
+ pos: 56.5,150.5
+ parent: 1
+ - uid: 1506
+ components:
+ - type: Transform
+ pos: 56.5,148.5
+ parent: 1
+ - uid: 1507
+ components:
+ - type: Transform
+ pos: 56.5,147.5
+ parent: 1
+ - uid: 1508
+ components:
+ - type: Transform
+ pos: 56.5,135.5
+ parent: 1
+ - uid: 1511
+ components:
+ - type: Transform
+ pos: 56.5,124.5
+ parent: 1
+ - uid: 1512
+ components:
+ - type: Transform
+ pos: 56.5,123.5
+ parent: 1
+ - uid: 1514
+ components:
+ - type: Transform
+ pos: 56.5,121.5
+ parent: 1
+ - uid: 1515
+ components:
+ - type: Transform
+ pos: 56.5,120.5
+ parent: 1
+ - uid: 1516
+ components:
+ - type: Transform
+ pos: 56.5,115.5
+ parent: 1
+ - uid: 1546
+ components:
+ - type: Transform
+ pos: 57.5,127.5
+ parent: 1
+ - uid: 1547
+ components:
+ - type: Transform
+ pos: 57.5,125.5
+ parent: 1
+ - uid: 1548
+ components:
+ - type: Transform
+ pos: 57.5,120.5
+ parent: 1
+ - uid: 1549
+ components:
+ - type: Transform
+ pos: 57.5,119.5
+ parent: 1
+ - uid: 1550
+ components:
+ - type: Transform
+ pos: 57.5,118.5
+ parent: 1
+ - uid: 1553
+ components:
+ - type: Transform
+ pos: 57.5,115.5
+ parent: 1
+ - uid: 1582
+ components:
+ - type: Transform
+ pos: 58.5,131.5
+ parent: 1
+ - uid: 1584
+ components:
+ - type: Transform
+ pos: 58.5,129.5
+ parent: 1
+ - uid: 1586
+ components:
+ - type: Transform
+ pos: 58.5,125.5
+ parent: 1
+ - uid: 1589
+ components:
+ - type: Transform
+ pos: 58.5,115.5
+ parent: 1
+ - uid: 1591
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,115.5
+ parent: 1
+ - uid: 1592
+ components:
+ - type: Transform
+ pos: 58.5,109.5
+ parent: 1
+ - uid: 1593
+ components:
+ - type: Transform
+ pos: 58.5,108.5
+ parent: 1
+ - uid: 1594
+ components:
+ - type: Transform
+ pos: 122.5,115.5
+ parent: 1
+ - uid: 1595
+ components:
+ - type: Transform
+ pos: 58.5,106.5
+ parent: 1
+ - uid: 1596
+ components:
+ - type: Transform
+ pos: 58.5,105.5
+ parent: 1
+ - uid: 1597
+ components:
+ - type: Transform
+ pos: 58.5,104.5
+ parent: 1
+ - uid: 1598
+ components:
+ - type: Transform
+ pos: 58.5,103.5
+ parent: 1
+ - uid: 1601
+ components:
+ - type: Transform
+ pos: 58.5,100.5
+ parent: 1
+ - uid: 1602
+ components:
+ - type: Transform
+ pos: 58.5,99.5
+ parent: 1
+ - uid: 1603
+ components:
+ - type: Transform
+ pos: 58.5,98.5
+ parent: 1
+ - uid: 1604
+ components:
+ - type: Transform
+ pos: 58.5,97.5
+ parent: 1
+ - uid: 1612
+ components:
+ - type: Transform
+ pos: 58.5,92.5
+ parent: 1
+ - uid: 1616
+ components:
+ - type: Transform
+ pos: 58.5,88.5
+ parent: 1
+ - uid: 1618
+ components:
+ - type: Transform
+ pos: 58.5,86.5
+ parent: 1
+ - uid: 1619
+ components:
+ - type: Transform
+ pos: 58.5,85.5
+ parent: 1
+ - uid: 1620
+ components:
+ - type: Transform
+ pos: 58.5,84.5
+ parent: 1
+ - uid: 1621
+ components:
+ - type: Transform
+ pos: 58.5,83.5
+ parent: 1
+ - uid: 1622
+ components:
+ - type: Transform
+ pos: 58.5,82.5
+ parent: 1
+ - uid: 1623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,85.5
+ parent: 1
+ - uid: 1628
+ components:
+ - type: Transform
+ pos: 58.5,76.5
+ parent: 1
+ - uid: 1629
+ components:
+ - type: Transform
+ pos: 58.5,75.5
+ parent: 1
+ - uid: 1630
+ components:
+ - type: Transform
+ pos: 58.5,74.5
+ parent: 1
+ - uid: 1631
+ components:
+ - type: Transform
+ pos: 58.5,73.5
+ parent: 1
+ - uid: 1632
+ components:
+ - type: Transform
+ pos: 58.5,72.5
+ parent: 1
+ - uid: 1633
+ components:
+ - type: Transform
+ pos: 58.5,71.5
+ parent: 1
+ - uid: 1634
+ components:
+ - type: Transform
+ pos: 58.5,70.5
+ parent: 1
+ - uid: 1635
+ components:
+ - type: Transform
+ pos: 58.5,69.5
+ parent: 1
+ - uid: 1636
+ components:
+ - type: Transform
+ pos: 58.5,68.5
+ parent: 1
+ - uid: 1637
+ components:
+ - type: Transform
+ pos: 58.5,67.5
+ parent: 1
+ - uid: 1638
+ components:
+ - type: Transform
+ pos: 58.5,66.5
+ parent: 1
+ - uid: 1665
+ components:
+ - type: Transform
+ pos: 59.5,153.5
+ parent: 1
+ - uid: 1680
+ components:
+ - type: Transform
+ pos: 59.5,120.5
+ parent: 1
+ - uid: 1681
+ components:
+ - type: Transform
+ pos: 59.5,119.5
+ parent: 1
+ - uid: 1682
+ components:
+ - type: Transform
+ pos: 59.5,118.5
+ parent: 1
+ - uid: 1683
+ components:
+ - type: Transform
+ pos: 59.5,115.5
+ parent: 1
+ - uid: 1685
+ components:
+ - type: Transform
+ pos: 59.5,105.5
+ parent: 1
+ - uid: 1687
+ components:
+ - type: Transform
+ pos: 59.5,98.5
+ parent: 1
+ - uid: 1688
+ components:
+ - type: Transform
+ pos: 59.5,88.5
+ parent: 1
+ - uid: 1689
+ components:
+ - type: Transform
+ pos: 59.5,79.5
+ parent: 1
+ - uid: 1691
+ components:
+ - type: Transform
+ pos: 59.5,66.5
+ parent: 1
+ - uid: 1723
+ components:
+ - type: Transform
+ pos: 60.5,157.5
+ parent: 1
+ - uid: 1724
+ components:
+ - type: Transform
+ pos: 60.5,156.5
+ parent: 1
+ - uid: 1726
+ components:
+ - type: Transform
+ pos: 60.5,154.5
+ parent: 1
+ - uid: 1731
+ components:
+ - type: Transform
+ pos: 108.5,45.5
+ parent: 1
+ - uid: 1743
+ components:
+ - type: Transform
+ pos: 60.5,120.5
+ parent: 1
+ - uid: 1745
+ components:
+ - type: Transform
+ pos: 60.5,115.5
+ parent: 1
+ - uid: 1751
+ components:
+ - type: Transform
+ pos: 60.5,88.5
+ parent: 1
+ - uid: 1753
+ components:
+ - type: Transform
+ pos: 60.5,79.5
+ parent: 1
+ - uid: 1755
+ components:
+ - type: Transform
+ pos: 60.5,75.5
+ parent: 1
+ - uid: 1756
+ components:
+ - type: Transform
+ pos: 60.5,74.5
+ parent: 1
+ - uid: 1757
+ components:
+ - type: Transform
+ pos: 60.5,73.5
+ parent: 1
+ - uid: 1758
+ components:
+ - type: Transform
+ pos: 60.5,72.5
+ parent: 1
+ - uid: 1759
+ components:
+ - type: Transform
+ pos: 60.5,71.5
+ parent: 1
+ - uid: 1762
+ components:
+ - type: Transform
+ pos: 60.5,66.5
+ parent: 1
+ - uid: 1802
+ components:
+ - type: Transform
+ pos: 61.5,120.5
+ parent: 1
+ - uid: 1803
+ components:
+ - type: Transform
+ pos: 61.5,119.5
+ parent: 1
+ - uid: 1804
+ components:
+ - type: Transform
+ pos: 61.5,118.5
+ parent: 1
+ - uid: 1805
+ components:
+ - type: Transform
+ pos: 61.5,115.5
+ parent: 1
+ - uid: 1806
+ components:
+ - type: Transform
+ pos: 61.5,111.5
+ parent: 1
+ - uid: 1810
+ components:
+ - type: Transform
+ pos: 68.5,105.5
+ parent: 1
+ - uid: 1812
+ components:
+ - type: Transform
+ pos: 61.5,98.5
+ parent: 1
+ - uid: 1813
+ components:
+ - type: Transform
+ pos: 61.5,88.5
+ parent: 1
+ - uid: 1815
+ components:
+ - type: Transform
+ pos: 61.5,76.5
+ parent: 1
+ - uid: 1816
+ components:
+ - type: Transform
+ pos: 61.5,71.5
+ parent: 1
+ - uid: 1818
+ components:
+ - type: Transform
+ pos: 61.5,66.5
+ parent: 1
+ - uid: 1821
+ components:
+ - type: Transform
+ pos: 153.5,100.5
+ parent: 1
+ - uid: 1840
+ components:
+ - type: Transform
+ pos: 63.5,62.5
+ parent: 1
+ - uid: 1841
+ components:
+ - type: Transform
+ pos: 62.5,62.5
+ parent: 1
+ - uid: 1852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,74.5
+ parent: 1
+ - uid: 1857
+ components:
+ - type: Transform
+ pos: 62.5,120.5
+ parent: 1
+ - uid: 1859
+ components:
+ - type: Transform
+ pos: 62.5,115.5
+ parent: 1
+ - uid: 1860
+ components:
+ - type: Transform
+ pos: 62.5,111.5
+ parent: 1
+ - uid: 1864
+ components:
+ - type: Transform
+ pos: 62.5,98.5
+ parent: 1
+ - uid: 1865
+ components:
+ - type: Transform
+ pos: 62.5,88.5
+ parent: 1
+ - uid: 1870
+ components:
+ - type: Transform
+ pos: 62.5,66.5
+ parent: 1
+ - uid: 1894
+ components:
+ - type: Transform
+ pos: 105.5,36.5
+ parent: 1
+ - uid: 1903
+ components:
+ - type: Transform
+ pos: 63.5,158.5
+ parent: 1
+ - uid: 1908
+ components:
+ - type: Transform
+ pos: 89.5,37.5
+ parent: 1
+ - uid: 1924
+ components:
+ - type: Transform
+ pos: 63.5,120.5
+ parent: 1
+ - uid: 1925
+ components:
+ - type: Transform
+ pos: 63.5,119.5
+ parent: 1
+ - uid: 1926
+ components:
+ - type: Transform
+ pos: 63.5,118.5
+ parent: 1
+ - uid: 1928
+ components:
+ - type: Transform
+ pos: 63.5,111.5
+ parent: 1
+ - uid: 1929
+ components:
+ - type: Transform
+ pos: 63.5,105.5
+ parent: 1
+ - uid: 1931
+ components:
+ - type: Transform
+ pos: 63.5,98.5
+ parent: 1
+ - uid: 1932
+ components:
+ - type: Transform
+ pos: 63.5,88.5
+ parent: 1
+ - uid: 1935
+ components:
+ - type: Transform
+ pos: 63.5,71.5
+ parent: 1
+ - uid: 1937
+ components:
+ - type: Transform
+ pos: 63.5,66.5
+ parent: 1
+ - uid: 1955
+ components:
+ - type: Transform
+ pos: 63.5,45.5
+ parent: 1
+ - uid: 1994
+ components:
+ - type: Transform
+ pos: 64.5,120.5
+ parent: 1
+ - uid: 1996
+ components:
+ - type: Transform
+ pos: 64.5,115.5
+ parent: 1
+ - uid: 1997
+ components:
+ - type: Transform
+ pos: 64.5,111.5
+ parent: 1
+ - uid: 1998
+ components:
+ - type: Transform
+ pos: 64.5,110.5
+ parent: 1
+ - uid: 1999
+ components:
+ - type: Transform
+ pos: 64.5,109.5
+ parent: 1
+ - uid: 2001
+ components:
+ - type: Transform
+ pos: 64.5,107.5
+ parent: 1
+ - uid: 2002
+ components:
+ - type: Transform
+ pos: 64.5,106.5
+ parent: 1
+ - uid: 2003
+ components:
+ - type: Transform
+ pos: 64.5,105.5
+ parent: 1
+ - uid: 2004
+ components:
+ - type: Transform
+ pos: 64.5,104.5
+ parent: 1
+ - uid: 2005
+ components:
+ - type: Transform
+ pos: 64.5,103.5
+ parent: 1
+ - uid: 2006
+ components:
+ - type: Transform
+ pos: 64.5,102.5
+ parent: 1
+ - uid: 2007
+ components:
+ - type: Transform
+ pos: 64.5,101.5
+ parent: 1
+ - uid: 2008
+ components:
+ - type: Transform
+ pos: 64.5,100.5
+ parent: 1
+ - uid: 2010
+ components:
+ - type: Transform
+ pos: 64.5,98.5
+ parent: 1
+ - uid: 2011
+ components:
+ - type: Transform
+ pos: 64.5,97.5
+ parent: 1
+ - uid: 2012
+ components:
+ - type: Transform
+ pos: 64.5,96.5
+ parent: 1
+ - uid: 2016
+ components:
+ - type: Transform
+ pos: 64.5,92.5
+ parent: 1
+ - uid: 2017
+ components:
+ - type: Transform
+ pos: 64.5,91.5
+ parent: 1
+ - uid: 2018
+ components:
+ - type: Transform
+ pos: 64.5,90.5
+ parent: 1
+ - uid: 2019
+ components:
+ - type: Transform
+ pos: 64.5,89.5
+ parent: 1
+ - uid: 2020
+ components:
+ - type: Transform
+ pos: 64.5,88.5
+ parent: 1
+ - uid: 2022
+ components:
+ - type: Transform
+ pos: 64.5,86.5
+ parent: 1
+ - uid: 2024
+ components:
+ - type: Transform
+ pos: 64.5,84.5
+ parent: 1
+ - uid: 2025
+ components:
+ - type: Transform
+ pos: 64.5,83.5
+ parent: 1
+ - uid: 2026
+ components:
+ - type: Transform
+ pos: 64.5,82.5
+ parent: 1
+ - uid: 2027
+ components:
+ - type: Transform
+ pos: 64.5,81.5
+ parent: 1
+ - uid: 2028
+ components:
+ - type: Transform
+ pos: 64.5,80.5
+ parent: 1
+ - uid: 2029
+ components:
+ - type: Transform
+ pos: 64.5,79.5
+ parent: 1
+ - uid: 2031
+ components:
+ - type: Transform
+ pos: 64.5,76.5
+ parent: 1
+ - uid: 2032
+ components:
+ - type: Transform
+ pos: 64.5,71.5
+ parent: 1
+ - uid: 2033
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,68.5
+ parent: 1
+ - uid: 2036
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,28.5
+ parent: 1
+ - uid: 2037
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,32.5
+ parent: 1
+ - uid: 2038
+ components:
+ - type: Transform
+ pos: 81.5,61.5
+ parent: 1
+ - uid: 2042
+ components:
+ - type: Transform
+ pos: 67.5,72.5
+ parent: 1
+ - uid: 2044
+ components:
+ - type: Transform
+ pos: 71.5,70.5
+ parent: 1
+ - uid: 2045
+ components:
+ - type: Transform
+ pos: 113.5,21.5
+ parent: 1
+ - uid: 2062
+ components:
+ - type: Transform
+ pos: 67.5,67.5
+ parent: 1
+ - uid: 2066
+ components:
+ - type: Transform
+ pos: 65.5,120.5
+ parent: 1
+ - uid: 2067
+ components:
+ - type: Transform
+ pos: 65.5,119.5
+ parent: 1
+ - uid: 2068
+ components:
+ - type: Transform
+ pos: 65.5,118.5
+ parent: 1
+ - uid: 2069
+ components:
+ - type: Transform
+ pos: 65.5,117.5
+ parent: 1
+ - uid: 2070
+ components:
+ - type: Transform
+ pos: 65.5,116.5
+ parent: 1
+ - uid: 2071
+ components:
+ - type: Transform
+ pos: 65.5,115.5
+ parent: 1
+ - uid: 2073
+ components:
+ - type: Transform
+ pos: 65.5,105.5
+ parent: 1
+ - uid: 2074
+ components:
+ - type: Transform
+ pos: 65.5,89.5
+ parent: 1
+ - uid: 2075
+ components:
+ - type: Transform
+ pos: 65.5,85.5
+ parent: 1
+ - uid: 2078
+ components:
+ - type: Transform
+ pos: 65.5,79.5
+ parent: 1
+ - uid: 2079
+ components:
+ - type: Transform
+ pos: 65.5,77.5
+ parent: 1
+ - uid: 2080
+ components:
+ - type: Transform
+ pos: 65.5,71.5
+ parent: 1
+ - uid: 2084
+ components:
+ - type: Transform
+ pos: 65.5,66.5
+ parent: 1
+ - uid: 2085
+ components:
+ - type: Transform
+ pos: 65.5,62.5
+ parent: 1
+ - uid: 2090
+ components:
+ - type: Transform
+ pos: 65.5,57.5
+ parent: 1
+ - uid: 2097
+ components:
+ - type: Transform
+ pos: 65.5,50.5
+ parent: 1
+ - uid: 2099
+ components:
+ - type: Transform
+ pos: 65.5,48.5
+ parent: 1
+ - uid: 2100
+ components:
+ - type: Transform
+ pos: 65.5,47.5
+ parent: 1
+ - uid: 2101
+ components:
+ - type: Transform
+ pos: 65.5,46.5
+ parent: 1
+ - uid: 2102
+ components:
+ - type: Transform
+ pos: 65.5,45.5
+ parent: 1
+ - uid: 2103
+ components:
+ - type: Transform
+ pos: 65.5,44.5
+ parent: 1
+ - uid: 2104
+ components:
+ - type: Transform
+ pos: 65.5,43.5
+ parent: 1
+ - uid: 2105
+ components:
+ - type: Transform
+ pos: 65.5,42.5
+ parent: 1
+ - uid: 2106
+ components:
+ - type: Transform
+ pos: 65.5,41.5
+ parent: 1
+ - uid: 2107
+ components:
+ - type: Transform
+ pos: 65.5,40.5
+ parent: 1
+ - uid: 2108
+ components:
+ - type: Transform
+ pos: 65.5,39.5
+ parent: 1
+ - uid: 2109
+ components:
+ - type: Transform
+ pos: 65.5,38.5
+ parent: 1
+ - uid: 2110
+ components:
+ - type: Transform
+ pos: 65.5,37.5
+ parent: 1
+ - uid: 2112
+ components:
+ - type: Transform
+ pos: 65.5,35.5
+ parent: 1
+ - uid: 2113
+ components:
+ - type: Transform
+ pos: 65.5,34.5
+ parent: 1
+ - uid: 2115
+ components:
+ - type: Transform
+ pos: 65.5,32.5
+ parent: 1
+ - uid: 2116
+ components:
+ - type: Transform
+ pos: 65.5,31.5
+ parent: 1
+ - uid: 2117
+ components:
+ - type: Transform
+ pos: 65.5,30.5
+ parent: 1
+ - uid: 2118
+ components:
+ - type: Transform
+ pos: 65.5,29.5
+ parent: 1
+ - uid: 2119
+ components:
+ - type: Transform
+ pos: 65.5,28.5
+ parent: 1
+ - uid: 2120
+ components:
+ - type: Transform
+ pos: 65.5,27.5
+ parent: 1
+ - uid: 2121
+ components:
+ - type: Transform
+ pos: 65.5,26.5
+ parent: 1
+ - uid: 2122
+ components:
+ - type: Transform
+ pos: 65.5,25.5
+ parent: 1
+ - uid: 2123
+ components:
+ - type: Transform
+ pos: 65.5,24.5
+ parent: 1
+ - uid: 2124
+ components:
+ - type: Transform
+ pos: 65.5,23.5
+ parent: 1
+ - uid: 2125
+ components:
+ - type: Transform
+ pos: 114.5,21.5
+ parent: 1
+ - uid: 2126
+ components:
+ - type: Transform
+ pos: 65.5,21.5
+ parent: 1
+ - uid: 2134
+ components:
+ - type: Transform
+ pos: 66.5,160.5
+ parent: 1
+ - uid: 2136
+ components:
+ - type: Transform
+ pos: 66.5,158.5
+ parent: 1
+ - uid: 2149
+ components:
+ - type: Transform
+ pos: 70.5,71.5
+ parent: 1
+ - uid: 2167
+ components:
+ - type: Transform
+ pos: 66.5,79.5
+ parent: 1
+ - uid: 2169
+ components:
+ - type: Transform
+ pos: 66.5,77.5
+ parent: 1
+ - uid: 2171
+ components:
+ - type: Transform
+ pos: 66.5,66.5
+ parent: 1
+ - uid: 2173
+ components:
+ - type: Transform
+ pos: 66.5,24.5
+ parent: 1
+ - uid: 2174
+ components:
+ - type: Transform
+ pos: 66.5,21.5
+ parent: 1
+ - uid: 2175
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,32.5
+ parent: 1
+ - uid: 2181
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,33.5
+ parent: 1
+ - uid: 2203
+ components:
+ - type: Transform
+ pos: 67.5,69.5
+ parent: 1
+ - uid: 2218
+ components:
+ - type: Transform
+ pos: 67.5,85.5
+ parent: 1
+ - uid: 2219
+ components:
+ - type: Transform
+ pos: 67.5,79.5
+ parent: 1
+ - uid: 2220
+ components:
+ - type: Transform
+ pos: 67.5,77.5
+ parent: 1
+ - uid: 2221
+ components:
+ - type: Transform
+ pos: 67.5,76.5
+ parent: 1
+ - uid: 2222
+ components:
+ - type: Transform
+ pos: 67.5,75.5
+ parent: 1
+ - uid: 2224
+ components:
+ - type: Transform
+ pos: 67.5,73.5
+ parent: 1
+ - uid: 2225
+ components:
+ - type: Transform
+ pos: 71.5,71.5
+ parent: 1
+ - uid: 2226
+ components:
+ - type: Transform
+ pos: 72.5,70.5
+ parent: 1
+ - uid: 2227
+ components:
+ - type: Transform
+ pos: 71.5,66.5
+ parent: 1
+ - uid: 2231
+ components:
+ - type: Transform
+ pos: 67.5,66.5
+ parent: 1
+ - uid: 2234
+ components:
+ - type: Transform
+ pos: 72.5,66.5
+ parent: 1
+ - uid: 2275
+ components:
+ - type: Transform
+ pos: 68.5,111.5
+ parent: 1
+ - uid: 2276
+ components:
+ - type: Transform
+ pos: 68.5,110.5
+ parent: 1
+ - uid: 2277
+ components:
+ - type: Transform
+ pos: 68.5,109.5
+ parent: 1
+ - uid: 2280
+ components:
+ - type: Transform
+ pos: 68.5,85.5
+ parent: 1
+ - uid: 2281
+ components:
+ - type: Transform
+ pos: 68.5,79.5
+ parent: 1
+ - uid: 2282
+ components:
+ - type: Transform
+ pos: 68.5,77.5
+ parent: 1
+ - uid: 2284
+ components:
+ - type: Transform
+ pos: 68.5,66.5
+ parent: 1
+ - uid: 2292
+ components:
+ - type: Transform
+ pos: 68.5,24.5
+ parent: 1
+ - uid: 2324
+ components:
+ - type: Transform
+ pos: 69.5,105.5
+ parent: 1
+ - uid: 2325
+ components:
+ - type: Transform
+ pos: 69.5,101.5
+ parent: 1
+ - uid: 2326
+ components:
+ - type: Transform
+ pos: 69.5,100.5
+ parent: 1
+ - uid: 2327
+ components:
+ - type: Transform
+ pos: 69.5,99.5
+ parent: 1
+ - uid: 2332
+ components:
+ - type: Transform
+ pos: 69.5,95.5
+ parent: 1
+ - uid: 2333
+ components:
+ - type: Transform
+ pos: 69.5,94.5
+ parent: 1
+ - uid: 2334
+ components:
+ - type: Transform
+ pos: 69.5,93.5
+ parent: 1
+ - uid: 2335
+ components:
+ - type: Transform
+ pos: 69.5,92.5
+ parent: 1
+ - uid: 2336
+ components:
+ - type: Transform
+ pos: 69.5,91.5
+ parent: 1
+ - uid: 2337
+ components:
+ - type: Transform
+ pos: 69.5,90.5
+ parent: 1
+ - uid: 2338
+ components:
+ - type: Transform
+ pos: 69.5,89.5
+ parent: 1
+ - uid: 2340
+ components:
+ - type: Transform
+ pos: 69.5,79.5
+ parent: 1
+ - uid: 2341
+ components:
+ - type: Transform
+ pos: 69.5,77.5
+ parent: 1
+ - uid: 2343
+ components:
+ - type: Transform
+ pos: 69.5,66.5
+ parent: 1
+ - uid: 2344
+ components:
+ - type: Transform
+ pos: 69.5,62.5
+ parent: 1
+ - uid: 2345
+ components:
+ - type: Transform
+ pos: 69.5,61.5
+ parent: 1
+ - uid: 2350
+ components:
+ - type: Transform
+ pos: 69.5,56.5
+ parent: 1
+ - uid: 2355
+ components:
+ - type: Transform
+ pos: 69.5,51.5
+ parent: 1
+ - uid: 2356
+ components:
+ - type: Transform
+ pos: 69.5,50.5
+ parent: 1
+ - uid: 2358
+ components:
+ - type: Transform
+ pos: 69.5,48.5
+ parent: 1
+ - uid: 2359
+ components:
+ - type: Transform
+ pos: 69.5,47.5
+ parent: 1
+ - uid: 2361
+ components:
+ - type: Transform
+ pos: 69.5,45.5
+ parent: 1
+ - uid: 2362
+ components:
+ - type: Transform
+ pos: 69.5,44.5
+ parent: 1
+ - uid: 2428
+ components:
+ - type: Transform
+ pos: 70.5,105.5
+ parent: 1
+ - uid: 2429
+ components:
+ - type: Transform
+ pos: 70.5,104.5
+ parent: 1
+ - uid: 2430
+ components:
+ - type: Transform
+ pos: 70.5,103.5
+ parent: 1
+ - uid: 2431
+ components:
+ - type: Transform
+ pos: 70.5,102.5
+ parent: 1
+ - uid: 2432
+ components:
+ - type: Transform
+ pos: 70.5,101.5
+ parent: 1
+ - uid: 2433
+ components:
+ - type: Transform
+ pos: 70.5,93.5
+ parent: 1
+ - uid: 2436
+ components:
+ - type: Transform
+ pos: 70.5,89.5
+ parent: 1
+ - uid: 2437
+ components:
+ - type: Transform
+ pos: 70.5,85.5
+ parent: 1
+ - uid: 2438
+ components:
+ - type: Transform
+ pos: 70.5,79.5
+ parent: 1
+ - uid: 2439
+ components:
+ - type: Transform
+ pos: 70.5,77.5
+ parent: 1
+ - uid: 2442
+ components:
+ - type: Transform
+ pos: 70.5,66.5
+ parent: 1
+ - uid: 2444
+ components:
+ - type: Transform
+ pos: 70.5,44.5
+ parent: 1
+ - uid: 2459
+ components:
+ - type: Transform
+ pos: 71.5,120.5
+ parent: 1
+ - uid: 2460
+ components:
+ - type: Transform
+ pos: 71.5,119.5
+ parent: 1
+ - uid: 2461
+ components:
+ - type: Transform
+ pos: 71.5,116.5
+ parent: 1
+ - uid: 2467
+ components:
+ - type: Transform
+ pos: 71.5,105.5
+ parent: 1
+ - uid: 2468
+ components:
+ - type: Transform
+ pos: 71.5,101.5
+ parent: 1
+ - uid: 2471
+ components:
+ - type: Transform
+ pos: 71.5,93.5
+ parent: 1
+ - uid: 2474
+ components:
+ - type: Transform
+ pos: 71.5,85.5
+ parent: 1
+ - uid: 2480
+ components:
+ - type: Transform
+ pos: 71.5,79.5
+ parent: 1
+ - uid: 2481
+ components:
+ - type: Transform
+ pos: 71.5,77.5
+ parent: 1
+ - uid: 2482
+ components:
+ - type: Transform
+ pos: 106.5,105.5
+ parent: 1
+ - uid: 2488
+ components:
+ - type: Transform
+ pos: 71.5,62.5
+ parent: 1
+ - uid: 2500
+ components:
+ - type: Transform
+ pos: 71.5,50.5
+ parent: 1
+ - uid: 2501
+ components:
+ - type: Transform
+ pos: 71.5,44.5
+ parent: 1
+ - uid: 2509
+ components:
+ - type: Transform
+ pos: 72.5,162.5
+ parent: 1
+ - uid: 2510
+ components:
+ - type: Transform
+ pos: 72.5,161.5
+ parent: 1
+ - uid: 2511
+ components:
+ - type: Transform
+ pos: 72.5,160.5
+ parent: 1
+ - uid: 2517
+ components:
+ - type: Transform
+ pos: 72.5,120.5
+ parent: 1
+ - uid: 2524
+ components:
+ - type: Transform
+ pos: 72.5,101.5
+ parent: 1
+ - uid: 2525
+ components:
+ - type: Transform
+ pos: 72.5,93.5
+ parent: 1
+ - uid: 2526
+ components:
+ - type: Transform
+ pos: 72.5,89.5
+ parent: 1
+ - uid: 2529
+ components:
+ - type: Transform
+ pos: 72.5,77.5
+ parent: 1
+ - uid: 2532
+ components:
+ - type: Transform
+ pos: 111.5,103.5
+ parent: 1
+ - uid: 2533
+ components:
+ - type: Transform
+ pos: 111.5,101.5
+ parent: 1
+ - uid: 2538
+ components:
+ - type: Transform
+ pos: 72.5,62.5
+ parent: 1
+ - uid: 2550
+ components:
+ - type: Transform
+ pos: 73.5,120.5
+ parent: 1
+ - uid: 2557
+ components:
+ - type: Transform
+ pos: 73.5,101.5
+ parent: 1
+ - uid: 2559
+ components:
+ - type: Transform
+ pos: 73.5,93.5
+ parent: 1
+ - uid: 2566
+ components:
+ - type: Transform
+ pos: 73.5,79.5
+ parent: 1
+ - uid: 2567
+ components:
+ - type: Transform
+ pos: 73.5,78.5
+ parent: 1
+ - uid: 2568
+ components:
+ - type: Transform
+ pos: 73.5,77.5
+ parent: 1
+ - uid: 2569
+ components:
+ - type: Transform
+ pos: 73.5,66.5
+ parent: 1
+ - uid: 2572
+ components:
+ - type: Transform
+ pos: 73.5,50.5
+ parent: 1
+ - uid: 2573
+ components:
+ - type: Transform
+ pos: 73.5,49.5
+ parent: 1
+ - uid: 2574
+ components:
+ - type: Transform
+ pos: 93.5,109.5
+ parent: 1
+ - uid: 2575
+ components:
+ - type: Transform
+ pos: 73.5,47.5
+ parent: 1
+ - uid: 2576
+ components:
+ - type: Transform
+ pos: 73.5,46.5
+ parent: 1
+ - uid: 2577
+ components:
+ - type: Transform
+ pos: 73.5,44.5
+ parent: 1
+ - uid: 2587
+ components:
+ - type: Transform
+ pos: 74.5,120.5
+ parent: 1
+ - uid: 2589
+ components:
+ - type: Transform
+ pos: 137.5,104.5
+ parent: 1
+ - uid: 2601
+ components:
+ - type: Transform
+ pos: 74.5,79.5
+ parent: 1
+ - uid: 2604
+ components:
+ - type: Transform
+ pos: 74.5,66.5
+ parent: 1
+ - uid: 2612
+ components:
+ - type: Transform
+ pos: 74.5,50.5
+ parent: 1
+ - uid: 2613
+ components:
+ - type: Transform
+ pos: 74.5,46.5
+ parent: 1
+ - uid: 2628
+ components:
+ - type: Transform
+ pos: 75.5,120.5
+ parent: 1
+ - uid: 2641
+ components:
+ - type: Transform
+ pos: 75.5,79.5
+ parent: 1
+ - uid: 2642
+ components:
+ - type: Transform
+ pos: 75.5,77.5
+ parent: 1
+ - uid: 2644
+ components:
+ - type: Transform
+ pos: 75.5,66.5
+ parent: 1
+ - uid: 2651
+ components:
+ - type: Transform
+ pos: 75.5,50.5
+ parent: 1
+ - uid: 2653
+ components:
+ - type: Transform
+ pos: 75.5,44.5
+ parent: 1
+ - uid: 2661
+ components:
+ - type: Transform
+ pos: 76.5,157.5
+ parent: 1
+ - uid: 2665
+ components:
+ - type: Transform
+ pos: 76.5,120.5
+ parent: 1
+ - uid: 2675
+ components:
+ - type: Transform
+ pos: 76.5,101.5
+ parent: 1
+ - uid: 2677
+ components:
+ - type: Transform
+ pos: 76.5,93.5
+ parent: 1
+ - uid: 2686
+ components:
+ - type: Transform
+ pos: 76.5,79.5
+ parent: 1
+ - uid: 2703
+ components:
+ - type: Transform
+ pos: 76.5,66.5
+ parent: 1
+ - uid: 2706
+ components:
+ - type: Transform
+ pos: 76.5,50.5
+ parent: 1
+ - uid: 2707
+ components:
+ - type: Transform
+ pos: 76.5,46.5
+ parent: 1
+ - uid: 2708
+ components:
+ - type: Transform
+ pos: 93.5,107.5
+ parent: 1
+ - uid: 2738
+ components:
+ - type: Transform
+ pos: 77.5,120.5
+ parent: 1
+ - uid: 2746
+ components:
+ - type: Transform
+ pos: 77.5,101.5
+ parent: 1
+ - uid: 2747
+ components:
+ - type: Transform
+ pos: 77.5,93.5
+ parent: 1
+ - uid: 2748
+ components:
+ - type: Transform
+ pos: 77.5,89.5
+ parent: 1
+ - uid: 2750
+ components:
+ - type: Transform
+ pos: 77.5,79.5
+ parent: 1
+ - uid: 2754
+ components:
+ - type: Transform
+ pos: 77.5,66.5
+ parent: 1
+ - uid: 2759
+ components:
+ - type: Transform
+ pos: 77.5,46.5
+ parent: 1
+ - uid: 2760
+ components:
+ - type: Transform
+ pos: 77.5,44.5
+ parent: 1
+ - uid: 2768
+ components:
+ - type: Transform
+ pos: 78.5,157.5
+ parent: 1
+ - uid: 2771
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,142.5
+ parent: 1
+ - uid: 2779
+ components:
+ - type: Transform
+ pos: 78.5,120.5
+ parent: 1
+ - uid: 2780
+ components:
+ - type: Transform
+ pos: 78.5,119.5
+ parent: 1
+ - uid: 2781
+ components:
+ - type: Transform
+ pos: 78.5,118.5
+ parent: 1
+ - uid: 2782
+ components:
+ - type: Transform
+ pos: 78.5,117.5
+ parent: 1
+ - uid: 2783
+ components:
+ - type: Transform
+ pos: 78.5,116.5
+ parent: 1
+ - uid: 2789
+ components:
+ - type: Transform
+ pos: 78.5,105.5
+ parent: 1
+ - uid: 2790
+ components:
+ - type: Transform
+ pos: 78.5,101.5
+ parent: 1
+ - uid: 2793
+ components:
+ - type: Transform
+ pos: 78.5,93.5
+ parent: 1
+ - uid: 2796
+ components:
+ - type: Transform
+ pos: 78.5,85.5
+ parent: 1
+ - uid: 2797
+ components:
+ - type: Transform
+ pos: 78.5,84.5
+ parent: 1
+ - uid: 2798
+ components:
+ - type: Transform
+ pos: 78.5,83.5
+ parent: 1
+ - uid: 2799
+ components:
+ - type: Transform
+ pos: 78.5,82.5
+ parent: 1
+ - uid: 2800
+ components:
+ - type: Transform
+ pos: 78.5,81.5
+ parent: 1
+ - uid: 2801
+ components:
+ - type: Transform
+ pos: 78.5,79.5
+ parent: 1
+ - uid: 2806
+ components:
+ - type: Transform
+ pos: 145.5,87.5
+ parent: 1
+ - uid: 2811
+ components:
+ - type: Transform
+ pos: 78.5,69.5
+ parent: 1
+ - uid: 2812
+ components:
+ - type: Transform
+ pos: 78.5,68.5
+ parent: 1
+ - uid: 2813
+ components:
+ - type: Transform
+ pos: 78.5,67.5
+ parent: 1
+ - uid: 2814
+ components:
+ - type: Transform
+ pos: 78.5,66.5
+ parent: 1
+ - uid: 2817
+ components:
+ - type: Transform
+ pos: 78.5,50.5
+ parent: 1
+ - uid: 2818
+ components:
+ - type: Transform
+ pos: 78.5,46.5
+ parent: 1
+ - uid: 2820
+ components:
+ - type: Transform
+ pos: 78.5,44.5
+ parent: 1
+ - uid: 2850
+ components:
+ - type: Transform
+ pos: 79.5,120.5
+ parent: 1
+ - uid: 2856
+ components:
+ - type: Transform
+ pos: 79.5,105.5
+ parent: 1
+ - uid: 2857
+ components:
+ - type: Transform
+ pos: 79.5,104.5
+ parent: 1
+ - uid: 2859
+ components:
+ - type: Transform
+ pos: 79.5,102.5
+ parent: 1
+ - uid: 2860
+ components:
+ - type: Transform
+ pos: 79.5,101.5
+ parent: 1
+ - uid: 2861
+ components:
+ - type: Transform
+ pos: 79.5,93.5
+ parent: 1
+ - uid: 2864
+ components:
+ - type: Transform
+ pos: 79.5,89.5
+ parent: 1
+ - uid: 2867
+ components:
+ - type: Transform
+ pos: 79.5,81.5
+ parent: 1
+ - uid: 2868
+ components:
+ - type: Transform
+ pos: 79.5,79.5
+ parent: 1
+ - uid: 2873
+ components:
+ - type: Transform
+ pos: 79.5,69.5
+ parent: 1
+ - uid: 2879
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,85.5
+ parent: 1
+ - uid: 2884
+ components:
+ - type: Transform
+ pos: 79.5,50.5
+ parent: 1
+ - uid: 2887
+ components:
+ - type: Transform
+ pos: 79.5,44.5
+ parent: 1
+ - uid: 2908
+ components:
+ - type: Transform
+ pos: 80.5,111.5
+ parent: 1
+ - uid: 2909
+ components:
+ - type: Transform
+ pos: 80.5,110.5
+ parent: 1
+ - uid: 2910
+ components:
+ - type: Transform
+ pos: 80.5,109.5
+ parent: 1
+ - uid: 2911
+ components:
+ - type: Transform
+ pos: 80.5,105.5
+ parent: 1
+ - uid: 2912
+ components:
+ - type: Transform
+ pos: 80.5,101.5
+ parent: 1
+ - uid: 2913
+ components:
+ - type: Transform
+ pos: 80.5,100.5
+ parent: 1
+ - uid: 2914
+ components:
+ - type: Transform
+ pos: 80.5,99.5
+ parent: 1
+ - uid: 2919
+ components:
+ - type: Transform
+ pos: 80.5,95.5
+ parent: 1
+ - uid: 2920
+ components:
+ - type: Transform
+ pos: 80.5,94.5
+ parent: 1
+ - uid: 2921
+ components:
+ - type: Transform
+ pos: 80.5,93.5
+ parent: 1
+ - uid: 2922
+ components:
+ - type: Transform
+ pos: 80.5,92.5
+ parent: 1
+ - uid: 2923
+ components:
+ - type: Transform
+ pos: 80.5,91.5
+ parent: 1
+ - uid: 2924
+ components:
+ - type: Transform
+ pos: 80.5,90.5
+ parent: 1
+ - uid: 2925
+ components:
+ - type: Transform
+ pos: 80.5,89.5
+ parent: 1
+ - uid: 2931
+ components:
+ - type: Transform
+ pos: 80.5,79.5
+ parent: 1
+ - uid: 2946
+ components:
+ - type: Transform
+ pos: 80.5,69.5
+ parent: 1
+ - uid: 2950
+ components:
+ - type: Transform
+ pos: 45.5,110.5
+ parent: 1
+ - uid: 2956
+ components:
+ - type: Transform
+ pos: 80.5,50.5
+ parent: 1
+ - uid: 2960
+ components:
+ - type: Transform
+ pos: 80.5,46.5
+ parent: 1
+ - uid: 2961
+ components:
+ - type: Transform
+ pos: 80.5,44.5
+ parent: 1
+ - uid: 2983
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,46.5
+ parent: 1
+ - uid: 2992
+ components:
+ - type: Transform
+ pos: 81.5,81.5
+ parent: 1
+ - uid: 2993
+ components:
+ - type: Transform
+ pos: 81.5,79.5
+ parent: 1
+ - uid: 3036
+ components:
+ - type: Transform
+ pos: 82.5,157.5
+ parent: 1
+ - uid: 3053
+ components:
+ - type: Transform
+ pos: 82.5,85.5
+ parent: 1
+ - uid: 3054
+ components:
+ - type: Transform
+ pos: 82.5,81.5
+ parent: 1
+ - uid: 3055
+ components:
+ - type: Transform
+ pos: 82.5,79.5
+ parent: 1
+ - uid: 3058
+ components:
+ - type: Transform
+ pos: 82.5,69.5
+ parent: 1
+ - uid: 3071
+ components:
+ - type: Transform
+ pos: 82.5,24.5
+ parent: 1
+ - uid: 3076
+ components:
+ - type: Transform
+ pos: 83.5,157.5
+ parent: 1
+ - uid: 3105
+ components:
+ - type: Transform
+ pos: 83.5,105.5
+ parent: 1
+ - uid: 3108
+ components:
+ - type: Transform
+ pos: 83.5,81.5
+ parent: 1
+ - uid: 3109
+ components:
+ - type: Transform
+ pos: 83.5,79.5
+ parent: 1
+ - uid: 3114
+ components:
+ - type: Transform
+ pos: 83.5,69.5
+ parent: 1
+ - uid: 3132
+ components:
+ - type: Transform
+ pos: 85.5,59.5
+ parent: 1
+ - uid: 3134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,62.5
+ parent: 1
+ - uid: 3144
+ components:
+ - type: Transform
+ pos: 84.5,160.5
+ parent: 1
+ - uid: 3145
+ components:
+ - type: Transform
+ pos: 84.5,159.5
+ parent: 1
+ - uid: 3174
+ components:
+ - type: Transform
+ pos: 84.5,89.5
+ parent: 1
+ - uid: 3175
+ components:
+ - type: Transform
+ pos: 84.5,85.5
+ parent: 1
+ - uid: 3176
+ components:
+ - type: Transform
+ pos: 84.5,81.5
+ parent: 1
+ - uid: 3177
+ components:
+ - type: Transform
+ pos: 84.5,79.5
+ parent: 1
+ - uid: 3178
+ components:
+ - type: Transform
+ pos: 84.5,69.5
+ parent: 1
+ - uid: 3185
+ components:
+ - type: Transform
+ pos: 84.5,24.5
+ parent: 1
+ - uid: 3193
+ components:
+ - type: Transform
+ pos: 85.5,160.5
+ parent: 1
+ - uid: 3216
+ components:
+ - type: Transform
+ pos: 85.5,120.5
+ parent: 1
+ - uid: 3219
+ components:
+ - type: Transform
+ pos: 85.5,105.5
+ parent: 1
+ - uid: 3227
+ components:
+ - type: Transform
+ pos: 129.5,146.5
+ parent: 1
+ - uid: 3229
+ components:
+ - type: Transform
+ pos: 129.5,144.5
+ parent: 1
+ - uid: 3240
+ components:
+ - type: Transform
+ pos: 85.5,85.5
+ parent: 1
+ - uid: 3241
+ components:
+ - type: Transform
+ pos: 85.5,84.5
+ parent: 1
+ - uid: 3242
+ components:
+ - type: Transform
+ pos: 85.5,83.5
+ parent: 1
+ - uid: 3243
+ components:
+ - type: Transform
+ pos: 85.5,82.5
+ parent: 1
+ - uid: 3244
+ components:
+ - type: Transform
+ pos: 85.5,81.5
+ parent: 1
+ - uid: 3245
+ components:
+ - type: Transform
+ pos: 85.5,79.5
+ parent: 1
+ - uid: 3246
+ components:
+ - type: Transform
+ pos: 85.5,69.5
+ parent: 1
+ - uid: 3260
+ components:
+ - type: Transform
+ pos: 85.5,43.5
+ parent: 1
+ - uid: 3261
+ components:
+ - type: Transform
+ pos: 85.5,42.5
+ parent: 1
+ - uid: 3263
+ components:
+ - type: Transform
+ pos: 85.5,40.5
+ parent: 1
+ - uid: 3264
+ components:
+ - type: Transform
+ pos: 85.5,39.5
+ parent: 1
+ - uid: 3265
+ components:
+ - type: Transform
+ pos: 85.5,38.5
+ parent: 1
+ - uid: 3267
+ components:
+ - type: Transform
+ pos: 85.5,36.5
+ parent: 1
+ - uid: 3269
+ components:
+ - type: Transform
+ pos: 85.5,34.5
+ parent: 1
+ - uid: 3270
+ components:
+ - type: Transform
+ pos: 85.5,33.5
+ parent: 1
+ - uid: 3271
+ components:
+ - type: Transform
+ pos: 85.5,32.5
+ parent: 1
+ - uid: 3272
+ components:
+ - type: Transform
+ pos: 85.5,31.5
+ parent: 1
+ - uid: 3273
+ components:
+ - type: Transform
+ pos: 85.5,30.5
+ parent: 1
+ - uid: 3274
+ components:
+ - type: Transform
+ pos: 96.5,109.5
+ parent: 1
+ - uid: 3275
+ components:
+ - type: Transform
+ pos: 85.5,28.5
+ parent: 1
+ - uid: 3276
+ components:
+ - type: Transform
+ pos: 85.5,27.5
+ parent: 1
+ - uid: 3277
+ components:
+ - type: Transform
+ pos: 85.5,26.5
+ parent: 1
+ - uid: 3278
+ components:
+ - type: Transform
+ pos: 85.5,25.5
+ parent: 1
+ - uid: 3279
+ components:
+ - type: Transform
+ pos: 85.5,24.5
+ parent: 1
+ - uid: 3281
+ components:
+ - type: Transform
+ pos: 85.5,21.5
+ parent: 1
+ - uid: 3310
+ components:
+ - type: Transform
+ pos: 86.5,105.5
+ parent: 1
+ - uid: 3315
+ components:
+ - type: Transform
+ pos: 70.5,159.5
+ parent: 1
+ - uid: 3317
+ components:
+ - type: Transform
+ pos: 86.5,79.5
+ parent: 1
+ - uid: 3318
+ components:
+ - type: Transform
+ pos: 86.5,69.5
+ parent: 1
+ - uid: 3325
+ components:
+ - type: Transform
+ pos: 87.5,160.5
+ parent: 1
+ - uid: 3340
+ components:
+ - type: Transform
+ pos: 87.5,79.5
+ parent: 1
+ - uid: 3341
+ components:
+ - type: Transform
+ pos: 87.5,78.5
+ parent: 1
+ - uid: 3342
+ components:
+ - type: Transform
+ pos: 87.5,70.5
+ parent: 1
+ - uid: 3343
+ components:
+ - type: Transform
+ pos: 87.5,69.5
+ parent: 1
+ - uid: 3371
+ components:
+ - type: Transform
+ pos: 87.5,29.5
+ parent: 1
+ - uid: 3372
+ components:
+ - type: Transform
+ pos: 87.5,28.5
+ parent: 1
+ - uid: 3374
+ components:
+ - type: Transform
+ pos: 87.5,26.5
+ parent: 1
+ - uid: 3375
+ components:
+ - type: Transform
+ pos: 87.5,25.5
+ parent: 1
+ - uid: 3377
+ components:
+ - type: Transform
+ pos: 87.5,23.5
+ parent: 1
+ - uid: 3378
+ components:
+ - type: Transform
+ pos: 87.5,22.5
+ parent: 1
+ - uid: 3382
+ components:
+ - type: Transform
+ pos: 88.5,160.5
+ parent: 1
+ - uid: 3403
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,71.5
+ parent: 1
+ - uid: 3430
+ components:
+ - type: Transform
+ pos: 89.5,111.5
+ parent: 1
+ - uid: 3453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,66.5
+ parent: 1
+ - uid: 3466
+ components:
+ - type: Transform
+ pos: 89.5,30.5
+ parent: 1
+ - uid: 3478
+ components:
+ - type: Transform
+ pos: 90.5,166.5
+ parent: 1
+ - uid: 3479
+ components:
+ - type: Transform
+ pos: 90.5,160.5
+ parent: 1
+ - uid: 3552
+ components:
+ - type: Transform
+ pos: 89.5,105.5
+ parent: 1
+ - uid: 3555
+ components:
+ - type: Transform
+ pos: 90.5,70.5
+ parent: 1
+ - uid: 3565
+ components:
+ - type: Transform
+ pos: 119.5,111.5
+ parent: 1
+ - uid: 3578
+ components:
+ - type: Transform
+ pos: 91.5,124.5
+ parent: 1
+ - uid: 3588
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,112.5
+ parent: 1
+ - uid: 3589
+ components:
+ - type: Transform
+ pos: 91.5,79.5
+ parent: 1
+ - uid: 3590
+ components:
+ - type: Transform
+ pos: 91.5,78.5
+ parent: 1
+ - uid: 3591
+ components:
+ - type: Transform
+ pos: 91.5,77.5
+ parent: 1
+ - uid: 3593
+ components:
+ - type: Transform
+ pos: 91.5,75.5
+ parent: 1
+ - uid: 3595
+ components:
+ - type: Transform
+ pos: 91.5,73.5
+ parent: 1
+ - uid: 3597
+ components:
+ - type: Transform
+ pos: 91.5,71.5
+ parent: 1
+ - uid: 3598
+ components:
+ - type: Transform
+ pos: 91.5,70.5
+ parent: 1
+ - uid: 3609
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,112.5
+ parent: 1
+ - uid: 3611
+ components:
+ - type: Transform
+ pos: 91.5,33.5
+ parent: 1
+ - uid: 3619
+ components:
+ - type: Transform
+ pos: 92.5,166.5
+ parent: 1
+ - uid: 3622
+ components:
+ - type: Transform
+ pos: 92.5,156.5
+ parent: 1
+ - uid: 3625
+ components:
+ - type: Transform
+ pos: 92.5,153.5
+ parent: 1
+ - uid: 3626
+ components:
+ - type: Transform
+ pos: 92.5,152.5
+ parent: 1
+ - uid: 3627
+ components:
+ - type: Transform
+ pos: 92.5,151.5
+ parent: 1
+ - uid: 3629
+ components:
+ - type: Transform
+ pos: 92.5,149.5
+ parent: 1
+ - uid: 3630
+ components:
+ - type: Transform
+ pos: 92.5,148.5
+ parent: 1
+ - uid: 3631
+ components:
+ - type: Transform
+ pos: 92.5,147.5
+ parent: 1
+ - uid: 3641
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,112.5
+ parent: 1
+ - uid: 3656
+ components:
+ - type: Transform
+ pos: 92.5,131.5
+ parent: 1
+ - uid: 3658
+ components:
+ - type: Transform
+ pos: 92.5,129.5
+ parent: 1
+ - uid: 3659
+ components:
+ - type: Transform
+ pos: 92.5,128.5
+ parent: 1
+ - uid: 3660
+ components:
+ - type: Transform
+ pos: 92.5,127.5
+ parent: 1
+ - uid: 3661
+ components:
+ - type: Transform
+ pos: 92.5,126.5
+ parent: 1
+ - uid: 3662
+ components:
+ - type: Transform
+ pos: 92.5,125.5
+ parent: 1
+ - uid: 3663
+ components:
+ - type: Transform
+ pos: 92.5,124.5
+ parent: 1
+ - uid: 3669
+ components:
+ - type: Transform
+ pos: 120.5,105.5
+ parent: 1
+ - uid: 3670
+ components:
+ - type: Transform
+ pos: 119.5,108.5
+ parent: 1
+ - uid: 3671
+ components:
+ - type: Transform
+ pos: 119.5,109.5
+ parent: 1
+ - uid: 3672
+ components:
+ - type: Transform
+ pos: 123.5,105.5
+ parent: 1
+ - uid: 3676
+ components:
+ - type: Transform
+ pos: 92.5,105.5
+ parent: 1
+ - uid: 3677
+ components:
+ - type: Transform
+ pos: 92.5,104.5
+ parent: 1
+ - uid: 3678
+ components:
+ - type: Transform
+ pos: 92.5,103.5
+ parent: 1
+ - uid: 3679
+ components:
+ - type: Transform
+ pos: 88.5,105.5
+ parent: 1
+ - uid: 3681
+ components:
+ - type: Transform
+ pos: 92.5,98.5
+ parent: 1
+ - uid: 3682
+ components:
+ - type: Transform
+ pos: 92.5,97.5
+ parent: 1
+ - uid: 3683
+ components:
+ - type: Transform
+ pos: 92.5,96.5
+ parent: 1
+ - uid: 3684
+ components:
+ - type: Transform
+ pos: 92.5,95.5
+ parent: 1
+ - uid: 3688
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,112.5
+ parent: 1
+ - uid: 3689
+ components:
+ - type: Transform
+ pos: 92.5,79.5
+ parent: 1
+ - uid: 3714
+ components:
+ - type: Transform
+ pos: 92.5,33.5
+ parent: 1
+ - uid: 3725
+ components:
+ - type: Transform
+ pos: 93.5,170.5
+ parent: 1
+ - uid: 3726
+ components:
+ - type: Transform
+ pos: 93.5,169.5
+ parent: 1
+ - uid: 3728
+ components:
+ - type: Transform
+ pos: 93.5,167.5
+ parent: 1
+ - uid: 3741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 150.5,97.5
+ parent: 1
+ - uid: 3743
+ components:
+ - type: Transform
+ pos: 93.5,102.5
+ parent: 1
+ - uid: 3746
+ components:
+ - type: Transform
+ pos: 93.5,99.5
+ parent: 1
+ - uid: 3747
+ components:
+ - type: Transform
+ pos: 93.5,95.5
+ parent: 1
+ - uid: 3757
+ components:
+ - type: Transform
+ pos: 93.5,57.5
+ parent: 1
+ - uid: 3761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,29.5
+ parent: 1
+ - uid: 3779
+ components:
+ - type: Transform
+ pos: 94.5,105.5
+ parent: 1
+ - uid: 3780
+ components:
+ - type: Transform
+ pos: 94.5,95.5
+ parent: 1
+ - uid: 3789
+ components:
+ - type: Transform
+ pos: 94.5,85.5
+ parent: 1
+ - uid: 3794
+ components:
+ - type: Transform
+ pos: 94.5,79.5
+ parent: 1
+ - uid: 3795
+ components:
+ - type: Transform
+ pos: 94.5,62.5
+ parent: 1
+ - uid: 3796
+ components:
+ - type: Transform
+ pos: 94.5,57.5
+ parent: 1
+ - uid: 3797
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 97.5,53.5
+ parent: 1
+ - uid: 3802
+ components:
+ - type: Transform
+ pos: 94.5,33.5
+ parent: 1
+ - uid: 3809
+ components:
+ - type: Transform
+ pos: 95.5,170.5
+ parent: 1
+ - uid: 3832
+ components:
+ - type: Transform
+ pos: 97.5,108.5
+ parent: 1
+ - uid: 3833
+ components:
+ - type: Transform
+ pos: 97.5,109.5
+ parent: 1
+ - uid: 3836
+ components:
+ - type: Transform
+ pos: 95.5,95.5
+ parent: 1
+ - uid: 3838
+ components:
+ - type: Transform
+ pos: 95.5,79.5
+ parent: 1
+ - uid: 3839
+ components:
+ - type: Transform
+ pos: 95.5,75.5
+ parent: 1
+ - uid: 3840
+ components:
+ - type: Transform
+ pos: 95.5,74.5
+ parent: 1
+ - uid: 3842
+ components:
+ - type: Transform
+ pos: 95.5,72.5
+ parent: 1
+ - uid: 3843
+ components:
+ - type: Transform
+ pos: 95.5,71.5
+ parent: 1
+ - uid: 3845
+ components:
+ - type: Transform
+ pos: 95.5,69.5
+ parent: 1
+ - uid: 3846
+ components:
+ - type: Transform
+ pos: 95.5,68.5
+ parent: 1
+ - uid: 3847
+ components:
+ - type: Transform
+ pos: 95.5,67.5
+ parent: 1
+ - uid: 3848
+ components:
+ - type: Transform
+ pos: 95.5,66.5
+ parent: 1
+ - uid: 3849
+ components:
+ - type: Transform
+ pos: 95.5,65.5
+ parent: 1
+ - uid: 3850
+ components:
+ - type: Transform
+ pos: 95.5,64.5
+ parent: 1
+ - uid: 3851
+ components:
+ - type: Transform
+ pos: 95.5,63.5
+ parent: 1
+ - uid: 3852
+ components:
+ - type: Transform
+ pos: 95.5,62.5
+ parent: 1
+ - uid: 3853
+ components:
+ - type: Transform
+ pos: 95.5,61.5
+ parent: 1
+ - uid: 3857
+ components:
+ - type: Transform
+ pos: 95.5,57.5
+ parent: 1
+ - uid: 3862
+ components:
+ - type: Transform
+ pos: 95.5,33.5
+ parent: 1
+ - uid: 3870
+ components:
+ - type: Transform
+ pos: 96.5,170.5
+ parent: 1
+ - uid: 3903
+ components:
+ - type: Transform
+ pos: 96.5,126.5
+ parent: 1
+ - uid: 3912
+ components:
+ - type: Transform
+ pos: 119.5,106.5
+ parent: 1
+ - uid: 3913
+ components:
+ - type: Transform
+ pos: 119.5,107.5
+ parent: 1
+ - uid: 3914
+ components:
+ - type: Transform
+ pos: 96.5,95.5
+ parent: 1
+ - uid: 3915
+ components:
+ - type: Transform
+ pos: 96.5,94.5
+ parent: 1
+ - uid: 3917
+ components:
+ - type: Transform
+ pos: 96.5,92.5
+ parent: 1
+ - uid: 3918
+ components:
+ - type: Transform
+ pos: 96.5,91.5
+ parent: 1
+ - uid: 3919
+ components:
+ - type: Transform
+ pos: 96.5,90.5
+ parent: 1
+ - uid: 3920
+ components:
+ - type: Transform
+ pos: 96.5,89.5
+ parent: 1
+ - uid: 3922
+ components:
+ - type: Transform
+ pos: 96.5,79.5
+ parent: 1
+ - uid: 3930
+ components:
+ - type: Transform
+ pos: 96.5,33.5
+ parent: 1
+ - uid: 3968
+ components:
+ - type: Transform
+ pos: 97.5,95.5
+ parent: 1
+ - uid: 3969
+ components:
+ - type: Transform
+ pos: 97.5,89.5
+ parent: 1
+ - uid: 3971
+ components:
+ - type: Transform
+ pos: 97.5,87.5
+ parent: 1
+ - uid: 3972
+ components:
+ - type: Transform
+ pos: 97.5,86.5
+ parent: 1
+ - uid: 3973
+ components:
+ - type: Transform
+ pos: 97.5,85.5
+ parent: 1
+ - uid: 3975
+ components:
+ - type: Transform
+ pos: 97.5,83.5
+ parent: 1
+ - uid: 3976
+ components:
+ - type: Transform
+ pos: 97.5,82.5
+ parent: 1
+ - uid: 3977
+ components:
+ - type: Transform
+ pos: 97.5,81.5
+ parent: 1
+ - uid: 3978
+ components:
+ - type: Transform
+ pos: 97.5,80.5
+ parent: 1
+ - uid: 3979
+ components:
+ - type: Transform
+ pos: 97.5,79.5
+ parent: 1
+ - uid: 3980
+ components:
+ - type: Transform
+ pos: 97.5,75.5
+ parent: 1
+ - uid: 3994
+ components:
+ - type: Transform
+ pos: 97.5,61.5
+ parent: 1
+ - uid: 3995
+ components:
+ - type: Transform
+ pos: 97.5,60.5
+ parent: 1
+ - uid: 3996
+ components:
+ - type: Transform
+ pos: 97.5,59.5
+ parent: 1
+ - uid: 3998
+ components:
+ - type: Transform
+ pos: 97.5,57.5
+ parent: 1
+ - uid: 3999
+ components:
+ - type: Transform
+ pos: 97.5,56.5
+ parent: 1
+ - uid: 4005
+ components:
+ - type: Transform
+ pos: 97.5,24.5
+ parent: 1
+ - uid: 4023
+ components:
+ - type: Transform
+ pos: 98.5,95.5
+ parent: 1
+ - uid: 4029
+ components:
+ - type: Transform
+ pos: 98.5,61.5
+ parent: 1
+ - uid: 4033
+ components:
+ - type: Transform
+ pos: 98.5,56.5
+ parent: 1
+ - uid: 4052
+ components:
+ - type: Transform
+ pos: 98.5,33.5
+ parent: 1
+ - uid: 4107
+ components:
+ - type: Transform
+ pos: 99.5,61.5
+ parent: 1
+ - uid: 4112
+ components:
+ - type: Transform
+ pos: 99.5,49.5
+ parent: 1
+ - uid: 4119
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,75.5
+ parent: 1
+ - uid: 4121
+ components:
+ - type: Transform
+ pos: 100.5,38.5
+ parent: 1
+ - uid: 4123
+ components:
+ - type: Transform
+ pos: 97.5,38.5
+ parent: 1
+ - uid: 4141
+ components:
+ - type: Transform
+ pos: 89.5,39.5
+ parent: 1
+ - uid: 4159
+ components:
+ - type: Transform
+ pos: 100.5,95.5
+ parent: 1
+ - uid: 4164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,62.5
+ parent: 1
+ - uid: 4167
+ components:
+ - type: Transform
+ pos: 100.5,67.5
+ parent: 1
+ - uid: 4170
+ components:
+ - type: Transform
+ pos: 100.5,56.5
+ parent: 1
+ - uid: 4172
+ components:
+ - type: Transform
+ pos: 100.5,49.5
+ parent: 1
+ - uid: 4173
+ components:
+ - type: Transform
+ pos: 89.5,38.5
+ parent: 1
+ - uid: 4174
+ components:
+ - type: Transform
+ pos: 100.5,33.5
+ parent: 1
+ - uid: 4184
+ components:
+ - type: Transform
+ pos: 89.5,49.5
+ parent: 1
+ - uid: 4193
+ components:
+ - type: Transform
+ pos: 101.5,116.5
+ parent: 1
+ - uid: 4196
+ components:
+ - type: Transform
+ pos: 101.5,95.5
+ parent: 1
+ - uid: 4203
+ components:
+ - type: Transform
+ pos: 101.5,61.5
+ parent: 1
+ - uid: 4204
+ components:
+ - type: Transform
+ pos: 101.5,56.5
+ parent: 1
+ - uid: 4206
+ components:
+ - type: Transform
+ pos: 101.5,53.5
+ parent: 1
+ - uid: 4209
+ components:
+ - type: Transform
+ pos: 98.5,38.5
+ parent: 1
+ - uid: 4210
+ components:
+ - type: Transform
+ pos: 99.5,38.5
+ parent: 1
+ - uid: 4218
+ components:
+ - type: Transform
+ pos: 102.5,170.5
+ parent: 1
+ - uid: 4237
+ components:
+ - type: Transform
+ pos: 102.5,105.5
+ parent: 1
+ - uid: 4238
+ components:
+ - type: Transform
+ pos: 102.5,100.5
+ parent: 1
+ - uid: 4239
+ components:
+ - type: Transform
+ pos: 102.5,99.5
+ parent: 1
+ - uid: 4242
+ components:
+ - type: Transform
+ pos: 102.5,96.5
+ parent: 1
+ - uid: 4243
+ components:
+ - type: Transform
+ pos: 102.5,95.5
+ parent: 1
+ - uid: 4244
+ components:
+ - type: Transform
+ pos: 102.5,94.5
+ parent: 1
+ - uid: 4245
+ components:
+ - type: Transform
+ pos: 102.5,93.5
+ parent: 1
+ - uid: 4246
+ components:
+ - type: Transform
+ pos: 102.5,92.5
+ parent: 1
+ - uid: 4247
+ components:
+ - type: Transform
+ pos: 102.5,91.5
+ parent: 1
+ - uid: 4248
+ components:
+ - type: Transform
+ pos: 102.5,90.5
+ parent: 1
+ - uid: 4255
+ components:
+ - type: Transform
+ pos: 102.5,65.5
+ parent: 1
+ - uid: 4256
+ components:
+ - type: Transform
+ pos: 102.5,61.5
+ parent: 1
+ - uid: 4257
+ components:
+ - type: Transform
+ pos: 102.5,56.5
+ parent: 1
+ - uid: 4258
+ components:
+ - type: Transform
+ pos: 102.5,53.5
+ parent: 1
+ - uid: 4305
+ components:
+ - type: Transform
+ pos: 103.5,95.5
+ parent: 1
+ - uid: 4323
+ components:
+ - type: Transform
+ pos: 103.5,61.5
+ parent: 1
+ - uid: 4324
+ components:
+ - type: Transform
+ pos: 103.5,60.5
+ parent: 1
+ - uid: 4325
+ components:
+ - type: Transform
+ pos: 103.5,59.5
+ parent: 1
+ - uid: 4326
+ components:
+ - type: Transform
+ pos: 103.5,58.5
+ parent: 1
+ - uid: 4327
+ components:
+ - type: Transform
+ pos: 103.5,57.5
+ parent: 1
+ - uid: 4328
+ components:
+ - type: Transform
+ pos: 103.5,56.5
+ parent: 1
+ - uid: 4330
+ components:
+ - type: Transform
+ pos: 103.5,53.5
+ parent: 1
+ - uid: 4343
+ components:
+ - type: Transform
+ pos: 104.5,170.5
+ parent: 1
+ - uid: 4359
+ components:
+ - type: Transform
+ pos: 104.5,105.5
+ parent: 1
+ - uid: 4368
+ components:
+ - type: Transform
+ pos: 104.5,65.5
+ parent: 1
+ - uid: 4370
+ components:
+ - type: Transform
+ pos: 104.5,60.5
+ parent: 1
+ - uid: 4372
+ components:
+ - type: Transform
+ pos: 104.5,53.5
+ parent: 1
+ - uid: 4400
+ components:
+ - type: Transform
+ pos: 105.5,116.5
+ parent: 1
+ - uid: 4404
+ components:
+ - type: Transform
+ pos: 105.5,105.5
+ parent: 1
+ - uid: 4405
+ components:
+ - type: Transform
+ pos: 105.5,100.5
+ parent: 1
+ - uid: 4406
+ components:
+ - type: Transform
+ pos: 105.5,95.5
+ parent: 1
+ - uid: 4413
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,47.5
+ parent: 1
+ - uid: 4416
+ components:
+ - type: Transform
+ pos: 105.5,60.5
+ parent: 1
+ - uid: 4418
+ components:
+ - type: Transform
+ pos: 105.5,55.5
+ parent: 1
+ - uid: 4424
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,41.5
+ parent: 1
+ - uid: 4451
+ components:
+ - type: Transform
+ pos: 106.5,100.5
+ parent: 1
+ - uid: 4452
+ components:
+ - type: Transform
+ pos: 106.5,95.5
+ parent: 1
+ - uid: 4485
+ components:
+ - type: Transform
+ pos: 106.5,33.5
+ parent: 1
+ - uid: 4512
+ components:
+ - type: Transform
+ pos: 107.5,105.5
+ parent: 1
+ - uid: 4513
+ components:
+ - type: Transform
+ pos: 107.5,100.5
+ parent: 1
+ - uid: 4514
+ components:
+ - type: Transform
+ pos: 107.5,95.5
+ parent: 1
+ - uid: 4528
+ components:
+ - type: Transform
+ pos: 107.5,60.5
+ parent: 1
+ - uid: 4530
+ components:
+ - type: Transform
+ pos: 107.5,55.5
+ parent: 1
+ - uid: 4531
+ components:
+ - type: Transform
+ pos: 107.5,53.5
+ parent: 1
+ - uid: 4535
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 86.5,32.5
+ parent: 1
+ - uid: 4546
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,166.5
+ parent: 1
+ - uid: 4566
+ components:
+ - type: Transform
+ pos: 108.5,95.5
+ parent: 1
+ - uid: 4575
+ components:
+ - type: Transform
+ pos: 108.5,65.5
+ parent: 1
+ - uid: 4577
+ components:
+ - type: Transform
+ pos: 108.5,60.5
+ parent: 1
+ - uid: 4578
+ components:
+ - type: Transform
+ pos: 108.5,55.5
+ parent: 1
+ - uid: 4581
+ components:
+ - type: Transform
+ pos: 108.5,49.5
+ parent: 1
+ - uid: 4590
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,166.5
+ parent: 1
+ - uid: 4609
+ components:
+ - type: Transform
+ pos: 109.5,105.5
+ parent: 1
+ - uid: 4610
+ components:
+ - type: Transform
+ pos: 109.5,100.5
+ parent: 1
+ - uid: 4611
+ components:
+ - type: Transform
+ pos: 109.5,95.5
+ parent: 1
+ - uid: 4630
+ components:
+ - type: Transform
+ pos: 109.5,61.5
+ parent: 1
+ - uid: 4631
+ components:
+ - type: Transform
+ pos: 109.5,60.5
+ parent: 1
+ - uid: 4632
+ components:
+ - type: Transform
+ pos: 109.5,59.5
+ parent: 1
+ - uid: 4633
+ components:
+ - type: Transform
+ pos: 109.5,58.5
+ parent: 1
+ - uid: 4634
+ components:
+ - type: Transform
+ pos: 109.5,57.5
+ parent: 1
+ - uid: 4635
+ components:
+ - type: Transform
+ pos: 109.5,56.5
+ parent: 1
+ - uid: 4636
+ components:
+ - type: Transform
+ pos: 109.5,55.5
+ parent: 1
+ - uid: 4637
+ components:
+ - type: Transform
+ pos: 109.5,49.5
+ parent: 1
+ - uid: 4669
+ components:
+ - type: Transform
+ pos: 110.5,105.5
+ parent: 1
+ - uid: 4670
+ components:
+ - type: Transform
+ pos: 110.5,100.5
+ parent: 1
+ - uid: 4679
+ components:
+ - type: Transform
+ pos: 110.5,65.5
+ parent: 1
+ - uid: 4680
+ components:
+ - type: Transform
+ pos: 110.5,61.5
+ parent: 1
+ - uid: 4681
+ components:
+ - type: Transform
+ pos: 110.5,56.5
+ parent: 1
+ - uid: 4684
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,102.5
+ parent: 1
+ - uid: 4690
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,97.5
+ parent: 1
+ - uid: 4691
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,102.5
+ parent: 1
+ - uid: 4713
+ components:
+ - type: Transform
+ pos: 111.5,116.5
+ parent: 1
+ - uid: 4716
+ components:
+ - type: Transform
+ pos: 79.5,62.5
+ parent: 1
+ - uid: 4717
+ components:
+ - type: Transform
+ pos: 111.5,105.5
+ parent: 1
+ - uid: 4718
+ components:
+ - type: Transform
+ pos: 111.5,100.5
+ parent: 1
+ - uid: 4719
+ components:
+ - type: Transform
+ pos: 111.5,95.5
+ parent: 1
+ - uid: 4727
+ components:
+ - type: Transform
+ pos: 111.5,61.5
+ parent: 1
+ - uid: 4728
+ components:
+ - type: Transform
+ pos: 111.5,56.5
+ parent: 1
+ - uid: 4751
+ components:
+ - type: Transform
+ pos: 112.5,105.5
+ parent: 1
+ - uid: 4753
+ components:
+ - type: Transform
+ pos: 112.5,95.5
+ parent: 1
+ - uid: 4758
+ components:
+ - type: Transform
+ pos: 90.5,78.5
+ parent: 1
+ - uid: 4762
+ components:
+ - type: Transform
+ pos: 112.5,67.5
+ parent: 1
+ - uid: 4763
+ components:
+ - type: Transform
+ pos: 112.5,65.5
+ parent: 1
+ - uid: 4765
+ components:
+ - type: Transform
+ pos: 112.5,56.5
+ parent: 1
+ - uid: 4768
+ components:
+ - type: Transform
+ pos: 112.5,50.5
+ parent: 1
+ - uid: 4769
+ components:
+ - type: Transform
+ pos: 112.5,49.5
+ parent: 1
+ - uid: 4770
+ components:
+ - type: Transform
+ pos: 112.5,48.5
+ parent: 1
+ - uid: 4771
+ components:
+ - type: Transform
+ pos: 112.5,47.5
+ parent: 1
+ - uid: 4772
+ components:
+ - type: Transform
+ pos: 112.5,46.5
+ parent: 1
+ - uid: 4775
+ components:
+ - type: Transform
+ pos: 112.5,42.5
+ parent: 1
+ - uid: 4778
+ components:
+ - type: Transform
+ pos: 112.5,39.5
+ parent: 1
+ - uid: 4780
+ components:
+ - type: Transform
+ pos: 112.5,37.5
+ parent: 1
+ - uid: 4783
+ components:
+ - type: Transform
+ pos: 112.5,34.5
+ parent: 1
+ - uid: 4825
+ components:
+ - type: Transform
+ pos: 113.5,95.5
+ parent: 1
+ - uid: 4830
+ components:
+ - type: Transform
+ pos: 113.5,61.5
+ parent: 1
+ - uid: 4832
+ components:
+ - type: Transform
+ pos: 113.5,56.5
+ parent: 1
+ - uid: 4834
+ components:
+ - type: Transform
+ pos: 113.5,46.5
+ parent: 1
+ - uid: 4860
+ components:
+ - type: Transform
+ pos: 114.5,105.5
+ parent: 1
+ - uid: 4861
+ components:
+ - type: Transform
+ pos: 114.5,100.5
+ parent: 1
+ - uid: 4862
+ components:
+ - type: Transform
+ pos: 114.5,99.5
+ parent: 1
+ - uid: 4865
+ components:
+ - type: Transform
+ pos: 114.5,96.5
+ parent: 1
+ - uid: 4866
+ components:
+ - type: Transform
+ pos: 114.5,95.5
+ parent: 1
+ - uid: 4867
+ components:
+ - type: Transform
+ pos: 114.5,94.5
+ parent: 1
+ - uid: 4868
+ components:
+ - type: Transform
+ pos: 114.5,93.5
+ parent: 1
+ - uid: 4869
+ components:
+ - type: Transform
+ pos: 114.5,92.5
+ parent: 1
+ - uid: 4870
+ components:
+ - type: Transform
+ pos: 114.5,91.5
+ parent: 1
+ - uid: 4871
+ components:
+ - type: Transform
+ pos: 114.5,90.5
+ parent: 1
+ - uid: 4872
+ components:
+ - type: Transform
+ pos: 114.5,89.5
+ parent: 1
+ - uid: 4877
+ components:
+ - type: Transform
+ pos: 114.5,61.5
+ parent: 1
+ - uid: 4881
+ components:
+ - type: Transform
+ pos: 114.5,56.5
+ parent: 1
+ - uid: 4884
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,93.5
+ parent: 1
+ - uid: 4886
+ components:
+ - type: Transform
+ pos: 114.5,34.5
+ parent: 1
+ - uid: 4894
+ components:
+ - type: Transform
+ pos: 114.5,25.5
+ parent: 1
+ - uid: 4896
+ components:
+ - type: Transform
+ pos: 114.5,23.5
+ parent: 1
+ - uid: 4905
+ components:
+ - type: Transform
+ pos: 97.5,107.5
+ parent: 1
+ - uid: 4916
+ components:
+ - type: Transform
+ pos: 115.5,116.5
+ parent: 1
+ - uid: 4919
+ components:
+ - type: Transform
+ pos: 115.5,95.5
+ parent: 1
+ - uid: 4920
+ components:
+ - type: Transform
+ pos: 115.5,89.5
+ parent: 1
+ - uid: 4922
+ components:
+ - type: Transform
+ pos: 115.5,87.5
+ parent: 1
+ - uid: 4923
+ components:
+ - type: Transform
+ pos: 115.5,86.5
+ parent: 1
+ - uid: 4925
+ components:
+ - type: Transform
+ pos: 57.5,117.5
+ parent: 1
+ - uid: 4926
+ components:
+ - type: Transform
+ pos: 115.5,83.5
+ parent: 1
+ - uid: 4929
+ components:
+ - type: Transform
+ pos: 115.5,80.5
+ parent: 1
+ - uid: 4930
+ components:
+ - type: Transform
+ pos: 115.5,79.5
+ parent: 1
+ - uid: 4931
+ components:
+ - type: Transform
+ pos: 115.5,75.5
+ parent: 1
+ - uid: 4945
+ components:
+ - type: Transform
+ pos: 115.5,61.5
+ parent: 1
+ - uid: 4946
+ components:
+ - type: Transform
+ pos: 115.5,60.5
+ parent: 1
+ - uid: 4948
+ components:
+ - type: Transform
+ pos: 115.5,58.5
+ parent: 1
+ - uid: 4950
+ components:
+ - type: Transform
+ pos: 115.5,56.5
+ parent: 1
+ - uid: 4951
+ components:
+ - type: Transform
+ pos: 115.5,52.5
+ parent: 1
+ - uid: 4952
+ components:
+ - type: Transform
+ pos: 115.5,46.5
+ parent: 1
+ - uid: 4963
+ components:
+ - type: Transform
+ pos: 116.5,149.5
+ parent: 1
+ - uid: 4979
+ components:
+ - type: Transform
+ pos: 116.5,95.5
+ parent: 1
+ - uid: 4980
+ components:
+ - type: Transform
+ pos: 116.5,89.5
+ parent: 1
+ - uid: 4981
+ components:
+ - type: Transform
+ pos: 116.5,87.5
+ parent: 1
+ - uid: 4982
+ components:
+ - type: Transform
+ pos: 116.5,79.5
+ parent: 1
+ - uid: 4986
+ components:
+ - type: Transform
+ pos: 116.5,75.5
+ parent: 1
+ - uid: 4987
+ components:
+ - type: Transform
+ pos: 116.5,56.5
+ parent: 1
+ - uid: 4991
+ components:
+ - type: Transform
+ pos: 116.5,46.5
+ parent: 1
+ - uid: 4993
+ components:
+ - type: Transform
+ pos: 116.5,34.5
+ parent: 1
+ - uid: 5047
+ components:
+ - type: Transform
+ pos: 75.5,62.5
+ parent: 1
+ - uid: 5050
+ components:
+ - type: Transform
+ pos: 117.5,87.5
+ parent: 1
+ - uid: 5053
+ components:
+ - type: Transform
+ pos: 117.5,75.5
+ parent: 1
+ - uid: 5054
+ components:
+ - type: Transform
+ pos: 117.5,74.5
+ parent: 1
+ - uid: 5056
+ components:
+ - type: Transform
+ pos: 117.5,72.5
+ parent: 1
+ - uid: 5057
+ components:
+ - type: Transform
+ pos: 117.5,71.5
+ parent: 1
+ - uid: 5059
+ components:
+ - type: Transform
+ pos: 117.5,69.5
+ parent: 1
+ - uid: 5060
+ components:
+ - type: Transform
+ pos: 117.5,68.5
+ parent: 1
+ - uid: 5061
+ components:
+ - type: Transform
+ pos: 117.5,67.5
+ parent: 1
+ - uid: 5065
+ components:
+ - type: Transform
+ pos: 117.5,63.5
+ parent: 1
+ - uid: 5066
+ components:
+ - type: Transform
+ pos: 117.5,62.5
+ parent: 1
+ - uid: 5067
+ components:
+ - type: Transform
+ pos: 117.5,61.5
+ parent: 1
+ - uid: 5068
+ components:
+ - type: Transform
+ pos: 117.5,60.5
+ parent: 1
+ - uid: 5069
+ components:
+ - type: Transform
+ pos: 117.5,59.5
+ parent: 1
+ - uid: 5071
+ components:
+ - type: Transform
+ pos: 117.5,57.5
+ parent: 1
+ - uid: 5072
+ components:
+ - type: Transform
+ pos: 117.5,56.5
+ parent: 1
+ - uid: 5074
+ components:
+ - type: Transform
+ pos: 117.5,46.5
+ parent: 1
+ - uid: 5096
+ components:
+ - type: Transform
+ pos: 118.5,95.5
+ parent: 1
+ - uid: 5097
+ components:
+ - type: Transform
+ pos: 118.5,89.5
+ parent: 1
+ - uid: 5098
+ components:
+ - type: Transform
+ pos: 118.5,87.5
+ parent: 1
+ - uid: 5099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,62.5
+ parent: 1
+ - uid: 5121
+ components:
+ - type: Transform
+ pos: 72.5,67.5
+ parent: 1
+ - uid: 5133
+ components:
+ - type: Transform
+ pos: 161.5,114.5
+ parent: 1
+ - uid: 5134
+ components:
+ - type: Transform
+ pos: 119.5,116.5
+ parent: 1
+ - uid: 5137
+ components:
+ - type: Transform
+ pos: 119.5,95.5
+ parent: 1
+ - uid: 5142
+ components:
+ - type: Transform
+ pos: 119.5,87.5
+ parent: 1
+ - uid: 5148
+ components:
+ - type: Transform
+ pos: 119.5,46.5
+ parent: 1
+ - uid: 5197
+ components:
+ - type: Transform
+ pos: 120.5,126.5
+ parent: 1
+ - uid: 5212
+ components:
+ - type: Transform
+ pos: 120.5,95.5
+ parent: 1
+ - uid: 5213
+ components:
+ - type: Transform
+ pos: 120.5,94.5
+ parent: 1
+ - uid: 5215
+ components:
+ - type: Transform
+ pos: 89.5,78.5
+ parent: 1
+ - uid: 5219
+ components:
+ - type: Transform
+ pos: 120.5,87.5
+ parent: 1
+ - uid: 5223
+ components:
+ - type: Transform
+ pos: 120.5,52.5
+ parent: 1
+ - uid: 5229
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,36.5
+ parent: 1
+ - uid: 5235
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,41.5
+ parent: 1
+ - uid: 5243
+ components:
+ - type: Transform
+ pos: 121.5,166.5
+ parent: 1
+ - uid: 5252
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,66.5
+ parent: 1
+ - uid: 5260
+ components:
+ - type: Transform
+ pos: 121.5,95.5
+ parent: 1
+ - uid: 5263
+ components:
+ - type: Transform
+ pos: 121.5,87.5
+ parent: 1
+ - uid: 5264
+ components:
+ - type: Transform
+ pos: 121.5,79.5
+ parent: 1
+ - uid: 5307
+ components:
+ - type: Transform
+ pos: 121.5,43.5
+ parent: 1
+ - uid: 5309
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 62.5,40.5
+ parent: 1
+ - uid: 5339
+ components:
+ - type: Transform
+ pos: 122.5,79.5
+ parent: 1
+ - uid: 5341
+ components:
+ - type: Transform
+ pos: 122.5,72.5
+ parent: 1
+ - uid: 5342
+ components:
+ - type: Transform
+ pos: 122.5,69.5
+ parent: 1
+ - uid: 5343
+ components:
+ - type: Transform
+ pos: 122.5,66.5
+ parent: 1
+ - uid: 5370
+ components:
+ - type: Transform
+ pos: 163.5,140.5
+ parent: 1
+ - uid: 5373
+ components:
+ - type: Transform
+ pos: 123.5,95.5
+ parent: 1
+ - uid: 5377
+ components:
+ - type: Transform
+ pos: 123.5,86.5
+ parent: 1
+ - uid: 5378
+ components:
+ - type: Transform
+ pos: 123.5,85.5
+ parent: 1
+ - uid: 5379
+ components:
+ - type: Transform
+ pos: 123.5,84.5
+ parent: 1
+ - uid: 5382
+ components:
+ - type: Transform
+ pos: 123.5,72.5
+ parent: 1
+ - uid: 5383
+ components:
+ - type: Transform
+ pos: 123.5,69.5
+ parent: 1
+ - uid: 5384
+ components:
+ - type: Transform
+ pos: 123.5,66.5
+ parent: 1
+ - uid: 5404
+ components:
+ - type: Transform
+ pos: 66.5,71.5
+ parent: 1
+ - uid: 5405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,140.5
+ parent: 1
+ - uid: 5406
+ components:
+ - type: Transform
+ pos: 72.5,69.5
+ parent: 1
+ - uid: 5407
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,140.5
+ parent: 1
+ - uid: 5421
+ components:
+ - type: Transform
+ pos: 124.5,135.5
+ parent: 1
+ - uid: 5425
+ components:
+ - type: Transform
+ pos: 124.5,131.5
+ parent: 1
+ - uid: 5431
+ components:
+ - type: Transform
+ pos: 68.5,71.5
+ parent: 1
+ - uid: 5437
+ components:
+ - type: Transform
+ pos: 124.5,116.5
+ parent: 1
+ - uid: 5448
+ components:
+ - type: Transform
+ pos: 124.5,105.5
+ parent: 1
+ - uid: 5457
+ components:
+ - type: Transform
+ pos: 124.5,96.5
+ parent: 1
+ - uid: 5465
+ components:
+ - type: Transform
+ pos: 124.5,84.5
+ parent: 1
+ - uid: 5468
+ components:
+ - type: Transform
+ pos: 124.5,72.5
+ parent: 1
+ - uid: 5469
+ components:
+ - type: Transform
+ pos: 124.5,69.5
+ parent: 1
+ - uid: 5470
+ components:
+ - type: Transform
+ pos: 124.5,66.5
+ parent: 1
+ - uid: 5471
+ components:
+ - type: Transform
+ pos: 124.5,63.5
+ parent: 1
+ - uid: 5502
+ components:
+ - type: Transform
+ pos: 125.5,116.5
+ parent: 1
+ - uid: 5505
+ components:
+ - type: Transform
+ pos: 125.5,79.5
+ parent: 1
+ - uid: 5543
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,25.5
+ parent: 1
+ - uid: 5544
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,24.5
+ parent: 1
+ - uid: 5560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,108.5
+ parent: 1
+ - uid: 5562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 17.5,106.5
+ parent: 1
+ - uid: 5566
+ components:
+ - type: Transform
+ pos: 126.5,150.5
+ parent: 1
+ - uid: 5567
+ components:
+ - type: Transform
+ pos: 126.5,149.5
+ parent: 1
+ - uid: 5576
+ components:
+ - type: Transform
+ pos: 126.5,116.5
+ parent: 1
+ - uid: 5577
+ components:
+ - type: Transform
+ pos: 126.5,115.5
+ parent: 1
+ - uid: 5579
+ components:
+ - type: Transform
+ pos: 119.5,115.5
+ parent: 1
+ - uid: 5581
+ components:
+ - type: Transform
+ pos: 126.5,111.5
+ parent: 1
+ - uid: 5582
+ components:
+ - type: Transform
+ pos: 126.5,110.5
+ parent: 1
+ - uid: 5586
+ components:
+ - type: Transform
+ pos: 126.5,106.5
+ parent: 1
+ - uid: 5587
+ components:
+ - type: Transform
+ pos: 126.5,105.5
+ parent: 1
+ - uid: 5597
+ components:
+ - type: Transform
+ pos: 126.5,95.5
+ parent: 1
+ - uid: 5598
+ components:
+ - type: Transform
+ pos: 126.5,94.5
+ parent: 1
+ - uid: 5599
+ components:
+ - type: Transform
+ pos: 126.5,93.5
+ parent: 1
+ - uid: 5600
+ components:
+ - type: Transform
+ pos: 126.5,92.5
+ parent: 1
+ - uid: 5601
+ components:
+ - type: Transform
+ pos: 126.5,91.5
+ parent: 1
+ - uid: 5603
+ components:
+ - type: Transform
+ pos: 126.5,89.5
+ parent: 1
+ - uid: 5604
+ components:
+ - type: Transform
+ pos: 126.5,88.5
+ parent: 1
+ - uid: 5605
+ components:
+ - type: Transform
+ pos: 126.5,87.5
+ parent: 1
+ - uid: 5606
+ components:
+ - type: Transform
+ pos: 126.5,86.5
+ parent: 1
+ - uid: 5607
+ components:
+ - type: Transform
+ pos: 126.5,85.5
+ parent: 1
+ - uid: 5608
+ components:
+ - type: Transform
+ pos: 126.5,84.5
+ parent: 1
+ - uid: 5609
+ components:
+ - type: Transform
+ pos: 126.5,83.5
+ parent: 1
+ - uid: 5612
+ components:
+ - type: Transform
+ pos: 126.5,80.5
+ parent: 1
+ - uid: 5613
+ components:
+ - type: Transform
+ pos: 126.5,79.5
+ parent: 1
+ - uid: 5635
+ components:
+ - type: Transform
+ pos: 127.5,46.5
+ parent: 1
+ - uid: 5646
+ components:
+ - type: Transform
+ pos: 128.5,149.5
+ parent: 1
+ - uid: 5658
+ components:
+ - type: Transform
+ pos: 128.5,46.5
+ parent: 1
+ - uid: 5659
+ components:
+ - type: Transform
+ pos: 128.5,45.5
+ parent: 1
+ - uid: 5718
+ components:
+ - type: Transform
+ pos: 130.5,116.5
+ parent: 1
+ - uid: 5727
+ components:
+ - type: Transform
+ pos: 130.5,107.5
+ parent: 1
+ - uid: 5742
+ components:
+ - type: Transform
+ pos: 130.5,99.5
+ parent: 1
+ - uid: 5755
+ components:
+ - type: Transform
+ pos: 130.5,86.5
+ parent: 1
+ - uid: 5771
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,112.5
+ parent: 1
+ - uid: 5775
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,89.5
+ parent: 1
+ - uid: 5797
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 54.5,112.5
+ parent: 1
+ - uid: 5807
+ components:
+ - type: Transform
+ pos: 132.5,116.5
+ parent: 1
+ - uid: 5850
+ components:
+ - type: Transform
+ pos: 133.5,116.5
+ parent: 1
+ - uid: 5857
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,110.5
+ parent: 1
+ - uid: 5872
+ components:
+ - type: Transform
+ pos: 134.5,116.5
+ parent: 1
+ - uid: 5895
+ components:
+ - type: Transform
+ pos: 134.5,50.5
+ parent: 1
+ - uid: 5899
+ components:
+ - type: Transform
+ pos: 134.5,47.5
+ parent: 1
+ - uid: 5903
+ components:
+ - type: Transform
+ pos: 134.5,44.5
+ parent: 1
+ - uid: 5910
+ components:
+ - type: Transform
+ pos: 135.5,146.5
+ parent: 1
+ - uid: 5911
+ components:
+ - type: Transform
+ pos: 135.5,145.5
+ parent: 1
+ - uid: 5913
+ components:
+ - type: Transform
+ pos: 135.5,143.5
+ parent: 1
+ - uid: 5917
+ components:
+ - type: Transform
+ pos: 109.5,34.5
+ parent: 1
+ - uid: 5923
+ components:
+ - type: Transform
+ pos: 135.5,116.5
+ parent: 1
+ - uid: 5930
+ components:
+ - type: Transform
+ pos: 135.5,108.5
+ parent: 1
+ - uid: 5936
+ components:
+ - type: Transform
+ pos: 41.5,102.5
+ parent: 1
+ - uid: 5939
+ components:
+ - type: Transform
+ pos: 154.5,94.5
+ parent: 1
+ - uid: 5940
+ components:
+ - type: Transform
+ pos: 154.5,95.5
+ parent: 1
+ - uid: 5941
+ components:
+ - type: Transform
+ pos: 154.5,93.5
+ parent: 1
+ - uid: 5942
+ components:
+ - type: Transform
+ pos: 155.5,95.5
+ parent: 1
+ - uid: 5944
+ components:
+ - type: Transform
+ pos: 135.5,50.5
+ parent: 1
+ - uid: 5945
+ components:
+ - type: Transform
+ pos: 135.5,47.5
+ parent: 1
+ - uid: 5951
+ components:
+ - type: Transform
+ pos: 136.5,146.5
+ parent: 1
+ - uid: 5958
+ components:
+ - type: Transform
+ pos: 130.5,103.5
+ parent: 1
+ - uid: 5963
+ components:
+ - type: Transform
+ pos: 136.5,116.5
+ parent: 1
+ - uid: 5964
+ components:
+ - type: Transform
+ pos: 136.5,114.5
+ parent: 1
+ - uid: 5965
+ components:
+ - type: Transform
+ pos: 136.5,108.5
+ parent: 1
+ - uid: 5966
+ components:
+ - type: Transform
+ pos: 136.5,98.5
+ parent: 1
+ - uid: 5967
+ components:
+ - type: Transform
+ pos: 136.5,97.5
+ parent: 1
+ - uid: 5998
+ components:
+ - type: Transform
+ pos: 136.5,50.5
+ parent: 1
+ - uid: 5999
+ components:
+ - type: Transform
+ pos: 136.5,47.5
+ parent: 1
+ - uid: 6000
+ components:
+ - type: Transform
+ pos: 136.5,44.5
+ parent: 1
+ - uid: 6003
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,101.5
+ parent: 1
+ - uid: 6008
+ components:
+ - type: Transform
+ pos: 137.5,148.5
+ parent: 1
+ - uid: 6010
+ components:
+ - type: Transform
+ pos: 137.5,146.5
+ parent: 1
+ - uid: 6021
+ components:
+ - type: Transform
+ pos: 137.5,116.5
+ parent: 1
+ - uid: 6023
+ components:
+ - type: Transform
+ pos: 137.5,108.5
+ parent: 1
+ - uid: 6034
+ components:
+ - type: Transform
+ pos: 137.5,101.5
+ parent: 1
+ - uid: 6035
+ components:
+ - type: Transform
+ pos: 137.5,100.5
+ parent: 1
+ - uid: 6037
+ components:
+ - type: Transform
+ pos: 137.5,98.5
+ parent: 1
+ - uid: 6049
+ components:
+ - type: Transform
+ pos: 67.5,71.5
+ parent: 1
+ - uid: 6051
+ components:
+ - type: Transform
+ pos: 67.5,70.5
+ parent: 1
+ - uid: 6074
+ components:
+ - type: Transform
+ pos: 74.5,111.5
+ parent: 1
+ - uid: 6076
+ components:
+ - type: Transform
+ pos: 138.5,116.5
+ parent: 1
+ - uid: 6078
+ components:
+ - type: Transform
+ pos: 138.5,108.5
+ parent: 1
+ - uid: 6100
+ components:
+ - type: Transform
+ pos: 139.5,139.5
+ parent: 1
+ - uid: 6101
+ components:
+ - type: Transform
+ pos: 139.5,138.5
+ parent: 1
+ - uid: 6104
+ components:
+ - type: Transform
+ pos: 139.5,135.5
+ parent: 1
+ - uid: 6107
+ components:
+ - type: Transform
+ pos: 139.5,116.5
+ parent: 1
+ - uid: 6108
+ components:
+ - type: Transform
+ pos: 139.5,114.5
+ parent: 1
+ - uid: 6122
+ components:
+ - type: Transform
+ pos: 87.5,38.5
+ parent: 1
+ - uid: 6130
+ components:
+ - type: Transform
+ pos: 140.5,139.5
+ parent: 1
+ - uid: 6143
+ components:
+ - type: Transform
+ pos: 140.5,116.5
+ parent: 1
+ - uid: 6145
+ components:
+ - type: Transform
+ pos: 140.5,108.5
+ parent: 1
+ - uid: 6150
+ components:
+ - type: Transform
+ pos: 140.5,79.5
+ parent: 1
+ - uid: 6175
+ components:
+ - type: Transform
+ pos: 141.5,116.5
+ parent: 1
+ - uid: 6176
+ components:
+ - type: Transform
+ pos: 141.5,114.5
+ parent: 1
+ - uid: 6177
+ components:
+ - type: Transform
+ pos: 141.5,113.5
+ parent: 1
+ - uid: 6180
+ components:
+ - type: Transform
+ pos: 58.5,101.5
+ parent: 1
+ - uid: 6183
+ components:
+ - type: Transform
+ pos: 137.5,107.5
+ parent: 1
+ - uid: 6184
+ components:
+ - type: Transform
+ pos: 151.5,101.5
+ parent: 1
+ - uid: 6194
+ components:
+ - type: Transform
+ pos: 141.5,95.5
+ parent: 1
+ - uid: 6196
+ components:
+ - type: Transform
+ pos: 141.5,93.5
+ parent: 1
+ - uid: 6197
+ components:
+ - type: Transform
+ pos: 141.5,92.5
+ parent: 1
+ - uid: 6198
+ components:
+ - type: Transform
+ pos: 141.5,86.5
+ parent: 1
+ - uid: 6199
+ components:
+ - type: Transform
+ pos: 141.5,84.5
+ parent: 1
+ - uid: 6226
+ components:
+ - type: Transform
+ pos: 142.5,139.5
+ parent: 1
+ - uid: 6235
+ components:
+ - type: Transform
+ pos: 142.5,127.5
+ parent: 1
+ - uid: 6237
+ components:
+ - type: Transform
+ pos: 142.5,125.5
+ parent: 1
+ - uid: 6238
+ components:
+ - type: Transform
+ pos: 142.5,124.5
+ parent: 1
+ - uid: 6239
+ components:
+ - type: Transform
+ pos: 142.5,123.5
+ parent: 1
+ - uid: 6240
+ components:
+ - type: Transform
+ pos: 142.5,122.5
+ parent: 1
+ - uid: 6241
+ components:
+ - type: Transform
+ pos: 142.5,121.5
+ parent: 1
+ - uid: 6242
+ components:
+ - type: Transform
+ pos: 142.5,120.5
+ parent: 1
+ - uid: 6247
+ components:
+ - type: Transform
+ pos: 158.5,101.5
+ parent: 1
+ - uid: 6257
+ components:
+ - type: Transform
+ pos: 142.5,79.5
+ parent: 1
+ - uid: 6282
+ components:
+ - type: Transform
+ pos: 143.5,141.5
+ parent: 1
+ - uid: 6283
+ components:
+ - type: Transform
+ pos: 143.5,140.5
+ parent: 1
+ - uid: 6284
+ components:
+ - type: Transform
+ pos: 143.5,139.5
+ parent: 1
+ - uid: 6285
+ components:
+ - type: Transform
+ pos: 143.5,138.5
+ parent: 1
+ - uid: 6286
+ components:
+ - type: Transform
+ pos: 143.5,137.5
+ parent: 1
+ - uid: 6287
+ components:
+ - type: Transform
+ pos: 143.5,136.5
+ parent: 1
+ - uid: 6294
+ components:
+ - type: Transform
+ pos: 143.5,120.5
+ parent: 1
+ - uid: 6295
+ components:
+ - type: Transform
+ pos: 143.5,116.5
+ parent: 1
+ - uid: 6296
+ components:
+ - type: Transform
+ pos: 143.5,113.5
+ parent: 1
+ - uid: 6302
+ components:
+ - type: Transform
+ pos: 143.5,92.5
+ parent: 1
+ - uid: 6303
+ components:
+ - type: Transform
+ pos: 143.5,86.5
+ parent: 1
+ - uid: 6304
+ components:
+ - type: Transform
+ pos: 143.5,84.5
+ parent: 1
+ - uid: 6305
+ components:
+ - type: Transform
+ pos: 143.5,79.5
+ parent: 1
+ - uid: 6329
+ components:
+ - type: Transform
+ pos: 150.5,76.5
+ parent: 1
+ - uid: 6338
+ components:
+ - type: Transform
+ pos: 144.5,116.5
+ parent: 1
+ - uid: 6346
+ components:
+ - type: Transform
+ pos: 144.5,92.5
+ parent: 1
+ - uid: 6353
+ components:
+ - type: Transform
+ pos: 144.5,84.5
+ parent: 1
+ - uid: 6354
+ components:
+ - type: Transform
+ pos: 144.5,79.5
+ parent: 1
+ - uid: 6377
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,85.5
+ parent: 1
+ - uid: 6378
+ components:
+ - type: Transform
+ pos: 145.5,113.5
+ parent: 1
+ - uid: 6388
+ components:
+ - type: Transform
+ pos: 145.5,96.5
+ parent: 1
+ - uid: 6389
+ components:
+ - type: Transform
+ pos: 145.5,95.5
+ parent: 1
+ - uid: 6391
+ components:
+ - type: Transform
+ pos: 145.5,93.5
+ parent: 1
+ - uid: 6392
+ components:
+ - type: Transform
+ pos: 145.5,92.5
+ parent: 1
+ - uid: 6393
+ components:
+ - type: Transform
+ pos: 145.5,86.5
+ parent: 1
+ - uid: 6399
+ components:
+ - type: Transform
+ pos: 145.5,79.5
+ parent: 1
+ - uid: 6402
+ components:
+ - type: Transform
+ pos: 145.5,76.5
+ parent: 1
+ - uid: 6429
+ components:
+ - type: Transform
+ pos: 146.5,116.5
+ parent: 1
+ - uid: 6461
+ components:
+ - type: Transform
+ pos: 147.5,146.5
+ parent: 1
+ - uid: 6463
+ components:
+ - type: Transform
+ pos: 147.5,144.5
+ parent: 1
+ - uid: 6464
+ components:
+ - type: Transform
+ pos: 147.5,143.5
+ parent: 1
+ - uid: 6465
+ components:
+ - type: Transform
+ pos: 147.5,142.5
+ parent: 1
+ - uid: 6466
+ components:
+ - type: Transform
+ pos: 147.5,141.5
+ parent: 1
+ - uid: 6467
+ components:
+ - type: Transform
+ pos: 147.5,140.5
+ parent: 1
+ - uid: 6481
+ components:
+ - type: Transform
+ pos: 147.5,124.5
+ parent: 1
+ - uid: 6509
+ components:
+ - type: Transform
+ pos: 158.5,53.5
+ parent: 1
+ - uid: 6525
+ components:
+ - type: Transform
+ pos: 148.5,146.5
+ parent: 1
+ - uid: 6526
+ components:
+ - type: Transform
+ pos: 148.5,144.5
+ parent: 1
+ - uid: 6529
+ components:
+ - type: Transform
+ pos: 148.5,116.5
+ parent: 1
+ - uid: 6533
+ components:
+ - type: Transform
+ pos: 148.5,84.5
+ parent: 1
+ - uid: 6545
+ components:
+ - type: Transform
+ pos: 149.5,146.5
+ parent: 1
+ - uid: 6571
+ components:
+ - type: Transform
+ pos: 141.5,146.5
+ parent: 1
+ - uid: 6575
+ components:
+ - type: Transform
+ pos: 150.5,116.5
+ parent: 1
+ - uid: 6577
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,83.5
+ parent: 1
+ - uid: 6579
+ components:
+ - type: Transform
+ pos: 150.5,84.5
+ parent: 1
+ - uid: 6613
+ components:
+ - type: Transform
+ pos: 143.5,146.5
+ parent: 1
+ - uid: 6614
+ components:
+ - type: Transform
+ pos: 151.5,144.5
+ parent: 1
+ - uid: 6615
+ components:
+ - type: Transform
+ pos: 151.5,143.5
+ parent: 1
+ - uid: 6616
+ components:
+ - type: Transform
+ pos: 151.5,142.5
+ parent: 1
+ - uid: 6617
+ components:
+ - type: Transform
+ pos: 151.5,141.5
+ parent: 1
+ - uid: 6618
+ components:
+ - type: Transform
+ pos: 151.5,140.5
+ parent: 1
+ - uid: 6619
+ components:
+ - type: Transform
+ pos: 151.5,136.5
+ parent: 1
+ - uid: 6620
+ components:
+ - type: Transform
+ pos: 151.5,135.5
+ parent: 1
+ - uid: 6621
+ components:
+ - type: Transform
+ pos: 151.5,134.5
+ parent: 1
+ - uid: 6622
+ components:
+ - type: Transform
+ pos: 151.5,133.5
+ parent: 1
+ - uid: 6623
+ components:
+ - type: Transform
+ pos: 151.5,132.5
+ parent: 1
+ - uid: 6625
+ components:
+ - type: Transform
+ pos: 151.5,130.5
+ parent: 1
+ - uid: 6626
+ components:
+ - type: Transform
+ pos: 151.5,129.5
+ parent: 1
+ - uid: 6627
+ components:
+ - type: Transform
+ pos: 151.5,128.5
+ parent: 1
+ - uid: 6628
+ components:
+ - type: Transform
+ pos: 151.5,127.5
+ parent: 1
+ - uid: 6629
+ components:
+ - type: Transform
+ pos: 151.5,126.5
+ parent: 1
+ - uid: 6630
+ components:
+ - type: Transform
+ pos: 151.5,125.5
+ parent: 1
+ - uid: 6631
+ components:
+ - type: Transform
+ pos: 151.5,124.5
+ parent: 1
+ - uid: 6632
+ components:
+ - type: Transform
+ pos: 151.5,123.5
+ parent: 1
+ - uid: 6633
+ components:
+ - type: Transform
+ pos: 151.5,122.5
+ parent: 1
+ - uid: 6634
+ components:
+ - type: Transform
+ pos: 151.5,121.5
+ parent: 1
+ - uid: 6635
+ components:
+ - type: Transform
+ pos: 151.5,120.5
+ parent: 1
+ - uid: 6636
+ components:
+ - type: Transform
+ pos: 151.5,116.5
+ parent: 1
+ - uid: 6642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,167.5
+ parent: 1
+ - uid: 6659
+ components:
+ - type: Transform
+ pos: 142.5,146.5
+ parent: 1
+ - uid: 6660
+ components:
+ - type: Transform
+ pos: 143.5,142.5
+ parent: 1
+ - uid: 6661
+ components:
+ - type: Transform
+ pos: 142.5,142.5
+ parent: 1
+ - uid: 6665
+ components:
+ - type: Transform
+ pos: 152.5,144.5
+ parent: 1
+ - uid: 6666
+ components:
+ - type: Transform
+ pos: 152.5,140.5
+ parent: 1
+ - uid: 6668
+ components:
+ - type: Transform
+ pos: 152.5,132.5
+ parent: 1
+ - uid: 6670
+ components:
+ - type: Transform
+ pos: 152.5,116.5
+ parent: 1
+ - uid: 6675
+ components:
+ - type: Transform
+ pos: 152.5,84.5
+ parent: 1
+ - uid: 6687
+ components:
+ - type: Transform
+ pos: 153.5,144.5
+ parent: 1
+ - uid: 6689
+ components:
+ - type: Transform
+ pos: 153.5,136.5
+ parent: 1
+ - uid: 6690
+ components:
+ - type: Transform
+ pos: 153.5,132.5
+ parent: 1
+ - uid: 6692
+ components:
+ - type: Transform
+ pos: 153.5,128.5
+ parent: 1
+ - uid: 6694
+ components:
+ - type: Transform
+ pos: 153.5,126.5
+ parent: 1
+ - uid: 6696
+ components:
+ - type: Transform
+ pos: 153.5,124.5
+ parent: 1
+ - uid: 6697
+ components:
+ - type: Transform
+ pos: 153.5,120.5
+ parent: 1
+ - uid: 6698
+ components:
+ - type: Transform
+ pos: 153.5,116.5
+ parent: 1
+ - uid: 6700
+ components:
+ - type: Transform
+ pos: 153.5,95.5
+ parent: 1
+ - uid: 6732
+ components:
+ - type: Transform
+ pos: 154.5,143.5
+ parent: 1
+ - uid: 6733
+ components:
+ - type: Transform
+ pos: 154.5,142.5
+ parent: 1
+ - uid: 6734
+ components:
+ - type: Transform
+ pos: 154.5,141.5
+ parent: 1
+ - uid: 6735
+ components:
+ - type: Transform
+ pos: 154.5,140.5
+ parent: 1
+ - uid: 6736
+ components:
+ - type: Transform
+ pos: 154.5,136.5
+ parent: 1
+ - uid: 6737
+ components:
+ - type: Transform
+ pos: 154.5,135.5
+ parent: 1
+ - uid: 6738
+ components:
+ - type: Transform
+ pos: 154.5,134.5
+ parent: 1
+ - uid: 6740
+ components:
+ - type: Transform
+ pos: 154.5,132.5
+ parent: 1
+ - uid: 6742
+ components:
+ - type: Transform
+ pos: 154.5,124.5
+ parent: 1
+ - uid: 6743
+ components:
+ - type: Transform
+ pos: 154.5,123.5
+ parent: 1
+ - uid: 6744
+ components:
+ - type: Transform
+ pos: 154.5,122.5
+ parent: 1
+ - uid: 6745
+ components:
+ - type: Transform
+ pos: 154.5,121.5
+ parent: 1
+ - uid: 6746
+ components:
+ - type: Transform
+ pos: 154.5,120.5
+ parent: 1
+ - uid: 6747
+ components:
+ - type: Transform
+ pos: 154.5,116.5
+ parent: 1
+ - uid: 6755
+ components:
+ - type: Transform
+ pos: 154.5,87.5
+ parent: 1
+ - uid: 6756
+ components:
+ - type: Transform
+ pos: 154.5,86.5
+ parent: 1
+ - uid: 6761
+ components:
+ - type: Transform
+ pos: 154.5,80.5
+ parent: 1
+ - uid: 6763
+ components:
+ - type: Transform
+ pos: 154.5,78.5
+ parent: 1
+ - uid: 6773
+ components:
+ - type: Transform
+ pos: 154.5,45.5
+ parent: 1
+ - uid: 6782
+ components:
+ - type: Transform
+ pos: 155.5,140.5
+ parent: 1
+ - uid: 6785
+ components:
+ - type: Transform
+ pos: 155.5,129.5
+ parent: 1
+ - uid: 6786
+ components:
+ - type: Transform
+ pos: 155.5,124.5
+ parent: 1
+ - uid: 6791
+ components:
+ - type: Transform
+ pos: 147.5,126.5
+ parent: 1
+ - uid: 6808
+ components:
+ - type: Transform
+ pos: 155.5,45.5
+ parent: 1
+ - uid: 6813
+ components:
+ - type: Transform
+ pos: 156.5,144.5
+ parent: 1
+ - uid: 6815
+ components:
+ - type: Transform
+ pos: 156.5,136.5
+ parent: 1
+ - uid: 6816
+ components:
+ - type: Transform
+ pos: 156.5,132.5
+ parent: 1
+ - uid: 6817
+ components:
+ - type: Transform
+ pos: 156.5,129.5
+ parent: 1
+ - uid: 6818
+ components:
+ - type: Transform
+ pos: 156.5,128.5
+ parent: 1
+ - uid: 6819
+ components:
+ - type: Transform
+ pos: 156.5,127.5
+ parent: 1
+ - uid: 6821
+ components:
+ - type: Transform
+ pos: 156.5,125.5
+ parent: 1
+ - uid: 6822
+ components:
+ - type: Transform
+ pos: 156.5,124.5
+ parent: 1
+ - uid: 6823
+ components:
+ - type: Transform
+ pos: 156.5,120.5
+ parent: 1
+ - uid: 6824
+ components:
+ - type: Transform
+ pos: 156.5,116.5
+ parent: 1
+ - uid: 6858
+ components:
+ - type: Transform
+ pos: 157.5,144.5
+ parent: 1
+ - uid: 6859
+ components:
+ - type: Transform
+ pos: 157.5,143.5
+ parent: 1
+ - uid: 6860
+ components:
+ - type: Transform
+ pos: 157.5,142.5
+ parent: 1
+ - uid: 6861
+ components:
+ - type: Transform
+ pos: 157.5,141.5
+ parent: 1
+ - uid: 6862
+ components:
+ - type: Transform
+ pos: 157.5,140.5
+ parent: 1
+ - uid: 6863
+ components:
+ - type: Transform
+ pos: 157.5,136.5
+ parent: 1
+ - uid: 6864
+ components:
+ - type: Transform
+ pos: 157.5,135.5
+ parent: 1
+ - uid: 6865
+ components:
+ - type: Transform
+ pos: 157.5,134.5
+ parent: 1
+ - uid: 6866
+ components:
+ - type: Transform
+ pos: 157.5,133.5
+ parent: 1
+ - uid: 6867
+ components:
+ - type: Transform
+ pos: 157.5,132.5
+ parent: 1
+ - uid: 6882
+ components:
+ - type: Transform
+ pos: 157.5,76.5
+ parent: 1
+ - uid: 6888
+ components:
+ - type: Transform
+ pos: 157.5,72.5
+ parent: 1
+ - uid: 6889
+ components:
+ - type: Transform
+ pos: 157.5,71.5
+ parent: 1
+ - uid: 6891
+ components:
+ - type: Transform
+ pos: 157.5,69.5
+ parent: 1
+ - uid: 6893
+ components:
+ - type: Transform
+ pos: 157.5,67.5
+ parent: 1
+ - uid: 6900
+ components:
+ - type: Transform
+ pos: 157.5,45.5
+ parent: 1
+ - uid: 6905
+ components:
+ - type: Transform
+ pos: 147.5,127.5
+ parent: 1
+ - uid: 6910
+ components:
+ - type: Transform
+ pos: 147.5,125.5
+ parent: 1
+ - uid: 6912
+ components:
+ - type: Transform
+ pos: 158.5,140.5
+ parent: 1
+ - uid: 6914
+ components:
+ - type: Transform
+ pos: 158.5,132.5
+ parent: 1
+ - uid: 6915
+ components:
+ - type: Transform
+ pos: 158.5,129.5
+ parent: 1
+ - uid: 6917
+ components:
+ - type: Transform
+ pos: 158.5,116.5
+ parent: 1
+ - uid: 6922
+ components:
+ - type: Transform
+ pos: 158.5,108.5
+ parent: 1
+ - uid: 6925
+ components:
+ - type: Transform
+ pos: 147.5,101.5
+ parent: 1
+ - uid: 6937
+ components:
+ - type: Transform
+ pos: 158.5,72.5
+ parent: 1
+ - uid: 6938
+ components:
+ - type: Transform
+ pos: 158.5,67.5
+ parent: 1
+ - uid: 6943
+ components:
+ - type: Transform
+ pos: 159.5,144.5
+ parent: 1
+ - uid: 6945
+ components:
+ - type: Transform
+ pos: 159.5,136.5
+ parent: 1
+ - uid: 6946
+ components:
+ - type: Transform
+ pos: 159.5,132.5
+ parent: 1
+ - uid: 6947
+ components:
+ - type: Transform
+ pos: 159.5,129.5
+ parent: 1
+ - uid: 6948
+ components:
+ - type: Transform
+ pos: 159.5,120.5
+ parent: 1
+ - uid: 6949
+ components:
+ - type: Transform
+ pos: 159.5,116.5
+ parent: 1
+ - uid: 6978
+ components:
+ - type: Transform
+ pos: 159.5,67.5
+ parent: 1
+ - uid: 6979
+ components:
+ - type: Transform
+ pos: 159.5,66.5
+ parent: 1
+ - uid: 6981
+ components:
+ - type: Transform
+ pos: 159.5,64.5
+ parent: 1
+ - uid: 6985
+ components:
+ - type: Transform
+ pos: 159.5,51.5
+ parent: 1
+ - uid: 6987
+ components:
+ - type: Transform
+ pos: 159.5,49.5
+ parent: 1
+ - uid: 6989
+ components:
+ - type: Transform
+ pos: 159.5,47.5
+ parent: 1
+ - uid: 6996
+ components:
+ - type: Transform
+ pos: 160.5,144.5
+ parent: 1
+ - uid: 6997
+ components:
+ - type: Transform
+ pos: 160.5,143.5
+ parent: 1
+ - uid: 6998
+ components:
+ - type: Transform
+ pos: 160.5,142.5
+ parent: 1
+ - uid: 7000
+ components:
+ - type: Transform
+ pos: 160.5,140.5
+ parent: 1
+ - uid: 7001
+ components:
+ - type: Transform
+ pos: 160.5,136.5
+ parent: 1
+ - uid: 7002
+ components:
+ - type: Transform
+ pos: 160.5,135.5
+ parent: 1
+ - uid: 7003
+ components:
+ - type: Transform
+ pos: 160.5,134.5
+ parent: 1
+ - uid: 7004
+ components:
+ - type: Transform
+ pos: 160.5,133.5
+ parent: 1
+ - uid: 7005
+ components:
+ - type: Transform
+ pos: 160.5,132.5
+ parent: 1
+ - uid: 7006
+ components:
+ - type: Transform
+ pos: 160.5,131.5
+ parent: 1
+ - uid: 7007
+ components:
+ - type: Transform
+ pos: 160.5,129.5
+ parent: 1
+ - uid: 7008
+ components:
+ - type: Transform
+ pos: 160.5,128.5
+ parent: 1
+ - uid: 7009
+ components:
+ - type: Transform
+ pos: 160.5,127.5
+ parent: 1
+ - uid: 7011
+ components:
+ - type: Transform
+ pos: 160.5,125.5
+ parent: 1
+ - uid: 7013
+ components:
+ - type: Transform
+ pos: 160.5,123.5
+ parent: 1
+ - uid: 7015
+ components:
+ - type: Transform
+ pos: 160.5,121.5
+ parent: 1
+ - uid: 7016
+ components:
+ - type: Transform
+ pos: 160.5,120.5
+ parent: 1
+ - uid: 7017
+ components:
+ - type: Transform
+ pos: 160.5,116.5
+ parent: 1
+ - uid: 7024
+ components:
+ - type: Transform
+ pos: 160.5,77.5
+ parent: 1
+ - uid: 7025
+ components:
+ - type: Transform
+ pos: 160.5,72.5
+ parent: 1
+ - uid: 7027
+ components:
+ - type: Transform
+ pos: 160.5,63.5
+ parent: 1
+ - uid: 7043
+ components:
+ - type: Transform
+ pos: 161.5,139.5
+ parent: 1
+ - uid: 7045
+ components:
+ - type: Transform
+ pos: 161.5,137.5
+ parent: 1
+ - uid: 7048
+ components:
+ - type: Transform
+ pos: 161.5,120.5
+ parent: 1
+ - uid: 7056
+ components:
+ - type: Transform
+ pos: 92.5,102.5
+ parent: 1
+ - uid: 7062
+ components:
+ - type: Transform
+ pos: 161.5,67.5
+ parent: 1
+ - uid: 7132
+ components:
+ - type: Transform
+ pos: 163.5,108.5
+ parent: 1
+ - uid: 7156
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,21.5
+ parent: 1
+ - uid: 7189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,25.5
+ parent: 1
+ - uid: 7241
+ components:
+ - type: Transform
+ pos: 119.5,105.5
+ parent: 1
+ - uid: 7475
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,29.5
+ parent: 1
+ - uid: 7565
+ components:
+ - type: Transform
+ pos: 81.5,51.5
+ parent: 1
+ - uid: 7598
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,53.5
+ parent: 1
+ - uid: 7617
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,53.5
+ parent: 1
+ - uid: 7647
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,29.5
+ parent: 1
+ - uid: 7688
+ components:
+ - type: Transform
+ pos: 90.5,92.5
+ parent: 1
+ - uid: 7690
+ components:
+ - type: Transform
+ pos: 90.5,90.5
+ parent: 1
+ - uid: 7717
+ components:
+ - type: Transform
+ pos: 97.5,127.5
+ parent: 1
+ - uid: 7819
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,171.5
+ parent: 1
+ - uid: 8019
+ components:
+ - type: Transform
+ pos: 93.5,98.5
+ parent: 1
+ - uid: 8071
+ components:
+ - type: Transform
+ pos: 115.5,20.5
+ parent: 1
+ - uid: 8091
+ components:
+ - type: Transform
+ pos: 115.5,19.5
+ parent: 1
+ - uid: 8220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,26.5
+ parent: 1
+ - uid: 8235
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,28.5
+ parent: 1
+ - uid: 8562
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,33.5
+ parent: 1
+ - uid: 8603
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,31.5
+ parent: 1
+ - uid: 8605
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,24.5
+ parent: 1
+ - uid: 9133
+ components:
+ - type: Transform
+ pos: 124.5,139.5
+ parent: 1
+ - uid: 9252
+ components:
+ - type: Transform
+ pos: 124.5,140.5
+ parent: 1
+ - uid: 9433
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,93.5
+ parent: 1
+ - uid: 9645
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,103.5
+ parent: 1
+ - uid: 9689
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,30.5
+ parent: 1
+ - uid: 9703
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,32.5
+ parent: 1
+ - uid: 9713
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 112.5,32.5
+ parent: 1
+ - uid: 9745
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,18.5
+ parent: 1
+ - uid: 9750
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,31.5
+ parent: 1
+ - uid: 9761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,29.5
+ parent: 1
+ - uid: 9797
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 110.5,26.5
+ parent: 1
+ - uid: 9803
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,26.5
+ parent: 1
+ - uid: 9804
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,25.5
+ parent: 1
+ - uid: 9821
+ components:
+ - type: Transform
+ pos: 107.5,22.5
+ parent: 1
+ - uid: 9822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,21.5
+ parent: 1
+ - uid: 9838
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,67.5
+ parent: 1
+ - uid: 9844
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,70.5
+ parent: 1
+ - uid: 10343
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,72.5
+ parent: 1
+ - uid: 10386
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,141.5
+ parent: 1
+ - uid: 10390
+ components:
+ - type: Transform
+ pos: 66.5,157.5
+ parent: 1
+ - uid: 10502
+ components:
+ - type: Transform
+ pos: 42.5,121.5
+ parent: 1
+ - uid: 10560
+ components:
+ - type: Transform
+ pos: 152.5,113.5
+ parent: 1
+ - uid: 10728
+ components:
+ - type: Transform
+ pos: 86.5,38.5
+ parent: 1
+ - uid: 10798
+ components:
+ - type: Transform
+ pos: 97.5,105.5
+ parent: 1
+ - uid: 10981
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 103.5,20.5
+ parent: 1
+ - uid: 10983
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,20.5
+ parent: 1
+ - uid: 11175
+ components:
+ - type: Transform
+ pos: 148.5,112.5
+ parent: 1
+ - uid: 11177
+ components:
+ - type: Transform
+ pos: 147.5,109.5
+ parent: 1
+ - uid: 11179
+ components:
+ - type: Transform
+ pos: 152.5,114.5
+ parent: 1
+ - uid: 11334
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,18.5
+ parent: 1
+ - uid: 11371
+ components:
+ - type: Transform
+ pos: 141.5,89.5
+ parent: 1
+ - uid: 11373
+ components:
+ - type: Transform
+ pos: 141.5,91.5
+ parent: 1
+ - uid: 11456
+ components:
+ - type: Transform
+ pos: 32.5,69.5
+ parent: 1
+ - uid: 11457
+ components:
+ - type: Transform
+ pos: 33.5,69.5
+ parent: 1
+ - uid: 11458
+ components:
+ - type: Transform
+ pos: 34.5,69.5
+ parent: 1
+ - uid: 11485
+ components:
+ - type: Transform
+ pos: 147.5,111.5
+ parent: 1
+ - uid: 11487
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,112.5
+ parent: 1
+ - uid: 11488
+ components:
+ - type: Transform
+ pos: 35.5,69.5
+ parent: 1
+ - uid: 11489
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,112.5
+ parent: 1
+ - uid: 11504
+ components:
+ - type: Transform
+ pos: 36.5,69.5
+ parent: 1
+ - uid: 11523
+ components:
+ - type: Transform
+ pos: 36.5,68.5
+ parent: 1
+ - uid: 11536
+ components:
+ - type: Transform
+ pos: 36.5,66.5
+ parent: 1
+ - uid: 11543
+ components:
+ - type: Transform
+ pos: 37.5,69.5
+ parent: 1
+ - uid: 12028
+ components:
+ - type: Transform
+ pos: 38.5,69.5
+ parent: 1
+ - uid: 12029
+ components:
+ - type: Transform
+ pos: 40.5,69.5
+ parent: 1
+ - uid: 12160
+ components:
+ - type: Transform
+ pos: 147.5,107.5
+ parent: 1
+ - uid: 12437
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,73.5
+ parent: 1
+ - uid: 12452
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 62.5,48.5
+ parent: 1
+ - uid: 12473
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,96.5
+ parent: 1
+ - uid: 12505
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,121.5
+ parent: 1
+ - uid: 12508
+ components:
+ - type: Transform
+ pos: 37.5,121.5
+ parent: 1
+ - uid: 12511
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 49.5,113.5
+ parent: 1
+ - uid: 12643
+ components:
+ - type: Transform
+ pos: 101.5,44.5
+ parent: 1
+ - uid: 12659
+ components:
+ - type: Transform
+ pos: 93.5,55.5
+ parent: 1
+ - uid: 12731
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,33.5
+ parent: 1
+ - uid: 12833
+ components:
+ - type: Transform
+ pos: 90.5,38.5
+ parent: 1
+ - uid: 12834
+ components:
+ - type: Transform
+ pos: 100.5,45.5
+ parent: 1
+ - uid: 12835
+ components:
+ - type: Transform
+ pos: 100.5,48.5
+ parent: 1
+ - uid: 12836
+ components:
+ - type: Transform
+ pos: 100.5,44.5
+ parent: 1
+ - uid: 13204
+ components:
+ - type: Transform
+ pos: 55.5,53.5
+ parent: 1
+ - uid: 13235
+ components:
+ - type: Transform
+ pos: 124.5,137.5
+ parent: 1
+ - uid: 13240
+ components:
+ - type: Transform
+ pos: 56.5,53.5
+ parent: 1
+ - uid: 13241
+ components:
+ - type: Transform
+ pos: 100.5,46.5
+ parent: 1
+ - uid: 13249
+ components:
+ - type: Transform
+ pos: 58.5,53.5
+ parent: 1
+ - uid: 13250
+ components:
+ - type: Transform
+ pos: 59.5,53.5
+ parent: 1
+ - uid: 13251
+ components:
+ - type: Transform
+ pos: 59.5,52.5
+ parent: 1
+ - uid: 13256
+ components:
+ - type: Transform
+ pos: 115.5,24.5
+ parent: 1
+ - uid: 13258
+ components:
+ - type: Transform
+ pos: 59.5,50.5
+ parent: 1
+ - uid: 13469
+ components:
+ - type: Transform
+ pos: 60.5,53.5
+ parent: 1
+ - uid: 13471
+ components:
+ - type: Transform
+ pos: 61.5,53.5
+ parent: 1
+ - uid: 13492
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,97.5
+ parent: 1
+ - uid: 13808
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,62.5
+ parent: 1
+ - uid: 14168
+ components:
+ - type: Transform
+ pos: 111.5,21.5
+ parent: 1
+ - uid: 14273
+ components:
+ - type: Transform
+ pos: 58.5,102.5
+ parent: 1
+ - uid: 14500
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 137.5,140.5
+ parent: 1
+ - uid: 14572
+ components:
+ - type: Transform
+ pos: 62.5,71.5
+ parent: 1
+ - uid: 14642
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,143.5
+ parent: 1
+ - uid: 14757
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 54.5,127.5
+ parent: 1
+ - uid: 15072
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,170.5
+ parent: 1
+ - uid: 15436
+ components:
+ - type: Transform
+ pos: 58.5,128.5
+ parent: 1
+ - uid: 15663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,97.5
+ parent: 1
+ - uid: 15665
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 145.5,97.5
+ parent: 1
+ - uid: 15824
+ components:
+ - type: Transform
+ pos: 162.5,140.5
+ parent: 1
+ - uid: 16179
+ components:
+ - type: Transform
+ pos: 151.5,113.5
+ parent: 1
+ - uid: 16201
+ components:
+ - type: Transform
+ pos: 153.5,113.5
+ parent: 1
+ - uid: 16211
+ components:
+ - type: Transform
+ pos: 45.5,92.5
+ parent: 1
+ - uid: 16231
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,127.5
+ parent: 1
+ - uid: 16454
+ components:
+ - type: Transform
+ pos: 93.5,105.5
+ parent: 1
+ - uid: 16571
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 70.5,50.5
+ parent: 1
+ - uid: 16591
+ components:
+ - type: Transform
+ pos: 97.5,128.5
+ parent: 1
+ - uid: 16923
+ components:
+ - type: Transform
+ pos: 96.5,167.5
+ parent: 1
+ - uid: 16924
+ components:
+ - type: Transform
+ pos: 96.5,168.5
+ parent: 1
+ - uid: 16929
+ components:
+ - type: Transform
+ pos: 97.5,166.5
+ parent: 1
+ - uid: 16932
+ components:
+ - type: Transform
+ pos: 101.5,165.5
+ parent: 1
+ - uid: 17895
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,82.5
+ parent: 1
+ - uid: 17901
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,46.5
+ parent: 1
+ - uid: 17949
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,80.5
+ parent: 1
+ - uid: 17952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,109.5
+ parent: 1
+ - uid: 17956
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,81.5
+ parent: 1
+ - uid: 18271
+ components:
+ - type: Transform
+ pos: 110.5,34.5
+ parent: 1
+ - uid: 18281
+ components:
+ - type: Transform
+ pos: 154.5,101.5
+ parent: 1
+ - uid: 18376
+ components:
+ - type: Transform
+ pos: 145.5,91.5
+ parent: 1
+ - uid: 18377
+ components:
+ - type: Transform
+ pos: 145.5,90.5
+ parent: 1
+ - uid: 18581
+ components:
+ - type: Transform
+ pos: 20.5,110.5
+ parent: 1
+ - uid: 18973
+ components:
+ - type: Transform
+ pos: 97.5,126.5
+ parent: 1
+ - uid: 19044
+ components:
+ - type: Transform
+ pos: 20.5,112.5
+ parent: 1
+ - uid: 19106
+ components:
+ - type: Transform
+ pos: 97.5,35.5
+ parent: 1
+ - uid: 19118
+ components:
+ - type: Transform
+ pos: 59.5,123.5
+ parent: 1
+ - uid: 19263
+ components:
+ - type: Transform
+ pos: 19.5,105.5
+ parent: 1
+ - uid: 19341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 124.5,166.5
+ parent: 1
+ - uid: 19373
+ components:
+ - type: Transform
+ pos: 96.5,105.5
+ parent: 1
+ - uid: 19401
+ components:
+ - type: Transform
+ pos: 98.5,126.5
+ parent: 1
+ - uid: 19460
+ components:
+ - type: Transform
+ pos: 95.5,105.5
+ parent: 1
+ - uid: 19499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,97.5
+ parent: 1
+ - uid: 19565
+ components:
+ - type: Transform
+ pos: 59.5,124.5
+ parent: 1
+ - uid: 19954
+ components:
+ - type: Transform
+ pos: 99.5,126.5
+ parent: 1
+ - uid: 20466
+ components:
+ - type: Transform
+ pos: 93.5,54.5
+ parent: 1
+ - uid: 20500
+ components:
+ - type: Transform
+ pos: 90.5,49.5
+ parent: 1
+ - uid: 20505
+ components:
+ - type: Transform
+ pos: 124.5,40.5
+ parent: 1
+ - uid: 20851
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,78.5
+ parent: 1
+ - uid: 20907
+ components:
+ - type: Transform
+ pos: 91.5,49.5
+ parent: 1
+ - uid: 21030
+ components:
+ - type: Transform
+ pos: 95.5,38.5
+ parent: 1
+ - uid: 21031
+ components:
+ - type: Transform
+ pos: 96.5,38.5
+ parent: 1
+ - uid: 21034
+ components:
+ - type: Transform
+ pos: 155.5,132.5
+ parent: 1
+ - uid: 21041
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,83.5
+ parent: 1
+ - uid: 21047
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,98.5
+ parent: 1
+ - uid: 21050
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 146.5,87.5
+ parent: 1
+ - uid: 21061
+ components:
+ - type: Transform
+ pos: 93.5,38.5
+ parent: 1
+ - uid: 22417
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,87.5
+ parent: 1
+ - uid: 22418
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,87.5
+ parent: 1
+ - uid: 23184
+ components:
+ - type: Transform
+ pos: 121.5,28.5
+ parent: 1
+ - uid: 23210
+ components:
+ - type: Transform
+ pos: 91.5,38.5
+ parent: 1
+ - uid: 23211
+ components:
+ - type: Transform
+ pos: 94.5,38.5
+ parent: 1
+ - uid: 23212
+ components:
+ - type: Transform
+ pos: 92.5,38.5
+ parent: 1
+ - uid: 23331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,166.5
+ parent: 1
+ - uid: 23359
+ components:
+ - type: Transform
+ pos: 100.5,126.5
+ parent: 1
+ - uid: 23369
+ components:
+ - type: Transform
+ pos: 74.5,62.5
+ parent: 1
+ - uid: 23378
+ components:
+ - type: Transform
+ pos: 73.5,62.5
+ parent: 1
+ - uid: 23381
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,53.5
+ parent: 1
+ - uid: 23388
+ components:
+ - type: Transform
+ pos: 102.5,38.5
+ parent: 1
+ - uid: 23418
+ components:
+ - type: Transform
+ pos: 80.5,62.5
+ parent: 1
+ - uid: 23429
+ components:
+ - type: Transform
+ pos: 161.5,133.5
+ parent: 1
+ - uid: 23438
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 126.5,97.5
+ parent: 1
+ - uid: 23507
+ components:
+ - type: Transform
+ pos: 81.5,62.5
+ parent: 1
+ - uid: 23623
+ components:
+ - type: Transform
+ pos: 90.5,62.5
+ parent: 1
+ - uid: 23648
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 87.5,49.5
+ parent: 1
+ - uid: 23716
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,143.5
+ parent: 1
+ - uid: 23761
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,83.5
+ parent: 1
+ - uid: 23764
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,83.5
+ parent: 1
+ - uid: 23823
+ components:
+ - type: Transform
+ pos: 119.5,113.5
+ parent: 1
+ - uid: 24057
+ components:
+ - type: Transform
+ pos: 101.5,126.5
+ parent: 1
+ - uid: 24186
+ components:
+ - type: Transform
+ pos: 115.5,126.5
+ parent: 1
+ - uid: 24230
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,87.5
+ parent: 1
+ - uid: 24334
+ components:
+ - type: Transform
+ pos: 111.5,65.5
+ parent: 1
+ - uid: 24350
+ components:
+ - type: Transform
+ pos: 111.5,104.5
+ parent: 1
+ - uid: 24408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,70.5
+ parent: 1
+ - uid: 24410
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,62.5
+ parent: 1
+ - uid: 24411
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 57.5,46.5
+ parent: 1
+ - uid: 24509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,64.5
+ parent: 1
+ - uid: 24513
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,69.5
+ parent: 1
+ - uid: 24515
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 37.5,79.5
+ parent: 1
+ - uid: 24544
+ components:
+ - type: Transform
+ pos: 116.5,126.5
+ parent: 1
+ - uid: 24660
+ components:
+ - type: Transform
+ pos: 117.5,126.5
+ parent: 1
+ - uid: 24661
+ components:
+ - type: Transform
+ pos: 118.5,126.5
+ parent: 1
+ - uid: 24690
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,66.5
+ parent: 1
+ - uid: 24692
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,73.5
+ parent: 1
+ - uid: 24693
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,74.5
+ parent: 1
+ - uid: 24694
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,68.5
+ parent: 1
+ - uid: 24939
+ components:
+ - type: Transform
+ pos: 105.5,102.5
+ parent: 1
+ - uid: 24940
+ components:
+ - type: Transform
+ pos: 105.5,101.5
+ parent: 1
+ - uid: 24944
+ components:
+ - type: Transform
+ pos: 105.5,104.5
+ parent: 1
+ - uid: 25107
+ components:
+ - type: Transform
+ pos: 144.5,115.5
+ parent: 1
+ - uid: 25243
+ components:
+ - type: Transform
+ pos: 98.5,49.5
+ parent: 1
+ - uid: 25252
+ components:
+ - type: Transform
+ pos: 119.5,144.5
+ parent: 1
+ - uid: 25253
+ components:
+ - type: Transform
+ pos: 119.5,145.5
+ parent: 1
+ - uid: 25267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,48.5
+ parent: 1
+ - uid: 25309
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,57.5
+ parent: 1
+ - uid: 25359
+ components:
+ - type: Transform
+ pos: 119.5,146.5
+ parent: 1
+ - uid: 25390
+ components:
+ - type: Transform
+ pos: 93.5,49.5
+ parent: 1
+ - uid: 25484
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,61.5
+ parent: 1
+ - uid: 25600
+ components:
+ - type: Transform
+ pos: 102.5,104.5
+ parent: 1
+ - uid: 25601
+ components:
+ - type: Transform
+ pos: 102.5,103.5
+ parent: 1
+ - uid: 25603
+ components:
+ - type: Transform
+ pos: 102.5,102.5
+ parent: 1
+ - uid: 25605
+ components:
+ - type: Transform
+ pos: 114.5,102.5
+ parent: 1
+ - uid: 25606
+ components:
+ - type: Transform
+ pos: 114.5,103.5
+ parent: 1
+ - uid: 25607
+ components:
+ - type: Transform
+ pos: 114.5,104.5
+ parent: 1
+ - uid: 25628
+ components:
+ - type: Transform
+ pos: 100.5,42.5
+ parent: 1
+ - uid: 25697
+ components:
+ - type: Transform
+ pos: 100.5,43.5
+ parent: 1
+ - uid: 25708
+ components:
+ - type: Transform
+ pos: 100.5,41.5
+ parent: 1
+ - uid: 25788
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,66.5
+ parent: 1
+ - uid: 25809
+ components:
+ - type: Transform
+ pos: 106.5,53.5
+ parent: 1
+ - uid: 25850
+ components:
+ - type: Transform
+ pos: 119.5,147.5
+ parent: 1
+ - uid: 25918
+ components:
+ - type: Transform
+ pos: 125.5,98.5
+ parent: 1
+ - uid: 25920
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,65.5
+ parent: 1
+ - uid: 26176
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,65.5
+ parent: 1
+ - uid: 26234
+ components:
+ - type: Transform
+ pos: 119.5,130.5
+ parent: 1
+ - uid: 26320
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,33.5
+ parent: 1
+ - uid: 26682
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,115.5
+ parent: 1
+ - uid: 26713
+ components:
+ - type: Transform
+ pos: 119.5,129.5
+ parent: 1
+ - uid: 26714
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,75.5
+ parent: 1
+ - uid: 26716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 111.5,67.5
+ parent: 1
+ - uid: 26798
+ components:
+ - type: Transform
+ pos: 119.5,128.5
+ parent: 1
+ - uid: 26807
+ components:
+ - type: Transform
+ pos: 119.5,127.5
+ parent: 1
+ - uid: 26822
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,65.5
+ parent: 1
+ - uid: 26823
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,71.5
+ parent: 1
+ - uid: 26873
+ components:
+ - type: Transform
+ pos: 59.5,45.5
+ parent: 1
+ - uid: 26878
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 123.5,116.5
+ parent: 1
+ - uid: 26883
+ components:
+ - type: Transform
+ pos: 119.5,126.5
+ parent: 1
+ - uid: 27173
+ components:
+ - type: Transform
+ pos: 101.5,65.5
+ parent: 1
+ - uid: 27178
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,54.5
+ parent: 1
+ - uid: 27272
+ components:
+ - type: Transform
+ pos: 108.5,37.5
+ parent: 1
+ - uid: 27274
+ components:
+ - type: Transform
+ pos: 108.5,43.5
+ parent: 1
+ - uid: 27320
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,50.5
+ parent: 1
+ - uid: 27323
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,49.5
+ parent: 1
+ - uid: 27327
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,101.5
+ parent: 1
+ - uid: 27331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,48.5
+ parent: 1
+ - uid: 27414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,47.5
+ parent: 1
+ - uid: 27510
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 81.5,46.5
+ parent: 1
+ - uid: 27581
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,43.5
+ parent: 1
+ - uid: 27597
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,50.5
+ parent: 1
+ - uid: 27600
+ components:
+ - type: Transform
+ pos: 64.5,57.5
+ parent: 1
+ - uid: 27603
+ components:
+ - type: Transform
+ pos: 92.5,49.5
+ parent: 1
+ - uid: 27619
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,49.5
+ parent: 1
+ - uid: 27620
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,47.5
+ parent: 1
+ - uid: 27651
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 118.5,43.5
+ parent: 1
+ - uid: 27656
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,40.5
+ parent: 1
+ - uid: 27661
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 121.5,35.5
+ parent: 1
+ - uid: 27732
+ components:
+ - type: Transform
+ pos: 106.5,37.5
+ parent: 1
+ - uid: 27832
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 61.5,79.5
+ parent: 1
+ - uid: 27868
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 58.5,87.5
+ parent: 1
+ - uid: 28135
+ components:
+ - type: Transform
+ pos: 45.5,87.5
+ parent: 1
+ - uid: 28143
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,63.5
+ parent: 1
+ - uid: 28289
+ components:
+ - type: Transform
+ pos: 103.5,42.5
+ parent: 1
+ - uid: 28338
+ components:
+ - type: Transform
+ pos: 51.5,126.5
+ parent: 1
+ - uid: 28518
+ components:
+ - type: Transform
+ pos: 103.5,41.5
+ parent: 1
+ - uid: 28538
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,88.5
+ parent: 1
+ - uid: 28588
+ components:
+ - type: Transform
+ pos: 154.5,84.5
+ parent: 1
+ - uid: 28590
+ components:
+ - type: Transform
+ pos: 109.5,43.5
+ parent: 1
+ - uid: 28592
+ components:
+ - type: Transform
+ pos: 154.5,82.5
+ parent: 1
+ - uid: 28611
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,79.5
+ parent: 1
+ - uid: 28615
+ components:
+ - type: Transform
+ pos: 109.5,41.5
+ parent: 1
+ - uid: 28627
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,70.5
+ parent: 1
+ - uid: 28629
+ components:
+ - type: Transform
+ pos: 130.5,114.5
+ parent: 1
+ - uid: 28715
+ components:
+ - type: Transform
+ pos: 118.5,24.5
+ parent: 1
+ - uid: 28716
+ components:
+ - type: Transform
+ pos: 120.5,24.5
+ parent: 1
+ - uid: 28731
+ components:
+ - type: Transform
+ pos: 57.5,156.5
+ parent: 1
+ - uid: 28733
+ components:
+ - type: Transform
+ pos: 126.5,40.5
+ parent: 1
+ - uid: 28734
+ components:
+ - type: Transform
+ pos: 54.5,104.5
+ parent: 1
+ - uid: 28735
+ components:
+ - type: Transform
+ pos: 54.5,103.5
+ parent: 1
+ - uid: 28751
+ components:
+ - type: Transform
+ pos: 109.5,38.5
+ parent: 1
+ - uid: 28760
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,54.5
+ parent: 1
+ - uid: 28762
+ components:
+ - type: Transform
+ pos: 109.5,40.5
+ parent: 1
+ - uid: 28767
+ components:
+ - type: Transform
+ pos: 103.5,37.5
+ parent: 1
+ - uid: 28770
+ components:
+ - type: Transform
+ pos: 103.5,43.5
+ parent: 1
+ - uid: 28771
+ components:
+ - type: Transform
+ pos: 103.5,39.5
+ parent: 1
+ - uid: 28772
+ components:
+ - type: Transform
+ pos: 109.5,39.5
+ parent: 1
+ - uid: 28773
+ components:
+ - type: Transform
+ pos: 105.5,37.5
+ parent: 1
+ - uid: 28774
+ components:
+ - type: Transform
+ pos: 107.5,43.5
+ parent: 1
+ - uid: 28775
+ components:
+ - type: Transform
+ pos: 104.5,43.5
+ parent: 1
+ - uid: 28776
+ components:
+ - type: Transform
+ pos: 104.5,37.5
+ parent: 1
+ - uid: 28788
+ components:
+ - type: Transform
+ pos: 94.5,54.5
+ parent: 1
+ - uid: 28789
+ components:
+ - type: Transform
+ pos: 130.5,111.5
+ parent: 1
+ - uid: 28803
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,79.5
+ parent: 1
+ - uid: 28880
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 88.5,49.5
+ parent: 1
+ - uid: 28882
+ components:
+ - type: Transform
+ pos: 116.5,67.5
+ parent: 1
+ - uid: 28896
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,53.5
+ parent: 1
+ - uid: 28916
+ components:
+ - type: Transform
+ pos: 109.5,42.5
+ parent: 1
+ - uid: 28927
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,53.5
+ parent: 1
+ - uid: 28938
+ components:
+ - type: Transform
+ pos: 109.5,37.5
+ parent: 1
+ - uid: 28939
+ components:
+ - type: Transform
+ pos: 103.5,38.5
+ parent: 1
+ - uid: 29033
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,64.5
+ parent: 1
+ - uid: 29034
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,67.5
+ parent: 1
+ - uid: 29038
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 98.5,72.5
+ parent: 1
+ - uid: 29058
+ components:
+ - type: Transform
+ pos: 61.5,69.5
+ parent: 1
+ - uid: 29097
+ components:
+ - type: Transform
+ pos: 62.5,69.5
+ parent: 1
+ - uid: 29173
+ components:
+ - type: Transform
+ pos: 112.5,21.5
+ parent: 1
+ - uid: 29179
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,131.5
+ parent: 1
+ - uid: 29296
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,83.5
+ parent: 1
+ - uid: 29347
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,33.5
+ parent: 1
+ - uid: 29358
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,83.5
+ parent: 1
+ - uid: 29474
+ components:
+ - type: Transform
+ pos: 100.5,39.5
+ parent: 1
+ - uid: 29504
+ components:
+ - type: Transform
+ pos: 58.5,77.5
+ parent: 1
+ - uid: 29516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,163.5
+ parent: 1
+ - uid: 29517
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 122.5,161.5
+ parent: 1
+ - uid: 29806
+ components:
+ - type: Transform
+ pos: 154.5,133.5
+ parent: 1
+ - uid: 29842
+ components:
+ - type: Transform
+ pos: 103.5,44.5
+ parent: 1
+ - uid: 29940
+ components:
+ - type: Transform
+ pos: 101.5,49.5
+ parent: 1
+ - uid: 30109
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 107.5,49.5
+ parent: 1
+ - uid: 30187
+ components:
+ - type: Transform
+ pos: 143.5,143.5
+ parent: 1
+ - uid: 30190
+ components:
+ - type: Transform
+ pos: 156.5,101.5
+ parent: 1
+ - uid: 30198
+ components:
+ - type: Transform
+ pos: 143.5,145.5
+ parent: 1
+ - uid: 30205
+ components:
+ - type: Transform
+ pos: 138.5,146.5
+ parent: 1
+ - uid: 30230
+ components:
+ - type: Transform
+ pos: 147.5,113.5
+ parent: 1
+ - uid: 30240
+ components:
+ - type: Transform
+ pos: 74.5,109.5
+ parent: 1
+ - uid: 30292
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,38.5
+ parent: 1
+ - uid: 30330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,142.5
+ parent: 1
+ - uid: 30396
+ components:
+ - type: Transform
+ pos: 108.5,48.5
+ parent: 1
+ - uid: 30413
+ components:
+ - type: Transform
+ pos: 89.5,41.5
+ parent: 1
+ - uid: 30450
+ components:
+ - type: Transform
+ pos: 146.5,126.5
+ parent: 1
+ - uid: 30635
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,44.5
+ parent: 1
+ - uid: 30668
+ components:
+ - type: Transform
+ pos: 147.5,123.5
+ parent: 1
+ - uid: 30834
+ components:
+ - type: Transform
+ pos: 73.5,157.5
+ parent: 1
+ - uid: 30838
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,87.5
+ parent: 1
+ - uid: 30869
+ components:
+ - type: Transform
+ pos: 23.5,83.5
+ parent: 1
+ - uid: 31828
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 26.5,90.5
+ parent: 1
+ - uid: 31850
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,62.5
+ parent: 1
+ - uid: 31856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,65.5
+ parent: 1
+ - uid: 31857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 101.5,67.5
+ parent: 1
+ - uid: 32049
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 154.5,47.5
+ parent: 1
+ - uid: 32065
+ components:
+ - type: Transform
+ pos: 154.5,130.5
+ parent: 1
+ - uid: 32190
+ components:
+ - type: Transform
+ pos: 147.5,108.5
+ parent: 1
+ - uid: 32219
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,104.5
+ parent: 1
+ - uid: 32285
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,42.5
+ parent: 1
+ - uid: 32407
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,43.5
+ parent: 1
+ - uid: 32409
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 113.5,43.5
+ parent: 1
+ - uid: 32437
+ components:
+ - type: Transform
+ pos: 108.5,47.5
+ parent: 1
+ - uid: 32441
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,29.5
+ parent: 1
+ - uid: 32931
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 109.5,166.5
+ parent: 1
+ - uid: 32942
+ components:
+ - type: Transform
+ pos: 149.5,115.5
+ parent: 1
+ - uid: 33011
+ components:
+ - type: Transform
+ pos: 26.5,82.5
+ parent: 1
+ - uid: 33062
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 101.5,24.5
+ parent: 1
+ - uid: 33830
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 152.5,87.5
+ parent: 1
+ - uid: 33843
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 156.5,114.5
+ parent: 1
+ - uid: 33880
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,103.5
+ parent: 1
+ - uid: 33884
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 123.5,159.5
+ parent: 1
+ - uid: 33966
+ components:
+ - type: Transform
+ pos: 125.5,101.5
+ parent: 1
+ - uid: 34054
+ components:
+ - type: Transform
+ pos: 108.5,44.5
+ parent: 1
+ - uid: 34079
+ components:
+ - type: Transform
+ pos: 89.5,48.5
+ parent: 1
+ - uid: 34110
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,80.5
+ parent: 1
+ - uid: 34114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 148.5,78.5
+ parent: 1
+ - uid: 34375
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,82.5
+ parent: 1
+ - uid: 34377
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 143.5,82.5
+ parent: 1
+ - uid: 34379
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 145.5,82.5
+ parent: 1
+ - uid: 34386
+ components:
+ - type: Transform
+ pos: 142.5,83.5
+ parent: 1
+ - uid: 34432
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,157.5
+ parent: 1
+ - uid: 34473
+ components:
+ - type: Transform
+ pos: 105.5,49.5
+ parent: 1
+ - uid: 34496
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,42.5
+ parent: 1
+ - uid: 34697
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,120.5
+ parent: 1
+ - uid: 34741
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,168.5
+ parent: 1
+ - uid: 34751
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,162.5
+ parent: 1
+ - uid: 34752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,161.5
+ parent: 1
+ - uid: 34758
+ components:
+ - type: Transform
+ pos: 94.5,109.5
+ parent: 1
+ - uid: 34760
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,166.5
+ parent: 1
+ - uid: 34839
+ components:
+ - type: Transform
+ pos: 130.5,84.5
+ parent: 1
+ - uid: 34840
+ components:
+ - type: Transform
+ pos: 130.5,83.5
+ parent: 1
+ - uid: 34842
+ components:
+ - type: Transform
+ pos: 130.5,81.5
+ parent: 1
+ - uid: 34890
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 55.5,120.5
+ parent: 1
+ - uid: 34902
+ components:
+ - type: Transform
+ pos: 130.5,80.5
+ parent: 1
+ - uid: 34915
+ components:
+ - type: Transform
+ pos: 130.5,79.5
+ parent: 1
+ - uid: 34916
+ components:
+ - type: Transform
+ pos: 131.5,84.5
+ parent: 1
+ - uid: 34917
+ components:
+ - type: Transform
+ pos: 131.5,79.5
+ parent: 1
+ - uid: 34924
+ components:
+ - type: Transform
+ pos: 132.5,84.5
+ parent: 1
+ - uid: 34925
+ components:
+ - type: Transform
+ pos: 133.5,84.5
+ parent: 1
+ - uid: 34927
+ components:
+ - type: Transform
+ pos: 134.5,84.5
+ parent: 1
+ - uid: 34928
+ components:
+ - type: Transform
+ pos: 136.5,84.5
+ parent: 1
+ - uid: 34940
+ components:
+ - type: Transform
+ pos: 137.5,84.5
+ parent: 1
+ - uid: 34941
+ components:
+ - type: Transform
+ pos: 138.5,79.5
+ parent: 1
+ - uid: 34942
+ components:
+ - type: Transform
+ pos: 138.5,84.5
+ parent: 1
+ - uid: 34944
+ components:
+ - type: Transform
+ pos: 139.5,81.5
+ parent: 1
+ - uid: 34949
+ components:
+ - type: Transform
+ pos: 139.5,83.5
+ parent: 1
+ - uid: 34950
+ components:
+ - type: Transform
+ pos: 139.5,82.5
+ parent: 1
+ - uid: 34951
+ components:
+ - type: Transform
+ pos: 139.5,84.5
+ parent: 1
+ - uid: 34952
+ components:
+ - type: Transform
+ pos: 139.5,79.5
+ parent: 1
+ - uid: 34959
+ components:
+ - type: Transform
+ pos: 139.5,80.5
+ parent: 1
+ - uid: 34965
+ components:
+ - type: Transform
+ pos: 163.5,133.5
+ parent: 1
+ - uid: 35126
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,171.5
+ parent: 1
+ - uid: 35129
+ components:
+ - type: Transform
+ pos: 18.5,105.5
+ parent: 1
+ - uid: 35150
+ components:
+ - type: Transform
+ pos: 41.5,121.5
+ parent: 1
+ - uid: 35199
+ components:
+ - type: Transform
+ pos: 59.5,121.5
+ parent: 1
+ - uid: 35208
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,87.5
+ parent: 1
+ - uid: 35210
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,86.5
+ parent: 1
+ - uid: 35249
+ components:
+ - type: Transform
+ pos: 73.5,158.5
+ parent: 1
+ - uid: 35253
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,94.5
+ parent: 1
+ - uid: 35261
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,85.5
+ parent: 1
+ - uid: 35314
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,86.5
+ parent: 1
+ - uid: 35326
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 85.5,88.5
+ parent: 1
+ - uid: 35395
+ components:
+ - type: Transform
+ pos: 73.5,159.5
+ parent: 1
+ - uid: 35502
+ components:
+ - type: Transform
+ pos: 115.5,165.5
+ parent: 1
+ - uid: 35516
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 46.5,121.5
+ parent: 1
+ - uid: 35555
+ components:
+ - type: Transform
+ pos: 126.5,102.5
+ parent: 1
+ - uid: 35556
+ components:
+ - type: Transform
+ pos: 124.5,102.5
+ parent: 1
+ - uid: 35576
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 18.5,97.5
+ parent: 1
+ - uid: 35638
+ components:
+ - type: Transform
+ pos: 57.5,149.5
+ parent: 1
+ - uid: 35654
+ components:
+ - type: Transform
+ pos: 160.5,122.5
+ parent: 1
+ - uid: 35656
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,87.5
+ parent: 1
+ - uid: 35697
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,97.5
+ parent: 1
+ - uid: 35851
+ components:
+ - type: Transform
+ pos: 113.5,166.5
+ parent: 1
+ - uid: 35914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 87.5,32.5
+ parent: 1
+ - uid: 35915
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 71.5,46.5
+ parent: 1
+ - uid: 36026
+ components:
+ - type: Transform
+ pos: 153.5,101.5
+ parent: 1
+ - uid: 36094
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 112.5,44.5
+ parent: 1
+ - uid: 36448
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,127.5
+ parent: 1
+ - uid: 36458
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,82.5
+ parent: 1
+ - uid: 36817
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 99.5,89.5
+ parent: 1
+ - uid: 36818
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,89.5
+ parent: 1
+ - uid: 36820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 102.5,89.5
+ parent: 1
+ - uid: 36821
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 100.5,89.5
+ parent: 1
+ - uid: 36822
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 98.5,89.5
+ parent: 1
+ - uid: 36832
+ components:
+ - type: Transform
+ pos: 97.5,84.5
+ parent: 1
+ - uid: 36863
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 101.5,168.5
+ parent: 1
+ - uid: 36866
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 125.5,162.5
+ parent: 1
+ - uid: 37131
+ components:
+ - type: Transform
+ pos: 164.5,133.5
+ parent: 1
+ - uid: 37132
+ components:
+ - type: Transform
+ pos: 164.5,134.5
+ parent: 1
+ - uid: 37185
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 165.5,137.5
+ parent: 1
+ - uid: 37217
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,83.5
+ parent: 1
+ - uid: 37504
+ components:
+ - type: Transform
+ pos: 161.5,117.5
+ parent: 1
+- proto: WallSolidRust
+ entities:
+ - uid: 120
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 116.5,64.5
+ parent: 1
+ - uid: 197
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,82.5
+ parent: 1
+ - uid: 206
+ components:
+ - type: Transform
+ pos: 46.5,119.5
+ parent: 1
+ - uid: 761
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,171.5
+ parent: 1
+ - uid: 1346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 147.5,87.5
+ parent: 1
+ - uid: 1475
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,87.5
+ parent: 1
+ - uid: 1766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,47.5
+ parent: 1
+ - uid: 1871
+ components:
+ - type: Transform
+ pos: 97.5,37.5
+ parent: 1
+ - uid: 1874
+ components:
+ - type: Transform
+ pos: 97.5,34.5
+ parent: 1
+ - uid: 1887
+ components:
+ - type: Transform
+ pos: 89.5,34.5
+ parent: 1
+ - uid: 1963
+ components:
+ - type: Transform
+ pos: 85.5,22.5
+ parent: 1
+ - uid: 1971
+ components:
+ - type: Transform
+ pos: 97.5,25.5
+ parent: 1
+ - uid: 1972
+ components:
+ - type: Transform
+ pos: 110.5,29.5
+ parent: 1
+ - uid: 1973
+ components:
+ - type: Transform
+ pos: 98.5,24.5
+ parent: 1
+ - uid: 2229
+ components:
+ - type: Transform
+ pos: 124.5,34.5
+ parent: 1
+ - uid: 3005
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 120.5,166.5
+ parent: 1
+ - uid: 3214
+ components:
+ - type: Transform
+ pos: 68.5,159.5
+ parent: 1
+ - uid: 3346
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,88.5
+ parent: 1
+ - uid: 3394
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,106.5
+ parent: 1
+ - uid: 3443
+ components:
+ - type: Transform
+ pos: 96.5,169.5
+ parent: 1
+ - uid: 3454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,65.5
+ parent: 1
+ - uid: 3764
+ components:
+ - type: Transform
+ pos: 92.5,29.5
+ parent: 1
+ - uid: 3788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,94.5
+ parent: 1
+ - uid: 3792
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 35.5,97.5
+ parent: 1
+ - uid: 3801
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 134.5,85.5
+ parent: 1
+ - uid: 3993
+ components:
+ - type: Transform
+ pos: 97.5,71.5
+ parent: 1
+ - uid: 4131
+ components:
+ - type: Transform
+ pos: 90.5,29.5
+ parent: 1
+ - uid: 4212
+ components:
+ - type: Transform
+ pos: 115.5,28.5
+ parent: 1
+ - uid: 4266
+ components:
+ - type: Transform
+ pos: 59.5,41.5
+ parent: 1
+ - uid: 4268
+ components:
+ - type: Transform
+ pos: 107.5,24.5
+ parent: 1
+ - uid: 4492
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,167.5
+ parent: 1
+ - uid: 4509
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,85.5
+ parent: 1
+ - uid: 4802
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,171.5
+ parent: 1
+ - uid: 4839
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,166.5
+ parent: 1
+ - uid: 4904
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,167.5
+ parent: 1
+ - uid: 5063
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 64.5,50.5
+ parent: 1
+ - uid: 5119
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 111.5,49.5
+ parent: 1
+ - uid: 5353
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 63.5,44.5
+ parent: 1
+ - uid: 5482
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 64.5,22.5
+ parent: 1
+ - uid: 5536
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,22.5
+ parent: 1
+ - uid: 5537
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,20.5
+ parent: 1
+ - uid: 5545
+ components:
+ - type: Transform
+ pos: 93.5,24.5
+ parent: 1
+ - uid: 5546
+ components:
+ - type: Transform
+ pos: 92.5,24.5
+ parent: 1
+ - uid: 5552
+ components:
+ - type: Transform
+ pos: 87.5,27.5
+ parent: 1
+ - uid: 5553
+ components:
+ - type: Transform
+ pos: 87.5,24.5
+ parent: 1
+ - uid: 5628
+ components:
+ - type: Transform
+ pos: 89.5,29.5
+ parent: 1
+ - uid: 5637
+ components:
+ - type: Transform
+ pos: 93.5,28.5
+ parent: 1
+ - uid: 5948
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,114.5
+ parent: 1
+ - uid: 5974
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,106.5
+ parent: 1
+ - uid: 6087
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,95.5
+ parent: 1
+ - uid: 6095
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,102.5
+ parent: 1
+ - uid: 6099
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,103.5
+ parent: 1
+ - uid: 6102
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,95.5
+ parent: 1
+ - uid: 6111
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,120.5
+ parent: 1
+ - uid: 6121
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,114.5
+ parent: 1
+ - uid: 6126
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,109.5
+ parent: 1
+ - uid: 6129
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,106.5
+ parent: 1
+ - uid: 6134
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,105.5
+ parent: 1
+ - uid: 6172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 21.5,95.5
+ parent: 1
+ - uid: 6222
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,119.5
+ parent: 1
+ - uid: 6223
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,103.5
+ parent: 1
+ - uid: 6224
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,120.5
+ parent: 1
+ - uid: 6225
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,109.5
+ parent: 1
+ - uid: 6251
+ components:
+ - type: Transform
+ pos: 145.5,81.5
+ parent: 1
+ - uid: 6277
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,95.5
+ parent: 1
+ - uid: 6279
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,89.5
+ parent: 1
+ - uid: 6375
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,114.5
+ parent: 1
+ - uid: 6483
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,109.5
+ parent: 1
+ - uid: 6547
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,89.5
+ parent: 1
+ - uid: 6573
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,87.5
+ parent: 1
+ - uid: 6685
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,85.5
+ parent: 1
+ - uid: 6720
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,77.5
+ parent: 1
+ - uid: 6721
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,120.5
+ parent: 1
+ - uid: 6724
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,77.5
+ parent: 1
+ - uid: 6780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,120.5
+ parent: 1
+ - uid: 6784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,83.5
+ parent: 1
+ - uid: 6810
+ components:
+ - type: Transform
+ pos: 26.5,80.5
+ parent: 1
+ - uid: 6848
+ components:
+ - type: Transform
+ pos: 88.5,24.5
+ parent: 1
+ - uid: 6857
+ components:
+ - type: Transform
+ pos: 26.5,79.5
+ parent: 1
+ - uid: 6902
+ components:
+ - type: Transform
+ pos: 26.5,78.5
+ parent: 1
+ - uid: 7059
+ components:
+ - type: Transform
+ pos: 103.5,25.5
+ parent: 1
+ - uid: 7061
+ components:
+ - type: Transform
+ pos: 140.5,84.5
+ parent: 1
+ - uid: 7083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,73.5
+ parent: 1
+ - uid: 7098
+ components:
+ - type: Transform
+ pos: 87.5,21.5
+ parent: 1
+ - uid: 7114
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,120.5
+ parent: 1
+ - uid: 7127
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 60.5,76.5
+ parent: 1
+ - uid: 7143
+ components:
+ - type: Transform
+ pos: 29.5,84.5
+ parent: 1
+ - uid: 7144
+ components:
+ - type: Transform
+ pos: 29.5,82.5
+ parent: 1
+ - uid: 7146
+ components:
+ - type: Transform
+ pos: 141.5,79.5
+ parent: 1
+ - uid: 7151
+ components:
+ - type: Transform
+ pos: 142.5,86.5
+ parent: 1
+ - uid: 7162
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,123.5
+ parent: 1
+ - uid: 7172
+ components:
+ - type: Transform
+ pos: 142.5,84.5
+ parent: 1
+ - uid: 7190
+ components:
+ - type: Transform
+ pos: 110.5,25.5
+ parent: 1
+ - uid: 7210
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 63.5,76.5
+ parent: 1
+ - uid: 7246
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,80.5
+ parent: 1
+ - uid: 7533
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,120.5
+ parent: 1
+ - uid: 7595
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,77.5
+ parent: 1
+ - uid: 7655
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,67.5
+ parent: 1
+ - uid: 7663
+ components:
+ - type: Transform
+ pos: 103.5,29.5
+ parent: 1
+ - uid: 7806
+ components:
+ - type: Transform
+ pos: 100.5,29.5
+ parent: 1
+ - uid: 7854
+ components:
+ - type: Transform
+ pos: 31.5,118.5
+ parent: 1
+ - uid: 7992
+ components:
+ - type: Transform
+ pos: 93.5,33.5
+ parent: 1
+ - uid: 8199
+ components:
+ - type: Transform
+ pos: 103.5,28.5
+ parent: 1
+ - uid: 8238
+ components:
+ - type: Transform
+ pos: 97.5,29.5
+ parent: 1
+ - uid: 8240
+ components:
+ - type: Transform
+ pos: 93.5,29.5
+ parent: 1
+ - uid: 8271
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 65.5,33.5
+ parent: 1
+ - uid: 8287
+ components:
+ - type: Transform
+ pos: 97.5,33.5
+ parent: 1
+ - uid: 8301
+ components:
+ - type: Transform
+ pos: 99.5,24.5
+ parent: 1
+ - uid: 8312
+ components:
+ - type: Transform
+ pos: 100.5,24.5
+ parent: 1
+ - uid: 8350
+ components:
+ - type: Transform
+ pos: 99.5,33.5
+ parent: 1
+ - uid: 8438
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,46.5
+ parent: 1
+ - uid: 8455
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,48.5
+ parent: 1
+ - uid: 8468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,44.5
+ parent: 1
+ - uid: 8484
+ components:
+ - type: Transform
+ pos: 99.5,29.5
+ parent: 1
+ - uid: 8496
+ components:
+ - type: Transform
+ pos: 144.5,86.5
+ parent: 1
+ - uid: 8501
+ components:
+ - type: Transform
+ pos: 110.5,30.5
+ parent: 1
+ - uid: 8558
+ components:
+ - type: Transform
+ pos: 90.5,33.5
+ parent: 1
+ - uid: 8561
+ components:
+ - type: Transform
+ pos: 89.5,32.5
+ parent: 1
+ - uid: 8646
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,46.5
+ parent: 1
+ - uid: 8667
+ components:
+ - type: Transform
+ pos: 59.5,131.5
+ parent: 1
+ - uid: 8848
+ components:
+ - type: Transform
+ pos: 33.5,81.5
+ parent: 1
+ - uid: 8866
+ components:
+ - type: Transform
+ pos: 35.5,81.5
+ parent: 1
+ - uid: 9392
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 81.5,44.5
+ parent: 1
+ - uid: 9393
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,44.5
+ parent: 1
+ - uid: 9394
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,41.5
+ parent: 1
+ - uid: 9395
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,37.5
+ parent: 1
+ - uid: 9396
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,29.5
+ parent: 1
+ - uid: 9399
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,57.5
+ parent: 1
+ - uid: 9706
+ components:
+ - type: Transform
+ pos: 108.5,25.5
+ parent: 1
+ - uid: 9708
+ components:
+ - type: Transform
+ pos: 111.5,32.5
+ parent: 1
+ - uid: 9711
+ components:
+ - type: Transform
+ pos: 107.5,32.5
+ parent: 1
+ - uid: 9739
+ components:
+ - type: Transform
+ pos: 103.5,23.5
+ parent: 1
+ - uid: 9741
+ components:
+ - type: Transform
+ pos: 105.5,33.5
+ parent: 1
+ - uid: 9746
+ components:
+ - type: Transform
+ pos: 107.5,30.5
+ parent: 1
+ - uid: 9751
+ components:
+ - type: Transform
+ pos: 107.5,33.5
+ parent: 1
+ - uid: 9798
+ components:
+ - type: Transform
+ pos: 107.5,27.5
+ parent: 1
+ - uid: 9809
+ components:
+ - type: Transform
+ pos: 112.5,43.5
+ parent: 1
+ - uid: 9810
+ components:
+ - type: Transform
+ pos: 112.5,41.5
+ parent: 1
+ - uid: 9811
+ components:
+ - type: Transform
+ pos: 112.5,40.5
+ parent: 1
+ - uid: 9817
+ components:
+ - type: Transform
+ pos: 112.5,36.5
+ parent: 1
+ - uid: 9818
+ components:
+ - type: Transform
+ pos: 112.5,35.5
+ parent: 1
+ - uid: 9824
+ components:
+ - type: Transform
+ pos: 103.5,18.5
+ parent: 1
+ - uid: 10457
+ components:
+ - type: Transform
+ pos: 36.5,118.5
+ parent: 1
+ - uid: 10524
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 41.5,79.5
+ parent: 1
+ - uid: 10980
+ components:
+ - type: Transform
+ pos: 103.5,21.5
+ parent: 1
+ - uid: 10982
+ components:
+ - type: Transform
+ pos: 103.5,22.5
+ parent: 1
+ - uid: 11101
+ components:
+ - type: Transform
+ pos: 105.5,34.5
+ parent: 1
+ - uid: 11364
+ components:
+ - type: Transform
+ pos: 145.5,84.5
+ parent: 1
+ - uid: 11935
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 43.5,120.5
+ parent: 1
+ - uid: 11938
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 35.5,121.5
+ parent: 1
+ - uid: 12152
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,112.5
+ parent: 1
+ - uid: 12155
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 157.5,112.5
+ parent: 1
+ - uid: 12227
+ components:
+ - type: Transform
+ pos: 113.5,34.5
+ parent: 1
+ - uid: 12501
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 45.5,121.5
+ parent: 1
+ - uid: 12732
+ components:
+ - type: Transform
+ pos: 64.5,41.5
+ parent: 1
+ - uid: 12733
+ components:
+ - type: Transform
+ pos: 114.5,28.5
+ parent: 1
+ - uid: 12734
+ components:
+ - type: Transform
+ pos: 114.5,27.5
+ parent: 1
+ - uid: 12736
+ components:
+ - type: Transform
+ pos: 114.5,24.5
+ parent: 1
+ - uid: 12737
+ components:
+ - type: Transform
+ pos: 114.5,22.5
+ parent: 1
+ - uid: 12740
+ components:
+ - type: Transform
+ pos: 115.5,34.5
+ parent: 1
+ - uid: 12741
+ components:
+ - type: Transform
+ pos: 114.5,32.5
+ parent: 1
+ - uid: 14498
+ components:
+ - type: Transform
+ pos: 164.5,132.5
+ parent: 1
+ - uid: 14499
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,130.5
+ parent: 1
+ - uid: 14503
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 136.5,141.5
+ parent: 1
+ - uid: 14632
+ components:
+ - type: Transform
+ pos: 33.5,118.5
+ parent: 1
+ - uid: 14728
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 106.5,169.5
+ parent: 1
+ - uid: 14752
+ components:
+ - type: Transform
+ pos: 51.5,125.5
+ parent: 1
+ - uid: 14754
+ components:
+ - type: Transform
+ pos: 51.5,124.5
+ parent: 1
+ - uid: 14755
+ components:
+ - type: Transform
+ pos: 51.5,121.5
+ parent: 1
+ - uid: 14824
+ components:
+ - type: Transform
+ pos: 53.5,127.5
+ parent: 1
+ - uid: 14827
+ components:
+ - type: Transform
+ pos: 53.5,119.5
+ parent: 1
+ - uid: 14837
+ components:
+ - type: Transform
+ pos: 51.5,127.5
+ parent: 1
+ - uid: 16232
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,147.5
+ parent: 1
+ - uid: 16233
+ components:
+ - type: Transform
+ pos: 55.5,145.5
+ parent: 1
+ - uid: 16234
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 55.5,132.5
+ parent: 1
+ - uid: 16811
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,70.5
+ parent: 1
+ - uid: 16861
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,60.5
+ parent: 1
+ - uid: 16922
+ components:
+ - type: Transform
+ pos: 97.5,167.5
+ parent: 1
+ - uid: 16931
+ components:
+ - type: Transform
+ pos: 102.5,165.5
+ parent: 1
+ - uid: 17638
+ components:
+ - type: Transform
+ pos: 145.5,83.5
+ parent: 1
+ - uid: 18189
+ components:
+ - type: Transform
+ pos: 145.5,78.5
+ parent: 1
+ - uid: 18479
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,83.5
+ parent: 1
+ - uid: 18566
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 95.5,58.5
+ parent: 1
+ - uid: 18904
+ components:
+ - type: Transform
+ pos: 73.5,155.5
+ parent: 1
+ - uid: 19045
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 20.5,111.5
+ parent: 1
+ - uid: 19238
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 161.5,144.5
+ parent: 1
+ - uid: 19262
+ components:
+ - type: Transform
+ pos: 44.5,122.5
+ parent: 1
+ - uid: 19480
+ components:
+ - type: Transform
+ pos: 20.5,113.5
+ parent: 1
+ - uid: 19509
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 155.5,145.5
+ parent: 1
+ - uid: 20163
+ components:
+ - type: Transform
+ pos: 55.5,127.5
+ parent: 1
+ - uid: 20164
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,154.5
+ parent: 1
+ - uid: 20320
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,153.5
+ parent: 1
+ - uid: 20751
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,152.5
+ parent: 1
+ - uid: 20849
+ components:
+ - type: Transform
+ pos: 149.5,84.5
+ parent: 1
+ - uid: 23083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 96.5,75.5
+ parent: 1
+ - uid: 23084
+ components:
+ - type: Transform
+ pos: 152.5,78.5
+ parent: 1
+ - uid: 23227
+ components:
+ - type: Transform
+ pos: 117.5,35.5
+ parent: 1
+ - uid: 23265
+ components:
+ - type: Transform
+ pos: 117.5,34.5
+ parent: 1
+ - uid: 23287
+ components:
+ - type: Transform
+ pos: 116.5,32.5
+ parent: 1
+ - uid: 23337
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 97.5,58.5
+ parent: 1
+ - uid: 23348
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 106.5,55.5
+ parent: 1
+ - uid: 23404
+ components:
+ - type: Transform
+ pos: 154.5,113.5
+ parent: 1
+ - uid: 23436
+ components:
+ - type: Transform
+ pos: 125.5,166.5
+ parent: 1
+ - uid: 23440
+ components:
+ - type: Transform
+ pos: 122.5,165.5
+ parent: 1
+ - uid: 23539
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 108.5,53.5
+ parent: 1
+ - uid: 23630
+ components:
+ - type: Transform
+ pos: 43.5,119.5
+ parent: 1
+ - uid: 23747
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 94.5,88.5
+ parent: 1
+ - uid: 23763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,84.5
+ parent: 1
+ - uid: 23937
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 114.5,46.5
+ parent: 1
+ - uid: 24066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 115.5,59.5
+ parent: 1
+ - uid: 24083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 117.5,70.5
+ parent: 1
+ - uid: 24132
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,89.5
+ parent: 1
+ - uid: 24201
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 120.5,46.5
+ parent: 1
+ - uid: 24205
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 123.5,87.5
+ parent: 1
+ - uid: 24229
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 124.5,95.5
+ parent: 1
+ - uid: 24231
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,87.5
+ parent: 1
+ - uid: 24232
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 126.5,104.5
+ parent: 1
+ - uid: 24508
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,69.5
+ parent: 1
+ - uid: 24756
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 115.5,71.5
+ parent: 1
+ - uid: 25115
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,114.5
+ parent: 1
+ - uid: 25116
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 140.5,114.5
+ parent: 1
+ - uid: 25117
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,113.5
+ parent: 1
+ - uid: 25119
+ components:
+ - type: Transform
+ pos: 154.5,81.5
+ parent: 1
+ - uid: 25141
+ components:
+ - type: Transform
+ pos: 154.5,79.5
+ parent: 1
+ - uid: 25220
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 144.5,113.5
+ parent: 1
+ - uid: 25442
+ components:
+ - type: Transform
+ pos: 154.5,77.5
+ parent: 1
+ - uid: 25567
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 145.5,116.5
+ parent: 1
+ - uid: 25852
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,55.5
+ parent: 1
+ - uid: 26560
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 147.5,116.5
+ parent: 1
+ - uid: 26671
+ components:
+ - type: Transform
+ pos: 154.5,43.5
+ parent: 1
+ - uid: 26675
+ components:
+ - type: Transform
+ pos: 155.5,77.5
+ parent: 1
+ - uid: 26898
+ components:
+ - type: Transform
+ pos: 156.5,45.5
+ parent: 1
+ - uid: 26925
+ components:
+ - type: Transform
+ pos: 121.5,27.5
+ parent: 1
+ - uid: 27428
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 98.5,68.5
+ parent: 1
+ - uid: 27582
+ components:
+ - type: Transform
+ pos: 116.5,43.5
+ parent: 1
+ - uid: 27584
+ components:
+ - type: Transform
+ pos: 117.5,32.5
+ parent: 1
+ - uid: 27640
+ components:
+ - type: Transform
+ pos: 120.5,28.5
+ parent: 1
+ - uid: 27641
+ components:
+ - type: Transform
+ pos: 121.5,25.5
+ parent: 1
+ - uid: 27653
+ components:
+ - type: Transform
+ pos: 121.5,42.5
+ parent: 1
+ - uid: 27654
+ components:
+ - type: Transform
+ pos: 117.5,24.5
+ parent: 1
+ - uid: 27655
+ components:
+ - type: Transform
+ pos: 116.5,24.5
+ parent: 1
+ - uid: 27659
+ components:
+ - type: Transform
+ pos: 121.5,29.5
+ parent: 1
+ - uid: 27660
+ components:
+ - type: Transform
+ pos: 120.5,43.5
+ parent: 1
+ - uid: 27662
+ components:
+ - type: Transform
+ pos: 121.5,34.5
+ parent: 1
+ - uid: 27954
+ components:
+ - type: Transform
+ pos: 157.5,77.5
+ parent: 1
+ - uid: 27955
+ components:
+ - type: Transform
+ pos: 157.5,73.5
+ parent: 1
+ - uid: 27975
+ components:
+ - type: Transform
+ pos: 121.5,39.5
+ parent: 1
+ - uid: 28153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 56.5,149.5
+ parent: 1
+ - uid: 28159
+ components:
+ - type: Transform
+ pos: 157.5,68.5
+ parent: 1
+ - uid: 28356
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 149.5,116.5
+ parent: 1
+ - uid: 28612
+ components:
+ - type: Transform
+ pos: 62.5,68.5
+ parent: 1
+ - uid: 28616
+ components:
+ - type: Transform
+ pos: 158.5,77.5
+ parent: 1
+ - uid: 28617
+ components:
+ - type: Transform
+ pos: 158.5,45.5
+ parent: 1
+ - uid: 28730
+ components:
+ - type: Transform
+ pos: 56.5,127.5
+ parent: 1
+ - uid: 28756
+ components:
+ - type: Transform
+ pos: 95.5,54.5
+ parent: 1
+ - uid: 28757
+ components:
+ - type: Transform
+ pos: 96.5,54.5
+ parent: 1
+ - uid: 28766
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 103.5,55.5
+ parent: 1
+ - uid: 28893
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 62.5,35.5
+ parent: 1
+ - uid: 28894
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,48.5
+ parent: 1
+ - uid: 28897
+ components:
+ - type: Transform
+ pos: 100.5,53.5
+ parent: 1
+ - uid: 28914
+ components:
+ - type: Transform
+ pos: 154.5,83.5
+ parent: 1
+ - uid: 28915
+ components:
+ - type: Transform
+ pos: 155.5,84.5
+ parent: 1
+ - uid: 28934
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,154.5
+ parent: 1
+ - uid: 28948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 92.5,150.5
+ parent: 1
+ - uid: 29162
+ components:
+ - type: Transform
+ pos: 122.5,40.5
+ parent: 1
+ - uid: 29164
+ components:
+ - type: Transform
+ pos: 117.5,42.5
+ parent: 1
+ - uid: 29171
+ components:
+ - type: Transform
+ pos: 56.5,125.5
+ parent: 1
+ - uid: 29172
+ components:
+ - type: Transform
+ pos: 117.5,40.5
+ parent: 1
+ - uid: 29174
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,153.5
+ parent: 1
+ - uid: 29189
+ components:
+ - type: Transform
+ pos: 122.5,34.5
+ parent: 1
+ - uid: 29239
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 150.5,144.5
+ parent: 1
+ - uid: 29329
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,129.5
+ parent: 1
+ - uid: 29865
+ components:
+ - type: Transform
+ pos: 64.5,45.5
+ parent: 1
+ - uid: 30333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,170.5
+ parent: 1
+ - uid: 30389
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,125.5
+ parent: 1
+ - uid: 30446
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,144.5
+ parent: 1
+ - uid: 30456
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 59.5,122.5
+ parent: 1
+ - uid: 30516
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 58.5,127.5
+ parent: 1
+ - uid: 30517
+ components:
+ - type: Transform
+ pos: 59.5,127.5
+ parent: 1
+ - uid: 30525
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 159.5,58.5
+ parent: 1
+ - uid: 30554
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 83.5,155.5
+ parent: 1
+ - uid: 30605
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,80.5
+ parent: 1
+ - uid: 30614
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 63.5,122.5
+ parent: 1
+ - uid: 30630
+ components:
+ - type: Transform
+ pos: 59.5,125.5
+ parent: 1
+ - uid: 30646
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,158.5
+ parent: 1
+ - uid: 30653
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,155.5
+ parent: 1
+ - uid: 30665
+ components:
+ - type: Transform
+ pos: 161.5,119.5
+ parent: 1
+ - uid: 30667
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 60.5,153.5
+ parent: 1
+ - uid: 30670
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 65.5,158.5
+ parent: 1
+ - uid: 30671
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,159.5
+ parent: 1
+ - uid: 30727
+ components:
+ - type: Transform
+ pos: 114.5,166.5
+ parent: 1
+ - uid: 30763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 72.5,159.5
+ parent: 1
+ - uid: 30791
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,77.5
+ parent: 1
+ - uid: 30836
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,157.5
+ parent: 1
+ - uid: 30989
+ components:
+ - type: Transform
+ pos: 125.5,40.5
+ parent: 1
+ - uid: 31028
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 84.5,157.5
+ parent: 1
+ - uid: 31056
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,161.5
+ parent: 1
+ - uid: 31146
+ components:
+ - type: Transform
+ pos: 115.5,21.5
+ parent: 1
+ - uid: 31156
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 86.5,160.5
+ parent: 1
+ - uid: 31678
+ components:
+ - type: Transform
+ pos: 159.5,77.5
+ parent: 1
+ - uid: 31758
+ components:
+ - type: Transform
+ pos: 159.5,65.5
+ parent: 1
+ - uid: 31784
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 154.5,129.5
+ parent: 1
+ - uid: 31785
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,144.5
+ parent: 1
+ - uid: 31786
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 155.5,116.5
+ parent: 1
+ - uid: 31787
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,129.5
+ parent: 1
+ - uid: 31788
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 158.5,144.5
+ parent: 1
+ - uid: 31789
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,141.5
+ parent: 1
+ - uid: 31790
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 160.5,126.5
+ parent: 1
+ - uid: 31792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,140.5
+ parent: 1
+ - uid: 31793
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,136.5
+ parent: 1
+ - uid: 31795
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 161.5,116.5
+ parent: 1
+ - uid: 31796
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 162.5,133.5
+ parent: 1
+ - uid: 31820
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 89.5,160.5
+ parent: 1
+ - uid: 31825
+ components:
+ - type: Transform
+ pos: 110.5,39.5
+ parent: 1
+ - uid: 31836
+ components:
+ - type: Transform
+ pos: 159.5,63.5
+ parent: 1
+ - uid: 31839
+ components:
+ - type: Transform
+ pos: 159.5,53.5
+ parent: 1
+ - uid: 31842
+ components:
+ - type: Transform
+ pos: 159.5,52.5
+ parent: 1
+ - uid: 31845
+ components:
+ - type: Transform
+ pos: 159.5,50.5
+ parent: 1
+ - uid: 31848
+ components:
+ - type: Transform
+ pos: 159.5,48.5
+ parent: 1
+ - uid: 31851
+ components:
+ - type: Transform
+ pos: 159.5,45.5
+ parent: 1
+ - uid: 31853
+ components:
+ - type: Transform
+ pos: 160.5,67.5
+ parent: 1
+ - uid: 31859
+ components:
+ - type: Transform
+ pos: 105.5,53.5
+ parent: 1
+ - uid: 31884
+ components:
+ - type: Transform
+ pos: 161.5,77.5
+ parent: 1
+ - uid: 31933
+ components:
+ - type: Transform
+ pos: 23.5,97.5
+ parent: 1
+ - uid: 31936
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 93.5,166.5
+ parent: 1
+ - uid: 32122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 94.5,170.5
+ parent: 1
+ - uid: 32169
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,171.5
+ parent: 1
+ - uid: 32202
+ components:
+ - type: Transform
+ pos: 101.5,170.5
+ parent: 1
+ - uid: 32408
+ components:
+ - type: Transform
+ pos: 114.5,43.5
+ parent: 1
+ - uid: 32558
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,160.5
+ parent: 1
+ - uid: 32585
+ components:
+ - type: Transform
+ pos: 126.5,151.5
+ parent: 1
+ - uid: 32586
+ components:
+ - type: Transform
+ pos: 127.5,149.5
+ parent: 1
+ - uid: 32588
+ components:
+ - type: Transform
+ pos: 131.5,149.5
+ parent: 1
+ - uid: 32589
+ components:
+ - type: Transform
+ pos: 56.5,122.5
+ parent: 1
+ - uid: 32590
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 59.5,156.5
+ parent: 1
+ - uid: 32592
+ components:
+ - type: Transform
+ pos: 101.5,172.5
+ parent: 1
+ - uid: 32593
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,165.5
+ parent: 1
+ - uid: 32601
+ components:
+ - type: Transform
+ pos: 126.5,154.5
+ parent: 1
+ - uid: 32935
+ components:
+ - type: Transform
+ pos: 78.5,156.5
+ parent: 1
+ - uid: 32949
+ components:
+ - type: Transform
+ pos: 26.5,81.5
+ parent: 1
+ - uid: 32980
+ components:
+ - type: Transform
+ pos: 145.5,88.5
+ parent: 1
+ - uid: 33274
+ components:
+ - type: Transform
+ pos: 100.5,22.5
+ parent: 1
+ - uid: 33842
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 153.5,87.5
+ parent: 1
+ - uid: 33981
+ components:
+ - type: Transform
+ pos: 161.5,72.5
+ parent: 1
+ - uid: 34107
+ components:
+ - type: Transform
+ pos: 150.5,78.5
+ parent: 1
+ - uid: 34109
+ components:
+ - type: Transform
+ pos: 148.5,79.5
+ parent: 1
+ - uid: 34112
+ components:
+ - type: Transform
+ pos: 148.5,82.5
+ parent: 1
+ - uid: 34113
+ components:
+ - type: Transform
+ pos: 148.5,83.5
+ parent: 1
+ - uid: 34125
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 107.5,166.5
+ parent: 1
+ - uid: 34169
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 36.5,121.5
+ parent: 1
+ - uid: 34192
+ components:
+ - type: Transform
+ pos: 154.5,85.5
+ parent: 1
+ - uid: 34264
+ components:
+ - type: Transform
+ pos: 160.5,62.5
+ parent: 1
+ - uid: 34378
+ components:
+ - type: Transform
+ pos: 142.5,82.5
+ parent: 1
+ - uid: 34504
+ components:
+ - type: Transform
+ pos: 158.5,44.5
+ parent: 1
+ - uid: 34532
+ components:
+ - type: Transform
+ pos: 162.5,45.5
+ parent: 1
+ - uid: 34719
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,108.5
+ parent: 1
+ - uid: 34723
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,170.5
+ parent: 1
+ - uid: 34753
+ components:
+ - type: Transform
+ pos: 124.5,159.5
+ parent: 1
+ - uid: 34756
+ components:
+ - type: Transform
+ pos: 122.5,159.5
+ parent: 1
+ - uid: 34968
+ components:
+ - type: Transform
+ pos: 150.5,146.5
+ parent: 1
+ - uid: 35127
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 121.5,167.5
+ parent: 1
+ - uid: 35147
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,98.5
+ parent: 1
+ - uid: 35149
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 105.5,171.5
+ parent: 1
+ - uid: 35155
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 30.5,96.5
+ parent: 1
+ - uid: 35165
+ components:
+ - type: Transform
+ pos: 45.5,125.5
+ parent: 1
+ - uid: 35167
+ components:
+ - type: Transform
+ pos: 57.5,135.5
+ parent: 1
+ - uid: 35200
+ components:
+ - type: Transform
+ pos: 62.5,158.5
+ parent: 1
+ - uid: 35202
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,144.5
+ parent: 1
+ - uid: 35203
+ components:
+ - type: Transform
+ pos: 80.5,157.5
+ parent: 1
+ - uid: 35219
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,85.5
+ parent: 1
+ - uid: 35256
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,90.5
+ parent: 1
+ - uid: 35265
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 23.5,92.5
+ parent: 1
+ - uid: 35517
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 57.5,131.5
+ parent: 1
+ - uid: 35570
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 135.5,142.5
+ parent: 1
+ - uid: 35575
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 138.5,139.5
+ parent: 1
+ - uid: 35577
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,136.5
+ parent: 1
+ - uid: 35579
+ components:
+ - type: Transform
+ pos: 50.5,121.5
+ parent: 1
+ - uid: 35657
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 141.5,88.5
+ parent: 1
+ - uid: 35658
+ components:
+ - type: Transform
+ pos: 141.5,90.5
+ parent: 1
+ - uid: 35662
+ components:
+ - type: Transform
+ pos: 58.5,149.5
+ parent: 1
+ - uid: 35663
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,126.5
+ parent: 1
+ - uid: 35686
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 92.5,163.5
+ parent: 1
+ - uid: 35718
+ components:
+ - type: Transform
+ pos: 102.5,33.5
+ parent: 1
+ - uid: 35833
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,167.5
+ parent: 1
+ - uid: 35835
+ components:
+ - type: Transform
+ pos: 111.5,166.5
+ parent: 1
+ - uid: 35953
+ components:
+ - type: Transform
+ pos: 95.5,167.5
+ parent: 1
+ - uid: 35966
+ components:
+ - type: Transform
+ pos: 57.5,138.5
+ parent: 1
+ - uid: 36116
+ components:
+ - type: Transform
+ pos: 107.5,34.5
+ parent: 1
+ - uid: 36128
+ components:
+ - type: Transform
+ pos: 51.5,123.5
+ parent: 1
+ - uid: 36442
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 141.5,122.5
+ parent: 1
+ - uid: 37030
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,162.5
+ parent: 1
+ - uid: 37133
+ components:
+ - type: Transform
+ pos: 164.5,135.5
+ parent: 1
+ - uid: 37208
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 138.5,86.5
+ parent: 1
+ - uid: 37218
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 146.5,78.5
+ parent: 1
+- proto: WardrobeAtmosphericsFilled
+ entities:
+ - uid: 16111
+ components:
+ - type: Transform
+ pos: 77.5,118.5
+ parent: 1
+- proto: WardrobeBotanistFilled
+ entities:
+ - uid: 26460
+ components:
+ - type: Transform
+ pos: 98.5,94.5
+ parent: 1
+- proto: WardrobeCargoFilled
+ entities:
+ - uid: 3699
+ components:
+ - type: Transform
+ pos: 154.5,100.5
+ parent: 1
+ - uid: 19540
+ components:
+ - type: Transform
+ pos: 156.5,100.5
+ parent: 1
+ - uid: 34127
+ components:
+ - type: Transform
+ pos: 155.5,100.5
+ parent: 1
+- proto: WardrobeChapelFilled
+ entities:
+ - uid: 26938
+ components:
+ - type: Transform
+ pos: 71.5,69.5
+ parent: 1
+- proto: WardrobeChemistryFilled
+ entities:
+ - uid: 5695
+ components:
+ - type: Transform
+ pos: 89.5,97.5
+ parent: 1
+- proto: WardrobeEngineeringFilled
+ entities:
+ - uid: 16080
+ components:
+ - type: Transform
+ pos: 136.5,131.5
+ parent: 1
+- proto: WardrobeMedicalDoctorFilled
+ entities:
+ - uid: 27622
+ components:
+ - type: Transform
+ pos: 70.5,83.5
+ parent: 1
+- proto: WardrobePrisonFilled
+ entities:
+ - uid: 22710
+ components:
+ - type: Transform
+ pos: 122.5,67.5
+ parent: 1
+ - uid: 22711
+ components:
+ - type: Transform
+ pos: 122.5,70.5
+ parent: 1
+ - uid: 22712
+ components:
+ - type: Transform
+ pos: 122.5,73.5
+ parent: 1
+ - uid: 23029
+ components:
+ - type: Transform
+ pos: 136.5,45.5
+ parent: 1
+ - uid: 23030
+ components:
+ - type: Transform
+ pos: 136.5,48.5
+ parent: 1
+ - uid: 23031
+ components:
+ - type: Transform
+ pos: 136.5,51.5
+ parent: 1
+ - uid: 25924
+ components:
+ - type: Transform
+ pos: 122.5,62.5
+ parent: 1
+- proto: WardrobeRoboticsFilled
+ entities:
+ - uid: 20958
+ components:
+ - type: Transform
+ pos: 59.5,97.5
+ parent: 1
+- proto: WardrobeSalvageFilled
+ entities:
+ - uid: 19481
+ components:
+ - type: Transform
+ pos: 144.5,91.5
+ parent: 1
+- proto: WardrobeScienceFilled
+ entities:
+ - uid: 20832
+ components:
+ - type: Transform
+ pos: 24.5,105.5
+ parent: 1
+- proto: WardrobeSecurityFilled
+ entities:
+ - uid: 22665
+ components:
+ - type: Transform
+ pos: 153.5,49.5
+ parent: 1
+- proto: WarningCO2
+ entities:
+ - uid: 30669
+ components:
+ - type: Transform
+ pos: 62.5,143.5
+ parent: 1
+- proto: WarningN2
+ entities:
+ - uid: 30627
+ components:
+ - type: Transform
+ pos: 63.5,131.5
+ parent: 1
+- proto: WarningO2
+ entities:
+ - uid: 30686
+ components:
+ - type: Transform
+ pos: 64.5,127.5
+ parent: 1
+- proto: WarningPlasma
+ entities:
+ - uid: 30628
+ components:
+ - type: Transform
+ pos: 61.5,139.5
+ parent: 1
+- proto: WarningTritium
+ entities:
+ - uid: 34029
+ components:
+ - type: Transform
+ pos: 63.5,147.5
+ parent: 1
+- proto: WarningWaste
+ entities:
+ - uid: 30678
+ components:
+ - type: Transform
+ pos: 62.5,135.5
+ parent: 1
+ - uid: 32583
+ components:
+ - type: Transform
+ pos: 64.5,151.5
+ parent: 1
+- proto: WaterCooler
+ entities:
+ - uid: 1648
+ components:
+ - type: Transform
+ pos: 50.5,51.5
+ parent: 1
+ - uid: 3865
+ components:
+ - type: Transform
+ pos: 131.5,94.5
+ parent: 1
+ - uid: 19414
+ components:
+ - type: Transform
+ pos: 153.5,102.5
+ parent: 1
+ - uid: 19868
+ components:
+ - type: Transform
+ pos: 144.5,95.5
+ parent: 1
+ - uid: 20820
+ components:
+ - type: Transform
+ pos: 28.5,99.5
+ parent: 1
+ - uid: 25549
+ components:
+ - type: Transform
+ pos: 102.5,48.5
+ parent: 1
+ - uid: 26665
+ components:
+ - type: Transform
+ pos: 97.5,90.5
+ parent: 1
+ - uid: 27033
+ components:
+ - type: Transform
+ pos: 97.5,48.5
+ parent: 1
+ - uid: 27065
+ components:
+ - type: Transform
+ pos: 73.5,67.5
+ parent: 1
+ - uid: 27258
+ components:
+ - type: Transform
+ pos: 144.5,53.5
+ parent: 1
+ - uid: 35188
+ components:
+ - type: Transform
+ pos: 120.5,167.5
+ parent: 1
+ - uid: 35408
+ components:
+ - type: Transform
+ pos: 100.5,172.5
+ parent: 1
+ - uid: 36127
+ components:
+ - type: Transform
+ pos: 31.5,123.5
+ parent: 1
+- proto: WaterTank
+ entities:
+ - uid: 18387
+ components:
+ - type: Transform
+ pos: 139.5,94.5
+ parent: 1
+- proto: WaterTankFull
+ entities:
+ - uid: 156
+ components:
+ - type: Transform
+ pos: 97.5,62.5
+ parent: 1
+ - uid: 12017
+ components:
+ - type: Transform
+ pos: 95.5,80.5
+ parent: 1
+ - uid: 12398
+ components:
+ - type: Transform
+ pos: 88.5,48.5
+ parent: 1
+ - uid: 13648
+ components:
+ - type: Transform
+ pos: 66.5,67.5
+ parent: 1
+ - uid: 18309
+ components:
+ - type: Transform
+ pos: 63.5,19.5
+ parent: 1
+ - uid: 19367
+ components:
+ - type: Transform
+ pos: 37.5,97.5
+ parent: 1
+ - uid: 25125
+ components:
+ - type: Transform
+ pos: 160.5,112.5
+ parent: 1
+ - uid: 25314
+ components:
+ - type: Transform
+ pos: 86.5,37.5
+ parent: 1
+ - uid: 25930
+ components:
+ - type: Transform
+ pos: 64.5,44.5
+ parent: 1
+ - uid: 28213
+ components:
+ - type: Transform
+ pos: 64.5,116.5
+ parent: 1
+ - uid: 29077
+ components:
+ - type: Transform
+ pos: 121.5,93.5
+ parent: 1
+ - uid: 29344
+ components:
+ - type: Transform
+ pos: 114.5,44.5
+ parent: 1
+ - uid: 32023
+ components:
+ - type: Transform
+ pos: 146.5,130.5
+ parent: 1
+ - uid: 34023
+ components:
+ - type: Transform
+ pos: 108.5,33.5
+ parent: 1
+ - uid: 34660
+ components:
+ - type: Transform
+ pos: 157.5,49.5
+ parent: 1
+ - uid: 35168
+ components:
+ - type: Transform
+ pos: 115.5,167.5
+ parent: 1
+ - uid: 35434
+ components:
+ - type: Transform
+ pos: 93.5,165.5
+ parent: 1
+ - uid: 35695
+ components:
+ - type: Transform
+ pos: 30.5,84.5
+ parent: 1
+ - uid: 35950
+ components:
+ - type: Transform
+ pos: 153.5,145.5
+ parent: 1
+ - uid: 36136
+ components:
+ - type: Transform
+ pos: 23.5,118.5
+ parent: 1
+ - uid: 36169
+ components:
+ - type: Transform
+ pos: 52.5,112.5
+ parent: 1
+- proto: WaterTankHighCapacity
+ entities:
+ - uid: 26459
+ components:
+ - type: Transform
+ pos: 101.5,96.5
+ parent: 1
+ - uid: 29592
+ components:
+ - type: Transform
+ pos: 159.5,122.5
+ parent: 1
+- proto: WaterVaporCanister
+ entities:
+ - uid: 4668
+ components:
+ - type: Transform
+ pos: 124.5,85.5
+ parent: 1
+ - uid: 15971
+ components:
+ - type: Transform
+ pos: 85.5,119.5
+ parent: 1
+ - uid: 20491
+ components:
+ - type: Transform
+ pos: 48.5,101.5
+ parent: 1
+ - uid: 23448
+ components:
+ - type: Transform
+ pos: 65.5,135.5
+ parent: 1
+- proto: WeaponCapacitorRecharger
+ entities:
+ - uid: 1643
+ components:
+ - type: Transform
+ pos: 40.5,53.5
+ parent: 1
+ - uid: 5912
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 153.5,153.5
+ parent: 1
+ - uid: 22695
+ components:
+ - type: Transform
+ pos: 151.5,66.5
+ parent: 1
+ - uid: 22725
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 135.5,71.5
+ parent: 1
+ - uid: 22726
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 122.5,56.5
+ parent: 1
+ - uid: 22728
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 142.5,51.5
+ parent: 1
+ - uid: 22737
+ components:
+ - type: Transform
+ pos: 135.5,62.5
+ parent: 1
+ - uid: 22741
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 135.5,66.5
+ parent: 1
+ - uid: 22963
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 141.5,67.5
+ parent: 1
+ - uid: 23129
+ components:
+ - type: Transform
+ pos: 140.5,73.5
+ parent: 1
+ - uid: 24427
+ components:
+ - type: Transform
+ pos: 152.5,58.5
+ parent: 1
+ - uid: 32414
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,112.5
+ parent: 1
+ - uid: 37365
+ components:
+ - type: Transform
+ pos: 131.5,61.5
+ parent: 1
+- proto: WeaponDisabler
+ entities:
+ - uid: 22693
+ components:
+ - type: Transform
+ rot: -251.32741228718288 rad
+ pos: 155.4364,58.18435
+ parent: 1
+- proto: WeaponDisablerPractice
+ entities:
+ - uid: 22694
+ components:
+ - type: Transform
+ pos: 154.4635,66.52208
+ parent: 1
+- proto: WeaponLaserCarbinePractice
+ entities:
+ - uid: 5863
+ components:
+ - type: Transform
+ rot: -131.94689145077115 rad
+ pos: 151.8403,69.57161
+ parent: 1
+- proto: WeaponRifleFoam
+ entities:
+ - uid: 26738
+ components:
+ - type: Transform
+ rot: -163.36281798666897 rad
+ pos: 104.70838,64.387856
+ parent: 1
+- proto: WeaponTurretSyndicateBroken
+ entities:
+ - uid: 12957
+ components:
+ - type: Transform
+ pos: 47.5,17.5
+ parent: 1
+ - uid: 12959
+ components:
+ - type: Transform
+ pos: 55.5,19.5
+ parent: 1
+ - uid: 12960
+ components:
+ - type: Transform
+ pos: 55.5,29.5
+ parent: 1
+ - uid: 12961
+ components:
+ - type: Transform
+ pos: 47.5,31.5
+ parent: 1
+ - uid: 12962
+ components:
+ - type: Transform
+ pos: 43.5,28.5
+ parent: 1
+ - uid: 12963
+ components:
+ - type: Transform
+ pos: 43.5,20.5
+ parent: 1
+ - uid: 23940
+ components:
+ - type: Transform
+ pos: 50.5,45.5
+ parent: 1
+ - uid: 33543
+ components:
+ - type: Transform
+ pos: 123.5,31.5
+ parent: 1
+- proto: WeaponWaterPistol
+ entities:
+ - uid: 27394
+ components:
+ - type: Transform
+ pos: 124.47113,86.63725
+ parent: 1
+- proto: WeedSpray
+ entities:
+ - uid: 2602
+ components:
+ - type: Transform
+ rot: -119.380520836412 rad
+ pos: 98.7172,96.58852
+ parent: 1
+- proto: Welder
+ entities:
+ - uid: 20955
+ components:
+ - type: Transform
+ rot: -62.83185307179591 rad
+ pos: 63.384483,91.585014
+ parent: 1
+ - uid: 35865
+ components:
+ - type: Transform
+ pos: 52.573807,135.59659
+ parent: 1
+- proto: WelderIndustrial
+ entities:
+ - uid: 16205
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 113.48779,162.48056
+ parent: 1
+- proto: WelderIndustrialAdvanced
+ entities:
+ - uid: 16204
+ components:
+ - type: Transform
+ rot: -144.51326206513028 rad
+ pos: 68.427216,123.49962
+ parent: 1
+- proto: WeldingFuelTankFull
+ entities:
+ - uid: 205
+ components:
+ - type: Transform
+ pos: 60.5,121.5
+ parent: 1
+ - uid: 557
+ components:
+ - type: Transform
+ pos: 92.5,99.5
+ parent: 1
+ - uid: 6564
+ components:
+ - type: Transform
+ pos: 86.5,82.5
+ parent: 1
+ - uid: 8010
+ components:
+ - type: Transform
+ pos: 70.5,47.5
+ parent: 1
+ - uid: 12574
+ components:
+ - type: Transform
+ pos: 158.5,52.5
+ parent: 1
+ - uid: 13621
+ components:
+ - type: Transform
+ pos: 156.5,145.5
+ parent: 1
+ - uid: 13679
+ components:
+ - type: Transform
+ pos: 60.5,67.5
+ parent: 1
+ - uid: 16091
+ components:
+ - type: Transform
+ pos: 120.5,145.5
+ parent: 1
+ - uid: 16117
+ components:
+ - type: Transform
+ pos: 120.5,129.5
+ parent: 1
+ - uid: 16119
+ components:
+ - type: Transform
+ pos: 104.5,158.5
+ parent: 1
+ - uid: 16120
+ components:
+ - type: Transform
+ pos: 114.5,152.5
+ parent: 1
+ - uid: 16409
+ components:
+ - type: Transform
+ pos: 98.5,122.5
+ parent: 1
+ - uid: 16590
+ components:
+ - type: Transform
+ pos: 96.5,127.5
+ parent: 1
+ - uid: 18386
+ components:
+ - type: Transform
+ pos: 139.5,93.5
+ parent: 1
+ - uid: 19050
+ components:
+ - type: Transform
+ pos: 20.5,76.5
+ parent: 1
+ - uid: 20953
+ components:
+ - type: Transform
+ pos: 59.5,92.5
+ parent: 1
+ - uid: 27220
+ components:
+ - type: Transform
+ pos: 86.5,60.5
+ parent: 1
+ - uid: 30451
+ components:
+ - type: Transform
+ pos: 139.5,125.5
+ parent: 1
+ - uid: 33502
+ components:
+ - type: Transform
+ pos: 116.5,19.5
+ parent: 1
+ - uid: 33895
+ components:
+ - type: Transform
+ pos: 125.5,92.5
+ parent: 1
+ - uid: 34019
+ components:
+ - type: Transform
+ pos: 63.5,25.5
+ parent: 1
+ - uid: 35441
+ components:
+ - type: Transform
+ pos: 91.5,125.5
+ parent: 1
+ - uid: 35944
+ components:
+ - type: Transform
+ pos: 122.5,43.5
+ parent: 1
+ - uid: 36106
+ components:
+ - type: Transform
+ pos: 95.5,34.5
+ parent: 1
+ - uid: 36137
+ components:
+ - type: Transform
+ pos: 23.5,117.5
+ parent: 1
+ - uid: 36168
+ components:
+ - type: Transform
+ pos: 53.5,112.5
+ parent: 1
+ - uid: 36447
+ components:
+ - type: Transform
+ pos: 29.5,96.5
+ parent: 1
+ - uid: 37034
+ components:
+ - type: Transform
+ pos: 95.5,168.5
+ parent: 1
+- proto: WetFloorSign
+ entities:
+ - uid: 25917
+ components:
+ - type: Transform
+ pos: 159.68712,121.791306
+ parent: 1
+ - uid: 26881
+ components:
+ - type: Transform
+ pos: 159.34763,121.887054
+ parent: 1
+ - uid: 29582
+ components:
+ - type: Transform
+ pos: 159.41005,121.415115
+ parent: 1
+- proto: Windoor
+ entities:
+ - uid: 765
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 90.5,170.5
+ parent: 1
+ - uid: 1397
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,113.5
+ parent: 1
+ - uid: 4075
+ components:
+ - type: MetaData
+ name: white cell windoor
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,52.5
+ parent: 1
+ - uid: 4077
+ components:
+ - type: MetaData
+ name: grey cell windoor
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,49.5
+ parent: 1
+ - uid: 4079
+ components:
+ - type: MetaData
+ name: black cell windoor
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,46.5
+ parent: 1
+ - uid: 6487
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,172.5
+ parent: 1
+ - uid: 10330
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 139.5,142.5
+ parent: 1
+ - uid: 10333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 140.5,142.5
+ parent: 1
+ - uid: 13668
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 61.5,60.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 2
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13667:
+ - DoorStatus: Close
+ - uid: 20914
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 89.5,101.5
+ parent: 1
+ - uid: 22637
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 132.5,75.5
+ parent: 1
+ - uid: 22638
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 133.5,75.5
+ parent: 1
+ - uid: 22639
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 142.5,75.5
+ parent: 1
+ - uid: 22640
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 143.5,75.5
+ parent: 1
+ - uid: 23405
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,54.5
+ parent: 1
+ - uid: 25515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - uid: 25752
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 93.5,101.5
+ parent: 1
+ - uid: 26610
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,91.5
+ parent: 1
+ - uid: 26618
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,93.5
+ parent: 1
+ - uid: 26623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 111.5,90.5
+ parent: 1
+ - uid: 26624
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 109.5,94.5
+ parent: 1
+ - uid: 29099
+ components:
+ - type: Transform
+ pos: 66.5,69.5
+ parent: 1
+ - uid: 30454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 22.5,110.5
+ parent: 1
+ - uid: 30568
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,111.5
+ parent: 1
+ - uid: 30722
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 66.5,80.5
+ parent: 1
+ - uid: 30850
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 67.5,80.5
+ parent: 1
+ - uid: 33281
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 100.5,23.5
+ parent: 1
+ - uid: 34531
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 162.5,44.5
+ parent: 1
+ - uid: 34635
+ components:
+ - type: Transform
+ pos: 161.5,63.5
+ parent: 1
+ - uid: 35331
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,159.5
+ parent: 1
+ - uid: 35332
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,159.5
+ parent: 1
+ - uid: 35333
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 81.5,159.5
+ parent: 1
+ - uid: 35334
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 83.5,159.5
+ parent: 1
+ - uid: 35995
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,97.5
+ parent: 1
+- proto: WindoorBarLocked
+ entities:
+ - uid: 35136
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 107.5,171.5
+ parent: 1
+- proto: WindoorCargoLocked
+ entities:
+ - uid: 19314
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,102.5
+ parent: 1
+ - uid: 19316
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 137.5,103.5
+ parent: 1
+ - uid: 19318
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 138.5,99.5
+ parent: 1
+- proto: WindoorHydroponicsLocked
+ entities:
+ - uid: 26468
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,101.5
+ parent: 1
+ - uid: 26469
+ components:
+ - type: Transform
+ pos: 99.5,105.5
+ parent: 1
+ - uid: 26470
+ components:
+ - type: Transform
+ pos: 100.5,105.5
+ parent: 1
+ - uid: 27852
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 102.5,97.5
+ parent: 1
+- proto: WindoorKitchenLocked
+ entities:
+ - uid: 4683
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,100.5
+ parent: 1
+ - uid: 20754
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 114.5,97.5
+ parent: 1
+ - uid: 26567
+ components:
+ - type: Transform
+ pos: 116.5,105.5
+ parent: 1
+ - uid: 26568
+ components:
+ - type: Transform
+ pos: 117.5,105.5
+ parent: 1
+ - uid: 35549
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 125.5,99.5
+ parent: 1
+- proto: WindoorSecureArmoryLocked
+ entities:
+ - uid: 3541
+ components:
+ - type: Transform
+ pos: 133.5,75.5
+ parent: 1
+ - uid: 3542
+ components:
+ - type: Transform
+ pos: 132.5,75.5
+ parent: 1
+ - uid: 12420
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 131.5,61.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 26866:
+ - DoorStatus: DoorBolt
+ - uid: 22782
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,65.5
+ parent: 1
+ - uid: 22789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 130.5,63.5
+ parent: 1
+- proto: WindoorSecureAtmosphericsLocked
+ entities:
+ - uid: 16015
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 75.5,115.5
+ parent: 1
+ - uid: 16016
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,115.5
+ parent: 1
+- proto: WindoorSecureChemistryLocked
+ entities:
+ - uid: 5477
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,101.5
+ parent: 1
+ - uid: 5937
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 85.5,96.5
+ parent: 1
+ - uid: 18184
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,107.5
+ parent: 1
+ - uid: 18185
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,108.5
+ parent: 1
+ - uid: 18186
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 84.5,109.5
+ parent: 1
+- proto: WindoorSecureCommandLocked
+ entities:
+ - uid: 1191
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,37.5
+ parent: 1
+ - uid: 1265
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 44.5,24.5
+ parent: 1
+ - uid: 13500
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 51.5,41.5
+ parent: 1
+- proto: WindoorSecureEngineeringLocked
+ entities:
+ - uid: 16081
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 116.5,122.5
+ parent: 1
+ - uid: 16082
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 115.5,122.5
+ parent: 1
+- proto: WindoorSecureHeadOfPersonnelLocked
+ entities:
+ - uid: 13667
+ components:
+ - type: Transform
+ pos: 61.5,60.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 13668:
+ - DoorStatus: Close
+- proto: WindoorSecureJanitorLocked
+ entities:
+ - uid: 30036
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 157.5,119.5
+ parent: 1
+ - uid: 30079
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 158.5,119.5
+ parent: 1
+- proto: WindoorSecureMedicalLocked
+ entities:
+ - uid: 17734
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,103.5
+ parent: 1
+ - uid: 17735
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,104.5
+ parent: 1
+ - uid: 28727
+ components:
+ - type: Transform
+ pos: 118.5,52.5
+ parent: 1
+ - uid: 28728
+ components:
+ - type: Transform
+ pos: 117.5,52.5
+ parent: 1
+ - uid: 32120
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,80.5
+ parent: 1
+- proto: WindoorSecureSalvageLocked
+ entities:
+ - uid: 21678
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 148.5,96.5
+ parent: 1
+ - uid: 23245
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 149.5,96.5
+ parent: 1
+- proto: WindoorSecureScienceLocked
+ entities:
+ - uid: 7810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,90.5
+ parent: 1
+ - uid: 20803
+ components:
+ - type: Transform
+ pos: 38.5,111.5
+ parent: 1
+ - uid: 20804
+ components:
+ - type: Transform
+ pos: 39.5,111.5
+ parent: 1
+ - uid: 20805
+ components:
+ - type: Transform
+ pos: 40.5,111.5
+ parent: 1
+ - uid: 20806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,108.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20807:
+ - DoorStatus: DoorBolt
+ - uid: 20807
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,108.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20806:
+ - DoorStatus: DoorBolt
+ - uid: 20810
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,116.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20813:
+ - DoorStatus: DoorBolt
+ - uid: 20811
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 29.5,112.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20812:
+ - DoorStatus: DoorBolt
+ - uid: 20812
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,112.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20811:
+ - DoorStatus: DoorBolt
+ - uid: 20813
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 29.5,116.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 3
+ - type: DeviceLinkSource
+ linkedPorts:
+ 20810:
+ - DoorStatus: DoorBolt
+ - uid: 20856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,91.5
+ parent: 1
+ - uid: 20857
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 50.5,92.5
+ parent: 1
+ - uid: 24418
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,89.5
+ parent: 1
+ - uid: 29092
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 57.5,91.5
+ parent: 1
+ - uid: 29093
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,102.5
+ parent: 1
+ - uid: 29123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,101.5
+ parent: 1
+- proto: WindoorSecureSecurityLawyerLocked
+ entities:
+ - uid: 2611
+ components:
+ - type: Transform
+ pos: 99.5,42.5
+ parent: 1
+ - uid: 3064
+ components:
+ - type: Transform
+ pos: 90.5,42.5
+ parent: 1
+- proto: WindoorSecureSecurityLocked
+ entities:
+ - uid: 4068
+ components:
+ - type: Transform
+ pos: 142.5,75.5
+ parent: 1
+ - uid: 4070
+ components:
+ - type: Transform
+ pos: 143.5,75.5
+ parent: 1
+ - uid: 5236
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 151.5,153.5
+ parent: 1
+ - uid: 19739
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,114.5
+ parent: 1
+ - uid: 22833
+ components:
+ - type: MetaData
+ name: cell 1 secure windoor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,74.5
+ parent: 1
+ - uid: 22834
+ components:
+ - type: MetaData
+ name: cell 2 secure windoor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,71.5
+ parent: 1
+ - uid: 22835
+ components:
+ - type: MetaData
+ name: cell 3 secure windoor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,68.5
+ parent: 1
+ - uid: 22836
+ components:
+ - type: MetaData
+ name: cell 4 secure windoor
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,65.5
+ parent: 1
+ - uid: 22841
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,74.5
+ parent: 1
+ - uid: 22842
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 140.5,73.5
+ parent: 1
+ - uid: 25536
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 90.5,115.5
+ parent: 1
+ - uid: 26866
+ components:
+ - type: Transform
+ pos: 131.5,61.5
+ parent: 1
+ - type: DeviceLinkSink
+ invokeCounter: 1
+ - type: DeviceLinkSource
+ linkedPorts:
+ 12420:
+ - DoorStatus: DoorBolt
+- proto: Window
+ entities:
+ - uid: 362
+ components:
+ - type: Transform
+ pos: 48.5,115.5
+ parent: 1
+ - uid: 382
+ components:
+ - type: Transform
+ pos: 47.5,115.5
+ parent: 1
+ - uid: 383
+ components:
+ - type: Transform
+ pos: 39.5,98.5
+ parent: 1
+ - uid: 384
+ components:
+ - type: Transform
+ pos: 46.5,116.5
+ parent: 1
+ - uid: 426
+ components:
+ - type: Transform
+ pos: 46.5,117.5
+ parent: 1
+ - uid: 427
+ components:
+ - type: Transform
+ pos: 40.5,98.5
+ parent: 1
+ - uid: 428
+ components:
+ - type: Transform
+ pos: 41.5,98.5
+ parent: 1
+ - uid: 429
+ components:
+ - type: Transform
+ pos: 41.5,97.5
+ parent: 1
+ - uid: 430
+ components:
+ - type: Transform
+ pos: 41.5,96.5
+ parent: 1
+ - uid: 452
+ components:
+ - type: Transform
+ pos: 50.5,52.5
+ parent: 1
+ - uid: 458
+ components:
+ - type: Transform
+ pos: 40.5,116.5
+ parent: 1
+ - uid: 459
+ components:
+ - type: Transform
+ pos: 40.5,117.5
+ parent: 1
+ - uid: 473
+ components:
+ - type: Transform
+ pos: 39.5,115.5
+ parent: 1
+ - uid: 474
+ components:
+ - type: Transform
+ pos: 38.5,115.5
+ parent: 1
+ - uid: 475
+ components:
+ - type: Transform
+ pos: 54.5,93.5
+ parent: 1
+ - uid: 476
+ components:
+ - type: Transform
+ pos: 58.5,93.5
+ parent: 1
+ - uid: 480
+ components:
+ - type: Transform
+ pos: 58.5,94.5
+ parent: 1
+ - uid: 482
+ components:
+ - type: Transform
+ pos: 50.5,89.5
+ parent: 1
+ - uid: 484
+ components:
+ - type: Transform
+ pos: 54.5,90.5
+ parent: 1
+ - uid: 485
+ components:
+ - type: Transform
+ pos: 54.5,91.5
+ parent: 1
+ - uid: 487
+ components:
+ - type: Transform
+ pos: 54.5,92.5
+ parent: 1
+ - uid: 490
+ components:
+ - type: Transform
+ pos: 48.5,94.5
+ parent: 1
+ - uid: 512
+ components:
+ - type: Transform
+ pos: 50.5,90.5
+ parent: 1
+ - uid: 624
+ components:
+ - type: Transform
+ pos: 50.5,93.5
+ parent: 1
+ - uid: 650
+ components:
+ - type: Transform
+ pos: 150.5,140.5
+ parent: 1
+ - uid: 848
+ components:
+ - type: Transform
+ pos: 133.5,79.5
+ parent: 1
+ - uid: 1186
+ components:
+ - type: Transform
+ pos: 105.5,43.5
+ parent: 1
+ - uid: 1343
+ components:
+ - type: Transform
+ pos: 145.5,126.5
+ parent: 1
+ - uid: 1848
+ components:
+ - type: Transform
+ pos: 65.5,61.5
+ parent: 1
+ - uid: 2088
+ components:
+ - type: Transform
+ pos: 69.5,52.5
+ parent: 1
+ - uid: 2089
+ components:
+ - type: Transform
+ pos: 69.5,55.5
+ parent: 1
+ - uid: 2091
+ components:
+ - type: Transform
+ pos: 69.5,58.5
+ parent: 1
+ - uid: 2092
+ components:
+ - type: Transform
+ pos: 69.5,57.5
+ parent: 1
+ - uid: 2093
+ components:
+ - type: Transform
+ pos: 69.5,54.5
+ parent: 1
+ - uid: 2185
+ components:
+ - type: Transform
+ pos: 121.5,30.5
+ parent: 1
+ - uid: 2322
+ components:
+ - type: Transform
+ pos: 69.5,60.5
+ parent: 1
+ - uid: 2346
+ components:
+ - type: Transform
+ pos: 69.5,53.5
+ parent: 1
+ - uid: 2348
+ components:
+ - type: Transform
+ pos: 69.5,59.5
+ parent: 1
+ - uid: 2564
+ components:
+ - type: Transform
+ pos: 76.5,89.5
+ parent: 1
+ - uid: 2565
+ components:
+ - type: Transform
+ pos: 76.5,88.5
+ parent: 1
+ - uid: 2595
+ components:
+ - type: Transform
+ pos: 60.5,105.5
+ parent: 1
+ - uid: 2597
+ components:
+ - type: Transform
+ pos: 62.5,105.5
+ parent: 1
+ - uid: 2599
+ components:
+ - type: Transform
+ pos: 61.5,105.5
+ parent: 1
+ - uid: 2639
+ components:
+ - type: Transform
+ pos: 75.5,88.5
+ parent: 1
+ - uid: 2640
+ components:
+ - type: Transform
+ pos: 74.5,88.5
+ parent: 1
+ - uid: 2671
+ components:
+ - type: Transform
+ pos: 73.5,89.5
+ parent: 1
+ - uid: 2672
+ components:
+ - type: Transform
+ pos: 73.5,88.5
+ parent: 1
+ - uid: 2673
+ components:
+ - type: Transform
+ pos: 79.5,85.5
+ parent: 1
+ - uid: 2674
+ components:
+ - type: Transform
+ pos: 80.5,85.5
+ parent: 1
+ - uid: 2676
+ components:
+ - type: Transform
+ pos: 81.5,85.5
+ parent: 1
+ - uid: 3130
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,60.5
+ parent: 1
+ - uid: 3153
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 68.5,158.5
+ parent: 1
+ - uid: 4281
+ components:
+ - type: Transform
+ pos: 63.5,61.5
+ parent: 1
+ - uid: 4650
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 119.5,52.5
+ parent: 1
+ - uid: 4749
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 116.5,52.5
+ parent: 1
+ - uid: 4766
+ components:
+ - type: Transform
+ pos: 141.5,97.5
+ parent: 1
+ - uid: 4831
+ components:
+ - type: Transform
+ pos: 79.5,66.5
+ parent: 1
+ - uid: 4878
+ components:
+ - type: Transform
+ pos: 80.5,66.5
+ parent: 1
+ - uid: 4972
+ components:
+ - type: Transform
+ pos: 81.5,66.5
+ parent: 1
+ - uid: 4974
+ components:
+ - type: Transform
+ pos: 82.5,66.5
+ parent: 1
+ - uid: 4975
+ components:
+ - type: Transform
+ pos: 83.5,66.5
+ parent: 1
+ - uid: 4990
+ components:
+ - type: Transform
+ pos: 142.5,151.5
+ parent: 1
+ - uid: 5045
+ components:
+ - type: Transform
+ pos: 87.5,62.5
+ parent: 1
+ - uid: 5102
+ components:
+ - type: Transform
+ pos: 147.5,122.5
+ parent: 1
+ - uid: 5110
+ components:
+ - type: Transform
+ pos: 121.5,36.5
+ parent: 1
+ - uid: 5111
+ components:
+ - type: Transform
+ pos: 121.5,37.5
+ parent: 1
+ - uid: 5132
+ components:
+ - type: Transform
+ pos: 147.5,121.5
+ parent: 1
+ - uid: 5143
+ components:
+ - type: Transform
+ pos: 84.5,66.5
+ parent: 1
+ - uid: 5146
+ components:
+ - type: Transform
+ pos: 146.5,120.5
+ parent: 1
+ - uid: 5163
+ components:
+ - type: Transform
+ pos: 147.5,120.5
+ parent: 1
+ - uid: 5166
+ components:
+ - type: Transform
+ pos: 85.5,68.5
+ parent: 1
+ - uid: 5204
+ components:
+ - type: Transform
+ pos: 85.5,67.5
+ parent: 1
+ - uid: 5207
+ components:
+ - type: Transform
+ pos: 85.5,66.5
+ parent: 1
+ - uid: 5220
+ components:
+ - type: Transform
+ pos: 91.5,66.5
+ parent: 1
+ - uid: 5331
+ components:
+ - type: Transform
+ pos: 90.5,66.5
+ parent: 1
+ - uid: 5435
+ components:
+ - type: Transform
+ pos: 37.5,56.5
+ parent: 1
+ - uid: 5436
+ components:
+ - type: Transform
+ pos: 37.5,54.5
+ parent: 1
+ - uid: 5440
+ components:
+ - type: Transform
+ pos: 92.5,62.5
+ parent: 1
+ - uid: 5441
+ components:
+ - type: Transform
+ pos: 93.5,62.5
+ parent: 1
+ - uid: 5493
+ components:
+ - type: Transform
+ pos: 37.5,58.5
+ parent: 1
+ - uid: 5496
+ components:
+ - type: Transform
+ pos: 37.5,57.5
+ parent: 1
+ - uid: 5498
+ components:
+ - type: Transform
+ pos: 37.5,60.5
+ parent: 1
+ - uid: 5504
+ components:
+ - type: Transform
+ pos: 105.5,85.5
+ parent: 1
+ - uid: 5569
+ components:
+ - type: Transform
+ pos: 37.5,59.5
+ parent: 1
+ - uid: 5574
+ components:
+ - type: Transform
+ pos: 37.5,55.5
+ parent: 1
+ - uid: 5575
+ components:
+ - type: Transform
+ pos: 37.5,61.5
+ parent: 1
+ - uid: 5589
+ components:
+ - type: Transform
+ pos: 103.5,83.5
+ parent: 1
+ - uid: 5626
+ components:
+ - type: Transform
+ pos: 35.5,60.5
+ parent: 1
+ - uid: 5629
+ components:
+ - type: Transform
+ pos: 35.5,57.5
+ parent: 1
+ - uid: 5668
+ components:
+ - type: Transform
+ pos: 60.5,62.5
+ parent: 1
+ - uid: 5707
+ components:
+ - type: Transform
+ pos: 71.5,111.5
+ parent: 1
+ - uid: 5714
+ components:
+ - type: Transform
+ pos: 69.5,109.5
+ parent: 1
+ - uid: 5752
+ components:
+ - type: Transform
+ pos: 70.5,111.5
+ parent: 1
+ - uid: 5753
+ components:
+ - type: Transform
+ pos: 73.5,111.5
+ parent: 1
+ - uid: 5754
+ components:
+ - type: Transform
+ pos: 109.5,122.5
+ parent: 1
+ - uid: 5772
+ components:
+ - type: Transform
+ pos: 107.5,122.5
+ parent: 1
+ - uid: 5774
+ components:
+ - type: Transform
+ pos: 108.5,120.5
+ parent: 1
+ - uid: 5777
+ components:
+ - type: Transform
+ pos: 110.5,120.5
+ parent: 1
+ - uid: 5784
+ components:
+ - type: Transform
+ pos: 106.5,122.5
+ parent: 1
+ - uid: 5802
+ components:
+ - type: Transform
+ pos: 106.5,121.5
+ parent: 1
+ - uid: 5811
+ components:
+ - type: Transform
+ pos: 35.5,54.5
+ parent: 1
+ - uid: 5814
+ components:
+ - type: Transform
+ pos: 36.5,61.5
+ parent: 1
+ - uid: 5840
+ components:
+ - type: Transform
+ pos: 35.5,56.5
+ parent: 1
+ - uid: 5841
+ components:
+ - type: Transform
+ pos: 35.5,61.5
+ parent: 1
+ - uid: 5842
+ components:
+ - type: Transform
+ pos: 35.5,58.5
+ parent: 1
+ - uid: 5843
+ components:
+ - type: Transform
+ pos: 35.5,59.5
+ parent: 1
+ - uid: 5844
+ components:
+ - type: Transform
+ pos: 35.5,55.5
+ parent: 1
+ - uid: 5849
+ components:
+ - type: Transform
+ pos: 59.5,62.5
+ parent: 1
+ - uid: 5853
+ components:
+ - type: Transform
+ pos: 58.5,62.5
+ parent: 1
+ - uid: 5854
+ components:
+ - type: Transform
+ pos: 56.5,62.5
+ parent: 1
+ - uid: 5856
+ components:
+ - type: Transform
+ pos: 57.5,62.5
+ parent: 1
+ - uid: 5869
+ components:
+ - type: Transform
+ pos: 73.5,109.5
+ parent: 1
+ - uid: 5881
+ components:
+ - type: Transform
+ pos: 70.5,109.5
+ parent: 1
+ - uid: 5883
+ components:
+ - type: Transform
+ pos: 75.5,109.5
+ parent: 1
+ - uid: 5922
+ components:
+ - type: Transform
+ pos: 76.5,111.5
+ parent: 1
+ - uid: 5932
+ components:
+ - type: Transform
+ pos: 71.5,109.5
+ parent: 1
+ - uid: 5934
+ components:
+ - type: Transform
+ pos: 72.5,109.5
+ parent: 1
+ - uid: 5955
+ components:
+ - type: Transform
+ pos: 72.5,111.5
+ parent: 1
+ - uid: 5956
+ components:
+ - type: Transform
+ pos: 75.5,111.5
+ parent: 1
+ - uid: 5968
+ components:
+ - type: Transform
+ pos: 69.5,111.5
+ parent: 1
+ - uid: 5970
+ components:
+ - type: Transform
+ pos: 108.5,122.5
+ parent: 1
+ - uid: 6012
+ components:
+ - type: Transform
+ pos: 106.5,120.5
+ parent: 1
+ - uid: 6014
+ components:
+ - type: Transform
+ pos: 110.5,122.5
+ parent: 1
+ - uid: 6016
+ components:
+ - type: Transform
+ pos: 109.5,120.5
+ parent: 1
+ - uid: 6018
+ components:
+ - type: Transform
+ pos: 110.5,121.5
+ parent: 1
+ - uid: 6019
+ components:
+ - type: Transform
+ pos: 107.5,120.5
+ parent: 1
+ - uid: 6138
+ components:
+ - type: Transform
+ pos: 103.5,82.5
+ parent: 1
+ - uid: 6139
+ components:
+ - type: Transform
+ pos: 103.5,81.5
+ parent: 1
+ - uid: 6140
+ components:
+ - type: Transform
+ pos: 103.5,80.5
+ parent: 1
+ - uid: 6181
+ components:
+ - type: Transform
+ pos: 137.5,105.5
+ parent: 1
+ - uid: 6182
+ components:
+ - type: Transform
+ pos: 137.5,106.5
+ parent: 1
+ - uid: 6233
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,48.5
+ parent: 1
+ - uid: 6288
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,51.5
+ parent: 1
+ - uid: 6381
+ components:
+ - type: Transform
+ pos: 108.5,79.5
+ parent: 1
+ - uid: 6382
+ components:
+ - type: Transform
+ pos: 103.5,85.5
+ parent: 1
+ - uid: 6383
+ components:
+ - type: Transform
+ pos: 103.5,79.5
+ parent: 1
+ - uid: 6384
+ components:
+ - type: Transform
+ pos: 106.5,85.5
+ parent: 1
+ - uid: 6385
+ components:
+ - type: Transform
+ pos: 104.5,79.5
+ parent: 1
+ - uid: 6386
+ components:
+ - type: Transform
+ pos: 106.5,94.5
+ parent: 1
+ - uid: 6387
+ components:
+ - type: Transform
+ pos: 106.5,93.5
+ parent: 1
+ - uid: 6415
+ components:
+ - type: Transform
+ pos: 159.5,82.5
+ parent: 1
+ - uid: 6426
+ components:
+ - type: Transform
+ pos: 106.5,92.5
+ parent: 1
+ - uid: 6452
+ components:
+ - type: Transform
+ pos: 158.5,82.5
+ parent: 1
+ - uid: 6453
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,74.5
+ parent: 1
+ - uid: 6454
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 157.5,75.5
+ parent: 1
+ - uid: 6468
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,45.5
+ parent: 1
+ - uid: 6471
+ components:
+ - type: Transform
+ pos: 106.5,91.5
+ parent: 1
+ - uid: 6474
+ components:
+ - type: Transform
+ pos: 106.5,90.5
+ parent: 1
+ - uid: 6503
+ components:
+ - type: Transform
+ pos: 157.5,82.5
+ parent: 1
+ - uid: 6504
+ components:
+ - type: Transform
+ pos: 156.5,82.5
+ parent: 1
+ - uid: 6788
+ components:
+ - type: Transform
+ pos: 23.5,111.5
+ parent: 1
+ - uid: 6933
+ components:
+ - type: Transform
+ pos: 161.5,118.5
+ parent: 1
+ - uid: 7051
+ components:
+ - type: Transform
+ pos: 112.5,52.5
+ parent: 1
+ - uid: 7057
+ components:
+ - type: Transform
+ pos: 112.5,51.5
+ parent: 1
+ - uid: 7095
+ components:
+ - type: Transform
+ pos: 81.5,52.5
+ parent: 1
+ - uid: 7153
+ components:
+ - type: Transform
+ pos: 46.5,52.5
+ parent: 1
+ - uid: 7240
+ components:
+ - type: Transform
+ pos: 107.5,85.5
+ parent: 1
+ - uid: 7242
+ components:
+ - type: Transform
+ pos: 105.5,79.5
+ parent: 1
+ - uid: 7243
+ components:
+ - type: Transform
+ pos: 98.5,105.5
+ parent: 1
+ - uid: 7253
+ components:
+ - type: Transform
+ pos: 76.5,109.5
+ parent: 1
+ - uid: 7255
+ components:
+ - type: Transform
+ pos: 77.5,109.5
+ parent: 1
+ - uid: 7256
+ components:
+ - type: Transform
+ pos: 78.5,111.5
+ parent: 1
+ - uid: 7257
+ components:
+ - type: Transform
+ pos: 77.5,111.5
+ parent: 1
+ - uid: 7258
+ components:
+ - type: Transform
+ pos: 78.5,109.5
+ parent: 1
+ - uid: 7260
+ components:
+ - type: Transform
+ pos: 79.5,111.5
+ parent: 1
+ - uid: 7262
+ components:
+ - type: Transform
+ pos: 79.5,109.5
+ parent: 1
+ - uid: 7469
+ components:
+ - type: Transform
+ pos: 81.5,53.5
+ parent: 1
+ - uid: 7474
+ components:
+ - type: Transform
+ pos: 152.5,54.5
+ parent: 1
+ - uid: 7560
+ components:
+ - type: Transform
+ pos: 107.5,90.5
+ parent: 1
+ - uid: 7568
+ components:
+ - type: Transform
+ pos: 107.5,89.5
+ parent: 1
+ - uid: 7585
+ components:
+ - type: Transform
+ pos: 108.5,85.5
+ parent: 1
+ - uid: 7624
+ components:
+ - type: Transform
+ pos: 106.5,79.5
+ parent: 1
+ - uid: 7641
+ components:
+ - type: Transform
+ pos: 108.5,89.5
+ parent: 1
+ - uid: 7648
+ components:
+ - type: Transform
+ pos: 109.5,85.5
+ parent: 1
+ - uid: 7868
+ components:
+ - type: Transform
+ pos: 107.5,79.5
+ parent: 1
+ - uid: 7879
+ components:
+ - type: Transform
+ pos: 109.5,89.5
+ parent: 1
+ - uid: 7881
+ components:
+ - type: Transform
+ pos: 104.5,85.5
+ parent: 1
+ - uid: 7900
+ components:
+ - type: Transform
+ pos: 109.5,84.5
+ parent: 1
+ - uid: 7901
+ components:
+ - type: Transform
+ pos: 109.5,83.5
+ parent: 1
+ - uid: 7904
+ components:
+ - type: Transform
+ pos: 109.5,82.5
+ parent: 1
+ - uid: 7914
+ components:
+ - type: Transform
+ pos: 109.5,81.5
+ parent: 1
+ - uid: 7930
+ components:
+ - type: Transform
+ pos: 109.5,79.5
+ parent: 1
+ - uid: 7931
+ components:
+ - type: Transform
+ pos: 110.5,89.5
+ parent: 1
+ - uid: 7934
+ components:
+ - type: Transform
+ pos: 111.5,89.5
+ parent: 1
+ - uid: 7945
+ components:
+ - type: Transform
+ pos: 112.5,89.5
+ parent: 1
+ - uid: 7981
+ components:
+ - type: Transform
+ pos: 113.5,89.5
+ parent: 1
+ - uid: 7996
+ components:
+ - type: Transform
+ pos: 117.5,79.5
+ parent: 1
+ - uid: 8002
+ components:
+ - type: Transform
+ pos: 81.5,58.5
+ parent: 1
+ - uid: 8003
+ components:
+ - type: Transform
+ pos: 81.5,60.5
+ parent: 1
+ - uid: 8004
+ components:
+ - type: Transform
+ pos: 81.5,59.5
+ parent: 1
+ - uid: 8043
+ components:
+ - type: Transform
+ pos: 120.5,79.5
+ parent: 1
+ - uid: 8063
+ components:
+ - type: Transform
+ pos: 119.5,79.5
+ parent: 1
+ - uid: 8065
+ components:
+ - type: Transform
+ pos: 118.5,79.5
+ parent: 1
+ - uid: 8551
+ components:
+ - type: Transform
+ pos: 155.5,54.5
+ parent: 1
+ - uid: 8663
+ components:
+ - type: Transform
+ pos: 118.5,105.5
+ parent: 1
+ - uid: 9662
+ components:
+ - type: Transform
+ pos: 35.5,53.5
+ parent: 1
+ - uid: 9664
+ components:
+ - type: Transform
+ pos: 37.5,53.5
+ parent: 1
+ - uid: 9710
+ components:
+ - type: Transform
+ pos: 121.5,38.5
+ parent: 1
+ - uid: 9845
+ components:
+ - type: Transform
+ pos: 69.5,85.5
+ parent: 1
+ - uid: 10338
+ components:
+ - type: Transform
+ pos: 142.5,149.5
+ parent: 1
+ - uid: 10340
+ components:
+ - type: Transform
+ pos: 146.5,151.5
+ parent: 1
+ - uid: 10795
+ components:
+ - type: Transform
+ pos: 100.5,116.5
+ parent: 1
+ - uid: 10796
+ components:
+ - type: Transform
+ pos: 99.5,116.5
+ parent: 1
+ - uid: 10797
+ components:
+ - type: Transform
+ pos: 98.5,116.5
+ parent: 1
+ - uid: 10800
+ components:
+ - type: Transform
+ pos: 104.5,106.5
+ parent: 1
+ - uid: 10926
+ components:
+ - type: Transform
+ pos: 107.5,116.5
+ parent: 1
+ - uid: 10927
+ components:
+ - type: Transform
+ pos: 110.5,116.5
+ parent: 1
+ - uid: 10928
+ components:
+ - type: Transform
+ pos: 106.5,116.5
+ parent: 1
+ - uid: 10929
+ components:
+ - type: Transform
+ pos: 109.5,116.5
+ parent: 1
+ - uid: 10930
+ components:
+ - type: Transform
+ pos: 108.5,116.5
+ parent: 1
+ - uid: 10931
+ components:
+ - type: Transform
+ pos: 112.5,106.5
+ parent: 1
+ - uid: 10933
+ components:
+ - type: Transform
+ pos: 116.5,116.5
+ parent: 1
+ - uid: 11028
+ components:
+ - type: Transform
+ pos: 117.5,116.5
+ parent: 1
+ - uid: 11042
+ components:
+ - type: Transform
+ pos: 118.5,116.5
+ parent: 1
+ - uid: 11337
+ components:
+ - type: Transform
+ pos: 107.5,23.5
+ parent: 1
+ - uid: 12512
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 47.5,121.5
+ parent: 1
+ - uid: 13584
+ components:
+ - type: Transform
+ pos: 32.5,73.5
+ parent: 1
+ - uid: 13635
+ components:
+ - type: Transform
+ pos: 134.5,79.5
+ parent: 1
+ - uid: 13806
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,74.5
+ parent: 1
+ - uid: 14478
+ components:
+ - type: Transform
+ pos: 130.5,106.5
+ parent: 1
+ - uid: 14479
+ components:
+ - type: Transform
+ pos: 130.5,105.5
+ parent: 1
+ - uid: 14480
+ components:
+ - type: Transform
+ pos: 130.5,104.5
+ parent: 1
+ - uid: 14482
+ components:
+ - type: Transform
+ pos: 130.5,100.5
+ parent: 1
+ - uid: 14483
+ components:
+ - type: Transform
+ pos: 130.5,101.5
+ parent: 1
+ - uid: 14484
+ components:
+ - type: Transform
+ pos: 130.5,102.5
+ parent: 1
+ - uid: 15018
+ components:
+ - type: Transform
+ pos: 124.5,132.5
+ parent: 1
+ - uid: 15020
+ components:
+ - type: Transform
+ pos: 124.5,133.5
+ parent: 1
+ - uid: 15021
+ components:
+ - type: Transform
+ pos: 124.5,134.5
+ parent: 1
+ - uid: 15405
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,76.5
+ parent: 1
+ - uid: 15682
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 91.5,72.5
+ parent: 1
+ - uid: 16121
+ components:
+ - type: Transform
+ pos: 119.5,112.5
+ parent: 1
+ - uid: 16410
+ components:
+ - type: Transform
+ pos: 114.5,101.5
+ parent: 1
+ - uid: 16455
+ components:
+ - type: Transform
+ pos: 102.5,101.5
+ parent: 1
+ - uid: 17012
+ components:
+ - type: Transform
+ pos: 64.5,93.5
+ parent: 1
+ - uid: 17014
+ components:
+ - type: Transform
+ pos: 64.5,94.5
+ parent: 1
+ - uid: 17015
+ components:
+ - type: Transform
+ pos: 64.5,95.5
+ parent: 1
+ - uid: 18691
+ components:
+ - type: Transform
+ pos: 44.5,123.5
+ parent: 1
+ - uid: 18715
+ components:
+ - type: Transform
+ pos: 23.5,93.5
+ parent: 1
+ - uid: 18894
+ components:
+ - type: Transform
+ pos: 135.5,79.5
+ parent: 1
+ - uid: 19109
+ components:
+ - type: Transform
+ pos: 103.5,49.5
+ parent: 1
+ - uid: 19172
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 64.5,158.5
+ parent: 1
+ - uid: 19461
+ components:
+ - type: Transform
+ pos: 101.5,105.5
+ parent: 1
+ - uid: 20419
+ components:
+ - type: Transform
+ pos: 49.5,94.5
+ parent: 1
+ - uid: 20420
+ components:
+ - type: Transform
+ pos: 50.5,94.5
+ parent: 1
+ - uid: 20481
+ components:
+ - type: Transform
+ pos: 115.5,105.5
+ parent: 1
+ - uid: 20874
+ components:
+ - type: Transform
+ pos: 136.5,79.5
+ parent: 1
+ - uid: 23439
+ components:
+ - type: Transform
+ pos: 81.5,55.5
+ parent: 1
+ - uid: 23516
+ components:
+ - type: Transform
+ pos: 81.5,56.5
+ parent: 1
+ - uid: 23589
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 19.5,98.5
+ parent: 1
+ - uid: 24343
+ components:
+ - type: Transform
+ pos: 151.5,78.5
+ parent: 1
+ - uid: 24537
+ components:
+ - type: Transform
+ pos: 148.5,81.5
+ parent: 1
+ - uid: 24733
+ components:
+ - type: Transform
+ pos: 146.5,109.5
+ parent: 1
+ - uid: 25169
+ components:
+ - type: Transform
+ pos: 60.5,111.5
+ parent: 1
+ - uid: 25230
+ components:
+ - type: Transform
+ pos: 126.5,107.5
+ parent: 1
+ - uid: 25231
+ components:
+ - type: Transform
+ pos: 126.5,108.5
+ parent: 1
+ - uid: 25232
+ components:
+ - type: Transform
+ pos: 126.5,109.5
+ parent: 1
+ - uid: 25238
+ components:
+ - type: Transform
+ pos: 123.5,107.5
+ parent: 1
+ - uid: 25239
+ components:
+ - type: Transform
+ pos: 123.5,108.5
+ parent: 1
+ - uid: 25546
+ components:
+ - type: Transform
+ pos: 102.5,49.5
+ parent: 1
+ - uid: 25611
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 151.5,84.5
+ parent: 1
+ - uid: 25847
+ components:
+ - type: Transform
+ pos: 145.5,94.5
+ parent: 1
+ - uid: 26143
+ components:
+ - type: Transform
+ pos: 113.5,52.5
+ parent: 1
+ - uid: 26209
+ components:
+ - type: Transform
+ pos: 59.5,110.5
+ parent: 1
+ - uid: 26230
+ components:
+ - type: Transform
+ pos: 147.5,128.5
+ parent: 1
+ - uid: 26478
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 121.5,115.5
+ parent: 1
+ - uid: 26492
+ components:
+ - type: Transform
+ pos: 77.5,62.5
+ parent: 1
+ - uid: 26497
+ components:
+ - type: Transform
+ pos: 62.5,37.5
+ parent: 1
+ - uid: 26502
+ components:
+ - type: Transform
+ pos: 88.5,62.5
+ parent: 1
+ - uid: 27190
+ components:
+ - type: Transform
+ pos: 59.5,111.5
+ parent: 1
+ - uid: 27417
+ components:
+ - type: Transform
+ pos: 49.5,98.5
+ parent: 1
+ - uid: 27419
+ components:
+ - type: Transform
+ pos: 51.5,98.5
+ parent: 1
+ - uid: 27512
+ components:
+ - type: Transform
+ pos: 65.5,60.5
+ parent: 1
+ - uid: 27593
+ components:
+ - type: Transform
+ pos: 65.5,58.5
+ parent: 1
+ - uid: 27602
+ components:
+ - type: Transform
+ pos: 65.5,59.5
+ parent: 1
+ - uid: 28190
+ components:
+ - type: Transform
+ pos: 126.5,82.5
+ parent: 1
+ - uid: 28192
+ components:
+ - type: Transform
+ pos: 115.5,81.5
+ parent: 1
+ - uid: 28761
+ components:
+ - type: Transform
+ pos: 94.5,49.5
+ parent: 1
+ - uid: 28764
+ components:
+ - type: Transform
+ pos: 97.5,49.5
+ parent: 1
+ - uid: 28892
+ components:
+ - type: Transform
+ pos: 142.5,97.5
+ parent: 1
+ - uid: 29673
+ components:
+ - type: Transform
+ pos: 148.5,140.5
+ parent: 1
+ - uid: 29838
+ components:
+ - type: Transform
+ pos: 142.5,150.5
+ parent: 1
+ - uid: 29840
+ components:
+ - type: Transform
+ pos: 146.5,149.5
+ parent: 1
+ - uid: 29841
+ components:
+ - type: Transform
+ pos: 146.5,150.5
+ parent: 1
+ - uid: 30130
+ components:
+ - type: Transform
+ pos: 141.5,142.5
+ parent: 1
+ - uid: 30538
+ components:
+ - type: Transform
+ pos: 24.5,111.5
+ parent: 1
+ - uid: 30553
+ components:
+ - type: Transform
+ pos: 79.5,157.5
+ parent: 1
+ - uid: 30600
+ components:
+ - type: Transform
+ pos: 89.5,62.5
+ parent: 1
+ - uid: 31783
+ components:
+ - type: Transform
+ pos: 126.5,81.5
+ parent: 1
+ - uid: 31799
+ components:
+ - type: Transform
+ pos: 141.5,96.5
+ parent: 1
+ - uid: 31887
+ components:
+ - type: Transform
+ pos: 143.5,126.5
+ parent: 1
+ - uid: 32069
+ components:
+ - type: Transform
+ pos: 77.5,157.5
+ parent: 1
+ - uid: 32072
+ components:
+ - type: Transform
+ pos: 81.5,157.5
+ parent: 1
+ - uid: 32116
+ components:
+ - type: Transform
+ pos: 22.5,111.5
+ parent: 1
+ - uid: 32221
+ components:
+ - type: Transform
+ pos: 23.5,91.5
+ parent: 1
+ - uid: 32243
+ components:
+ - type: Transform
+ pos: 115.5,82.5
+ parent: 1
+ - uid: 32245
+ components:
+ - type: Transform
+ pos: 115.5,84.5
+ parent: 1
+ - uid: 32258
+ components:
+ - type: Transform
+ pos: 62.5,38.5
+ parent: 1
+ - uid: 32283
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 125.5,43.5
+ parent: 1
+ - uid: 32415
+ components:
+ - type: Transform
+ pos: 132.5,79.5
+ parent: 1
+ - uid: 32982
+ components:
+ - type: Transform
+ pos: 130.5,82.5
+ parent: 1
+ - uid: 33167
+ components:
+ - type: Transform
+ pos: 116.5,28.5
+ parent: 1
+ - uid: 33168
+ components:
+ - type: Transform
+ pos: 117.5,28.5
+ parent: 1
+ - uid: 33169
+ components:
+ - type: Transform
+ pos: 118.5,28.5
+ parent: 1
+ - uid: 33170
+ components:
+ - type: Transform
+ pos: 119.5,28.5
+ parent: 1
+ - uid: 33171
+ components:
+ - type: Transform
+ pos: 103.5,27.5
+ parent: 1
+ - uid: 33173
+ components:
+ - type: Transform
+ pos: 93.5,26.5
+ parent: 1
+ - uid: 33174
+ components:
+ - type: Transform
+ pos: 93.5,27.5
+ parent: 1
+ - uid: 33175
+ components:
+ - type: Transform
+ pos: 91.5,24.5
+ parent: 1
+ - uid: 33269
+ components:
+ - type: Transform
+ pos: 100.5,19.5
+ parent: 1
+ - uid: 33279
+ components:
+ - type: Transform
+ pos: 100.5,20.5
+ parent: 1
+ - uid: 33280
+ components:
+ - type: Transform
+ pos: 100.5,21.5
+ parent: 1
+ - uid: 33320
+ components:
+ - type: Transform
+ pos: 117.5,36.5
+ parent: 1
+ - uid: 33323
+ components:
+ - type: Transform
+ pos: 117.5,37.5
+ parent: 1
+ - uid: 33324
+ components:
+ - type: Transform
+ pos: 117.5,41.5
+ parent: 1
+ - uid: 33893
+ components:
+ - type: Transform
+ pos: 62.5,39.5
+ parent: 1
+ - uid: 33899
+ components:
+ - type: Transform
+ pos: 115.5,85.5
+ parent: 1
+ - uid: 33903
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,69.5
+ parent: 1
+ - uid: 34066
+ components:
+ - type: Transform
+ pos: 101.5,68.5
+ parent: 1
+ - uid: 34106
+ components:
+ - type: Transform
+ pos: 101.5,69.5
+ parent: 1
+ - uid: 34111
+ components:
+ - type: Transform
+ pos: 102.5,69.5
+ parent: 1
+ - uid: 34187
+ components:
+ - type: Transform
+ pos: 50.5,68.5
+ parent: 1
+ - uid: 34634
+ components:
+ - type: Transform
+ pos: 162.5,63.5
+ parent: 1
+ - uid: 34699
+ components:
+ - type: Transform
+ pos: 102.5,70.5
+ parent: 1
+ - uid: 34701
+ components:
+ - type: Transform
+ pos: 103.5,70.5
+ parent: 1
+ - uid: 34702
+ components:
+ - type: Transform
+ pos: 104.5,70.5
+ parent: 1
+ - uid: 34703
+ components:
+ - type: Transform
+ pos: 105.5,70.5
+ parent: 1
+ - uid: 34707
+ components:
+ - type: Transform
+ pos: 106.5,70.5
+ parent: 1
+ - uid: 34708
+ components:
+ - type: Transform
+ pos: 107.5,70.5
+ parent: 1
+ - uid: 34709
+ components:
+ - type: Transform
+ pos: 108.5,70.5
+ parent: 1
+ - uid: 34710
+ components:
+ - type: Transform
+ pos: 109.5,70.5
+ parent: 1
+ - uid: 34762
+ components:
+ - type: Transform
+ pos: 110.5,70.5
+ parent: 1
+ - uid: 34814
+ components:
+ - type: Transform
+ pos: 110.5,69.5
+ parent: 1
+ - uid: 34815
+ components:
+ - type: Transform
+ pos: 111.5,69.5
+ parent: 1
+ - uid: 34816
+ components:
+ - type: Transform
+ pos: 111.5,68.5
+ parent: 1
+ - uid: 34926
+ components:
+ - type: Transform
+ pos: 137.5,79.5
+ parent: 1
+ - uid: 34985
+ components:
+ - type: Transform
+ pos: 104.5,49.5
+ parent: 1
+ - uid: 34986
+ components:
+ - type: Transform
+ pos: 50.5,71.5
+ parent: 1
+ - uid: 35651
+ components:
+ - type: Transform
+ pos: 155.5,101.5
+ parent: 1
+ - uid: 35796
+ components:
+ - type: Transform
+ pos: 55.5,125.5
+ parent: 1
+ - uid: 36586
+ components:
+ - type: Transform
+ pos: 110.5,166.5
+ parent: 1
+ - uid: 37031
+ components:
+ - type: Transform
+ pos: 101.5,166.5
+ parent: 1
+ - uid: 37359
+ components:
+ - type: Transform
+ pos: 144.5,97.5
+ parent: 1
+ - uid: 37498
+ components:
+ - type: Transform
+ pos: 145.5,120.5
+ parent: 1
+ - uid: 37554
+ components:
+ - type: Transform
+ pos: 47.5,98.5
+ parent: 1
+- proto: WindowDirectional
+ entities:
+ - uid: 116
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 79.5,159.5
+ parent: 1
+ - uid: 759
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 91.5,170.5
+ parent: 1
+ - uid: 763
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 92.5,170.5
+ parent: 1
+ - uid: 3328
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 129.5,112.5
+ parent: 1
+ - uid: 6518
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 93.5,173.5
+ parent: 1
+ - uid: 19160
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,54.5
+ parent: 1
+ - uid: 23384
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 78.5,54.5
+ parent: 1
+ - uid: 31866
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 65.5,80.5
+ parent: 1
+ - uid: 33964
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,73.5
+ parent: 1
+ - uid: 34615
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 147.5,43.5
+ parent: 1
+ - uid: 35247
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 74.5,159.5
+ parent: 1
+ - uid: 35248
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,159.5
+ parent: 1
+ - uid: 35251
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,162.5
+ parent: 1
+ - uid: 35252
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,161.5
+ parent: 1
+ - uid: 35258
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,162.5
+ parent: 1
+ - uid: 35263
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,160.5
+ parent: 1
+ - uid: 35266
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,159.5
+ parent: 1
+ - uid: 35267
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 82.5,159.5
+ parent: 1
+ - uid: 35268
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,160.5
+ parent: 1
+ - uid: 35269
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,161.5
+ parent: 1
+ - uid: 35270
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,161.5
+ parent: 1
+ - uid: 35271
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 80.5,159.5
+ parent: 1
+ - uid: 35272
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 79.5,160.5
+ parent: 1
+ - uid: 35273
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 82.5,162.5
+ parent: 1
+ - uid: 36061
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,70.5
+ parent: 1
+ - uid: 36064
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,73.5
+ parent: 1
+ - uid: 36065
+ components:
+ - type: Transform
+ pos: 22.5,75.5
+ parent: 1
+ - uid: 36066
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,71.5
+ parent: 1
+ - uid: 36067
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,72.5
+ parent: 1
+ - uid: 36068
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,72.5
+ parent: 1
+ - uid: 36069
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 25.5,73.5
+ parent: 1
+ - uid: 36070
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,71.5
+ parent: 1
+ - uid: 36071
+ components:
+ - type: Transform
+ pos: 21.5,70.5
+ parent: 1
+ - uid: 36072
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,74.5
+ parent: 1
+ - uid: 36073
+ components:
+ - type: Transform
+ pos: 24.5,71.5
+ parent: 1
+ - uid: 36074
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,69.5
+ parent: 1
+ - uid: 36075
+ components:
+ - type: Transform
+ pos: 23.5,72.5
+ parent: 1
+ - uid: 36076
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,70.5
+ parent: 1
+ - uid: 36077
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,70.5
+ parent: 1
+ - uid: 36078
+ components:
+ - type: Transform
+ pos: 23.5,73.5
+ parent: 1
+ - uid: 36079
+ components:
+ - type: Transform
+ pos: 24.5,75.5
+ parent: 1
+ - uid: 36080
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,69.5
+ parent: 1
+ - uid: 36081
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,68.5
+ parent: 1
+ - uid: 36082
+ components:
+ - type: Transform
+ pos: 21.5,75.5
+ parent: 1
+ - uid: 36083
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,73.5
+ parent: 1
+ - uid: 36084
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 22.5,69.5
+ parent: 1
+ - uid: 36085
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 24.5,69.5
+ parent: 1
+ - uid: 36086
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,68.5
+ parent: 1
+ - uid: 36087
+ components:
+ - type: Transform
+ pos: 22.5,72.5
+ parent: 1
+ - uid: 36089
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 21.5,71.5
+ parent: 1
+ - uid: 36090
+ components:
+ - type: Transform
+ pos: 20.5,74.5
+ parent: 1
+ - uid: 36091
+ components:
+ - type: Transform
+ pos: 23.5,75.5
+ parent: 1
+ - uid: 36340
+ components:
+ - type: MetaData
+ name: large lens
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,152.5
+ parent: 1
+ - uid: 36341
+ components:
+ - type: MetaData
+ name: large lens
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 53.5,151.5
+ parent: 1
+ - uid: 37332
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 33.5,66.5
+ parent: 1
+- proto: WindowFrostedDirectional
+ entities:
+ - uid: 1482
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 56.5,119.5
+ parent: 1
+ - uid: 16100
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,135.5
+ parent: 1
+ - uid: 17669
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,94.5
+ parent: 1
+ - uid: 24414
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,83.5
+ parent: 1
+ - uid: 26419
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,133.5
+ parent: 1
+ - uid: 27237
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 134.5,134.5
+ parent: 1
+ - uid: 27623
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 68.5,82.5
+ parent: 1
+ - uid: 28187
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 55.5,119.5
+ parent: 1
+ - uid: 35016
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,100.5
+ parent: 1
+ - uid: 35019
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 76.5,94.5
+ parent: 1
+ - uid: 36645
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 73.5,100.5
+ parent: 1
+- proto: WindowReinforcedDirectional
+ entities:
+ - uid: 13118
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,36.5
+ parent: 1
+ - uid: 13120
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,37.5
+ parent: 1
+ - uid: 13121
+ components:
+ - type: Transform
+ pos: 52.5,38.5
+ parent: 1
+ - uid: 13122
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 52.5,40.5
+ parent: 1
+ - uid: 13123
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 53.5,41.5
+ parent: 1
+ - uid: 13124
+ components:
+ - type: Transform
+ pos: 52.5,42.5
+ parent: 1
+ - uid: 17715
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,102.5
+ parent: 1
+ - uid: 17716
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 76.5,105.5
+ parent: 1
+ - uid: 17717
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 76.5,105.5
+ parent: 1
+ - uid: 17718
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 77.5,105.5
+ parent: 1
+ - uid: 22666
+ components:
+ - type: Transform
+ pos: 130.5,66.5
+ parent: 1
+ - uid: 22707
+ components:
+ - type: Transform
+ pos: 130.5,65.5
+ parent: 1
+ - uid: 22756
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,63.5
+ parent: 1
+ - uid: 22975
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 130.5,62.5
+ parent: 1
+ - uid: 23621
+ components:
+ - type: Transform
+ pos: 91.5,42.5
+ parent: 1
+ - uid: 30122
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 95.5,115.5
+ parent: 1
+ - uid: 30441
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 96.5,113.5
+ parent: 1
+ - uid: 30636
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 67.5,80.5
+ parent: 1
+ - uid: 32189
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 69.5,80.5
+ parent: 1
+ - uid: 35750
+ components:
+ - type: Transform
+ pos: 98.5,42.5
+ parent: 1
+- proto: WoodDoor
+ entities:
+ - uid: 23411
+ components:
+ - type: Transform
+ pos: 159.5,72.5
+ parent: 1
+ - uid: 27048
+ components:
+ - type: MetaData
+ name: confession booth wooden door
+ - type: Transform
+ pos: 74.5,77.5
+ parent: 1
+ - uid: 27049
+ components:
+ - type: MetaData
+ name: confession booth wooden door
+ - type: Transform
+ pos: 78.5,78.5
+ parent: 1
+- proto: WoodenBench
+ entities:
+ - uid: 27014
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,73.5
+ parent: 1
+ - uid: 27015
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,72.5
+ parent: 1
+ - uid: 27016
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,73.5
+ parent: 1
+ - uid: 27017
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,72.5
+ parent: 1
+ - uid: 27018
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,73.5
+ parent: 1
+ - uid: 27019
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,72.5
+ parent: 1
+ - uid: 27020
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,73.5
+ parent: 1
+ - uid: 27021
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,72.5
+ parent: 1
+ - uid: 27022
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,75.5
+ parent: 1
+ - uid: 27023
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 89.5,76.5
+ parent: 1
+ - uid: 27024
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,75.5
+ parent: 1
+ - uid: 27025
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 88.5,76.5
+ parent: 1
+ - uid: 27026
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,75.5
+ parent: 1
+ - uid: 27027
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 86.5,76.5
+ parent: 1
+ - uid: 27028
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,75.5
+ parent: 1
+ - uid: 27029
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 85.5,76.5
+ parent: 1
+- proto: Wrench
+ entities:
+ - uid: 20443
+ components:
+ - type: Transform
+ pos: 48.484276,113.692474
+ parent: 1
+ - uid: 23026
+ components:
+ - type: Transform
+ parent: 23025
+ - type: Physics
+ canCollide: False
+ - uid: 23776
+ components:
+ - type: Transform
+ pos: 40.477272,88.60258
+ parent: 1
+ - uid: 26702
+ components:
+ - type: Transform
+ pos: 107.49787,99.59525
+ parent: 1
+ - uid: 30693
+ components:
+ - type: Transform
+ pos: 91.5,87.5
+ parent: 1
+ - uid: 33594
+ components:
+ - type: Transform
+ rot: -6.283185307179586 rad
+ pos: 88.563065,18.66552
+ parent: 1
+- proto: Zipties
+ entities:
+ - uid: 15351
+ components:
+ - type: Transform
+ rot: -56.54866776461632 rad
+ pos: 153.52924,152.91687
+ parent: 1
+ - uid: 23069
+ components:
+ - type: Transform
+ pos: 123.56595,56.60654
+ parent: 1
+...
diff --git a/Resources/Maps/elkridge.yml b/Resources/Maps/elkridge.yml
index 2ac152f22237..f863e4899167 100644
--- a/Resources/Maps/elkridge.yml
+++ b/Resources/Maps/elkridge.yml
@@ -64,11 +64,11 @@ entities:
version: 6
0,-1:
ind: 0,-1
- tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAADIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAGIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAfgAAAAACIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD
+ tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAABggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAABAQAAAAAAYgAAAAABYgAAAAADYgAAAAADYgAAAAAAYgAAAAABYgAAAAABYgAAAAACYgAAAAABYgAAAAACYgAAAAAAYgAAAAADYgAAAAAAYgAAAAADYgAAAAABYgAAAAAAAQAAAAAAYgAAAAADYgAAAAABYgAAAAABYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAACYgAAAAACYgAAAAACYgAAAAAAYgAAAAADAQAAAAAAYgAAAAADYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAACIAAAAAADggAAAAAAIAAAAAADIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADggAAAAAAIAAAAAACIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAIAAAAAABIAAAAAADIAAAAAABIAAAAAACIAAAAAADIAAAAAABIAAAAAADIAAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAADIAAAAAACIAAAAAACIAAAAAAAIAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACIAAAAAACfgAAAAADIAAAAAAAfgAAAAACfgAAAAAABwAAAAACIAAAAAADIAAAAAABIAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAAAIAAAAAAD
version: 6
-1,-1:
ind: -1,-1
- tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAcAAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAwAAAAACAwAAAAADggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACfgAAAAADfgAAAAADIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAACfgAAAAADBwAAAAAGIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAABfgAAAAADBwAAAAAEAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAfgAAAAABBwAAAAABfgAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA
+ tiles: YgAAAAADYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADYgAAAAACYgAAAAABAQAAAAAAYgAAAAAAIAAAAAACggAAAAAAYgAAAAABYgAAAAAAYgAAAAACAQAAAAAAYgAAAAADYgAAAAACYgAAAAACYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAACAQAAAAAAYgAAAAACIAAAAAABAQAAAAAAYgAAAAACYgAAAAAAYgAAAAABAQAAAAAAYgAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAADYgAAAAACYgAAAAABYgAAAAAAAQAAAAAAYgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAcAAAAAAAIAAAAAACIAAAAAABggAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAACggAAAAAAAgAAAAAAggAAAAAADQAAAAABYgAAAAAAYgAAAAAAAQAAAAAAggAAAAAAfgAAAAAABwAAAAAAfgAAAAAAAQAAAAAAIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAAgAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAAAAQAAAAAAggAAAAAABwAAAAAAfgAAAAAAfgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAAAAAAAAAggAAAAAAYgAAAAACYgAAAAACYgAAAAAAggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAYgAAAAADYgAAAAADYgAAAAABggAAAAAAAwAAAAAABwAAAAAAfgAAAAAAfgAAAAABIAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAfgAAAAAAfgAAAAAABwAAAAAAIAAAAAAAIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAAAYgAAAAADIAAAAAAAggAAAAAAIAAAAAABIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACAQAAAAAAAQAAAAAAggAAAAAAYgAAAAADYgAAAAACYgAAAAABYgAAAAADYgAAAAACYgAAAAAAIAAAAAABggAAAAAAIAAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAACYgAAAAAAYgAAAAACAQAAAAAAYgAAAAABYgAAAAACCwAAAAAACwAAAAAACwAAAAAAYgAAAAAAIAAAAAACAQAAAAAAIAAAAAABCwAAAAAAIAAAAAADfgAAAAADfgAAAAAA
version: 6
1,0:
ind: 1,0
@@ -88,7 +88,7 @@ entities:
version: 6
2,-1:
ind: 2,-1
- tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA
+ tiles: ggAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAABwAAAAAGfgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAABggAAAAAAfgAAAAADBwAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAABgAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAABgAAAAACcAAAAAAAcAAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAIAAAAAACcAAAAAAAIAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAABgAAAAACAQAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABggAAAAAAggAAAAAAIAAAAAAAcAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAACIAAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAABBQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAAggAAAAAABwAAAAAGggAAAAAAAQAAAAAAggAAAAAABQAAAAAAIAAAAAAAIAAAAAACBQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAfgAAAAACBwAAAAADDQAAAAAA
version: 6
2,0:
ind: 2,0
@@ -124,11 +124,11 @@ entities:
version: 6
-2,-1:
ind: -2,-1
- tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA
+ tiles: AQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAYgAAAAADYgAAAAADYgAAAAACYgAAAAACYgAAAAAAYgAAAAABYgAAAAABYgAAAAABYgAAAAAAYgAAAAACYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAADIAAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAAAYgAAAAABggAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAABIAAAAAAAIAAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAABYgAAAAADggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAAQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAQAAAAAAYgAAAAABYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAAAggAAAAAAYgAAAAAAYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAADIAAAAAAAIAAAAAADIAAAAAADIAAAAAADIAAAAAACAQAAAAAAIAAAAAABIAAAAAADIAAAAAACAQAAAAAAYgAAAAACYgAAAAACAQAAAAAAggAAAAAAIAAAAAADIAAAAAABIAAAAAAAIAAAAAACIAAAAAAAIAAAAAAAIAAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAYgAAAAADYgAAAAABAQAAAAAAggAAAAAAIAAAAAAAIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAABIAAAAAADggAAAAAAIAAAAAABIAAAAAACIAAAAAACggAAAAAAYgAAAAABYgAAAAACggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAACggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAAAIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAABwAAAAADfgAAAAACIAAAAAADIAAAAAABIAAAAAABggAAAAAAYgAAAAABYgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAABBwAAAAABIAAAAAACIAAAAAADIAAAAAACggAAAAAAYgAAAAAAYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAfgAAAAADfgAAAAAAIAAAAAABIAAAAAADIAAAAAACggAAAAAAYgAAAAADYgAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAAA
version: 6
-2,0:
ind: -2,0
- tiles: AgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAfgAAAAAABwAAAAADfgAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAABwAAAAAFfgAAAAABBwAAAAAGggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEBwAAAAAFAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABcAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAC
+ tiles: AgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAAfgAAAAAABwAAAAADfgAAAAABggAAAAAAYgAAAAAAYgAAAAADYgAAAAACYgAAAAADYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAABwAAAAAABwAAAAAFfgAAAAABBwAAAAAGggAAAAAAYgAAAAABYgAAAAAAYgAAAAABYgAAAAAAYgAAAAACYgAAAAADYgAAAAABAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAEBwAAAAAFAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABwAAAAAFfgAAAAACAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAfgAAAAACBwAAAAAGAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAABcAAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAABcAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAcAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAggAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAADIAAAAAADggAAAAAAYgAAAAACYgAAAAACYgAAAAAAYgAAAAADYgAAAAABYgAAAAADAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAADAQAAAAAAYgAAAAAAYgAAAAACYgAAAAADYgAAAAABYgAAAAAAYgAAAAAC
version: 6
1,1:
ind: 1,1
@@ -140,7 +140,7 @@ entities:
version: 6
1,-3:
ind: 1,-3
- tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA
+ tiles: ggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAACgAAAAAACgAAAAAACgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAggAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAA
version: 6
-1,-3:
ind: -1,-3
@@ -168,7 +168,7 @@ entities:
version: 6
1,-4:
ind: 1,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA
version: 6
2,-4:
ind: 2,-4
@@ -184,7 +184,7 @@ entities:
version: 6
-3,-3:
ind: -3,-3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAABgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAACAQAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAABZAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAJAAAAAACZAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAIAAAAAABIAAAAAADIAAAAAACIAAAAAABggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAZAAAAAAAZAAAAAADZAAAAAACggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAABAQAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAZAAAAAAAZAAAAAADggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAggAAAAAAIAAAAAACIAAAAAADggAAAAAAggAAAAAAggAAAAAA
version: 6
-1,-4:
ind: -1,-4
@@ -268,7 +268,7 @@ entities:
version: 6
-1,3:
ind: -1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADDgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAADgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABDQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAABgAAAAADggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAADDgAAAAADYgAAAAADggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAADQAAAAACYgAAAAABYgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAYgAAAAADYgAAAAAADgAAAAACggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAAAYgAAAAABDQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAYgAAAAACggAAAAAAYgAAAAADggAAAAAAggAAAAAABgAAAAADggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAABgAAAAABggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAQAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAA
version: 6
-2,3:
ind: -2,3
@@ -276,7 +276,7 @@ entities:
version: 6
1,3:
ind: 1,3
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
3,0:
ind: 3,0
@@ -284,11 +284,11 @@ entities:
version: 6
0,-4:
ind: 0,-4
- tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
2,3:
ind: 2,3
- tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ tiles: ggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAggAAAAAAggAAAAAAggAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAggAAAAAAggAAAAAAggAAAAAAggAAAAAAAAAAAAAAggAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
version: 6
-2,4:
ind: -2,4
@@ -412,6 +412,11 @@ entities:
10566: 56,-27
10567: 50,-27
10568: 47,-24
+ 11079: 28,-28
+ 11080: 28,-29
+ 11489: 26,-42
+ 11490: 27,-42
+ 11491: 28,-42
- node:
color: '#D4D4D496'
id: BotGreyscale
@@ -467,6 +472,7 @@ entities:
8320: -13,26
8321: -17,26
8322: -21,23
+ 11081: 28,-30
- node:
angle: 1.5707963267948966 rad
color: '#D4D4D496'
@@ -515,7 +521,6 @@ entities:
805: -25,-27
836: -22,-24
1426: -20,-14
- 6837: -5,-3
- node:
color: '#9FED5896'
id: BrickTileDarkEndN
@@ -596,7 +601,6 @@ entities:
1424: -17,-14
6735: 4,-3
6736: 5,-3
- 6836: -4,-3
7569: 1,-3
7570: 2,-3
7571: 3,-3
@@ -620,6 +624,7 @@ entities:
6720: -5,2
6833: -5,-2
7502: -22,-22
+ 11591: -5,-3
- node:
color: '#334E6DC8'
id: BrickTileSteelCornerNe
@@ -645,9 +650,9 @@ entities:
color: '#79150096'
id: BrickTileSteelCornerNe
decals:
- 233: 6,-5
- 234: 7,-6
- 7579: 3,-5
+ 11594: 6,-5
+ 11595: 7,-6
+ 11596: 3,-5
- node:
color: '#8C347F96'
id: BrickTileSteelCornerNe
@@ -729,7 +734,7 @@ entities:
color: '#79150096'
id: BrickTileSteelCornerNw
decals:
- 235: 5,-5
+ 11597: 5,-5
- node:
color: '#8C347F96'
id: BrickTileSteelCornerNw
@@ -808,9 +813,9 @@ entities:
color: '#79150096'
id: BrickTileSteelCornerSe
decals:
- 239: 7,-7
- 7574: 2,-8
- 7575: 3,-7
+ 11598: 7,-7
+ 11599: 3,-7
+ 11600: 2,-8
- node:
color: '#9FED5896'
id: BrickTileSteelCornerSe
@@ -878,8 +883,7 @@ entities:
color: '#79150096'
id: BrickTileSteelCornerSw
decals:
- 242: 5,-7
- 7572: 0,-8
+ 11601: 5,-7
- node:
color: '#8C347F96'
id: BrickTileSteelCornerSw
@@ -985,8 +989,7 @@ entities:
color: '#79150096'
id: BrickTileSteelInnerNe
decals:
- 259: 6,-6
- 7576: 3,-6
+ 11607: 3,-6
- node:
color: '#8C347F96'
id: BrickTileSteelInnerNe
@@ -1058,7 +1061,7 @@ entities:
color: '#79150096'
id: BrickTileSteelInnerNw
decals:
- 254: 5,-6
+ 11606: 5,-6
- node:
color: '#8C347F96'
id: BrickTileSteelInnerNw
@@ -1119,8 +1122,8 @@ entities:
color: '#79150096'
id: BrickTileSteelInnerSe
decals:
- 7577: 2,-7
- 7578: 3,-6
+ 11608: 2,-7
+ 11609: 3,-6
- node:
color: '#9FED5896'
id: BrickTileSteelInnerSe
@@ -1182,7 +1185,7 @@ entities:
color: '#79150096'
id: BrickTileSteelInnerSw
decals:
- 258: 5,-6
+ 11610: 5,-6
- node:
color: '#8C347F96'
id: BrickTileSteelInnerSw
@@ -1382,8 +1385,8 @@ entities:
color: '#79150096'
id: BrickTileSteelLineN
decals:
- 7580: 1,-5
- 7581: 2,-5
+ 11611: 1,-5
+ 11612: 2,-5
- node:
color: '#9FED5896'
id: BrickTileSteelLineN
@@ -1509,8 +1512,10 @@ entities:
color: '#79150096'
id: BrickTileSteelLineS
decals:
- 245: 6,-7
- 7573: 1,-8
+ 11602: 6,-7
+ 11603: -1,-8
+ 11604: 0,-8
+ 11605: 1,-8
- node:
color: '#8C347F96'
id: BrickTileSteelLineS
@@ -2623,6 +2628,105 @@ entities:
10630: 57,-20
10631: 57,-21
10632: 57,-22
+ - node:
+ cleanable: True
+ color: '#D4D4D496'
+ id: Dirt
+ decals:
+ 11727: 11,-17
+ 11728: 13,-18
+ 11729: 12,-19
+ 11730: -3,-8
+ 11731: -5,-6
+ 11732: -3,-5
+ 11733: -5,-4
+ 11734: -6,-5
+ 11735: -2,6
+ 11736: 1,6
+ 11737: -1,4
+ 11738: 3,4
+ 11739: 1,3
+ 11740: 4,6
+ 11741: -1,10
+ 11742: 0,9
+ 11743: 4,8
+ 11744: 3,9
+ 11745: -18,8
+ 11746: -17,7
+ 11747: -18,6
+ 11749: -26,0
+ 11750: -28,-4
+ 11751: -29,-3
+ 11752: -28,-2
+ 11753: -26,-21
+ 11754: -24,-20
+ 11755: -24,-23
+ 11756: -26,-23
+ 11757: -21,-27
+ 11758: -19,-26
+ 11759: -20,-25
+ 11760: -37,-28
+ 11761: -36,-26
+ 11762: -37,-24
+ 11763: -36,-22
+ 11764: -34,-21
+ 11765: -33,-23
+ 11766: -34,-25
+ 11767: -33,-27
+ 11768: -29,-34
+ 11769: -28,-36
+ 11770: -32,-43
+ 11771: -31,-42
+ 11772: -29,-43
+ 11773: -28,-42
+ 11774: -26,-42
+ 11775: -25,-44
+ 11776: -13,-36
+ 11777: -11,-37
+ 11778: -13,-39
+ 11779: -12,-40
+ 11780: -11,-39
+ 11781: -1,-34
+ 11782: 1,-35
+ 11783: 0,-33
+ 11784: 2,-34
+ 11785: 3,-33
+ 11786: 4,-34
+ 11787: 3,-35
+ 11788: 41,-15
+ 11789: 42,-16
+ 11790: 41,-17
+ 11791: -2,1
+ 11792: -1,0
+ 11793: -2,-1
+ 11794: 2,-1
+ 11795: 3,0
+ 11796: 4,1
+ 11797: 4,-1
+ 11798: 0,35
+ 11799: 1,34
+ 11800: 2,35
+ 11801: 36,27
+ 11802: 38,26
+ 11803: 36,25
+ 11804: 37,26
+ 11805: 38,24
+ 11806: 30,26
+ 11807: 31,25
+ 11808: 32,26
+ 11809: 47,-2
+ 11810: 45,-1
+ 11811: 46,0
+ 11812: 55,-2
+ 11813: 56,-1
+ 11814: 56,1
+ 11815: 57,0
+ 11816: 58,1
+ 11817: 59,0
+ 11818: 59,-1
+ 11819: 58,-2
+ 11824: -28,1
+ 11825: -27,0
- node:
color: '#FFFFFFFF'
id: DirtHeavy
@@ -2661,9 +2765,7 @@ entities:
1748: 10,8
1749: 2,9
1751: -7,-8
- 1753: -4,-11
1754: -1,-10
- 1755: -5,-5
1757: 10,-8
1758: 15,-4
2087: -18,-6
@@ -2774,7 +2876,6 @@ entities:
2736: 6,22
2744: 3,38
2751: -22,55
- 2799: -5,-11
2850: -6,-38
2924: -25,-27
2926: -22,-19
@@ -2890,7 +2991,6 @@ entities:
5175: -2,20
5176: -4,19
5233: 2,-4
- 5240: -4,-10
5245: 28,-4
5246: 26,-2
5247: 29,-2
@@ -2955,9 +3055,6 @@ entities:
6159: 26,35
6161: 27,37
6214: 10,-19
- 6225: 22,-36
- 6226: 23,-38
- 6227: 24,-40
6228: 38,-40
6230: 40,-36
6266: -41,-10
@@ -2992,10 +3089,6 @@ entities:
6567: 1,-21
6568: 2,-23
6584: 30,-16
- 7585: 0,-8
- 7586: 1,-7
- 7587: 1,-5
- 7588: 3,-6
7619: 39,7
7620: 40,9
7626: 34,3
@@ -3051,7 +3144,6 @@ entities:
8801: 20,38
8802: 21,37
8821: 52,32
- 8822: -4,-3
8823: -2,-2
8824: -3,-1
8825: -4,2
@@ -3322,20 +3414,272 @@ entities:
10238: -29,-32
11070: -10,-19
11071: -7,-17
+ 11492: 26,-42
+ 11493: 28,-42
+ 11494: 37,-29
+ 11495: 38,-27
+ 11496: 40,-28
+ 11497: 40,-30
+ 11504: 9,-7
+ 11505: 11,-6
+ 11506: 12,-8
+ 11507: 16,-4
+ 11508: 13,-11
+ 11509: 12,-10
+ 11510: 6,-10
+ 11511: 4,-9
+ 11512: 7,-9
+ 11526: 6,41
+ 11527: 9,41
+ 11531: 23,43
+ 11532: 16,19
+ 11533: 17,27
+ 11534: 19,26
+ 11535: 17,31
+ 11536: 19,30
+ 11548: 26,30
+ 11549: 26,32
+ 11550: 28,31
+ 11551: 29,32
+ 11552: 33,29
+ 11553: 31,28
+ 11554: 28,27
+ 11555: 28,25
+ 11619: -1,-8
+ 11620: -1,-5
+ 11621: 1,-6
+ 11622: 3,-5
+ 11634: 5,-7
+ 11635: 7,-6
+ 11641: -6,-11
+ 11642: -4,-11
+ 11645: 24,2
+ 11646: 23,-3
+ 11647: 27,0
+ 11648: 33,1
+ 11649: 40,-1
+ 11650: 42,1
+ 11651: 43,2
+ 11652: 41,4
+ 11653: 47,2
+ 11654: 45,2
+ 11655: 45,4
+ 11656: 46,-2
+ 11657: 47,0
+ 11658: 55,-1
+ 11659: 58,-1
+ 11660: 57,-3
+ 11661: 48,6
+ 11662: 48,9
+ 11663: 50,7
+ 11664: 51,9
+ 11665: 50,8
+ 11666: 45,12
+ 11667: 48,12
+ 11668: 44,8
+ 11669: 45,16
+ 11670: 44,17
+ 11671: 43,19
+ 11672: 44,20
+ 11673: 46,18
+ 11674: 48,17
+ 11675: 46,22
+ 11676: 47,23
+ 11677: 47,28
+ 11678: 46,27
+ 11679: 47,26
+ 11680: 40,24
+ 11681: 41,25
+ 11682: 37,27
+ 11683: 37,24
+ 11684: 36,21
+ 11685: 42,22
+ 11686: 43,25
+ 11687: 42,28
+ 11688: 34,21
+ 11689: 38,31
+ 11690: 42,31
+ 11691: 43,29
+ 11692: 46,31
+ 11693: 49,30
+ 11694: 50,31
+ 11695: 51,32
+ 11696: 52,30
+ 11718: 39,-5
+ 11719: 40,-7
+ 11720: 45,-7
+ 11726: 24,-15
- node:
cleanable: True
angle: 1.5707963267948966 rad
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1656: 5,-6
+ 11082: 19,-36
+ 11083: 20,-38
+ 11084: 21,-40
+ 11094: 38,-36
+ 11095: 39,-38
+ 11096: 39,-40
+ 11120: 27,-41
+ 11121: 29,-38
+ 11122: 30,-35
+ 11123: 27,-34
+ 11124: 33,-42
+ 11125: 34,-39
+ 11126: 30,-33
+ 11127: 30,-29
+ 11128: 31,-28
+ 11129: 29,-30
+ 11149: 23,-24
+ 11150: 25,-26
+ 11151: 25,-24
+ 11152: 24,-21
+ 11153: 23,-19
+ 11154: 28,-18
+ 11155: 29,-21
+ 11156: 27,-23
+ 11157: 29,-25
+ 11175: 22,-28
+ 11176: 23,-29
+ 11186: 42,-26
+ 11187: 44,-25
+ 11188: 44,-29
+ 11189: 43,-28
+ 11190: 47,-26
+ 11191: 50,-28
+ 11192: 47,-28
+ 11193: 51,-26
+ 11194: 54,-28
+ 11195: 55,-26
+ 11196: 50,-21
+ 11197: 53,-20
+ 11198: 54,-22
+ 11199: 46,-21
+ 11200: 47,-19
+ 11201: 45,-17
+ 11202: 46,-14
+ 11203: 48,-16
+ 11204: 47,-17
+ 11205: 49,-14
+ 11206: 53,-15
+ 11207: 55,-14
+ 11208: 56,-16
+ 11209: 58,-14
+ 11210: 60,-16
+ 11211: 58,-17
+ 11212: 58,-12
+ 11213: 50,-12
+ 11214: 47,-12
+ 11215: 59,-21
+ 11216: 60,-20
+ 11217: 60,-17
+ 11218: 58,-23
+ 11219: 60,-25
+ 11220: 58,-26
+ 11221: 59,-28
+ 11222: 62,-27
+ 11223: 62,-24
+ 11224: 62,-18
+ 11225: 62,-15
+ 11226: 50,-30
+ 11227: 49,-30
+ 11228: 58,-30
+ 11229: 53,-27
+ 11230: 58,-28
+ 11278: 43,-9
+ 11279: 39,-13
+ 11284: 33,-8
+ 11301: 21,-20
+ 11302: 18,-14
+ 11303: 20,-15
+ 11308: 12,-22
+ 11309: 16,-28
+ 11310: 17,-31
+ 11311: 19,-32
+ 11316: 14,-31
+ 11317: 12,-30
+ 11321: 9,-27
+ 11322: 10,-26
+ 11329: 5,-20
+ 11330: 13,-28
+ 11331: -9,-39
+ 11332: -7,-42
+ 11333: -11,-43
+ 11334: -13,-46
+ 11335: -12,-47
+ 11336: -13,-48
+ 11337: -10,-46
+ 11343: -16,-40
+ 11345: -20,-49
+ 11346: -19,-50
+ 11347: -16,-50
+ 11356: -27,-46
+ 11357: -23,-47
+ 11358: -34,-47
+ 11359: -35,-46
+ 11360: -38,-48
+ 11361: -37,-46
+ 11362: -38,-44
+ 11363: -40,-43
+ 11364: -39,-41
+ 11365: -36,-42
+ 11380: -38,-15
+ 11381: -36,-13
+ 11382: -32,-14
+ 11386: -27,-13
+ 11387: -25,-13
+ 11388: -25,-14
+ 11390: -23,3
+ 11391: -24,4
+ 11392: -21,6
+ 11393: -24,8
+ 11394: -20,3
+ 11395: -17,4
+ 11396: -13,5
+ 11397: -23,9
+ 11406: -22,12
+ 11408: -30,27
+ 11409: -29,29
+ 11410: -25,28
+ 11411: -21,30
+ 11412: -18,28
+ 11413: -22,33
+ 11414: -19,32
+ 11415: -14,31
+ 11416: -13,29
+ 11425: -23,36
+ 11426: -22,39
+ 11427: -24,46
+ 11428: -24,48
+ 11429: -23,47
+ 11430: -22,46
+ 11437: -23,56
+ 11438: -24,53
+ 11439: -20,55
+ 11443: -12,58
+ 11444: -11,57
+ 11445: -9,57
+ 11452: -4,50
+ 11453: -8,47
+ 11454: -4,45
+ 11461: -2,39
+ 11468: 1,32
+ 11469: 2,29
+ 11470: 3,30
+ 11475: -4,25
+ 11478: -3,32
+ 11479: -1,12
+ 11480: -2,14
+ 11484: 6,13
+ 11485: 8,14
+ 11486: 11,14
- node:
cleanable: True
angle: 3.141592653589793 rad
color: '#FFFFFFFF'
id: DirtHeavy
decals:
- 1665: 5,-5
1668: 6,10
1679: -14,11
1680: -15,9
@@ -3748,9 +4092,6 @@ entities:
6213: 9,-19
6217: 9,-18
6224: 21,-5
- 6237: 23,-36
- 6238: 24,-38
- 6239: 23,-40
6240: 40,-38
6241: 39,-36
6272: -41,-8
@@ -3780,8 +4121,6 @@ entities:
6577: 1,-26
6578: 1,-26
6579: 0,-27
- 7593: 2,-7
- 7594: 1,-6
7622: 40,8
7623: 34,5
7624: 35,3
@@ -4046,6 +4385,114 @@ entities:
10239: -29,-31
10240: -24,-35
11074: -7,-18
+ 11501: 37,-27
+ 11502: 40,-29
+ 11522: 10,-7
+ 11523: 8,-10
+ 11525: 7,13
+ 11544: 22,31
+ 11545: 17,30
+ 11546: 18,27
+ 11547: 21,28
+ 11559: 29,31
+ 11560: 27,30
+ 11627: 0,-7
+ 11628: 2,-6
+ 11629: 2,-7
+ 11630: 0,-5
+ 11638: 5,-6
+ 11639: 6,-7
+ 11643: -5,-11
+ 11715: 30,0
+ 11716: 24,1
+ 11717: 56,-2
+ 11722: 40,-5
+ 11723: 45,-6
+ 11724: 39,-7
+ 11725: 23,-16
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtHeavyMonotile
+ decals:
+ 11088: 21,-36
+ 11089: 19,-38
+ 11090: 20,-40
+ 11091: 38,-38
+ 11092: 39,-36
+ 11093: 40,-40
+ 11130: 28,-34
+ 11131: 30,-36
+ 11132: 28,-37
+ 11133: 27,-39
+ 11134: 30,-40
+ 11135: 26,-41
+ 11136: 25,-36
+ 11137: 25,-33
+ 11138: 34,-33
+ 11139: 34,-37
+ 11140: 33,-39
+ 11141: 34,-41
+ 11142: 31,-42
+ 11143: 30,-39
+ 11144: 35,-31
+ 11145: 37,-32
+ 11146: 39,-31
+ 11147: 39,-29
+ 11148: 33,-28
+ 11166: 25,-25
+ 11167: 27,-24
+ 11168: 24,-23
+ 11169: 23,-21
+ 11170: 28,-21
+ 11171: 29,-24
+ 11172: 29,-26
+ 11249: 52,-21
+ 11250: 53,-18
+ 11251: 46,-16
+ 11252: 46,-23
+ 11253: 46,-27
+ 11254: 50,-26
+ 11255: 55,-28
+ 11256: 62,-26
+ 11257: 59,-23
+ 11258: 58,-20
+ 11259: 59,-16
+ 11260: 62,-16
+ 11261: 55,-15
+ 11262: 52,-14
+ 11281: 42,-9
+ 11282: 33,-14
+ 11283: 31,-11
+ 11286: 32,-8
+ 11318: 13,-31
+ 11319: 12,-26
+ 11320: 12,-23
+ 11341: -17,-39
+ 11342: -16,-41
+ 11350: -19,-49
+ 11351: -17,-49
+ 11372: -38,-39
+ 11373: -38,-47
+ 11374: -33,-47
+ 11375: -40,-36
+ 11383: -43,-16
+ 11384: -37,-15
+ 11385: -27,-14
+ 11400: -23,4
+ 11401: -23,8
+ 11421: -12,31
+ 11422: -11,32
+ 11434: -24,54
+ 11435: -23,53
+ 11436: -21,55
+ 11455: -4,46
+ 11456: -5,50
+ 11463: -2,38
+ 11464: -5,34
+ 11465: -3,33
+ 11466: -2,32
- node:
color: '#FFFFFFFF'
id: DirtLight
@@ -4261,7 +4708,6 @@ entities:
3260: 41,22
3267: -5,35
3268: 0,24
- 3295: 7,-6
4215: -9,30
4216: -7,32
4263: 12,30
@@ -4307,7 +4753,6 @@ entities:
5145: -26,31
5159: -11,24
5170: -3,21
- 5239: -5,-10
5253: 28,-2
5254: 29,-4
5323: -44,-13
@@ -4325,7 +4770,6 @@ entities:
6038: 17,0
6168: 27,36
6242: 39,-36
- 6243: 22,-40
6275: -39,-8
6304: -26,-33
6496: 44,6
@@ -4356,7 +4800,6 @@ entities:
8858: 0,-2
8859: 4,2
8860: 5,-2
- 8861: -5,-3
8895: -12,0
8896: -9,2
8897: -9,-2
@@ -4477,6 +4920,66 @@ entities:
10194: 10,23
10233: -8,-16
11075: -10,-17
+ 11503: 37,-30
+ 11561: 26,31
+ 11562: 34,29
+ 11631: 0,-6
+ 11632: -1,-7
+ 11633: 3,-6
+ 11640: 6,-6
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtLight
+ decals:
+ 11173: 26,-25
+ 11174: 22,-29
+ 11177: 27,-33
+ 11178: 29,-35
+ 11179: 33,-34
+ 11180: 28,-38
+ 11181: 31,-41
+ 11182: 25,-38
+ 11183: 22,-32
+ 11184: 33,-27
+ 11185: 37,-31
+ 11263: 54,-20
+ 11264: 56,-21
+ 11265: 48,-17
+ 11266: 47,-21
+ 11267: 43,-26
+ 11268: 55,-30
+ 11269: 54,-27
+ 11270: 60,-28
+ 11271: 59,-24
+ 11272: 60,-21
+ 11273: 49,-20
+ 11274: 41,-19
+ 11275: 33,-18
+ 11276: 31,-14
+ 11277: 40,-10
+ 11287: 32,-7
+ 11304: 20,-14
+ 11305: 16,-22
+ 11306: 17,-25
+ 11307: 12,-24
+ 11352: -18,-46
+ 11353: -18,-50
+ 11354: -24,-46
+ 11355: -28,-45
+ 11402: -24,5
+ 11403: -24,9
+ 11404: -20,6
+ 11405: -21,12
+ 11423: -14,32
+ 11424: -23,37
+ 11441: -22,54
+ 11442: -13,57
+ 11457: -5,51
+ 11458: -5,49
+ 11459: -3,49
+ 11460: -2,37
- node:
color: '#FFFFFFFF'
id: DirtMedium
@@ -4508,8 +5011,6 @@ entities:
1999: -14,7
2004: -26,12
2006: -14,4
- 2019: 5,-5
- 2020: 6,-5
2024: 6,9
2025: 1,10
2028: 2,16
@@ -4672,7 +5173,6 @@ entities:
5154: -11,25
5172: -2,21
5173: -2,19
- 5229: 6,-6
5241: 5,-10
5242: 14,-4
5255: 27,-4
@@ -4726,9 +5226,6 @@ entities:
6160: 26,36
6162: 27,37
6163: 26,34
- 6231: 24,-36
- 6232: 22,-40
- 6233: 22,-38
6234: 40,-40
6235: 38,-38
6236: 38,-36
@@ -4761,10 +5258,6 @@ entities:
6571: 2,-26
6572: 0,-27
6573: 0,-21
- 7589: 2,-6
- 7590: 3,-5
- 7591: 2,-8
- 7592: 3,-7
7621: 40,7
7629: 38,4
8221: -16,20
@@ -5010,6 +5503,169 @@ entities:
10204: -9,22
11072: -10,-18
11073: -7,-19
+ 11498: 37,-28
+ 11499: 40,-27
+ 11500: 27,-42
+ 11516: -2,-10
+ 11517: 7,-10
+ 11518: 6,-9
+ 11519: 9,-6
+ 11520: 12,-7
+ 11521: 13,-10
+ 11528: 7,41
+ 11529: 10,41
+ 11530: 23,42
+ 11537: 19,27
+ 11538: 18,30
+ 11539: 16,20
+ 11540: 22,28
+ 11541: 21,31
+ 11542: 23,32
+ 11543: 24,34
+ 11556: 27,31
+ 11557: 24,31
+ 11558: 27,25
+ 11623: 0,-8
+ 11624: 2,-8
+ 11625: 3,-7
+ 11626: 0,-4
+ 11636: 5,-5
+ 11637: 7,-7
+ 11644: -6,-10
+ 11697: 48,31
+ 11698: 50,30
+ 11699: 47,27
+ 11700: 46,23
+ 11701: 40,25
+ 11702: 41,29
+ 11703: 40,31
+ 11704: 36,29
+ 11705: 36,22
+ 11706: 42,20
+ 11707: 49,17
+ 11708: 48,14
+ 11709: 46,12
+ 11710: 48,7
+ 11711: 44,7
+ 11712: 47,3
+ 11713: 42,2
+ 11714: 36,1
+ 11721: 45,-5
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: DirtMedium
+ decals:
+ 11085: 19,-40
+ 11086: 21,-38
+ 11087: 20,-36
+ 11097: 38,-40
+ 11098: 40,-38
+ 11099: 40,-36
+ 11100: 26,-33
+ 11101: 28,-36
+ 11102: 31,-34
+ 11103: 28,-33
+ 11104: 31,-37
+ 11105: 28,-39
+ 11106: 26,-38
+ 11107: 29,-42
+ 11108: 32,-41
+ 11109: 31,-40
+ 11110: 34,-38
+ 11111: 34,-27
+ 11112: 33,-29
+ 11113: 36,-32
+ 11114: 40,-31
+ 11115: 38,-29
+ 11116: 27,-28
+ 11117: 25,-29
+ 11118: 24,-32
+ 11119: 22,-31
+ 11158: 26,-26
+ 11159: 27,-25
+ 11160: 24,-25
+ 11161: 24,-22
+ 11162: 23,-20
+ 11163: 24,-18
+ 11164: 29,-18
+ 11165: 28,-22
+ 11231: 45,-26
+ 11232: 48,-27
+ 11233: 47,-23
+ 11234: 49,-21
+ 11235: 57,-20
+ 11236: 52,-22
+ 11237: 45,-15
+ 11238: 51,-16
+ 11239: 54,-15
+ 11240: 58,-15
+ 11241: 59,-19
+ 11242: 60,-27
+ 11243: 57,-30
+ 11244: 47,-30
+ 11245: 45,-28
+ 11246: 44,-26
+ 11247: 40,-23
+ 11248: 40,-19
+ 11280: 40,-12
+ 11285: 32,-6
+ 11312: 12,-31
+ 11313: 13,-30
+ 11314: 14,-32
+ 11315: 15,-31
+ 11323: 9,-31
+ 11324: 10,-32
+ 11325: 8,-29
+ 11326: 6,-32
+ 11327: 4,-31
+ 11328: 5,-26
+ 11338: -13,-47
+ 11339: -11,-46
+ 11340: -13,-43
+ 11344: -15,-40
+ 11348: -17,-50
+ 11349: -18,-49
+ 11366: -40,-42
+ 11367: -38,-41
+ 11368: -37,-44
+ 11369: -34,-39
+ 11370: -37,-38
+ 11371: -40,-39
+ 11376: -40,-35
+ 11377: -43,-17
+ 11378: -43,-15
+ 11379: -42,-16
+ 11389: -25,-12
+ 11398: -23,7
+ 11399: -24,3
+ 11407: -20,12
+ 11417: -28,29
+ 11418: -20,30
+ 11419: -11,31
+ 11420: -12,29
+ 11431: -23,46
+ 11432: -22,48
+ 11433: -22,38
+ 11440: -21,54
+ 11446: -10,57
+ 11447: -11,54
+ 11448: -15,56
+ 11449: -7,56
+ 11450: -6,57
+ 11451: -8,52
+ 11462: -2,35
+ 11471: 2,30
+ 11472: 3,27
+ 11473: 3,27
+ 11474: -1,25
+ 11476: 0,25
+ 11481: -1,14
+ 11482: 2,12
+ 11483: 3,13
+ 11487: 10,14
+ 11488: 3,13
- node:
color: '#52B4E996'
id: FullTileOverlayGreyscale
@@ -5081,6 +5737,7 @@ entities:
decals:
6880: -2,1
6881: 2,1
+ 11614: -1,-5
- node:
color: '#FFFFFFFF'
id: MiniTileDarkCornerSe
@@ -5106,17 +5763,16 @@ entities:
color: '#FFFFFFFF'
id: MiniTileDarkInnerNw
decals:
- 7584: 1,-8
7816: 5,2
8292: -19,24
8293: -19,20
8361: -24,14
+ 11618: 1,-5
- node:
color: '#FFFFFFFF'
id: MiniTileDarkInnerSe
decals:
6821: 6,2
- 7796: -4,-3
8290: -21,26
8291: -22,22
8358: -28,17
@@ -5151,7 +5807,6 @@ entities:
decals:
6890: -1,1
6891: 3,1
- 7583: 0,-8
7809: -2,2
7810: -1,2
7811: 0,2
@@ -5165,6 +5820,7 @@ entities:
8348: -27,14
8349: -26,14
8350: -25,14
+ 11613: 0,-5
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineS
@@ -5185,15 +5841,14 @@ entities:
8725: 19,36
8726: 20,36
8727: 21,36
+ 11592: -5,-3
+ 11593: -4,-3
- node:
color: '#FFFFFFFF'
id: MiniTileDarkLineW
decals:
6886: -2,0
6887: 2,0
- 7561: 1,-6
- 7562: 1,-7
- 7582: 1,-5
7808: 5,3
8299: -19,21
8300: -19,25
@@ -5206,6 +5861,9 @@ entities:
10125: 41,9
10126: 41,8
10127: 41,7
+ 11615: -1,-6
+ 11616: -1,-7
+ 11617: -1,-8
- node:
color: '#FFFFFFFF'
id: MiniTileSteelCornerNe
@@ -6498,10 +7156,8 @@ entities:
10982: -53,-28
10983: -55,-28
11003: -4,-12
- 11004: -5,-4
11007: 9,-12
11008: 13,-9
- 11011: 5,-4
11023: 14,-3
11024: 6,11
11025: 6,4
@@ -6513,6 +7169,7 @@ entities:
11061: 23,3
11062: 9,-28
11077: 12,-35
+ 11581: -4,-9
- node:
color: '#64646493'
id: WarnLineGreyscaleE
@@ -6864,10 +7521,7 @@ entities:
10937: -33,-14
10994: -70,-31
10995: -68,-31
- 10996: -7,-5
11001: 2,-10
- 11015: 4,-6
- 11016: 8,-6
11017: 7,-3
11018: 18,-4
11019: 22,-4
@@ -6882,6 +7536,8 @@ entities:
11053: -9,46
11054: -9,39
11055: -11,39
+ 11578: -7,-10
+ 11579: -2,-8
- node:
color: '#D4D4D496'
id: WarnLineS
@@ -7051,10 +7707,8 @@ entities:
10990: -53,-34
10991: -55,-34
11002: -4,-12
- 11005: -5,-4
11006: 9,-12
11009: 13,-9
- 11010: 5,-4
11022: 14,-3
11028: 6,4
11029: 6,11
@@ -7066,6 +7720,7 @@ entities:
11060: 23,3
11063: 9,-28
11076: 12,-35
+ 11580: -4,-9
- node:
color: '#D4D4D496'
id: WarnLineW
@@ -7221,11 +7876,8 @@ entities:
10933: -33,-14
10992: -70,-31
10993: -68,-31
- 10997: -7,-5
11000: 2,-10
11012: 7,-3
- 11013: 8,-6
- 11014: 4,-6
11020: 18,-4
11021: 22,-4
11032: 5,8
@@ -7239,6 +7891,8 @@ entities:
11057: -9,39
11058: -9,46
11059: -11,46
+ 11576: -2,-8
+ 11577: -7,-10
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerNe
@@ -7257,7 +7911,6 @@ entities:
7508: 2,20
7510: 4,-33
7527: 2,-33
- 7532: 0,-4
9510: -31,-42
9511: -25,-42
9519: -28,-42
@@ -7293,13 +7946,9 @@ entities:
7507: 0,20
7511: -1,-33
7526: 1,-33
- 7533: -3,-4
- 7536: -1,-4
- 7553: -3,-6
9512: -32,-42
9513: -26,-42
9520: -29,-42
- 9525: -27,1
9534: -13,-39
9539: -13,-36
9547: 8,-22
@@ -7312,6 +7961,8 @@ entities:
10168: 36,27
10214: 45,0
10220: 56,1
+ 11563: -5,-4
+ 11820: -28,1
- node:
color: '#FFFFFFFF'
id: WoodTrimThinCornerSe
@@ -7329,7 +7980,6 @@ entities:
7480: -19,-27
7512: 4,-35
7525: 2,-35
- 7557: 0,-7
9516: -31,-44
9517: -25,-44
9523: -25,0
@@ -7360,12 +8010,9 @@ entities:
7481: -26,-24
7513: -1,-35
7524: 1,-35
- 7552: -1,-7
- 7558: -3,-7
9514: -32,-44
9515: -26,-44
9521: -29,-43
- 9526: -27,0
9533: -13,-40
9541: -13,-37
9548: 8,-23
@@ -7380,6 +8027,10 @@ entities:
10219: 56,-3
10311: -21,-27
11078: -1,8
+ 11567: -5,-8
+ 11585: -5,-5
+ 11590: -5,-7
+ 11821: -28,0
- node:
color: '#FFFFFFFF'
id: WoodTrimThinEndS
@@ -7439,8 +8090,6 @@ entities:
7515: 4,-34
7529: 2,-34
7530: -28,-3
- 7545: 0,-5
- 7546: 0,-6
9506: -31,-43
9507: -25,-43
9559: 13,-18
@@ -7466,8 +8115,6 @@ entities:
7509: 1,20
7520: 0,-33
7523: 3,-33
- 7547: -2,-4
- 7554: -2,-6
9528: -26,1
9535: -12,-39
9540: -12,-36
@@ -7477,6 +8124,9 @@ entities:
9831: 1,35
10215: 46,0
10225: 57,1
+ 11570: -4,-4
+ 11571: -3,-4
+ 11823: -27,1
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineS
@@ -7494,7 +8144,6 @@ entities:
7495: -24,-24
7516: 0,-35
7519: 3,-35
- 7559: -2,-7
9527: -26,0
9532: -12,-40
9543: -12,-37
@@ -7502,6 +8151,13 @@ entities:
9556: 12,-20
9572: 31,25
9830: 1,34
+ 11568: -4,-8
+ 11569: -3,-8
+ 11586: -4,-5
+ 11587: -3,-5
+ 11588: -4,-7
+ 11589: -3,-7
+ 11822: -27,0
- node:
color: '#FFFFFFFF'
id: WoodTrimThinLineW
@@ -7531,9 +8187,6 @@ entities:
7514: -1,-34
7528: 1,-34
7531: -29,-3
- 7537: -1,-5
- 7538: -1,-6
- 7544: -3,-5
9508: -32,-43
9509: -26,-43
9550: 11,-18
@@ -7542,6 +8195,11 @@ entities:
10171: 36,25
10173: 36,26
10213: 45,-1
+ 11565: -5,-6
+ 11572: -2,-4
+ 11573: -2,-5
+ 11574: -2,-6
+ 11575: -2,-7
- node:
cleanable: True
angle: 0.6806784082777885 rad
@@ -7594,6 +8252,16 @@ entities:
8253: -21,21
8456: -21,24
8460: -24,26
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: burnt1
+ decals:
+ 11293: 20,-24
+ 11294: 30,-45
+ 11295: 31,-44
+ 11296: 32,-46
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -7625,6 +8293,14 @@ entities:
8251: -21,25
8458: -20,26
8461: -25,25
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: burnt2
+ decals:
+ 11291: 20,-25
+ 11292: 21,-24
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -7674,6 +8350,14 @@ entities:
6561: 2,-21
8457: -19,25
8462: -24,25
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: burnt3
+ decals:
+ 11290: 19,-26
+ 11300: 31,-46
- node:
cleanable: True
color: '#FFFFFFFF'
@@ -7684,7 +8368,6 @@ entities:
3539: 25,26
3540: 34,13
3543: 25,4
- 3549: 7,-7
3550: 4,3
3551: 6,5
3557: -13,7
@@ -7716,6 +8399,17 @@ entities:
6562: 2,-25
6692: -21,-8
8459: -23,24
+ - node:
+ cleanable: True
+ angle: 1.5707963267948966 rad
+ color: '#FFFFFFFF'
+ id: burnt4
+ decals:
+ 11288: 19,-24
+ 11289: 21,-26
+ 11297: 30,-46
+ 11298: 32,-45
+ 11299: 30,-44
- node:
cleanable: True
angle: 2.251474735072685 rad
@@ -7843,8 +8537,7 @@ entities:
-1,1:
0: 7645
0,2:
- 0: 2815
- 1: 1280
+ 0: 4095
-1,2:
0: 3003
0,3:
@@ -7858,8 +8551,7 @@ entities:
1,1:
0: 53237
1,2:
- 0: 19679
- 1: 256
+ 0: 19935
1,3:
0: 28924
1,-1:
@@ -7868,13 +8560,13 @@ entities:
0: 56575
2,0:
0: 1279
- 2: 57344
+ 1: 57344
2,3:
0: 4093
2,-1:
0: 65535
2,1:
- 2: 3822
+ 1: 3822
2,2:
0: 20206
2,4:
@@ -7903,7 +8595,7 @@ entities:
0: 3071
-4,-1:
0: 64272
- 3: 4
+ 2: 4
-5,0:
0: 14847
-4,1:
@@ -7945,7 +8637,7 @@ entities:
-2,4:
0: 30719
-1,-1:
- 0: 65526
+ 0: 65531
-1,4:
0: 29439
0,-4:
@@ -7957,9 +8649,11 @@ entities:
0,-3:
0: 3854
-1,-3:
- 0: 4049
+ 0: 8145
0,-2:
0: 65527
+ -1,-2:
+ 0: 48063
1,-4:
0: 65533
1,-3:
@@ -7999,41 +8693,39 @@ entities:
-5,-4:
0: 65519
-4,-3:
- 3: 80
+ 2: 80
0: 28672
-4,-2:
0: 6007
-5,-3:
0: 49152
- 3: 320
+ 2: 320
-5,-2:
0: 3310
- 3: 4096
+ 2: 4096
-5,-1:
0: 64256
- 3: 4
+ 2: 4
-3,-4:
0: 65529
-3,-3:
- 3: 256
+ 2: 256
0: 52428
-3,-2:
- 3: 4113
+ 2: 4113
0: 52428
-3,-5:
0: 56777
-2,-4:
0: 65529
-2,-3:
- 0: 40401
+ 0: 8145
-2,-2:
- 0: 63931
+ 0: 55739
-2,-5:
0: 65521
-1,-5:
0: 49073
- -1,-2:
- 0: 26214
5,0:
0: 47927
5,1:
@@ -8129,11 +8821,10 @@ entities:
-3,7:
0: 47611
-3,6:
- 0: 742
- 4: 1024
+ 0: 1766
-3,8:
0: 34947
- 3: 768
+ 2: 768
-2,5:
0: 30583
-2,6:
@@ -8203,13 +8894,14 @@ entities:
9,-5:
0: 61661
10,-4:
- 0: 61543
+ 0: 57447
+ 3: 4096
10,-3:
0: 65535
10,-2:
0: 65520
10,-1:
- 0: 65295
+ 0: 61695
10,0:
0: 24017
10,-5:
@@ -8219,7 +8911,7 @@ entities:
11,-5:
0: 65229
11,-3:
- 3: 17638
+ 2: 17638
0: 8
11,-2:
0: 61152
@@ -8231,13 +8923,13 @@ entities:
0: 32767
12,-3:
0: 15
- 3: 39408
+ 2: 39408
12,-2:
0: 4368
- 3: 51400
+ 2: 51400
12,-1:
0: 61440
- 3: 168
+ 2: 168
9,0:
0: 28912
9,1:
@@ -8264,33 +8956,33 @@ entities:
0: 61696
12,2:
0: 511
- 3: 32768
+ 2: 32768
12,3:
0: 53505
- 3: 2184
+ 2: 2184
4,-8:
0: 26222
3,-8:
0: 20477
4,-7:
0: 13095
- 5: 34816
+ 4: 34816
3,-7:
0: 21791
4,-6:
0: 3888
- 5: 8
+ 4: 8
3,-6:
0: 4049
5,-8:
0: 51663
- 3: 4096
+ 2: 4096
5,-7:
- 3: 1
- 5: 13056
+ 2: 1
+ 4: 13056
0: 34958
5,-6:
- 5: 3
+ 4: 3
0: 43912
6,-8:
0: 61183
@@ -8300,7 +8992,9 @@ entities:
0: 65535
6,-5:
0: 259
- 3: 3808
+ 2: 3808
+ 6,-9:
+ 0: 61166
7,-8:
0: 65535
7,-7:
@@ -8331,29 +9025,29 @@ entities:
0: 65520
10,-9:
0: 17984
- 5: 1
- 3: 2444
+ 4: 1
+ 2: 2444
11,-8:
0: 14336
- 3: 200
+ 2: 200
11,-7:
0: 65535
11,-6:
0: 56782
11,-9:
- 3: 35225
+ 2: 35225
12,-8:
- 3: 242
+ 2: 242
0: 32512
12,-7:
0: 16383
- 3: 49152
+ 2: 49152
12,-6:
0: 62225
- 3: 3110
+ 2: 3110
12,-5:
0: 12563
- 3: 50732
+ 2: 50732
0,-8:
0: 2032
0,-9:
@@ -8368,7 +9062,7 @@ entities:
0: 64860
1,-9:
0: 7508
- 3: 128
+ 2: 128
1,-7:
0: 26210
1,-6:
@@ -8380,81 +9074,81 @@ entities:
2,-6:
0: 10096
3,-9:
- 0: 7543
- 3: 128
+ 0: 7511
+ 2: 128
12,-9:
- 3: 29219
+ 2: 29219
13,-8:
- 3: 240
+ 2: 240
0: 2048
13,-7:
0: 32767
- 3: 32768
+ 2: 32768
13,-6:
0: 55074
- 3: 10325
+ 2: 10325
13,-5:
0: 29223
- 3: 34136
+ 2: 34136
13,-4:
0: 4095
14,-8:
- 3: 240
+ 2: 240
0: 32512
14,-7:
0: 61439
- 3: 4096
+ 2: 4096
14,-6:
- 3: 291
+ 2: 291
0: 65228
14,-5:
- 3: 4897
+ 2: 4897
0: 60622
14,-4:
0: 32767
15,-8:
- 3: 32816
+ 2: 32816
15,-7:
0: 30545
- 3: 34952
+ 2: 34952
15,-6:
0: 4439
- 3: 34952
+ 2: 34952
15,-5:
0: 30545
- 3: 34952
+ 2: 34952
15,-4:
0: 343
- 3: 34952
+ 2: 34952
13,-3:
- 3: 240
+ 2: 240
0: 8
13,-1:
0: 63488
- 3: 32
+ 2: 32
14,-3:
0: 15
- 3: 240
+ 2: 240
13,-2:
- 3: 2048
+ 2: 2048
14,-2:
- 3: 24320
+ 2: 24320
14,-1:
0: 65392
13,0:
0: 8
- 3: 32
+ 2: 32
14,0:
0: 127
- 3: 20480
+ 2: 20480
15,-3:
- 3: 248
+ 2: 248
15,-2:
- 3: 12544
+ 2: 12544
15,-1:
- 3: 52806
+ 2: 52806
15,0:
- 3: 13902
+ 2: 13902
-4,-8:
0: 48049
-4,-9:
@@ -8551,13 +9245,12 @@ entities:
0: 4095
-8,-1:
0: 2185
- 3: 4882
+ 2: 4882
-9,-1:
- 3: 3885
+ 2: 3885
0: 2
-8,0:
- 3: 18389
- 0: 2048
+ 2: 18261
-7,-3:
0: 61262
-7,-2:
@@ -8565,7 +9258,7 @@ entities:
-7,-1:
0: 20479
-7,0:
- 0: 238
+ 0: 255
-6,-3:
0: 26470
-6,-2:
@@ -8575,24 +9268,24 @@ entities:
-6,0:
0: 45294
-8,3:
- 3: 25456
+ 2: 25456
-9,3:
- 3: 34816
+ 2: 34816
-8,1:
- 3: 17988
+ 2: 17988
0: 2048
-8,2:
- 3: 1604
+ 2: 1604
0: 2048
-8,4:
- 3: 34614
+ 2: 34614
-7,3:
0: 65358
-7,2:
0: 57352
-7,4:
0: 255
- 3: 57344
+ 2: 57344
-7,1:
0: 8
-6,1:
@@ -8603,7 +9296,7 @@ entities:
0: 64781
-6,4:
0: 3295
- 3: 4096
+ 2: 4096
4,8:
0: 56732
5,4:
@@ -8632,7 +9325,7 @@ entities:
0: 61679
7,8:
0: 11779
- 3: 128
+ 2: 128
8,4:
0: 49072
8,5:
@@ -8642,117 +9335,113 @@ entities:
8,7:
0: 61687
0,-11:
- 3: 2207
+ 2: 2207
0: 45056
0,-10:
0: 65523
-1,-11:
0: 45824
- 3: 4
+ 2: 4
-1,-10:
0: 49081
1,-11:
- 3: 1863
+ 2: 1863
0: 28672
1,-10:
0: 21844
2,-9:
- 3: 49
- 0: 1996
+ 2: 49
+ 0: 1868
2,-12:
- 3: 4593
+ 2: 4593
0: 3084
2,-13:
- 3: 4593
+ 2: 4593
0: 3084
2,-11:
- 3: 4593
+ 2: 4593
0: 3084
2,-10:
- 3: 4593
+ 2: 4593
0: 3084
3,-12:
0: 1991
- 3: 4144
+ 2: 4144
3,-11:
0: 1991
- 3: 4144
+ 2: 4144
3,-10:
0: 1991
- 3: 4144
+ 2: 4144
3,-13:
- 3: 4144
+ 2: 4144
0: 1991
4,-12:
0: 4369
- 3: 17476
+ 2: 17476
4,-11:
- 0: 4369
- 3: 17484
+ 0: 14097
+ 2: 2124
4,-10:
- 0: 4369
- 3: 19532
+ 0: 4881
+ 2: 8226
+ 4: 8
+ 5: 2048
4,-9:
- 0: 3985
- 3: 108
+ 0: 1841
+ 2: 2050
+ 6: 8
4,-13:
0: 4369
- 3: 17476
+ 2: 17476
5,-11:
- 3: 1199
- 0: 6912
+ 2: 687
+ 0: 36096
5,-10:
- 3: 4113
- 0: 256
- 5: 12
- 6: 3072
+ 4: 3
+ 5: 768
+ 2: 32904
+ 0: 2048
5,-9:
- 3: 1025
- 0: 2832
- 7: 12
+ 6: 3
+ 0: 3456
+ 2: 520
5,-12:
- 3: 40960
+ 2: 40960
+ 6,-12:
+ 2: 63624
6,-11:
- 3: 495
- 0: 17920
+ 2: 31
+ 0: 60416
6,-10:
- 5: 1
- 6: 256
- 3: 16452
- 0: 1024
- 6,-9:
- 7: 1
- 3: 260
- 0: 1600
- 6,-12:
- 3: 51336
+ 0: 61166
6,-13:
- 3: 32768
+ 2: 32768
7,-12:
- 3: 4356
- 5: 52224
+ 2: 4356
+ 4: 52224
7,-11:
- 3: 1
- 0: 65024
- 5: 12
+ 2: 1
+ 0: 65280
+ 4: 12
7,-10:
0: 65535
7,-13:
- 3: 65100
+ 2: 65100
8,-12:
- 5: 4352
- 3: 52361
+ 4: 4352
+ 2: 52361
8,-11:
- 5: 1
+ 4: 1
0: 29440
- 3: 140
+ 2: 140
8,-10:
0: 30583
-4,-12:
0: 56796
-4,-13:
0: 4352
- 3: 2252
+ 2: 2252
-5,-12:
0: 3824
-4,-11:
@@ -8765,22 +9454,22 @@ entities:
0: 14193
-3,-11:
0: 36658
- 3: 8
+ 2: 8
-3,-10:
0: 14779
-3,-13:
- 3: 35057
+ 2: 35057
-2,-12:
- 3: 61713
+ 2: 61713
-2,-11:
0: 43776
- 3: 4
+ 2: 4
-2,-10:
0: 43952
-1,-12:
- 3: 28672
+ 2: 28672
-8,-12:
- 3: 10
+ 2: 10
0: 3840
-9,-12:
0: 20192
@@ -8799,47 +9488,48 @@ entities:
-7,-10:
0: 4095
-7,-13:
- 3: 12239
+ 2: 12239
0: 49152
-6,-12:
0: 20464
-6,-10:
0: 36863
-6,-13:
- 3: 6087
+ 2: 6087
-6,-11:
0: 20206
-5,-11:
0: 1911
-5,-13:
- 0: 65024
+ 7: 4096
+ 0: 60928
-12,-4:
0: 65280
-13,-4:
0: 65024
-12,-3:
0: 2063
- 3: 42752
+ 2: 42752
-13,-3:
0: 15
- 3: 3584
+ 2: 3584
-12,-2:
- 3: 26282
+ 2: 26282
0: 34816
-12,-1:
- 3: 3626
+ 2: 3626
-11,-4:
0: 61678
-11,-3:
0: 61135
-11,-1:
0: 3
- 3: 3900
+ 2: 3900
-11,-2:
0: 3822
-11,-5:
0: 25668
- 3: 1
+ 2: 1
-10,-4:
0: 29935
-10,-3:
@@ -8847,20 +9537,20 @@ entities:
-10,-2:
0: 4095
-10,-1:
- 3: 3885
+ 2: 3885
0: 2
-12,-8:
0: 4095
-13,-8:
0: 4095
-12,-7:
- 3: 12
+ 2: 12
-11,-8:
0: 20479
-11,-7:
0: 18022
-11,-6:
- 3: 1
+ 2: 1
0: 17476
-11,-9:
0: 41843
@@ -8875,118 +9565,118 @@ entities:
-10,-9:
0: 47803
-12,7:
- 3: 10098
+ 2: 10098
-13,7:
- 3: 48945
+ 2: 48945
-12,6:
- 3: 11976
+ 2: 11976
-12,8:
- 3: 8823
+ 2: 8823
-11,6:
- 3: 15
+ 2: 15
-11,7:
0: 25326
-11,8:
0: 3810
-10,6:
- 3: 19
+ 2: 19
0: 49152
-10,7:
0: 65533
-10,5:
- 3: 61440
+ 2: 61440
-10,8:
0: 52735
-9,5:
- 3: 28672
+ 2: 28672
-9,6:
0: 53248
- 3: 78
+ 2: 78
-9,7:
0: 56733
-9,8:
0: 56733
-9,4:
- 3: 136
+ 2: 136
-8,6:
- 3: 239
+ 2: 239
0: 21504
-8,7:
0: 63941
8,-13:
- 3: 62225
+ 2: 62225
9,-12:
- 3: 36864
+ 2: 36864
9,-11:
- 3: 1215
+ 2: 1215
0: 6912
9,-10:
- 3: 4113
+ 2: 4113
0: 256
- 5: 12
+ 4: 12
8: 3072
9,-9:
- 3: 1025
+ 2: 1025
0: 2832
- 5: 12
+ 4: 12
10,-11:
- 3: 295
+ 2: 295
0: 17920
10,-10:
- 5: 1
+ 4: 1
8: 256
- 3: 18508
+ 2: 18508
0: 1024
10,-12:
- 3: 8192
+ 2: 8192
11,-10:
- 3: 65529
+ 2: 65529
11,-11:
- 3: 39304
+ 2: 39304
11,-12:
- 3: 34944
+ 2: 34944
12,-12:
- 3: 8994
+ 2: 8994
12,-11:
- 3: 562
+ 2: 562
12,-10:
- 3: 8960
+ 2: 8960
4,-15:
- 3: 22272
+ 2: 22272
3,-15:
- 3: 20224
+ 2: 20224
4,-14:
0: 4369
- 3: 17476
+ 2: 17476
3,-14:
0: 1991
- 3: 6192
+ 2: 6192
6,-15:
- 3: 49152
+ 2: 49152
6,-14:
- 3: 200
+ 2: 200
7,-15:
- 3: 61440
+ 2: 61440
7,-14:
- 3: 20212
+ 2: 20212
8,-15:
- 3: 61440
+ 2: 61440
8,-14:
- 3: 5113
+ 2: 5113
9,-15:
- 3: 4096
+ 2: 4096
9,-14:
- 3: 112
+ 2: 112
-8,8:
0: 23821
- 3: 32768
+ 2: 32768
-8,5:
- 3: 34952
+ 2: 34952
-7,5:
- 3: 8240
+ 2: 8240
0: 2176
-7,6:
- 3: 273
+ 2: 273
0: 2730
-7,7:
0: 64543
@@ -9002,58 +9692,58 @@ entities:
0: 24669
-5,8:
0: 15
- 3: 256
+ 2: 256
-12,-9:
- 3: 1024
+ 2: 1024
-12,-10:
- 3: 128
+ 2: 128
-11,-10:
- 3: 112
+ 2: 112
0: 28672
-10,-11:
0: 65535
-10,-10:
0: 11252
-10,-12:
- 3: 273
+ 2: 273
0: 19652
-10,-13:
- 3: 4096
+ 2: 4096
0: 16384
-9,-11:
0: 21845
-9,-13:
- 3: 55296
+ 2: 55296
-4,-16:
- 3: 20224
+ 2: 20224
-5,-16:
- 3: 40704
+ 2: 40704
-4,-15:
- 3: 15
+ 2: 15
-5,-15:
- 3: 15
+ 2: 15
-3,-16:
- 3: 9984
+ 2: 9984
-3,-15:
- 3: 7
+ 2: 7
-8,-13:
- 3: 3976
+ 2: 3976
-8,-16:
- 3: 35840
+ 2: 35840
-8,-15:
- 3: 12
+ 2: 12
-7,-16:
- 3: 12032
+ 2: 12032
-7,-15:
- 3: 58095
+ 2: 58095
-7,-14:
- 3: 11980
+ 2: 11980
-6,-16:
- 3: 24320
+ 2: 24320
-6,-15:
- 3: 4383
+ 2: 4383
-6,-14:
- 3: 4352
+ 2: 4352
-16,-8:
0: 61439
-17,-8:
@@ -9061,13 +9751,13 @@ entities:
-16,-7:
0: 10
-17,-7:
- 3: 8
+ 2: 8
-16,-9:
0: 59904
-15,-8:
0: 4095
-15,-7:
- 3: 10
+ 2: 10
-14,-8:
0: 61439
-14,-7:
@@ -9075,55 +9765,55 @@ entities:
-14,-9:
0: 59904
-13,-7:
- 3: 2
+ 2: 2
-19,-7:
- 3: 58436
+ 2: 58436
-19,-6:
- 3: 43690
+ 2: 43690
-19,-5:
- 3: 17642
+ 2: 17642
-19,-8:
- 3: 19592
+ 2: 19592
-19,-4:
- 3: 35908
+ 2: 35908
-19,-9:
- 3: 32768
+ 2: 32768
-18,-8:
- 3: 4898
+ 2: 4898
0: 2248
-18,-7:
- 3: 4369
+ 2: 4369
-18,-5:
- 3: 4368
+ 2: 4368
-18,-4:
- 3: 28433
+ 2: 28433
-18,-9:
- 3: 12288
+ 2: 12288
-17,-9:
- 3: 2048
+ 2: 2048
-15,-9:
- 3: 2560
+ 2: 2560
-13,-9:
- 3: 512
+ 2: 512
-16,-4:
- 3: 20224
+ 2: 20224
-17,-4:
- 3: 20224
+ 2: 20224
-16,-3:
- 3: 244
+ 2: 244
-17,-3:
- 3: 244
+ 2: 244
-15,-4:
- 3: 10112
+ 2: 10112
-15,-3:
- 3: 2162
+ 2: 2162
-14,-4:
0: 64170
-14,-3:
0: 43695
8,8:
0: 1004
- 3: 11280
+ 2: 11280
9,4:
0: 65520
9,5:
@@ -9133,8 +9823,8 @@ entities:
9,7:
0: 55536
9,8:
- 0: 49
- 3: 43968
+ 0: 8753
+ 2: 35264
10,4:
0: 56784
10,5:
@@ -9145,7 +9835,7 @@ entities:
0: 55551
10,8:
0: 12
- 3: 16
+ 2: 16
11,5:
0: 64791
11,6:
@@ -9154,7 +9844,7 @@ entities:
0: 64541
11,8:
0: 1
- 3: 192
+ 2: 192
12,4:
0: 35832
12,5:
@@ -9170,7 +9860,7 @@ entities:
1,9:
0: 65535
1,10:
- 3: 16
+ 2: 16
0: 2248
2,9:
0: 65535
@@ -9179,62 +9869,65 @@ entities:
3,9:
0: 65535
3,10:
- 3: 16
+ 2: 16
4,9:
0: 57311
4,10:
- 3: 16
+ 2: 16
0: 12
5,9:
0: 64443
5,10:
0: 34959
- 3: 8704
+ 2: 8704
5,11:
- 3: 2
+ 2: 2
0: 52424
5,12:
- 3: 17476
+ 2: 17476
0: 34952
6,9:
0: 7645
6,10:
0: 13
- 3: 8896
+ 2: 8896
6,11:
0: 13104
- 3: 2
+ 2: 2
6,12:
- 3: 4369
+ 2: 4369
7,10:
- 0: 10987
- 3: 16
+ 0: 2059
+ 2: 8944
7,9:
- 0: 10986
+ 0: 10794
+ 2: 192
7,11:
- 0: 10986
+ 2: 8930
+ 0: 2056
7,12:
- 0: 10986
+ 2: 8930
+ 0: 2056
8,9:
- 0: 3855
- 3: 8432
+ 0: 3983
+ 2: 8304
8,10:
- 0: 3855
- 3: 8432
+ 0: 3983
+ 2: 8304
8,11:
- 0: 3855
- 3: 8432
+ 0: 3983
+ 2: 8304
-3,9:
- 3: 32
+ 2: 32
0: 57480
-3,10:
- 3: 32
+ 2: 32
0: 34944
-3,11:
- 3: 2
+ 2: 2
0: 3592
-3,12:
- 3: 8194
+ 2: 8194
0: 34952
-2,9:
0: 30523
@@ -9248,240 +9941,245 @@ entities:
0: 21873
-1,10:
0: 4369
- 3: 17472
+ 2: 17472
-1,11:
0: 4913
-1,12:
0: 4403
- 3: 16384
+ 2: 16384
8,12:
- 0: 3855
- 3: 8432
+ 0: 3983
+ 2: 8304
9,9:
- 3: 43770
+ 0: 8754
+ 2: 35016
9,10:
- 3: 43770
+ 0: 8754
+ 2: 35016
9,11:
- 3: 43770
+ 0: 8754
+ 2: 35016
9,12:
- 3: 43770
+ 0: 8754
+ 2: 35016
12,8:
- 3: 16
+ 2: 16
0: 76
13,8:
0: 17
- 3: 76
+ 2: 76
13,7:
0: 4352
- 3: 19522
+ 2: 19522
14,8:
- 3: 34959
+ 2: 34959
14,7:
- 3: 53128
+ 2: 53128
15,8:
- 3: 8448
+ 2: 8448
14,9:
- 3: 2184
+ 2: 2184
15,9:
- 3: 8754
+ 2: 8754
13,4:
0: 13107
- 3: 52416
+ 2: 52416
13,5:
0: 19
- 3: 8800
+ 2: 8800
13,6:
0: 16
- 3: 8802
+ 2: 8802
13,3:
0: 4096
- 3: 8192
+ 2: 8192
14,4:
- 3: 65276
+ 2: 65276
14,5:
- 3: 34956
+ 2: 34956
14,3:
- 3: 34952
+ 2: 34952
15,4:
- 3: 12850
+ 2: 12850
15,5:
- 3: 8994
+ 2: 8994
14,6:
- 3: 32776
+ 2: 32776
15,7:
- 3: 12835
+ 2: 12835
15,6:
- 3: 8754
+ 2: 8754
15,3:
- 3: 8994
+ 2: 8994
-8,9:
- 3: 3840
+ 2: 3840
0: 12
-9,9:
- 3: 32320
+ 2: 32320
-7,9:
0: 1
- 3: 18368
+ 2: 18368
-7,10:
- 3: 43694
+ 2: 43694
-7,11:
- 3: 9742
+ 2: 9742
-7,12:
- 3: 34822
+ 2: 34822
-6,11:
0: 30498
- 3: 8
+ 2: 8
-6,9:
0: 26214
-6,10:
0: 8738
- 3: 128
+ 2: 128
-6,12:
0: 26119
-13,8:
- 3: 4415
+ 2: 4415
-12,9:
- 3: 2254
+ 2: 2254
-11,9:
- 3: 3840
+ 2: 3840
-10,9:
- 3: 62224
+ 2: 62224
-14,8:
- 3: 2127
+ 2: 2127
-14,7:
- 3: 24428
+ 2: 24428
-14,9:
- 3: 17600
+ 2: 17600
-14,10:
- 3: 76
+ 2: 76
-13,9:
- 3: 4369
+ 2: 4369
-13,10:
- 3: 17
+ 2: 17
-14,5:
- 3: 19520
+ 2: 19520
-14,6:
- 3: 17604
+ 2: 17604
-13,5:
- 3: 4369
+ 2: 4369
-13,6:
- 3: 4369
+ 2: 4369
-13,4:
- 3: 4096
+ 2: 4096
-4,13:
0: 61440
- 3: 64
+ 2: 64
-4,14:
0: 139
- 3: 8960
+ 2: 8960
-5,13:
0: 61696
- 3: 64
+ 2: 64
-5,14:
0: 8
- 3: 35840
+ 2: 35840
-4,15:
- 3: 63266
+ 2: 63266
-5,15:
- 3: 64648
+ 2: 64648
-4,16:
- 3: 146
+ 2: 146
-3,13:
0: 65288
- 3: 2
+ 2: 2
-3,14:
0: 2032
-3,15:
- 3: 63488
+ 2: 63488
-3,16:
- 3: 249
+ 2: 249
-2,13:
0: 19859
-2,14:
- 3: 61440
+ 2: 61440
0: 102
-2,15:
- 3: 65433
+ 2: 65433
-2,16:
- 3: 244
+ 2: 244
-1,13:
0: 273
- 3: 35020
+ 2: 35020
-1,14:
- 3: 6047
+ 2: 6047
-1,15:
- 3: 28928
+ 2: 28928
-1,16:
- 3: 2
+ 2: 2
-7,15:
- 3: 61440
+ 2: 61440
-7,13:
- 3: 8800
+ 2: 8800
-7,14:
- 3: 98
+ 2: 98
0: 32768
-7,16:
- 3: 228
+ 2: 228
-6,13:
0: 40822
-6,14:
0: 12595
- 3: 51328
+ 2: 51328
-6,15:
- 3: 61440
+ 2: 61440
-6,16:
- 3: 242
+ 2: 242
-5,16:
- 3: 249
+ 2: 249
5,13:
- 3: 8740
+ 2: 8740
0: 52424
5,14:
- 3: 12
+ 2: 12
6,13:
- 3: 8737
+ 2: 8737
0: 4368
6,14:
- 3: 1
+ 2: 1
7,13:
- 0: 2794
- 3: 40960
+ 2: 41698
+ 0: 2056
7,14:
- 3: 14
+ 2: 14
8,13:
- 0: 3855
- 3: 33008
+ 0: 3983
+ 2: 32880
8,14:
- 3: 15
+ 2: 127
12,0:
- 3: 32
+ 2: 32
13,1:
- 3: 50696
+ 2: 50696
0: 8192
13,2:
0: 34
- 3: 1740
+ 2: 1740
14,1:
- 3: 15
+ 2: 15
15,1:
- 3: 1
+ 2: 1
14,2:
- 3: 34944
+ 2: 34944
15,2:
- 3: 62064
+ 2: 62064
2,-15:
- 3: 24320
+ 2: 24320
2,-14:
- 3: 4593
+ 2: 4593
0: 3084
9,13:
- 3: 43770
+ 0: 562
+ 2: 43208
9,14:
- 3: 15
+ 2: 15
-19,-3:
- 3: 136
+ 2: 136
-18,-3:
- 3: 246
+ 2: 246
uniqueMixes:
- volume: 2500
temperature: 293.15
@@ -9498,21 +10196,6 @@ entities:
- 0
- 0
- 0
- - volume: 2500
- temperature: 293.15
- moles:
- - 21.6852
- - 81.57766
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- - 0
- volume: 2500
temperature: 235
moles:
@@ -9603,6 +10286,21 @@ entities:
- 0
- 0
- 0
+ - volume: 2500
+ temperature: 293.15
+ moles:
+ - 21.823984
+ - 82.09976
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
+ - 0
- volume: 2500
temperature: 293.15
moles:
@@ -9651,6 +10349,11 @@ entities:
- 486
- 716
- 454
+ - 5993
+ - 3439
+ - 5992
+ - 3815
+ - 14702
- uid: 811
components:
- type: MetaData
@@ -9664,10 +10367,10 @@ entities:
- 2691
- 824
- 901
- - 853
- - 16330
- - 16329
- - 16331
+ - 3815
+ - 3439
+ - 5992
+ - 5993
- 1628
- 263
- 264
@@ -9680,6 +10383,7 @@ entities:
- 197
- 243
- 1619
+ - 14702
- uid: 813
components:
- type: MetaData
@@ -10462,23 +11166,6 @@ entities:
- 10886
- 11195
- 5310
- - uid: 12673
- components:
- - type: MetaData
- name: air alarm (Atmospherics)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 27.5,-33.5
- parent: 2
- - type: DeviceList
- devices:
- - 9478
- - 7484
- - 9011
- - 13836
- - 13834
- - 13835
- - 13850
- uid: 12674
components:
- type: MetaData
@@ -11403,6 +12090,23 @@ entities:
- 12404
- 10840
- 10841
+ - uid: 14575
+ components:
+ - type: MetaData
+ name: air alarm (Atmospherics)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 24.5,-32.5
+ parent: 2
+ - type: DeviceList
+ devices:
+ - 9478
+ - 7484
+ - 9011
+ - 13836
+ - 13834
+ - 13835
+ - 13850
- uid: 14751
components:
- type: MetaData
@@ -11507,6 +12211,11 @@ entities:
- type: Transform
pos: -33.5,27.5
parent: 2
+ - uid: 6003
+ components:
+ - type: Transform
+ pos: 27.5,-41.5
+ parent: 2
- uid: 6295
components:
- type: Transform
@@ -11634,6 +12343,14 @@ entities:
rot: -1.5707963267948966 rad
pos: 4.5,-5.5
parent: 2
+ - uid: 5991
+ components:
+ - type: MetaData
+ name: airlock (Bar)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -1.5,-7.5
+ parent: 2
- proto: AirlockBrigGlassLocked
entities:
- uid: 1939
@@ -11816,20 +12533,6 @@ entities:
- type: Transform
pos: -23.5,-7.5
parent: 2
- - uid: 4571
- components:
- - type: MetaData
- name: glass airlock (Bridge Evac)
- - type: Transform
- pos: -40.5,-10.5
- parent: 2
- - uid: 4574
- components:
- - type: MetaData
- name: glass airlock (Bridge Evac)
- - type: Transform
- pos: -41.5,-10.5
- parent: 2
- proto: AirlockCommandLocked
entities:
- uid: 50
@@ -11860,6 +12563,20 @@ entities:
- type: Transform
pos: -52.5,-10.5
parent: 2
+ - uid: 4571
+ components:
+ - type: MetaData
+ name: airlock (Bridge Evac)
+ - type: Transform
+ pos: -41.5,-10.5
+ parent: 2
+ - uid: 4574
+ components:
+ - type: MetaData
+ name: airlock (Bridge Evac)
+ - type: Transform
+ pos: -40.5,-10.5
+ parent: 2
- uid: 5451
components:
- type: MetaData
@@ -12078,6 +12795,20 @@ entities:
rot: 1.5707963267948966 rad
pos: -7.5,-41.5
parent: 2
+ - uid: 9617
+ components:
+ - type: MetaData
+ name: airlock (Station Anchor)
+ - type: Transform
+ pos: 44.5,-5.5
+ parent: 2
+ - uid: 11339
+ components:
+ - type: MetaData
+ name: airlock (Gravity Generator)
+ - type: Transform
+ pos: 38.5,-5.5
+ parent: 2
- proto: AirlockEVAGlassLocked
entities:
- uid: 1710
@@ -12099,7 +12830,7 @@ entities:
- uid: 1717
components:
- type: MetaData
- name: maintenance airlock (EVA)
+ name: maintenance access (EVA)
- type: Transform
pos: 20.5,-18.5
parent: 2
@@ -12983,11 +13714,6 @@ entities:
- type: Transform
pos: -2.5,13.5
parent: 2
- - uid: 693
- components:
- - type: Transform
- pos: -6.5,-4.5
- parent: 2
- uid: 694
components:
- type: Transform
@@ -12998,14 +13724,6 @@ entities:
- type: Transform
pos: -3.5,-11.5
parent: 2
- - uid: 858
- components:
- - type: MetaData
- name: maintenance access (Service)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-3.5
- parent: 2
- uid: 1141
components:
- type: Transform
@@ -13223,7 +13941,7 @@ entities:
pos: 47.5,5.5
parent: 2
- type: Door
- secondsUntilStateChange: -256594.28
+ secondsUntilStateChange: -282233.8
state: Opening
- type: DeviceLinkSource
lastSignals:
@@ -13264,11 +13982,24 @@ entities:
- type: Transform
pos: -10.5,-43.5
parent: 2
+ - uid: 14357
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
- uid: 14554
components:
- type: Transform
pos: -12.5,56.5
parent: 2
+ - uid: 15509
+ components:
+ - type: MetaData
+ name: maintenance access (Service)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-8.5
+ parent: 2
- proto: AirlockMaintMedLocked
entities:
- uid: 459
@@ -14118,7 +14849,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
+ - 14575
- uid: 10064
components:
- type: Transform
@@ -14868,6 +15599,36 @@ entities:
- type: Transform
pos: -34.5,-22.5
parent: 2
+- proto: AmeController
+ entities:
+ - uid: 2508
+ components:
+ - type: Transform
+ pos: 40.5,-10.5
+ parent: 2
+- proto: AmePartFlatpack
+ entities:
+ - uid: 4557
+ components:
+ - type: Transform
+ parent: 15672
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 4558
+ components:
+ - type: Transform
+ parent: 15672
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
+ - uid: 4591
+ components:
+ - type: Transform
+ parent: 15672
+ - type: Physics
+ canCollide: False
+ - type: InsideEntityStorage
- proto: APCBasic
entities:
- uid: 45
@@ -15047,6 +15808,14 @@ entities:
- type: Transform
pos: -24.5,-40.5
parent: 2
+ - uid: 4449
+ components:
+ - type: MetaData
+ name: APC (Bar)
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 3.5,-7.5
+ parent: 2
- uid: 4473
components:
- type: MetaData
@@ -15387,13 +16156,13 @@ entities:
- type: Transform
pos: 40.5,-17.5
parent: 2
- - uid: 8786
+ - uid: 8945
components:
- type: MetaData
name: APC (Atmospherics)
- type: Transform
rot: 3.141592653589793 rad
- pos: 26.5,-32.5
+ pos: 35.5,-32.5
parent: 2
- uid: 9101
components:
@@ -15658,14 +16427,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-33.5
parent: 2
- - uid: 16346
- components:
- - type: MetaData
- name: APC (Bar)
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -0.5,-7.5
- parent: 2
- proto: APCElectronics
entities:
- uid: 2249
@@ -15719,10 +16480,10 @@ entities:
parent: 2
- proto: Ashtray
entities:
- - uid: 208
+ - uid: 195
components:
- type: Transform
- pos: -2.688402,-7.2815943
+ pos: -4.5188475,-6.370361
parent: 2
- uid: 296
components:
@@ -15747,7 +16508,7 @@ entities:
- uid: 14508
components:
- type: Transform
- pos: 33.39071,57.45458
+ pos: 33.491795,61.631714
parent: 2
- uid: 16380
components:
@@ -15895,6 +16656,11 @@ entities:
parent: 2
- proto: AtmosFixBlockerMarker
entities:
+ - uid: 2385
+ components:
+ - type: Transform
+ pos: 20.5,-39.5
+ parent: 2
- uid: 2449
components:
- type: Transform
@@ -15910,21 +16676,6 @@ entities:
- type: Transform
pos: 40.5,-35.5
parent: 2
- - uid: 2452
- components:
- - type: Transform
- pos: 22.5,-39.5
- parent: 2
- - uid: 2453
- components:
- - type: Transform
- pos: 23.5,-39.5
- parent: 2
- - uid: 2454
- components:
- - type: Transform
- pos: 24.5,-39.5
- parent: 2
- uid: 2455
components:
- type: Transform
@@ -15940,6 +16691,16 @@ entities:
- type: Transform
pos: 40.5,-39.5
parent: 2
+ - uid: 8943
+ components:
+ - type: Transform
+ pos: 21.5,-39.5
+ parent: 2
+ - uid: 12715
+ components:
+ - type: Transform
+ pos: 19.5,-39.5
+ parent: 2
- uid: 12733
components:
- type: Transform
@@ -16094,37 +16855,37 @@ entities:
parent: 2
- proto: AtmosFixNitrogenMarker
entities:
- - uid: 2440
+ - uid: 14549
components:
- type: Transform
- pos: 22.5,-35.5
+ pos: 19.5,-35.5
parent: 2
- - uid: 2441
+ - uid: 14551
components:
- type: Transform
- pos: 23.5,-35.5
+ pos: 20.5,-35.5
parent: 2
- - uid: 2442
+ - uid: 14552
components:
- type: Transform
- pos: 24.5,-35.5
+ pos: 21.5,-35.5
parent: 2
- proto: AtmosFixOxygenMarker
entities:
- - uid: 2443
+ - uid: 2323
components:
- type: Transform
- pos: 22.5,-37.5
+ pos: 19.5,-37.5
parent: 2
- - uid: 2444
+ - uid: 8942
components:
- type: Transform
- pos: 23.5,-37.5
+ pos: 20.5,-37.5
parent: 2
- - uid: 2445
+ - uid: 14548
components:
- type: Transform
- pos: 24.5,-37.5
+ pos: 21.5,-37.5
parent: 2
- proto: AtmosFixPlasmaMarker
entities:
@@ -16800,7 +17561,7 @@ entities:
- uid: 16340
components:
- type: Transform
- pos: 1.4589906,-2.4393148
+ pos: 1.6190121,-2.3009129
parent: 2
- proto: BooksBag
entities:
@@ -16902,18 +17663,18 @@ entities:
parent: 2
- proto: BoozeDispenser
entities:
- - uid: 323
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 2.5,-7.5
- parent: 2
- uid: 8604
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 59.5,0.5
parent: 2
+ - uid: 13974
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
+ parent: 2
- proto: BorgCharger
entities:
- uid: 5132
@@ -16936,6 +17697,13 @@ entities:
- type: Transform
pos: -35.5,32.5
parent: 2
+- proto: BorgChargerCircuitboard
+ entities:
+ - uid: 16400
+ components:
+ - type: Transform
+ pos: 31.979313,-18.066778
+ parent: 2
- proto: BoxBodyBag
entities:
- uid: 4064
@@ -16987,7 +17755,7 @@ entities:
- uid: 16013
components:
- type: Transform
- pos: 10.5347595,-19.391357
+ pos: 13.292512,-18.000015
parent: 2
- uid: 16014
components:
@@ -17072,7 +17840,7 @@ entities:
- uid: 16009
components:
- type: Transform
- pos: 23.632082,-10.817182
+ pos: 23.14036,-10.470763
parent: 2
- uid: 16010
components:
@@ -17461,12 +18229,6 @@ entities:
parent: 2
- proto: ButtonFrameJanitor
entities:
- - uid: 996
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-3.5
- parent: 2
- uid: 6028
components:
- type: Transform
@@ -17477,6 +18239,12 @@ entities:
- type: Transform
pos: -26.5,-6.5
parent: 2
+ - uid: 15679
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-3.5
+ parent: 2
- uid: 15854
components:
- type: Transform
@@ -17555,11 +18323,6 @@ entities:
parent: 2
- proto: CableApcExtension
entities:
- - uid: 5
- components:
- - type: Transform
- pos: -2.5,-4.5
- parent: 2
- uid: 117
components:
- type: Transform
@@ -17575,21 +18338,11 @@ entities:
- type: Transform
pos: -13.5,24.5
parent: 2
- - uid: 195
- components:
- - type: Transform
- pos: -0.5,-7.5
- parent: 2
- uid: 267
components:
- type: Transform
pos: -1.5,-8.5
parent: 2
- - uid: 325
- components:
- - type: Transform
- pos: -2.5,-5.5
- parent: 2
- uid: 378
components:
- type: Transform
@@ -17615,21 +18368,6 @@ entities:
- type: Transform
pos: 23.5,37.5
parent: 2
- - uid: 495
- components:
- - type: Transform
- pos: -4.5,-4.5
- parent: 2
- - uid: 496
- components:
- - type: Transform
- pos: -4.5,-7.5
- parent: 2
- - uid: 497
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- uid: 504
components:
- type: Transform
@@ -18075,30 +18813,10 @@ entities:
- type: Transform
pos: -4.5,9.5
parent: 2
- - uid: 732
- components:
- - type: Transform
- pos: -1.5,-5.5
- parent: 2
- - uid: 754
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 755
- components:
- - type: Transform
- pos: -4.5,-9.5
- parent: 2
- - uid: 756
- components:
- - type: Transform
- pos: -4.5,-5.5
- parent: 2
- - uid: 757
+ - uid: 721
components:
- type: Transform
- pos: -3.5,-9.5
+ pos: 42.5,-3.5
parent: 2
- uid: 758
components:
@@ -18360,6 +19078,11 @@ entities:
- type: Transform
pos: 40.5,-5.5
parent: 2
+ - uid: 1799
+ components:
+ - type: Transform
+ pos: 32.5,-30.5
+ parent: 2
- uid: 1817
components:
- type: Transform
@@ -18390,16 +19113,141 @@ entities:
- type: Transform
pos: -8.5,-41.5
parent: 2
+ - uid: 2206
+ components:
+ - type: Transform
+ pos: 29.5,-41.5
+ parent: 2
+ - uid: 2207
+ components:
+ - type: Transform
+ pos: 30.5,-41.5
+ parent: 2
+ - uid: 2209
+ components:
+ - type: Transform
+ pos: 26.5,-34.5
+ parent: 2
+ - uid: 2210
+ components:
+ - type: Transform
+ pos: 26.5,-35.5
+ parent: 2
+ - uid: 2212
+ components:
+ - type: Transform
+ pos: 26.5,-36.5
+ parent: 2
+ - uid: 2214
+ components:
+ - type: Transform
+ pos: 26.5,-37.5
+ parent: 2
+ - uid: 2220
+ components:
+ - type: Transform
+ pos: 26.5,-38.5
+ parent: 2
+ - uid: 2224
+ components:
+ - type: Transform
+ pos: 26.5,-39.5
+ parent: 2
+ - uid: 2225
+ components:
+ - type: Transform
+ pos: 27.5,-39.5
+ parent: 2
+ - uid: 2227
+ components:
+ - type: Transform
+ pos: 29.5,-40.5
+ parent: 2
+ - uid: 2228
+ components:
+ - type: Transform
+ pos: 33.5,-40.5
+ parent: 2
- uid: 2271
components:
- type: Transform
pos: -2.5,-17.5
parent: 2
+ - uid: 2311
+ components:
+ - type: Transform
+ pos: 28.5,-39.5
+ parent: 2
+ - uid: 2341
+ components:
+ - type: Transform
+ pos: 33.5,-41.5
+ parent: 2
+ - uid: 2374
+ components:
+ - type: Transform
+ pos: 31.5,-41.5
+ parent: 2
+ - uid: 2376
+ components:
+ - type: Transform
+ pos: 26.5,-33.5
+ parent: 2
+ - uid: 2377
+ components:
+ - type: Transform
+ pos: 26.5,-32.5
+ parent: 2
+ - uid: 2378
+ components:
+ - type: Transform
+ pos: 24.5,-42.5
+ parent: 2
+ - uid: 2379
+ components:
+ - type: Transform
+ pos: 23.5,-42.5
+ parent: 2
+ - uid: 2383
+ components:
+ - type: Transform
+ pos: 31.5,-30.5
+ parent: 2
+ - uid: 2417
+ components:
+ - type: Transform
+ pos: 23.5,-37.5
+ parent: 2
+ - uid: 2435
+ components:
+ - type: Transform
+ pos: 23.5,-39.5
+ parent: 2
+ - uid: 2440
+ components:
+ - type: Transform
+ pos: 22.5,-35.5
+ parent: 2
+ - uid: 2495
+ components:
+ - type: Transform
+ pos: 23.5,-35.5
+ parent: 2
+ - uid: 2514
+ components:
+ - type: Transform
+ pos: 23.5,-36.5
+ parent: 2
- uid: 2569
components:
- type: Transform
pos: -6.5,21.5
parent: 2
+ - uid: 2582
+ components:
+ - type: Transform
+ pos: 23.5,-41.5
+ parent: 2
- uid: 2674
components:
- type: Transform
@@ -18460,11 +19308,6 @@ entities:
- type: Transform
pos: 12.5,-32.5
parent: 2
- - uid: 2813
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 2
- uid: 2830
components:
- type: Transform
@@ -18500,6 +19343,21 @@ entities:
- type: Transform
pos: 3.5,-5.5
parent: 2
+ - uid: 2943
+ components:
+ - type: Transform
+ pos: 23.5,-40.5
+ parent: 2
+ - uid: 2944
+ components:
+ - type: Transform
+ pos: 32.5,-41.5
+ parent: 2
+ - uid: 2949
+ components:
+ - type: Transform
+ pos: 23.5,-38.5
+ parent: 2
- uid: 2986
components:
- type: Transform
@@ -18515,11 +19373,6 @@ entities:
- type: Transform
pos: 1.5,-5.5
parent: 2
- - uid: 3001
- components:
- - type: Transform
- pos: -0.5,-5.5
- parent: 2
- uid: 3011
components:
- type: Transform
@@ -18535,6 +19388,11 @@ entities:
- type: Transform
pos: -50.5,-12.5
parent: 2
+ - uid: 3232
+ components:
+ - type: Transform
+ pos: 21.5,-35.5
+ parent: 2
- uid: 3239
components:
- type: Transform
@@ -22720,11 +23578,6 @@ entities:
- type: Transform
pos: 44.5,-27.5
parent: 2
- - uid: 8889
- components:
- - type: Transform
- pos: 26.5,-32.5
- parent: 2
- uid: 8890
components:
- type: Transform
@@ -22790,60 +23643,15 @@ entities:
- type: Transform
pos: 33.5,-39.5
parent: 2
- - uid: 8925
- components:
- - type: Transform
- pos: 32.5,-39.5
- parent: 2
- - uid: 8926
- components:
- - type: Transform
- pos: 31.5,-39.5
- parent: 2
- - uid: 8927
- components:
- - type: Transform
- pos: 30.5,-39.5
- parent: 2
- uid: 8928
components:
- type: Transform
pos: 29.5,-39.5
parent: 2
- - uid: 8929
- components:
- - type: Transform
- pos: 29.5,-38.5
- parent: 2
- - uid: 8930
- components:
- - type: Transform
- pos: 29.5,-37.5
- parent: 2
- - uid: 8931
- components:
- - type: Transform
- pos: 29.5,-36.5
- parent: 2
- - uid: 8932
- components:
- - type: Transform
- pos: 29.5,-35.5
- parent: 2
- - uid: 8933
- components:
- - type: Transform
- pos: 29.5,-34.5
- parent: 2
- - uid: 8934
- components:
- - type: Transform
- pos: 29.5,-33.5
- parent: 2
- uid: 8935
components:
- type: Transform
- pos: 29.5,-32.5
+ pos: 29.5,-38.5
parent: 2
- uid: 8936
components:
@@ -22860,86 +23668,6 @@ entities:
- type: Transform
pos: 29.5,-44.5
parent: 2
- - uid: 8939
- components:
- - type: Transform
- pos: 31.5,-41.5
- parent: 2
- - uid: 8940
- components:
- - type: Transform
- pos: 31.5,-40.5
- parent: 2
- - uid: 8941
- components:
- - type: Transform
- pos: 23.5,-39.5
- parent: 2
- - uid: 8942
- components:
- - type: Transform
- pos: 24.5,-39.5
- parent: 2
- - uid: 8943
- components:
- - type: Transform
- pos: 25.5,-39.5
- parent: 2
- - uid: 8944
- components:
- - type: Transform
- pos: 26.5,-39.5
- parent: 2
- - uid: 8945
- components:
- - type: Transform
- pos: 23.5,-37.5
- parent: 2
- - uid: 8946
- components:
- - type: Transform
- pos: 24.5,-37.5
- parent: 2
- - uid: 8947
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- - uid: 8948
- components:
- - type: Transform
- pos: 26.5,-37.5
- parent: 2
- - uid: 8949
- components:
- - type: Transform
- pos: 23.5,-35.5
- parent: 2
- - uid: 8950
- components:
- - type: Transform
- pos: 24.5,-35.5
- parent: 2
- - uid: 8951
- components:
- - type: Transform
- pos: 25.5,-35.5
- parent: 2
- - uid: 8952
- components:
- - type: Transform
- pos: 26.5,-35.5
- parent: 2
- - uid: 8953
- components:
- - type: Transform
- pos: 26.5,-36.5
- parent: 2
- - uid: 8954
- components:
- - type: Transform
- pos: 26.5,-38.5
- parent: 2
- uid: 8955
components:
- type: Transform
@@ -23070,26 +23798,6 @@ entities:
- type: Transform
pos: 36.5,-40.5
parent: 2
- - uid: 8987
- components:
- - type: Transform
- pos: 26.5,-40.5
- parent: 2
- - uid: 8988
- components:
- - type: Transform
- pos: 26.5,-41.5
- parent: 2
- - uid: 8989
- components:
- - type: Transform
- pos: 26.5,-42.5
- parent: 2
- - uid: 8990
- components:
- - type: Transform
- pos: 27.5,-42.5
- parent: 2
- uid: 8991
components:
- type: Transform
@@ -26370,20 +27078,10 @@ entities:
- type: Transform
pos: 27.5,-30.5
parent: 2
- - uid: 12625
- components:
- - type: Transform
- pos: 28.5,-30.5
- parent: 2
- - uid: 12626
- components:
- - type: Transform
- pos: 29.5,-30.5
- parent: 2
- uid: 12627
components:
- type: Transform
- pos: 29.5,-31.5
+ pos: 21.5,-39.5
parent: 2
- uid: 12628
components:
@@ -26665,6 +27363,16 @@ entities:
- type: Transform
pos: 23.5,-8.5
parent: 2
+ - uid: 12712
+ components:
+ - type: Transform
+ pos: 22.5,-39.5
+ parent: 2
+ - uid: 12716
+ components:
+ - type: Transform
+ pos: 20.5,-35.5
+ parent: 2
- uid: 12859
components:
- type: Transform
@@ -26835,6 +27543,16 @@ entities:
- type: Transform
pos: -12.5,-46.5
parent: 2
+ - uid: 14228
+ components:
+ - type: Transform
+ pos: 20.5,-39.5
+ parent: 2
+ - uid: 14229
+ components:
+ - type: Transform
+ pos: 21.5,-37.5
+ parent: 2
- uid: 14272
components:
- type: Transform
@@ -26850,11 +27568,91 @@ entities:
- type: Transform
pos: 23.5,38.5
parent: 2
+ - uid: 14406
+ components:
+ - type: Transform
+ pos: 22.5,-37.5
+ parent: 2
+ - uid: 14421
+ components:
+ - type: Transform
+ pos: 20.5,-37.5
+ parent: 2
- uid: 14486
components:
- type: Transform
pos: 12.5,-33.5
parent: 2
+ - uid: 14556
+ components:
+ - type: Transform
+ pos: 29.5,-36.5
+ parent: 2
+ - uid: 14557
+ components:
+ - type: Transform
+ pos: 29.5,-37.5
+ parent: 2
+ - uid: 14558
+ components:
+ - type: Transform
+ pos: 29.5,-35.5
+ parent: 2
+ - uid: 14559
+ components:
+ - type: Transform
+ pos: 29.5,-34.5
+ parent: 2
+ - uid: 14560
+ components:
+ - type: Transform
+ pos: 29.5,-33.5
+ parent: 2
+ - uid: 14561
+ components:
+ - type: Transform
+ pos: 29.5,-32.5
+ parent: 2
+ - uid: 14562
+ components:
+ - type: Transform
+ pos: 29.5,-31.5
+ parent: 2
+ - uid: 14563
+ components:
+ - type: Transform
+ pos: 29.5,-30.5
+ parent: 2
+ - uid: 14564
+ components:
+ - type: Transform
+ pos: 28.5,-30.5
+ parent: 2
+ - uid: 14569
+ components:
+ - type: Transform
+ pos: -3.5,-3.5
+ parent: 2
+ - uid: 14570
+ components:
+ - type: Transform
+ pos: -3.5,-4.5
+ parent: 2
+ - uid: 14571
+ components:
+ - type: Transform
+ pos: -3.5,-5.5
+ parent: 2
+ - uid: 14572
+ components:
+ - type: Transform
+ pos: -3.5,-6.5
+ parent: 2
+ - uid: 14697
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
- uid: 14737
components:
- type: Transform
@@ -26905,6 +27703,11 @@ entities:
- type: Transform
pos: -22.5,38.5
parent: 2
+ - uid: 14928
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 2
- uid: 14937
components:
- type: Transform
@@ -26920,6 +27723,11 @@ entities:
- type: Transform
pos: -22.5,41.5
parent: 2
+ - uid: 15111
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 2
- uid: 15206
components:
- type: Transform
@@ -26995,6 +27803,11 @@ entities:
- type: Transform
pos: -6.5,-41.5
parent: 2
+ - uid: 15317
+ components:
+ - type: Transform
+ pos: 42.5,-4.5
+ parent: 2
- uid: 15376
components:
- type: Transform
@@ -27160,6 +27973,31 @@ entities:
- type: Transform
pos: 47.5,-5.5
parent: 2
+ - uid: 15731
+ components:
+ - type: Transform
+ pos: -0.5,-5.5
+ parent: 2
+ - uid: 15736
+ components:
+ - type: Transform
+ pos: 0.5,-5.5
+ parent: 2
+ - uid: 15738
+ components:
+ - type: Transform
+ pos: 24.5,-43.5
+ parent: 2
+ - uid: 15739
+ components:
+ - type: Transform
+ pos: 25.5,-43.5
+ parent: 2
+ - uid: 15747
+ components:
+ - type: Transform
+ pos: 26.5,-43.5
+ parent: 2
- uid: 15767
components:
- type: Transform
@@ -27395,15 +28233,15 @@ entities:
- type: Transform
pos: -13.5,32.5
parent: 2
- - uid: 16347
+ - uid: 16416
components:
- type: Transform
- pos: 0.5,-7.5
+ pos: 35.5,-31.5
parent: 2
- - uid: 16348
+ - uid: 16417
components:
- type: Transform
- pos: 0.5,-6.5
+ pos: 35.5,-32.5
parent: 2
- proto: CableApcStack
entities:
@@ -27446,6 +28284,11 @@ entities:
- type: Transform
pos: -9.14669,-7.357277
parent: 2
+ - uid: 16402
+ components:
+ - type: Transform
+ pos: 31.323063,-18.144903
+ parent: 2
- proto: CablecuffsBroken
entities:
- uid: 16042
@@ -27455,6 +28298,26 @@ entities:
parent: 2
- proto: CableHV
entities:
+ - uid: 30
+ components:
+ - type: Transform
+ pos: 13.5,-59.5
+ parent: 2
+ - uid: 230
+ components:
+ - type: Transform
+ pos: 14.5,-57.5
+ parent: 2
+ - uid: 323
+ components:
+ - type: Transform
+ pos: 16.5,-59.5
+ parent: 2
+ - uid: 509
+ components:
+ - type: Transform
+ pos: -8.5,-5.5
+ parent: 2
- uid: 539
components:
- type: Transform
@@ -27485,11 +28348,56 @@ entities:
- type: Transform
pos: 13.5,-6.5
parent: 2
+ - uid: 693
+ components:
+ - type: Transform
+ pos: 12.5,-57.5
+ parent: 2
- uid: 696
components:
- type: Transform
pos: 9.5,-10.5
parent: 2
+ - uid: 700
+ components:
+ - type: Transform
+ pos: 11.5,-57.5
+ parent: 2
+ - uid: 720
+ components:
+ - type: Transform
+ pos: -8.5,-7.5
+ parent: 2
+ - uid: 727
+ components:
+ - type: Transform
+ pos: -8.5,-6.5
+ parent: 2
+ - uid: 728
+ components:
+ - type: Transform
+ pos: -8.5,-9.5
+ parent: 2
+ - uid: 732
+ components:
+ - type: Transform
+ pos: -8.5,-8.5
+ parent: 2
+ - uid: 856
+ components:
+ - type: Transform
+ pos: 16.5,-58.5
+ parent: 2
+ - uid: 872
+ components:
+ - type: Transform
+ pos: 14.5,-59.5
+ parent: 2
+ - uid: 905
+ components:
+ - type: Transform
+ pos: 14.5,-58.5
+ parent: 2
- uid: 1062
components:
- type: Transform
@@ -27930,6 +28838,16 @@ entities:
- type: Transform
pos: 32.5,-10.5
parent: 2
+ - uid: 2407
+ components:
+ - type: Transform
+ pos: 10.5,-57.5
+ parent: 2
+ - uid: 2500
+ components:
+ - type: Transform
+ pos: 11.5,-59.5
+ parent: 2
- uid: 2542
components:
- type: Transform
@@ -28505,6 +29423,11 @@ entities:
- type: Transform
pos: 13.5,-35.5
parent: 2
+ - uid: 3437
+ components:
+ - type: Transform
+ pos: 32.5,58.5
+ parent: 2
- uid: 3464
components:
- type: Transform
@@ -28535,16 +29458,6 @@ entities:
- type: Transform
pos: 33.5,-12.5
parent: 2
- - uid: 3815
- components:
- - type: Transform
- pos: 16.5,-54.5
- parent: 2
- - uid: 3895
- components:
- - type: Transform
- pos: 16.5,-55.5
- parent: 2
- uid: 3907
components:
- type: Transform
@@ -30220,11 +31133,6 @@ entities:
- type: Transform
pos: 13.5,-53.5
parent: 2
- - uid: 8395
- components:
- - type: Transform
- pos: 37.5,54.5
- parent: 2
- uid: 8396
components:
- type: Transform
@@ -30233,7 +31141,7 @@ entities:
- uid: 8397
components:
- type: Transform
- pos: 37.5,53.5
+ pos: 43.5,-10.5
parent: 2
- uid: 8410
components:
@@ -30270,6 +31178,26 @@ entities:
- type: Transform
pos: 10.5,-55.5
parent: 2
+ - uid: 8939
+ components:
+ - type: Transform
+ pos: 34.5,58.5
+ parent: 2
+ - uid: 8989
+ components:
+ - type: Transform
+ pos: 35.5,58.5
+ parent: 2
+ - uid: 8990
+ components:
+ - type: Transform
+ pos: 37.5,57.5
+ parent: 2
+ - uid: 9036
+ components:
+ - type: Transform
+ pos: 37.5,58.5
+ parent: 2
- uid: 9082
components:
- type: Transform
@@ -30910,51 +31838,6 @@ entities:
- type: Transform
pos: -8.5,-4.5
parent: 2
- - uid: 9550
- components:
- - type: Transform
- pos: -7.5,-4.5
- parent: 2
- - uid: 9551
- components:
- - type: Transform
- pos: -6.5,-4.5
- parent: 2
- - uid: 9552
- components:
- - type: Transform
- pos: -5.5,-4.5
- parent: 2
- - uid: 9553
- components:
- - type: Transform
- pos: -4.5,-4.5
- parent: 2
- - uid: 9554
- components:
- - type: Transform
- pos: -4.5,-5.5
- parent: 2
- - uid: 9555
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- - uid: 9556
- components:
- - type: Transform
- pos: -4.5,-7.5
- parent: 2
- - uid: 9557
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 9558
- components:
- - type: Transform
- pos: -4.5,-9.5
- parent: 2
- uid: 9559
components:
- type: Transform
@@ -31065,6 +31948,16 @@ entities:
- type: Transform
pos: -6.5,-41.5
parent: 2
+ - uid: 12775
+ components:
+ - type: Transform
+ pos: -4.5,-9.5
+ parent: 2
+ - uid: 12796
+ components:
+ - type: Transform
+ pos: 12.5,-59.5
+ parent: 2
- uid: 12808
components:
- type: Transform
@@ -31125,6 +32018,11 @@ entities:
- type: Transform
pos: 32.5,-13.5
parent: 2
+ - uid: 14503
+ components:
+ - type: Transform
+ pos: -7.5,-9.5
+ parent: 2
- uid: 14815
components:
- type: Transform
@@ -31150,6 +32048,16 @@ entities:
- type: Transform
pos: 32.5,-6.5
parent: 2
+ - uid: 14888
+ components:
+ - type: Transform
+ pos: 33.5,58.5
+ parent: 2
+ - uid: 15269
+ components:
+ - type: Transform
+ pos: 13.5,-57.5
+ parent: 2
- uid: 15384
components:
- type: Transform
@@ -31170,6 +32078,11 @@ entities:
- type: Transform
pos: 11.5,-53.5
parent: 2
+ - uid: 15527
+ components:
+ - type: Transform
+ pos: -5.5,-9.5
+ parent: 2
- uid: 15618
components:
- type: Transform
@@ -31250,6 +32163,41 @@ entities:
- type: Transform
pos: 34.5,54.5
parent: 2
+ - uid: 15681
+ components:
+ - type: Transform
+ pos: -6.5,-9.5
+ parent: 2
+ - uid: 15978
+ components:
+ - type: Transform
+ pos: 31.5,56.5
+ parent: 2
+ - uid: 16059
+ components:
+ - type: Transform
+ pos: 32.5,56.5
+ parent: 2
+ - uid: 16061
+ components:
+ - type: Transform
+ pos: 33.5,56.5
+ parent: 2
+ - uid: 16088
+ components:
+ - type: Transform
+ pos: 34.5,56.5
+ parent: 2
+ - uid: 16220
+ components:
+ - type: Transform
+ pos: 35.5,56.5
+ parent: 2
+ - uid: 16239
+ components:
+ - type: Transform
+ pos: 35.5,57.5
+ parent: 2
- proto: CableHVStack
entities:
- uid: 5137
@@ -31291,11 +32239,6 @@ entities:
parent: 2
- proto: CableMV
entities:
- - uid: 19
- components:
- - type: Transform
- pos: -0.5,-7.5
- parent: 2
- uid: 139
components:
- type: Transform
@@ -31306,16 +32249,6 @@ entities:
- type: Transform
pos: -1.5,-8.5
parent: 2
- - uid: 310
- components:
- - type: Transform
- pos: 2.5,-5.5
- parent: 2
- - uid: 312
- components:
- - type: Transform
- pos: 0.5,-5.5
- parent: 2
- uid: 356
components:
- type: Transform
@@ -31396,31 +32329,6 @@ entities:
- type: Transform
pos: 13.5,-7.5
parent: 2
- - uid: 506
- components:
- - type: Transform
- pos: 5.5,-2.5
- parent: 2
- - uid: 507
- components:
- - type: Transform
- pos: 5.5,-1.5
- parent: 2
- - uid: 508
- components:
- - type: Transform
- pos: 5.5,-0.5
- parent: 2
- - uid: 509
- components:
- - type: Transform
- pos: 5.5,0.5
- parent: 2
- - uid: 510
- components:
- - type: Transform
- pos: 5.5,1.5
- parent: 2
- uid: 511
components:
- type: Transform
@@ -31821,16 +32729,41 @@ entities:
- type: Transform
pos: 12.5,-6.5
parent: 2
+ - uid: 756
+ components:
+ - type: Transform
+ pos: 5.5,-2.5
+ parent: 2
+ - uid: 757
+ components:
+ - type: Transform
+ pos: 5.5,-1.5
+ parent: 2
+ - uid: 802
+ components:
+ - type: Transform
+ pos: 5.5,-0.5
+ parent: 2
- uid: 803
components:
- type: Transform
- pos: 1.5,-5.5
+ pos: 5.5,0.5
+ parent: 2
+ - uid: 812
+ components:
+ - type: Transform
+ pos: 5.5,1.5
parent: 2
- uid: 821
components:
- type: Transform
pos: -4.5,7.5
parent: 2
+ - uid: 977
+ components:
+ - type: Transform
+ pos: 5.5,-3.5
+ parent: 2
- uid: 992
components:
- type: Transform
@@ -31981,6 +32914,11 @@ entities:
- type: Transform
pos: 48.5,-13.5
parent: 2
+ - uid: 1402
+ components:
+ - type: Transform
+ pos: 32.5,-30.5
+ parent: 2
- uid: 1425
components:
- type: Transform
@@ -32141,6 +33079,11 @@ entities:
- type: Transform
pos: 11.5,-13.5
parent: 2
+ - uid: 1795
+ components:
+ - type: Transform
+ pos: 35.5,-32.5
+ parent: 2
- uid: 2011
components:
- type: Transform
@@ -32181,6 +33124,16 @@ entities:
- type: Transform
pos: -18.5,-38.5
parent: 2
+ - uid: 2205
+ components:
+ - type: Transform
+ pos: 30.5,-30.5
+ parent: 2
+ - uid: 2250
+ components:
+ - type: Transform
+ pos: 5.5,-4.5
+ parent: 2
- uid: 2260
components:
- type: Transform
@@ -32191,6 +33144,21 @@ entities:
- type: Transform
pos: -2.5,-16.5
parent: 2
+ - uid: 2312
+ components:
+ - type: Transform
+ pos: 31.5,-30.5
+ parent: 2
+ - uid: 2313
+ components:
+ - type: Transform
+ pos: 29.5,-30.5
+ parent: 2
+ - uid: 2316
+ components:
+ - type: Transform
+ pos: 28.5,-30.5
+ parent: 2
- uid: 2516
components:
- type: Transform
@@ -32471,26 +33439,6 @@ entities:
- type: Transform
pos: -21.5,-40.5
parent: 2
- - uid: 3436
- components:
- - type: Transform
- pos: -4.5,-6.5
- parent: 2
- - uid: 3437
- components:
- - type: Transform
- pos: -4.5,-7.5
- parent: 2
- - uid: 3438
- components:
- - type: Transform
- pos: -4.5,-8.5
- parent: 2
- - uid: 3439
- components:
- - type: Transform
- pos: -4.5,-9.5
- parent: 2
- uid: 3447
components:
- type: Transform
@@ -33831,71 +34779,6 @@ entities:
- type: Transform
pos: -3.5,-9.5
parent: 2
- - uid: 5993
- components:
- - type: Transform
- pos: -4.5,-4.5
- parent: 2
- - uid: 5994
- components:
- - type: Transform
- pos: -4.5,-5.5
- parent: 2
- - uid: 5995
- components:
- - type: Transform
- pos: -4.5,-3.5
- parent: 2
- - uid: 5996
- components:
- - type: Transform
- pos: -4.5,-2.5
- parent: 2
- - uid: 5997
- components:
- - type: Transform
- pos: 4.5,-2.5
- parent: 2
- - uid: 5998
- components:
- - type: Transform
- pos: 2.5,-2.5
- parent: 2
- - uid: 5999
- components:
- - type: Transform
- pos: 1.5,-2.5
- parent: 2
- - uid: 6000
- components:
- - type: Transform
- pos: 0.5,-2.5
- parent: 2
- - uid: 6001
- components:
- - type: Transform
- pos: -0.5,-2.5
- parent: 2
- - uid: 6002
- components:
- - type: Transform
- pos: -1.5,-2.5
- parent: 2
- - uid: 6003
- components:
- - type: Transform
- pos: -2.5,-2.5
- parent: 2
- - uid: 6004
- components:
- - type: Transform
- pos: 3.5,-2.5
- parent: 2
- - uid: 6005
- components:
- - type: Transform
- pos: -3.5,-2.5
- parent: 2
- uid: 6006
components:
- type: Transform
@@ -34926,6 +35809,11 @@ entities:
- type: Transform
pos: 14.5,34.5
parent: 2
+ - uid: 7537
+ components:
+ - type: Transform
+ pos: -28.5,1.5
+ parent: 2
- uid: 7538
components:
- type: Transform
@@ -35346,21 +36234,6 @@ entities:
- type: Transform
pos: 30.5,-0.5
parent: 2
- - uid: 8787
- components:
- - type: Transform
- pos: 26.5,-32.5
- parent: 2
- - uid: 8788
- components:
- - type: Transform
- pos: 26.5,-31.5
- parent: 2
- - uid: 8789
- components:
- - type: Transform
- pos: 26.5,-30.5
- parent: 2
- uid: 8846
components:
- type: Transform
@@ -37451,6 +38324,11 @@ entities:
- type: Transform
pos: 32.5,-4.5
parent: 2
+ - uid: 12626
+ components:
+ - type: Transform
+ pos: 35.5,-31.5
+ parent: 2
- uid: 12860
components:
- type: Transform
@@ -37546,6 +38424,11 @@ entities:
- type: Transform
pos: -21.5,-41.5
parent: 2
+ - uid: 13855
+ components:
+ - type: Transform
+ pos: 35.5,-30.5
+ parent: 2
- uid: 13866
components:
- type: Transform
@@ -37676,6 +38559,11 @@ entities:
- type: Transform
pos: -15.5,-38.5
parent: 2
+ - uid: 14217
+ components:
+ - type: Transform
+ pos: 34.5,-30.5
+ parent: 2
- uid: 14303
components:
- type: Transform
@@ -37691,6 +38579,16 @@ entities:
- type: Transform
pos: 18.5,35.5
parent: 2
+ - uid: 14506
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
+ - uid: 14529
+ components:
+ - type: Transform
+ pos: 33.5,-30.5
+ parent: 2
- uid: 14736
components:
- type: Transform
@@ -37811,6 +38709,16 @@ entities:
- type: Transform
pos: -19.5,-38.5
parent: 2
+ - uid: 14935
+ components:
+ - type: Transform
+ pos: 3.5,-6.5
+ parent: 2
+ - uid: 14963
+ components:
+ - type: Transform
+ pos: 3.5,-7.5
+ parent: 2
- uid: 15203
components:
- type: Transform
@@ -38191,16 +39099,6 @@ entities:
- type: Transform
pos: 38.5,-13.5
parent: 2
- - uid: 16349
- components:
- - type: Transform
- pos: 0.5,-6.5
- parent: 2
- - uid: 16350
- components:
- - type: Transform
- pos: 0.5,-7.5
- parent: 2
- proto: CableMVStack
entities:
- uid: 5135
@@ -38314,6 +39212,20 @@ entities:
- type: Transform
pos: -33.3829,-20.528595
parent: 2
+- proto: CapacitorStockPart
+ entities:
+ - uid: 16401
+ components:
+ - type: Transform
+ pos: 32.166813,-17.551153
+ parent: 2
+ - type: Stack
+ count: 2
+ - uid: 16415
+ components:
+ - type: Transform
+ pos: 27.703878,37.44894
+ parent: 2
- proto: CaptainIDCard
entities:
- uid: 11350
@@ -38328,10 +39240,10 @@ entities:
- type: Transform
pos: 40.5,-29.5
parent: 2
- - uid: 2436
+ - uid: 14218
components:
- type: Transform
- pos: 22.5,-39.5
+ pos: 19.5,-39.5
parent: 2
- proto: Carpet
entities:
@@ -38429,6 +39341,18 @@ entities:
- type: Transform
pos: 9.5,-22.5
parent: 2
+ - uid: 12718
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,0.5
+ parent: 2
+ - uid: 14780
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -26.5,1.5
+ parent: 2
- proto: CarpetCyan
entities:
- uid: 6593
@@ -38484,6 +39408,11 @@ entities:
parent: 2
- proto: Catwalk
entities:
+ - uid: 88
+ components:
+ - type: Transform
+ pos: 41.5,-2.5
+ parent: 2
- uid: 171
components:
- type: Transform
@@ -38494,6 +39423,27 @@ entities:
- type: Transform
pos: 33.5,-24.5
parent: 2
+ - uid: 207
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-9.5
+ parent: 2
+ - uid: 497
+ components:
+ - type: Transform
+ pos: 16.5,-54.5
+ parent: 2
+ - uid: 506
+ components:
+ - type: Transform
+ pos: 16.5,-57.5
+ parent: 2
+ - uid: 508
+ components:
+ - type: Transform
+ pos: 37.5,53.5
+ parent: 2
- uid: 854
components:
- type: Transform
@@ -38695,6 +39645,11 @@ entities:
rot: 1.5707963267948966 rad
pos: 26.5,-20.5
parent: 2
+ - uid: 1154
+ components:
+ - type: Transform
+ pos: 43.5,-2.5
+ parent: 2
- uid: 1175
components:
- type: Transform
@@ -38873,6 +39828,47 @@ entities:
rot: 3.141592653589793 rad
pos: 35.5,-10.5
parent: 2
+ - uid: 2331
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-34.5
+ parent: 2
+ - uid: 2333
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-35.5
+ parent: 2
+ - uid: 2337
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-36.5
+ parent: 2
+ - uid: 2338
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-37.5
+ parent: 2
+ - uid: 2339
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-38.5
+ parent: 2
+ - uid: 2340
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-39.5
+ parent: 2
+ - uid: 2369
+ components:
+ - type: Transform
+ pos: 16.5,-55.5
+ parent: 2
- uid: 2522
components:
- type: Transform
@@ -38999,51 +39995,16 @@ entities:
rot: 3.141592653589793 rad
pos: -33.5,-44.5
parent: 2
- - uid: 2833
+ - uid: 2813
components:
- type: Transform
- pos: 16.5,-54.5
+ pos: 16.5,-58.5
parent: 2
- uid: 2834
components:
- type: Transform
pos: 16.5,-50.5
parent: 2
- - uid: 2943
- components:
- - type: Transform
- pos: 26.5,-34.5
- parent: 2
- - uid: 2944
- components:
- - type: Transform
- pos: 26.5,-35.5
- parent: 2
- - uid: 2945
- components:
- - type: Transform
- pos: 26.5,-36.5
- parent: 2
- - uid: 2946
- components:
- - type: Transform
- pos: 26.5,-37.5
- parent: 2
- - uid: 2947
- components:
- - type: Transform
- pos: 26.5,-38.5
- parent: 2
- - uid: 2948
- components:
- - type: Transform
- pos: 26.5,-39.5
- parent: 2
- - uid: 2949
- components:
- - type: Transform
- pos: 26.5,-40.5
- parent: 2
- uid: 2950
components:
- type: Transform
@@ -39079,6 +40040,11 @@ entities:
- type: Transform
pos: 36.5,-37.5
parent: 2
+ - uid: 3001
+ components:
+ - type: Transform
+ pos: 37.5,54.5
+ parent: 2
- uid: 3042
components:
- type: Transform
@@ -39105,6 +40071,12 @@ entities:
- type: Transform
pos: -18.5,-46.5
parent: 2
+ - uid: 4622
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -2.5,-9.5
+ parent: 2
- uid: 5067
components:
- type: Transform
@@ -39157,30 +40129,6 @@ entities:
- type: Transform
pos: 41.5,-11.5
parent: 2
- - uid: 5989
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-5.5
- parent: 2
- - uid: 5990
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-6.5
- parent: 2
- - uid: 5991
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-7.5
- parent: 2
- - uid: 5992
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-8.5
- parent: 2
- uid: 6040
components:
- type: Transform
@@ -39707,10 +40655,11 @@ entities:
- type: Transform
pos: -2.5,24.5
parent: 2
- - uid: 9617
+ - uid: 10426
components:
- type: Transform
- pos: 16.5,-55.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-40.5
parent: 2
- uid: 10507
components:
@@ -41274,11 +42223,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,-30.5
parent: 2
- - uid: 13489
- components:
- - type: Transform
- pos: 42.5,-1.5
- parent: 2
- uid: 13523
components:
- type: Transform
@@ -41291,10 +42235,10 @@ entities:
rot: -1.5707963267948966 rad
pos: -27.5,-31.5
parent: 2
- - uid: 13738
+ - uid: 13778
components:
- type: Transform
- pos: 41.5,-1.5
+ pos: 42.5,-2.5
parent: 2
- uid: 14037
components:
@@ -41771,17 +42715,10 @@ entities:
rot: -1.5707963267948966 rad
pos: 35.5,53.5
parent: 2
- - uid: 14503
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,54.5
- parent: 2
- uid: 14504
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 37.5,53.5
+ pos: 44.5,-9.5
parent: 2
- uid: 14505
components:
@@ -41789,6 +42726,21 @@ entities:
rot: -1.5707963267948966 rad
pos: 37.5,52.5
parent: 2
+ - uid: 14565
+ components:
+ - type: Transform
+ pos: 44.5,-11.5
+ parent: 2
+ - uid: 14567
+ components:
+ - type: Transform
+ pos: 44.5,-10.5
+ parent: 2
+ - uid: 14576
+ components:
+ - type: Transform
+ pos: 16.5,-59.5
+ parent: 2
- uid: 14674
components:
- type: Transform
@@ -41807,6 +42759,12 @@ entities:
rot: 3.141592653589793 rad
pos: 33.5,-10.5
parent: 2
+ - uid: 14827
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -4.5,-9.5
+ parent: 2
- uid: 15253
components:
- type: Transform
@@ -41912,10 +42870,10 @@ entities:
rot: 3.141592653589793 rad
pos: 24.5,36.5
parent: 2
- - uid: 15839
+ - uid: 15901
components:
- type: Transform
- pos: 43.5,-1.5
+ pos: 14.5,-58.5
parent: 2
- uid: 16027
components:
@@ -41977,6 +42935,26 @@ entities:
- type: Transform
pos: 36.5,-16.5
parent: 2
+ - uid: 16254
+ components:
+ - type: Transform
+ pos: 37.5,56.5
+ parent: 2
+ - uid: 16329
+ components:
+ - type: Transform
+ pos: 37.5,57.5
+ parent: 2
+ - uid: 16330
+ components:
+ - type: Transform
+ pos: 37.5,58.5
+ parent: 2
+ - uid: 16331
+ components:
+ - type: Transform
+ pos: 35.5,57.5
+ parent: 2
- uid: 16375
components:
- type: Transform
@@ -42004,7 +42982,7 @@ entities:
- uid: 13785
components:
- type: Transform
- pos: 27.671509,37.939373
+ pos: 27.240135,37.852577
parent: 2
- proto: Chair
entities:
@@ -42302,12 +43280,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 32.55629,-20.402246
parent: 2
- - uid: 728
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -1.4965334,-6.398676
- parent: 2
- uid: 760
components:
- type: Transform
@@ -42337,23 +43309,17 @@ entities:
rot: 1.5707963267948966 rad
pos: 22.499483,-8.389568
parent: 2
- - uid: 7537
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 32.67196,57.563953
- parent: 2
- uid: 7636
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 19.551804,39.69655
parent: 2
- - uid: 8527
+ - uid: 8940
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 34.39071,57.54833
+ pos: 32.254124,-38.51852
parent: 2
- uid: 9609
components:
@@ -42366,17 +43332,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -32.44567,-11.355937
parent: 2
- - uid: 14406
- components:
- - type: Transform
- pos: 32.633217,-36.41033
- parent: 2
- uid: 14407
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 33.445717,-37.582207
parent: 2
+ - uid: 16346
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.60117,61.45984
+ parent: 2
+ - uid: 16347
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 34.491795,61.64734
+ parent: 2
- uid: 16366
components:
- type: Transform
@@ -42950,13 +43923,6 @@ entities:
- type: Transform
pos: 27.5,10.5
parent: 2
-- proto: ChemDispenserEmpty
- entities:
- - uid: 677
- components:
- - type: Transform
- pos: 26.5,38.5
- parent: 2
- proto: ChemistryEmptyBottle01
entities:
- uid: 8823
@@ -43033,16 +43999,6 @@ entities:
bodyType: Static
- proto: Cigar
entities:
- - uid: 734
- components:
- - type: Transform
- pos: -2.516527,-7.3284693
- parent: 2
- - uid: 905
- components:
- - type: Transform
- pos: -2.313402,-7.3128443
- parent: 2
- uid: 14033
components:
- type: Transform
@@ -43074,6 +44030,11 @@ entities:
- type: Transform
pos: -0.2998953,0.5194752
parent: 2
+ - uid: 3895
+ components:
+ - type: Transform
+ pos: 41.132133,26.684916
+ parent: 2
- uid: 12797
components:
- type: Transform
@@ -43104,30 +44065,26 @@ entities:
- type: Transform
pos: 33.207268,-38.246517
parent: 2
- - uid: 16383
+ - uid: 14518
components:
- type: Transform
- pos: -17.450197,18.73896
+ pos: 41.486813,26.560337
parent: 2
- - uid: 16384
+ - uid: 15109
components:
- type: Transform
- pos: -17.793947,18.67646
+ pos: -4.4094725,-6.401611
parent: 2
-- proto: CigaretteSyndicate
- entities:
- - uid: 14357
+ - uid: 16383
components:
- type: Transform
- pos: 41.146534,26.828377
+ pos: -17.450197,18.73896
parent: 2
- - uid: 16061
+ - uid: 16384
components:
- type: Transform
- parent: 16055
- - type: Physics
- canCollide: False
- - type: InsideEntityStorage
+ pos: -17.793947,18.67646
+ parent: 2
- proto: CigarGold
entities:
- uid: 10369
@@ -43142,6 +44099,13 @@ entities:
- type: Transform
pos: -13.533066,-6.2796874
parent: 2
+- proto: CigCartonBlack
+ entities:
+ - uid: 14721
+ components:
+ - type: Transform
+ pos: 48.574272,6.341091
+ parent: 2
- proto: CircuitImprinter
entities:
- uid: 16381
@@ -43243,6 +44207,11 @@ entities:
- type: Transform
pos: -2.5,33.5
parent: 2
+ - uid: 4620
+ components:
+ - type: Transform
+ pos: -5.5,-10.5
+ parent: 2
- uid: 4704
components:
- type: Transform
@@ -43440,6 +44409,11 @@ entities:
- type: Transform
pos: 10.5,-5.5
parent: 2
+ - uid: 1157
+ components:
+ - type: Transform
+ pos: 37.5,-31.5
+ parent: 2
- uid: 1247
components:
- type: Transform
@@ -43570,6 +44544,11 @@ entities:
- type: Transform
pos: -6.5,-38.5
parent: 2
+ - uid: 15510
+ components:
+ - type: Transform
+ pos: -4.5,-10.5
+ parent: 2
- proto: ClosetJanitorFilled
entities:
- uid: 109
@@ -43843,7 +44822,7 @@ entities:
- uid: 15840
components:
- type: Transform
- pos: 43.650375,-1.3479055
+ pos: 40.904457,-0.7000258
parent: 2
- uid: 16394
components:
@@ -43855,7 +44834,7 @@ entities:
- uid: 8493
components:
- type: Transform
- pos: 37.669296,-5.194439
+ pos: 40.67693,-4.1979237
parent: 2
- proto: ClothingEyesGlassesCheapSunglasses
entities:
@@ -43899,20 +44878,6 @@ entities:
- type: Transform
pos: -70.281,-10.984222
parent: 2
-- proto: ClothingHandsGlovesColorYellow
- entities:
- - uid: 6640
- components:
- - type: Transform
- pos: -2.1804788,22.571062
- parent: 2
-- proto: ClothingHandsGlovesColorYellowBudget
- entities:
- - uid: 15842
- components:
- - type: Transform
- pos: 41.947968,-1.5498452
- parent: 2
- proto: ClothingHandsGlovesCombat
entities:
- uid: 2185
@@ -43944,7 +44909,7 @@ entities:
- uid: 13753
components:
- type: Transform
- pos: 40.554234,33.41338
+ pos: 46.43723,33.34558
parent: 2
- proto: ClothingHeadBandBotany
entities:
@@ -44077,7 +45042,7 @@ entities:
- uid: 5138
components:
- type: Transform
- pos: -27.38747,14.612673
+ pos: -26.503574,16.524607
parent: 2
- uid: 6641
components:
@@ -44089,13 +45054,6 @@ entities:
- type: Transform
pos: 26.465076,-5.4179134
parent: 2
-- proto: ClothingHeadHelmetERTJanitor
- entities:
- - uid: 15269
- components:
- - type: Transform
- pos: 26.415586,-56.37533
- parent: 2
- proto: ClothingHeadsetMining
entities:
- uid: 15264
@@ -44110,6 +45068,13 @@ entities:
- type: Transform
pos: -26.26548,11.413899
parent: 2
+- proto: ClothingMaskGas
+ entities:
+ - uid: 16429
+ components:
+ - type: Transform
+ pos: -8.569451,33.71903
+ parent: 2
- proto: ClothingMaskGasMerc
entities:
- uid: 13758
@@ -44175,6 +45140,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingOuterApron
+ entities:
+ - uid: 16428
+ components:
+ - type: Transform
+ pos: -8.397576,33.56278
+ parent: 2
- proto: ClothingOuterApronBar
entities:
- uid: 5915
@@ -44236,13 +45208,6 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
-- proto: ClothingShoesBootsJack
- entities:
- - uid: 8243
- components:
- - type: Transform
- pos: 12.608273,19.495178
- parent: 2
- proto: ClothingShoesBootsMag
entities:
- uid: 8169
@@ -44266,6 +45231,13 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: ClothingShoesBootsWork
+ entities:
+ - uid: 5293
+ components:
+ - type: Transform
+ pos: 12.630562,19.620356
+ parent: 2
- proto: ClothingUnderSocksCoder
entities:
- uid: 15213
@@ -44327,6 +45299,12 @@ entities:
parent: 2
- proto: ComfyChair
entities:
+ - uid: 496
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-7.5
+ parent: 2
- uid: 2136
components:
- type: Transform
@@ -44354,6 +45332,12 @@ entities:
- type: Transform
pos: -28.5,-33.5
parent: 2
+ - uid: 5994
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 2
- uid: 7114
components:
- type: Transform
@@ -44487,6 +45471,12 @@ entities:
parent: 2
- proto: ComputerBroken
entities:
+ - uid: 2506
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 42.5,-0.5
+ parent: 2
- uid: 6712
components:
- type: Transform
@@ -44508,11 +45498,6 @@ entities:
- type: Transform
pos: 44.5,32.5
parent: 2
- - uid: 10426
- components:
- - type: Transform
- pos: 42.5,-0.5
- parent: 2
- uid: 14048
components:
- type: Transform
@@ -44656,13 +45641,6 @@ entities:
- type: Transform
pos: -12.5,-32.5
parent: 2
-- proto: ComputerFrame
- entities:
- - uid: 13778
- components:
- - type: Transform
- pos: 43.5,-0.5
- parent: 2
- proto: ComputerId
entities:
- uid: 1774
@@ -44908,6 +45886,11 @@ entities:
- type: Transform
pos: 2.5,15.5
parent: 2
+ - uid: 14291
+ components:
+ - type: Transform
+ pos: 0.5,-3.5
+ parent: 2
- uid: 15254
components:
- type: Transform
@@ -44923,11 +45906,6 @@ entities:
- type: Transform
pos: 36.5,-22.5
parent: 2
- - uid: 16345
- components:
- - type: Transform
- pos: 0.5,-3.5
- parent: 2
- proto: CondenserMachineCircuitBoard
entities:
- uid: 7473
@@ -45188,13 +46166,6 @@ entities:
- type: Transform
pos: 6.5,37.5
parent: 2
-- proto: CrateEngineeringAMEControl
- entities:
- - uid: 367
- components:
- - type: Transform
- pos: 39.5,-8.5
- parent: 2
- proto: CrateEngineeringAMEJar
entities:
- uid: 2634
@@ -45209,6 +46180,37 @@ entities:
- type: Transform
pos: 40.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:
+ - 4557
+ - 4558
+ - 4591
+ paper_label: !type:ContainerSlot
+ showEnts: False
+ occludes: True
+ ent: null
- proto: CrateEngineeringCableBulk
entities:
- uid: 11345
@@ -45295,11 +46297,6 @@ entities:
- type: Transform
pos: 5.5,-8.5
parent: 2
- - uid: 720
- components:
- - type: Transform
- pos: -5.5,-10.5
- parent: 2
- uid: 5308
components:
- type: Transform
@@ -45505,13 +46502,6 @@ entities:
- type: Transform
pos: -4.5,5.5
parent: 2
-- proto: CrateVendingMachineRestockChemVendFilled
- entities:
- - uid: 13724
- components:
- - type: Transform
- pos: 27.5,34.5
- parent: 2
- proto: CrayonBox
entities:
- uid: 12927
@@ -45714,6 +46704,13 @@ entities:
- type: Transform
pos: -3.5,21.5
parent: 2
+- proto: CyborgEndoskeleton
+ entities:
+ - uid: 14513
+ components:
+ - type: Transform
+ pos: -27.066074,16.227732
+ parent: 2
- proto: d6Dice
entities:
- uid: 9394
@@ -45791,10 +46788,10 @@ entities:
parent: 2
- proto: DefaultStationBeaconBar
entities:
- - uid: 14291
+ - uid: 4621
components:
- type: Transform
- pos: 0.5,-5.5
+ pos: -0.5,-5.5
parent: 2
- proto: DefaultStationBeaconBotany
entities:
@@ -46308,23 +47305,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -32.5,-8.5
parent: 2
- - uid: 479
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-7.5
- parent: 2
- uid: 480
components:
- type: Transform
pos: -3.5,3.5
parent: 2
- - uid: 482
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-2.5
- parent: 2
- uid: 609
components:
- type: Transform
@@ -46336,6 +47321,18 @@ entities:
rot: 3.141592653589793 rad
pos: 14.5,9.5
parent: 2
+ - uid: 1792
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 12.5,-16.5
+ parent: 2
+ - uid: 2368
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -3.5,-4.5
+ parent: 2
- uid: 2558
components:
- type: Transform
@@ -46663,6 +47660,12 @@ entities:
rot: 1.5707963267948966 rad
pos: -42.5,-30.5
parent: 2
+ - uid: 4997
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-2.5
+ parent: 2
- uid: 6116
components:
- type: Transform
@@ -46836,11 +47839,11 @@ entities:
- type: Transform
pos: 7.5,24.5
parent: 2
- - uid: 16338
+ - uid: 16423
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -2.5,-2.5
+ pos: 12.5,-13.5
parent: 2
- proto: DisposalPipe
entities:
@@ -46943,17 +47946,17 @@ entities:
rot: -1.5707963267948966 rad
pos: -5.5,0.5
parent: 2
- - uid: 610
+ - uid: 495
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 9.5,-2.5
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-4.5
parent: 2
- - uid: 846
+ - uid: 610
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-3.5
+ rot: -1.5707963267948966 rad
+ pos: 9.5,-2.5
parent: 2
- uid: 988
components:
@@ -47020,12 +48023,24 @@ entities:
rot: 1.5707963267948966 rad
pos: 15.5,9.5
parent: 2
+ - uid: 5341
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -2.5,-2.5
+ parent: 2
- uid: 5646
components:
- type: Transform
rot: 1.5707963267948966 rad
pos: -11.5,-30.5
parent: 2
+ - uid: 5996
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -3.5,-3.5
+ parent: 2
- uid: 10532
components:
- type: Transform
@@ -47283,12 +48298,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 13.5,-13.5
parent: 2
- - uid: 12981
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-13.5
- parent: 2
- uid: 12982
components:
- type: Transform
@@ -49495,23 +50504,15 @@ entities:
rot: 3.141592653589793 rad
pos: -42.5,-35.5
parent: 2
- - uid: 16333
+ - uid: 16421
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-4.5
- parent: 2
- - uid: 16335
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-5.5
+ pos: 12.5,-14.5
parent: 2
- - uid: 16336
+ - uid: 16422
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -2.5,-6.5
+ pos: 12.5,-15.5
parent: 2
- proto: DisposalTrunk
entities:
@@ -49702,6 +50703,12 @@ entities:
- type: Transform
pos: -63.5,-29.5
parent: 2
+ - uid: 13530
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -5.5,-4.5
+ parent: 2
- uid: 14166
components:
- type: Transform
@@ -49732,11 +50739,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -41.5,-36.5
parent: 2
- - uid: 16337
+ - uid: 16420
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -1.5,-7.5
+ rot: 1.5707963267948966 rad
+ pos: 11.5,-16.5
parent: 2
- proto: DisposalUnit
entities:
@@ -49755,14 +50762,6 @@ entities:
- type: Transform
pos: -3.5,12.5
parent: 2
- - uid: 812
- components:
- - type: Transform
- pos: -1.5,-7.5
- parent: 2
- - type: DisposalUnit
- recentlyEjected:
- - 328
- uid: 1701
components:
- type: Transform
@@ -49788,6 +50787,16 @@ entities:
- type: Transform
pos: -6.5,-16.5
parent: 2
+ - uid: 2812
+ components:
+ - type: Transform
+ pos: -5.5,-4.5
+ parent: 2
+ - uid: 3990
+ components:
+ - type: Transform
+ pos: 11.5,-16.5
+ parent: 2
- uid: 4029
components:
- type: Transform
@@ -50025,11 +51034,6 @@ entities:
- type: Transform
pos: -4.5,-38.5
parent: 2
- - uid: 4693
- components:
- - type: Transform
- pos: -30.5,-41.5
- parent: 2
- uid: 6037
components:
- type: Transform
@@ -50092,7 +51096,7 @@ entities:
- uid: 14507
components:
- type: Transform
- pos: 33.79696,57.563953
+ pos: 33.741795,61.58484
parent: 2
- proto: DrinkBeerGrowler
entities:
@@ -50109,7 +51113,7 @@ entities:
- uid: 14450
components:
- type: Transform
- pos: 33.343834,57.98583
+ pos: 33.304295,61.881714
parent: 2
- proto: DrinkBottleOfNothingFull
entities:
@@ -50151,11 +51155,6 @@ entities:
- type: Transform
pos: 6.653341,-6.3584204
parent: 2
- - uid: 427
- components:
- - type: Transform
- pos: 0.3676461,-7.2802954
- parent: 2
- uid: 3228
components:
- type: Transform
@@ -50253,16 +51252,6 @@ entities:
- type: Transform
pos: 6.418966,-6.4365454
parent: 2
- - uid: 328
- components:
- - type: Transform
- pos: 0.6238045,-7.432267
- parent: 2
- - uid: 341
- components:
- - type: Transform
- pos: 0.7113961,-7.2646704
- parent: 2
- uid: 9391
components:
- type: Transform
@@ -50273,6 +51262,11 @@ entities:
- type: Transform
pos: 37.292343,26.40349
parent: 2
+ - uid: 9550
+ components:
+ - type: Transform
+ pos: 26.36362,-56.31381
+ parent: 2
- uid: 11095
components:
- type: Transform
@@ -50288,11 +51282,26 @@ entities:
- type: Transform
pos: -27.343176,-1.5369649
parent: 2
+ - uid: 15734
+ components:
+ - type: Transform
+ pos: -0.052975893,-3.6016946
+ parent: 2
+ - uid: 15735
+ components:
+ - type: Transform
+ pos: -0.1311009,-3.3360696
+ parent: 2
- uid: 16341
components:
- type: Transform
pos: 3.6412609,-0.07137632
parent: 2
+ - uid: 16349
+ components:
+ - type: Transform
+ pos: 26.58237,-56.735683
+ parent: 2
- proto: DrinkTeapot
entities:
- uid: 908
@@ -50300,6 +51309,13 @@ entities:
- type: Transform
pos: 1.912011,-4.3345895
parent: 2
+- proto: DrinkTequilaBottleFull
+ entities:
+ - uid: 3991
+ components:
+ - type: Transform
+ pos: 26.754246,-56.12631
+ parent: 2
- proto: DrinkVodkaBottleFull
entities:
- uid: 13769
@@ -50333,7 +51349,7 @@ entities:
- uid: 13784
components:
- type: Transform
- pos: 27.642355,37.74729
+ pos: 27.72451,34.243202
parent: 2
- proto: EmergencyFunnyOxygenTankFilled
entities:
@@ -50344,6 +51360,18 @@ entities:
parent: 2
- proto: EmergencyLight
entities:
+ - uid: 2515
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-32.5
+ parent: 2
+ - uid: 5998
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-5.5
+ parent: 2
- uid: 7773
components:
- type: Transform
@@ -50361,6 +51389,12 @@ entities:
- type: Transform
pos: 16.5,2.5
parent: 2
+ - uid: 15338
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 28.5,-41.5
+ parent: 2
- uid: 15477
components:
- type: Transform
@@ -50537,18 +51571,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 25.5,-28.5
parent: 2
- - uid: 15509
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-33.5
- parent: 2
- - uid: 15510
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 29.5,-41.5
- parent: 2
- uid: 15511
components:
- type: Transform
@@ -51021,12 +52043,6 @@ entities:
rot: 3.141592653589793 rad
pos: 1.5,-7.5
parent: 2
- - uid: 16361
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-2.5
- parent: 2
- proto: EmergencyRollerBed
entities:
- uid: 4100
@@ -51108,6 +52124,11 @@ entities:
parent: 2
- proto: ExtinguisherCabinetFilled
entities:
+ - uid: 1257
+ components:
+ - type: Transform
+ pos: 25.5,-41.5
+ parent: 2
- uid: 4487
components:
- type: Transform
@@ -51355,11 +52376,6 @@ entities:
destinationAddress: Captain's Office
- proto: filingCabinetDrawerRandom
entities:
- - uid: 1792
- components:
- - type: Transform
- pos: 11.5,-16.5
- parent: 2
- uid: 2032
components:
- type: Transform
@@ -51415,6 +52431,11 @@ entities:
- type: Transform
pos: 11.5,30.5
parent: 2
+ - uid: 12981
+ components:
+ - type: Transform
+ pos: 10.5,-19.5
+ parent: 2
- proto: filingCabinetRandom
entities:
- uid: 1045
@@ -51768,10 +52789,10 @@ entities:
devices:
- 243
- 197
- - 853
- - 16329
- - 16330
- - 16331
+ - 3815
+ - 5992
+ - 3439
+ - 5993
- 1620
- 1621
- 1622
@@ -51781,6 +52802,7 @@ entities:
- 266
- 1628
- 1629
+ - 14702
- uid: 14651
components:
- type: MetaData
@@ -52233,10 +53255,12 @@ entities:
parent: 2
- type: DeviceList
devices:
- - 16331
- - 16330
- - 16329
- - 853
+ - 5993
+ - 3439
+ - 5992
+ - 3815
+ - 14702
+ - 1628
- proto: FireAlarmElectronics
entities:
- uid: 2284
@@ -52259,6 +53283,11 @@ entities:
parent: 2
- proto: FireExtinguisher
entities:
+ - uid: 1914
+ components:
+ - type: Transform
+ pos: 29.351881,-29.496101
+ parent: 2
- uid: 8474
components:
- type: Transform
@@ -52291,6 +53320,7 @@ entities:
- 813
- 811
- 14641
+ - 16327
- uid: 2595
components:
- type: Transform
@@ -52435,6 +53465,18 @@ entities:
- 12732
- 8138
- 14665
+ - uid: 14702
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-7.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 488
+ - 811
+ - 14641
+ - 16327
- uid: 15853
components:
- type: Transform
@@ -52610,17 +53652,54 @@ entities:
- 811
- 14641
- 14651
- - uid: 853
+ - uid: 3439
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: -0.5,-3.5
+ pos: -1.5,-5.5
parent: 2
- type: DeviceNetwork
deviceLists:
+ - 488
+ - 811
+ - 14641
- 16327
+ - uid: 3815
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-3.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 488
- 811
- 14641
+ - 16327
+ - uid: 5992
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-4.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 488
+ - 811
+ - 14641
+ - 16327
+ - uid: 5993
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: -1.5,-6.5
+ parent: 2
+ - type: DeviceNetwork
+ deviceLists:
+ - 488
+ - 811
+ - 14641
+ - 16327
- uid: 6141
components:
- type: Transform
@@ -52823,10 +53902,10 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
- 12724
- 14667
- 14665
+ - 14575
- uid: 13853
components:
- type: Transform
@@ -52847,39 +53926,6 @@ entities:
deviceLists:
- 14671
- 14673
- - uid: 16329
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-4.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16327
- - 811
- - 14641
- - uid: 16330
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-5.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16327
- - 811
- - 14641
- - uid: 16331
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: -0.5,-6.5
- parent: 2
- - type: DeviceNetwork
- deviceLists:
- - 16327
- - 811
- - 14641
- proto: FirelockElectronics
entities:
- uid: 2286
@@ -53830,9 +54876,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12724
- - 12673
- 14665
- 14667
+ - 14575
- uid: 13835
components:
- type: Transform
@@ -53841,9 +54887,9 @@ entities:
- type: DeviceNetwork
deviceLists:
- 12724
- - 12673
- 14665
- 14667
+ - 14575
- uid: 13836
components:
- type: Transform
@@ -53851,10 +54897,10 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
- 12708
- 14666
- 14667
+ - 14575
- uid: 14136
components:
- type: Transform
@@ -54229,10 +55275,10 @@ entities:
parent: 2
- proto: GasCanisterBrokenBase
entities:
- - uid: 14421
+ - uid: 11340
components:
- type: Transform
- pos: 34.5,-40.5
+ pos: 26.5,-41.5
parent: 2
- proto: GasFilterFlipped
entities:
@@ -54250,17 +55296,23 @@ entities:
rot: 3.141592653589793 rad
pos: 34.5,-37.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2330
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 34.5,-39.5
parent: 2
- - uid: 2331
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2429
components:
- type: Transform
- pos: 28.5,-39.5
+ pos: 25.5,-39.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 7803
components:
- type: Transform
@@ -54273,24 +55325,24 @@ entities:
color: '#03FCDFFF'
- proto: GasMinerCarbonDioxide
entities:
- - uid: 2340
+ - uid: 1766
components:
- type: Transform
- pos: 23.5,-39.5
+ pos: 20.5,-39.5
parent: 2
- proto: GasMinerNitrogenStation
entities:
- - uid: 2341
+ - uid: 1763
components:
- type: Transform
- pos: 23.5,-35.5
+ pos: 20.5,-35.5
parent: 2
- proto: GasMinerOxygenStation
entities:
- - uid: 2342
+ - uid: 1762
components:
- type: Transform
- pos: 23.5,-37.5
+ pos: 20.5,-37.5
parent: 2
- proto: GasMinerWaterVapor
entities:
@@ -54301,55 +55353,55 @@ entities:
parent: 2
- proto: GasMixerFlipped
entities:
- - uid: 2504
+ - uid: 2413
components:
- type: Transform
- pos: 29.5,-34.5
+ pos: 32.5,-35.5
parent: 2
- - type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2582
+ - uid: 2430
components:
- type: Transform
- pos: 30.5,-35.5
+ pos: 27.5,-34.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- proto: GasOutletInjector
entities:
- - uid: 2334
+ - uid: 2231
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-37.5
parent: 2
- - uid: 2335
+ - uid: 2232
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-39.5
parent: 2
- - uid: 2336
+ - uid: 2247
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 38.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-35.5
parent: 2
- - uid: 2337
+ - uid: 2334
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-35.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-35.5
parent: 2
- - uid: 2338
+ - uid: 2335
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-37.5
parent: 2
- - uid: 2339
+ - uid: 2336
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 24.5,-39.5
+ rot: -1.5707963267948966 rad
+ pos: 38.5,-39.5
parent: 2
- uid: 2622
components:
@@ -54365,24 +55417,14 @@ entities:
parent: 2
- proto: GasPassiveVent
entities:
- - uid: 2428
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-35.5
- parent: 2
- - uid: 2429
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-37.5
- parent: 2
- - uid: 2430
+ - uid: 2415
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 22.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-33.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2431
components:
- type: Transform
@@ -54401,12 +55443,6 @@ entities:
rot: 3.141592653589793 rad
pos: 40.5,-39.5
parent: 2
- - uid: 2497
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 25.5,-33.5
- parent: 2
- uid: 2709
components:
- type: Transform
@@ -54424,6 +55460,24 @@ entities:
- type: Transform
pos: 20.5,-24.5
parent: 2
+ - uid: 8933
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-35.5
+ parent: 2
+ - uid: 8934
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-39.5
+ parent: 2
+ - uid: 8944
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 19.5,-37.5
+ parent: 2
- uid: 11240
components:
- type: Transform
@@ -54567,23 +55621,26 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2422
+ - uid: 2375
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-34.5
+ rot: 3.141592653589793 rad
+ pos: 25.5,-40.5
parent: 2
- - uid: 2423
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2412
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 22.5,-36.5
+ pos: 27.5,-30.5
parent: 2
- - uid: 2424
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2414
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-38.5
+ pos: 32.5,-31.5
parent: 2
- uid: 2425
components:
@@ -54629,17 +55686,8 @@ entities:
rot: -1.5707963267948966 rad
pos: 34.5,-40.5
parent: 2
- - uid: 2492
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-40.5
- parent: 2
- - uid: 2496
- components:
- - type: Transform
- pos: 28.5,-33.5
- parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2510
components:
- type: Transform
@@ -54662,6 +55710,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 2946
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 32.5,-36.5
+ parent: 2
- uid: 3903
components:
- type: Transform
@@ -54751,6 +55805,13 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 5198
+ components:
+ - type: Transform
+ pos: 25.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 6096
components:
- type: Transform
@@ -54797,11 +55858,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 24.5,-17.5
parent: 2
- - uid: 8236
- components:
- - type: Transform
- pos: 30.5,-31.5
- parent: 2
- uid: 8525
components:
- type: Transform
@@ -54981,6 +56037,24 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8925
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-36.5
+ parent: 2
+ - uid: 8952
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-38.5
+ parent: 2
+ - uid: 8953
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-34.5
+ parent: 2
- uid: 8973
components:
- type: Transform
@@ -56611,6 +57685,11 @@ entities:
- type: Transform
pos: 28.5,-21.5
parent: 2
+ - uid: 2513
+ components:
+ - type: Transform
+ pos: 32.5,-33.5
+ parent: 2
- uid: 2549
components:
- type: Transform
@@ -56632,20 +57711,14 @@ entities:
- uid: 2696
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-33.5
+ rot: -1.5707963267948966 rad
+ pos: 31.5,-30.5
parent: 2
- uid: 2699
components:
- type: Transform
pos: 34.5,-31.5
parent: 2
- - uid: 2748
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 30.5,-30.5
- parent: 2
- uid: 3733
components:
- type: Transform
@@ -56788,11 +57861,11 @@ entities:
color: '#0055CCFF'
- proto: GasPipeHalf
entities:
- - uid: 2333
+ - uid: 2310
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-35.5
parent: 2
- uid: 2482
components:
@@ -56843,17 +57916,17 @@ entities:
rot: -1.5707963267948966 rad
pos: 25.5,-17.5
parent: 2
- - uid: 14696
+ - uid: 16407
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 28.5,-37.5
+ pos: 25.5,-35.5
parent: 2
- - uid: 14697
+ - uid: 16408
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 30.5,-37.5
+ rot: -1.5707963267948966 rad
+ pos: 25.5,-37.5
parent: 2
- proto: GasPipeSensorDistribution
entities:
@@ -56890,6 +57963,12 @@ entities:
color: '#990000FF'
- proto: GasPipeStraight
entities:
+ - uid: 140
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 26.5,-36.5
+ parent: 2
- uid: 215
components:
- type: Transform
@@ -57703,78 +58782,57 @@ entities:
- type: Transform
pos: 23.5,-30.5
parent: 2
- - uid: 2374
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-34.5
- parent: 2
- - uid: 2375
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-35.5
- parent: 2
- - uid: 2376
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-36.5
- parent: 2
- - uid: 2377
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-37.5
- parent: 2
- - uid: 2378
+ - uid: 2242
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-38.5
parent: 2
- - uid: 2379
+ - uid: 2245
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-38.5
parent: 2
- - uid: 2380
+ - uid: 2281
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-38.5
parent: 2
- - uid: 2381
+ - uid: 2282
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-35.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-34.5
parent: 2
- - uid: 2382
+ - uid: 2283
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-35.5
parent: 2
- - uid: 2383
+ - uid: 2287
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-37.5
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-38.5
parent: 2
- - uid: 2384
+ - uid: 2307
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 27.5,-38.5
+ pos: 30.5,-30.5
parent: 2
- - uid: 2385
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2324
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-39.5
+ pos: 25.5,-38.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2386
components:
- type: Transform
@@ -57901,153 +58959,178 @@ entities:
rot: -1.5707963267948966 rad
pos: 38.5,-38.5
parent: 2
- - uid: 2407
+ - uid: 2411
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 27.5,-40.5
parent: 2
- - uid: 2408
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2416
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-38.5
+ pos: 32.5,-34.5
parent: 2
- - uid: 2409
+ - uid: 2419
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-37.5
+ pos: 39.5,-34.5
parent: 2
- - uid: 2410
+ - uid: 2420
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-36.5
+ pos: 39.5,-36.5
parent: 2
- - uid: 2411
+ - uid: 2421
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 25.5,-35.5
+ pos: 39.5,-38.5
parent: 2
- - uid: 2412
+ - uid: 2422
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 25.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-39.5
parent: 2
- - uid: 2413
+ - uid: 2423
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-36.5
parent: 2
- - uid: 2414
+ - uid: 2424
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-39.5
parent: 2
- - uid: 2415
+ - uid: 2428
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 24.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 28.5,-40.5
parent: 2
- - uid: 2416
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2434
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 23.5,-38.5
+ pos: 24.5,-33.5
parent: 2
- - uid: 2417
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2436
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-36.5
parent: 2
- - uid: 2418
+ - uid: 2441
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 23.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 26.5,-40.5
parent: 2
- - uid: 2419
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2442
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-34.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-34.5
parent: 2
- - uid: 2420
+ - uid: 2443
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-36.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-35.5
parent: 2
- - uid: 2421
+ - uid: 2444
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 39.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-36.5
parent: 2
- - uid: 2469
+ - uid: 2445
components:
- type: Transform
- pos: 28.5,-38.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-37.5
parent: 2
- - uid: 2470
+ - uid: 2452
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 29.5,-40.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-37.5
parent: 2
- - uid: 2473
+ - uid: 2453
components:
- type: Transform
- pos: 28.5,-34.5
+ pos: 25.5,-34.5
parent: 2
- - uid: 2474
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 2470
components:
- type: Transform
- pos: 28.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2475
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 30.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2476
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 31.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2477
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 32.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2478
components:
- type: Transform
rot: -1.5707963267948966 rad
pos: 33.5,-40.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2479
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 34.5,-38.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2480
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 34.5,-36.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- uid: 2481
components:
- type: Transform
@@ -58063,33 +59146,25 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2495
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 27.5,-33.5
- parent: 2
- - uid: 2505
+ - uid: 2492
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: -7.5,-25.5
+ pos: 25.5,-37.5
parent: 2
- type: AtmosPipeColor
- color: '#0055CCFF'
- - uid: 2507
+ color: '#990000FF'
+ - uid: 2496
components:
- type: Transform
- rot: 3.141592653589793 rad
- pos: 29.5,-33.5
+ pos: 27.5,-31.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2508
+ - uid: 2505
components:
- type: Transform
rot: 3.141592653589793 rad
- pos: 29.5,-32.5
+ pos: -7.5,-25.5
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
@@ -58101,28 +59176,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2513
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 33.5,-36.5
- parent: 2
- - uid: 2514
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 32.5,-36.5
- parent: 2
- - uid: 2515
+ - uid: 2559
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: 31.5,-36.5
+ rot: -1.5707963267948966 rad
+ pos: 29.5,-35.5
parent: 2
- - uid: 2559
+ - uid: 2563
components:
- type: Transform
- pos: 30.5,-34.5
+ pos: 32.5,-32.5
parent: 2
- uid: 2571
components:
@@ -58131,11 +59194,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2581
- components:
- - type: Transform
- pos: 30.5,-32.5
- parent: 2
- uid: 2621
components:
- type: Transform
@@ -58187,6 +59245,21 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 2945
+ components:
+ - type: Transform
+ pos: 27.5,-33.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
+ - uid: 2948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 31.5,-30.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#0055CCFF'
- uid: 2975
components:
- type: Transform
@@ -58443,7 +59516,15 @@ entities:
- uid: 5207
components:
- type: Transform
- pos: 28.5,-37.5
+ pos: 25.5,-36.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 5209
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-39.5
parent: 2
- uid: 5300
components:
@@ -58631,6 +59712,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 6640
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-37.5
+ parent: 2
- uid: 6653
components:
- type: Transform
@@ -59662,6 +60749,18 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 8787
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-36.5
+ parent: 2
+ - uid: 8789
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 20.5,-34.5
+ parent: 2
- uid: 8793
components:
- type: Transform
@@ -59883,6 +60982,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8889
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 21.5,-34.5
+ parent: 2
- uid: 8896
components:
- type: Transform
@@ -59969,6 +61074,37 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
+ - uid: 8949
+ components:
+ - type: Transform
+ pos: 25.5,-35.5
+ parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
+ - uid: 8950
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-36.5
+ parent: 2
+ - uid: 8951
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-35.5
+ parent: 2
+ - uid: 8954
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-34.5
+ parent: 2
+ - uid: 8987
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-38.5
+ parent: 2
- uid: 8998
components:
- type: Transform
@@ -60220,11 +61356,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 9630
- components:
- - type: Transform
- pos: 28.5,-35.5
- parent: 2
- uid: 9653
components:
- type: Transform
@@ -67848,17 +68979,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2471
+ - uid: 2418
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 28.5,-18.5
+ pos: 26.5,-34.5
parent: 2
- - uid: 2472
+ - uid: 2471
components:
- type: Transform
rot: -1.5707963267948966 rad
- pos: 29.5,-36.5
+ pos: 28.5,-18.5
parent: 2
- uid: 2485
components:
@@ -67890,11 +69020,16 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#0055CCFF'
- - uid: 2506
+ - uid: 2498
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 29.5,-35.5
+ pos: 27.5,-35.5
+ parent: 2
+ - uid: 2499
+ components:
+ - type: Transform
+ pos: 33.5,-36.5
parent: 2
- uid: 2511
components:
@@ -67904,12 +69039,6 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
- - uid: 2563
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 30.5,-36.5
- parent: 2
- uid: 3490
components:
- type: Transform
@@ -69441,6 +70570,12 @@ entities:
parent: 2
- type: AtmosPipeColor
color: '#990000FF'
+ - uid: 13856
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 27.5,-36.5
+ parent: 2
- uid: 13879
components:
- type: Transform
@@ -69598,23 +70733,23 @@ entities:
rot: 3.141592653589793 rad
pos: 23.5,-28.5
parent: 2
- - uid: 2498
+ - uid: 2384
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-34.5
+ pos: 25.5,-34.5
parent: 2
- - uid: 2499
+ - uid: 2409
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-36.5
+ pos: 25.5,-38.5
parent: 2
- - uid: 2500
+ - uid: 2410
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 28.5,-38.5
+ pos: 25.5,-36.5
parent: 2
- uid: 2501
components:
@@ -69732,12 +70867,14 @@ entities:
rot: 3.141592653589793 rad
pos: 23.5,-21.5
parent: 2
- - uid: 2494
+ - uid: 2497
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 26.5,-33.5
+ rot: 1.5707963267948966 rad
+ pos: 23.5,-33.5
parent: 2
+ - type: AtmosPipeColor
+ color: '#990000FF'
- proto: GasVentPump
entities:
- uid: 368
@@ -69935,7 +71072,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
+ - 14575
- type: AtmosPipeColor
color: '#0055CCFF'
- uid: 7554
@@ -71542,7 +72679,7 @@ entities:
parent: 2
- type: DeviceNetwork
deviceLists:
- - 12673
+ - 14575
- type: AtmosPipeColor
color: '#990000FF'
- uid: 9015
@@ -72616,6 +73753,11 @@ entities:
parent: 2
- proto: Grille
entities:
+ - uid: 19
+ components:
+ - type: Transform
+ pos: -5.5,-7.5
+ parent: 2
- uid: 172
components:
- type: Transform
@@ -72626,6 +73768,21 @@ entities:
- type: Transform
pos: -5.5,2.5
parent: 2
+ - uid: 269
+ components:
+ - type: Transform
+ pos: 8.5,-59.5
+ parent: 2
+ - uid: 310
+ components:
+ - type: Transform
+ pos: 8.5,-61.5
+ parent: 2
+ - uid: 320
+ components:
+ - type: Transform
+ pos: 11.5,-61.5
+ parent: 2
- uid: 383
components:
- type: Transform
@@ -72646,31 +73803,51 @@ entities:
- type: Transform
pos: 18.5,4.5
parent: 2
- - uid: 871
+ - uid: 507
components:
- type: Transform
- pos: 61.5,-23.5
+ pos: 39.5,60.5
parent: 2
- - uid: 1108
+ - uid: 510
components:
- type: Transform
- pos: 47.5,-10.5
+ pos: -5.5,-6.5
parent: 2
- - uid: 1116
+ - uid: 827
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-11.5
+ pos: -28.5,1.5
parent: 2
- - uid: 1150
+ - uid: 846
components:
- type: Transform
- pos: 36.5,-17.5
+ pos: 8.5,-60.5
parent: 2
- - uid: 1157
+ - uid: 852
components:
- type: Transform
- pos: 44.5,-9.5
+ pos: 12.5,-61.5
+ parent: 2
+ - uid: 858
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 29.5,56.5
+ parent: 2
+ - uid: 871
+ components:
+ - type: Transform
+ pos: 61.5,-23.5
+ parent: 2
+ - uid: 1108
+ components:
+ - type: Transform
+ pos: 47.5,-10.5
+ parent: 2
+ - uid: 1150
+ components:
+ - type: Transform
+ pos: 36.5,-17.5
parent: 2
- uid: 1161
components:
@@ -73078,21 +74255,6 @@ entities:
- type: Transform
pos: 35.5,-36.5
parent: 2
- - uid: 2205
- components:
- - type: Transform
- pos: 27.5,-34.5
- parent: 2
- - uid: 2207
- components:
- - type: Transform
- pos: 27.5,-40.5
- parent: 2
- - uid: 2210
- components:
- - type: Transform
- pos: 27.5,-39.5
- parent: 2
- uid: 2216
components:
- type: Transform
@@ -73108,10 +74270,17 @@ entities:
- type: Transform
pos: 35.5,-39.5
parent: 2
+ - uid: 2236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-37.5
+ parent: 2
- uid: 2238
components:
- type: Transform
- pos: 25.5,-39.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-36.5
parent: 2
- uid: 2239
components:
@@ -73128,26 +74297,11 @@ entities:
- type: Transform
pos: 37.5,-37.5
parent: 2
- - uid: 2247
- components:
- - type: Transform
- pos: 25.5,-35.5
- parent: 2
- - uid: 2287
- components:
- - type: Transform
- pos: 27.5,-38.5
- parent: 2
- uid: 2306
components:
- type: Transform
pos: 35.5,-38.5
parent: 2
- - uid: 2307
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- uid: 2308
components:
- type: Transform
@@ -73158,21 +74312,6 @@ entities:
- type: Transform
pos: 37.5,-39.5
parent: 2
- - uid: 2311
- components:
- - type: Transform
- pos: 27.5,-36.5
- parent: 2
- - uid: 2312
- components:
- - type: Transform
- pos: 27.5,-37.5
- parent: 2
- - uid: 2313
- components:
- - type: Transform
- pos: 27.5,-35.5
- parent: 2
- uid: 2321
components:
- type: Transform
@@ -73253,21 +74392,6 @@ entities:
- type: Transform
pos: 44.5,-33.5
parent: 2
- - uid: 2367
- components:
- - type: Transform
- pos: 26.5,-43.5
- parent: 2
- - uid: 2368
- components:
- - type: Transform
- pos: 25.5,-43.5
- parent: 2
- - uid: 2369
- components:
- - type: Transform
- pos: 24.5,-43.5
- parent: 2
- uid: 2370
components:
- type: Transform
@@ -73283,6 +74407,12 @@ entities:
- type: Transform
pos: 20.5,-43.5
parent: 2
+ - uid: 2408
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-39.5
+ parent: 2
- uid: 2460
components:
- type: Transform
@@ -73303,6 +74433,18 @@ entities:
- type: Transform
pos: 22.5,-25.5
parent: 2
+ - uid: 2474
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-38.5
+ parent: 2
+ - uid: 2494
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-40.5
+ parent: 2
- uid: 2576
components:
- type: Transform
@@ -73413,6 +74555,11 @@ entities:
- type: Transform
pos: -6.5,63.5
parent: 2
+ - uid: 2833
+ components:
+ - type: Transform
+ pos: 39.5,59.5
+ parent: 2
- uid: 2847
components:
- type: Transform
@@ -73909,29 +75056,11 @@ entities:
- type: Transform
pos: -27.5,-8.5
parent: 2
- - uid: 4591
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,0.5
- parent: 2
- uid: 4592
components:
- type: Transform
pos: -29.5,-2.5
parent: 2
- - uid: 4621
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,0.5
- parent: 2
- - uid: 4622
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -29.5,1.5
- parent: 2
- uid: 4633
components:
- type: Transform
@@ -74278,6 +75407,26 @@ entities:
- type: Transform
pos: 26.5,-26.5
parent: 2
+ - uid: 6004
+ components:
+ - type: Transform
+ pos: 45.5,-11.5
+ parent: 2
+ - uid: 6005
+ components:
+ - type: Transform
+ pos: 45.5,-9.5
+ parent: 2
+ - uid: 6014
+ components:
+ - type: Transform
+ pos: 25.5,-44.5
+ parent: 2
+ - uid: 6079
+ components:
+ - type: Transform
+ pos: 24.5,-44.5
+ parent: 2
- uid: 6118
components:
- type: Transform
@@ -74644,11 +75793,6 @@ entities:
- type: Transform
pos: -28.5,-61.5
parent: 2
- - uid: 6467
- components:
- - type: Transform
- pos: 29.5,55.5
- parent: 2
- uid: 6481
components:
- type: Transform
@@ -74958,11 +76102,6 @@ entities:
- type: Transform
pos: 25.5,53.5
parent: 2
- - uid: 7893
- components:
- - type: Transform
- pos: 46.5,-10.5
- parent: 2
- uid: 7909
components:
- type: Transform
@@ -75796,6 +76935,11 @@ entities:
- type: Transform
pos: 29.5,54.5
parent: 2
+ - uid: 8527
+ components:
+ - type: Transform
+ pos: 45.5,-10.5
+ parent: 2
- uid: 8687
components:
- type: Transform
@@ -75807,10 +76951,23 @@ entities:
- type: Transform
pos: 29.5,51.5
parent: 2
- - uid: 9036
+ - uid: 8946
components:
- type: Transform
- pos: 44.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-37.5
+ parent: 2
+ - uid: 8947
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-39.5
+ parent: 2
+ - uid: 8948
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-35.5
parent: 2
- uid: 9043
components:
@@ -75839,6 +76996,41 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,-45.5
parent: 2
+ - uid: 9551
+ components:
+ - type: Transform
+ pos: 13.5,-61.5
+ parent: 2
+ - uid: 9552
+ components:
+ - type: Transform
+ pos: 14.5,-61.5
+ parent: 2
+ - uid: 9553
+ components:
+ - type: Transform
+ pos: 17.5,-61.5
+ parent: 2
+ - uid: 9554
+ components:
+ - type: Transform
+ pos: 18.5,-61.5
+ parent: 2
+ - uid: 9555
+ components:
+ - type: Transform
+ pos: 18.5,-60.5
+ parent: 2
+ - uid: 9556
+ components:
+ - type: Transform
+ pos: 18.5,-58.5
+ parent: 2
+ - uid: 9558
+ components:
+ - type: Transform
+ pos: 38.5,60.5
+ parent: 2
- uid: 9997
components:
- type: Transform
@@ -75894,11 +77086,11 @@ entities:
- type: Transform
pos: -29.5,-35.5
parent: 2
- - uid: 11340
+ - uid: 12673
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: 18.5,-43.5
+ pos: 24.5,-34.5
parent: 2
- uid: 12839
components:
@@ -75928,48 +77120,12 @@ entities:
- type: Transform
pos: 4.5,-43.5
parent: 2
- - uid: 14217
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-41.5
- parent: 2
- - uid: 14218
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-40.5
- parent: 2
- - uid: 14219
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-37.5
- parent: 2
- uid: 14222
components:
- type: Transform
rot: 3.141592653589793 rad
pos: -13.5,-48.5
parent: 2
- - uid: 14227
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-39.5
- parent: 2
- - uid: 14228
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-36.5
- parent: 2
- - uid: 14229
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 18.5,-35.5
- parent: 2
- uid: 14230
components:
- type: Transform
@@ -76134,6 +77290,12 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,-42.5
parent: 2
+ - uid: 14534
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-35.5
+ parent: 2
- uid: 14796
components:
- type: Transform
@@ -76145,6 +77307,11 @@ entities:
rot: -1.5707963267948966 rad
pos: -12.5,-6.5
parent: 2
+ - uid: 15271
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
- uid: 15355
components:
- type: Transform
@@ -76179,31 +77346,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,-47.5
parent: 2
- - uid: 15677
- components:
- - type: Transform
- pos: 31.5,56.5
- parent: 2
- - uid: 15678
- components:
- - type: Transform
- pos: 32.5,56.5
- parent: 2
- - uid: 15679
- components:
- - type: Transform
- pos: 33.5,56.5
- parent: 2
- - uid: 15680
- components:
- - type: Transform
- pos: 34.5,56.5
- parent: 2
- - uid: 15681
- components:
- - type: Transform
- pos: 35.5,56.5
- parent: 2
- uid: 15682
components:
- type: Transform
@@ -76219,12 +77361,6 @@ entities:
- type: Transform
pos: 39.5,52.5
parent: 2
- - uid: 15731
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 18.5,-51.5
- parent: 2
- uid: 15732
components:
- type: Transform
@@ -76237,42 +77373,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 18.5,-53.5
parent: 2
- - uid: 15734
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 10.5,-57.5
- parent: 2
- - uid: 15735
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 11.5,-57.5
- parent: 2
- - uid: 15736
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 12.5,-57.5
- parent: 2
- - uid: 15737
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 13.5,-57.5
- parent: 2
- - uid: 15738
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 14.5,-57.5
- parent: 2
- - uid: 15739
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 17.5,-57.5
- parent: 2
- uid: 15740
components:
- type: Transform
@@ -76315,12 +77415,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,-48.5
parent: 2
- - uid: 15747
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 8.5,-47.5
- parent: 2
- uid: 15748
components:
- type: Transform
@@ -76351,12 +77445,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 8.5,-39.5
parent: 2
- - uid: 15753
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 38.5,56.5
- parent: 2
- uid: 15754
components:
- type: Transform
@@ -76466,8 +77554,73 @@ entities:
- type: Transform
pos: -26.5,41.5
parent: 2
+ - uid: 16332
+ components:
+ - type: Transform
+ pos: 35.5,60.5
+ parent: 2
+ - uid: 16333
+ components:
+ - type: Transform
+ pos: 34.5,60.5
+ parent: 2
+ - uid: 16334
+ components:
+ - type: Transform
+ pos: 33.5,60.5
+ parent: 2
+ - uid: 16336
+ components:
+ - type: Transform
+ pos: 31.5,60.5
+ parent: 2
+ - uid: 16337
+ components:
+ - type: Transform
+ pos: 29.5,60.5
+ parent: 2
+ - uid: 16338
+ components:
+ - type: Transform
+ pos: 29.5,59.5
+ parent: 2
+ - uid: 16344
+ components:
+ - type: Transform
+ pos: 29.5,58.5
+ parent: 2
+ - uid: 16403
+ components:
+ - type: Transform
+ pos: -44.5,-39.5
+ parent: 2
+ - uid: 16404
+ components:
+ - type: Transform
+ pos: -43.5,-39.5
+ parent: 2
+ - uid: 16405
+ components:
+ - type: Transform
+ pos: -42.5,-39.5
+ parent: 2
+ - uid: 16406
+ components:
+ - type: Transform
+ pos: -41.5,-39.5
+ parent: 2
- proto: GrilleSpawner
entities:
+ - uid: 314
+ components:
+ - type: Transform
+ pos: 10.5,-61.5
+ parent: 2
+ - uid: 853
+ components:
+ - type: Transform
+ pos: 8.5,-57.5
+ parent: 2
- uid: 1755
components:
- type: Transform
@@ -76493,6 +77646,11 @@ entities:
- type: Transform
pos: -0.5,55.5
parent: 2
+ - uid: 3438
+ components:
+ - type: Transform
+ pos: 39.5,57.5
+ parent: 2
- uid: 3450
components:
- type: Transform
@@ -76608,6 +77766,11 @@ entities:
- type: Transform
pos: 49.5,-37.5
parent: 2
+ - uid: 6467
+ components:
+ - type: Transform
+ pos: 23.5,-44.5
+ parent: 2
- uid: 7113
components:
- type: Transform
@@ -76708,6 +77871,11 @@ entities:
- type: Transform
pos: -24.5,63.5
parent: 2
+ - uid: 8395
+ components:
+ - type: Transform
+ pos: 29.5,55.5
+ parent: 2
- uid: 8406
components:
- type: Transform
@@ -76728,6 +77896,16 @@ entities:
- type: Transform
pos: -30.5,17.5
parent: 2
+ - uid: 8528
+ components:
+ - type: Transform
+ pos: 18.5,-43.5
+ parent: 2
+ - uid: 9557
+ components:
+ - type: Transform
+ pos: 8.5,-47.5
+ parent: 2
- uid: 10230
components:
- type: Transform
@@ -76763,11 +77941,21 @@ entities:
- type: Transform
pos: 30.5,-48.5
parent: 2
+ - uid: 14696
+ components:
+ - type: Transform
+ pos: 18.5,-51.5
+ parent: 2
- uid: 16145
components:
- type: Transform
pos: -26.5,40.5
parent: 2
+ - uid: 16335
+ components:
+ - type: Transform
+ pos: 32.5,60.5
+ parent: 2
- proto: GunSafeDisabler
entities:
- uid: 3427
@@ -76855,20 +78043,6 @@ entities:
- type: Transform
pos: 36.5,-2.5
parent: 2
- - uid: 4997
- components:
- - type: MetaData
- name: high security door (Gravity Generator)
- - type: Transform
- pos: 38.5,-5.5
- parent: 2
- - uid: 15433
- components:
- - type: MetaData
- name: high security door (Station Anchor)
- - type: Transform
- pos: 44.5,-5.5
- parent: 2
- proto: HolopadAiCore
entities:
- uid: 14774
@@ -77004,10 +78178,10 @@ entities:
parent: 2
- proto: HolopadEngineeringAtmosMain
entities:
- - uid: 14766
+ - uid: 5
components:
- type: Transform
- pos: 31.5,-37.5
+ pos: 29.5,-41.5
parent: 2
- proto: HolopadEngineeringAtmosTeg
entities:
@@ -77198,13 +78372,6 @@ entities:
- type: Transform
pos: -19.5,15.5
parent: 2
-- proto: HolopadScienceFront
- entities:
- - uid: 14721
- components:
- - type: Transform
- pos: -11.5,21.5
- parent: 2
- proto: HolopadScienceRnd
entities:
- uid: 16391
@@ -77694,11 +78861,13 @@ entities:
rot: 3.141592653589793 rad
pos: -41.5,30.5
parent: 2
- - uid: 14449
+- proto: IntercomCommand
+ entities:
+ - uid: 4421
components:
- type: Transform
rot: 1.5707963267948966 rad
- pos: -18.5,-5.5
+ pos: -23.5,-6.5
parent: 2
- uid: 14474
components:
@@ -77709,16 +78878,14 @@ entities:
- uid: 14475
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: -25.5,-5.5
+ rot: 1.5707963267948966 rad
+ pos: -18.5,-5.5
parent: 2
-- proto: IntercomCommand
- entities:
- - uid: 4421
+ - uid: 16409
components:
- type: Transform
- rot: 1.5707963267948966 rad
- pos: -23.5,-6.5
+ rot: -1.5707963267948966 rad
+ pos: -25.5,-5.5
parent: 2
- proto: IntercomCommon
entities:
@@ -77990,13 +79157,6 @@ entities:
- type: Transform
pos: 0.46948135,19.865473
parent: 2
-- proto: LampInterrogator
- entities:
- - uid: 16075
- components:
- - type: Transform
- pos: -9.509186,58.65886
- parent: 2
- proto: LargeBeaker
entities:
- uid: 6738
@@ -78018,6 +79178,20 @@ entities:
- type: Physics
canCollide: False
- type: InsideEntityStorage
+- proto: LeftArmBorg
+ entities:
+ - uid: 14514
+ components:
+ - type: Transform
+ pos: -27.534824,16.087107
+ parent: 2
+- proto: Lighter
+ entities:
+ - uid: 14933
+ components:
+ - type: Transform
+ pos: -4.7553344,-6.4766946
+ parent: 2
- proto: LightReplacer
entities:
- uid: 808
@@ -78098,13 +79272,13 @@ entities:
parent: 2
- type: DeviceLinkSource
linkedPorts:
- 16351:
+ 6001:
- Pressed: Toggle
- 16352:
+ 6000:
- Pressed: Toggle
- 230:
+ 6002:
- Pressed: Toggle
- 226:
+ 3436:
- Pressed: Toggle
- proto: LockableButtonCaptain
entities:
@@ -78119,12 +79293,14 @@ entities:
linkedPorts:
4881:
- Pressed: Toggle
- 13974:
+ 996:
- Pressed: Toggle
13978:
- Pressed: Toggle
13977:
- Pressed: Toggle
+ 755:
+ - Pressed: Toggle
- proto: LockableButtonCargo
entities:
- uid: 6557
@@ -78479,10 +79655,10 @@ entities:
parent: 2
- proto: LockerCaptainFilledNoLaser
entities:
- - uid: 4620
+ - uid: 14573
components:
- type: Transform
- pos: -26.5,1.5
+ pos: -27.5,1.5
parent: 2
- proto: LockerChemistryFilled
entities:
@@ -78683,6 +79859,11 @@ entities:
- type: Transform
pos: 35.5,17.5
parent: 2
+ - uid: 16348
+ components:
+ - type: Transform
+ pos: 24.5,20.5
+ parent: 2
- proto: LockerMime
entities:
- uid: 273
@@ -78860,8 +80041,8 @@ entities:
immutable: False
temperature: 293.14673
moles:
- - 1.7459903
- - 6.568249
+ - 1.8977377
+ - 7.139109
- 0
- 0
- 0
@@ -78878,12 +80059,10 @@ entities:
showEnts: False
occludes: True
ents:
- - 16061
- - 16060
- - 16059
- - 16058
- - 16057
- 16056
+ - 16057
+ - 16058
+ - 16060
paper_label: !type:ContainerSlot
showEnts: False
occludes: True
@@ -78916,6 +80095,11 @@ entities:
- type: Transform
pos: 25.5,-29.5
parent: 2
+ - uid: 2748
+ components:
+ - type: Transform
+ pos: 39.5,-8.5
+ parent: 2
- uid: 2754
components:
- type: Transform
@@ -79025,11 +80209,6 @@ entities:
- type: Transform
pos: 43.5,2.5
parent: 2
- - uid: 15251
- components:
- - type: Transform
- pos: 29.5,32.5
- parent: 2
- uid: 15252
components:
- type: Transform
@@ -79084,7 +80263,7 @@ entities:
- uid: 16204
components:
- type: Transform
- pos: 10.9722595,-19.469482
+ pos: 11.323762,-19.48439
parent: 2
- proto: MachineAnomalyGenerator
entities:
@@ -79150,6 +80329,11 @@ entities:
parent: 2
- proto: MachineFrame
entities:
+ - uid: 2507
+ components:
+ - type: Transform
+ pos: 43.5,-0.5
+ parent: 2
- uid: 3423
components:
- type: Transform
@@ -79167,10 +80351,11 @@ entities:
rot: 3.141592653589793 rad
pos: -6.5,-40.5
parent: 2
- - uid: 12382
+ - uid: 13489
components:
- type: Transform
- pos: 41.5,-0.5
+ rot: -1.5707963267948966 rad
+ pos: 40.5,-2.5
parent: 2
- uid: 13683
components:
@@ -79201,6 +80386,11 @@ entities:
parent: 2
- proto: MachineFrameDestroyed
entities:
+ - uid: 677
+ components:
+ - type: Transform
+ pos: 26.5,38.5
+ parent: 2
- uid: 5167
components:
- type: Transform
@@ -79248,6 +80438,11 @@ entities:
- type: Transform
pos: -11.473943,-33.730816
parent: 2
+ - uid: 14449
+ components:
+ - type: Transform
+ pos: -11.508567,-33.919952
+ parent: 2
- proto: MaintenanceFluffSpawner
entities:
- uid: 13636
@@ -79320,15 +80515,15 @@ entities:
- type: Transform
pos: 38.5,31.5
parent: 2
- - uid: 13741
+ - uid: 13742
components:
- type: Transform
- pos: 31.5,1.5
+ pos: 8.5,-24.5
parent: 2
- - uid: 13742
+ - uid: 14521
components:
- type: Transform
- pos: 8.5,-24.5
+ pos: 41.5,5.5
parent: 2
- uid: 15449
components:
@@ -79345,6 +80540,23 @@ entities:
- type: Transform
pos: -19.5,54.5
parent: 2
+- proto: MaintenanceInsulsSpawner
+ entities:
+ - uid: 2472
+ components:
+ - type: Transform
+ pos: -2.5,22.5
+ parent: 2
+ - uid: 2504
+ components:
+ - type: Transform
+ pos: 41.5,-0.5
+ parent: 2
+ - uid: 14524
+ components:
+ - type: Transform
+ pos: -39.5,-43.5
+ parent: 2
- proto: MaintenancePlantSpawner
entities:
- uid: 372
@@ -79432,11 +80644,6 @@ entities:
- type: Transform
pos: 42.5,1.5
parent: 2
- - uid: 15838
- components:
- - type: Transform
- pos: 40.5,-1.5
- parent: 2
- uid: 15848
components:
- type: Transform
@@ -79459,10 +80666,10 @@ entities:
- type: Transform
pos: 12.5,-7.5
parent: 2
- - uid: 727
+ - uid: 1835
components:
- type: Transform
- pos: -5.5,-9.5
+ pos: 3.5,27.5
parent: 2
- uid: 10233
components:
@@ -79564,11 +80771,6 @@ entities:
- type: Transform
pos: -23.5,46.5
parent: 2
- - uid: 16124
- components:
- - type: Transform
- pos: -23.5,47.5
- parent: 2
- proto: MaintenanceWeaponSpawner
entities:
- uid: 725
@@ -79586,11 +80788,6 @@ entities:
- type: Transform
pos: -22.5,5.5
parent: 2
- - uid: 13706
- components:
- - type: Transform
- pos: -16.5,30.5
- parent: 2
- uid: 13733
components:
- type: Transform
@@ -79814,11 +81011,6 @@ entities:
- type: Transform
pos: -5.576272,7.5283756
parent: 2
- - uid: 15271
- components:
- - type: Transform
- pos: 26.634336,-56.68783
- parent: 2
- proto: Morgue
entities:
- uid: 3117
@@ -79905,11 +81097,6 @@ entities:
- type: Transform
pos: 37.5,-28.5
parent: 2
- - uid: 2434
- components:
- - type: Transform
- pos: 22.5,-35.5
- parent: 2
- uid: 5305
components:
- type: Transform
@@ -79935,6 +81122,11 @@ entities:
- type: Transform
pos: 44.5,29.5
parent: 2
+ - uid: 12625
+ components:
+ - type: Transform
+ pos: 19.5,-35.5
+ parent: 2
- uid: 14206
components:
- type: Transform
@@ -80064,11 +81256,6 @@ entities:
- type: Transform
pos: 37.5,-27.5
parent: 2
- - uid: 2435
- components:
- - type: Transform
- pos: 22.5,-37.5
- parent: 2
- uid: 5306
components:
- type: Transform
@@ -80099,6 +81286,11 @@ entities:
- type: Transform
pos: 22.5,32.5
parent: 2
+ - uid: 12382
+ components:
+ - type: Transform
+ pos: 19.5,-37.5
+ parent: 2
- uid: 14215
components:
- type: Transform
@@ -80155,12 +81347,12 @@ entities:
- uid: 16200
components:
- type: Transform
- pos: 11.2066345,-19.266357
+ pos: 11.417512,-19.312515
parent: 2
- uid: 16201
components:
- type: Transform
- pos: 11.4566345,-19.516357
+ pos: 11.605012,-19.468765
parent: 2
- uid: 16202
components:
@@ -80464,6 +81656,16 @@ entities:
- type: Transform
pos: 26.557302,37.30886
parent: 2
+ - uid: 16418
+ components:
+ - type: Transform
+ pos: 32.716835,13.709434
+ parent: 2
+ - uid: 16419
+ components:
+ - type: Transform
+ pos: 32.484386,13.476587
+ parent: 2
- proto: PlaqueAtmos
entities:
- uid: 15273
@@ -81001,6 +82203,21 @@ entities:
- type: Transform
pos: 3.5,-2.5
parent: 2
+ - uid: 14523
+ components:
+ - type: Transform
+ pos: -4.5,-37.5
+ parent: 2
+ - uid: 14525
+ components:
+ - type: Transform
+ pos: -0.5,-34.5
+ parent: 2
+ - uid: 14526
+ components:
+ - type: Transform
+ pos: -0.5,-38.5
+ parent: 2
- uid: 14717
components:
- type: Transform
@@ -81358,12 +82575,6 @@ entities:
rot: -1.5707963267948966 rad
pos: 13.5,-6.5
parent: 2
- - uid: 13530
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -4.5,-8.5
- parent: 2
- uid: 13532
components:
- type: Transform
@@ -81801,6 +83012,24 @@ entities:
rot: -1.5707963267948966 rad
pos: -1.5,-27.5
parent: 2
+ - uid: 2204
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 25.5,-33.5
+ parent: 2
+ - uid: 2342
+ components:
+ - type: Transform
+ rot: -1.5707963267948966 rad
+ pos: 34.5,-33.5
+ parent: 2
+ - uid: 2947
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 25.5,-40.5
+ parent: 2
- uid: 3612
components:
- type: Transform
@@ -81865,36 +83094,12 @@ entities:
rot: 3.141592653589793 rad
pos: 37.5,-31.5
parent: 2
- - uid: 12712
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 25.5,-31.5
- parent: 2
- - uid: 12713
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 28.5,-40.5
- parent: 2
- uid: 12714
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 34.5,-40.5
parent: 2
- - uid: 12715
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 28.5,-32.5
- parent: 2
- - uid: 12716
- components:
- - type: Transform
- rot: -1.5707963267948966 rad
- pos: 34.5,-32.5
- parent: 2
- uid: 12720
components:
- type: Transform
@@ -82640,24 +83845,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -14.5,-34.5
parent: 2
- - uid: 13854
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-39.5
- parent: 2
- - uid: 13855
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-37.5
- parent: 2
- - uid: 13856
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: 22.5,-35.5
- parent: 2
- uid: 13857
components:
- type: Transform
@@ -82688,6 +83875,24 @@ entities:
rot: 1.5707963267948966 rad
pos: -16.5,-26.5
parent: 2
+ - uid: 14545
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-39.5
+ parent: 2
+ - uid: 14546
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-37.5
+ parent: 2
+ - uid: 14547
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 19.5,-35.5
+ parent: 2
- uid: 15256
components:
- type: Transform
@@ -82714,6 +83919,11 @@ entities:
rot: -1.5707963267948966 rad
pos: 42.5,-15.5
parent: 2
+ - uid: 2202
+ components:
+ - type: Transform
+ pos: 39.5,-26.5
+ parent: 2
- uid: 4498
components:
- type: Transform
@@ -82749,6 +83959,12 @@ entities:
rot: 1.5707963267948966 rad
pos: 40.5,13.5
parent: 2
+ - uid: 9630
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 23.5,-31.5
+ parent: 2
- uid: 10621
components:
- type: Transform
@@ -82771,18 +83987,6 @@ entities:
- type: Transform
pos: -24.5,-19.5
parent: 2
- - uid: 12718
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -2.5,-5.5
- parent: 2
- - uid: 12719
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: 0.5,-7.5
- parent: 2
- uid: 12737
components:
- type: Transform
@@ -82807,12 +84011,6 @@ entities:
rot: 1.5707963267948966 rad
pos: 32.5,-4.5
parent: 2
- - uid: 12804
- components:
- - type: Transform
- rot: 3.141592653589793 rad
- pos: -3.5,-2.5
- parent: 2
- uid: 12834
components:
- type: Transform
@@ -82944,12 +84142,30 @@ entities:
- type: Transform
pos: -25.5,1.5
parent: 2
+ - uid: 14724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: -2.5,-7.5
+ parent: 2
+ - uid: 14766
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: -4.5,-2.5
+ parent: 2
- uid: 15594
components:
- type: Transform
rot: 3.141592653589793 rad
pos: 6.5,-6.5
parent: 2
+ - uid: 15724
+ components:
+ - type: Transform
+ rot: 3.141592653589793 rad
+ pos: 0.5,-7.5
+ parent: 2
- uid: 15730
components:
- type: Transform
@@ -83023,15 +84239,15 @@ entities:
parent: 2
- proto: Rack
entities:
- - uid: 207
+ - uid: 337
components:
- type: Transform
- pos: 0.5,-7.5
+ pos: 6.5,-4.5
parent: 2
- - uid: 337
+ - uid: 367
components:
- type: Transform
- pos: 6.5,-4.5
+ pos: 41.5,5.5
parent: 2
- uid: 436
components:
@@ -83044,11 +84260,6 @@ entities:
rot: -1.5707963267948966 rad
pos: -2.5,8.5
parent: 2
- - uid: 721
- components:
- - type: Transform
- pos: -5.5,-9.5
- parent: 2
- uid: 723
components:
- type: Transform
@@ -83089,6 +84300,11 @@ entities:
- type: Transform
pos: 40.5,-31.5
parent: 2
+ - uid: 2581
+ components:
+ - type: Transform
+ pos: 39.5,-8.5
+ parent: 2
- uid: 2632
components:
- type: Transform
@@ -83326,6 +84542,11 @@ entities:
- type: Transform
pos: -2.5,25.5
parent: 2
+ - uid: 13738
+ components:
+ - type: Transform
+ pos: 42.5,5.5
+ parent: 2
- uid: 15266
components:
- type: Transform
@@ -83361,7 +84582,7 @@ entities:
- uid: 9125
components:
- type: Transform
- pos: 23.819582,-10.707807
+ pos: 23.843485,-10.439513
parent: 2
- proto: RagItem
entities:
@@ -83738,13 +84959,13 @@ entities:
- type: Transform
pos: 40.5,-0.5
parent: 2
- - uid: 16088
+- proto: RandomDrinkBottle
+ entities:
+ - uid: 5999
components:
- type: Transform
- pos: 42.5,-1.5
+ pos: -0.5,-3.5
parent: 2
-- proto: RandomDrinkBottle
- entities:
- uid: 8606
components:
- type: Transform
@@ -83799,6 +85020,46 @@ entities:
- type: Transform
pos: -3.5,-38.5
parent: 2
+ - uid: 9390
+ components:
+ - type: Transform
+ pos: -23.5,47.5
+ parent: 2
+ - uid: 13706
+ components:
+ - type: Transform
+ pos: -16.5,30.5
+ parent: 2
+ - uid: 15236
+ components:
+ - type: Transform
+ pos: 3.5,10.5
+ parent: 2
+ - uid: 16124
+ components:
+ - type: Transform
+ pos: 57.5,-1.5
+ parent: 2
+ - uid: 16410
+ components:
+ - type: Transform
+ pos: 36.5,27.5
+ parent: 2
+ - uid: 16412
+ components:
+ - type: Transform
+ pos: -39.5,-32.5
+ parent: 2
+ - uid: 16413
+ components:
+ - type: Transform
+ pos: 18.5,11.5
+ parent: 2
+ - uid: 16414
+ components:
+ - type: Transform
+ pos: 4.5,-11.5
+ parent: 2
- proto: RandomPainting
entities:
- uid: 2752
@@ -84142,11 +85403,6 @@ entities:
- type: Transform
pos: -2.5,-8.5
parent: 2
- - uid: 872
- components:
- - type: Transform
- pos: -3.5,-5.5
- parent: 2
- uid: 1315
components:
- type: Transform
@@ -84632,11 +85888,6 @@ entities:
- type: Transform
pos: 24.5,-28.5
parent: 2
- - uid: 14928
- components:
- - type: Transform
- pos: 24.5,-32.5
- parent: 2
- uid: 14929
components:
- type: Transform
@@ -85123,21 +86374,6 @@ entities:
- type: Transform
pos: 37.5,-35.5
parent: 2
- - uid: 2202
- components:
- - type: Transform
- pos: 25.5,-37.5
- parent: 2
- - uid: 2204
- components:
- - type: Transform
- pos: 25.5,-39.5
- parent: 2
- - uid: 2206
- components:
- - type: Transform
- pos: 25.5,-35.5
- parent: 2
- uid: 2291
components:
- type: Transform
@@ -85168,6 +86404,24 @@ entities:
- type: Transform
pos: 31.5,-42.5
parent: 2
+ - uid: 2381
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-37.5
+ parent: 2
+ - uid: 2469
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-39.5
+ parent: 2
+ - uid: 2473
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 22.5,-35.5
+ parent: 2
- uid: 5153
components:
- type: Transform
@@ -85185,6 +86439,11 @@ entities:
parent: 2
- proto: ReinforcedWindow
entities:
+ - uid: 325
+ components:
+ - type: Transform
+ pos: 45.5,-10.5
+ parent: 2
- uid: 1122
components:
- type: Transform
@@ -85346,11 +86605,6 @@ entities:
- type: Transform
pos: 35.5,-38.5
parent: 2
- - uid: 2209
- components:
- - type: Transform
- pos: 27.5,-34.5
- parent: 2
- uid: 2218
components:
- type: Transform
@@ -85361,11 +86615,6 @@ entities:
- type: Transform
pos: 35.5,-39.5
parent: 2
- - uid: 2220
- components:
- - type: Transform
- pos: 27.5,-39.5
- parent: 2
- uid: 2222
components:
- type: Transform
@@ -85376,30 +86625,10 @@ entities:
- type: Transform
pos: 35.5,-37.5
parent: 2
- - uid: 2224
- components:
- - type: Transform
- pos: 27.5,-38.5
- parent: 2
- - uid: 2281
- components:
- - type: Transform
- pos: 27.5,-35.5
- parent: 2
- - uid: 2282
- components:
- - type: Transform
- pos: 27.5,-36.5
- parent: 2
- - uid: 2283
- components:
- - type: Transform
- pos: 27.5,-37.5
- parent: 2
- - uid: 2310
+ - uid: 2298
components:
- type: Transform
- pos: 27.5,-40.5
+ pos: 45.5,-9.5
parent: 2
- uid: 2517
components:
@@ -85439,8 +86668,7 @@ entities:
- uid: 2727
components:
- type: Transform
- rot: -1.5707963267948966 rad
- pos: 44.5,-11.5
+ pos: 45.5,-11.5
parent: 2
- uid: 2892
components:
@@ -85695,12 +86923,6 @@ entities:
- type: Transform
pos: -27.5,-8.5
parent: 2
- - uid: 4557
- components:
- - type: Transform
- rot: 1.5707963267948966 rad
- pos: -27.5,0.5
- parent: 2
- uid: 4563
components:
- type: Transform
@@ -85997,6 +87219,11 @@ entities:
rot: 3.141592653589793 rad
pos: 60.5,-0.5
parent: 2
+ - uid: 7893
+ components:
+ - type: Transform
+ pos: -28.5,0.5
+ parent: 2
- uid: 7904
components:
- type: Transform
@@ -86082,7 +87309,7 @@ entities:
- uid: 8092
components:
- type: Transform
- pos: 44.5,-9.5
+ pos: -28.5,1.5
parent: 2
- uid: 8095
components:
@@ -86094,15 +87321,28 @@ entities:
- type: Transform
pos: 34.5,-4.5
parent: 2
+ - uid: 8236
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-34.5
+ parent: 2
- uid: 8249
components:
- type: Transform
pos: 28.5,-26.5
parent: 2
- - uid: 9081
+ - uid: 8786
components:
- type: Transform
- pos: 44.5,-10.5
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-40.5
+ parent: 2
+ - uid: 8788
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-37.5
parent: 2
- uid: 10528
components:
@@ -86110,6 +87350,12 @@ entities:
rot: 3.141592653589793 rad
pos: -3.5,-42.5
parent: 2
+ - uid: 12713
+ components:
+ - type: Transform
+ rot: 1.5707963267948966 rad
+ pos: 24.5,-39.5
+ parent: 2
- uid: 12879
components:
- type: Transform
@@ -86128,6 +87374,12 @@ e